iPXE
MicrosoftVendor.h
Go to the documentation of this file.
1 /** @file
2  Declare the GUID that is expected:
3 
4  - as EFI_SIGNATURE_DATA.SignatureOwner GUID in association with X509 and
5  RSA2048 Secure Boot certificates issued by/for Microsoft,
6 
7  - as UEFI variable vendor GUID in association with (unspecified)
8  Microsoft-owned variables.
9 
10  Copyright (C) 2014-2019, Red Hat, Inc.
11 
12  SPDX-License-Identifier: BSD-2-Clause-Patent
13 
14  @par Specification Reference:
15  - MSDN: System.Fundamentals.Firmware at
16  <https://msdn.microsoft.com/en-us/ie/dn932805(v=vs.94)>.
17 **/
18 
19 #ifndef MICROSOFT_VENDOR_H_
20 #define MICROSOFT_VENDOR_H_
21 
22 FILE_LICENCE ( BSD2_PATENT );
23 FILE_SECBOOT ( PERMITTED );
24 
26 
27 //
28 // The following test cases of the Secure Boot Logo Test in the Microsoft
29 // Hardware Certification Kit:
30 //
31 // - Microsoft.UefiSecureBootLogo.Tests.OutOfBoxVerifyMicrosoftKEKpresent
32 // - Microsoft.UefiSecureBootLogo.Tests.OutOfBoxConfirmMicrosoftSignatureInDB
33 //
34 // expect the EFI_SIGNATURE_DATA.SignatureOwner GUID to be
35 // 77FA9ABD-0359-4D32-BD60-28F4E78F784B, when the
36 // EFI_SIGNATURE_DATA.SignatureData field carries any of the following X509
37 // certificates:
38 //
39 // - "Microsoft Corporation KEK CA 2011" (in KEK)
40 // - "Microsoft Windows Production PCA 2011" (in db)
41 // - "Microsoft Corporation UEFI CA 2011" (in db)
42 //
43 // This is despite the fact that the UEFI specification requires
44 // EFI_SIGNATURE_DATA.SignatureOwner to reflect the agent (i.e., OS,
45 // application or driver) that enrolled and therefore owns
46 // EFI_SIGNATURE_DATA.SignatureData, and not the organization that issued
47 // EFI_SIGNATURE_DATA.SignatureData.
48 //
49 #define MICROSOFT_VENDOR_GUID \
50  { 0x77fa9abd, \
51  0x0359, \
52  0x4d32, \
53  { 0xbd, 0x60, 0x28, 0xf4, 0xe7, 0x8f, 0x78, 0x4b }, \
54  }
55 
57 
58 #endif /* MICROSOFT_VENDOR_H_ */
128 bit buffer containing a unique identifier value.
Definition: Base.h:216
FILE_LICENCE(BSD2_PATENT)
FILE_SECBOOT(PERMITTED)
EFI_GUID gMicrosoftVendorGuid
Defines data types and constants introduced in UEFI.