tests: add a test for guest authentication
authorRalph Boehme <slow@samba.org>
Thu, 16 May 2019 10:47:34 +0000 (12:47 +0200)
committerKarolin Seeger <kseeger@samba.org>
Fri, 21 Jun 2019 07:56:17 +0000 (07:56 +0000)
This verifies that smbd always adds BUILTIN\Guests to the guest token which is
required for guest authentication.

Currently the guest token depends on the on-disk configured group mappings. If
there's an existing group mapping for BUILTIN\Guests, but LOCALSAM\Guest is not
a member, the final guest token won't contain BUILTIN\Guests.

BUG: https://bugzilla.samba.org/show_bug.cgi?id=13944

Signed-off-by: Ralph Boehme <slow@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
(cherry picked from commit 0e88f98855e24cfddb55bef65c5910b8e662c630)

selftest/knownfail.d/samba3.blackbox.guest [new file with mode: 0644]
source3/script/tests/test_guest_auth.sh [new file with mode: 0755]
source3/selftest/tests.py

diff --git a/selftest/knownfail.d/samba3.blackbox.guest b/selftest/knownfail.d/samba3.blackbox.guest
new file mode 100644 (file)
index 0000000..cbb62d7
--- /dev/null
@@ -0,0 +1 @@
+^samba3.blackbox.guest.*smbclient_guest_auth_without_members
diff --git a/source3/script/tests/test_guest_auth.sh b/source3/script/tests/test_guest_auth.sh
new file mode 100755 (executable)
index 0000000..4ad4a5c
--- /dev/null
@@ -0,0 +1,103 @@
+#!/bin/sh
+#
+# Test guest authentication
+#
+# Copyright (C) 2019 Ralph Boehme
+#
+
+if [ $# -lt 5 ]; then
+cat <<EOF
+Usage: $0 SERVER SMBCLIENT SMBCONTROL NET CONFIGURATION
+EOF
+exit 1;
+fi
+
+SERVER=$1
+SMBCLIENT=$2
+SMBCONTROL=$3
+NET=$4
+CONFIGURATION=$5
+
+incdir=`dirname $0`/../../../testprogs/blackbox
+. $incdir/subunit.sh
+
+failed=0
+SIDS=""
+
+prepare_empty_builtin_guests() {
+    TMP=$($NET $CONFIGURATION groupmap listmem S-1-5-32-546 2>&1)
+    bg_exists=$?
+    if [ $bg_exists != 0 ] ; then
+       printf "Group map for BUILTIN\\Guests must exist for test\n"
+       return 1
+    fi
+
+    SIDS=$($NET $CONFIGURATION groupmap listmem S-1-5-32-546)
+    if [ $? != 0 ] ; then
+       printf "$NET $CONFIGURATION groupmap listmem S-1-5-32-546 failed. Returned:\n"
+       printf "$SIDS\n"
+       return 1
+    fi
+    printf "Got S-1-5-32-546 members:\n$SIDS\n"
+
+    if [ "$SIDS" != "" ] ; then
+       for SID in $SIDS ; do
+           printf "Deleting member $SID from S-1-5-32-546\n"
+           $NET $CONFIGURATION groupmap delmem S-1-5-32-546 $SID || return 1
+       done
+    fi
+
+    return 0
+}
+
+add_local_guest_to_builtin_guests() {
+    if [ "$SIDS" != "" ] ; then
+       for SID in $SIDS ; do
+           printf "Adding $SID as member to S-1-5-32-546\n"
+           $NET $CONFIGURATION groupmap addmem S-1-5-32-546 $SID || return 1
+       done
+    fi
+}
+
+test_smbclient() {
+    $SMBCLIENT -U foo%bar //$SERVER/tmpguest -c exit
+    if [ $? != 0 ] ; then
+       printf "smbclient failed\n"
+       return 1
+    fi
+    return 0
+}
+
+testit "smbclient_guest_at_startup" \
+    test_smbclient  ||
+    failed=$(expr $failed + 1)
+
+printf "Prepare BUILTIN\\Guests group mapping without members\n"
+
+prepare_empty_builtin_guests || {
+    printf "Setting up BUILTIN\\Guests without members failed\n"
+    exit 1
+}
+
+$SMBCONTROL $CONFIGURATION smbd reload-config || {
+    printf "Reloading parent smbd guest info failed\n"
+    exit 1
+}
+
+testit "smbclient_guest_auth_without_members" \
+    test_smbclient &&
+    failed=$(expr $failed + 1)
+
+# restore config
+add_local_guest_to_builtin_guests
+
+$SMBCONTROL $CONFIGURATION smbd reload-config || {
+    printf "Reloading parent smbd guest info failed\n"
+    exit 1
+}
+
+testit "smbclient_works_after_restored_setup" \
+    test_smbclient  ||
+    failed=$(expr $failed + 1)
+
+testok $0 $failed
index e390ca390a883b441df5da61b90009e98c2e07b0..64546900d83009d5562801007c5943159a910cdf 100755 (executable)
@@ -737,3 +737,8 @@ for e in endianness_options:
 
 plansmbtorture4testsuite('rpc.epmapper', 'nt4_dc:local', 'ncalrpc: -U$USERNAME%$PASSWORD', 'over ncalrpc')
 plansmbtorture4testsuite('rpc.fsrvp', 'nt4_dc:local', 'ncacn_np:$SERVER_IP[/pipe/FssagentRpc] -U$USERNAME%$PASSWORD', 'over ncacn_np')
+
+for env in ["ad_member_idmap_rid:local", "maptoguest:local"]:
+    plantestsuite("samba3.blackbox.guest (%s)" % env , env,
+                  [os.path.join(samba3srcdir, "script/tests/test_guest_auth.sh"),
+                   '$SERVER', smbclient3, smbcontrol, net, configuration])