From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received-SPF: Pass (sender SPF authorized) identity=mailfrom; client-ip=209.132.183.28; helo=mx1.redhat.com; envelope-from=lersek@redhat.com; receiver=edk2-devel@lists.01.org Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id B1993208F7903 for ; Tue, 10 Oct 2017 01:24:01 -0700 (PDT) Received: from smtp.corp.redhat.com (int-mx06.intmail.prod.int.phx2.redhat.com [10.5.11.16]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 50B644E4C6; Tue, 10 Oct 2017 08:27:29 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mx1.redhat.com 50B644E4C6 Authentication-Results: ext-mx09.extmail.prod.ext.phx2.redhat.com; dmarc=none (p=none dis=none) header.from=redhat.com Authentication-Results: ext-mx09.extmail.prod.ext.phx2.redhat.com; spf=fail smtp.mailfrom=lersek@redhat.com Received: from lacos-laptop-7.usersys.redhat.com (ovpn-120-87.rdu2.redhat.com [10.10.120.87]) by smtp.corp.redhat.com (Postfix) with ESMTP id D8F785C895; Tue, 10 Oct 2017 08:27:27 +0000 (UTC) To: "Wu, Hao A" , "Chen, Chen A" , "edk2-devel@lists.01.org" Cc: "Zhang, Chao B" References: <20171010020807.16452-1-chen.a.chen@intel.com> From: Laszlo Ersek Message-ID: <9035a4f2-b877-3c22-a5a5-dd448df8aaf1@redhat.com> Date: Tue, 10 Oct 2017 10:27:26 +0200 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.3.0 MIME-Version: 1.0 In-Reply-To: X-Scanned-By: MIMEDefang 2.79 on 10.5.11.16 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.38]); Tue, 10 Oct 2017 08:27:29 +0000 (UTC) Subject: Re: [PATCH] SecurityPkg/SecureBootConfigImpl.c: Fix the potential NULL dereference. X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Oct 2017 08:24:01 -0000 Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit On 10/10/17 04:46, Wu, Hao A wrote: > Some comments below. Given that a new version of this patch looks necessary, I'd like to request an improved subject line / commit message: (1) For the subject prefix, we should use: SecurityPkg/SecureBootConfigDxe: ... (2) It looks like the issue (= NULL pointer dereferencing) can occur when the platform does not install the appropriate strings into the HII database. All these strings are apparently identified by STR_SIGNATURE_* tokens. So how about the following subject: SecurityPkg/SecureBootConfigDxe: cope with lack of STR_SIGNATURE_* tokens (This subject is 73 characters long.) (3) Can we please capture some details about the issue in the commit message? Namely, I thought it was not possible for these tokens to be missing. Apparently they *can* be missing. Can we describe, briefly, how and when that happens, in practice? Thanks! Laszlo >> -----Original Message----- >> From: Chen, Chen A >> Sent: Tuesday, October 10, 2017 10:08 AM >> To: edk2-devel@lists.01.org >> Cc: Chen, Chen A; Zhang, Chao B; Wu, Hao A >> Subject: [PATCH] SecurityPkg/SecureBootConfigImpl.c: Fix the potential NULL >> dereference. >> >> Cc: Zhang Chao >> Cc: Wu Hao >> Contributed-under: TianoCore Contribution Agreement 1.0 >> Signed-off-by: Chen A Chen >> --- >> .../SecureBootConfigDxe/SecureBootConfigImpl.c | 80 +++++++++++++++---- >> --- >> 1 file changed, 57 insertions(+), 23 deletions(-) >> >> diff --git >> a/SecurityPkg/VariableAuthenticated/SecureBootConfigDxe/SecureBootConfigI >> mpl.c >> b/SecurityPkg/VariableAuthenticated/SecureBootConfigDxe/SecureBootConfigI >> mpl.c >> index 3e03be9738..457e020ece 100644 >> --- >> a/SecurityPkg/VariableAuthenticated/SecureBootConfigDxe/SecureBootConfigI >> mpl.c >> +++ >> b/SecurityPkg/VariableAuthenticated/SecureBootConfigDxe/SecureBootConfigI >> mpl.c >> @@ -3579,7 +3579,9 @@ LoadSignatureList ( >> ) >> { >> EFI_STATUS Status; >> - EFI_STRING_ID ListType; >> + EFI_STRING EfiStringTemp1; >> + EFI_STRING EfiStringTemp2; >> + EFI_STRING_ID ListType;; > > An extra ';' is used here. > >> EFI_SIGNATURE_LIST *ListWalker; >> EFI_IFR_GUID_LABEL *StartLabel; >> EFI_IFR_GUID_LABEL *EndLabel; >> @@ -3599,6 +3601,8 @@ LoadSignatureList ( >> CHAR16 *HelpBuffer; >> >> Status = EFI_SUCCESS; >> + EfiStringTemp1 = NULL; >> + EfiStringTemp2 = NULL; >> StartOpCodeHandle = NULL; >> EndOpCodeHandle = NULL; >> StartGotoHandle = NULL; >> @@ -3755,17 +3759,19 @@ LoadSignatureList ( >> ListType = STRING_TOKEN (STR_LIST_TYPE_UNKNOWN); >> } >> >> - UnicodeSPrint (NameBuffer, >> - 100, >> - HiiGetString (PrivateData->HiiHandle, STRING_TOKEN >> (STR_SIGNATURE_LIST_NAME_FORMAT), NULL), >> - Index + 1 >> - ); >> - UnicodeSPrint (HelpBuffer, >> - 100, >> - HiiGetString (PrivateData->HiiHandle, STRING_TOKEN >> (STR_SIGNATURE_LIST_HELP_FORMAT), NULL), >> - HiiGetString (PrivateData->HiiHandle, ListType, NULL), >> - SIGNATURE_DATA_COUNTS (ListWalker) >> - ); >> + EfiStringTemp1 = HiiGetString (PrivateData->HiiHandle, STRING_TOKEN >> (STR_SIGNATURE_LIST_NAME_FORMAT), NULL); >> + if (EfiStringTemp1 == NULL) { >> + goto ON_EXIT; >> + } >> + UnicodeSPrint (NameBuffer, 100, EfiStringTemp1, Index + 1); >> + EfiStringTemp1 = NULL; > > Before setting 'EfiStringTemp1' to NULL, I think the returned string from > HiiGetString() should be freed first. There are many similar cases in the > codes. > > Also, could you help to replace the usages of '100' like: > > * VariableName = AllocateZeroPool (100); > * NameBuffer = AllocateZeroPool (100); > * UnicodeSPrint (NameBuffer, 100, EfiStringTemp1, Index + 1); > ... > > with a macro? It will be helpful for maintaining the codes. > > And how about declaring string buffers like 'VariableName', 'NameBuffer' > as arrays instead of allocating them on the heap? > >> + >> + EfiStringTemp1 = HiiGetString (PrivateData->HiiHandle, STRING_TOKEN >> (STR_SIGNATURE_LIST_HELP_FORMAT), NULL); >> + EfiStringTemp2 = HiiGetString (PrivateData->HiiHandle, ListType, NULL); >> + if (EfiStringTemp1 == NULL || EfiStringTemp2 == NULL) { >> + goto ON_EXIT; >> + } >> + UnicodeSPrint (HelpBuffer, 100, EfiStringTemp1, EfiStringTemp2, >> SIGNATURE_DATA_COUNTS (ListWalker)); >> >> HiiCreateGotoOpCode ( >> StartOpCodeHandle, >> @@ -3953,6 +3959,8 @@ FormatHelpInfo ( >> { >> EFI_STATUS Status; >> EFI_TIME *Time; >> + EFI_STRING EfiStringTemp1; >> + EFI_STRING EfiStringTemp2; >> EFI_STRING_ID ListTypeId; >> UINTN DataSize; >> UINTN HelpInfoIndex; >> @@ -3964,6 +3972,8 @@ FormatHelpInfo ( >> BOOLEAN IsCert; >> >> Status = EFI_SUCCESS; >> + EfiStringTemp1 = NULL; >> + EfiStringTemp2 = NULL; >> Time = NULL; >> HelpInfoIndex = 0; >> GuidString = NULL; >> @@ -4016,6 +4026,10 @@ FormatHelpInfo ( >> goto ON_EXIT; >> } >> >> + EfiStringTemp1 = HiiGetString (PrivateData->HiiHandle, STRING_TOKEN >> (STR_SIGNATURE_DATA_HELP_FORMAT_GUID), NULL); >> + if (EfiStringTemp1 == NULL) { >> + goto ON_EXIT; >> + } >> // >> // Format GUID part. >> // >> @@ -4023,20 +4037,29 @@ FormatHelpInfo ( >> HelpInfoIndex += UnicodeSPrint ( >> &HelpInfoString[HelpInfoIndex], >> TotalSize - sizeof(CHAR16) * HelpInfoIndex, >> - HiiGetString (PrivateData->HiiHandle, STRING_TOKEN >> (STR_SIGNATURE_DATA_HELP_FORMAT_GUID), NULL), >> + EfiStringTemp1, >> GuidString >> ); >> + EfiStringTemp1 = NULL; >> >> + EfiStringTemp2 = HiiGetString (PrivateData->HiiHandle, ListTypeId, NULL); >> + if (EfiStringTemp2 == NULL) { >> + goto ON_EXIT; >> + } >> // >> // Format content part, it depends on the type of signature list, hash value or >> CN. >> // >> if (IsCert) { >> GetCommonNameFromX509 (ListEntry, DataEntry, &DataString); >> + EfiStringTemp1 = HiiGetString (PrivateData->HiiHandle, STRING_TOKEN >> (STR_SIGNATURE_DATA_HELP_FORMAT_CN), NULL); >> + if (EfiStringTemp1 == NULL) { >> + goto ON_EXIT; >> + } >> HelpInfoIndex += UnicodeSPrint( >> &HelpInfoString[HelpInfoIndex], >> TotalSize - sizeof(CHAR16) * HelpInfoIndex, >> - HiiGetString (PrivateData->HiiHandle, STRING_TOKEN >> (STR_SIGNATURE_DATA_HELP_FORMAT_CN), NULL), >> - HiiGetString (PrivateData->HiiHandle, ListTypeId, NULL), >> + EfiStringTemp1, >> + EfiStringTemp2, >> DataSize, >> DataString >> ); >> @@ -4045,15 +4068,20 @@ FormatHelpInfo ( >> // Format hash value for each signature data entry. >> // >> ParseHashValue (ListEntry, DataEntry, &DataString); >> + EfiStringTemp1 = HiiGetString (PrivateData->HiiHandle, STRING_TOKEN >> (STR_SIGNATURE_DATA_HELP_FORMAT_HASH), NULL); >> + if (EfiStringTemp1 == NULL) { >> + goto ON_EXIT; >> + } >> HelpInfoIndex += UnicodeSPrint ( >> &HelpInfoString[HelpInfoIndex], >> TotalSize - sizeof(CHAR16) * HelpInfoIndex, >> - HiiGetString (PrivateData->HiiHandle, STRING_TOKEN >> (STR_SIGNATURE_DATA_HELP_FORMAT_HASH), NULL), >> - HiiGetString (PrivateData->HiiHandle, ListTypeId, NULL), >> + EfiStringTemp1, >> + EfiStringTemp2, >> DataSize, >> DataString >> ); >> } >> + EfiStringTemp1 = NULL; >> >> // >> // Format revocation time part. >> @@ -4077,10 +4105,14 @@ FormatHelpInfo ( >> Time->Second >> ); >> >> + EfiStringTemp1 = HiiGetString (PrivateData->HiiHandle, STRING_TOKEN >> (STR_SIGNATURE_DATA_HELP_FORMAT_TIME), NULL); >> + if (EfiStringTemp1 == NULL) { >> + goto ON_EXIT; >> + } >> UnicodeSPrint ( >> &HelpInfoString[HelpInfoIndex], >> TotalSize - sizeof (CHAR16) * HelpInfoIndex, >> - HiiGetString (PrivateData->HiiHandle, STRING_TOKEN >> (STR_SIGNATURE_DATA_HELP_FORMAT_TIME), NULL), >> + EfiStringTemp1, >> TimeString >> ); >> } >> @@ -4122,6 +4154,7 @@ LoadSignatureData ( >> EFI_SIGNATURE_DATA *DataWalker; >> EFI_IFR_GUID_LABEL *StartLabel; >> EFI_IFR_GUID_LABEL *EndLabel; >> + EFI_STRING EfiString; >> EFI_STRING_ID HelpStringId; >> VOID *StartOpCodeHandle; >> VOID *EndOpCodeHandle; >> @@ -4133,6 +4166,7 @@ LoadSignatureData ( >> CHAR16 *NameBuffer; >> >> Status = EFI_SUCCESS; >> + EfiString = NULL; >> StartOpCodeHandle = NULL; >> EndOpCodeHandle = NULL; >> Index = 0; >> @@ -4229,15 +4263,15 @@ LoadSignatureData ( >> } >> >> DataWalker = (EFI_SIGNATURE_DATA *)((UINT8 *)ListWalker + >> sizeof(EFI_SIGNATURE_LIST) + ListWalker->SignatureHeaderSize); >> + EfiString = HiiGetString (PrivateData->HiiHandle, STRING_TOKEN >> (STR_SIGNATURE_DATA_NAME_FORMAT), NULL); >> + if (EfiString == NULL) { >> + goto ON_EXIT; >> + } >> for (Index = 0; Index < SIGNATURE_DATA_COUNTS(ListWalker); Index = Index >> + 1) { >> // >> // Format name buffer. >> // >> - UnicodeSPrint (NameBuffer, >> - 100, >> - HiiGetString (PrivateData->HiiHandle, STRING_TOKEN >> (STR_SIGNATURE_DATA_NAME_FORMAT), NULL), >> - Index + 1 >> - ); >> + UnicodeSPrint (NameBuffer, 100, EfiString, Index + 1); >> >> // >> // Format help info buffer. >> -- >> 2.13.2.windows.1 > > _______________________________________________ > edk2-devel mailing list > edk2-devel@lists.01.org > https://lists.01.org/mailman/listinfo/edk2-devel >