From a0c56a8219ec268d8ac4e051035f1636545cc478 Mon Sep 17 00:00:00 2001 From: lgao4 Date: Sun, 18 Sep 2011 12:25:27 +0000 Subject: [PATCH] Clean up the private GUID definition in module Level. 0. Remove the unused private GUID from module source files. 1. Use gEfiCallerIdGuid replace of the private module GUID. 2. Add the public header files to define HII FormSet and PackageList GUID used in every HII driver. Signed-off-by: lgao4 Reviewed-by: ydong10 gdong1 tye jfan12 wli12 rsun3 jyao1 ftian git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@12375 6f19259b-4bc3-4df7-8a09-765794883524 --- .../Application/VariableInfo/VariableInfo.c | 7 +-- .../Application/VariableInfo/VariableInfo.inf | 2 +- .../Include/Guid/PwdCredentialProviderHii.h | 29 ++++++++++++ SecurityPkg/Include/Guid/TcgConfigHii.h | 25 ++++++++++ .../Include/Guid/UsbCredentialProviderHii.h | 29 ++++++++++++ .../Include/Guid/UserIdentifyManagerHii.h | 25 ++++++++++ .../Include/Guid/UserProfileManagerHii.h | 25 ++++++++++ SecurityPkg/SecurityPkg.dec | 15 ++++++ SecurityPkg/Tcg/TcgConfigDxe/TcgConfig.vfr | 4 +- .../Tcg/TcgConfigDxe/TcgConfigDriver.c | 10 ++-- SecurityPkg/Tcg/TcgConfigDxe/TcgConfigDxe.inf | 1 + SecurityPkg/Tcg/TcgConfigDxe/TcgConfigImpl.c | 11 ++--- .../Tcg/TcgConfigDxe/TcgConfigNvData.h | 6 +-- .../PwdCredentialProvider.c | 28 +++++------ .../PwdCredentialProvider.h | 1 - .../PwdCredentialProviderData.h | 7 +-- .../PwdCredentialProviderDxe.inf | 3 +- .../UsbCredentialProvider.c | 46 ++++--------------- .../UsbCredentialProvider.h | 18 +------- .../UsbCredentialProviderDxe.inf | 2 +- .../UserIdentifyManager.c | 30 +++++------- .../UserIdentifyManagerData.h | 12 +---- .../UserIdentifyManagerDxe.inf | 2 + .../UserProfileManagerDxe/UserProfileDelete.c | 4 +- .../UserProfileManager.c | 7 ++- .../UserProfileManager.h | 7 +-- .../UserProfileManagerData.h | 7 +-- .../UserProfileManagerDxe.inf | 2 + .../UserProfileManagerDxe/UserProfileModify.c | 14 +++--- 29 files changed, 223 insertions(+), 156 deletions(-) create mode 100644 SecurityPkg/Include/Guid/PwdCredentialProviderHii.h create mode 100644 SecurityPkg/Include/Guid/TcgConfigHii.h create mode 100644 SecurityPkg/Include/Guid/UsbCredentialProviderHii.h create mode 100644 SecurityPkg/Include/Guid/UserIdentifyManagerHii.h create mode 100644 SecurityPkg/Include/Guid/UserProfileManagerHii.h diff --git a/SecurityPkg/Application/VariableInfo/VariableInfo.c b/SecurityPkg/Application/VariableInfo/VariableInfo.c index 418cec3e5b..0c1ee4b0f8 100644 --- a/SecurityPkg/Application/VariableInfo/VariableInfo.c +++ b/SecurityPkg/Application/VariableInfo/VariableInfo.c @@ -29,10 +29,7 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. #include #include -#define EFI_VARIABLE_GUID \ - { 0xddcf3616, 0x3275, 0x4164, { 0x98, 0xb6, 0xfe, 0x85, 0x70, 0x7f, 0xfe, 0x7d } } - -EFI_GUID mEfiVariableGuid = EFI_VARIABLE_GUID; +extern EFI_GUID gEfiVariableGuid; EFI_SMM_COMMUNICATION_PROTOCOL *mSmmCommunication = NULL; /** @@ -208,7 +205,7 @@ UefiMain ( VARIABLE_INFO_ENTRY *VariableInfo; VARIABLE_INFO_ENTRY *Entry; - Status = EfiGetSystemConfigurationTable (&mEfiVariableGuid, (VOID **)&Entry); + Status = EfiGetSystemConfigurationTable (&gEfiVariableGuid, (VOID **)&Entry); if (EFI_ERROR (Status) || (Entry == NULL)) { Status = EfiGetSystemConfigurationTable (&gEfiAuthenticatedVariableGuid, (VOID **)&Entry); } diff --git a/SecurityPkg/Application/VariableInfo/VariableInfo.inf b/SecurityPkg/Application/VariableInfo/VariableInfo.inf index a247d53ceb..902ed7f1c5 100644 --- a/SecurityPkg/Application/VariableInfo/VariableInfo.inf +++ b/SecurityPkg/Application/VariableInfo/VariableInfo.inf @@ -51,4 +51,4 @@ [Guids] gEfiAuthenticatedVariableGuid ## CONSUMES ## Configuration Table Guid - + gEfiVariableGuid ## CONSUMES ## Configuration Table Guid diff --git a/SecurityPkg/Include/Guid/PwdCredentialProviderHii.h b/SecurityPkg/Include/Guid/PwdCredentialProviderHii.h new file mode 100644 index 0000000000..007144abfd --- /dev/null +++ b/SecurityPkg/Include/Guid/PwdCredentialProviderHii.h @@ -0,0 +1,29 @@ +/** @file + GUID used as HII FormSet and HII Package list GUID in PwdCredentialProviderDxe driver. + +Copyright (c) 2011, Intel Corporation. All rights reserved.
+This program and the accompanying materials +are licensed and made available under the terms and conditions of the BSD License +which accompanies this distribution. The full text of the license may be found at +http://opensource.org/licenses/bsd-license.php + +THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, +WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. + +**/ + +#ifndef __PWD_CREDENTIAL_PROVIDER_HII_H__ +#define __PWD_CREDENTIAL_PROVIDER_HII_H__ + +// +// Used for save password credential and form browser. +// Also used as provider identifier. +// +#define PWD_CREDENTIAL_PROVIDER_GUID \ + { \ + 0x78b9ec8b, 0xc000, 0x46c5, { 0xac, 0x93, 0x24, 0xa0, 0xc1, 0xbb, 0x0, 0xce } \ + } + +extern EFI_GUID gPwdCredentialProviderGuid; + +#endif diff --git a/SecurityPkg/Include/Guid/TcgConfigHii.h b/SecurityPkg/Include/Guid/TcgConfigHii.h new file mode 100644 index 0000000000..d316299f8f --- /dev/null +++ b/SecurityPkg/Include/Guid/TcgConfigHii.h @@ -0,0 +1,25 @@ +/** @file + GUIDs used as HII FormSet and HII Package list GUID in TcgConfig driver. + +Copyright (c) 2011, Intel Corporation. All rights reserved.
+This program and the accompanying materials are licensed and made available under +the terms and conditions of the BSD License that accompanies this distribution. +The full text of the license may be found at +http://opensource.org/licenses/bsd-license.php. + +THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, +WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. + +**/ + +#ifndef __TCG_CONFIG_HII_GUID_H__ +#define __TCG_CONFIG_HII_GUID_H__ + +#define TCG_CONFIG_FORM_SET_GUID \ + { \ + 0xb0f901e4, 0xc424, 0x45de, {0x90, 0x81, 0x95, 0xe2, 0xb, 0xde, 0x6f, 0xb5 } \ + } + +extern EFI_GUID gTcgConfigFormSetGuid; + +#endif diff --git a/SecurityPkg/Include/Guid/UsbCredentialProviderHii.h b/SecurityPkg/Include/Guid/UsbCredentialProviderHii.h new file mode 100644 index 0000000000..217aef6567 --- /dev/null +++ b/SecurityPkg/Include/Guid/UsbCredentialProviderHii.h @@ -0,0 +1,29 @@ +/** @file + GUID used as HII Package list GUID in UsbCredentialProviderDxe driver. + +Copyright (c) 2011, Intel Corporation. All rights reserved.
+This program and the accompanying materials +are licensed and made available under the terms and conditions of the BSD License +which accompanies this distribution. The full text of the license may be found at +http://opensource.org/licenses/bsd-license.php + +THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, +WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. + +**/ + +#ifndef __USB_CREDENTIAL_PROVIDER_HII_H__ +#define __USB_CREDENTIAL_PROVIDER_HII_H__ + +// +// Used for save password credential and form browser +// And used as provider identifier +// +#define USB_CREDENTIAL_PROVIDER_GUID \ + { \ + 0xd0849ed1, 0xa88c, 0x4ba6, { 0xb1, 0xd6, 0xab, 0x50, 0xe2, 0x80, 0xb7, 0xa9 }\ + } + +extern EFI_GUID gUsbCredentialProviderGuid; + +#endif diff --git a/SecurityPkg/Include/Guid/UserIdentifyManagerHii.h b/SecurityPkg/Include/Guid/UserIdentifyManagerHii.h new file mode 100644 index 0000000000..11d215c5dd --- /dev/null +++ b/SecurityPkg/Include/Guid/UserIdentifyManagerHii.h @@ -0,0 +1,25 @@ +/** @file + GUID used as HII FormSet and HII Package list GUID in UserIdentifyManagerDxe driver. + +Copyright (c) 2011, Intel Corporation. All rights reserved.
+This program and the accompanying materials +are licensed and made available under the terms and conditions of the BSD License +which accompanies this distribution. The full text of the license may be found at +http://opensource.org/licenses/bsd-license.php + +THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, +WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. + +**/ + +#ifndef __USER_IDENTIFY_MANAGER_HII_H__ +#define __USER_IDENTIFY_MANAGER_HII_H__ + +#define USER_IDENTIFY_MANAGER_GUID \ + { \ + 0x3ccd3dd8, 0x8d45, 0x4fed, { 0x96, 0x2d, 0x2b, 0x38, 0xcd, 0x82, 0xb3, 0xc4 } \ + } + +extern EFI_GUID gUserIdentifyManagerGuid; + +#endif diff --git a/SecurityPkg/Include/Guid/UserProfileManagerHii.h b/SecurityPkg/Include/Guid/UserProfileManagerHii.h new file mode 100644 index 0000000000..e53e5a13e6 --- /dev/null +++ b/SecurityPkg/Include/Guid/UserProfileManagerHii.h @@ -0,0 +1,25 @@ +/** @file + GUID used as HII FormSet and HII Package list GUID in UserProfileManagerDxe driver. + +Copyright (c) 2011, Intel Corporation. All rights reserved.
+This program and the accompanying materials +are licensed and made available under the terms and conditions of the BSD License +which accompanies this distribution. The full text of the license may be found at +http://opensource.org/licenses/bsd-license.php + +THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, +WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. + +**/ + +#ifndef __USER_PROFILE_MANAGER_HII_H__ +#define __USER_PROFILE_MANAGER_HII_H__ + +#define USER_PROFILE_MANAGER_GUID \ + { \ + 0xc35f272c, 0x97c2, 0x465a, { 0xa2, 0x16, 0x69, 0x6b, 0x66, 0x8a, 0x8c, 0xfe } \ + } + +extern EFI_GUID gUserProfileManagerGuid; + +#endif \ No newline at end of file diff --git a/SecurityPkg/SecurityPkg.dec b/SecurityPkg/SecurityPkg.dec index 8121f390a5..f4605ec1b0 100644 --- a/SecurityPkg/SecurityPkg.dec +++ b/SecurityPkg/SecurityPkg.dec @@ -40,6 +40,21 @@ ## Include/Guid/PhysicalPresenceData.h gEfiPhysicalPresenceGuid = { 0xf6499b1, 0xe9ad, 0x493d, { 0xb9, 0xc2, 0x2f, 0x90, 0x81, 0x5c, 0x6c, 0xbc }} + + ## Include/Guid/PwdCredentialProviderHii.h + gPwdCredentialProviderGuid = { 0x78b9ec8b, 0xc000, 0x46c5, { 0xac, 0x93, 0x24, 0xa0, 0xc1, 0xbb, 0x0, 0xce }} + + ## Include/Guid/UsbCredentialProviderHii.h + gUsbCredentialProviderGuid = { 0xd0849ed1, 0xa88c, 0x4ba6, { 0xb1, 0xd6, 0xab, 0x50, 0xe2, 0x80, 0xb7, 0xa9 }} + + ## Include/Guid/UserIdentifyManagerHii.h + gUserIdentifyManagerGuid = { 0x3ccd3dd8, 0x8d45, 0x4fed, { 0x96, 0x2d, 0x2b, 0x38, 0xcd, 0x82, 0xb3, 0xc4 }} + + ## Include/Guid/UserProfileManagerHii.h + gUserProfileManagerGuid = { 0xc35f272c, 0x97c2, 0x465a, { 0xa2, 0x16, 0x69, 0x6b, 0x66, 0x8a, 0x8c, 0xfe }} + + ## Include/Guid/TcgConfigHii.h + gTcgConfigFormSetGuid = { 0xb0f901e4, 0xc424, 0x45de, { 0x90, 0x81, 0x95, 0xe2, 0xb, 0xde, 0x6f, 0xb5 }} [Ppis] ## Include/Ppi/LockPhysicalPresence.h diff --git a/SecurityPkg/Tcg/TcgConfigDxe/TcgConfig.vfr b/SecurityPkg/Tcg/TcgConfigDxe/TcgConfig.vfr index 360e5569f2..291f9239f4 100644 --- a/SecurityPkg/Tcg/TcgConfigDxe/TcgConfig.vfr +++ b/SecurityPkg/Tcg/TcgConfigDxe/TcgConfig.vfr @@ -15,7 +15,7 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. #include "TcgConfigNvData.h" formset - guid = TCG_CONFIG_PRIVATE_GUID, + guid = TCG_CONFIG_FORM_SET_GUID, title = STRING_TOKEN(STR_TPM_TITLE), help = STRING_TOKEN(STR_TPM_HELP), classguid = EFI_HII_PLATFORM_SETUP_FORMSET_GUID, @@ -23,7 +23,7 @@ formset varstore TCG_CONFIGURATION, varid = TCG_CONFIGURATION_VARSTORE_ID, name = TCG_CONFIGURATION, - guid = TCG_CONFIG_PRIVATE_GUID; + guid = TCG_CONFIG_FORM_SET_GUID; form formid = TCG_CONFIGURATION_FORM_ID, title = STRING_TOKEN(STR_TPM_TITLE); diff --git a/SecurityPkg/Tcg/TcgConfigDxe/TcgConfigDriver.c b/SecurityPkg/Tcg/TcgConfigDxe/TcgConfigDriver.c index 2ec33e069e..2d3728cdb2 100644 --- a/SecurityPkg/Tcg/TcgConfigDxe/TcgConfigDriver.c +++ b/SecurityPkg/Tcg/TcgConfigDxe/TcgConfigDriver.c @@ -14,8 +14,6 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. #include "TcgConfigImpl.h" -EFI_GUID gTcgConfigPrivateGuid = TCG_CONFIG_PRIVATE_GUID; - /** The entry point for Tcg configuration driver. @@ -52,7 +50,7 @@ TcgConfigDriverEntryPoint ( Status = gBS->OpenProtocol ( ImageHandle, - &gTcgConfigPrivateGuid, + &gEfiCallerIdGuid, NULL, ImageHandle, ImageHandle, @@ -86,7 +84,7 @@ TcgConfigDriverEntryPoint ( // Status = gBS->InstallMultipleProtocolInterfaces ( &ImageHandle, - &gTcgConfigPrivateGuid, + &gEfiCallerIdGuid, PrivateData, NULL ); @@ -125,7 +123,7 @@ TcgConfigDriverUnload ( Status = gBS->HandleProtocol ( ImageHandle, - &gTcgConfigPrivateGuid, + &gEfiCallerIdGuid, (VOID **) &PrivateData ); if (EFI_ERROR (Status)) { @@ -136,7 +134,7 @@ TcgConfigDriverUnload ( gBS->UninstallMultipleProtocolInterfaces ( &ImageHandle, - &gTcgConfigPrivateGuid, + &gEfiCallerIdGuid, PrivateData, NULL ); diff --git a/SecurityPkg/Tcg/TcgConfigDxe/TcgConfigDxe.inf b/SecurityPkg/Tcg/TcgConfigDxe/TcgConfigDxe.inf index d9d3102668..44abdc0acb 100644 --- a/SecurityPkg/Tcg/TcgConfigDxe/TcgConfigDxe.inf +++ b/SecurityPkg/Tcg/TcgConfigDxe/TcgConfigDxe.inf @@ -55,6 +55,7 @@ [Guids] gEfiPhysicalPresenceGuid gEfiIfrTianoGuid + gTcgConfigFormSetGuid [Protocols] gEfiHiiConfigAccessProtocolGuid ## PRODUCES diff --git a/SecurityPkg/Tcg/TcgConfigDxe/TcgConfigImpl.c b/SecurityPkg/Tcg/TcgConfigDxe/TcgConfigImpl.c index 0127819a90..c172583441 100644 --- a/SecurityPkg/Tcg/TcgConfigDxe/TcgConfigImpl.c +++ b/SecurityPkg/Tcg/TcgConfigDxe/TcgConfigImpl.c @@ -14,7 +14,6 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. #include "TcgConfigImpl.h" -EFI_GUID mTcgFormSetGuid = TCG_CONFIG_PRIVATE_GUID; CHAR16 mTcgStorageName[] = L"TCG_CONFIGURATION"; TCG_CONFIG_PRIVATE_DATA mTcgConfigPrivateDateTemplate = { @@ -36,7 +35,7 @@ HII_VENDOR_DEVICE_PATH mTcgHiiVendorDevicePath = { (UINT8) ((sizeof (VENDOR_DEVICE_PATH)) >> 8) } }, - TCG_CONFIG_PRIVATE_GUID + TCG_CONFIG_FORM_SET_GUID }, { END_DEVICE_PATH_TYPE, @@ -166,7 +165,7 @@ TcgExtractConfig ( } *Progress = Request; - if ((Request != NULL) && !HiiIsConfigHdrMatch (Request, &mTcgFormSetGuid, mTcgStorageName)) { + if ((Request != NULL) && !HiiIsConfigHdrMatch (Request, &gTcgConfigFormSetGuid, mTcgStorageName)) { return EFI_NOT_FOUND; } @@ -220,7 +219,7 @@ TcgExtractConfig ( // Allocate and fill a buffer large enough to hold the template // followed by "&OFFSET=0&WIDTH=WWWWWWWWWWWWWWWW" followed by a Null-terminator // - ConfigRequestHdr = HiiConstructConfigHdr (&mTcgFormSetGuid, mTcgStorageName, PrivateData->DriverHandle); + ConfigRequestHdr = HiiConstructConfigHdr (&gTcgConfigFormSetGuid, mTcgStorageName, PrivateData->DriverHandle); Size = (StrLen (ConfigRequestHdr) + 32 + 1) * sizeof (CHAR16); ConfigRequest = AllocateZeroPool (Size); ASSERT (ConfigRequest != NULL); @@ -290,7 +289,7 @@ TcgRouteConfig ( } *Progress = Configuration; - if (!HiiIsConfigHdrMatch (Configuration, &mTcgFormSetGuid, mTcgStorageName)) { + if (!HiiIsConfigHdrMatch (Configuration, &gTcgConfigFormSetGuid, mTcgStorageName)) { return EFI_NOT_FOUND; } @@ -460,7 +459,7 @@ InstallTcgConfigForm ( // Publish the HII package list // HiiHandle = HiiAddPackages ( - &mTcgFormSetGuid, + &gTcgConfigFormSetGuid, DriverHandle, TcgConfigDxeStrings, TcgConfigBin, diff --git a/SecurityPkg/Tcg/TcgConfigDxe/TcgConfigNvData.h b/SecurityPkg/Tcg/TcgConfigDxe/TcgConfigNvData.h index 982764c65c..30f4dbfba6 100644 --- a/SecurityPkg/Tcg/TcgConfigDxe/TcgConfigNvData.h +++ b/SecurityPkg/Tcg/TcgConfigDxe/TcgConfigNvData.h @@ -17,11 +17,7 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. #include #include - -#define TCG_CONFIG_PRIVATE_GUID \ - { \ - 0xb0f901e4, 0xc424, 0x45de, {0x90, 0x81, 0x95, 0xe2, 0xb, 0xde, 0x6f, 0xb5 } \ - } +#include #define TCG_CONFIGURATION_VARSTORE_ID 0x0001 #define TCG_CONFIGURATION_FORM_ID 0x0001 diff --git a/SecurityPkg/UserIdentification/PwdCredentialProviderDxe/PwdCredentialProvider.c b/SecurityPkg/UserIdentification/PwdCredentialProviderDxe/PwdCredentialProvider.c index 9d2e622f13..b8513e9515 100644 --- a/SecurityPkg/UserIdentification/PwdCredentialProviderDxe/PwdCredentialProvider.c +++ b/SecurityPkg/UserIdentification/PwdCredentialProviderDxe/PwdCredentialProvider.c @@ -18,12 +18,6 @@ CREDENTIAL_TABLE *mPwdTable = NULL; PWD_PROVIDER_CALLBACK_INFO *mCallbackInfo = NULL; PASSWORD_CREDENTIAL_INFO *mPwdInfoHandle = NULL; -// -// Used for save password credential and form browser. -// Also used as provider identifier. -// -EFI_GUID mPwdCredentialGuid = PWD_CREDENTIAL_PROVIDER_GUID; - HII_VENDOR_DEVICE_PATH mHiiVendorDevicePath = { { { @@ -34,7 +28,7 @@ HII_VENDOR_DEVICE_PATH mHiiVendorDevicePath = { (UINT8) ((sizeof (VENDOR_DEVICE_PATH)) >> 8) } }, - { 0xeba7fc2b, 0xa465, 0x4d96, { 0x85, 0xa9, 0xd2, 0xf6, 0x64, 0xdf, 0x9b, 0x45 } } + PWD_CREDENTIAL_PROVIDER_GUID }, { END_DEVICE_PATH_TYPE, @@ -180,7 +174,7 @@ ModifyTable ( // Status = gRT->SetVariable ( L"PwdCredential", - &mPwdCredentialGuid, + &gPwdCredentialProviderGuid, EFI_VARIABLE_NON_VOLATILE | EFI_VARIABLE_BOOTSERVICE_ACCESS, mPwdTable->Count * sizeof (PASSWORD_INFO), &mPwdTable->UserInfo @@ -212,7 +206,7 @@ InitCredentialTable ( Var = NULL; Status = gRT->GetVariable ( L"PwdCredential", - &mPwdCredentialGuid, + &gPwdCredentialProviderGuid, NULL, &VarSize, Var @@ -224,7 +218,7 @@ InitCredentialTable ( } Status = gRT->GetVariable ( L"PwdCredential", - &mPwdCredentialGuid, + &gPwdCredentialProviderGuid, NULL, &VarSize, Var @@ -693,7 +687,7 @@ InitFormBrowser ( // Publish HII data. // CallbackInfo->HiiHandle = HiiAddPackages ( - &mPwdCredentialGuid, + &gPwdCredentialProviderGuid, CallbackInfo->DriverHandle, PwdCredentialProviderStrings, PwdCredentialProviderVfrBin, @@ -888,7 +882,7 @@ CredentialForm ( *Hii = mCallbackInfo->HiiHandle; *FormId = FORMID_GET_PASSWORD_FORM; - CopyGuid (FormSetId, &mPwdCredentialGuid); + CopyGuid (FormSetId, &gPwdCredentialProviderGuid); return EFI_SUCCESS; } @@ -1269,8 +1263,8 @@ CredentialGetNextInfo ( Info->InfoType = EFI_USER_INFO_CREDENTIAL_PROVIDER_RECORD; Info->InfoSize = (UINT32) InfoLen; Info->InfoAttribs = EFI_USER_INFO_PROTECTED; - CopyGuid (&Info->Credential, &mPwdCredentialGuid); - CopyGuid ((EFI_GUID *)(Info + 1), &mPwdCredentialGuid); + CopyGuid (&Info->Credential, &gPwdCredentialProviderGuid); + CopyGuid ((EFI_GUID *)(Info + 1), &gPwdCredentialProviderGuid); mPwdInfoHandle->Info[0] = Info; mPwdInfoHandle->Count++; @@ -1287,7 +1281,7 @@ CredentialGetNextInfo ( Info->InfoType = EFI_USER_INFO_CREDENTIAL_PROVIDER_NAME_RECORD; Info->InfoSize = (UINT32) InfoLen; Info->InfoAttribs = EFI_USER_INFO_PROTECTED; - CopyGuid (&Info->Credential, &mPwdCredentialGuid); + CopyGuid (&Info->Credential, &gPwdCredentialProviderGuid); CopyMem ((UINT8*)(Info + 1), ProvNameStr, ProvStrLen); FreePool (ProvNameStr); @@ -1304,7 +1298,7 @@ CredentialGetNextInfo ( Info->InfoType = EFI_USER_INFO_CREDENTIAL_TYPE_RECORD; Info->InfoSize = (UINT32) InfoLen; Info->InfoAttribs = EFI_USER_INFO_PROTECTED; - CopyGuid (&Info->Credential, &mPwdCredentialGuid); + CopyGuid (&Info->Credential, &gPwdCredentialProviderGuid); CopyGuid ((EFI_GUID *)(Info + 1), &gEfiUserCredentialClassPasswordGuid); mPwdInfoHandle->Info[2] = Info; @@ -1322,7 +1316,7 @@ CredentialGetNextInfo ( Info->InfoType = EFI_USER_INFO_CREDENTIAL_PROVIDER_NAME_RECORD; Info->InfoSize = (UINT32) InfoLen; Info->InfoAttribs = EFI_USER_INFO_PROTECTED; - CopyGuid (&Info->Credential, &mPwdCredentialGuid); + CopyGuid (&Info->Credential, &gPwdCredentialProviderGuid); CopyMem ((UINT8*)(Info + 1), ProvNameStr, ProvStrLen); FreePool (ProvNameStr); diff --git a/SecurityPkg/UserIdentification/PwdCredentialProviderDxe/PwdCredentialProvider.h b/SecurityPkg/UserIdentification/PwdCredentialProviderDxe/PwdCredentialProvider.h index 9b5e7768ba..c9ef33b8ac 100644 --- a/SecurityPkg/UserIdentification/PwdCredentialProviderDxe/PwdCredentialProvider.h +++ b/SecurityPkg/UserIdentification/PwdCredentialProviderDxe/PwdCredentialProvider.h @@ -18,7 +18,6 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. #include #include -#include #include #include diff --git a/SecurityPkg/UserIdentification/PwdCredentialProviderDxe/PwdCredentialProviderData.h b/SecurityPkg/UserIdentification/PwdCredentialProviderDxe/PwdCredentialProviderData.h index ffe0adea20..feeffcc6df 100644 --- a/SecurityPkg/UserIdentification/PwdCredentialProviderDxe/PwdCredentialProviderData.h +++ b/SecurityPkg/UserIdentification/PwdCredentialProviderDxe/PwdCredentialProviderData.h @@ -1,7 +1,7 @@ /** @file Data structure used by the Password Credential Provider driver. -Copyright (c) 2009 - 2010, Intel Corporation. All rights reserved.
+Copyright (c) 2009 - 2011, Intel Corporation. All rights reserved.
This program and the accompanying materials are licensed and made available under the terms and conditions of the BSD License which accompanies this distribution. The full text of the license may be found at @@ -15,10 +15,7 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. #ifndef _PWD_CREDENTIAL_PROVIDER_DATA_H_ #define _PWD_CREDENTIAL_PROVIDER_DATA_H_ -#define PWD_CREDENTIAL_PROVIDER_GUID \ - { \ - 0x78b9ec8b, 0xc000, 0x46c5, { 0xac, 0x93, 0x24, 0xa0, 0xc1, 0xbb, 0x0, 0xce } \ - } +#include // // Forms definition diff --git a/SecurityPkg/UserIdentification/PwdCredentialProviderDxe/PwdCredentialProviderDxe.inf b/SecurityPkg/UserIdentification/PwdCredentialProviderDxe/PwdCredentialProviderDxe.inf index 0ffc24e076..3b32fbb962 100644 --- a/SecurityPkg/UserIdentification/PwdCredentialProviderDxe/PwdCredentialProviderDxe.inf +++ b/SecurityPkg/UserIdentification/PwdCredentialProviderDxe/PwdCredentialProviderDxe.inf @@ -30,6 +30,7 @@ MdePkg/MdePkg.dec MdeModulePkg/MdeModulePkg.dec CryptoPkg/CryptoPkg.dec + SecurityPkg/SecurityPkg.dec [LibraryClasses] UefiRuntimeServicesTableLib @@ -43,8 +44,8 @@ BaseCryptLib [Guids] - gEfiIfrTianoGuid ## CONSUMES ## Guid gEfiUserCredentialClassPasswordGuid ## CONSUMES ## Guid + gPwdCredentialProviderGuid ## PRODUCES ## Guid [Protocols] gEfiDevicePathProtocolGuid # PROTOCOL ALWAYS_CONSUMED diff --git a/SecurityPkg/UserIdentification/UsbCredentialProviderDxe/UsbCredentialProvider.c b/SecurityPkg/UserIdentification/UsbCredentialProviderDxe/UsbCredentialProvider.c index 2b79354fbd..726e61c3b1 100644 --- a/SecurityPkg/UserIdentification/UsbCredentialProviderDxe/UsbCredentialProvider.c +++ b/SecurityPkg/UserIdentification/UsbCredentialProviderDxe/UsbCredentialProvider.c @@ -18,34 +18,6 @@ CREDENTIAL_TABLE *mUsbTable = NULL; USB_PROVIDER_CALLBACK_INFO *mCallbackInfo = NULL; USB_CREDENTIAL_INFO *mUsbInfoHandle = NULL; -// -// Used for save password credential and form browser -// And used as provider identifier -// -EFI_GUID mUsbCredentialGuid = USB_CREDENTIAL_PROVIDER_GUID; - -HII_VENDOR_DEVICE_PATH mHiiVendorDevicePath = { - { - { - HARDWARE_DEVICE_PATH, - HW_VENDOR_DP, - { - (UINT8) (sizeof (VENDOR_DEVICE_PATH)), - (UINT8) ((sizeof (VENDOR_DEVICE_PATH)) >> 8) - } - }, - { 0x9463f883, 0x48f6, 0x4a7a, { 0x97, 0x2d, 0x9f, 0x8f, 0x38, 0xf2, 0xdd, 0x91 } } - }, - { - END_DEVICE_PATH_TYPE, - END_ENTIRE_DEVICE_PATH_SUBTYPE, - { - (UINT8) (END_DEVICE_PATH_LENGTH), - (UINT8) ((END_DEVICE_PATH_LENGTH) >> 8) - } - } -}; - EFI_USER_CREDENTIAL_PROTOCOL gUsbCredentialProviderDriver = { USB_CREDENTIAL_PROVIDER_GUID, EFI_USER_CREDENTIAL_CLASS_SECURE_CARD, @@ -180,7 +152,7 @@ ModifyTable ( // Status = gRT->SetVariable ( L"UsbCredential", - &mUsbCredentialGuid, + &gUsbCredentialProviderGuid, EFI_VARIABLE_NON_VOLATILE | EFI_VARIABLE_BOOTSERVICE_ACCESS, mUsbTable->Count * sizeof (USB_INFO), &mUsbTable->UserInfo @@ -212,7 +184,7 @@ InitCredentialTable ( Var = NULL; Status = gRT->GetVariable ( L"UsbCredential", - &mUsbCredentialGuid, + &gUsbCredentialProviderGuid, NULL, &VarSize, Var @@ -224,7 +196,7 @@ InitCredentialTable ( } Status = gRT->GetVariable ( L"UsbCredential", - &mUsbCredentialGuid, + &gUsbCredentialProviderGuid, NULL, &VarSize, Var @@ -647,7 +619,7 @@ InitFormBrowser ( // Publish HII data. // CallbackInfo->HiiHandle = HiiAddPackages ( - &mUsbCredentialGuid, + &gUsbCredentialProviderGuid, CallbackInfo->DriverHandle, UsbCredentialProviderStrings, NULL @@ -1249,8 +1221,8 @@ CredentialGetNextInfo ( Info->InfoType = EFI_USER_INFO_CREDENTIAL_PROVIDER_RECORD; Info->InfoSize = (UINT32) InfoLen; Info->InfoAttribs = EFI_USER_INFO_PROTECTED; - CopyGuid (&Info->Credential, &mUsbCredentialGuid); - CopyGuid ((EFI_GUID *)(Info + 1), &mUsbCredentialGuid); + CopyGuid (&Info->Credential, &gUsbCredentialProviderGuid); + CopyGuid ((EFI_GUID *)(Info + 1), &gUsbCredentialProviderGuid); mUsbInfoHandle->Info[0] = Info; mUsbInfoHandle->Count++; @@ -1267,7 +1239,7 @@ CredentialGetNextInfo ( Info->InfoType = EFI_USER_INFO_CREDENTIAL_PROVIDER_NAME_RECORD; Info->InfoSize = (UINT32) InfoLen; Info->InfoAttribs = EFI_USER_INFO_PROTECTED; - CopyGuid (&Info->Credential, &mUsbCredentialGuid); + CopyGuid (&Info->Credential, &gUsbCredentialProviderGuid); CopyMem ((UINT8*)(Info + 1), ProvNameStr, ProvStrLen); FreePool (ProvNameStr); @@ -1284,7 +1256,7 @@ CredentialGetNextInfo ( Info->InfoType = EFI_USER_INFO_CREDENTIAL_TYPE_RECORD; Info->InfoSize = (UINT32) InfoLen; Info->InfoAttribs = EFI_USER_INFO_PROTECTED; - CopyGuid (&Info->Credential, &mUsbCredentialGuid); + CopyGuid (&Info->Credential, &gUsbCredentialProviderGuid); CopyGuid ((EFI_GUID *)(Info + 1), &gEfiUserCredentialClassSecureCardGuid); mUsbInfoHandle->Info[2] = Info; @@ -1302,7 +1274,7 @@ CredentialGetNextInfo ( Info->InfoType = EFI_USER_INFO_CREDENTIAL_PROVIDER_NAME_RECORD; Info->InfoSize = (UINT32) InfoLen; Info->InfoAttribs = EFI_USER_INFO_PROTECTED; - CopyGuid (&Info->Credential, &mUsbCredentialGuid); + CopyGuid (&Info->Credential, &gUsbCredentialProviderGuid); CopyMem ((UINT8*)(Info + 1), ProvNameStr, ProvStrLen); FreePool (ProvNameStr); diff --git a/SecurityPkg/UserIdentification/UsbCredentialProviderDxe/UsbCredentialProvider.h b/SecurityPkg/UserIdentification/UsbCredentialProviderDxe/UsbCredentialProvider.h index 1d43e9ac99..d0295b8de4 100644 --- a/SecurityPkg/UserIdentification/UsbCredentialProviderDxe/UsbCredentialProvider.h +++ b/SecurityPkg/UserIdentification/UsbCredentialProviderDxe/UsbCredentialProvider.h @@ -1,7 +1,7 @@ /** @file Usb Credential Provider driver header file. -Copyright (c) 2009, Intel Corporation. All rights reserved.
+Copyright (c) 2009 - 2011, Intel Corporation. All rights reserved.
This program and the accompanying materials are licensed and made available under the terms and conditions of the BSD License which accompanies this distribution. The full text of the license may be found at @@ -18,9 +18,9 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. #include #include -#include #include #include +#include #include #include @@ -40,16 +40,10 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. #include extern UINT8 UsbCredentialProviderStrings[]; -extern UINT8 UsbCredentialProviderVfrBin[]; #define USB_TABLE_INC 16 #define HASHED_CREDENTIAL_LEN 20 -#define USB_CREDENTIAL_PROVIDER_GUID \ - { \ - 0xd0849ed1, 0xa88c, 0x4ba6, { 0xb1, 0xd6, 0xab, 0x50, 0xe2, 0x80, 0xb7, 0xa9 }\ - } - // // Save the enroll user credential Information. // @@ -75,14 +69,6 @@ typedef struct { EFI_USER_INFO *Info[1]; } USB_CREDENTIAL_INFO; -/// -/// HII specific Vendor Device Path definition. -/// -typedef struct { - VENDOR_DEVICE_PATH VendorDevicePath; - EFI_DEVICE_PATH_PROTOCOL End; -} HII_VENDOR_DEVICE_PATH; - #define USB_PROVIDER_SIGNATURE SIGNATURE_32 ('U', 'S', 'B', 'P') typedef struct { diff --git a/SecurityPkg/UserIdentification/UsbCredentialProviderDxe/UsbCredentialProviderDxe.inf b/SecurityPkg/UserIdentification/UsbCredentialProviderDxe/UsbCredentialProviderDxe.inf index 2a45763566..06f212e88a 100644 --- a/SecurityPkg/UserIdentification/UsbCredentialProviderDxe/UsbCredentialProviderDxe.inf +++ b/SecurityPkg/UserIdentification/UsbCredentialProviderDxe/UsbCredentialProviderDxe.inf @@ -42,7 +42,7 @@ BaseCryptLib [Guids] - gEfiIfrTianoGuid ## CONSUMES ## Guid + gUsbCredentialProviderGuid ## PRODUCES ## Guid gEfiFileInfoGuid ## CONSUMES ## Guid gEfiUserCredentialClassSecureCardGuid ## CONSUMES ## Guid diff --git a/SecurityPkg/UserIdentification/UserIdentifyManagerDxe/UserIdentifyManager.c b/SecurityPkg/UserIdentification/UserIdentifyManagerDxe/UserIdentifyManager.c index 64388130e1..e846b71f03 100644 --- a/SecurityPkg/UserIdentification/UserIdentifyManagerDxe/UserIdentifyManager.c +++ b/SecurityPkg/UserIdentification/UserIdentifyManagerDxe/UserIdentifyManager.c @@ -14,11 +14,6 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. #include "UserIdentifyManager.h" -// -// Guid used in user profile saving and in form browser. -// -EFI_GUID mUserManagerGuid = USER_IDENTIFY_MANAGER_GUID; - // // Default user name. // @@ -54,10 +49,7 @@ HII_VENDOR_DEVICE_PATH mHiiVendorDevicePath = { (UINT8) ((sizeof (VENDOR_DEVICE_PATH)) >> 8) } }, - // - // {ACA7C06F-743C-454f-9C6D-692138482498} - // - { 0xaca7c06f, 0x743c, 0x454f, { 0x9c, 0x6d, 0x69, 0x21, 0x38, 0x48, 0x24, 0x98 } } + USER_IDENTIFY_MANAGER_GUID }, { END_DEVICE_PATH_TYPE, @@ -1152,7 +1144,7 @@ SaveNvUserProfile ( // Status = gRT->SetVariable ( User->UserVarName, - &mUserManagerGuid, + &gUserIdentifyManagerGuid, EFI_VARIABLE_NON_VOLATILE | EFI_VARIABLE_BOOTSERVICE_ACCESS, Delete ? 0 : User->UserProfileSize, User->ProfileInfo @@ -2812,7 +2804,7 @@ IdentifyOrTypeUser ( HiiUpdateForm ( mCallbackInfo->HiiHandle, // HII handle - &mUserManagerGuid, // Formset GUID + &gUserIdentifyManagerGuid,// Formset GUID FORMID_PROVIDER_FORM, // Form ID StartOpCodeHandle, // Label for where to insert opcodes EndOpCodeHandle // Replace data @@ -2916,7 +2908,7 @@ UserIdentifyManagerCallback ( HiiUpdateForm ( mCallbackInfo->HiiHandle, // HII handle - &mUserManagerGuid, // Formset GUID + &gUserIdentifyManagerGuid,// Formset GUID FORMID_USER_FORM, // Form ID StartOpCodeHandle, // Label for where to insert opcodes EndOpCodeHandle // Replace data @@ -3058,7 +3050,7 @@ InitUserProfileDb ( // Get variable value. // VarSize = CurVarSize; - Status = gRT->GetVariable (VarName, &mUserManagerGuid, &VarAttr, &VarSize, VarData); + Status = gRT->GetVariable (VarName, &gUserIdentifyManagerGuid, &VarAttr, &VarSize, VarData); if (Status == EFI_BUFFER_TOO_SMALL) { FreePool (VarData); VarData = AllocatePool (VarSize); @@ -3068,7 +3060,7 @@ InitUserProfileDb ( } CurVarSize = VarSize; - Status = gRT->GetVariable (VarName, &mUserManagerGuid, &VarAttr, &VarSize, VarData); + Status = gRT->GetVariable (VarName, &gUserIdentifyManagerGuid, &VarAttr, &VarSize, VarData); } if (EFI_ERROR (Status)) { @@ -3082,7 +3074,7 @@ InitUserProfileDb ( // Check variable attributes. // if (VarAttr != (EFI_VARIABLE_NON_VOLATILE | EFI_VARIABLE_BOOTSERVICE_ACCESS)) { - Status = gRT->SetVariable (VarName, &mUserManagerGuid, VarAttr, 0, NULL); + Status = gRT->SetVariable (VarName, &gUserIdentifyManagerGuid, VarAttr, 0, NULL); continue; } @@ -3095,7 +3087,7 @@ InitUserProfileDb ( // // Delete invalid user profile // - gRT->SetVariable (VarName, &mUserManagerGuid, VarAttr, 0, NULL); + gRT->SetVariable (VarName, &gUserIdentifyManagerGuid, VarAttr, 0, NULL); } else if (Status == EFI_OUT_OF_RESOURCES) { break; } @@ -3104,7 +3096,7 @@ InitUserProfileDb ( // Delete and save the profile again if some invalid profiles are deleted. // if (mUserProfileDb->UserProfileNum < Index) { - gRT->SetVariable (VarName, &mUserManagerGuid, VarAttr, 0, NULL); + gRT->SetVariable (VarName, &gUserIdentifyManagerGuid, VarAttr, 0, NULL); SaveNvUserProfile (mUserProfileDb->UserProfile[mUserProfileDb->UserProfileNum - 1], FALSE); } } @@ -3349,7 +3341,7 @@ InitFormBrowser ( // Publish HII data. // CallbackInfo->HiiHandle = HiiAddPackages ( - &mUserManagerGuid, + &gUserIdentifyManagerGuid, CallbackInfo->DriverHandle, UserIdentifyManagerStrings, UserIdentifyManagerVfrBin, @@ -3590,7 +3582,7 @@ IdentifyUser ( mCallbackInfo->FormBrowser2, &mCallbackInfo->HiiHandle, 1, - &mUserManagerGuid, + &gUserIdentifyManagerGuid, 0, NULL, NULL diff --git a/SecurityPkg/UserIdentification/UserIdentifyManagerDxe/UserIdentifyManagerData.h b/SecurityPkg/UserIdentification/UserIdentifyManagerDxe/UserIdentifyManagerData.h index d91de101f7..5efc50d16b 100644 --- a/SecurityPkg/UserIdentification/UserIdentifyManagerDxe/UserIdentifyManagerData.h +++ b/SecurityPkg/UserIdentification/UserIdentifyManagerDxe/UserIdentifyManagerData.h @@ -1,7 +1,7 @@ /** @file Data structure used by the user identify manager driver. -Copyright (c) 2009 - 2010, Intel Corporation. All rights reserved.
+Copyright (c) 2009 - 2011, Intel Corporation. All rights reserved.
This program and the accompanying materials are licensed and made available under the terms and conditions of the BSD License which accompanies this distribution. The full text of the license may be found at @@ -15,15 +15,7 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. #ifndef _USER_IDENTIFY_MANAGER_DATA_H_ #define _USER_IDENTIFY_MANAGER_DATA_H_ -#include "UserIdentifyManagerStrDefs.h" - -// -// Guid used in user profile saving and in form browser. -// -#define USER_IDENTIFY_MANAGER_GUID \ - { \ - 0x3ccd3dd8, 0x8d45, 0x4fed, { 0x96, 0x2d, 0x2b, 0x38, 0xcd, 0x82, 0xb3, 0xc4 } \ - } +#include // // Forms definition. diff --git a/SecurityPkg/UserIdentification/UserIdentifyManagerDxe/UserIdentifyManagerDxe.inf b/SecurityPkg/UserIdentification/UserIdentifyManagerDxe/UserIdentifyManagerDxe.inf index d5fccea342..a8d7818597 100644 --- a/SecurityPkg/UserIdentification/UserIdentifyManagerDxe/UserIdentifyManagerDxe.inf +++ b/SecurityPkg/UserIdentification/UserIdentifyManagerDxe/UserIdentifyManagerDxe.inf @@ -30,6 +30,7 @@ [Packages] MdePkg/MdePkg.dec MdeModulePkg/MdeModulePkg.dec + SecurityPkg/SecurityPkg.dec [LibraryClasses] UefiRuntimeServicesTableLib @@ -44,6 +45,7 @@ [Guids] gEfiIfrTianoGuid ## CONSUMES ## Guid gEfiEventUserProfileChangedGuid ## CONSUMES ## Guid + gUserIdentifyManagerGuid ## PRODUCES ## Guid [Protocols] gEfiFormBrowser2ProtocolGuid ## CONSUMES diff --git a/SecurityPkg/UserIdentification/UserProfileManagerDxe/UserProfileDelete.c b/SecurityPkg/UserIdentification/UserProfileManagerDxe/UserProfileDelete.c index d0295b731b..fffc93beab 100644 --- a/SecurityPkg/UserIdentification/UserProfileManagerDxe/UserProfileDelete.c +++ b/SecurityPkg/UserIdentification/UserProfileManagerDxe/UserProfileDelete.c @@ -1,7 +1,7 @@ /** @file The functions to delete a user profile. -Copyright (c) 2009 - 2010, Intel Corporation. All rights reserved.
+Copyright (c) 2009 - 2011, Intel Corporation. All rights reserved.
This program and the accompanying materials are licensed and made available under the terms and conditions of the BSD License which accompanies this distribution. The full text of the license may be found at @@ -303,7 +303,7 @@ SelectUserToDelete ( HiiUpdateForm ( mCallbackInfo->HiiHandle, // HII handle - &mUserProfileManagerGuid, // Formset GUID + &gUserProfileManagerGuid, // Formset GUID FORMID_DEL_USER, // Form ID StartOpCodeHandle, // Label for where to insert opcodes EndOpCodeHandle // Replace data diff --git a/SecurityPkg/UserIdentification/UserProfileManagerDxe/UserProfileManager.c b/SecurityPkg/UserIdentification/UserProfileManagerDxe/UserProfileManager.c index c41fe973bd..83b391c546 100644 --- a/SecurityPkg/UserIdentification/UserProfileManagerDxe/UserProfileManager.c +++ b/SecurityPkg/UserIdentification/UserProfileManagerDxe/UserProfileManager.c @@ -17,7 +17,6 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. #include "UserProfileManager.h" -EFI_GUID mUserProfileManagerGuid = USER_PROFILE_MANAGER_GUID; EFI_USER_MANAGER_PROTOCOL *mUserManager = NULL; CREDENTIAL_PROVIDER_INFO *mProviderInfo = NULL; UINT8 mProviderChoice; @@ -35,7 +34,7 @@ HII_VENDOR_DEVICE_PATH mHiiVendorDevicePath = { (UINT8) ((sizeof (VENDOR_DEVICE_PATH)) >> 8) } }, - {0xad2e3474, 0x93e6, 0x488b, {0x93, 0x19, 0x64, 0x88, 0xfc, 0x68, 0x1f, 0x16}} + USER_PROFILE_MANAGER_GUID }, { END_DEVICE_PATH_TYPE, @@ -293,7 +292,7 @@ UserProfileManagerCallback ( HiiUpdateForm ( mCallbackInfo->HiiHandle, // HII handle - &mUserProfileManagerGuid, // Formset GUID + &gUserProfileManagerGuid, // Formset GUID FORMID_USER_MANAGE, // Form ID StartOpCodeHandle, // Label for where to insert opcodes EndOpCodeHandle // Replace data @@ -786,7 +785,7 @@ UserProfileManagerInit ( // Publish HII data. // CallbackInfo->HiiHandle = HiiAddPackages ( - &mUserProfileManagerGuid, + &gUserProfileManagerGuid, CallbackInfo->DriverHandle, UserProfileManagerStrings, UserProfileManagerVfrBin, diff --git a/SecurityPkg/UserIdentification/UserProfileManagerDxe/UserProfileManager.h b/SecurityPkg/UserIdentification/UserProfileManagerDxe/UserProfileManager.h index b7098dc7b6..bff9539602 100644 --- a/SecurityPkg/UserIdentification/UserProfileManagerDxe/UserProfileManager.h +++ b/SecurityPkg/UserIdentification/UserProfileManagerDxe/UserProfileManager.h @@ -1,7 +1,7 @@ /** @file The header file for user profile manager driver. -Copyright (c) 2009 - 2010, Intel Corporation. All rights reserved.
+Copyright (c) 2009 - 2011, Intel Corporation. All rights reserved.
This program and the accompanying materials are licensed and made available under the terms and conditions of the BSD License which accompanies this distribution. The full text of the license may be found at @@ -112,11 +112,6 @@ extern UINT8 UserProfileManagerVfrBin[]; // extern UINT8 UserProfileManagerStrings[]; -// -// Guid used in the form browse. -// -extern EFI_GUID mUserProfileManagerGuid; - // // The user manager protocol, used in several function. // diff --git a/SecurityPkg/UserIdentification/UserProfileManagerDxe/UserProfileManagerData.h b/SecurityPkg/UserIdentification/UserProfileManagerDxe/UserProfileManagerData.h index 58b6cb8c1e..4548c758b5 100644 --- a/SecurityPkg/UserIdentification/UserProfileManagerDxe/UserProfileManagerData.h +++ b/SecurityPkg/UserIdentification/UserProfileManagerDxe/UserProfileManagerData.h @@ -1,7 +1,7 @@ /** @file The form data for user profile manager driver. -Copyright (c) 2009 - 2010, Intel Corporation. All rights reserved.
+Copyright (c) 2009 - 2011, Intel Corporation. All rights reserved.
This program and the accompanying materials are licensed and made available under the terms and conditions of the BSD License which accompanies this distribution. The full text of the license may be found at @@ -15,10 +15,7 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. #ifndef __USER_PROFILE_MANAGER_DATA_H__ #define __USER_PROFILE_MANAGER_DATA_H__ -#define USER_PROFILE_MANAGER_GUID \ - { \ - 0xc35f272c, 0x97c2, 0x465a, { 0xa2, 0x16, 0x69, 0x6b, 0x66, 0x8a, 0x8c, 0xfe } \ - } +#include // // Form ID diff --git a/SecurityPkg/UserIdentification/UserProfileManagerDxe/UserProfileManagerDxe.inf b/SecurityPkg/UserIdentification/UserProfileManagerDxe/UserProfileManagerDxe.inf index 27b3464dcf..b31c37e7b2 100644 --- a/SecurityPkg/UserIdentification/UserProfileManagerDxe/UserProfileManagerDxe.inf +++ b/SecurityPkg/UserIdentification/UserProfileManagerDxe/UserProfileManagerDxe.inf @@ -32,6 +32,7 @@ [Packages] MdePkg/MdePkg.dec MdeModulePkg/MdeModulePkg.dec + SecurityPkg/SecurityPkg.dec [LibraryClasses] UefiRuntimeServicesTableLib @@ -48,6 +49,7 @@ gEfiUserInfoAccessSetupAdminGuid ## CONSUMES ## Guid gEfiUserInfoAccessSetupNormalGuid ## CONSUMES ## Guid gEfiUserInfoAccessSetupRestrictedGuid ## CONSUMES ## Guid + gUserProfileManagerGuid ## PRODUCES ## Guid [Protocols] gEfiDevicePathProtocolGuid # PROTOCOL ALWAYS_CONSUMED diff --git a/SecurityPkg/UserIdentification/UserProfileManagerDxe/UserProfileModify.c b/SecurityPkg/UserIdentification/UserProfileManagerDxe/UserProfileModify.c index 156c155c2c..9b0bfbd57a 100644 --- a/SecurityPkg/UserIdentification/UserProfileManagerDxe/UserProfileModify.c +++ b/SecurityPkg/UserIdentification/UserProfileManagerDxe/UserProfileModify.c @@ -1,7 +1,7 @@ /** @file The functions to modify a user profile. -Copyright (c) 2009 - 2010, Intel Corporation. All rights reserved.
+Copyright (c) 2009 - 2011, Intel Corporation. All rights reserved.
This program and the accompanying materials are licensed and made available under the terms and conditions of the BSD License which accompanies this distribution. The full text of the license may be found at @@ -90,7 +90,7 @@ SelectUserToModify ( HiiUpdateForm ( mCallbackInfo->HiiHandle, // HII handle - &mUserProfileManagerGuid, // Formset GUID + &gUserProfileManagerGuid, // Formset GUID FORMID_MODIFY_USER, // Form ID StartOpCodeHandle, // Label for where to insert opcodes EndOpCodeHandle // Replace data @@ -616,7 +616,7 @@ ModifyUserInfo ( HiiUpdateForm ( mCallbackInfo->HiiHandle, // HII handle - &mUserProfileManagerGuid, // Formset GUID + &gUserProfileManagerGuid, // Formset GUID FORMID_USER_INFO, // Form ID StartOpCodeHandle, // Label EndOpCodeHandle // Replace data @@ -1060,7 +1060,7 @@ ModidyAccessPolicy ( // HiiUpdateForm ( mCallbackInfo->HiiHandle, // HII handle - &mUserProfileManagerGuid, // Formset GUID + &gUserProfileManagerGuid, // Formset GUID FORMID_MODIFY_AP, // Form ID StartOpCodeHandle, // Label for where to insert opcodes EndOpCodeHandle // Replace data @@ -1560,7 +1560,7 @@ ModifyIdentityPolicy ( HiiUpdateForm ( mCallbackInfo->HiiHandle, // HII handle - &mUserProfileManagerGuid, // Formset GUID + &gUserProfileManagerGuid, // Formset GUID FORMID_MODIFY_IP, // Form ID StartOpCodeHandle, // Label for where to insert opcodes EndOpCodeHandle // Replace data @@ -2158,7 +2158,7 @@ DisplayLoadPermit( HiiUpdateForm ( mCallbackInfo->HiiHandle, // HII handle - &mUserProfileManagerGuid, // Formset GUID + &gUserProfileManagerGuid, // Formset GUID FORMID_PERMIT_LOAD_DP, // Form ID StartOpCodeHandle, // Label for where to insert opcodes EndOpCodeHandle // Replace data @@ -2244,7 +2244,7 @@ DisplayLoadForbid ( HiiUpdateForm ( mCallbackInfo->HiiHandle, // HII handle - &mUserProfileManagerGuid, // Formset GUID + &gUserProfileManagerGuid, // Formset GUID FORMID_FORBID_LOAD_DP, // Form ID StartOpCodeHandle, // Label for where to insert opcodes EndOpCodeHandle // Replace data -- 2.39.2