1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
|
/*
* Licensed Materials - Property of IBM
*
* trousers - An open source TCG Software Stack
*
* (C) Copyright International Business Machines Corp. 2004-2007
*
*/
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <time.h>
#include <errno.h>
#include "trousers/tss.h"
#include "trousers/trousers.h"
#include "trousers_types.h"
#include "spi_utils.h"
#include "capabilities.h"
#include "tsplog.h"
#include "obj.h"
#ifdef TSS_BUILD_TRANSPORT
TSS_RESULT
Transport_Extend(TSS_HCONTEXT tspContext, /* in */
TCPA_PCRINDEX pcrNum, /* in */
TCPA_DIGEST inDigest, /* in */
TCPA_PCRVALUE * outDigest) /* out */
{
TSS_RESULT result;
UINT64 offset;
TCS_HANDLE handlesLen = 0;
UINT32 decLen;
BYTE data[sizeof(TCPA_PCRINDEX) + sizeof(TCPA_DIGEST)], *dec;
if ((result = obj_context_transport_init(tspContext)))
return result;
LogDebugFn("Executing in a transport session");
offset = 0;
Trspi_LoadBlob_UINT32(&offset, pcrNum, data);
Trspi_LoadBlob(&offset, TPM_SHA1_160_HASH_LEN, data, inDigest.digest);
if ((result = obj_context_transport_execute(tspContext, TPM_ORD_Extend, sizeof(data), data,
NULL, &handlesLen, NULL, NULL, NULL, &decLen,
&dec)))
return result;
offset = 0;
Trspi_UnloadBlob(&offset, decLen, dec, outDigest->digest);
free(dec);
return TSS_SUCCESS;
}
TSS_RESULT
Transport_PcrRead(TSS_HCONTEXT tspContext, /* in */
TCPA_PCRINDEX pcrNum, /* in */
TCPA_PCRVALUE * outDigest) /* out */
{
TSS_RESULT result;
UINT64 offset;
TCS_HANDLE handlesLen = 0;
UINT32 decLen;
BYTE data[sizeof(TCPA_PCRINDEX)], *dec;
if ((result = obj_context_transport_init(tspContext)))
return result;
LogDebugFn("Executing in a transport session");
offset = 0;
Trspi_LoadBlob_UINT32(&offset, pcrNum, data);
if ((result = obj_context_transport_execute(tspContext, TPM_ORD_PcrRead, sizeof(data),
data, NULL, &handlesLen, NULL, NULL, NULL,
&decLen, &dec)))
return result;
offset = 0;
Trspi_UnloadBlob(&offset, decLen, dec, outDigest->digest);
free(dec);
return TSS_SUCCESS;
}
TSS_RESULT
Transport_PcrReset(TSS_HCONTEXT tspContext, /* in */
UINT32 pcrDataSizeIn, /* in */
BYTE * pcrDataIn) /* in */
{
TSS_RESULT result;
TCS_HANDLE handlesLen = 0;
if ((result = obj_context_transport_init(tspContext)))
return result;
LogDebugFn("Executing in a transport session");
return obj_context_transport_execute(tspContext, TPM_ORD_PCR_Reset, pcrDataSizeIn,
pcrDataIn, NULL, &handlesLen, NULL, NULL, NULL, NULL,
NULL);
}
#endif
|