ring: use gcc builtin for swapping index value
[netsniff-ng.git] / src / dissector.h
blob248a68b419d20e38d9f4d204613a3dcc17b61d18
1 /*
2 * netsniff-ng - the packet sniffing beast
3 * By Daniel Borkmann <daniel@netsniff-ng.org>
4 * Copyright 2009, 2010 Daniel Borkmann.
5 * Subject to the GPL, version 2.
6 */
8 #ifndef DISSECTOR_H
9 #define DISSECTOR_H
11 #include <stdlib.h>
12 #include <stdint.h>
14 #include "ring.h"
15 #include "tprintf.h"
17 #define LINKTYPE_NULL 0 /* BSD loopback encapsulation */
18 #define LINKTYPE_EN10MB 1 /* Ethernet (10Mb) */
19 #define LINKTYPE_EN3MB 2 /* Experimental Ethernet (3Mb) */
20 #define LINKTYPE_AX25 3 /* Amateur Radio AX.25 */
21 #define LINKTYPE_PRONET 4 /* Proteon ProNET Token Ring */
22 #define LINKTYPE_CHAOS 5 /* Chaos */
23 #define LINKTYPE_IEEE802 6 /* 802.5 Token Ring */
24 #define LINKTYPE_ARCNET 7 /* ARCNET, with BSD-style header */
25 #define LINKTYPE_SLIP 8 /* Serial Line IP */
26 #define LINKTYPE_PPP 9 /* Point-to-point Protocol */
27 #define LINKTYPE_FDDI 10 /* FDDI */
29 #define FNTTYPE_PRINT_NORM 0
30 #define FNTTYPE_PRINT_LESS 1
31 #define FNTTYPE_PRINT_PAY_HEX 2
32 #define FNTTYPE_PRINT_ALL_HEX 3
33 #define FNTTYPE_PRINT_NO_PAY 4
34 #define FNTTYPE_PRINT_PAY_ASCII 5
35 #define FNTTYPE_PRINT_NONE 6
37 extern void dissector_init_all(int fnttype);
38 extern void dissector_entry_point(uint8_t *packet, size_t len, int linktype);
39 extern void dissector_cleanup_all(void);
40 extern int dissector_set_print_type(void *ptr, int type);
42 static char *packet_types[]={
43 "<", /* Incoming */
44 "B", /* Broadcast */
45 "M", /* Multicast */
46 "P", /* Promisc */
47 ">", /* Outgoing */
48 "?", /* Unknown */
51 static inline void show_frame_hdr(struct frame_map *hdr, int mode,
52 enum ring_mode rmode)
54 if (mode == FNTTYPE_PRINT_NONE)
55 return;
56 switch (mode) {
57 case FNTTYPE_PRINT_PAY_ASCII:
58 case FNTTYPE_PRINT_NO_PAY:
59 case FNTTYPE_PRINT_PAY_HEX:
60 case FNTTYPE_PRINT_ALL_HEX:
61 case FNTTYPE_PRINT_NORM:
62 default:
63 if (rmode == RING_MODE_INGRESS) {
64 tprintf("%s %u %u %u.%06u\n",
65 packet_types[hdr->s_ll.sll_pkttype],
66 hdr->s_ll.sll_ifindex, hdr->tp_h.tp_len,
67 hdr->tp_h.tp_sec, hdr->tp_h.tp_usec);
68 } else {
69 tprintf("%u %u.%06u\n", hdr->tp_h.tp_len,
70 hdr->tp_h.tp_sec, hdr->tp_h.tp_usec);
72 break;
73 case FNTTYPE_PRINT_LESS:
74 if (rmode == RING_MODE_INGRESS) {
75 tprintf("%s %u %u",
76 packet_types[hdr->s_ll.sll_pkttype],
77 hdr->s_ll.sll_ifindex, hdr->tp_h.tp_len);
78 } else {
79 tprintf("%u ", hdr->tp_h.tp_len);
81 break;
85 #endif /* DISSECTOR_H */