Skip to content

Commit

Permalink
edk2: backport OpenSSL 1.1.1t to the tree
Browse files Browse the repository at this point in the history
Original bug: https://bugzilla.tianocore.org/show_bug.cgi?id=4342

Note that we use `excludes` here because EDK2 vendors OpenSSL via git
submodules, we unbundle it, refetch it ourselves and apply in
`postPatch`. Therefore, we also need to unpatch the
`CryptoPkg/Library/OpensslLib/openssl`.

Instead of upgrading EDK2, we decided to backport the patch manually
because upgrading caused breakages in 23.05.
  • Loading branch information
RaitoBezarius committed Aug 2, 2023
1 parent 68903ef commit db6dda5
Showing 1 changed file with 27 additions and 1 deletion.
28 changes: 27 additions & 1 deletion pkgs/development/compilers/edk2/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,13 @@ buildType = if stdenv.isDarwin then
else
"GCC5";

vendoredOpenSSL = fetchFromGitHub {
owner = "openssl";
repo = "openssl";
rev = "830bf8e1e4749ad65c51b6a1d0d769ae689404ba";
sha256 = "sha256-gI2+Vm67j1+xLvzBb+DF0YFTOHW7myotRsXRzluzSLY=";
};

edk2 = buildStdenv.mkDerivation {
pname = "edk2";
version = "202211";
Expand All @@ -44,9 +51,17 @@ edk2 = buildStdenv.mkDerivation {
url = "https://src.fedoraproject.org/rpms/edk2/raw/08f2354cd280b4ce5a7888aa85cf520e042955c3/f/0021-Tweak-the-tools_def-to-support-cross-compiling.patch";
sha256 = "sha256-E1/fiFNVx0aB1kOej2DJ2DlBIs9tAAcxoedym2Zhjxw=";
})
# Apply EDK2-specific OpenSSL 1.1.1t changes
(fetchpatch {
url = "https://bugzilla.tianocore.org/attachment.cgi?id=1330";
hash = "sha256-HAwa9gqTxA5+8UQf5NiRdZYSmE6ykQsDbkHFj7oLygg=";
# Normally, EDK2 vendors OpenSSL via Git submodules
# We unbundle them because fetchpatch and fetchers interaction are not ideal in nixpkgs.
# i.e. we cannot patch a git submodule at the right moment.
excludes = [ "CryptoPkg/Library/OpensslLib/openssl" ];
})
];

# submodules
src = fetchFromGitHub {
owner = "tianocore";
repo = "edk2";
Expand All @@ -55,6 +70,17 @@ edk2 = buildStdenv.mkDerivation {
sha256 = "sha256-0jE73xPyenAcgJ1mS35oTc5cYw7jJvVYxhPdhTWpKA0=";
};

postUnpack = ''
rm -rf source/CryptoPkg/Library/OpensslLib/openssl
'';

# Update the OpenSSL used APIs to 1.1.1t in EDK2…
# OpenSSL3 PoC exist: https://patchew.org/EDK2/cover.1679026329.git.yi1.li@intel.com/
# Unvendor only when OpenSSL3 support lands otherwise fix everything that breaks, I guess?
postPatch = ''
cp -r ${vendoredOpenSSL} CryptoPkg/Library/OpensslLib/openssl
'';

nativeBuildInputs = [ pythonEnv ];
depsBuildBuild = [ buildPackages.stdenv.cc buildPackages.util-linux buildPackages.bash ];
strictDeps = true;
Expand Down

0 comments on commit db6dda5

Please sign in to comment.