6 * Wireshark - Network traffic analyzer
7 * By Gerald Combs <gerald@wireshark.org>
8 * Copyright 1998 Gerald Combs
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License
12 * as published by the Free Software Foundation; either version 2
13 * of the License, or (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
42 #include <epan/address.h>
43 #include <epan/addr_resolv.h>
44 #include <epan/strutil.h>
49 * Collect command-line arguments as a string consisting of the arguments,
50 * separated by spaces.
53 get_args_as_string(int argc
, char **argv
, int optindex
)
60 * Find out how long the string will be.
63 for (i
= optindex
; i
< argc
; i
++) {
64 len
+= (int) strlen(argv
[i
]);
65 len
++; /* space, or '\0' if this is the last argument */
69 * Allocate the buffer for the string.
71 argstring
= (char *)g_malloc(len
);
74 * Now construct the string.
79 g_strlcat(argstring
, argv
[i
], len
);
83 g_strlcat(argstring
, " ", len
);
88 /* Compute the difference between two seconds/microseconds time stamps. */
90 compute_timestamp_diff(gint
*diffsec
, gint
*diffusec
,
91 guint32 sec1
, guint32 usec1
, guint32 sec2
, guint32 usec2
)
94 /* The seconds part of the first time is the same as the seconds
95 part of the second time, so if the microseconds part of the first
96 time is less than the microseconds part of the second time, the
97 first time is before the second time. The microseconds part of
98 the delta should just be the difference between the microseconds
99 part of the first time and the microseconds part of the second
100 time; don't adjust the seconds part of the delta, as it's OK if
101 the microseconds part is negative. */
103 *diffsec
= sec1
- sec2
;
104 *diffusec
= usec1
- usec2
;
105 } else if (sec1
<= sec2
) {
106 /* The seconds part of the first time is less than the seconds part
107 of the second time, so the first time is before the second time.
109 Both the "seconds" and "microseconds" value of the delta
110 should have the same sign, so if the difference between the
111 microseconds values would be *positive*, subtract 1,000,000
112 from it, and add one to the seconds value. */
113 *diffsec
= sec1
- sec2
;
114 if (usec2
>= usec1
) {
115 *diffusec
= usec1
- usec2
;
117 *diffusec
= (usec1
- 1000000) - usec2
;
121 /* Oh, good, we're not caught in a chronosynclastic infindibulum. */
122 *diffsec
= sec1
- sec2
;
123 if (usec2
<= usec1
) {
124 *diffusec
= usec1
- usec2
;
126 *diffusec
= (usec1
+ 1000000) - usec2
;
132 /* Remove any %<interface_name> from an IP address. */
133 static char *sanitize_filter_ip(char *hostname
) {
137 ret
= g_strdup(hostname
);
141 end
= strchr(ret
, '%');
147 /* Try to figure out if we're remotely connected, e.g. via ssh or
148 Terminal Server, and create a capture filter that matches aspects of the
149 connection. We match the following environment variables:
151 SSH_CONNECTION (ssh): <remote IP> <remote port> <local IP> <local port>
152 SSH_CLIENT (ssh): <remote IP> <remote port> <local port>
153 REMOTEHOST (tcsh, others?): <remote name>
154 DISPLAY (x11): [remote name]:<display num>
155 SESSIONNAME (terminal server): <remote name>
158 const gchar
*get_conn_cfilter(void) {
159 static GString
*filter_str
= NULL
;
160 gchar
*env
, **tokens
;
161 char *lastp
, *lastc
, *p
;
162 char *pprotocol
= NULL
;
163 char *phostname
= NULL
;
167 if (filter_str
== NULL
) {
168 filter_str
= g_string_new("");
170 if ((env
= getenv("SSH_CONNECTION")) != NULL
) {
171 tokens
= g_strsplit(env
, " ", 4);
173 remip
= sanitize_filter_ip(tokens
[0]);
174 locip
= sanitize_filter_ip(tokens
[2]);
175 g_string_printf(filter_str
, "not (tcp port %s and %s host %s "
176 "and tcp port %s and %s host %s)", tokens
[1], host_ip_af(remip
), remip
,
177 tokens
[3], host_ip_af(locip
), locip
);
180 return filter_str
->str
;
182 } else if ((env
= getenv("SSH_CLIENT")) != NULL
) {
183 tokens
= g_strsplit(env
, " ", 3);
184 remip
= sanitize_filter_ip(tokens
[2]);
185 g_string_printf(filter_str
, "not (tcp port %s and %s host %s "
186 "and tcp port %s)", tokens
[1], host_ip_af(remip
), tokens
[0], remip
);
188 return filter_str
->str
;
189 } else if ((env
= getenv("REMOTEHOST")) != NULL
) {
190 /* FreeBSD 7.0 sets REMOTEHOST to an empty string */
191 if (g_ascii_strcasecmp(env
, "localhost") == 0 ||
192 strcmp(env
, "127.0.0.1") == 0 ||
193 strcmp(env
, "") == 0) {
196 remip
= sanitize_filter_ip(env
);
197 g_string_printf(filter_str
, "not %s host %s", host_ip_af(remip
), remip
);
199 return filter_str
->str
;
200 } else if ((env
= getenv("DISPLAY")) != NULL
) {
202 * This mirrors what _X11TransConnectDisplay() does.
203 * Note that, on some systems, the hostname can
204 * begin with "/", which means that it's a pathname
205 * of a UNIX domain socket to connect to.
207 * The comments mirror those in _X11TransConnectDisplay(),
210 * Display names may be of the following format:
212 * [protoco./] [hostname] : [:] displaynumber [.screennumber]
214 * A string with exactly two colons separating hostname
215 * from the display indicates a DECnet style name. Colons
216 * in the hostname may occur if an IPv6 numeric address
217 * is used as the hostname. An IPv6 numeric address may
218 * also end in a double colon, so three colons in a row
219 * indicates an IPv6 address ending in :: followed by
220 * :display. To make it easier for people to read, an
221 * IPv6 numeric address hostname may be surrounded by []
222 * in a similar fashion to the IPv6 numeric address URL
223 * syntax defined by IETF RFC 2732.
225 * If no hostname and no protocol is specified, the string
226 * is interpreted as the most efficient local connection
227 * to a server on the same machine. This is usually:
231 * o UNIX domain socket
232 * o TCP to local host.
238 * Step 0, find the protocol. This is delimited by
239 * the optional slash ('/').
241 for (lastp
= p
; *p
!= '\0' && *p
!= ':' && *p
!= '/'; p
++)
244 return ""; /* must have a colon */
246 if (p
!= lastp
&& *p
!= ':') { /* protocol given? */
251 if (p
- lastp
!= 3 || g_ascii_strncasecmp(lastp
, "tcp", 3) != 0)
252 return ""; /* not TCP */
253 p
++; /* skip the '/' */
255 p
= env
; /* reset the pointer in
256 case no protocol was given */
259 * Step 1, find the hostname. This is delimited either by
260 * one colon, or two colons in the case of DECnet (DECnet
261 * Phase V allows a single colon in the hostname). (See
262 * note above regarding IPv6 numeric addresses with
263 * triple colons or [] brackets.)
267 for (; *p
!= '\0'; p
++)
272 return ""; /* must have a colon */
274 if ((lastp
!= lastc
) && (*(lastc
- 1) == ':')
275 && (((lastc
- 1) == lastp
) || (*(lastc
- 2) != ':'))) {
276 /* DECnet display specified */
279 hostlen
= lastc
- lastp
;
282 return ""; /* no hostname supplied */
284 phostname
= (char *)g_malloc(hostlen
+ 1);
285 memcpy(phostname
, lastp
, hostlen
);
286 phostname
[hostlen
] = '\0';
288 if (pprotocol
== NULL
) {
290 * No protocol was explicitly specified, so it
291 * could be a local connection over a transport
294 * Does the host name refer to the local host?
295 * If so, the connection would probably be a
298 * XXX - compare against our host name?
299 * _X11TransConnectDisplay() does.
301 if (g_ascii_strcasecmp(phostname
, "localhost") == 0 ||
302 strcmp(phostname
, "127.0.0.1") == 0) {
308 * A host name of "unix" (case-sensitive) also
309 * causes a local connection.
311 if (strcmp(phostname
, "unix") == 0) {
317 * Does the host name begin with "/"? If so,
318 * it's presumed to be the pathname of a
319 * UNIX domain socket.
321 if (phostname
[0] == '/') {
327 g_string_printf(filter_str
, "not %s host %s",
328 host_ip_af(phostname
), phostname
);
330 return filter_str
->str
;
332 } else if (GetSystemMetrics(SM_REMOTESESSION
)) {
333 /* We have a remote session: http://msdn.microsoft.com/en-us/library/aa380798%28VS.85%29.aspx */
334 g_string_printf(filter_str
, "not tcp port 3389");
335 return filter_str
->str
;
347 * indent-tabs-mode: nil
350 * ex: set shiftwidth=4 tabstop=8 expandtab:
351 * :indentSize=4:tabSize=8:noTabs=true: