Uh oh!
There was an error while loading. Please reload this page.
deps: update OpenSSL 3.0.8+quic - #46570
Conversation
This updates all sources in deps/openssl/openssl by: $ git clone git@github.com:quictls/openssl.git $ cd openssl $ git checkout openssl-3.0.8+quic $ cd ../node/deps/openssl $ rm -rf openssl $ cp -R ../../../openssl openssl $ rm -rf openssl/.git* openssl/.travis* $ git add --all openssl $ git commit openssl
This comment was marked as outdated.
This comment was marked as outdated.
richardlau
commented
Feb 8, 2023
The Windows on ARM64 failure is an upstream OpenSSL bug on all the new OpenSSL releases. The 32-bit Windows x86 failure is something we hit before -- I think we were floating a patch for it on top of OpenSSL? |
richardlau
commented
Feb 8, 2023
There's a note about 32-bit Windows in https://github.com/nodejs/node/blob/main/doc/contributing/maintaining-openssl.md#2-execute-make-in-depsopensslconfig-directory |
nodejs-github-bot
commented
Feb 10, 2023
c05532a to
aeeafb7Comparenodejs-github-bot
commented
Feb 11, 2023
richardlau
commented
Feb 12, 2023
@RafaelGSS Looks like something has gone awry with the config generation for this PR. "/Users/runner/work/node/node/deps/openssl/openssl/include/openssl/opensslconf.h:14:11: fatal error: 'openssl/configuration.h' file not found\n" + '# include <openssl/configuration.h>\n' + ' ^~~~~~~~~~~~~~~~~~~~~~~~~\n' + '1 error generated.\n' + |
After an OpenSSL source update, all the config files need to be regenerated and committed by: $ make -C deps/openssl/config $ git add deps/openssl/config/archs $ git add deps/openssl/openssl $ git commit
Original commit message: rsa: add msvc intrinsic for non x64 platforms _umul128() is x86_64 (x64) only, while __umulh() works everywhere, but doesn't generate optimal code on x64 Refs: openssl/openssl#20244
aeeafb7 to
8dc2d94Comparenodejs-github-bot
commented
Feb 13, 2023
nodejs-github-bot
commented
Feb 13, 2023
nodejs-github-bot
commented
Feb 13, 2023
RafaelGSS
commented
Feb 16, 2023
Landed in f369c0a...9f468cc |
MylesBorins
commented
Feb 20, 2023
This doesn't land cleanly on v19.x, If this is supposed to land can someone please backport |
richardlau
commented
Feb 20, 2023
This landed in v19.x via #46573 as part of the recent security releases. |
targos
commented
Mar 13, 2023
After an OpenSSL source update, all the config files need to be regenerated and committed by: $ make -C deps/openssl/config $ git add deps/openssl/config/archs $ git add deps/openssl/openssl $ git commit PR-URL: nodejs#46570 Refs: https://mta.openssl.org/pipermail/openssl-announce/2023-February/000251.html Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Richard Lau <rlau@redhat.com>
Original commit message: rsa: add msvc intrinsic for non x64 platforms _umul128() is x86_64 (x64) only, while __umulh() works everywhere, but doesn't generate optimal code on x64 Refs: openssl/openssl#20244 PR-URL: nodejs#46570 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Richard Lau <rlau@redhat.com>
Updated openssl dep to openssl-3.0.8 using the maintenance guide.
Refs: https://mta.openssl.org/pipermail/openssl-announce/2023-February/000251.html