mirror of
https://github.com/samba-team/samba.git
synced 2025-01-11 05:18:09 +03:00
0b21e492c5
Signed-off-by: Andreas Schneider <asn@samba.org> Reviewed-by: Andrew Bartlett <abartlet@samba.org>
170 lines
5.2 KiB
Bash
Executable File
170 lines
5.2 KiB
Bash
Executable File
#!/bin/sh
|
|
# Blackbox tests for kinit and kerberos integration with smbclient etc
|
|
# Copyright (C) 2006-2007 Jelmer Vernooij <jelmer@samba.org>
|
|
# Copyright (C) 2006-2008 Andrew Bartlett <abartlet@samba.org>
|
|
|
|
if [ $# -lt 7 ]; then
|
|
cat <<EOF
|
|
Usage: test_extract_keytab.sh SERVER USERNAME REALM DOMAIN PREFIX SMBCLIENT CONFIGURATION
|
|
EOF
|
|
exit 1
|
|
fi
|
|
|
|
SERVER=$1
|
|
USERNAME=$2
|
|
REALM=$3
|
|
DOMAIN=$4
|
|
PREFIX=$5
|
|
smbclient=$6
|
|
CONFIGURATION=${7}
|
|
shift 7
|
|
failed=0
|
|
|
|
samba4bindir="$BINDIR"
|
|
samba_tool="$samba4bindir/samba-tool"
|
|
samba4ktutil="$BINDIR/samba4ktutil"
|
|
newuser="$samba_tool user create"
|
|
|
|
DNSDOMAIN=$(echo $REALM | tr '[:upper:]' '[:lower:]')
|
|
SERVER_FQDN="$SERVER.$DNSDOMAIN"
|
|
|
|
samba4kinit_binary=kinit
|
|
if test -x $BINDIR/samba4kinit; then
|
|
samba4kinit_binary=$BINDIR/samba4kinit
|
|
fi
|
|
|
|
. $(dirname $0)/subunit.sh
|
|
. $(dirname $0)/common_test_fns.inc
|
|
|
|
test_keytab()
|
|
{
|
|
testname="$1"
|
|
keytab="$2"
|
|
principal="$3"
|
|
expected_nkeys="$4"
|
|
|
|
echo "test: $testname"
|
|
|
|
NKEYS=$($VALGRIND $samba4ktutil $keytab | grep -i "$principal" | egrep -c "aes|arcfour")
|
|
status=$?
|
|
if [ x$status != x0 ]; then
|
|
echo "failure: $testname"
|
|
return $status
|
|
fi
|
|
|
|
if [ x$NKEYS != x$expected_nkeys ]; then
|
|
echo "failure: $testname"
|
|
return 1
|
|
fi
|
|
echo "success: $testname"
|
|
return 0
|
|
}
|
|
|
|
TEST_USER="$(mktemp -u keytabtestuserXXXXXX)"
|
|
USERPASS=testPaSS@01%
|
|
unc="//$SERVER/tmp"
|
|
|
|
testit "create user locally" \
|
|
$VALGRIND $PYTHON $newuser ${TEST_USER} $USERPASS "$@" || \
|
|
failed=$(expr $failed + 1)
|
|
|
|
testit "dump keytab from domain" \
|
|
$VALGRIND $PYTHON $samba_tool domain exportkeytab $PREFIX/tmpkeytab \
|
|
"${CONFIGURATION}" "$@" || \
|
|
failed=$(expr $failed + 1)
|
|
test_keytab "read keytab from domain" \
|
|
"$PREFIX/tmpkeytab" "$SERVER\\\$" 3
|
|
testit "dump keytab from domain (2nd time)" \
|
|
$VALGRIND $PYTHON $samba_tool domain exportkeytab $PREFIX/tmpkeytab \
|
|
"${CONFIGURATION}" "$@" || \
|
|
failed=$(expr $failed + 1)
|
|
test_keytab "read keytab from domain (2nd time)" \
|
|
"$PREFIX/tmpkeytab" "$SERVER\\\$" 3
|
|
|
|
testit "dump keytab from domain for cifs principal" \
|
|
$VALGRIND $PYTHON \
|
|
$samba_tool domain exportkeytab $PREFIX/tmpkeytab-server \
|
|
--principal=cifs/$SERVER_FQDN "${CONFIGURATION}" "$@" || \
|
|
failed=$(expr $failed + 1)
|
|
test_keytab "read keytab from domain for cifs principal" \
|
|
"$PREFIX/tmpkeytab-server" "cifs/$SERVER_FQDN" 3
|
|
testit "dump keytab from domain for cifs principal (2nd time)" \
|
|
$VALGRIND $PYTHON \
|
|
$samba_tool domain exportkeytab $PREFIX/tmpkeytab-server \
|
|
--principal=cifs/$SERVER_FQDN "${CONFIGURATION}" "$@" || \
|
|
failed=$(expr $failed + 1)
|
|
test_keytab "read keytab from domain for cifs principal (2nd time)" \
|
|
"$PREFIX/tmpkeytab-server" "cifs/$SERVER_FQDN" 3
|
|
|
|
testit "dump keytab from domain for user principal" \
|
|
$VALGRIND $PYTHON $samba_tool domain exportkeytab $PREFIX/tmpkeytab-2 \
|
|
--principal=${TEST_USER} "${CONFIGURATION}" "$@" || \
|
|
failed=$(expr $failed + 1)
|
|
test_keytab "dump keytab from domain for user principal" \
|
|
"$PREFIX/tmpkeytab-2" "${TEST_USER}@$REALM" 3
|
|
testit "dump keytab from domain for user principal (2nd time)" \
|
|
$VALGRIND $PYTHON \
|
|
$samba_tool domain exportkeytab $PREFIX/tmpkeytab-2 \
|
|
--principal=${TEST_USER}@$REALM "${CONFIGURATION}" "$@" || \
|
|
failed=$(expr $failed + 1)
|
|
test_keytab "dump keytab from domain for user principal (2nd time)" \
|
|
"$PREFIX/tmpkeytab-2" "${TEST_USER}@$REALM" 3
|
|
|
|
testit "dump keytab from domain for user principal with SPN as UPN" \
|
|
$VALGRIND $PYTHON $samba_tool domain exportkeytab $PREFIX/tmpkeytab-3 \
|
|
--principal=http/testupnspn.$DNSDOMAIN "${CONFIGURATION}" "$@" || \
|
|
failed=$(expr $failed + 1)
|
|
test_keytab "dump keytab from domain for user principal" \
|
|
"$PREFIX/tmpkeytab-3" "http/testupnspn.$DNSDOMAIN@$REALM" 3
|
|
|
|
KRB5CCNAME="$PREFIX/tmpuserccache"
|
|
samba4kinit="$samba4kinit_binary -c $KRB5CCNAME"
|
|
export KRB5CCNAME
|
|
|
|
testit "kinit with keytab as user" \
|
|
$VALGRIND $samba4kinit --keytab=$PREFIX/tmpkeytab --request-pac \
|
|
${TEST_USER}@$REALM || \
|
|
failed=$(expr $failed + 1)
|
|
|
|
test_smbclient "Test login with user kerberos ccache" \
|
|
'ls' "$unc" --use-krb5-ccache=$KRB5CCNAME || \
|
|
failed=$(expr $failed + 1)
|
|
|
|
testit "kinit with keytab as user (2)" \
|
|
$VALGRIND $samba4kinit --keytab=$PREFIX/tmpkeytab-2 --request-pac \
|
|
${TEST_USER}@$REALM || \
|
|
failed=$(expr $failed + 1)
|
|
|
|
test_smbclient "Test login with user kerberos ccache as user (2)" \
|
|
'ls' "$unc" --use-krb5-ccache=$KRB5CCNAME || \
|
|
failed=$(expr $failed + 1)
|
|
|
|
KRB5CCNAME="$PREFIX/tmpadminccache"
|
|
samba4kinit="$samba4kinit_binary -c $KRB5CCNAME"
|
|
export KRB5CCNAME
|
|
|
|
testit "kinit with keytab as $USERNAME" \
|
|
$VALGRIND $samba4kinit --keytab=$PREFIX/tmpkeytab --request-pac \
|
|
$USERNAME@$REALM || \
|
|
failed=$(expr $failed + 1)
|
|
|
|
KRB5CCNAME="$PREFIX/tmpspnupnccache"
|
|
samba4kinit="$samba4kinit_binary -c $KRB5CCNAME"
|
|
export KRB5CCNAME
|
|
testit "kinit with SPN from keytab" \
|
|
$VALGRIND $samba4kinit -k -t $PREFIX/tmpkeytab-3 \
|
|
http/testupnspn.$DNSDOMAIN || \
|
|
failed=$(expr $failed + 1)
|
|
|
|
KRB5CCNAME="$PREFIX/tmpadminccache"
|
|
samba4kinit="$samba4kinit_binary -c $KRB5CCNAME"
|
|
export KRB5CCNAME
|
|
|
|
testit "del user" \
|
|
$VALGRIND $PYTHON $samba_tool user delete ${TEST_USER} \
|
|
-k yes "${CONFIGURATION}" "$@" || \
|
|
failed=$(expr $failed + 1)
|
|
|
|
rm -f $PREFIX/tmpadminccache $PREFIX/tmpuserccache $PREFIX/tmpkeytab $PREFIX/tmpkeytab-2 $PREFIX/tmpkeytab-2 $PREFIX/tmpkeytab-server $PREFIX/tmpspnupnccache
|
|
exit $failed
|