- Added nss-bmo1930797.patch to fix failing tests in testsuite - update to NSS 3.106 * bmo#1925975 - NSS 3.106 should be distributed with NSPR 4.36. * bmo#1923767 - pk12util: improve error handling in p12U_ReadPKCS12File. * bmo#1899402 - Correctly destroy bulkkey in error scenario. * bmo#1919997 - PKCS7 fuzz target, r=djackson,nss-reviewers. * bmo#1923002 - Extract certificates with handshake collection script. * bmo#1923006 - Specify len_control for fuzz targets. * bmo#1923280 - Fix memory leak in dumpCertificatePEM. * bmo#1102981 - Fix UBSan errors for SECU_PrintCertificate and SECU_PrintCertificateBasicInfo. * bmo#1921528 - add new error codes to mozilla::pkix for Firefox to use. * bmo#1921768 - allow null phKey in NSC_DeriveKey. * bmo#1921801 - Only create seed corpus zip from existing corpus. * bmo#1826035 - Use explicit allowlist for for KDF PRFS. * bmo#1920138 - Increase optimization level for fuzz builds. * bmo#1920470 - Remove incorrect assert. * bmo#1914870 - Use libFuzzer options from fuzz/options/\*.options in CI. * bmo#1920945 - Polish corpus collection for automation. * bmo#1917572 - Detect new and unfuzzed SSL options. * bmo#1804646 - PKCS12 fuzzing target. - requires NSPR 4.36 OBS-URL: https://build.opensuse.org/package/show/mozilla:Factory/mozilla-nss?expand=0&rev=465
56 lines
1.2 KiB
Bash
56 lines
1.2 KiB
Bash
#!/bin/sh
|
|
#
|
|
# Turns on or off the nss-sysinit module db by editing the
|
|
# global PKCS #11 congiguration file.
|
|
#
|
|
# This script can be invoked by the user as super user.
|
|
# It is invoked at nss-sysinit post install time with argument on
|
|
# and at nss-sysinit pre uninstall with argument off.
|
|
#
|
|
usage()
|
|
{
|
|
cat <<EOF
|
|
Usage: setup-nsssysinit [on|off]
|
|
on - turns on nsssysinit
|
|
off - turns off nsssysinit
|
|
EOF
|
|
exit $1
|
|
}
|
|
|
|
# validate
|
|
if test $# -eq 0; then
|
|
usage 1 1>&2
|
|
fi
|
|
|
|
# the system-wide configuration file
|
|
p11conf="/etc/pki/nssdb/pkcs11.txt"
|
|
# must exist, otherwise report it and exit with failure
|
|
if [ ! -f $p11conf ]; then
|
|
echo "Could not find ${p11conf}"
|
|
exit 1
|
|
fi
|
|
|
|
on="1"
|
|
case "$1" in
|
|
on | ON )
|
|
cat ${p11conf} | \
|
|
sed -e 's/^library=$/library=libnsssysinit.so/' \
|
|
-e '/^NSS/s/\(Flags=internal\)\(,[^m]\)/\1,moduleDBOnly\2/' > \
|
|
${p11conf}.on
|
|
mv ${p11conf}.on ${p11conf}
|
|
;;
|
|
off | OFF )
|
|
if [ ! `grep "^library=libnsssysinit" ${p11conf}` ]; then
|
|
exit 0
|
|
fi
|
|
cat ${p11conf} | \
|
|
sed -e 's/^library=libnsssysinit.so/library=/' \
|
|
-e '/^NSS/s/Flags=internal,moduleDBOnly/Flags=internal/' > \
|
|
${p11conf}.off
|
|
mv ${p11conf}.off ${p11conf}
|
|
;;
|
|
* )
|
|
usage 1 1>&2
|
|
;;
|
|
esac
|