]> The Tcpdump Group git mirrors - tcpdump/blob - print.c
8f68bae380381ec1fdffc085a9cc8e259fd1e4e6
[tcpdump] / print.c
1 /*
2 * Copyright (c) 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 2000
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that: (1) source code distributions
7 * retain the above copyright notice and this paragraph in its entirety, (2)
8 * distributions including binary code include the above copyright notice and
9 * this paragraph in its entirety in the documentation or other materials
10 * provided with the distribution, and (3) all advertising materials mentioning
11 * features or use of this software display the following acknowledgement:
12 * ``This product includes software developed by the University of California,
13 * Lawrence Berkeley Laboratory and its contributors.'' Neither the name of
14 * the University nor the names of its contributors may be used to endorse
15 * or promote products derived from this software without specific prior
16 * written permission.
17 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
18 * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
19 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
20 *
21 * Support for splitting captures into multiple files with a maximum
22 * file size:
23 *
24 * Copyright (c) 2001
25 * Seth Webster <swebster@sst.ll.mit.edu>
26 */
27
28 #ifdef HAVE_CONFIG_H
29 #include "config.h"
30 #endif
31
32 #include <stdlib.h>
33 #include <string.h>
34
35 #include <netdissect-stdinc.h>
36
37 #include "netdissect.h"
38 #include "addrtoname.h"
39 #include "print.h"
40
41 struct printer {
42 if_printer f;
43 int type;
44 };
45
46 static const struct printer printers[] = {
47 { ether_if_print, DLT_EN10MB },
48 #ifdef DLT_IPNET
49 { ipnet_if_print, DLT_IPNET },
50 #endif
51 #ifdef DLT_IEEE802_15_4
52 { ieee802_15_4_if_print, DLT_IEEE802_15_4 },
53 #endif
54 #ifdef DLT_IEEE802_15_4_NOFCS
55 { ieee802_15_4_if_print, DLT_IEEE802_15_4_NOFCS },
56 #endif
57 #ifdef DLT_PPI
58 { ppi_if_print, DLT_PPI },
59 #endif
60 #ifdef DLT_NETANALYZER
61 { netanalyzer_if_print, DLT_NETANALYZER },
62 #endif
63 #ifdef DLT_NETANALYZER_TRANSPARENT
64 { netanalyzer_transparent_if_print, DLT_NETANALYZER_TRANSPARENT },
65 #endif
66 #if defined(DLT_NFLOG) && defined(HAVE_PCAP_NFLOG_H)
67 { nflog_if_print, DLT_NFLOG},
68 #endif
69 #ifdef DLT_CIP
70 { cip_if_print, DLT_CIP },
71 #endif
72 #ifdef DLT_ATM_CLIP
73 { cip_if_print, DLT_ATM_CLIP },
74 #endif
75 #ifdef DLT_IP_OVER_FC
76 { ipfc_if_print, DLT_IP_OVER_FC },
77 #endif
78 { null_if_print, DLT_NULL },
79 #ifdef DLT_LOOP
80 { null_if_print, DLT_LOOP },
81 #endif
82 #ifdef DLT_APPLE_IP_OVER_IEEE1394
83 { ap1394_if_print, DLT_APPLE_IP_OVER_IEEE1394 },
84 #endif
85 #if defined(DLT_BLUETOOTH_HCI_H4_WITH_PHDR) && defined(HAVE_PCAP_BLUETOOTH_H)
86 { bt_if_print, DLT_BLUETOOTH_HCI_H4_WITH_PHDR},
87 #endif
88 #ifdef DLT_LANE8023
89 { lane_if_print, DLT_LANE8023 },
90 #endif
91 { arcnet_if_print, DLT_ARCNET },
92 #ifdef DLT_ARCNET_LINUX
93 { arcnet_linux_if_print, DLT_ARCNET_LINUX },
94 #endif
95 { raw_if_print, DLT_RAW },
96 #ifdef DLT_IPV4
97 { raw_if_print, DLT_IPV4 },
98 #endif
99 #ifdef DLT_IPV6
100 { raw_if_print, DLT_IPV6 },
101 #endif
102 #ifdef HAVE_PCAP_USB_H
103 #ifdef DLT_USB_LINUX
104 { usb_linux_48_byte_print, DLT_USB_LINUX},
105 #endif /* DLT_USB_LINUX */
106 #ifdef DLT_USB_LINUX_MMAPPED
107 { usb_linux_64_byte_print, DLT_USB_LINUX_MMAPPED},
108 #endif /* DLT_USB_LINUX_MMAPPED */
109 #endif /* HAVE_PCAP_USB_H */
110 #ifdef DLT_SYMANTEC_FIREWALL
111 { symantec_if_print, DLT_SYMANTEC_FIREWALL },
112 #endif
113 #ifdef DLT_C_HDLC
114 { chdlc_if_print, DLT_C_HDLC },
115 #endif
116 #ifdef DLT_HDLC
117 { chdlc_if_print, DLT_HDLC },
118 #endif
119 #ifdef DLT_PPP_ETHER
120 { pppoe_if_print, DLT_PPP_ETHER },
121 #endif
122 #if defined(DLT_PFLOG) && defined(HAVE_NET_IF_PFLOG_H)
123 { pflog_if_print, DLT_PFLOG },
124 #endif
125 { token_if_print, DLT_IEEE802 },
126 { fddi_if_print, DLT_FDDI },
127 #ifdef DLT_LINUX_SLL
128 { sll_if_print, DLT_LINUX_SLL },
129 #endif
130 #ifdef DLT_FR
131 { fr_if_print, DLT_FR },
132 #endif
133 #ifdef DLT_FRELAY
134 { fr_if_print, DLT_FRELAY },
135 #endif
136 #ifdef DLT_MFR
137 { mfr_if_print, DLT_MFR },
138 #endif
139 { atm_if_print, DLT_ATM_RFC1483 },
140 #ifdef DLT_SUNATM
141 { sunatm_if_print, DLT_SUNATM },
142 #endif
143 #ifdef DLT_ENC
144 { enc_if_print, DLT_ENC },
145 #endif
146 { sl_if_print, DLT_SLIP },
147 #ifdef DLT_SLIP_BSDOS
148 { sl_bsdos_if_print, DLT_SLIP_BSDOS },
149 #endif
150 #ifdef DLT_LTALK
151 { ltalk_if_print, DLT_LTALK },
152 #endif
153 #ifdef DLT_JUNIPER_ATM1
154 { juniper_atm1_print, DLT_JUNIPER_ATM1 },
155 #endif
156 #ifdef DLT_JUNIPER_ATM2
157 { juniper_atm2_print, DLT_JUNIPER_ATM2 },
158 #endif
159 #ifdef DLT_JUNIPER_MFR
160 { juniper_mfr_print, DLT_JUNIPER_MFR },
161 #endif
162 #ifdef DLT_JUNIPER_MLFR
163 { juniper_mlfr_print, DLT_JUNIPER_MLFR },
164 #endif
165 #ifdef DLT_JUNIPER_MLPPP
166 { juniper_mlppp_print, DLT_JUNIPER_MLPPP },
167 #endif
168 #ifdef DLT_JUNIPER_PPPOE
169 { juniper_pppoe_print, DLT_JUNIPER_PPPOE },
170 #endif
171 #ifdef DLT_JUNIPER_PPPOE_ATM
172 { juniper_pppoe_atm_print, DLT_JUNIPER_PPPOE_ATM },
173 #endif
174 #ifdef DLT_JUNIPER_GGSN
175 { juniper_ggsn_print, DLT_JUNIPER_GGSN },
176 #endif
177 #ifdef DLT_JUNIPER_ES
178 { juniper_es_print, DLT_JUNIPER_ES },
179 #endif
180 #ifdef DLT_JUNIPER_MONITOR
181 { juniper_monitor_print, DLT_JUNIPER_MONITOR },
182 #endif
183 #ifdef DLT_JUNIPER_SERVICES
184 { juniper_services_print, DLT_JUNIPER_SERVICES },
185 #endif
186 #ifdef DLT_JUNIPER_ETHER
187 { juniper_ether_print, DLT_JUNIPER_ETHER },
188 #endif
189 #ifdef DLT_JUNIPER_PPP
190 { juniper_ppp_print, DLT_JUNIPER_PPP },
191 #endif
192 #ifdef DLT_JUNIPER_FRELAY
193 { juniper_frelay_print, DLT_JUNIPER_FRELAY },
194 #endif
195 #ifdef DLT_JUNIPER_CHDLC
196 { juniper_chdlc_print, DLT_JUNIPER_CHDLC },
197 #endif
198 #ifdef DLT_PKTAP
199 { pktap_if_print, DLT_PKTAP },
200 #endif
201 #ifdef DLT_IEEE802_11_RADIO
202 { ieee802_11_radio_if_print, DLT_IEEE802_11_RADIO },
203 #endif
204 #ifdef DLT_IEEE802_11
205 { ieee802_11_if_print, DLT_IEEE802_11},
206 #endif
207 #ifdef DLT_IEEE802_11_RADIO_AVS
208 { ieee802_11_radio_avs_if_print, DLT_IEEE802_11_RADIO_AVS },
209 #endif
210 #ifdef DLT_PRISM_HEADER
211 { prism_if_print, DLT_PRISM_HEADER },
212 #endif
213 { ppp_if_print, DLT_PPP },
214 #ifdef DLT_PPP_WITHDIRECTION
215 { ppp_if_print, DLT_PPP_WITHDIRECTION },
216 #endif
217 #ifdef DLT_PPP_BSDOS
218 { ppp_bsdos_if_print, DLT_PPP_BSDOS },
219 #endif
220 #ifdef DLT_PPP_SERIAL
221 { ppp_hdlc_if_print, DLT_PPP_SERIAL },
222 #endif
223 { NULL, 0 },
224 };
225
226
227 static void ndo_default_print(netdissect_options *ndo, const u_char *bp,
228 u_int length);
229
230 static void ndo_error(netdissect_options *ndo _U_, const char *fmt, ...)
231 __attribute__((noreturn))
232 #ifdef __ATTRIBUTE___FORMAT_OK
233 __attribute__((format (printf, 2, 3)))
234 #endif /* __ATTRIBUTE___FORMAT_OK */
235 ;
236 static void ndo_warning(netdissect_options *ndo _U_, const char *fmt, ...)
237 #ifdef __ATTRIBUTE___FORMAT_OK
238 __attribute__((format (printf, 2, 3)))
239 #endif /* __ATTRIBUTE___FORMAT_OK */
240 ;
241
242 static int ndo_printf(netdissect_options *ndo _U_, const char *fmt, ...)
243 #ifdef __ATTRIBUTE___FORMAT_OK
244 __attribute ((format (printf, 2, 3)))
245 #endif /* __ATTRIBUTE___FORMAT_OK */
246 ;
247
248 void
249 init_print(netdissect_options *ndo, u_int32_t localnet, u_int32_t mask,
250 uint32_t timezone_offset)
251 {
252
253 thiszone = timezone_offset;
254 init_addrtoname(ndo, localnet, mask);
255 init_checksum();
256 }
257
258 if_printer
259 lookup_printer(int type)
260 {
261 const struct printer *p;
262
263 for (p = printers; p->f; ++p)
264 if (type == p->type)
265 return p->f;
266
267 #if defined(DLT_USER2) && defined(DLT_PKTAP)
268 /*
269 * Apple incorrectly chose to use DLT_USER2 for their PKTAP
270 * header.
271 *
272 * We map DLT_PKTAP, whether it's DLT_USER2 as it is on Darwin-
273 * based OSes or the same value as LINKTYPE_PKTAP as it is on
274 * other OSes, to LINKTYPE_PKTAP, so files written with
275 * this version of libpcap for a DLT_PKTAP capture have a link-
276 * layer header type of LINKTYPE_PKTAP.
277 *
278 * However, files written on OS X Mavericks for a DLT_PKTAP
279 * capture have a link-layer header type of LINKTYPE_USER2.
280 * If we don't have a printer for DLT_USER2, and type is
281 * DLT_USER2, we look up the printer for DLT_PKTAP and use
282 * that.
283 */
284 if (type == DLT_USER2) {
285 for (p = printers; p->f; ++p)
286 if (DLT_PKTAP == p->type)
287 return p->f;
288 }
289 #endif
290
291 return NULL;
292 /* NOTREACHED */
293 }
294
295 int
296 has_printer(int type)
297 {
298
299 return (lookup_printer(type) != NULL);
300 }
301
302 struct print_info
303 get_print_info(netdissect_options *ndo, int type)
304 {
305 const char *dltname;
306 struct print_info printinfo;
307
308 printinfo.ndo = ndo;
309 printinfo.printer = lookup_printer(type);
310 if (printinfo.printer == NULL) {
311 dltname = pcap_datalink_val_to_name(type);
312 if (dltname != NULL)
313 (*ndo->ndo_error)(ndo,
314 "packet printing is not supported for link type %s: use -w",
315 dltname);
316 else
317 (*ndo->ndo_error)(ndo,
318 "packet printing is not supported for link type %d: use -w", type);
319 }
320 return (printinfo);
321 }
322
323 void
324 pretty_print_packet(struct print_info *print_info, const struct pcap_pkthdr *h,
325 const u_char *sp, u_int packets_captured)
326 {
327 u_int hdrlen;
328 netdissect_options *ndo;
329
330 ndo = print_info->ndo;
331
332 if(ndo->ndo_packet_number)
333 ND_PRINT((ndo, "%5u ", packets_captured));
334
335 ts_print(ndo, &h->ts);
336
337 /*
338 * Some printers want to check that they're not walking off the
339 * end of the packet.
340 * Rather than pass it all the way down, we set this member
341 * of the netdissect_options structure.
342 */
343 ndo->ndo_snapend = sp + h->caplen;
344
345 hdrlen = (*print_info->printer)(print_info->ndo, h, sp);
346
347 /*
348 * Restore the original snapend, as a printer might have
349 * changed it.
350 */
351 ndo->ndo_snapend = sp + h->caplen;
352 if (ndo->ndo_Xflag) {
353 /*
354 * Print the raw packet data in hex and ASCII.
355 */
356 if (ndo->ndo_Xflag > 1) {
357 /*
358 * Include the link-layer header.
359 */
360 hex_and_ascii_print(ndo, "\n\t", sp, h->caplen);
361 } else {
362 /*
363 * Don't include the link-layer header - and if
364 * we have nothing past the link-layer header,
365 * print nothing.
366 */
367 if (h->caplen > hdrlen)
368 hex_and_ascii_print(ndo, "\n\t", sp + hdrlen,
369 h->caplen - hdrlen);
370 }
371 } else if (ndo->ndo_xflag) {
372 /*
373 * Print the raw packet data in hex.
374 */
375 if (ndo->ndo_xflag > 1) {
376 /*
377 * Include the link-layer header.
378 */
379 hex_print(ndo, "\n\t", sp, h->caplen);
380 } else {
381 /*
382 * Don't include the link-layer header - and if
383 * we have nothing past the link-layer header,
384 * print nothing.
385 */
386 if (h->caplen > hdrlen)
387 hex_print(ndo, "\n\t", sp + hdrlen,
388 h->caplen - hdrlen);
389 }
390 } else if (ndo->ndo_Aflag) {
391 /*
392 * Print the raw packet data in ASCII.
393 */
394 if (ndo->ndo_Aflag > 1) {
395 /*
396 * Include the link-layer header.
397 */
398 ascii_print(ndo, sp, h->caplen);
399 } else {
400 /*
401 * Don't include the link-layer header - and if
402 * we have nothing past the link-layer header,
403 * print nothing.
404 */
405 if (h->caplen > hdrlen)
406 ascii_print(ndo, sp + hdrlen, h->caplen - hdrlen);
407 }
408 }
409
410 putchar('\n');
411 }
412
413 /*
414 * By default, print the specified data out in hex and ASCII.
415 */
416 static void
417 ndo_default_print(netdissect_options *ndo, const u_char *bp, u_int length)
418 {
419 hex_and_ascii_print(ndo, "\n\t", bp, length); /* pass on lf and indentation string */
420 }
421
422 /* VARARGS */
423 static void
424 ndo_error(netdissect_options *ndo, const char *fmt, ...)
425 {
426 va_list ap;
427
428 if(ndo->program_name)
429 (void)fprintf(stderr, "%s: ", ndo->program_name);
430 va_start(ap, fmt);
431 (void)vfprintf(stderr, fmt, ap);
432 va_end(ap);
433 if (*fmt) {
434 fmt += strlen(fmt);
435 if (fmt[-1] != '\n')
436 (void)fputc('\n', stderr);
437 }
438 exit(1);
439 /* NOTREACHED */
440 }
441
442 /* VARARGS */
443 static void
444 ndo_warning(netdissect_options *ndo, const char *fmt, ...)
445 {
446 va_list ap;
447
448 if(ndo->program_name)
449 (void)fprintf(stderr, "%s: ", ndo->program_name);
450 (void)fprintf(stderr, "WARNING: ");
451 va_start(ap, fmt);
452 (void)vfprintf(stderr, fmt, ap);
453 va_end(ap);
454 if (*fmt) {
455 fmt += strlen(fmt);
456 if (fmt[-1] != '\n')
457 (void)fputc('\n', stderr);
458 }
459 }
460
461 static int
462 ndo_printf(netdissect_options *ndo _U_, const char *fmt, ...)
463 {
464 va_list args;
465 int ret;
466
467 va_start(args, fmt);
468 ret = vfprintf(stdout, fmt, args);
469 va_end(args);
470
471 return (ret);
472 }
473
474 void
475 ndo_set_function_pointers(netdissect_options *ndo)
476 {
477
478 ndo->ndo_default_print=ndo_default_print;
479 ndo->ndo_printf=ndo_printf;
480 ndo->ndo_error=ndo_error;
481 ndo->ndo_warning=ndo_warning;
482 }
483 /*
484 * Local Variables:
485 * c-style: whitesmith
486 * c-basic-offset: 8
487 * End:
488 */