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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
|
#!/usr/bin/ksh
#
# connections - print inbound TCP connections by process.
# Written in DTrace (Solaris 10 3/05).
#
# This displays the PID and command name of the processes accepting
# connections, along with the source IP address and destination port number.
#
# $Id: connections 3 2007-08-01 10:50:08Z brendan $
#
# USAGE: connections [-htvZ]
#
# -t # print timestamps, us
# -v # print timestamps, string
# -Z # print zonename
# eg,
# connections -v # snoop connections with times
#
# FIELDS:
# UID user ID of the server
# PID process ID for the server
# CMD server command name
# TIME timestamp, us
# TIMESTR timestamp, string
# PORT server port
# IP_SOURCE source IP of the client, written in IPv4 style
# ZONE zonename
#
# SEE ALSO: snoop 'tcp[13:1] = 0x02' # snoop new connections
#
# COPYRIGHT: Copyright (c) 2005 Brendan Gregg.
#
# CDDL HEADER START
#
# The contents of this file are subject to the terms of the
# Common Development and Distribution License, Version 1.0 only
# (the "License"). You may not use this file except in compliance
# with the License.
#
# You can obtain a copy of the license at Docs/cddl1.txt
# or http://www.opensolaris.org/os/licensing.
# See the License for the specific language governing permissions
# and limitations under the License.
#
# CDDL HEADER END
#
# TODO: IPv6
#
# 10-Apr-2004 Brendan Gregg Created this.
# 23-May-2004 " " Fixed issues on SPARC.
# 08-May-2005 " " Updated for newer Solaris 10.
# 17-Jun-2005 " " Rewrote, changed probes, wrapped in sh.
# 04-Dec-2005 " " Changed tcp_accept_finish -> sotpi_accept
# 20-Apr-2006 " " Fixed SS_TCP_FAST_ACCEPT bug in build 31+.
# 20-Apr-2006 " " Last update.
#
##############################
# --- Process Arguments ---
#
### Default variables
opt_time=0; opt_timestr=0; opt_zone=0
### Process options
while getopts htvZ name
do
case $name in
t) opt_time=1 ;;
v) opt_timestr=1 ;;
Z) opt_zone=1 ;;
h|?) cat <<-END >&2
USAGE: connections [-htvZ]
-t # print timestamps, us
-v # print timestamps, string
-Z # print zonename
eg,
connections -v # snoop connections with times
END
exit 1
esac
done
#################################
# --- Main Program, DTrace ---
#
/usr/sbin/dtrace -C -s <( print -r '
#include <sys/file.h>
#include <sys/types.h>
#include <sys/byteorder.h>
#include <sys/socket.h>
#include <sys/socketvar.h>
#pragma D option quiet
#pragma D option switchrate=10hz
inline int OPT_time = '$opt_time';
inline int OPT_timestr = '$opt_timestr';
inline int OPT_zone = '$opt_zone';
/*
* Print header
*/
dtrace:::BEGIN
{
/* print optional headers */
OPT_time ? printf("%-14s ", "TIME") : 1;
OPT_timestr ? printf("%-20s ", "TIMESTR") : 1;
OPT_zone ? printf("%-10s ", "ZONE") : 1;
/* print header */
printf("%5s %5s %-12s %4s %5s %s\n",
"UID", "PID", "CMD", "TYPE", "PORT", "IP_SOURCE");
}
/*
* TCP Process inbound connections
*
* 0x00200000 has been hardcoded. It was SS_TCP_FAST_ACCEPT, but was
* renamed to SS_DIRECT around build 31.
*/
fbt:sockfs:sotpi_accept:entry
/(arg1 & FREAD) && (arg1 & FWRITE) && (args[0]->so_state & 0x00200000)/
{
self->sop = args[0];
}
fbt:sockfs:sotpi_create:return
/self->sop/
{
self->nsop = (struct sonode *)arg1;
}
/*
* Probe TCP connections
*/
fbt:sockfs:sotpi_accept:return
/self->nsop/
{
/* fetch connection details */
this->tcpp = (tcp_t *)self->nsop->so_priv;
this->connp = (conn_t *)this->tcpp->tcp_connp;
#if defined(_BIG_ENDIAN)
this->port0 = this->connp->u_port.tcpu_ports.tcpu_lport;
#else
this->port0 = BSWAP_16(this->connp->u_port.tcpu_ports.tcpu_lport);
#endif
this->rem12 =
(uint8_t)this->connp->connua_v6addr.connua_faddr._S6_un._S6_u8[12];
this->rem13 =
(uint8_t)this->connp->connua_v6addr.connua_faddr._S6_un._S6_u8[13];
this->rem14 =
(uint8_t)this->connp->connua_v6addr.connua_faddr._S6_un._S6_u8[14];
this->rem15 =
(uint8_t)this->connp->connua_v6addr.connua_faddr._S6_un._S6_u8[15];
/* print optional fields */
OPT_time ? printf("%-14d ", timestamp/1000) : 1;
OPT_timestr ? printf("%-20Y ", walltimestamp) : 1;
OPT_zone ? printf("%-10s ", zonename) : 1;
/* print output line */
printf("%5d %5d %-12s %4s %5d %d.%d.%d.%d\n",
uid, pid, execname, "tcp", this->port0,
this->rem12, this->rem13, this->rem14, this->rem15);
}
fbt:sockfs:sotpi_accept:return
{
self->nsop = 0;
self->sop = 0;
}
')
|