Blame tests/testpkcs11.softhsm

Packit aea12f
#!/bin/sh
Packit aea12f
Packit aea12f
# Copyright (C) 2013 Nikos Mavrogiannopoulos
Packit aea12f
#
Packit aea12f
# This file is part of GnuTLS.
Packit aea12f
#
Packit aea12f
# GnuTLS is free software; you can redistribute it and/or modify it
Packit aea12f
# under the terms of the GNU General Public License as published by the
Packit aea12f
# Free Software Foundation; either version 3 of the License, or (at
Packit aea12f
# your option) any later version.
Packit aea12f
#
Packit aea12f
# GnuTLS is distributed in the hope that it will be useful, but
Packit aea12f
# WITHOUT ANY WARRANTY; without even the implied warranty of
Packit aea12f
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit aea12f
# General Public License for more details.
Packit aea12f
#
Packit aea12f
# You should have received a copy of the GNU General Public License
Packit aea12f
# along with GnuTLS; if not, write to the Free Software Foundation,
Packit aea12f
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
Packit aea12f
Packit aea12f
for i in /usr/lib64/pkcs11 /usr/lib/softhsm /usr/lib/x86_64-linux-gnu/softhsm /usr/lib /usr/lib64/softhsm;do
Packit aea12f
	if test -f "$i/libsofthsm2.so"; then
Packit aea12f
		ADDITIONAL_PARAM="--provider $i/libsofthsm2.so"
Packit aea12f
		break
Packit aea12f
	else
Packit aea12f
		if test -f "$i/libsofthsm.so";then
Packit aea12f
			ADDITIONAL_PARAM="--provider $i/libsofthsm.so"
Packit aea12f
			break
Packit aea12f
		fi
Packit aea12f
	fi
Packit aea12f
done
Packit aea12f
Packit aea12f
init_card () {
Packit aea12f
	PIN="$1"
Packit aea12f
	PUK="$2"
Packit aea12f
Packit aea12f
	if test -x "/usr/bin/softhsm2-util"; then
Packit aea12f
		export SOFTHSM2_CONF="softhsm-testpkcs11.$$.config.tmp"
Packit aea12f
		SOFTHSM_TOOL="/usr/bin/softhsm2-util"
Packit aea12f
		${SOFTHSM_TOOL} --version|grep "2.0.0" >/dev/null 2>&1
Packit aea12f
		if test $? = 0; then
Packit aea12f
			echo "softhsm2-util 2.0.0 is broken"
Packit aea12f
			export BROKEN_SOFTHSM2=1
Packit aea12f
		fi
Packit aea12f
	fi
Packit aea12f
Packit aea12f
	if test -x "/usr/bin/softhsm"; then
Packit aea12f
		export SOFTHSM_CONF="softhsm-testpkcs11.$$.config.tmp"
Packit aea12f
		SOFTHSM_TOOL="/usr/bin/softhsm"
Packit aea12f
	fi
Packit aea12f
Packit aea12f
	if test -z "${SOFTHSM_TOOL}"; then
Packit aea12f
		echo "Could not find softhsm(2) tool"
Packit aea12f
		exit 77
Packit aea12f
	fi
Packit aea12f
Packit aea12f
	if test -z "${SOFTHSM_CONF}"; then
Packit aea12f
		rm -rf ./softhsm-testpkcs11.$$.tmp
Packit aea12f
		mkdir -p ./softhsm-testpkcs11.$$.tmp
Packit aea12f
		echo "objectstore.backend = file" > "${SOFTHSM2_CONF}"
Packit aea12f
		echo "directories.tokendir = ./softhsm-testpkcs11.$$.tmp" >> "${SOFTHSM2_CONF}"
Packit aea12f
Packit aea12f
	else
Packit aea12f
		rm -rf ./softhsm-testpkcs11.$$.tmp
Packit aea12f
		echo "0:./softhsm-testpkcs11.$$.tmp" > "${SOFTHSM_CONF}"
Packit aea12f
	fi
Packit aea12f
Packit aea12f
Packit aea12f
	echo -n "* Initializing smart card... "
Packit aea12f
	${SOFTHSM_TOOL} --init-token --slot 0 --label "GnuTLS-Test" --so-pin "${PUK}" --pin "${PIN}" >/dev/null #2>&1
Packit aea12f
	if test $? = 0; then
Packit aea12f
		echo ok
Packit aea12f
	else
Packit aea12f
		echo failed
Packit aea12f
		exit_error
Packit aea12f
	fi
Packit aea12f
}