#!/bin/bash -e
# Copyright (C) 2024 Jakub Jelen <jjelen@redhat.com>
# SPDX-License-Identifier: Apache-2.0

source "${TESTSSRCDIR}/helpers.sh"

if [[ ! -d "${TESTSSRCDIR}/../tlsfuzzer/tlsfuzzer" ]]; then
    title "TLS fuzzer is not available -- skipping"
    exit 77;
fi

if [[ "${SUPPORT_TLSFUZZER}" = "0" ]]; then
    title "TLS fuzzer does not work in FIPS Mode"
    exit 77;
fi

TMPFILE="${TMPPDIR}/tls-fuzzer.$$.tmp"
PORT="$TESTPORT"
PYTHON=$(which python3)

if [[ -f /etc/debian_version ]] && grep Ubuntu /etc/lsb-release; then
    # the ubuntu builds miss Brainpool curves, but Debian has them already
    SIGALGS="ecdsa_secp256r1_sha256 ecdsa_secp384r1_sha384 ecdsa_secp521r1_sha512 ed25519 ed448 rsa_pss_pss_sha256 rsa_pss_pss_sha384 rsa_pss_pss_sha512 rsa_pss_rsae_sha256 rsa_pss_rsae_sha384 rsa_pss_rsae_sha512 rsa_pkcs1_sha256 rsa_pkcs1_sha384 rsa_pkcs1_sha512 ecdsa_sha224 rsa_pkcs1_sha224"
else
    SIGALGS="ecdsa_secp256r1_sha256 ecdsa_secp384r1_sha384 ecdsa_secp521r1_sha512 ed25519 ed448 8+26 8+27 8+28 rsa_pss_pss_sha256 rsa_pss_pss_sha384 rsa_pss_pss_sha512 rsa_pss_rsae_sha256 rsa_pss_rsae_sha384 rsa_pss_rsae_sha512 rsa_pkcs1_sha256 rsa_pkcs1_sha384 rsa_pkcs1_sha512 ecdsa_sha224 rsa_pkcs1_sha224"
fi

prepare_test() {
    TEMPLATE="$1"
    KEY="$2"
    CERT="$3"
    # Prepare the tlsfuzzer configuration
    sed -e "s|@PRIURI@|$KEY|g" -e "s|@CRTURI@|$CERT|g" \
        -e "s/@PORT@/$PORT/g" \
        -e "s/@PROPQ@/$PROPQ/g" \
        -e "s/@SIGALGS@/$SIGALGS/g" "${TESTSSRCDIR}/${TEMPLATE}" >>"${TMPFILE}"
}

run_test() {
    # Run openssl under checker program if needed
    if [[ -n "$CHECKER" ]]; then
        IFS=" " read -r -a ARR <<< "$CHECKER"
        sed -e "s|@CHECKER@|$(printf "\"%s\", " "${ARR[@]}")|g" "${sed_inplace[@]}" "${TMPFILE}"
    else
        sed -e "s|@CHECKER@||g" "${sed_inplace[@]}" "${TMPFILE}"
    fi

    pushd "${TESTSSRCDIR}/../tlsfuzzer"
    test -L ecdsa || ln -s ../python-ecdsa/src/ecdsa ecdsa
    test -L tlslite || ln -s ../tlslite-ng/tlslite tlslite 2>/dev/null
    PYTHONPATH=. "${PYTHON}" tests/scripts_retention.py "${TMPFILE}" openssl 821
    popd
}

run_tests() {
    # truncate
    true > "${TMPFILE}"

    title PARA "Prepare CertificateVerify test with RSA"
    prepare_test cert.json.in "$PRIURI" "$CRTURI"

    title PARA "Prepare test for RSA"
    prepare_test cert.json.rsa.in "$PRIURI" "$CRTURI"

    if [[ -n "$RSAPSSBASEURI" ]]; then
        title PARA "Prepare test for RSA-PSS"

        # do selfsign now using openssl as certool can not create SPKI using
        # RSA-PSS
        selfsign_cert "${RSAPSSPRIURI}" "${TMPPDIR}/rsapss-default.pem" \
            "-sigopt rsa_padding_mode:pss" \
            "-sigopt digest:sha256" \
            "-sigopt rsa_pss_saltlen:-1"

        prepare_test cert.json.rsapss.in \
            "$RSAPSSPRIURI" "${TMPPDIR}/rsapss-default.pem"
    fi

    title PARA "Prepare test for ECDSA"
    # Note, that tlsfuzzer expects the homogeneous CA and server keys
    # so we are using here the self-signed peer EC Key, instead of
    # the default ECC key
    prepare_test cert.json.ecdsa.in "$ECPEERPRIURI" "$ECPEERCRTURI"

    if [[ -n "$EDBASEURI" ]]; then
        title PARA "Prepare test for Ed25519"
        prepare_test cert.json.ed25519.in "$EDPRIURI" "$EDCRTURI"
    fi

    if [[ -n "$ED2BASEURI" ]]; then
        title PARA "Prepare test for Ed448"
        prepare_test cert.json.ed448.in "$ED2PRIURI" "$ED2CRTURI"
    fi

    # the missing closing brace
    echo "]" >> "${TMPFILE}"

    run_test
}

title SECTION "Run TLS fuzzer with server key on provider"
run_tests
title ENDSECTION

title SECTION "Run TLS fuzzer forcing the provider for all server operations"
# We can not put this into the openssl.cnf directly, as it would be picked up by softhsm
# causing infinite recursion when doing EdDSA key operations.
PROPQ="\"-propquery\", \"?provider=pkcs11\", "
# We need to disable digest operations as OpenSSL depends on context duplication working
ORIG_OPENSSL_CONF=${OPENSSL_CONF}
sed -e "s/^#pkcs11-module-block-operations/pkcs11-module-block-operations = digest/" \
    "${OPENSSL_CONF}" > "${OPENSSL_CONF}.forcetoken"
export OPENSSL_CONF=${OPENSSL_CONF}.forcetoken

run_tests

OPENSSL_CONF=${ORIG_OPENSSL_CONF}
title ENDSECTION

exit 0
