From mboxrd@z Thu Jan 1 00:00:00 1970 Authentication-Results: mx.groups.io; dkim=missing; spf=pass (domain: redhat.com, ip: 209.132.183.28, mailfrom: lersek@redhat.com) Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by groups.io with SMTP; Mon, 03 Jun 2019 04:45:39 -0700 Received: from smtp.corp.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id D7419308302F; Mon, 3 Jun 2019 11:45:29 +0000 (UTC) Received: from lacos-laptop-7.usersys.redhat.com (ovpn-121-13.rdu2.redhat.com [10.10.121.13]) by smtp.corp.redhat.com (Postfix) with ESMTP id EEC8A604FF; Mon, 3 Jun 2019 11:45:25 +0000 (UTC) Subject: Re: [edk2-devel] [PATCH v5 0/9] Crypto: Upgrade OpenSSL to 1.1.1b To: "Wang, Jian J" , "devel@edk2.groups.io" , "Lu, XiaoyuX" Cc: "Ye, Ting" References: <1559126438-9211-1-git-send-email-xiaoyux.lu@intel.com> From: "Laszlo Ersek" Message-ID: <5d5fa835-01a0-a985-b5a7-0ea19a8bf1db@redhat.com> Date: Mon, 3 Jun 2019 13:45:24 +0200 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.9.1 MIME-Version: 1.0 In-Reply-To: X-Scanned-By: MIMEDefang 2.79 on 10.5.11.11 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.46]); Mon, 03 Jun 2019 11:45:29 +0000 (UTC) Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit On 06/03/19 02:48, Wang, Jian J wrote: > Pushed 6fcc3d68eb02aa798ef572c94867a03d0c1fedf2...acfb90911840c38a0beb9bcfe0065668244d2b4d Thank you all. The proper commit range to mention here is: 371e7001e8d5..acfb90911840. (371e7001e8d5 is the parent of 6fcc3d68eb02.) Because, the LHS of such a git commit range is exclusive. Please refer to for the explanation. Thanks Laszlo >> -----Original Message----- >> From: devel@edk2.groups.io [mailto:devel@edk2.groups.io] On Behalf Of >> Xiaoyu Lu >> Sent: Wednesday, May 29, 2019 6:40 PM >> To: devel@edk2.groups.io >> Cc: Lu, XiaoyuX ; Wang, Jian J ; >> Ye, Ting ; Laszlo Ersek >> Subject: [edk2-devel] [PATCH v5 0/9] Crypto: Upgrade OpenSSL to 1.1.1b >> >> This series is also avaiable at: >> https://github.com/xiaoyuxlu/edk2/commits/bz_1089_upgrade_to_openssl_1_ >> 1_1b_v5 >> >> Change since v4: >> >> 1. Split "[PATCH v4 6/7] CryptoPkg: Upgrade OpenSSL to 1.1.1b" patch into two. >> a. CryptoPkg/OpensslLib: Add functions for upgrading OpenSSL1_1_1b >> b. CryptoPkg: Upgrade OpenSSL to 1.1.1b >> >> 2. Add "CryptoPkg: Fix possible build problem with Clang" patch. >> Blow is a link to the problem. >> Ref: https://edk2.groups.io/g/devel/message/41424 >> OpenSSL_1_1_1b may build failed with Clang38. So >> add additional build flag to work around it. >> >> Cc: Jian J Wang >> Cc: Ting Ye >> Cc: Laszlo Ersek >> >> Laszlo Ersek (1): >> CryptoPkg/OpensslLib: Fix cross-build problem for AARCH64 >> >> Xiaoyu Lu (8): >> CryptoPkg/OpensslLib: Modify process_files.pl for upgrading OpenSSL >> CryptoPkg/OpensslLib: Exclude unnecessary files in process_files.pl >> CryptoPkg/IntrinsicLib: Fix possible unresolved external symbol issue >> CryptoPkg/OpensslLib: Prepare for upgrading OpenSSL >> CryptoPkg: Fix possible build problem with Clang >> CryptoPkg/OpensslLib: Add functions for upgrading OpenSSL1_1_1b >> CryptoPkg: Upgrade OpenSSL to 1.1.1b >> CryptoPkg/BaseCryptLib: Make HMAC_CTX size backward compatible >> >> CryptoPkg/Library/BaseCryptLib/BaseCryptLib.inf | 2 + >> CryptoPkg/Library/BaseCryptLib/PeiCryptLib.inf | 2 + >> CryptoPkg/Library/BaseCryptLib/RuntimeCryptLib.inf | 2 + >> CryptoPkg/Library/BaseCryptLib/SmmCryptLib.inf | 2 + >> CryptoPkg/Library/IntrinsicLib/IntrinsicLib.inf | 4 +- >> CryptoPkg/Library/OpensslLib/OpensslLib.inf | 77 ++++- >> CryptoPkg/Library/OpensslLib/OpensslLibCrypto.inf | 68 ++++- >> CryptoPkg/Library/Include/CrtLibSupport.h | 13 +- >> CryptoPkg/Library/Include/openssl/opensslconf.h | 54 +++- >> CryptoPkg/Library/Include/sys/syscall.h | 11 + >> CryptoPkg/Library/OpensslLib/buildinf.h | 2 + >> CryptoPkg/Library/OpensslLib/rand_pool_noise.h | 29 ++ >> CryptoPkg/Library/BaseCryptLib/Hmac/CryptHmacMd5.c | 8 +- >> .../Library/BaseCryptLib/Hmac/CryptHmacSha1.c | 9 +- >> .../Library/BaseCryptLib/Hmac/CryptHmacSha256.c | 8 +- >> CryptoPkg/Library/IntrinsicLib/Ia32/MathFtol.c | 22 ++ >> CryptoPkg/Library/OpensslLib/ossl_store.c | 17 ++ >> CryptoPkg/Library/OpensslLib/rand_pool.c | 316 >> +++++++++++++++++++++ >> CryptoPkg/Library/OpensslLib/rand_pool_noise.c | 29 ++ >> CryptoPkg/Library/OpensslLib/rand_pool_noise_tsc.c | 43 +++ >> CryptoPkg/Library/OpensslLib/openssl | 2 +- >> CryptoPkg/Library/OpensslLib/process_files.pl | 11 +- >> 22 files changed, 679 insertions(+), 52 deletions(-) >> create mode 100644 CryptoPkg/Library/Include/sys/syscall.h >> create mode 100644 CryptoPkg/Library/OpensslLib/rand_pool_noise.h >> create mode 100644 CryptoPkg/Library/IntrinsicLib/Ia32/MathFtol.c >> create mode 100644 CryptoPkg/Library/OpensslLib/ossl_store.c >> create mode 100644 CryptoPkg/Library/OpensslLib/rand_pool.c >> create mode 100644 CryptoPkg/Library/OpensslLib/rand_pool_noise.c >> create mode 100644 CryptoPkg/Library/OpensslLib/rand_pool_noise_tsc.c >> >> -- >> 2.7.4 >> >> >> >