]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Universal/SmbiosMeasurementDxe/SmbiosMeasurementDxe.c
Move Smbios measurement from TCG driver to Smbios driver.
[mirror_edk2.git] / MdeModulePkg / Universal / SmbiosMeasurementDxe / SmbiosMeasurementDxe.c
1 /** @file
2 This driver measures SMBIOS table to TPM.
3
4 Copyright (c) 2015, Intel Corporation. All rights reserved.<BR>
5 This program and the accompanying materials
6 are licensed and made available under the terms and conditions of the BSD License
7 which accompanies this distribution. The full text of the license may be found at
8 http://opensource.org/licenses/bsd-license.php
9
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12
13 **/
14
15 #include <PiDxe.h>
16
17 #include <Protocol/Smbios.h>
18 #include <IndustryStandard/SmBios.h>
19 #include <IndustryStandard/UefiTcgPlatform.h>
20 #include <Guid/EventGroup.h>
21 #include <Guid/SmBios.h>
22 #include <Library/DebugLib.h>
23 #include <Library/UefiDriverEntryPoint.h>
24 #include <Library/UefiLib.h>
25 #include <Library/BaseLib.h>
26 #include <Library/BaseMemoryLib.h>
27 #include <Library/MemoryAllocationLib.h>
28 #include <Library/UefiBootServicesTableLib.h>
29 #include <Library/TpmMeasurementLib.h>
30
31 #define FIELD_SIZE_OF(TYPE, Field) ((UINTN)sizeof(((TYPE *)0)->Field))
32
33 typedef struct {
34 UINT8 Type;
35 UINTN Offset;
36 UINTN Size;
37 UINT32 Flags;
38 } SMBIOS_FILTER_TABLE;
39 #define SMBIOS_FILTER_TABLE_FLAG_IS_STRING BIT0
40
41 typedef struct {
42 UINT8 Type;
43 SMBIOS_FILTER_TABLE *Filter; // NULL means all fields
44 UINTN FilterCount;
45 } SMBIOS_FILTER_STRUCT;
46
47 //
48 // Platform Specific Policy
49 //
50 SMBIOS_FILTER_TABLE mSmbiosFilterType1BlackList[] = {
51 {0x01, OFFSET_OF(SMBIOS_TABLE_TYPE1, SerialNumber), FIELD_SIZE_OF(SMBIOS_TABLE_TYPE1, SerialNumber), SMBIOS_FILTER_TABLE_FLAG_IS_STRING},
52 {0x01, OFFSET_OF(SMBIOS_TABLE_TYPE1, Uuid), FIELD_SIZE_OF(SMBIOS_TABLE_TYPE1, Uuid), 0},
53 {0x01, OFFSET_OF(SMBIOS_TABLE_TYPE1, WakeUpType), FIELD_SIZE_OF(SMBIOS_TABLE_TYPE1, WakeUpType), 0},
54 };
55 SMBIOS_FILTER_TABLE mSmbiosFilterType2BlackList[] = {
56 {0x02, OFFSET_OF(SMBIOS_TABLE_TYPE2, SerialNumber), FIELD_SIZE_OF(SMBIOS_TABLE_TYPE2, SerialNumber), SMBIOS_FILTER_TABLE_FLAG_IS_STRING},
57 {0x02, OFFSET_OF(SMBIOS_TABLE_TYPE2, LocationInChassis), FIELD_SIZE_OF(SMBIOS_TABLE_TYPE2, LocationInChassis), SMBIOS_FILTER_TABLE_FLAG_IS_STRING},
58 };
59 SMBIOS_FILTER_TABLE mSmbiosFilterType3BlackList[] = {
60 {0x03, OFFSET_OF(SMBIOS_TABLE_TYPE3, SerialNumber), FIELD_SIZE_OF(SMBIOS_TABLE_TYPE3, SerialNumber), SMBIOS_FILTER_TABLE_FLAG_IS_STRING},
61 {0x03, OFFSET_OF(SMBIOS_TABLE_TYPE3, AssetTag), FIELD_SIZE_OF(SMBIOS_TABLE_TYPE3, AssetTag), SMBIOS_FILTER_TABLE_FLAG_IS_STRING},
62 };
63 SMBIOS_FILTER_TABLE mSmbiosFilterType4BlackList[] = {
64 {0x04, OFFSET_OF(SMBIOS_TABLE_TYPE4, SerialNumber), FIELD_SIZE_OF(SMBIOS_TABLE_TYPE4, SerialNumber), SMBIOS_FILTER_TABLE_FLAG_IS_STRING},
65 {0x04, OFFSET_OF(SMBIOS_TABLE_TYPE4, AssetTag), FIELD_SIZE_OF(SMBIOS_TABLE_TYPE4, AssetTag), SMBIOS_FILTER_TABLE_FLAG_IS_STRING},
66 {0x04, OFFSET_OF(SMBIOS_TABLE_TYPE4, PartNumber), FIELD_SIZE_OF(SMBIOS_TABLE_TYPE4, PartNumber), SMBIOS_FILTER_TABLE_FLAG_IS_STRING},
67 {0x04, OFFSET_OF(SMBIOS_TABLE_TYPE4, CoreCount), FIELD_SIZE_OF(SMBIOS_TABLE_TYPE4, CoreCount), 0},
68 {0x04, OFFSET_OF(SMBIOS_TABLE_TYPE4, EnabledCoreCount), FIELD_SIZE_OF(SMBIOS_TABLE_TYPE4, EnabledCoreCount), 0},
69 {0x04, OFFSET_OF(SMBIOS_TABLE_TYPE4, ThreadCount), FIELD_SIZE_OF(SMBIOS_TABLE_TYPE4, ThreadCount), 0},
70 {0x04, OFFSET_OF(SMBIOS_TABLE_TYPE4, CoreCount2), FIELD_SIZE_OF(SMBIOS_TABLE_TYPE4, CoreCount2), 0},
71 {0x04, OFFSET_OF(SMBIOS_TABLE_TYPE4, EnabledCoreCount2), FIELD_SIZE_OF(SMBIOS_TABLE_TYPE4, EnabledCoreCount2), 0},
72 {0x04, OFFSET_OF(SMBIOS_TABLE_TYPE4, ThreadCount2), FIELD_SIZE_OF(SMBIOS_TABLE_TYPE4, ThreadCount2), 0},
73 };
74 SMBIOS_FILTER_TABLE mSmbiosFilterType17BlackList[] = {
75 {0x11, OFFSET_OF(SMBIOS_TABLE_TYPE17, SerialNumber), FIELD_SIZE_OF(SMBIOS_TABLE_TYPE17, SerialNumber), SMBIOS_FILTER_TABLE_FLAG_IS_STRING},
76 {0x11, OFFSET_OF(SMBIOS_TABLE_TYPE17, AssetTag), FIELD_SIZE_OF(SMBIOS_TABLE_TYPE17, AssetTag), SMBIOS_FILTER_TABLE_FLAG_IS_STRING},
77 {0x11, OFFSET_OF(SMBIOS_TABLE_TYPE17, PartNumber), FIELD_SIZE_OF(SMBIOS_TABLE_TYPE17, PartNumber), SMBIOS_FILTER_TABLE_FLAG_IS_STRING},
78 };
79 SMBIOS_FILTER_TABLE mSmbiosFilterType22BlackList[] = {
80 {0x16, OFFSET_OF(SMBIOS_TABLE_TYPE22, SerialNumber), FIELD_SIZE_OF(SMBIOS_TABLE_TYPE22, SerialNumber), SMBIOS_FILTER_TABLE_FLAG_IS_STRING},
81 {0x16, OFFSET_OF(SMBIOS_TABLE_TYPE22, SBDSSerialNumber), FIELD_SIZE_OF(SMBIOS_TABLE_TYPE22, SBDSSerialNumber), 0},
82 {0x16, OFFSET_OF(SMBIOS_TABLE_TYPE22, SBDSManufactureDate), FIELD_SIZE_OF(SMBIOS_TABLE_TYPE22, SBDSManufactureDate), 0},
83 };
84 SMBIOS_FILTER_TABLE mSmbiosFilterType23BlackList[] = {
85 {0x17, OFFSET_OF(SMBIOS_TABLE_TYPE23, ResetCount), FIELD_SIZE_OF(SMBIOS_TABLE_TYPE23, ResetCount), 0},
86 };
87 SMBIOS_FILTER_TABLE mSmbiosFilterType39BlackList[] = {
88 {0x27, OFFSET_OF(SMBIOS_TABLE_TYPE39, SerialNumber), FIELD_SIZE_OF(SMBIOS_TABLE_TYPE39, SerialNumber), SMBIOS_FILTER_TABLE_FLAG_IS_STRING},
89 {0x27, OFFSET_OF(SMBIOS_TABLE_TYPE39, AssetTagNumber), FIELD_SIZE_OF(SMBIOS_TABLE_TYPE39, AssetTagNumber), SMBIOS_FILTER_TABLE_FLAG_IS_STRING},
90 {0x27, OFFSET_OF(SMBIOS_TABLE_TYPE39, ModelPartNumber), FIELD_SIZE_OF(SMBIOS_TABLE_TYPE39, ModelPartNumber), SMBIOS_FILTER_TABLE_FLAG_IS_STRING},
91 };
92
93 SMBIOS_FILTER_STRUCT mSmbiosFilterStandardTableBlackList[] = {
94 {0x01, mSmbiosFilterType1BlackList, sizeof(mSmbiosFilterType1BlackList)/sizeof(mSmbiosFilterType1BlackList[0])},
95 {0x02, mSmbiosFilterType2BlackList, sizeof(mSmbiosFilterType2BlackList)/sizeof(mSmbiosFilterType2BlackList[0])},
96 {0x03, mSmbiosFilterType3BlackList, sizeof(mSmbiosFilterType3BlackList)/sizeof(mSmbiosFilterType3BlackList[0])},
97 {0x04, mSmbiosFilterType4BlackList, sizeof(mSmbiosFilterType4BlackList)/sizeof(mSmbiosFilterType4BlackList[0])},
98 {0x0B, NULL, 0},
99 {0x0F, NULL, 0},
100 {0x11, mSmbiosFilterType17BlackList, sizeof(mSmbiosFilterType17BlackList)/sizeof(mSmbiosFilterType17BlackList[0])},
101 {0x12, NULL, 0},
102 {0x16, mSmbiosFilterType22BlackList, sizeof(mSmbiosFilterType22BlackList)/sizeof(mSmbiosFilterType22BlackList[0])},
103 {0x17, mSmbiosFilterType23BlackList, sizeof(mSmbiosFilterType23BlackList)/sizeof(mSmbiosFilterType23BlackList[0])},
104 {0x1F, NULL, 0},
105 {0x21, NULL, 0},
106 {0x27, mSmbiosFilterType39BlackList, sizeof(mSmbiosFilterType39BlackList)/sizeof(mSmbiosFilterType39BlackList[0])},
107 };
108
109 EFI_SMBIOS_PROTOCOL *mSmbios;
110 UINTN mMaxLen;
111
112 /**
113
114 This function dump raw data.
115
116 @param Data raw data
117 @param Size raw data size
118
119 **/
120 VOID
121 InternalDumpData (
122 IN UINT8 *Data,
123 IN UINTN Size
124 )
125 {
126 UINTN Index;
127 for (Index = 0; Index < Size; Index++) {
128 DEBUG ((EFI_D_INFO, "%02x", (UINTN)Data[Index]));
129 }
130 }
131
132 /**
133
134 This function dump raw data with colume format.
135
136 @param Data raw data
137 @param Size raw data size
138
139 **/
140 VOID
141 InternalDumpHex (
142 IN UINT8 *Data,
143 IN UINTN Size
144 )
145 {
146 UINTN Index;
147 UINTN Count;
148 UINTN Left;
149
150 #define COLUME_SIZE (16 * 2)
151
152 Count = Size / COLUME_SIZE;
153 Left = Size % COLUME_SIZE;
154 for (Index = 0; Index < Count; Index++) {
155 DEBUG ((EFI_D_INFO, "%04x: ", Index * COLUME_SIZE));
156 InternalDumpData (Data + Index * COLUME_SIZE, COLUME_SIZE);
157 DEBUG ((EFI_D_INFO, "\n"));
158 }
159
160 if (Left != 0) {
161 DEBUG ((EFI_D_INFO, "%04x: ", Index * COLUME_SIZE));
162 InternalDumpData (Data + Index * COLUME_SIZE, Left);
163 DEBUG ((EFI_D_INFO, "\n"));
164 }
165 }
166
167
168 /**
169
170 This function get filter structure by SMBIOS type.
171
172 @param Type SMBIOS type
173
174 **/
175 SMBIOS_FILTER_STRUCT *
176 GetFilterStructByType (
177 IN UINT8 Type
178 )
179 {
180 UINTN Index;
181 for (Index = 0; Index < sizeof(mSmbiosFilterStandardTableBlackList)/sizeof(mSmbiosFilterStandardTableBlackList[0]); Index++) {
182 if (mSmbiosFilterStandardTableBlackList[Index].Type == Type) {
183 return &mSmbiosFilterStandardTableBlackList[Index];
184 }
185 }
186 return NULL;
187 }
188
189 /**
190
191 This function get SMBIOS string in SMBIOS table.
192
193 @param Head SMBIOS table head
194 @param StringId SMBIOS string ID
195 @param StringLen length of SMBIOS string
196
197 @return SMBIOS string data
198 **/
199 CHAR8 *
200 GetSmbiosStringById (
201 IN EFI_SMBIOS_TABLE_HEADER *Head,
202 IN SMBIOS_TABLE_STRING StringId,
203 OUT UINTN *StringLen
204 )
205 {
206 UINTN Size;
207 UINTN StrLen;
208 CHAR8 *CharInStr;
209 UINTN StringsNumber;
210 CHAR8 *String;
211
212 CharInStr = (CHAR8 *)Head + Head->Length;
213 Size = Head->Length;
214 StringsNumber = 0;
215 StrLen = 0;
216 //
217 // look for the two consecutive zeros, check the string limit by the way.
218 //
219 String = NULL;
220 while (*CharInStr != 0 || *(CharInStr+1) != 0) {
221 if (*CharInStr == 0) {
222 Size += 1;
223 CharInStr++;
224 }
225 String = CharInStr;
226
227 for (StrLen = 0 ; StrLen < mMaxLen; StrLen++) {
228 if (*(CharInStr+StrLen) == 0) {
229 break;
230 }
231 }
232 *StringLen = StrLen;
233
234 if (StrLen == mMaxLen) {
235 return NULL;
236 }
237
238 //
239 // forward the pointer
240 //
241 CharInStr += StrLen;
242 Size += StrLen;
243 StringsNumber += 1;
244 if (StringsNumber == StringId) {
245 break;
246 }
247 }
248
249 return String;
250 }
251
252 /**
253
254 This function update SMBIOS table based on policy.
255
256 @param TableEntry SMBIOS table
257 @param TableEntrySize SMBIOS table size
258
259 **/
260 VOID
261 FilterSmbiosEntry (
262 IN OUT VOID *TableEntry,
263 IN UINTN TableEntrySize
264 )
265 {
266 SMBIOS_FILTER_STRUCT *FilterStruct;
267 SMBIOS_FILTER_TABLE *Filter;
268 UINTN Index;
269 SMBIOS_TABLE_STRING StringId;
270 CHAR8 *String;
271 UINTN StringLen;
272
273 DEBUG ((EFI_D_INFO, "Smbios Table (Type - %d):\n", ((SMBIOS_STRUCTURE *)TableEntry)->Type));
274 InternalDumpHex (TableEntry, TableEntrySize);
275
276 FilterStruct = GetFilterStructByType (((SMBIOS_STRUCTURE *)TableEntry)->Type);
277 if (FilterStruct != NULL) {
278 if (FilterStruct->Filter == NULL || FilterStruct->FilterCount == 0) {
279 // zero all table entries, except header
280 ZeroMem ((UINT8 *)TableEntry + sizeof(SMBIOS_STRUCTURE), TableEntrySize - sizeof(SMBIOS_STRUCTURE));
281 } else {
282 Filter = FilterStruct->Filter;
283 for (Index = 0; Index < FilterStruct->FilterCount; Index++) {
284 if ((Filter[Index].Flags & SMBIOS_FILTER_TABLE_FLAG_IS_STRING) != 0) {
285 CopyMem (&StringId, (UINT8 *)TableEntry + Filter[Index].Offset, sizeof(StringId));
286 if (StringId != 0) {
287 // set ' ' for string field
288 String = GetSmbiosStringById (TableEntry, StringId, &StringLen);
289 //DEBUG ((EFI_D_INFO,"StrId(0x%x)-%a(%d)\n", StringId, String, StringLen));
290 SetMem (String, StringLen, ' ');
291 }
292 }
293 // zero non-string field
294 ZeroMem ((UINT8 *)TableEntry + Filter[Index].Offset, Filter[Index].Size);
295 }
296 }
297 }
298
299 DEBUG ((EFI_D_INFO, "Filter Smbios Table (Type - %d):\n", ((SMBIOS_STRUCTURE *)TableEntry)->Type));
300 InternalDumpHex (TableEntry, TableEntrySize);
301 }
302
303 /**
304
305 Get the full size of SMBIOS structure including optional strings that follow the formatted structure.
306
307 @param Head Pointer to the beginning of SMBIOS structure.
308 @param NumberOfStrings The returned number of optional strings that follow the formatted structure.
309
310 @return Size The returned size.
311 **/
312 UINTN
313 GetSmbiosStructureSize (
314 IN EFI_SMBIOS_TABLE_HEADER *Head,
315 OUT UINTN *NumberOfStrings
316 )
317 {
318 UINTN Size;
319 UINTN StrLen;
320 CHAR8 *CharInStr;
321 UINTN StringsNumber;
322
323 CharInStr = (CHAR8 *)Head + Head->Length;
324 Size = Head->Length;
325 StringsNumber = 0;
326 StrLen = 0;
327 //
328 // look for the two consecutive zeros, check the string limit by the way.
329 //
330 while (*CharInStr != 0 || *(CharInStr+1) != 0) {
331 if (*CharInStr == 0) {
332 Size += 1;
333 CharInStr++;
334 }
335
336 for (StrLen = 0 ; StrLen < mMaxLen; StrLen++) {
337 if (*(CharInStr+StrLen) == 0) {
338 break;
339 }
340 }
341
342 if (StrLen == mMaxLen) {
343 return 0;
344 }
345
346 //
347 // forward the pointer
348 //
349 CharInStr += StrLen;
350 Size += StrLen;
351 StringsNumber += 1;
352 }
353
354 //
355 // count ending two zeros.
356 //
357 Size += 2;
358
359 if (NumberOfStrings != NULL) {
360 *NumberOfStrings = StringsNumber;
361 }
362 return Size;
363 }
364
365 /**
366
367 This function returns full SMBIOS table length.
368
369 @param TableAddress SMBIOS table based address
370 @param TableMaximumSize Maximum size of SMBIOS table
371
372 @return SMBIOS table length
373
374 **/
375 UINTN
376 GetSmbiosTableLength (
377 IN VOID *TableAddress,
378 IN UINTN TableMaximumSize
379 )
380 {
381 VOID *TableEntry;
382 VOID *TableAddressEnd;
383 UINTN TableEntryLength;
384
385 TableAddressEnd = (VOID *)((UINTN)TableAddress + TableMaximumSize);
386 TableEntry = TableAddress;
387 while (TableEntry < TableAddressEnd) {
388 TableEntryLength = GetSmbiosStructureSize (TableEntry, NULL);
389 if (TableEntryLength == 0) {
390 break;
391 }
392 if (((SMBIOS_STRUCTURE *)TableEntry)->Type == 127) {
393 TableEntry = (VOID *)((UINTN)TableEntry + TableEntryLength);
394 break;
395 }
396 TableEntry = (VOID *)((UINTN)TableEntry + TableEntryLength);
397 }
398
399 return ((UINTN)TableEntry - (UINTN)TableAddress);
400 }
401
402 /**
403
404 This function updatess full SMBIOS table length.
405
406 @param TableAddress SMBIOS table based address
407 @param TableLength SMBIOS table length
408
409 **/
410 VOID
411 FilterSmbiosTable (
412 IN OUT VOID *TableAddress,
413 IN UINTN TableLength
414 )
415 {
416 VOID *TableAddressEnd;
417 VOID *TableEntry;
418 UINTN TableEntryLength;
419
420 TableEntry = TableAddress;
421 TableAddressEnd = (VOID *)((UINTN)TableAddress + TableLength);
422 while ((UINTN)TableEntry < (UINTN)TableAddressEnd) {
423 TableEntryLength = GetSmbiosStructureSize (TableEntry, NULL);
424 if (TableEntryLength == 0) {
425 break;
426 }
427
428 FilterSmbiosEntry (TableEntry, TableEntryLength);
429
430 TableEntry = (VOID *)((UINTN)TableEntry + TableEntryLength);
431 }
432 }
433
434 /**
435 Measure SMBIOS with EV_EFI_HANDOFF_TABLES to PCR[1]
436 **/
437 VOID
438 EFIAPI
439 MeasureSmbiosTable (
440 IN EFI_EVENT Event,
441 IN VOID *Context
442 )
443 {
444 EFI_STATUS Status;
445 EFI_HANDOFF_TABLE_POINTERS HandoffTables;
446 SMBIOS_TABLE_ENTRY_POINT *SmbiosTable;
447 SMBIOS_TABLE_3_0_ENTRY_POINT *Smbios3Table;
448 VOID *SmbiosTableAddress;
449 VOID *TableAddress;
450 UINTN TableLength;
451
452 SmbiosTable = NULL;
453 Smbios3Table = NULL;
454 SmbiosTableAddress = NULL;
455 TableLength = 0;
456
457 if (mSmbios->MajorVersion >= 3) {
458 Status = EfiGetSystemConfigurationTable (
459 &gEfiSmbios3TableGuid,
460 (VOID **) &Smbios3Table
461 );
462 if (!EFI_ERROR (Status)) {
463 DEBUG ((EFI_D_INFO, "Smbios3Table:\n"));
464 DEBUG ((EFI_D_INFO, " AnchorString - '%c%c%c%c%c'\n",
465 Smbios3Table->AnchorString[0],
466 Smbios3Table->AnchorString[1],
467 Smbios3Table->AnchorString[2],
468 Smbios3Table->AnchorString[3],
469 Smbios3Table->AnchorString[4]
470 ));
471 DEBUG ((EFI_D_INFO, " EntryPointStructureChecksum - 0x%02x\n", Smbios3Table->EntryPointStructureChecksum));
472 DEBUG ((EFI_D_INFO, " EntryPointLength - 0x%02x\n", Smbios3Table->EntryPointLength));
473 DEBUG ((EFI_D_INFO, " MajorVersion - 0x%02x\n", Smbios3Table->MajorVersion));
474 DEBUG ((EFI_D_INFO, " MinorVersion - 0x%02x\n", Smbios3Table->MinorVersion));
475 DEBUG ((EFI_D_INFO, " DocRev - 0x%02x\n", Smbios3Table->DocRev));
476 DEBUG ((EFI_D_INFO, " EntryPointRevision - 0x%02x\n", Smbios3Table->EntryPointRevision));
477 DEBUG ((EFI_D_INFO, " TableMaximumSize - 0x%08x\n", Smbios3Table->TableMaximumSize));
478 DEBUG ((EFI_D_INFO, " TableAddress - 0x%016lx\n", Smbios3Table->TableAddress));
479 }
480 }
481 Status = EfiGetSystemConfigurationTable (
482 &gEfiSmbiosTableGuid,
483 (VOID **) &SmbiosTable
484 );
485 if (!EFI_ERROR (Status)) {
486 DEBUG ((EFI_D_INFO, "SmbiosTable:\n"));
487 DEBUG ((EFI_D_INFO, " AnchorString - '%c%c%c%c'\n",
488 Smbios3Table->AnchorString[0],
489 Smbios3Table->AnchorString[1],
490 Smbios3Table->AnchorString[2],
491 Smbios3Table->AnchorString[3]
492 ));
493 DEBUG ((EFI_D_INFO, " EntryPointStructureChecksum - 0x%02x\n", SmbiosTable->EntryPointStructureChecksum));
494 DEBUG ((EFI_D_INFO, " EntryPointLength - 0x%02x\n", SmbiosTable->EntryPointLength));
495 DEBUG ((EFI_D_INFO, " MajorVersion - 0x%02x\n", SmbiosTable->MajorVersion));
496 DEBUG ((EFI_D_INFO, " MinorVersion - 0x%02x\n", SmbiosTable->MinorVersion));
497 DEBUG ((EFI_D_INFO, " MaxStructureSize - 0x%08x\n", SmbiosTable->MaxStructureSize));
498 DEBUG ((EFI_D_INFO, " EntryPointRevision - 0x%02x\n", SmbiosTable->EntryPointRevision));
499 DEBUG ((EFI_D_INFO, " FormattedArea - '%c%c%c%c%c'\n",
500 SmbiosTable->FormattedArea[0],
501 SmbiosTable->FormattedArea[1],
502 SmbiosTable->FormattedArea[2],
503 SmbiosTable->FormattedArea[3],
504 SmbiosTable->FormattedArea[4]
505 ));
506 DEBUG ((EFI_D_INFO, " IntermediateAnchorString - '%c%c%c%c%c'\n",
507 SmbiosTable->IntermediateAnchorString[0],
508 SmbiosTable->IntermediateAnchorString[1],
509 SmbiosTable->IntermediateAnchorString[2],
510 SmbiosTable->IntermediateAnchorString[3],
511 SmbiosTable->IntermediateAnchorString[4]
512 ));
513 DEBUG ((EFI_D_INFO, " IntermediateChecksum - 0x%02x\n", SmbiosTable->IntermediateChecksum));
514 DEBUG ((EFI_D_INFO, " TableLength - 0x%04x\n", SmbiosTable->TableLength));
515 DEBUG ((EFI_D_INFO, " TableAddress - 0x%08x\n", SmbiosTable->TableAddress));
516 DEBUG ((EFI_D_INFO, " NumberOfSmbiosStructures - 0x%04x\n", SmbiosTable->NumberOfSmbiosStructures));
517 DEBUG ((EFI_D_INFO, " SmbiosBcdRevision - 0x%02x\n", SmbiosTable->SmbiosBcdRevision));
518 }
519
520 if (Smbios3Table != NULL) {
521 SmbiosTableAddress = (VOID *)(UINTN)Smbios3Table->TableAddress;
522 TableLength = GetSmbiosTableLength (SmbiosTableAddress, Smbios3Table->TableMaximumSize);
523 } else if (SmbiosTable != NULL) {
524 SmbiosTableAddress = (VOID *)(UINTN)SmbiosTable->TableAddress;
525 TableLength = SmbiosTable->TableLength;
526 }
527
528 if (SmbiosTableAddress != NULL) {
529 DEBUG ((DEBUG_INFO, "The Smbios Table starts at: 0x%x\n", SmbiosTableAddress));
530 DEBUG ((DEBUG_INFO, "The Smbios Table size: 0x%x\n", TableLength));
531 InternalDumpHex ((UINT8 *)(UINTN)SmbiosTableAddress, TableLength);
532
533 TableAddress = AllocateCopyPool ((UINTN)TableLength, (VOID *)(UINTN)SmbiosTableAddress);
534 if (TableAddress == NULL) {
535 return ;
536 }
537
538 FilterSmbiosTable (TableAddress, TableLength);
539
540 DEBUG ((DEBUG_INFO, "The final Smbios Table starts at: 0x%x\n", TableAddress));
541 DEBUG ((DEBUG_INFO, "The final Smbios Table size: 0x%x\n", TableLength));
542 InternalDumpHex (TableAddress, TableLength);
543
544 HandoffTables.NumberOfTables = 1;
545 HandoffTables.TableEntry[0].VendorGuid = gEfiSmbiosTableGuid;
546 HandoffTables.TableEntry[0].VendorTable = SmbiosTable;
547 Status = TpmMeasureAndLogData (
548 1, // PCRIndex
549 EV_EFI_HANDOFF_TABLES, // EventType
550 &HandoffTables, // EventLog
551 sizeof (HandoffTables), // LogLen
552 TableAddress, // HashData
553 TableLength // HashDataLen
554 );
555 if (EFI_ERROR (Status)) {
556 return ;
557 }
558 }
559
560 return ;
561 }
562
563 /**
564
565 Driver to produce Smbios measurement.
566
567 @param ImageHandle Module's image handle
568 @param SystemTable Pointer of EFI_SYSTEM_TABLE
569
570 @retval EFI_SUCCESS Smbios protocol installed
571 @retval Other No protocol installed, unload driver.
572
573 **/
574 EFI_STATUS
575 EFIAPI
576 SmbiosMeasurementDriverEntryPoint (
577 IN EFI_HANDLE ImageHandle,
578 IN EFI_SYSTEM_TABLE *SystemTable
579 )
580 {
581 EFI_STATUS Status;
582 EFI_EVENT Event;
583
584 Status = gBS->LocateProtocol (&gEfiSmbiosProtocolGuid, NULL, &mSmbios);
585 ASSERT_EFI_ERROR (Status);
586 DEBUG ((DEBUG_INFO, "The Smbios Table Version: %x.%x\n", mSmbios->MajorVersion, mSmbios->MinorVersion));
587
588 if (mSmbios->MajorVersion < 2 || (mSmbios->MajorVersion == 2 && mSmbios->MinorVersion < 7)){
589 mMaxLen = SMBIOS_STRING_MAX_LENGTH;
590 } else if (mSmbios->MajorVersion < 3) {
591 //
592 // Reference SMBIOS 2.7, chapter 6.1.3, it will have no limit on the length of each individual text string.
593 // However, the length of the entire structure table (including all strings) must be reported
594 // in the Structure Table Length field of the SMBIOS Structure Table Entry Point,
595 // which is a WORD field limited to 65,535 bytes.
596 //
597 mMaxLen = SMBIOS_TABLE_MAX_LENGTH;
598 } else {
599 //
600 // SMBIOS 3.0 defines the Structure table maximum size as DWORD field limited to 0xFFFFFFFF bytes.
601 // Locate the end of string as long as possible.
602 //
603 mMaxLen = SMBIOS_3_0_TABLE_MAX_LENGTH;
604 }
605
606 //
607 // Measure Smbios tables
608 //
609 Status = EfiCreateEventReadyToBootEx (
610 TPL_CALLBACK,
611 MeasureSmbiosTable,
612 NULL,
613 &Event
614 );
615
616 return Status;
617 }