summaryrefslogtreecommitdiffstats
path: root/source3/script/tests/test_fifo.sh
blob: 199b0b495e9e662a555178ea69381c7d4e6caea2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
#!/bin/sh
#
# Check smbclient can list a directory containing a fifo.
#

if [ $# -lt 7 ]; then
	cat <<EOF
Usage: $0 SERVER DOMAIN USERNAME PASSWORD PREFIX TARGET_ENV SMBCLIENT
EOF
	exit 1
fi

SERVER=${1}
DOMAIN=${2}
USERNAME=${3}
PASSWORD=${4}
PREFIX=${5}
TARGET_ENV=${6}
SMBCLIENT=${7}
shift 7
SMBCLIENT="$VALGRIND ${SMBCLIENT}"
ADDARGS="$@"

incdir=$(dirname $0)/../../../testprogs/blackbox
. $incdir/subunit.sh

failed=0

# Test that listing a share with a directory containing a fifo succeeds.
#
# BUG: https://bugzilla.samba.org/show_bug.cgi?id=14816
#
test_fifo()
{
	local fifo_dir_path="$PREFIX/$TARGET_ENV/share/fifodir"
	local fifo_path="$fifo_dir_path/fifo_name"

	local tmpfile=$PREFIX/smbclient.in.$$

	cat >$tmpfile <<EOF
cd fifodir
ls
quit
EOF

	# Create fifo directory.
	mkdir -p $fifo_dir_path
	# Create fifo underneath.
	mkfifo $fifo_path

	local cmd='CLI_FORCE_INTERACTIVE=yes $SMBCLIENT //$SERVER/$1 -U$USERNAME%$PASSWORD $ADDARGS < $tmpfile 2>&1'
	eval echo "$cmd"
	out=$(eval $cmd)
	ret=$?

	# Remove fifo and containing dir.
	rm $fifo_path
	rmdir $fifo_dir_path
	rm -f $tmpfile

	# Check for smbclient error.
	if [ $ret != 0 ]; then
		echo "Failed accessing share containing dir with fifo $ret"
		echo "$out"
		return 1
	fi

	# Check for smbclient timeout (server hung).
	echo "$out" | grep 'NT_STATUS_'
	ret=$?
	if [ $ret -eq 0 ]; then
		# Client was disconnected as server timed out.
		echo "$out"
		return 1
	fi

	return 0
}

testit "list directory containing a fifo" \
	test_fifo tmp || failed=$(expr $failed + 1)

exit $failed