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]
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].
34 echo expected one argument
: '<'dtrace-path
'>'
39 dtraceout
=/tmp
/dtrace.out.$$
43 if [ -f $dtraceout ]; then
49 $dtrace -o $dtraceout -s /dev
/stdin
<<EOF
66 /opens && bytes && segs/
81 perl
/dev
/stdin
/dev
/stdout
<< EOF
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: \$!";
96 next unless my \$raddr = accept(SESSION, S);
108 perl
/dev
/stdin
/dev
/stdout
<<EOF
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: \$!";
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
136 timeout
=$
(($timeout-1))
137 if [ $timeout -eq 0 ]; then
138 echo "dtrace failed to start. Exiting."