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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
|
/*
* Licensed Materials - Property of IBM
*
* trousers - An open source TCG Software Stack
*
* (C) Copyright International Business Machines Corp. 2004
*
*/
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <limits.h>
#include "trousers/tss.h"
#include "trousers_types.h"
#include "tcs_tsp.h"
#include "tcs_utils.h"
#include "tcs_int_literals.h"
#include "capabilities.h"
#include "tcsd_wrap.h"
#include "tcsd.h"
#include "tcslog.h"
#include "tcsem.h"
TSS_RESULT
TCS_LogPcrEvent_Internal(TCS_CONTEXT_HANDLE hContext, /* in */
TSS_PCR_EVENT Event, /* in */
UINT32 *pNumber) /* out */
{
TSS_RESULT result;
if((result = ctx_verify_context(hContext)))
return result;
if(Event.ulPcrIndex >= tpm_metrics.num_pcrs)
return TCSERR(TSS_E_BAD_PARAMETER);
if (tcsd_options.kernel_pcrs & (1 << Event.ulPcrIndex)) {
LogInfo("PCR %d is configured to be kernel controlled. Event logging denied.",
Event.ulPcrIndex);
return TCSERR(TSS_E_FAIL);
}
if (tcsd_options.firmware_pcrs & (1 << Event.ulPcrIndex)) {
LogInfo("PCR %d is configured to be firmware controlled. Event logging denied.",
Event.ulPcrIndex);
return TCSERR(TSS_E_FAIL);
}
return event_log_add(&Event, pNumber);
}
/* This routine will handle creating the TSS_PCR_EVENT structures from log
* data produced by an external source. The external source in mind here
* is the log of PCR extends done by the kernel from beneath the TSS
* (via direct calls to the device driver).
*/
TSS_RESULT
TCS_GetExternalPcrEvent(UINT32 PcrIndex, /* in */
UINT32 *pNumber, /* in, out */
TSS_PCR_EVENT **ppEvent) /* out */
{
FILE *log_handle;
char *source;
if (tcsd_options.kernel_pcrs & (1 << PcrIndex)) {
source = tcsd_options.kernel_log_file;
if (tcs_event_log->kernel_source != NULL) {
if (tcs_event_log->kernel_source->open((void *)source,
(FILE **) &log_handle))
return TCSERR(TSS_E_INTERNAL_ERROR);
if (tcs_event_log->kernel_source->get_entry(log_handle, PcrIndex,
pNumber, ppEvent)) {
tcs_event_log->kernel_source->close(log_handle);
return TCSERR(TSS_E_INTERNAL_ERROR);
}
tcs_event_log->kernel_source->close(log_handle);
} else {
LogError("No source for externel kernel events was compiled in, but "
"the tcsd is configured to use one! (see %s)",
tcsd_config_file);
return TCSERR(TSS_E_INTERNAL_ERROR);
}
} else if (tcsd_options.firmware_pcrs & (1 << PcrIndex)) {
source = tcsd_options.firmware_log_file;
if (tcs_event_log->firmware_source != NULL) {
if (tcs_event_log->firmware_source->open((void *)source, &log_handle))
return TCSERR(TSS_E_INTERNAL_ERROR);
if (tcs_event_log->firmware_source->get_entry(log_handle, PcrIndex,
pNumber, ppEvent)) {
tcs_event_log->firmware_source->close(log_handle);
return TCSERR(TSS_E_INTERNAL_ERROR);
}
tcs_event_log->firmware_source->close(log_handle);
} else {
LogError("No source for externel firmware events was compiled in, but "
"the tcsd is configured to use one! (see %s)",
tcsd_config_file);
return TCSERR(TSS_E_INTERNAL_ERROR);
}
} else {
LogError("PCR index %d not flagged as kernel or firmware controlled.", PcrIndex);
return TCSERR(TSS_E_INTERNAL_ERROR);
}
return TSS_SUCCESS;
}
TSS_RESULT
TCS_GetPcrEvent_Internal(TCS_CONTEXT_HANDLE hContext, /* in */
UINT32 PcrIndex, /* in */
UINT32 *pNumber, /* in, out */
TSS_PCR_EVENT **ppEvent) /* out */
{
TSS_RESULT result;
TSS_PCR_EVENT *event;
if ((result = ctx_verify_context(hContext)))
return result;
if(PcrIndex >= tpm_metrics.num_pcrs)
return TCSERR(TSS_E_BAD_PARAMETER);
/* if this is a kernel or firmware controlled PCR, call an external routine */
if ((tcsd_options.kernel_pcrs & (1 << PcrIndex)) ||
(tcsd_options.firmware_pcrs & (1 << PcrIndex))) {
MUTEX_LOCK(tcs_event_log->lock);
result = TCS_GetExternalPcrEvent(PcrIndex, pNumber, ppEvent);
MUTEX_UNLOCK(tcs_event_log->lock);
return result;
}
if (ppEvent == NULL) {
MUTEX_LOCK(tcs_event_log->lock);
*pNumber = get_num_events(PcrIndex);
MUTEX_UNLOCK(tcs_event_log->lock);
} else {
*ppEvent = calloc(1, sizeof(TSS_PCR_EVENT));
if (*ppEvent == NULL) {
LogError("malloc of %zd bytes failed.", sizeof(TSS_PCR_EVENT));
return TCSERR(TSS_E_OUTOFMEMORY);
}
event = get_pcr_event(PcrIndex, *pNumber);
if (event == NULL) {
free(*ppEvent);
return TCSERR(TSS_E_BAD_PARAMETER);
}
if ((result = copy_pcr_event(*ppEvent, event))) {
free(*ppEvent);
return result;
}
}
return TSS_SUCCESS;
}
/* This routine will handle creating the TSS_PCR_EVENT structures from log
* data produced by an external source. The external source in mind here
* is the log of PCR extends done by the kernel from beneath the TSS
* (via direct calls to the device driver).
*/
TSS_RESULT
TCS_GetExternalPcrEventsByPcr(UINT32 PcrIndex, /* in */
UINT32 FirstEvent, /* in */
UINT32 *pEventCount, /* in, out */
TSS_PCR_EVENT **ppEvents) /* out */
{
FILE *log_handle;
char *source;
if (tcsd_options.kernel_pcrs & (1 << PcrIndex)) {
source = tcsd_options.kernel_log_file;
if (tcs_event_log->kernel_source != NULL) {
if (tcs_event_log->kernel_source->open((void *)source, &log_handle))
return TCSERR(TSS_E_INTERNAL_ERROR);
if (tcs_event_log->kernel_source->get_entries_by_pcr(log_handle, PcrIndex,
FirstEvent, pEventCount, ppEvents)) {
tcs_event_log->kernel_source->close(log_handle);
return TCSERR(TSS_E_INTERNAL_ERROR);
}
tcs_event_log->kernel_source->close(log_handle);
} else {
LogError("No source for externel kernel events was compiled in, but "
"the tcsd is configured to use one! (see %s)",
tcsd_config_file);
return TCSERR(TSS_E_INTERNAL_ERROR);
}
} else if (tcsd_options.firmware_pcrs & (1 << PcrIndex)) {
source = tcsd_options.firmware_log_file;
if (tcs_event_log->firmware_source != NULL) {
if (tcs_event_log->firmware_source->open((void *)source, &log_handle))
return TCSERR(TSS_E_INTERNAL_ERROR);
if (tcs_event_log->firmware_source->get_entries_by_pcr(log_handle, PcrIndex,
FirstEvent, pEventCount, ppEvents)) {
tcs_event_log->firmware_source->close(log_handle);
return TCSERR(TSS_E_INTERNAL_ERROR);
}
tcs_event_log->firmware_source->close(log_handle);
} else {
LogError("No source for externel firmware events was compiled in, but "
"the tcsd is configured to use one! (see %s)",
tcsd_config_file);
return TCSERR(TSS_E_INTERNAL_ERROR);
}
} else {
LogError("PCR index %d not flagged as kernel or firmware controlled.", PcrIndex);
return TCSERR(TSS_E_INTERNAL_ERROR);
}
return TSS_SUCCESS;
}
TSS_RESULT
TCS_GetPcrEventsByPcr_Internal(TCS_CONTEXT_HANDLE hContext, /* in */
UINT32 PcrIndex, /* in */
UINT32 FirstEvent, /* in */
UINT32 *pEventCount, /* in, out */
TSS_PCR_EVENT **ppEvents) /* out */
{
UINT32 lastEventNumber, i, eventIndex;
TSS_RESULT result;
struct event_wrapper *tmp;
if ((result = ctx_verify_context(hContext)))
return result;
if (PcrIndex >= tpm_metrics.num_pcrs)
return TCSERR(TSS_E_BAD_PARAMETER);
/* if this is a kernel or firmware controlled PCR, call an external routine */
if ((tcsd_options.kernel_pcrs & (1 << PcrIndex)) ||
(tcsd_options.firmware_pcrs & (1 << PcrIndex))) {
MUTEX_LOCK(tcs_event_log->lock);
result = TCS_GetExternalPcrEventsByPcr(PcrIndex, FirstEvent,
pEventCount, ppEvents);
MUTEX_UNLOCK(tcs_event_log->lock);
return result;
}
MUTEX_LOCK(tcs_event_log->lock);
lastEventNumber = get_num_events(PcrIndex);
MUTEX_UNLOCK(tcs_event_log->lock);
/* if pEventCount is larger than the number of events to return, just return less.
* *pEventCount will be set to the number returned below.
*/
lastEventNumber = MIN(lastEventNumber, FirstEvent + *pEventCount);
if (FirstEvent > lastEventNumber)
return TCSERR(TSS_E_BAD_PARAMETER);
if (lastEventNumber == 0) {
*pEventCount = 0;
*ppEvents = NULL;
return TSS_SUCCESS;
}
/* FirstEvent is 0 indexed see TSS 1.1b spec section 4.7.2.2.3. That means that
* the following calculation is not off by one. :-)
*/
*ppEvents = calloc((lastEventNumber - FirstEvent), sizeof(TSS_PCR_EVENT));
if (*ppEvents == NULL) {
LogError("malloc of %zd bytes failed.",
sizeof(TSS_PCR_EVENT) * (lastEventNumber - FirstEvent));
return TCSERR(TSS_E_OUTOFMEMORY);
}
MUTEX_LOCK(tcs_event_log->lock);
tmp = tcs_event_log->lists[PcrIndex];
/* move through the list until we get to the first event requested */
for (i = 0; i < FirstEvent; i++)
tmp = tmp->next;
/* copy events from the first requested to the last requested */
for (eventIndex = 0; i < lastEventNumber; eventIndex++, i++) {
copy_pcr_event(&((*ppEvents)[eventIndex]), &(tmp->event));
tmp = tmp->next;
}
MUTEX_UNLOCK(tcs_event_log->lock);
*pEventCount = eventIndex;
return TSS_SUCCESS;
}
TSS_RESULT
TCS_GetPcrEventLog_Internal(TCS_CONTEXT_HANDLE hContext,/* in */
UINT32 *pEventCount, /* out */
TSS_PCR_EVENT **ppEvents) /* out */
{
TSS_RESULT result;
UINT32 i, j, event_count, aggregate_count = 0;
struct event_wrapper *tmp;
TSS_PCR_EVENT *event_list = NULL, *aggregate_list = NULL;
if ((result = ctx_verify_context(hContext)))
return result;
MUTEX_LOCK(tcs_event_log->lock);
/* for each PCR index, if its externally controlled, get the total number of events
* externally, else copy the events from the TCSD list. Then tack that list onto a
* master list to returned. */
for (i = 0; i < tpm_metrics.num_pcrs; i++) {
if ((tcsd_options.kernel_pcrs & (1 << i)) ||
(tcsd_options.firmware_pcrs & (1 << i))) {
/* A kernel or firmware controlled PCR event list */
event_count = UINT_MAX;
if ((result = TCS_GetExternalPcrEventsByPcr(i, 0, &event_count,
&event_list))) {
LogDebug("Getting External event list for PCR %u failed", i);
free(aggregate_list);
goto error;
}
LogDebug("Retrieved %u events from PCR %u (external)", event_count, i);
} else {
/* A TCSD controlled PCR event list */
event_count = get_num_events(i);
if (event_count == 0)
continue;
if ((event_list = calloc(event_count, sizeof(TSS_PCR_EVENT))) == NULL) {
LogError("malloc of %zd bytes failed",
event_count * sizeof(TSS_PCR_EVENT));
result = TCSERR(TSS_E_OUTOFMEMORY);
free(aggregate_list);
goto error;
}
tmp = tcs_event_log->lists[i];
for (j = 0; j < event_count; j++) {
copy_pcr_event(&event_list[j], &(tmp->event));
tmp = tmp->next;
}
}
if (event_count == 0)
continue;
/* Tack the list onto the aggregate_list */
aggregate_list = concat_pcr_events(&aggregate_list, aggregate_count, event_list,
event_count);
if (aggregate_list == NULL) {
free(event_list);
result = TCSERR(TSS_E_OUTOFMEMORY);
goto error;
}
aggregate_count += event_count;
free(event_list);
}
*ppEvents = aggregate_list;
*pEventCount = aggregate_count;
result = TSS_SUCCESS;
error:
MUTEX_UNLOCK(tcs_event_log->lock);
return result;
}
|