WARNING - OLD ARCHIVES

This is an archived copy of the Xen.org mailing list, which we have preserved to ensure that existing links to archives are not broken. The live archive, which contains the latest emails, can be found at http://lists.xen.org/
Xen

xen-devel

[Top] [All Lists]

[Xen-devel] [PATCH][VTPM] re-send:Fix vTPM function in HVM domain

To: xen-devel@xxxxxxxxxxxxxxxxxxx
Subject: [Xen-devel] [PATCH][VTPM] re-send:Fix vTPM function in HVM domain
From: Kouichi Yasaki <yasaki.kouichi@xxxxxxxxxxxxxx>
Date: 2007年9月18日 09:04:39 +0900
Delivery-date: 2007年9月17日 17:06:26 -0700
Envelope-to: www-data@xxxxxxxxxxxxxxxxxx
List-help: <mailto:xen-devel-request@lists.xensource.com?subject=help>
List-id: Xen developer discussion <xen-devel.lists.xensource.com>
List-post: <mailto:xen-devel@lists.xensource.com>
List-subscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-devel>, <mailto:xen-devel-request@lists.xensource.com?subject=subscribe>
List-unsubscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-devel>, <mailto:xen-devel-request@lists.xensource.com?subject=unsubscribe>
Sender: xen-devel-bounces@xxxxxxxxxxxxxxxxxxx
User-agent: Thunderbird 2.0.0.6 (Windows/20070728)
Hi,
In Windows on HVM domain, GetPubkey function and Seal function become an error.
Attached is a patch that fixes the error.
In this patch, I use tpm-emulator0.5 code that fixed this bug.
Signed-off-by: Kouichi YASAKI <yasaki.kouichi@xxxxxxxxxxxxxx>
Thanks
 Kouichi YASAKI
diff -r 9071521d4864 tools/vtpm/tpm_emulator.patch
--- a/tools/vtpm/tpm_emulator.patch Fri Sep 07 11:39:10 2007 +0100
+++ b/tools/vtpm/tpm_emulator.patch Wed Sep 12 20:29:16 2007 +0900
@@ -547,10 +547,31 @@ diff -uprN orig/tpm_emulator-0.4/README 
 Installation
 --------------------------------------------------------------------------
 The compilation and installation process uses the build environment for 
+diff -uprN orig/tpm_emulator-0.4/tpm/tpm_cmd_handler.c 
tpm_emulator/tpm/tpm_cmd_handler.c
+--- orig/tpm_emulator-0.4/tpm/tpm_cmd_handler.c 2006年06月23日 
19:37:07.000000000 +0900
++++ tpm_emulator/tpm/tpm_cmd_handler.c 2007年09月12日 20:23:00.000000000 +0900
+@@ -565,7 +565,7 @@ static TPM_RESULT execute_TPM_Seal(TPM_R
+ if (tpm_unmarshal_TPM_KEY_HANDLE(&ptr, &len, &keyHandle)
+ || tpm_unmarshal_TPM_ENCAUTH(&ptr, &len, &encAuth)
+ || tpm_unmarshal_UINT32(&ptr, &len, &pcrInfoSize)
+- || tpm_unmarshal_TPM_PCR_INFO(&ptr, &len, &pcrInfo)
++ || (pcrInfoSize >0 && tpm_unmarshal_TPM_PCR_INFO(&ptr, &len, &pcrInfo))
+ || tpm_unmarshal_UINT32(&ptr, &len, &inDataSize)
+ || tpm_unmarshal_BLOB(&ptr, &len, &inData, inDataSize)
+ || len != 0) return TPM_BAD_PARAMETER;
+@@ -798,7 +798,7 @@ static TPM_RESULT execute_TPM_Sealx(TPM_
+ if (tpm_unmarshal_TPM_KEY_HANDLE(&ptr, &len, &keyHandle)
+ || tpm_unmarshal_TPM_ENCAUTH(&ptr, &len, &encAuth)
+ || tpm_unmarshal_UINT32(&ptr, &len, &pcrInfoSize)
+- || tpm_unmarshal_TPM_PCR_INFO(&ptr, &len, &pcrInfo)
++ || (pcrInfoSize > 0 && tpm_unmarshal_TPM_PCR_INFO(&ptr, &len, &pcrInfo))
+ || tpm_unmarshal_UINT32(&ptr, &len, &inDataSize)
+ || tpm_unmarshal_BLOB(&ptr, &len, &inData, inDataSize)
+ || len != 0) return TPM_BAD_PARAMETER;
 diff -uprN orig/tpm_emulator-0.4/tpm/tpm_credentials.c 
tpm_emulator/tpm/tpm_credentials.c
---- orig/tpm_emulator-0.4/tpm/tpm_credentials.c 2006年06月23日 
03:37:07.000000000 -0700
-+++ tpm_emulator/tpm/tpm_credentials.c 2006年07月24日 14:35:35.000000000 -0700
-@@ -47,16 +47,16 @@ int tpm_compute_pubkey_checksum(TPM_NONC
+--- orig/tpm_emulator-0.4/tpm/tpm_credentials.c 2006年06月23日 
19:37:07.000000000 +0900
++++ tpm_emulator/tpm/tpm_credentials.c 2007年09月12日 20:23:30.000000000 +0900
+@@ -47,20 +47,20 @@ int tpm_compute_pubkey_checksum(TPM_NONC
 
 TPM_RESULT tpm_get_pubek(TPM_PUBKEY *pubEndorsementKey)
 {
@@ -572,6 +593,11 @@ diff -uprN orig/tpm_emulator-0.4/tpm/tpm
 pubEndorsementKey->algorithmParms.algorithmID = TPM_ALG_RSA;
 pubEndorsementKey->algorithmParms.encScheme = TPM_ES_RSAESOAEP_SHA1_MGF1;
 pubEndorsementKey->algorithmParms.sigScheme = TPM_SS_NONE;
+- pubEndorsementKey->algorithmParms.parms.rsa.keyLength = key_length;
++ pubEndorsementKey->algorithmParms.parms.rsa.keyLength = key_length << 3;
+ pubEndorsementKey->algorithmParms.parms.rsa.numPrimes = 2;
+ pubEndorsementKey->algorithmParms.parms.rsa.exponentSize = 0;
+ pubEndorsementKey->algorithmParms.parms.rsa.exponent = NULL;
 @@ -175,6 +175,7 @@ TPM_RESULT TPM_OwnerReadInternalPub(TPM_
 {
 TPM_RESULT res;
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel
<Prev in Thread] Current Thread [Next in Thread>
  • [Xen-devel] [PATCH][VTPM] re-send:Fix vTPM function in HVM domain, Kouichi Yasaki <=
Previous by Date: [Xen-devel] [PATCH][VTPM] re-send:VTPM manager :Fix parameter check] , Kouichi Yasaki
Next by Date: Re: [Xen-devel] [Patch][RFC] xend config list , Aron Griffis
Previous by Thread: [Xen-devel] [PATCH][VTPM] re-send:VTPM manager :Fix parameter check] , Kouichi Yasaki
Next by Thread: [Xen-devel] Kernel Panic in booting Xen 3.1 on Dell PowerEdge Server 1950 , Adit Ranadive
Indexes: [Date] [Thread] [Top] [All Lists]

Copyright ©, Citrix Systems Inc. All rights reserved. Legal and Privacy
Citrix This site is hosted by Citrix

AltStyle によって変換されたページ (->オリジナル) /