X-Git-Url: https://git.exim.org/exim.git/blobdiff_plain/73ef93784354f893dc8b3a21ddc9538b64006ab3..dc9c8f8b52cbf2e8424f5e98f63d29aa7fb81fe7:/test/aux-fixed/exim-ca/genall diff --git a/test/aux-fixed/exim-ca/genall b/test/aux-fixed/exim-ca/genall index 899bb8069..e81e2f385 100755 --- a/test/aux-fixed/exim-ca/genall +++ b/test/aux-fixed/exim-ca/genall @@ -2,7 +2,11 @@ # set -e + +# Debugging. Set V for clica verbosity. set -x +#V= +V='-v' clica --help >/dev/null 2>&1 @@ -10,43 +14,67 @@ echo Ensure time is set to 2012/11/01 12:34 echo use - date -u 110112342012 echo hit return when ready read junk + +# Main suite: RSA certs for tld in com org net do - idir="example.$tld" + iname="example.$tld" + idir=$iname + +#### + # create CAs & server certs rm -fr "$idir" - clica -D "$idir" -p password -B 1024 -I -N example.$tld -F \ - -C http://crl.example.$tld/latest.crl -O http://oscp.example.$tld/ + # create CA cert + templates + clica $V -D "$idir" -p password -B 1024 -I -N $iname -F -C http://crl.$iname/latest.crl -O http://oscp.$iname/ + + # create server certs # -m - clica -D example.$tld -p password -s 101 -S server1.example.$tld -m 301 \ + clica $V -D $idir -p password -s 101 -S server1.$iname -m 301 \ -8 alternatename.server1.example.$tld,alternatename2.server1.example.$tld,*.test.ex - clica -D example.$tld -p password -s 102 -S revoked1.example.$tld -m 301 - clica -D example.$tld -p password -s 103 -S expired1.example.$tld -m 1 - clica -D example.$tld -p password -s 201 -S server2.example.$tld -m 301 - clica -D example.$tld -p password -s 202 -S revoked2.example.$tld -m 301 - clica -D example.$tld -p password -s 203 -S expired2.example.$tld -m 1 + clica $V -D $idir -p password -s 102 -S revoked1.$iname -m 301 + clica $V -D $idir -p password -s 103 -S expired1.$iname -m 1 + clica $V -D $idir -p password -s 201 -S server2.$iname -m 301 \ + -3 'CN=clica CA rsa,O=example.com' -8 '*.test.ex' + clica $V -D $idir -p password -s 202 -S revoked2.$iname -m 301 + clica $V -D $idir -p password -s 203 -S expired2.$iname -m 1 + +#### # openssl seems to generate a file (ca_chain.pam) in an order it # cannot then use (the key applies to the first cert in the file?). # Generate a shuffled one. - cd example.$tld/server1.example.$tld - openssl pkcs12 -in server1.example.$tld.p12 -passin file:pwdfile -cacerts -out cacerts.pem -nokeys - cat server1.example.$tld.pem cacerts.pem > fullchain.pem - rm cacerts.pem - cd ../.. -done + for n in 1 2 + do + cd $idir/server$n.$iname + openssl pkcs12 -in server$n.$iname.p12 -passin file:pwdfile -cacerts -out cacerts.pem -nokeys + cat server$n.$iname.pem cacerts.pem > fullchain.pem + rm cacerts.pem + cd ../.. + done -# and loop again -for tld in com org net -do - CADIR=example.$tld/CA +#### + + # generate unlocked keys and client cert bundles + for server in server1 revoked1 expired1 server2 revoked2 expired2 + do + SDIR=$idir/$server.$iname + SPFX=$SDIR/$server.$iname + openssl rsa -in $SPFX.key -passin file:$SDIR/pwdfile -out $SPFX.unlocked.key + cat $SPFX.pem $iname/CA/Signer.pem >$SPFX.chain.pem + done + +#### + + # create OCSP reqs & resps + CADIR=$idir/CA #give ourselves an OSCP key to work with - pk12util -o $CADIR/OCSP.p12 -n 'OCSP Signer' -d $CADIR -K password -W password + pk12util -o $CADIR/OCSP.p12 -n 'OCSP Signer rsa' -d $CADIR -K password -W password openssl pkcs12 -in $CADIR/OCSP.p12 -passin pass:password -passout pass:password -nodes -nocerts -out $CADIR/OCSP.key # also need variation from Signer - pk12util -o $CADIR/Signer.p12 -n 'Signing Cert' -d $CADIR -K password -W password + pk12util -o $CADIR/Signer.p12 -n 'Signing Cert rsa' -d $CADIR -K password -W password openssl pkcs12 -in $CADIR/Signer.p12 -passin pass:password -passout pass:password -nodes -nocerts -out $CADIR/Signer.key # create some index files for the ocsp responder to work with @@ -59,87 +87,187 @@ do # 5: DN, index cat >$CADIR/index.valid.txt <$CADIR/index.revoked.txt < $CADIR/index.valid.txt.attr + echo "unique_subject = yes" > $CADIR/index.revoked.txt.attr + for server in server1 revoked1 expired1 server2 revoked2 expired2 do - SPFX=example.$tld/$server.example.$tld/$server.example.$tld - openssl ocsp -issuer $CADIR/Signer.pem -cert $SPFX.pem -no_nonce -sha256 -reqout $SPFX.ocsp.req + SPFX=$idir/$server.$iname/$server.$iname + openssl ocsp -issuer $CADIR/Signer.pem -sha256 -cert $SPFX.pem -no_nonce -reqout $SPFX.ocsp.req + REQIN="-reqin $SPFX.ocsp.req" OGENCOMMON="-rsigner $CADIR/OCSP.pem -rkey $CADIR/OCSP.key -CA $CADIR/Signer.pem -noverify" - openssl ocsp -index $CADIR/index.valid.txt $OGENCOMMON -ndays 3652 -sha256 -reqin $SPFX.ocsp.req -respout $SPFX.ocsp.good.resp - openssl ocsp -index $CADIR/index.valid.txt $OGENCOMMON -ndays 30 -sha256 -reqin $SPFX.ocsp.req -respout $SPFX.ocsp.dated.resp - openssl ocsp -index $CADIR/index.revoked.txt $OGENCOMMON -ndays 3652 -sha256 -reqin $SPFX.ocsp.req -respout $SPFX.ocsp.revoked.resp + openssl ocsp $IVALID $OGENCOMMON -ndays 3652 $REQIN -respout $SPFX.ocsp.good.resp + openssl ocsp $IVALID $OGENCOMMON -ndays 30 $REQIN -respout $SPFX.ocsp.dated.resp + openssl ocsp $IREVOKED $OGENCOMMON -ndays 3652 $REQIN -respout $SPFX.ocsp.revoked.resp OGENCOMMON="-rsigner $CADIR/Signer.pem -rkey $CADIR/Signer.key -CA $CADIR/Signer.pem -noverify" - openssl ocsp -index $CADIR/index.valid.txt $OGENCOMMON -ndays 3652 -sha256 -reqin $SPFX.ocsp.req -respout $SPFX.ocsp.signer.good.resp - openssl ocsp -index $CADIR/index.valid.txt $OGENCOMMON -ndays 30 -sha256 -reqin $SPFX.ocsp.req -respout $SPFX.ocsp.signer.dated.resp - openssl ocsp -index $CADIR/index.revoked.txt $OGENCOMMON -ndays 3652 -sha256 -reqin $SPFX.ocsp.req -respout $SPFX.ocsp.signer.revoked.resp + openssl ocsp $IVALID $OGENCOMMON -ndays 3652 $REQIN -respout $SPFX.ocsp.signer.good.resp + openssl ocsp $IVALID $OGENCOMMON -ndays 30 $REQIN -respout $SPFX.ocsp.signer.dated.resp + openssl ocsp $IREVOKED $OGENCOMMON -ndays 3652 $REQIN -respout $SPFX.ocsp.signer.revoked.resp OGENCOMMON="-rsigner $CADIR/Signer.pem -rkey $CADIR/Signer.key -CA $CADIR/Signer.pem -resp_no_certs -noverify" - openssl ocsp -index $CADIR/index.valid.txt $OGENCOMMON -ndays 3652 -sha256 -reqin $SPFX.ocsp.req -respout $SPFX.ocsp.signernocert.good.resp - openssl ocsp -index $CADIR/index.valid.txt $OGENCOMMON -ndays 30 -sha256 -reqin $SPFX.ocsp.req -respout $SPFX.ocsp.signernocert.dated.resp - openssl ocsp -index $CADIR/index.revoked.txt $OGENCOMMON -ndays 3652 -sha256 -reqin $SPFX.ocsp.req -respout $SPFX.ocsp.signernocert.revoked.resp + openssl ocsp $IVALID $OGENCOMMON -ndays 3652 $REQIN -respout $SPFX.ocsp.signernocert.good.resp + openssl ocsp $IVALID $OGENCOMMON -ndays 30 $REQIN -respout $SPFX.ocsp.signernocert.dated.resp + openssl ocsp $IREVOKED $OGENCOMMON -ndays 3652 $REQIN -respout $SPFX.ocsp.signernocert.revoked.resp done +#### done -# and loop again to generate unlocked keys and client cert bundles -for tld in com org net +# Create one EC leaf cert in the RSA cert tree. It will have an EC pubkey but be signed using its parent +# therefore its parent's algo, RSA. +clica $V -D example.com -p password -k ec -q nistp521 -s 1101 -S server1_ec.example.com -m 301 -8 'server1.example.com,*.test.ex' +SDIR=example.com/server1_ec.example.com +SPFX=$SDIR/server1_ec.example.com +openssl ec -in $SPFX.key -passin file:$SDIR/pwdfile -out $SPFX.unlocked.key +cat $SPFX.pem example.com/CA/Signer.pem >$SPFX.chain.pem + + + +############################################################################### +# Limited suite: EC certs +# separate trust root & chain +# .com only, server1 good only, no ocsp +# with server1 in SAN of leaf + +for tld in com do - for server in server1 revoked1 expired1 server2 revoked2 expired2 + iname="example_ec.$tld" + idir=$iname + +#### + # create CAs & server certs + rm -fr "$idir" + + # create CA cert + templates + clica $V -D "$idir" -p password -B 1024 -I -N $iname -F \ + -k ec -q nistp521 \ + -C http://crl.example.$tld/latest.crl -O http://oscp.example.$tld/ + + # create server certs + # -m + clica $V -D $idir -p password -s 2101 -S server1.$iname -m 301 \ + -k ec -q nistp521 \ + -8 server1.example.$tld,alternatename.server1.example.$tld,alternatename2.server1.example.$tld,*.test.ex + +#### + + # openssl seems to generate a file (ca_chain.pam) in an order it + # cannot then use (the key applies to the first cert in the file?). + # Generate a shuffled one. + cd $idir/server1.$iname + openssl pkcs12 -in server1.$iname.p12 -passin file:pwdfile -cacerts -out cacerts.pem -nokeys + cat server1.$iname.pem cacerts.pem > fullchain.pem + rm cacerts.pem + cd ../.. + +#### + + # generate unlocked keys and client cert bundles + for server in server1 do - SDIR=example.$tld/$server.example.$tld - SPFX=$SDIR/$server.example.$tld - openssl rsa -in $SPFX.key -passin file:$SDIR/pwdfile -out $SPFX.unlocked.key - cat $SPFX.pem example.$tld/CA/Signer.pem >$SPFX.chain.pem + SDIR=$idir/$server.$iname + SPFX=$SDIR/$server.$iname + openssl ec -in $SPFX.key -passin file:$SDIR/pwdfile -out $SPFX.unlocked.key + cat $SPFX.pem $idir/CA/Signer.pem >$SPFX.chain.pem done + +#### + # create OCSP reqs & resps + CADIR=$idir/CA + #give ourselves an OSCP key to work with + pk12util -o $CADIR/OCSP.p12 -n 'OCSP Signer ec' -d $CADIR -K password -W password + openssl pkcs12 -in $CADIR/OCSP.p12 -passin pass:password -passout pass:password -nodes -nocerts -out $CADIR/OCSP.key + + # create some index files for the ocsp responder to work with +# tab-sep +# 0: Revoked/Expired/Valid letter +# 1: Expiry date (ASN1_UTCTIME) +# 2: Revocation date +# 3: Serial no. (unique) +# 4: file +# 5: DN, index + + cat >$CADIR/index.valid.txt <$CRLIN crlutil -G -d $CADIR -f $CADIR/pwdfile \ - -n 'Signing Cert' -c $CRLIN -o $CADIR/crl.empty + -n 'Signing Cert rsa' -c $CRLIN -o $CADIR/crl.empty openssl crl -in $CADIR/crl.empty -inform der -out $CADIR/crl.empty.pem done sleep 2 +DATENOW=`date -u +%Y%m%d%H%M%SZ` for tld in com org net do CADIR=example.$tld/CA CRLIN=$CADIR/crl.v2.in.txt - DATENOW=`date -u +%Y%m%d%H%M%SZ` echo "update=$DATENOW " >$CRLIN echo "addcert 102 $DATENOW" >>$CRLIN echo "addcert 202 $DATENOW" >>$CRLIN crlutil -G -d $CADIR -f $CADIR/pwdfile \ - -n 'Signing Cert' -c $CRLIN -o $CADIR/crl.v2 + -n 'Signing Cert rsa' -c $CRLIN -o $CADIR/crl.v2 openssl crl -in $CADIR/crl.v2 -inform der -out $CADIR/crl.v2.pem + + CRLIN=$CADIR/crl.Signer.in.txt + echo "update=$DATENOW " >$CRLIN + crlutil -G -d $CADIR -f $CADIR/pwdfile \ + -n 'Certificate Authority rsa' -c $CRLIN -o $CADIR/crl.Signer + openssl crl -in $CADIR/crl.Signer -inform der -out $CADIR/crl.Signer.pem + + cat $CADIR/crl.Signer.pem $CADIR/crl.v2.pem > $CADIR/crl.chain.pem done # Finally, a single certificate-directory @@ -159,7 +287,7 @@ cd ../../.. pwd ls -l -find example.* -type d -print0 | xargs -0 chmod 755 -find example.* -type f -print0 | xargs -0 chmod 644 +find example* -type d -print0 | xargs -0 chmod 755 +find example* -type f -print0 | xargs -0 chmod 644 echo "CA, Certificate, CRL and OSCP Response generation complete"