mirror of
https://github.com/samba-team/samba.git
synced 2024-12-27 03:21:53 +03:00
d4b72821dc
Signed-off-by: Björn Baumbach <bb@samba.org> Reviewed-by: Stefan Metzmacher <metze@samba.org> Autobuild-User(master): Björn Baumbach <bb@sernet.de> Autobuild-Date(master): Tue Jun 18 16:54:22 UTC 2019 on sn-devel-184
135 lines
4.0 KiB
Bash
Executable File
135 lines
4.0 KiB
Bash
Executable File
#!/bin/sh
|
|
# Blackbox tests for samba-tool ntacl get/set on member server
|
|
# Copyright (C) 2018 Björn Baumbach <bb@sernet.de>
|
|
|
|
if [ $# -lt 1 ]; then
|
|
cat <<EOF
|
|
Usage: test_net_ads_dns.sh PREFIX
|
|
EOF
|
|
exit 1;
|
|
fi
|
|
|
|
PREFIX=$1
|
|
domain_sid=$2
|
|
|
|
failed=0
|
|
|
|
samba4bindir="$BINDIR"
|
|
samba_tool="$samba4bindir/samba-tool"
|
|
|
|
testfile="$PREFIX/ntacl_testfile"
|
|
|
|
# acl from samba_tool/ntacl.py tests
|
|
acl="O:DAG:DUD:P(A;OICI;0x001f01ff;;;DA)(A;OICI;0x001f01ff;;;EA)(A;OICIIO;0x001f01ff;;;CO)(A;OICI;0x001f01ff;;;DA)(A;OICI;0x001f01ff;;;SY)(A;OICI;0x001200a9;;;AU)(A;OICI;0x001200a9;;;ED)S:AI(OU;CIIDSA;WP;f30e3bbe-9ff0-11d1-b603-0000f80367c1;bf967aa5-0de6-11d0-a285-00aa003049e2;WD)(OU;CIIDSA;WP;f30e3bbf-9ff0-11d1-b603-0000f80367c1;bf967aa5-0de6-11d0-a285-00aa003049e2;WD)"
|
|
new_acl="O:S-1-5-21-2212615479-2695158682-2101375468-512G:S-1-5-21-2212615479-2695158682-2101375468-513D:P(A;OICI;0x001f01ff;;;S-1-5-21-2212615479-2695158682-2101375468-512)(A;OICI;0x001f01ff;;;S-1-5-21-2212615479-2695158682-2101375468-519)(A;OICIIO;0x001f01ff;;;CO)(A;OICI;0x001f01ff;;;S-1-5-21-2212615479-2695158682-2101375468-512)(A;OICI;0x001f01ff;;;SY)(A;OICI;0x001200a9;;;AU)(A;OICI;0x001200a9;;;ED)S:AI(OU;CIIDSA;WP;f30e3bbe-9ff0-11d1-b603-0000f80367c1;bf967aa5-0de6-11d0-a285-00aa003049e2;WD)(OU;CIIDSA;WP;f30e3bbf-9ff0-11d1-b603-0000f80367c1;bf967aa5-0de6-11d0-a285-00aa003049e2;WD)"
|
|
new_domain_sid="S-1-5-21-2212615479-2695158682-2101375468"
|
|
|
|
. `dirname $0`/subunit.sh
|
|
|
|
UID_WRAPPER_ROOT=1
|
|
export UID_WRAPPER_ROOT
|
|
|
|
test_get_acl()
|
|
{
|
|
testfile="$1"
|
|
exptextedacl="$2"
|
|
|
|
retacl=$($PYTHON $samba_tool ntacl get "$testfile" --as-sddl) || return $?
|
|
|
|
test "$retacl" = "$exptextedacl"
|
|
}
|
|
|
|
test_set_acl()
|
|
{
|
|
testfile="$1"
|
|
acl="$2"
|
|
|
|
$PYTHON $samba_tool ntacl set "$acl" "$testfile"
|
|
}
|
|
|
|
test_get_acl_ntvfs()
|
|
{
|
|
testfile="$1"
|
|
exptextedacl="$2"
|
|
|
|
retacl=$($PYTHON $samba_tool ntacl get "$testfile" --as-sddl --use-ntvfs --xattr-backend=tdb -s $PREFIX/ad_member/lib/server.conf) || return $?
|
|
|
|
test "$retacl" = "$exptextedacl"
|
|
}
|
|
|
|
test_set_acl_ntvfs()
|
|
{
|
|
testfile="$1"
|
|
acl="$2"
|
|
|
|
$PYTHON $samba_tool ntacl set "$acl" "$testfile" --use-ntvfs --xattr-backend=tdb -s $PREFIX/ad_member/lib/server.conf
|
|
}
|
|
|
|
test_changedomsid()
|
|
{
|
|
testfile="$1"
|
|
|
|
$PYTHON $samba_tool ntacl changedomsid \
|
|
"$domain_sid" "$new_domain_sid" "$testfile" \
|
|
--service=tmp \
|
|
-s $PREFIX/ad_member/lib/server.conf
|
|
|
|
retacl=$($PYTHON $samba_tool ntacl get \
|
|
"$testfile" \
|
|
--as-sddl \
|
|
--service=tmp \
|
|
-s $PREFIX/ad_member/lib/server.conf) || return $?
|
|
|
|
test "$retacl" = "$new_acl"
|
|
}
|
|
|
|
test_changedomsid_ntvfs()
|
|
{
|
|
testfile="$1"
|
|
|
|
$PYTHON $samba_tool ntacl changedomsid \
|
|
"$domain_sid" "$new_domain_sid" "$testfile" \
|
|
--use-ntvfs \
|
|
--xattr-backend=tdb \
|
|
-s $PREFIX/ad_member/lib/server.conf
|
|
|
|
retacl=$($PYTHON $samba_tool ntacl get \
|
|
"$testfile" \
|
|
--as-sddl \
|
|
--xattr-backend=tdb \
|
|
--use-ntvfs \
|
|
-s $PREFIX/ad_member/lib/server.conf) || return $?
|
|
|
|
test "$retacl" = "$new_acl"
|
|
}
|
|
|
|
# work around include error - s4-loadparm does not allow missing include files
|
|
#
|
|
# Unable to load file /home/bbaumba/src/git/samba/st/ad_member/lib/server.conf
|
|
# File "bin/python/samba/netcmd/__init__.py", line 183, in _run
|
|
# return self.run(*args, **kwargs)
|
|
# File "bin/python/samba/netcmd/ntacl.py", line 175, in run
|
|
# lp = sambaopts.get_loadparm()
|
|
# File "bin/python/samba/getopt.py", line 92, in get_loadparm
|
|
# self._lp.load(os.getenv("SMB_CONF_PATH"))
|
|
# Processing section "[global]"
|
|
touch "$(dirname $SMB_CONF_PATH)/error_inject.conf"
|
|
touch "$(dirname $SMB_CONF_PATH)/delay_inject.conf"
|
|
|
|
touch "$testfile"
|
|
|
|
testit "set_ntacl" test_set_acl "$testfile" "$acl" || failed=`expr $failed + 1`
|
|
|
|
testit "get_ntacl" test_get_acl "$testfile" "$acl" || failed=`expr $failed + 1`
|
|
|
|
testit "changedomsid" test_changedomsid "$testfile" || failed=`expr $failed + 1`
|
|
|
|
testit "set_ntacl_ntvfs" test_set_acl_ntvfs "$testfile" "$acl" || failed=`expr $failed + 1`
|
|
testit "get_ntacl_ntvfs" test_get_acl_ntvfs "$testfile" "$acl" || failed=`expr $failed + 1`
|
|
|
|
testit "changedomsid_ntvfs" test_changedomsid_ntvfs "$testfile" || failed=`expr $failed + 1`
|
|
|
|
rm -f "$testfile"
|
|
|
|
exit $failed
|