Page MenuHomeFreeBSD

libcrypto: Add symbol versions for symbols added since 1.1.1d.
ClosedPublic

Authored by jhb on May 26 2021, 9:06 PM.
Tags
None
Referenced Files
F139515276: D30483.id90093.diff
Fri, Dec 12, 11:19 PM
Unknown Object (File)
Wed, Nov 26, 6:19 AM
Unknown Object (File)
Tue, Nov 25, 5:41 PM
Unknown Object (File)
Sun, Nov 23, 10:55 PM
Unknown Object (File)
Nov 10 2025, 4:20 AM
Unknown Object (File)
Nov 6 2025, 9:26 PM
Unknown Object (File)
Nov 6 2025, 2:21 AM
Unknown Object (File)
Oct 31 2025, 12:21 PM
Subscribers

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Passed
Unit
No Test Coverage
Build Status
Buildable 39556
Build 36445: arc lint + arc unit

Event Timeline

jhb requested review of this revision.May 26 2021, 9:06 PM
secure/lib/libcrypto/Version.map
4471

Please sort the symbols, i.e.,

OPENSSL_1_1_1e {
    global:
        EVP_PKEY_meth_get_digestsign;
        EVP_PKEY_meth_get_digestverify;
        EVP_PKEY_meth_set_digestsign;
        EVP_PKEY_meth_set_digestverify;
        RSA_get0_pss_params;
} OPENSSL_1_1_1d;

OPENSSL_1_1_1h {
    global:
        EC_KEY_decoded_from_explicit_params;
        X509_ALGOR_copy;
        X509_REQ_set0_signature;
        X509_REQ_set1_signature_algo;
    local: *;
} OPENSSL_1_1_1e;
jkim requested changes to this revision.May 28 2021, 6:49 PM
This revision now requires changes to proceed.May 28 2021, 6:49 PM
jhb marked an inline comment as done.
  • Sort entries.

I also built the library before/after and compared readelf -s output and the only changes are the addition of versioned public symbols added in Version.map.

This revision is now accepted and ready to land.May 28 2021, 10:10 PM