xutils: Add common code to set up struct itimerval interval and value
[netsniff-ng.git] / dissector.c
blob8ff51be4da79b7b99e6c118bf32820306bd9002b
1 /*
2 * netsniff-ng - the packet sniffing beast
3 * By Daniel Borkmann <daniel@netsniff-ng.org>
4 * Copyright 2009, 2010, 2011, 2012 Daniel Borkmann.
5 * Subject to the GPL, version 2.
6 */
8 #include <stdint.h>
9 #include <stdlib.h>
10 #include <unistd.h>
12 #include "built_in.h"
13 #include "tprintf.h"
14 #include "pkt_buff.h"
15 #include "proto.h"
16 #include "protos.h"
17 #include "dissector.h"
18 #include "dissector_eth.h"
19 #include "dissector_80211.h"
21 int dissector_set_print_type(void *ptr, int type)
23 struct protocol *proto;
25 for (proto = ptr; proto; proto = proto->next) {
26 switch (type) {
27 case PRINT_NORM:
28 proto->process = proto->print_full;
29 break;
30 case PRINT_LESS:
31 proto->process = proto->print_less;
32 break;
33 default:
34 proto->process = NULL;
35 break;
39 return 0;
42 static void dissector_main(struct pkt_buff *pkt, struct protocol *start,
43 struct protocol *end)
45 struct protocol *proto;
47 if (!start)
48 return;
50 for (pkt->proto = start; pkt->proto; ) {
51 if (unlikely(!pkt->proto->process))
52 break;
54 proto = pkt->proto;
55 pkt->proto = NULL;
56 proto->process(pkt);
59 if (end && likely(end->process))
60 end->process(pkt);
63 void dissector_entry_point(uint8_t *packet, size_t len, int linktype, int mode)
65 struct protocol *proto_start, *proto_end;
66 struct pkt_buff *pkt = NULL;
68 if (mode == PRINT_NONE)
69 return;
71 pkt = pkt_alloc(packet, len);
73 switch (linktype) {
74 case LINKTYPE_EN10MB:
75 case ___constant_swab32(LINKTYPE_EN10MB):
76 proto_start = dissector_get_ethernet_entry_point();
77 proto_end = dissector_get_ethernet_exit_point();
78 break;
79 case LINKTYPE_IEEE802_11:
80 case ___constant_swab32(LINKTYPE_IEEE802_11):
81 proto_start = dissector_get_ieee80211_entry_point();
82 proto_end = dissector_get_ieee80211_exit_point();
83 break;
84 default:
85 panic("Linktype not supported!\n");
88 dissector_main(pkt, proto_start, proto_end);
90 switch (mode) {
91 case PRINT_HEX:
92 hex(pkt);
93 break;
94 case PRINT_ASCII:
95 ascii(pkt);
96 break;
97 case PRINT_HEX_ASCII:
98 hex_ascii(pkt);
99 break;
102 tprintf_flush();
103 pkt_free(pkt);
106 void dissector_init_all(int fnttype)
108 dissector_init_ethernet(fnttype);
109 dissector_init_ieee80211(fnttype);
112 void dissector_cleanup_all(void)
114 dissector_cleanup_ethernet();
115 dissector_cleanup_ieee80211();