summaryrefslogtreecommitdiffstats
path: root/tests/ts/lsfd/mkfds-socketpair
blob: 3ef60c79e45b2ac2fb0e5deafc05249060cc950d (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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
#!/bin/bash
#
# Copyright (C) 2021 Masatake YAMATO <yamato@redhat.com>
#
# This file is part of util-linux.
#
# This file is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This file is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
TS_TOPDIR="${0%/*}/../.."
TS_DESC="AF_UNIX socket pair created with socketpair(2)"

. "$TS_TOPDIR"/functions.sh
ts_init "$*"

. "$TS_SELF/lsfd-functions.bash"
ts_check_test_command "$TS_CMD_LSFD"

ts_check_test_command "$TS_HELPER_MKFDS"

ts_check_prog "sed"

ts_cd "$TS_OUTDIR"

lsfd_check_sockdiag "unix"

PID=
FD0=3
FD1=4
EXPR=

ts_init_subtest "DGRAM"
{
    coproc MKFDS { "$TS_HELPER_MKFDS" socketpair $FD0 $FD1 socktype=DGRAM; }
    if read -u ${MKFDS[0]} PID; then
	EXPR='(PID == '"${PID}"') and ((FD == '"$FD0"') or (FD == '"$FD1"'))'
	${TS_CMD_LSFD} -n -o ASSOC,MODE,STTYPE,SOURCE,SOCK.PROTONAME -Q "${EXPR}" | sed -e 's/UNIX-DGRAM/UNIX/'
	echo 'ASSOC,MODE,STTYPE,SOURCE,SOCK.PROTONAME': ${PIPESTATUS[0]}

	echo DONE >&"${MKFDS[1]}"
    fi
} > "$TS_OUTPUT" 2>&1

wait ${MKFDS_PID}
ts_finalize_subtest

ts_init_subtest "STREAM"
{
    coproc MKFDS { "$TS_HELPER_MKFDS" socketpair $FD0 $FD1 socktype=STREAM; }
    if read -u ${MKFDS[0]} PID; then
	EXPR='(PID == '"${PID}"') and ((FD == '"$FD0"') or (FD == '"$FD1"'))'
	${TS_CMD_LSFD} -n -o ASSOC,MODE,STTYPE,SOURCE,SOCK.PROTONAME -Q "${EXPR}" | sed -e 's/UNIX-STREAM/UNIX/'
	echo 'ASSOC,MODE,STTYPE,SOURCE,SOCK.PROTONAME': ${PIPESTATUS[0]}

	echo DONE >&"${MKFDS[1]}"
    fi
} > "$TS_OUTPUT" 2>&1

wait ${MKFDS_PID}
ts_finalize_subtest

mkfds_socketpair_stream_endpoint()
{
    ts_init_subtest "STREAM-ENDPOINT"
    if [ "$QEMU_USER" == "1" ]; then
	ts_skip_subtest "running under qemu-user emulation"
	return
    fi
    {
	coproc MKFDS { "$TS_HELPER_MKFDS" socketpair $FD0 $FD1 socktype=STREAM; }
	if read -u ${MKFDS[0]} PID; then
	    EXPR='(FD == '"$FD0"') or (FD == '"$FD1"')'
	    ${TS_CMD_LSFD} -p "${PID}" -n -o ASSOC,MODE,STTYPE,SOURCE,ENDPOINTS -Q "${EXPR}" | sed -e "s/${PID}/1/g"
	    echo 'ASSOC,MODE,STTYPE,SOURCE,ENDPOINTS': ${PIPESTATUS[0]}

	    echo DONE >&"${MKFDS[1]}"
	fi
    } > "$TS_OUTPUT" 2>&1

    wait ${MKFDS_PID}
    ts_finalize_subtest
}

mkfds_socketpair_stream_shutdown_state()
{
    ts_init_subtest "STREAM-SHUTDOWN-STATE"
    if [ "$QEMU_USER" == "1" ]; then
	ts_skip_subtest "running under qemu-user emulation"
	return
    fi
    {
	coproc MKFDS { "$TS_HELPER_MKFDS" socketpair $FD0 $FD1 socktype=STREAM halfclose=1; }
	if read -u ${MKFDS[0]} PID; then
	    EXPR='(FD == '"$FD0"') or (FD == '"$FD1"')'
	    ${TS_CMD_LSFD} -p "${PID}" -n -o ASSOC,MODE,STTYPE,SOURCE,SOCK.SHUTDOWN -Q "${EXPR}"
	    echo 'ASSOC,MODE,STTYPE,SOURCE,SOCK.SHUTDOWN': ${PIPESTATUS[0]}

	    echo DONE >&"${MKFDS[1]}"
	fi
    } > "$TS_OUTPUT" 2>&1

    wait ${MKFDS_PID}
    ts_finalize_subtest
}

mkfds_socketpair_stream_endpoint_halfclose()
{
    ts_init_subtest "STREAM-ENDPOINT-halfclose"
    if [ "$QEMU_USER" == "1" ]; then
	ts_skip_subtest "running under qemu-user emulation"
	return
    fi
    {
	coproc MKFDS { "$TS_HELPER_MKFDS" socketpair $FD0 $FD1 socktype=STREAM halfclose=1; }
	if read -u ${MKFDS[0]} PID; then
	    EXPR='(FD == '"$FD0"') or (FD == '"$FD1"')'
	    ${TS_CMD_LSFD} -p "${PID}" -n -o ASSOC,MODE,STTYPE,SOURCE,ENDPOINTS -Q "${EXPR}" | sed -e "s/${PID}/1/g"
	    echo 'ASSOC,MODE,STTYPE,SOURCE,ENDPOINTS': ${PIPESTATUS[0]}

	    echo DONE >&"${MKFDS[1]}"
	fi
    } > "$TS_OUTPUT" 2>&1

    wait ${MKFDS_PID}
    ts_finalize_subtest
}

mkfds_socketpair_stream_endpoint
mkfds_socketpair_stream_shutdown_state
mkfds_socketpair_stream_endpoint_halfclose

ts_finalize