2001-02-21 23:56:14 +00:00
|
|
|
#! /bin/sh
|
2001-03-01 00:40:38 +00:00
|
|
|
#
|
|
|
|
# The contents of this file are subject to the Mozilla Public
|
|
|
|
# License Version 1.1 (the "License"); you may not use this file
|
|
|
|
# except in compliance with the License. You may obtain a copy of
|
|
|
|
# the License at http://www.mozilla.org/MPL/
|
|
|
|
#
|
|
|
|
# Software distributed under the License is distributed on an "AS
|
|
|
|
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
|
|
|
# implied. See the License for the specific language governing
|
|
|
|
# rights and limitations under the License.
|
|
|
|
#
|
|
|
|
# The Original Code is the Netscape security libraries.
|
|
|
|
#
|
|
|
|
# The Initial Developer of the Original Code is Netscape
|
|
|
|
# Communications Corporation. Portions created by Netscape are
|
|
|
|
# Copyright (C) 1994-2000 Netscape Communications Corporation. All
|
|
|
|
# Rights Reserved.
|
|
|
|
#
|
|
|
|
# Contributor(s):
|
|
|
|
#
|
|
|
|
# Alternatively, the contents of this file may be used under the
|
|
|
|
# terms of the GNU General Public License Version 2 or later (the
|
|
|
|
# "GPL"), in which case the provisions of the GPL are applicable
|
|
|
|
# instead of those above. If you wish to allow use of your
|
|
|
|
# version of this file only under the terms of the GPL and not to
|
|
|
|
# allow others to use your version of this file under the MPL,
|
|
|
|
# indicate your decision by deleting the provisions above and
|
|
|
|
# replace them with the notice and other provisions required by
|
|
|
|
# the GPL. If you do not delete the provisions above, a recipient
|
|
|
|
# may use your version of this file under either the MPL or the
|
|
|
|
# GPL.
|
|
|
|
#
|
2001-02-21 23:56:14 +00:00
|
|
|
|
|
|
|
########################################################################
|
|
|
|
#
|
|
|
|
# mozilla/security/nss/tests/cert/cert.sh
|
|
|
|
#
|
|
|
|
# Certificate generating and handeling for NSS QA, can be included
|
|
|
|
# multiple times from all.sh and the individual scripts
|
|
|
|
#
|
|
|
|
# needs to work on all Unix and Windows platforms
|
|
|
|
#
|
|
|
|
# included from (don't expect this to be up to date)
|
|
|
|
# --------------------------------------------------
|
|
|
|
# all.sh
|
|
|
|
# ssl.sh
|
|
|
|
# smime.sh
|
|
|
|
# tools.sh
|
|
|
|
#
|
|
|
|
# special strings
|
|
|
|
# ---------------
|
|
|
|
# FIXME ... known problems, search for this string
|
|
|
|
# NOTE .... unexpected behavior
|
|
|
|
#
|
|
|
|
# FIXME - Netscape - NSS
|
|
|
|
########################################################################
|
|
|
|
|
2001-03-01 00:40:38 +00:00
|
|
|
############################## cert_init ###############################
|
|
|
|
# local shell function to initialize this script
|
|
|
|
########################################################################
|
|
|
|
cert_init()
|
|
|
|
{
|
|
|
|
SCRIPTNAME="cert.sh"
|
|
|
|
if [ -z "${CLEANUP}" ] ; then # if nobody else is responsible for
|
|
|
|
CLEANUP="${SCRIPTNAME}" # cleaning this script will do it
|
|
|
|
fi
|
|
|
|
if [ -z "${INIT_SOURCED}" ] ; then
|
|
|
|
cd ../common
|
|
|
|
. init.sh
|
|
|
|
fi
|
|
|
|
SCRIPTNAME="cert.sh"
|
|
|
|
html_head "Certutil Tests"
|
|
|
|
|
|
|
|
################## Generate noise for our CA cert. ######################
|
|
|
|
# NOTE: these keys are only suitable for testing, as this whole thing
|
|
|
|
# bypasses the entropy gathering. Don't use this method to generate
|
|
|
|
# keys and certs for product use or deployment.
|
|
|
|
#
|
|
|
|
ps -efl > ${NOISE_FILE} 2>&1
|
|
|
|
ps aux >> ${NOISE_FILE} 2>&1
|
|
|
|
noise
|
|
|
|
}
|
2001-02-21 23:56:14 +00:00
|
|
|
|
2001-03-01 00:40:38 +00:00
|
|
|
cert_log() ###################### write the cert_status file
|
2001-02-21 23:56:14 +00:00
|
|
|
{
|
2001-03-01 00:40:38 +00:00
|
|
|
#echo "$SCRIPTNAME $*"
|
2001-02-21 23:56:14 +00:00
|
|
|
echo $* >>${CERT_LOG_FILE}
|
|
|
|
}
|
|
|
|
|
|
|
|
################################ noise ##################################
|
|
|
|
# Generate noise for our certs
|
|
|
|
#
|
|
|
|
# NOTE: these keys are only suitable for testing, as this whole thing bypasses
|
|
|
|
# the entropy gathering. Don't use this method to generate keys and certs for
|
|
|
|
# product use or deployment.
|
|
|
|
#########################################################################
|
|
|
|
noise()
|
|
|
|
{
|
|
|
|
netstat >> ${NOISE_FILE} 2>&1
|
|
|
|
date >> ${NOISE_FILE} 2>&1
|
|
|
|
}
|
|
|
|
|
|
|
|
################################ certu #################################
|
|
|
|
# local shell function to call certutil, also: writes action and options to
|
|
|
|
# stdout, sets variable RET and writes results to the html file results
|
|
|
|
########################################################################
|
|
|
|
certu()
|
|
|
|
{
|
2001-03-01 00:40:38 +00:00
|
|
|
echo "$SCRIPTNAME: ${CU_ACTION} --------------------------"
|
2001-02-21 23:56:14 +00:00
|
|
|
|
|
|
|
if [ -n "${CU_SUBJECT}" ]; then
|
|
|
|
#the subject of the cert contains blanks, and the shell
|
|
|
|
#will strip the quotes off the string, if called otherwise...
|
|
|
|
echo "certutil -s \"${CU_SUBJECT}\" $*"
|
|
|
|
certutil -s "${CU_SUBJECT}" $*
|
2001-04-20 21:35:04 +00:00
|
|
|
RET=$?
|
2001-03-01 00:40:38 +00:00
|
|
|
CU_SUBJECT=""
|
2001-02-21 23:56:14 +00:00
|
|
|
else
|
|
|
|
echo "certutil $*"
|
|
|
|
certutil $*
|
2001-04-20 21:35:04 +00:00
|
|
|
RET=$?
|
2001-02-21 23:56:14 +00:00
|
|
|
fi
|
|
|
|
if [ "$RET" -ne 0 ]; then
|
2001-03-01 00:40:38 +00:00
|
|
|
CERTFAILED=$RET
|
2001-02-23 02:23:05 +00:00
|
|
|
html_failed "<TR><TD>${CU_ACTION} ($RET) "
|
2001-03-01 00:40:38 +00:00
|
|
|
cert_log "ERROR: ${CU_ACTION} failed $RET"
|
2001-02-21 23:56:14 +00:00
|
|
|
else
|
2001-02-23 02:23:05 +00:00
|
|
|
html_passed "<TR><TD>${CU_ACTION}"
|
2001-02-21 23:56:14 +00:00
|
|
|
fi
|
|
|
|
return $RET
|
|
|
|
}
|
|
|
|
|
2001-03-01 00:40:38 +00:00
|
|
|
############################# cert_init_cert ##########################
|
2001-02-21 23:56:14 +00:00
|
|
|
# local shell function to initialize creation of client and server certs
|
|
|
|
########################################################################
|
2001-03-01 00:40:38 +00:00
|
|
|
cert_init_cert()
|
2001-02-21 23:56:14 +00:00
|
|
|
{
|
|
|
|
CERTDIR="$1"
|
|
|
|
CERTNAME="$2"
|
|
|
|
CERTSERIAL="$3"
|
|
|
|
|
|
|
|
if [ ! -d "${CERTDIR}" ]; then
|
|
|
|
mkdir -p "${CERTDIR}"
|
|
|
|
else
|
2001-03-01 00:40:38 +00:00
|
|
|
echo "$SCRIPTNAME: WARNING - ${CERTDIR} exists"
|
2001-02-21 23:56:14 +00:00
|
|
|
fi
|
|
|
|
cd "${CERTDIR}"
|
2001-03-01 00:40:38 +00:00
|
|
|
CERTDIR="."
|
2001-02-21 23:56:14 +00:00
|
|
|
|
|
|
|
noise
|
|
|
|
}
|
|
|
|
|
2001-06-01 23:10:35 +00:00
|
|
|
############################# hw_acc #################################
|
|
|
|
# local shell function to add hw accelerator modules to the db
|
|
|
|
########################################################################
|
|
|
|
hw_acc()
|
|
|
|
{
|
|
|
|
HW_ACC_RET=0
|
|
|
|
HW_ACC_ERR=""
|
2001-06-11 21:25:43 +00:00
|
|
|
if [ -n "$O_HWACC" -a "$O_HWACC" = ON -a -z "$USE_64" ] ; then
|
2001-06-01 23:10:35 +00:00
|
|
|
echo "creating $CERTNAME s cert with hwaccelerator..."
|
|
|
|
#case $ACCELERATOR in
|
|
|
|
#rainbow)
|
|
|
|
|
|
|
|
|
|
|
|
echo "modutil -add rainbow -libfile /usr/lib/libcryptoki22.so "
|
|
|
|
echo " -dbdir . 2>&1 "
|
|
|
|
echo | modutil -add rainbow -libfile /usr/lib/libcryptoki22.so \
|
|
|
|
-dbdir . 2>&1
|
|
|
|
if [ "$?" -ne 0 ]; then
|
|
|
|
echo "modutil -add rainbow failed in `pwd`"
|
|
|
|
HW_ACC_RET=1
|
|
|
|
HW_ACC_ERR="modutil -add rainbow"
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo "modutil -add ncipher "
|
|
|
|
echo " -libfile /opt/nfast/toolkits/pkcs11/libcknfast.so "
|
|
|
|
echo " -dbdir . 2>&1 "
|
|
|
|
echo | modutil -add ncipher \
|
|
|
|
-libfile /opt/nfast/toolkits/pkcs11/libcknfast.so \
|
|
|
|
-dbdir . 2>&1
|
|
|
|
if [ "$?" -ne 0 ]; then
|
|
|
|
echo "modutil -add ncipher failed in `pwd`"
|
|
|
|
HW_ACC_RET=`expr $HW_ACC_RET + 2`
|
|
|
|
HW_ACC_ERR="$HW_ACC_ERR,modutil -add ncipher"
|
|
|
|
fi
|
|
|
|
if [ "$HW_ACC_RET" -ne 0 ]; then
|
|
|
|
html_failed "<TR><TD>Adding HW accelerators to certDB for ${CERTNAME} ($HW_ACC_RET) "
|
|
|
|
else
|
|
|
|
html_passed "<TR><TD>Adding HW accelerators to certDB for ${CERTNAME}"
|
|
|
|
fi
|
|
|
|
|
|
|
|
fi
|
|
|
|
return $HW_ACC_RET
|
|
|
|
}
|
|
|
|
|
2001-03-01 00:40:38 +00:00
|
|
|
############################# cert_create_cert #########################
|
2001-02-21 23:56:14 +00:00
|
|
|
# local shell function to create client certs
|
|
|
|
# initialize DB, import
|
|
|
|
# root cert
|
2001-03-28 00:03:02 +00:00
|
|
|
# add cert to DB
|
2001-02-21 23:56:14 +00:00
|
|
|
########################################################################
|
2001-03-01 00:40:38 +00:00
|
|
|
cert_create_cert()
|
2001-02-21 23:56:14 +00:00
|
|
|
{
|
2001-03-01 00:40:38 +00:00
|
|
|
cert_init_cert "$1" "$2" "$3"
|
2001-02-21 23:56:14 +00:00
|
|
|
|
|
|
|
CU_ACTION="Initializing ${CERTNAME}'s Cert DB"
|
2001-03-01 00:40:38 +00:00
|
|
|
certu -N -d "${CERTDIR}" -f "${R_PWFILE}" 2>&1
|
2001-02-21 23:56:14 +00:00
|
|
|
if [ "$RET" -ne 0 ]; then
|
|
|
|
return $RET
|
|
|
|
fi
|
2001-06-01 23:10:35 +00:00
|
|
|
hw_acc
|
2001-02-21 23:56:14 +00:00
|
|
|
CU_ACTION="Import Root CA for $CERTNAME"
|
2001-03-01 00:40:38 +00:00
|
|
|
certu -A -n "TestCA" -t "TC,TC,TC" -f "${R_PWFILE}" -d "${CERTDIR}" \
|
|
|
|
-i "${R_CADIR}/root.cert" 2>&1
|
2001-02-21 23:56:14 +00:00
|
|
|
if [ "$RET" -ne 0 ]; then
|
|
|
|
return $RET
|
|
|
|
fi
|
2001-03-28 00:03:02 +00:00
|
|
|
cert_add_cert
|
|
|
|
return $?
|
|
|
|
}
|
|
|
|
|
|
|
|
############################# cert_add_cert ############################
|
|
|
|
# local shell function to add client certs to an existing CERT DB
|
|
|
|
# generate request
|
|
|
|
# sign request
|
|
|
|
# import Cert
|
|
|
|
#
|
|
|
|
########################################################################
|
|
|
|
cert_add_cert()
|
|
|
|
{
|
2001-02-21 23:56:14 +00:00
|
|
|
|
|
|
|
CU_ACTION="Generate Cert Request for $CERTNAME"
|
|
|
|
CU_SUBJECT="CN=$CERTNAME, E=${CERTNAME}@bogus.com, O=BOGUS NSS, L=Mountain View, ST=California, C=US"
|
2001-03-01 00:40:38 +00:00
|
|
|
certu -R -d "${CERTDIR}" -f "${R_PWFILE}" -z "${R_NOISE_FILE}" -o req 2>&1
|
2001-02-21 23:56:14 +00:00
|
|
|
if [ "$RET" -ne 0 ]; then
|
|
|
|
return $RET
|
|
|
|
fi
|
|
|
|
|
|
|
|
CU_ACTION="Sign ${CERTNAME}'s Request"
|
2001-03-01 00:40:38 +00:00
|
|
|
certu -C -c "TestCA" -m "$CERTSERIAL" -v 60 -d "${R_CADIR}" \
|
|
|
|
-i req -o "${CERTNAME}.cert" -f "${R_PWFILE}" 2>&1
|
2001-02-21 23:56:14 +00:00
|
|
|
if [ "$RET" -ne 0 ]; then
|
|
|
|
return $RET
|
|
|
|
fi
|
|
|
|
|
|
|
|
CU_ACTION="Import $CERTNAME's Cert"
|
2001-03-01 00:40:38 +00:00
|
|
|
certu -A -n "$CERTNAME" -t "u,u,u" -d "${CERTDIR}" -f "${R_PWFILE}" \
|
|
|
|
-i "${CERTNAME}.cert" 2>&1
|
2001-02-21 23:56:14 +00:00
|
|
|
if [ "$RET" -ne 0 ]; then
|
|
|
|
return $RET
|
|
|
|
fi
|
|
|
|
|
2001-03-01 00:40:38 +00:00
|
|
|
cert_log "SUCCESS: $CERTNAME's Cert Created"
|
2001-02-21 23:56:14 +00:00
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2001-03-01 00:40:38 +00:00
|
|
|
################################# cert_CA ################################
|
|
|
|
# local shell function to build the Temp. Certificate Authority (CA)
|
|
|
|
# used for testing purposes, creating a CA Certificate and a root cert
|
|
|
|
##########################################################################
|
|
|
|
cert_CA()
|
|
|
|
{
|
|
|
|
echo "$SCRIPTNAME: Creating a CA Certificate =========================="
|
|
|
|
|
|
|
|
if [ ! -d "${CADIR}" ]; then
|
|
|
|
mkdir -p "${CADIR}"
|
|
|
|
fi
|
|
|
|
cd ${CADIR}
|
|
|
|
|
|
|
|
echo nss > ${PWFILE}
|
|
|
|
|
|
|
|
CU_ACTION="Creating CA Cert DB"
|
|
|
|
certu -N -d . -f ${R_PWFILE} 2>&1
|
|
|
|
if [ "$RET" -ne 0 ]; then
|
|
|
|
Exit 5 "Fatal - failed to create CA"
|
|
|
|
fi
|
|
|
|
|
|
|
|
################# Generating Certscript #################################
|
|
|
|
#
|
2001-03-03 00:14:17 +00:00
|
|
|
echo "$SCRIPTNAME: Certificate initialized ----------"
|
2001-03-01 00:40:38 +00:00
|
|
|
|
|
|
|
################# Creating CA Cert ######################################
|
|
|
|
#
|
|
|
|
CU_ACTION="Creating CA Cert"
|
|
|
|
CU_SUBJECT="CN=NSS Test CA, O=BOGUS NSS, L=Mountain View, ST=California, C=US"
|
|
|
|
certu -S -n "TestCA" -t "CTu,CTu,CTu" -v 60 -x -d . -1 -2 -5 \
|
2001-03-03 00:14:17 +00:00
|
|
|
-f ${R_PWFILE} -z ${R_NOISE_FILE} 2>&1 <<CERTSCRIPT
|
|
|
|
5
|
|
|
|
9
|
|
|
|
n
|
|
|
|
y
|
|
|
|
3
|
|
|
|
n
|
|
|
|
5
|
|
|
|
6
|
|
|
|
7
|
|
|
|
9
|
|
|
|
n
|
|
|
|
CERTSCRIPT
|
|
|
|
|
2001-03-01 00:40:38 +00:00
|
|
|
if [ "$RET" -ne 0 ]; then
|
|
|
|
Exit 6 "Fatal - failed to create CA cert"
|
|
|
|
fi
|
|
|
|
|
|
|
|
################# Exporting Root Cert ###################################
|
|
|
|
#
|
|
|
|
CU_ACTION="Exporting Root Cert"
|
|
|
|
certu -L -n "TestCA" -r -d . -o root.cert
|
|
|
|
if [ "$RET" -ne 0 ]; then
|
|
|
|
Exit 7 "Fatal - failed to export root cert"
|
|
|
|
fi
|
|
|
|
}
|
2001-02-21 23:56:14 +00:00
|
|
|
|
2001-03-01 00:40:38 +00:00
|
|
|
############################## cert_smime_client #############################
|
|
|
|
# local shell function to create client Certificates for S/MIME tests
|
|
|
|
##############################################################################
|
|
|
|
cert_smime_client()
|
|
|
|
{
|
|
|
|
CERTFAILED=0
|
|
|
|
echo "$SCRIPTNAME: Creating Client CA Issued Certificates =============="
|
|
|
|
|
|
|
|
cert_create_cert ${ALICEDIR} "Alice" 3
|
|
|
|
cert_create_cert ${BOBDIR} "Bob" 4
|
|
|
|
|
|
|
|
echo "$SCRIPTNAME: Creating Dave's Certificate -------------------------"
|
|
|
|
cert_init_cert "${DAVEDIR}" Dave 5
|
|
|
|
cp ${CADIR}/*.db .
|
2001-06-01 23:10:35 +00:00
|
|
|
hw_acc
|
2001-03-01 00:40:38 +00:00
|
|
|
|
|
|
|
#########################################################################
|
|
|
|
#
|
|
|
|
cd ${CERTDIR}
|
|
|
|
CU_ACTION="Creating ${CERTNAME}'s Server Cert"
|
|
|
|
CU_SUBJECT="CN=${CERTNAME}, E=${CERTNAME}@bogus.com, O=BOGUS Netscape, L=Mountain View, ST=California, C=US"
|
|
|
|
certu -S -n "${CERTNAME}" -c "TestCA" -t "u,u,u" -m "$CERTSERIAL" -d . \
|
|
|
|
-f "${R_PWFILE}" -z "${R_NOISE_FILE}" -v 60 2>&1
|
|
|
|
|
|
|
|
CU_ACTION="Export Dave's Cert"
|
|
|
|
cd ${DAVEDIR}
|
|
|
|
certu -L -n "Dave" -r -d . -o Dave.cert
|
|
|
|
|
|
|
|
################# Importing Certificates for S/MIME tests ###############
|
|
|
|
#
|
|
|
|
echo "$SCRIPTNAME: Importing Certificates =============================="
|
|
|
|
CU_ACTION="Import Alices's cert into Bob's db"
|
2001-04-20 00:32:15 +00:00
|
|
|
certu -E -t "p,p,p" -d ${R_BOBDIR} -f ${R_PWFILE} \
|
2001-03-01 00:40:38 +00:00
|
|
|
-i ${R_ALICEDIR}/Alice.cert 2>&1
|
|
|
|
|
|
|
|
CU_ACTION="Import Bob's cert into Alice's db"
|
2001-04-20 00:32:15 +00:00
|
|
|
certu -E -t "p,p,p" -d ${R_ALICEDIR} -f ${R_PWFILE} \
|
2001-03-01 00:40:38 +00:00
|
|
|
-i ${R_BOBDIR}/Bob.cert 2>&1
|
|
|
|
|
|
|
|
CU_ACTION="Import Dave's cert into Alice's DB"
|
2001-04-20 00:32:15 +00:00
|
|
|
certu -E -t "p,p,p" -d ${R_ALICEDIR} -f ${R_PWFILE} \
|
2001-03-01 00:40:38 +00:00
|
|
|
-i ${R_DAVEDIR}/Dave.cert 2>&1
|
|
|
|
|
|
|
|
CU_ACTION="Import Dave's cert into Bob's DB"
|
2001-04-20 00:32:15 +00:00
|
|
|
certu -E -t "p,p,p" -d ${R_BOBDIR} -f ${R_PWFILE} \
|
2001-03-01 00:40:38 +00:00
|
|
|
-i ${R_DAVEDIR}/Dave.cert 2>&1
|
|
|
|
|
|
|
|
if [ "$CERTFAILED" != 0 ] ; then
|
|
|
|
cert_log "ERROR: SMIME failed $RET"
|
|
|
|
else
|
|
|
|
cert_log "SUCCESS: SMIME passed"
|
|
|
|
fi
|
|
|
|
}
|
2001-02-21 23:56:14 +00:00
|
|
|
|
2001-03-01 00:40:38 +00:00
|
|
|
############################## cert_ssl ################################
|
|
|
|
# local shell function to create client + server certs for SSL test
|
|
|
|
########################################################################
|
|
|
|
cert_ssl()
|
|
|
|
{
|
|
|
|
################# Creating Certs for SSL test ###########################
|
|
|
|
#
|
|
|
|
CERTFAILED=0
|
|
|
|
echo "$SCRIPTNAME: Creating Client CA Issued Certificates ==============="
|
|
|
|
cert_create_cert ${CLIENTDIR} "TestUser" 6
|
|
|
|
|
|
|
|
echo "$SCRIPTNAME: Creating Server CA Issued Certificate for \\"
|
2001-03-28 00:03:02 +00:00
|
|
|
echo " ${HOSTADDR} ------------------------------------"
|
|
|
|
cert_init_cert ${SERVERDIR} "${HOSTADDR}" 1
|
2001-03-01 00:40:38 +00:00
|
|
|
cp ${CADIR}/*.db .
|
2001-06-01 23:10:35 +00:00
|
|
|
hw_acc
|
2001-03-01 00:40:38 +00:00
|
|
|
CU_ACTION="Creating ${CERTNAME}'s Server Cert"
|
|
|
|
CU_SUBJECT="CN=${CERTNAME}, O=BOGUS Netscape, L=Mountain View, ST=California, C=US"
|
|
|
|
certu -S -n "${CERTNAME}" -c "TestCA" -t "Pu,Pu,Pu" -d . -f "${R_PWFILE}" \
|
|
|
|
-z "${R_NOISE_FILE}" -v 60 2>&1
|
|
|
|
|
|
|
|
#FIXME - certdir or serverdir????
|
|
|
|
#certu -S -n "${CERTNAME}" -c "TestCA" -t "Pu,Pu,Pu" -m "$CERTSERIAL" \
|
|
|
|
# -d "${CERTDIR}" -f "${R_PWFILE}" -z "${R_NOISE_FILE}" -v 60 2>&1
|
|
|
|
|
|
|
|
if [ "$CERTFAILED" != 0 ] ; then
|
|
|
|
cert_log "ERROR: SSL failed $RET"
|
|
|
|
else
|
|
|
|
cert_log "SUCCESS: SSL passed"
|
|
|
|
fi
|
|
|
|
}
|
2001-03-28 00:03:02 +00:00
|
|
|
############################## cert_stresscerts ################################
|
|
|
|
# local shell function to create client certs for SSL stresstest
|
|
|
|
########################################################################
|
|
|
|
cert_stresscerts()
|
|
|
|
{
|
|
|
|
|
|
|
|
############### Creating Certs for SSL stress test #######################
|
|
|
|
#
|
|
|
|
CERTDIR="$CLIENTDIR"
|
|
|
|
cd "${CERTDIR}"
|
|
|
|
|
|
|
|
CERTFAILED=0
|
|
|
|
echo "$SCRIPTNAME: Creating Client CA Issued Certificates ==============="
|
|
|
|
|
|
|
|
CONTINUE=$GLOB_MAX_CERT
|
|
|
|
CERTSERIAL=10
|
|
|
|
|
|
|
|
while [ $CONTINUE -ge $GLOB_MIN_CERT ]
|
|
|
|
do
|
|
|
|
CERTNAME="TestUser$CONTINUE"
|
|
|
|
cert_add_cert ${CLIENTDIR} "TestUser$CONTINUE" $CERTSERIAL
|
|
|
|
CERTSERIAL=`expr $CERTSERIAL + 1 `
|
|
|
|
CONTINUE=`expr $CONTINUE - 1 `
|
|
|
|
done
|
|
|
|
if [ "$CERTFAILED" != 0 ] ; then
|
|
|
|
cert_log "ERROR: StressCert failed $RET"
|
|
|
|
else
|
|
|
|
cert_log "SUCCESS: StressCert passed"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2001-02-21 23:56:14 +00:00
|
|
|
|
2001-03-01 00:40:38 +00:00
|
|
|
############################## cert_cleanup ############################
|
|
|
|
# local shell function to finish this script (no exit since it might be
|
|
|
|
# sourced)
|
|
|
|
########################################################################
|
|
|
|
cert_cleanup()
|
|
|
|
{
|
|
|
|
cert_log "$SCRIPTNAME: finished $SCRIPTNAME"
|
|
|
|
html "</TABLE><BR>"
|
|
|
|
cd ${QADIR}
|
|
|
|
. common/cleanup.sh
|
|
|
|
}
|
2001-02-21 23:56:14 +00:00
|
|
|
|
2001-03-01 00:40:38 +00:00
|
|
|
################## main #################################################
|
2001-02-21 23:56:14 +00:00
|
|
|
|
2001-03-28 00:03:02 +00:00
|
|
|
cert_init
|
|
|
|
cert_CA
|
|
|
|
cert_ssl
|
|
|
|
cert_smime_client
|
|
|
|
if [ -n "$DO_DIST_ST" -a "$DO_DIST_ST" = "TRUE" ] ; then
|
|
|
|
cert_stresscerts
|
|
|
|
#following lines to be used when databases are to be reused
|
|
|
|
#cp -r /u/sonmi/tmp/stress/kentuckyderby.13/* $HOSTDIR
|
|
|
|
#cp -r $HOSTDIR/../clio.8/* $HOSTDIR
|
|
|
|
|
|
|
|
fi
|
2001-03-01 00:40:38 +00:00
|
|
|
cert_cleanup
|