dev: bail out if ifindex could not be retrieved
[netsniff-ng.git] / dissector.h
blob60bc429729418905b886a11a39313a7b918d993e
1 /*
2 * netsniff-ng - the packet sniffing beast
3 * Copyright 2009 - 2013 Daniel Borkmann.
4 * Subject to the GPL, version 2.
5 */
7 #ifndef DISSECTOR_H
8 #define DISSECTOR_H
10 #include <stdlib.h>
11 #include <stdint.h>
12 #include <sys/socket.h>
13 #include <linux/if_packet.h>
14 #include <linux/if.h>
16 #include "ring.h"
17 #include "tprintf.h"
18 #include "pcap_io.h"
19 #include "built_in.h"
21 #define PRINT_NORM 0
22 #define PRINT_LESS 1
23 #define PRINT_HEX 2
24 #define PRINT_ASCII 3
25 #define PRINT_HEX_ASCII 4
26 #define PRINT_NONE 5
28 static const char * const packet_types[256]={
29 "<", /* Incoming */
30 "B", /* Broadcast */
31 "M", /* Multicast */
32 "P", /* Promisc */
33 ">", /* Outgoing */
34 "?", /* Unknown */
37 extern char *if_indextoname(unsigned ifindex, char *ifname);
39 static inline const char *__show_ts_source(uint32_t status)
41 if (status & TP_STATUS_TS_RAW_HARDWARE)
42 return "(raw hw ts)";
43 else if (status & TP_STATUS_TS_SYS_HARDWARE)
44 return "(sys hw ts)";
45 else if (status & TP_STATUS_TS_SOFTWARE)
46 return "(sw ts)";
47 else
48 return "";
51 static inline void __show_frame_hdr(struct sockaddr_ll *s_ll,
52 void *raw, int mode, bool v3)
54 char tmp[IFNAMSIZ];
55 union tpacket_uhdr hdr;
57 if (mode == PRINT_NONE)
58 return;
60 hdr.raw = raw;
62 switch (mode) {
63 case PRINT_LESS:
64 tprintf("%s %s %u",
65 packet_types[s_ll->sll_pkttype] ? : "?",
66 if_indextoname(s_ll->sll_ifindex, tmp) ? : "?",
67 v3 ? hdr.h3->tp_len : hdr.h2->tp_len);
68 break;
69 default:
70 tprintf("%s %s %u %us.%uns %s\n",
71 packet_types[s_ll->sll_pkttype] ? : "?",
72 if_indextoname(s_ll->sll_ifindex, tmp) ? : "?",
73 v3 ? hdr.h3->tp_len : hdr.h2->tp_len,
74 v3 ? hdr.h3->tp_sec : hdr.h2->tp_sec,
75 v3 ? hdr.h3->tp_nsec : hdr.h2->tp_nsec,
76 v3 ? "" : __show_ts_source(hdr.h2->tp_status));
77 break;
81 static inline void show_frame_hdr(struct frame_map *hdr, int mode)
83 __show_frame_hdr(&hdr->s_ll, &hdr->tp_h, mode, false);
86 extern void dissector_init_all(int fnttype);
87 extern void dissector_entry_point(uint8_t *packet, size_t len, int linktype, int mode);
88 extern void dissector_cleanup_all(void);
89 extern int dissector_set_print_type(void *ptr, int type);
91 #endif /* DISSECTOR_H */