dmake: do not set MAKEFLAGS=k
[unleashed/tickless.git] / usr / src / cmd / dtrace / test / tst / common / mib / tst.tcp.ksh
blobee602e86112caa4062bd080e836efbfa6ea7486f
2 # CDDL HEADER START
4 # The contents of this file are subject to the terms of the
5 # Common Development and Distribution License (the "License").
6 # You may not use this file except in compliance with the License.
8 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 # or http://www.opensolaris.org/os/licensing.
10 # See the License for the specific language governing permissions
11 # and limitations under the License.
13 # When distributing Covered Code, include this CDDL HEADER in each
14 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 # If applicable, add the following below this CDDL HEADER, with the
16 # fields enclosed by brackets "[]" replaced with your own identifying
17 # information: Portions Copyright [yyyy] [name of copyright owner]
19 # CDDL HEADER END
23 # Copyright 2007 Sun Microsystems, Inc. All rights reserved.
24 # Use is subject to license terms.
26 # ident "%Z%%M% %I% %E% SMI"
29 # This script tests that several of the the mib:::tcp* probes fire and fire
30 # with a valid args[0].
33 if [ $# != 1 ]; then
34 echo expected one argument: '<'dtrace-path'>'
35 exit 2
38 dtrace=$1
39 dtraceout=/tmp/dtrace.out.$$
40 timeout=15
41 port=2000
43 if [ -f $dtraceout ]; then
44 rm -f $dtraceout
47 script()
49 $dtrace -o $dtraceout -s /dev/stdin <<EOF
50 mib:::tcpActiveOpens
52 opens = args[0];
55 mib:::tcpOutDataBytes
57 bytes = args[0];
60 mib:::tcpOutDataSegs
62 segs = args[0];
65 profile:::tick-10msec
66 /opens && bytes && segs/
68 exit(0);
71 profile:::tick-1s
72 /n++ >= 10/
74 exit(1);
76 EOF
79 server()
81 perl /dev/stdin /dev/stdout << EOF
82 use strict;
83 use Socket;
85 socket(S, AF_INET, SOCK_STREAM, getprotobyname('tcp'))
86 or die "socket() failed: \$!";
88 setsockopt(S, SOL_SOCKET, SO_REUSEADDR, 1)
89 or die "setsockopt() failed: \$!";
91 my \$addr = sockaddr_in($port, INADDR_ANY);
92 bind(S, \$addr) or die "bind() failed: \$!";
93 listen(S, SOMAXCONN) or die "listen() failed: \$!";
95 while (1) {
96 next unless my \$raddr = accept(SESSION, S);
98 while (<SESSION>) {
101 close SESSION;
106 client()
108 perl /dev/stdin /dev/stdout <<EOF
109 use strict;
110 use Socket;
112 my \$peer = sockaddr_in($port, INADDR_ANY);
114 socket(S, AF_INET, SOCK_STREAM, getprotobyname('tcp'))
115 or die "socket() failed: \$!";
117 connect(S, \$peer) or die "connect failed: \$!";
119 for (my \$i = 0; \$i < 10; \$i++) {
120 send(S, "There!", 0) or die "send() failed: \$!";
121 sleep (1);
126 script &
127 dtrace_pid=$!
130 # Sleep while the above script fires into life. To guard against dtrace dying
131 # and us sleeping forever we allow 15 secs for this to happen. This should be
132 # enough for even the slowest systems.
134 while [ ! -f $dtraceout ]; do
135 sleep 1
136 timeout=$(($timeout-1))
137 if [ $timeout -eq 0 ]; then
138 echo "dtrace failed to start. Exiting."
139 exit 1
141 done
143 server &
144 server_pid=$!
145 sleep 2
146 client &
147 client_pid=$!
149 wait $dtrace_pid
150 status=$?
152 kill $server_pid
153 kill $client_pid
155 exit $status