Adds Payload AVP to PduDef AVPLs simmetric to the Transport AVP
[obnox/wireshark/wip.git] / pcap-util-unix.c
1 /* pcap-util-unix.c
2  * UN*X-specific utility routines for packet capture
3  *
4  * $Id$
5  *
6  * Ethereal - Network traffic analyzer
7  * By Gerald Combs <gerald@ethereal.com>
8  * Copyright 1998 Gerald Combs
9  *
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.
14  *
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.
19  *
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., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
23  */
24
25 #ifdef HAVE_CONFIG_H
26 # include "config.h"
27 #endif
28
29 #include <glib.h>
30
31 #ifdef HAVE_LIBPCAP
32
33 #include <stdlib.h>
34 #include <string.h>
35 #include <stdio.h>
36 #include <errno.h>
37
38 #ifdef HAVE_UNISTD_H
39 #include <unistd.h>
40 #endif
41
42 #ifdef HAVE_SYS_SOCKET_H
43 #include <sys/socket.h>
44 #endif
45
46 #ifdef HAVE_SYS_IOCTL_H
47 #include <sys/ioctl.h>
48 #endif
49
50 #include <pcap.h>
51
52 /*
53  * Keep Digital UNIX happy when including <net/if.h>.
54  */
55 struct mbuf;
56 struct rtentry;
57 #include <net/if.h>
58
59 #ifdef HAVE_SYS_SOCKIO_H
60 # include <sys/sockio.h>
61 #endif
62
63 #include "pcap-util.h"
64 #include "pcap-util-int.h"
65
66 #ifndef HAVE_PCAP_FINDALLDEVS
67 struct search_user_data {
68         char    *name;
69         if_info_t *if_info;
70 };
71
72 static void
73 search_for_if_cb(gpointer data, gpointer user_data);
74 #endif
75
76 GList *
77 get_interface_list(int *err, char *err_str)
78 {
79 #ifdef HAVE_PCAP_FINDALLDEVS
80         return get_interface_list_findalldevs(err, err_str);
81 #else
82         GList  *il = NULL;
83         gint    nonloopback_pos = 0;
84         struct  ifreq *ifr, *last;
85         struct  ifconf ifc;
86         struct  ifreq ifrflags;
87         int     sock = socket(AF_INET, SOCK_DGRAM, 0);
88         struct search_user_data user_data;
89         pcap_t *pch;
90         int len, lastlen;
91         char *buf;
92         if_info_t *if_info;
93
94         if (sock < 0) {
95                 *err = CANT_GET_INTERFACE_LIST;
96                 sprintf(err_str, "Error opening socket: %s",
97                     strerror(errno));
98                 return NULL;
99         }
100
101         /*
102          * This code came from: W. Richard Stevens: "UNIX Network Programming",
103          * Networking APIs: Sockets and XTI, Vol 1, page 434.
104          */
105         lastlen = 0;
106         len = 100 * sizeof(struct ifreq);
107         for ( ; ; ) {
108                 buf = g_malloc(len);
109                 ifc.ifc_len = len;
110                 ifc.ifc_buf = buf;
111                 memset (buf, 0, len);
112                 if (ioctl(sock, SIOCGIFCONF, &ifc) < 0) {
113                         if (errno != EINVAL || lastlen != 0) {
114                                 sprintf(err_str,
115                                         "SIOCGIFCONF ioctl error getting list of interfaces: %s",
116                                         strerror(errno));
117                                 goto fail;
118                         }
119                 } else {
120                         if ((unsigned) ifc.ifc_len < sizeof(struct ifreq)) {
121                                 sprintf(err_str,
122                                         "SIOCGIFCONF ioctl gave too small return buffer");
123                                 goto fail;
124                         }
125                         if (ifc.ifc_len == lastlen)
126                                 break;                  /* success, len has not changed */
127                         lastlen = ifc.ifc_len;
128                 }
129                 len += 10 * sizeof(struct ifreq);       /* increment */
130                 g_free(buf);
131         }
132         ifr = (struct ifreq *) ifc.ifc_req;
133         last = (struct ifreq *) ((char *) ifr + ifc.ifc_len);
134         while (ifr < last) {
135                 /*
136                  * Skip entries that begin with "dummy", or that include
137                  * a ":" (the latter are Solaris virtuals).
138                  */
139                 if (strncmp(ifr->ifr_name, "dummy", 5) == 0 ||
140                     strchr(ifr->ifr_name, ':') != NULL)
141                         goto next;
142
143                 /*
144                  * If we already have this interface name on the list,
145                  * don't add it, but, if we don't already have an IP
146                  * address for it, add that address (SIOCGIFCONF returns,
147                  * at least on BSD-flavored systems, one entry per
148                  * interface *address*; if an interface has multiple
149                  * addresses, we get multiple entries for it).
150                  */
151                 user_data.name = ifr->ifr_name;
152                 user_data.if_info = NULL;
153                 g_list_foreach(il, search_for_if_cb, &user_data);
154                 if (user_data.if_info != NULL) {
155                         if_info_add_address(user_data.if_info, &ifr->ifr_addr);
156                         goto next;
157                 }
158
159                 /*
160                  * Get the interface flags.
161                  */
162                 memset(&ifrflags, 0, sizeof ifrflags);
163                 strncpy(ifrflags.ifr_name, ifr->ifr_name,
164                     sizeof ifrflags.ifr_name);
165                 if (ioctl(sock, SIOCGIFFLAGS, (char *)&ifrflags) < 0) {
166                         if (errno == ENXIO)
167                                 goto next;
168                         sprintf(err_str, "SIOCGIFFLAGS error getting flags for interface %s: %s",
169                             ifr->ifr_name, strerror(errno));
170                         goto fail;
171                 }
172
173                 /*
174                  * Skip interfaces that aren't up.
175                  */
176                 if (!(ifrflags.ifr_flags & IFF_UP))
177                         goto next;
178
179                 /*
180                  * Skip interfaces that we can't open with "libpcap".
181                  * Open with the minimum packet size - it appears that the
182                  * IRIX SIOCSNOOPLEN "ioctl" may fail if the capture length
183                  * supplied is too large, rather than just truncating it.
184                  */
185                 pch = pcap_open_live(ifr->ifr_name, MIN_PACKET_SIZE, 0, 0,
186                     err_str);
187                 if (pch == NULL)
188                         goto next;
189                 pcap_close(pch);
190
191                 /*
192                  * If it's a loopback interface, add it at the end of the
193                  * list, otherwise add it after the last non-loopback
194                  * interface, so all loopback interfaces go at the end - we
195                  * don't want a loopback interface to be the default capture
196                  * device unless there are no non-loopback devices.
197                  */
198                 if_info = if_info_new(ifr->ifr_name, NULL);
199                 if_info_add_address(if_info, &ifr->ifr_addr);
200                 if ((ifrflags.ifr_flags & IFF_LOOPBACK) ||
201                     strncmp(ifr->ifr_name, "lo", 2) == 0) {
202                         if_info->loopback = TRUE;
203                         il = g_list_append(il, if_info);
204                 } else {
205                         if_info->loopback = FALSE;
206                         il = g_list_insert(il, if_info, nonloopback_pos);
207                         /*
208                          * Insert the next non-loopback interface after this
209                          * one.
210                          */
211                         nonloopback_pos++;
212                 }
213
214         next:
215 #ifdef HAVE_SA_LEN
216                 ifr = (struct ifreq *) ((char *) ifr +
217                     (ifr->ifr_addr.sa_len > sizeof(ifr->ifr_addr) ?
218                         ifr->ifr_addr.sa_len : sizeof(ifr->ifr_addr)) +
219                     IFNAMSIZ);
220 #else
221                 ifr = (struct ifreq *) ((char *) ifr + sizeof(struct ifreq));
222 #endif
223         }
224
225 #ifdef linux
226         /*
227          * OK, maybe we have support for the "any" device, to do a cooked
228          * capture on all interfaces at once.
229          * Try opening it and, if that succeeds, add it to the end of
230          * the list of interfaces.
231          */
232         pch = pcap_open_live("any", MIN_PACKET_SIZE, 0, 0, err_str);
233         if (pch != NULL) {
234                 /*
235                  * It worked; we can use the "any" device.
236                  */
237                 if_info = if_info_new("any",
238                     "Pseudo-device that captures on all interfaces");
239                 il = g_list_insert(il, if_info, -1);
240                 pcap_close(pch);
241         }
242 #endif
243
244         g_free(ifc.ifc_buf);
245         close(sock);
246
247         if (il == NULL) {
248                 /*
249                  * No interfaces found.
250                  */
251                 *err = NO_INTERFACES_FOUND;
252         }
253         return il;
254
255 fail:
256         if (il != NULL)
257                 free_interface_list(il);
258         g_free(ifc.ifc_buf);
259         close(sock);
260         *err = CANT_GET_INTERFACE_LIST;
261         return NULL;
262 #endif /* HAVE_PCAP_FINDALLDEVS */
263 }
264
265 #ifndef HAVE_PCAP_FINDALLDEVS
266 static void
267 search_for_if_cb(gpointer data, gpointer user_data)
268 {
269         struct search_user_data *search_user_data = user_data;
270         if_info_t *if_info = data;
271
272         if (strcmp(if_info->name, search_user_data->name) == 0)
273                 search_user_data->if_info = if_info;
274 }
275 #endif /* HAVE_PCAP_FINDALLDEVS */
276
277 /*
278  * Get an error message string for a CANT_GET_INTERFACE_LIST error from
279  * "get_interface_list()".
280  */
281 gchar *
282 cant_get_if_list_error_message(const char *err_str)
283 {
284         return g_strdup_printf("Can't get list of interfaces: %s", err_str);
285 }
286
287 /*
288  * Append the version of libpcap with which we were compiled to a GString.
289  */
290 void
291 get_compiled_pcap_version(GString *str)
292 {
293 #ifdef HAVE_PCAP_VERSION
294         extern char pcap_version[];
295
296         g_string_sprintfa(str, "with libpcap %s", pcap_version);
297 #else
298         g_string_append(str, "with libpcap (version unknown)");
299 #endif
300 }
301
302 /*
303  * Append the version of libpcap with which we we're running to a GString.
304  */
305 void
306 get_runtime_pcap_version(GString *str)
307 {
308         g_string_sprintfa(str, "with ");
309 #ifdef HAVE_PCAP_LIB_VERSION
310         g_string_sprintfa(str, pcap_lib_version());
311 #else
312         g_string_append(str, "libpcap (version unknown)");
313 #endif
314         g_string_append(str, " ");
315 }
316
317 #else /* HAVE_LIBPCAP */
318
319 /*
320  * Append an indication that we were not compiled with libpcap
321  * to a GString.
322  */
323 void
324 get_compiled_pcap_version(GString *str)
325 {
326         g_string_append(str, "without libpcap");
327 }
328
329 /*
330  * Don't append anything, as we weren't even compiled to use WinPcap.
331  */
332 void
333 get_runtime_pcap_version(GString *str _U_)
334 {
335 }
336
337 #endif /* HAVE_LIBPCAP */