[3f00958] | 1 | #!/bin/bash |
---|
| 2 | |
---|
| 3 | # Initialize the SoftHSM token with the given label |
---|
| 4 | function init_token |
---|
| 5 | { |
---|
| 6 | local token_label="${1}" |
---|
| 7 | |
---|
| 8 | ${softhsm} --init-token --slot 0 --label "${token_label}" \ |
---|
| 9 | --so-pin "${so_pin}" --pin "${GNUTLS_PIN}" |
---|
| 10 | } |
---|
| 11 | |
---|
| 12 | # Put a private key into the token with the given label |
---|
| 13 | function store_privkey |
---|
| 14 | { |
---|
| 15 | local token="${1}" |
---|
| 16 | local keyfile="${2}" |
---|
| 17 | local label="${3}" |
---|
| 18 | |
---|
| 19 | p11tool --provider=${softhsm_lib} --login --write --label "${label}" \ |
---|
| 20 | --load-privkey "${keyfile}" "${token}" |
---|
| 21 | } |
---|
| 22 | |
---|
| 23 | # Put a certificate into the token with the given label |
---|
| 24 | function store_cert |
---|
| 25 | { |
---|
| 26 | local token="${1}" |
---|
| 27 | local certfile="${2}" |
---|
| 28 | local label="${3}" |
---|
| 29 | |
---|
| 30 | p11tool --provider=${softhsm_lib} --login --write --no-mark-private \ |
---|
| 31 | --label "${label}" --load-certificate "${certfile}" "${token}" |
---|
| 32 | } |
---|
| 33 | |
---|
| 34 | # Get the URL of the SoftHSM token |
---|
| 35 | function get_token_url |
---|
| 36 | { |
---|
| 37 | local label="${1}" |
---|
| 38 | p11tool --provider=${softhsm_lib} --list-tokens | \ |
---|
| 39 | grep -o -P "(?<=URL:\s)(.*token=${label}.*)$" |
---|
| 40 | } |
---|
| 41 | |
---|
| 42 | # Get the PKCS #11 URL for the object with the given name |
---|
| 43 | # Usage: get_object_url TOKEN OBJECTNAME |
---|
| 44 | function get_object_url |
---|
| 45 | { |
---|
| 46 | p11tool --provider=${softhsm_lib} --list-all --login "${1}" | \ |
---|
| 47 | grep -o -P "(?<=URL:\s)(.*object=${2}.*)$" |
---|
| 48 | } |
---|
| 49 | |
---|
| 50 | # Initialize the token and store the given key and certificate |
---|
| 51 | # Usage: prepare_token TOKEN_LABEL PRIVKEY CERTIFICATE |
---|
| 52 | function prepare_token |
---|
| 53 | { |
---|
| 54 | local token_label="${1}" |
---|
| 55 | local privkey="${2}" |
---|
| 56 | local certificate="${3}" |
---|
| 57 | |
---|
| 58 | init_token "${token_label}" |
---|
| 59 | token=$(get_token_url ${token_label}) |
---|
| 60 | store_privkey "${token}" "${privkey}" "${key_label}" |
---|
| 61 | store_cert "${token}" "${certificate}" "${cert_label}" |
---|
| 62 | } |
---|
| 63 | |
---|
| 64 | |
---|
| 65 | |
---|
| 66 | # try to find SoftHSM |
---|
| 67 | softhsm="$(which softhsm)" |
---|
| 68 | |
---|
| 69 | case "${1}" in |
---|
| 70 | (init) |
---|
| 71 | init="true" |
---|
| 72 | # If SoftHSM is not available, there's nothing to init. Just |
---|
| 73 | # exit. |
---|
| 74 | if [ -z "${softhsm}" ]; then |
---|
| 75 | echo "SoftHSM not found, PKCS #11 test(s) will be skipped." |
---|
| 76 | exit 0 |
---|
| 77 | fi |
---|
| 78 | ;; |
---|
| 79 | (*) |
---|
| 80 | # Skip the test case if SoftHSM is not available. |
---|
| 81 | if [ -z "${softhsm}" ]; then |
---|
| 82 | echo "SoftHSM not found, skipping test." |
---|
| 83 | exit 77 |
---|
| 84 | fi |
---|
| 85 | ;; |
---|
| 86 | esac |
---|
| 87 | |
---|
| 88 | set -e |
---|
| 89 | |
---|
| 90 | # Guess location of libsofthsm based on softhsm binary. The path |
---|
| 91 | # matches SoftHSM upstream, but this might fail if someone changes the |
---|
| 92 | # libdir or bindir of the SoftHSM installation independently of its |
---|
| 93 | # general prefix. |
---|
| 94 | softhsm_prefix="$(realpath $(dirname ${softhsm})/..)" |
---|
| 95 | softhsm_lib="${softhsm_prefix}/lib/softhsm/libsofthsm.so" |
---|
| 96 | |
---|
[33af2b7] | 97 | # fail if SOFTHSM_CONF is not set |
---|
[3f00958] | 98 | if [ -z "${SOFTHSM_CONF}" ]; then |
---|
[33af2b7] | 99 | echo "ERROR: SOFTHSM_CONF not set!" 1>&2 |
---|
| 100 | exit 1 |
---|
[3f00958] | 101 | else |
---|
| 102 | export SOFTHSM_CONF |
---|
| 103 | fi |
---|
| 104 | echo "using SOFTHSM_CONF=\"${SOFTHSM_CONF}\"" |
---|
| 105 | |
---|
| 106 | # variables for token configuration |
---|
| 107 | token_label="mod_gnutls-test" |
---|
| 108 | so_pin="123456" |
---|
| 109 | export GNUTLS_PIN="1234" |
---|
| 110 | key_label="privkey" |
---|
| 111 | cert_label="certificate" |
---|
| 112 | |
---|
| 113 | if [ "${init}" = "true" ]; then |
---|
| 114 | prepare_token "${token_label}" "${2}" "${3}" |
---|
| 115 | exit 0 |
---|
| 116 | fi |
---|
| 117 | |
---|
| 118 | token=$(get_token_url ${token_label}) |
---|
| 119 | |
---|
| 120 | # environment variables for the Apache configuration |
---|
| 121 | export P11_KEY_URL="$(get_object_url ${token} ${key_label})" |
---|
| 122 | export P11_CERT_URL="$(get_object_url ${token} ${cert_label})" |
---|
| 123 | export P11_PIN="${GNUTLS_PIN}" |
---|