Enable Lua tcp tap userdata.
[obnox/wireshark/wip.git] / epan / dissectors / packet-raw.c
1 /* packet-raw.c
2  * Routines for raw packet disassembly
3  *
4  * $Id$
5  *
6  * Wireshark - Network traffic analyzer
7  * By Gerald Combs <gerald@wireshark.org>
8  *
9  * This file created and by Mike Hall <mlh@io.com>
10  * Copyright 1998
11  *
12  * This program is free software; you can redistribute it and/or
13  * modify it under the terms of the GNU General Public License
14  * as published by the Free Software Foundation; either version 2
15  * of the License, or (at your option) any later version.
16  *
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  * GNU General Public License for more details.
21  *
22  * You should have received a copy of the GNU General Public License
23  * along with this program; if not, write to the Free Software
24  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
25  */
26
27 #ifdef HAVE_CONFIG_H
28 # include "config.h"
29 #endif
30
31 #include <string.h>
32 #include <glib.h>
33 #include <epan/packet.h>
34 #include <epan/prefs.h>
35 #include "packet-raw.h"
36 #include "packet-ip.h"
37 #include "packet-ppp.h"
38 #include "packet-ipv6.h"
39
40 static int proto_raw = -1;
41 static gint ett_raw = -1;
42
43 static const char zeroes[10];
44
45 static dissector_handle_t ip_handle;
46 static dissector_handle_t ipv6_handle;
47 static dissector_handle_t data_handle;
48 static dissector_handle_t ppp_hdlc_handle;
49
50 void
51 capture_raw(const guchar *pd, int len, packet_counts *ld)
52 {
53   /* So far, the only time we get raw connection types are with Linux and
54    * Irix PPP connections.  We can't tell what type of data is coming down
55    * the line, so our safest bet is IP. - GCC
56    */
57
58   /* Currently, the Linux 2.1.xxx PPP driver passes back some of the header
59    * sometimes.  This check should be removed when 2.2 is out.
60    */
61   if (BYTES_ARE_IN_FRAME(0,len,2) && pd[0] == 0xff && pd[1] == 0x03) {
62     capture_ppp_hdlc(pd, 0, len, ld);
63   }
64   /* The Linux ISDN driver sends a fake MAC address before the PPP header
65    * on its ippp interfaces... */
66   else if (BYTES_ARE_IN_FRAME(0,len,8) && pd[6] == 0xff && pd[7] == 0x03) {
67     capture_ppp_hdlc(pd, 6, len, ld);
68   }
69   /* ...except when it just puts out one byte before the PPP header... */
70   else if (BYTES_ARE_IN_FRAME(0,len,3) && pd[1] == 0xff && pd[2] == 0x03) {
71     capture_ppp_hdlc(pd, 1, len, ld);
72   }
73   /* ...and if the connection is currently down, it sends 10 bytes of zeroes
74    * instead of a fake MAC address and PPP header. */
75   else if (BYTES_ARE_IN_FRAME(0,len,10) && memcmp(pd, zeroes, 10) == 0) {
76     capture_ip(pd, 10, len, ld);
77   }
78   else {
79     /*
80      * OK, is this IPv4 or IPv6?
81      */
82     if (BYTES_ARE_IN_FRAME(0,len,1)) {
83       switch (pd[0] & 0xF0) {
84
85       case 0x40:
86         /* IPv4 */
87         capture_ip(pd, 0, len, ld);
88         break;
89
90 #if 0
91       case 0x60:
92         /* IPv6 */
93         capture_ipv6(pd, 0, len, ld);
94         break;
95 #endif
96       }
97     }
98   }
99 }
100
101 static void
102 dissect_raw(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
103 {
104   proto_tree    *fh_tree;
105   proto_item    *ti;
106   tvbuff_t      *next_tvb;
107
108   /* load the top pane info. This should be overwritten by
109      the next protocol in the stack */
110   if(check_col(pinfo->cinfo, COL_RES_DL_SRC))
111     col_set_str(pinfo->cinfo, COL_RES_DL_SRC, "N/A" );
112   if(check_col(pinfo->cinfo, COL_RES_DL_DST))
113     col_set_str(pinfo->cinfo, COL_RES_DL_DST, "N/A" );
114   if(check_col(pinfo->cinfo, COL_PROTOCOL))
115     col_set_str(pinfo->cinfo, COL_PROTOCOL, "N/A" );
116   if(check_col(pinfo->cinfo, COL_INFO))
117     col_set_str(pinfo->cinfo, COL_INFO, "Raw packet data" );
118
119   /* populate a tree in the second pane with the status of the link
120      layer (ie none) */
121   if (tree) {
122     ti = proto_tree_add_item(tree, proto_raw, tvb, 0, 0, FALSE);
123     fh_tree = proto_item_add_subtree(ti, ett_raw);
124     proto_tree_add_text(fh_tree, tvb, 0, 0, "No link information available");
125   }
126
127   /* So far, the only time we get raw connection types are with Linux and
128    * Irix PPP connections.  We can't tell what type of data is coming down
129    * the line, so our safest bet is IP. - GCC
130    */
131
132   /* Currently, the Linux 2.1.xxx PPP driver passes back some of the header
133    * sometimes.  This check should be removed when 2.2 is out.
134    */
135   if (tvb_get_ntohs(tvb, 0) == 0xff03) {
136         call_dissector(ppp_hdlc_handle, tvb, pinfo, tree);
137   }
138   /* The Linux ISDN driver sends a fake MAC address before the PPP header
139    * on its ippp interfaces... */
140   else if (tvb_get_ntohs(tvb, 6) == 0xff03) {
141         next_tvb = tvb_new_subset(tvb, 6, -1, -1);
142         call_dissector(ppp_hdlc_handle, next_tvb, pinfo, tree);
143   }
144   /* ...except when it just puts out one byte before the PPP header... */
145   else if (tvb_get_ntohs(tvb, 1) == 0xff03) {
146         next_tvb = tvb_new_subset(tvb, 1, -1, -1);
147         call_dissector(ppp_hdlc_handle, next_tvb, pinfo, tree);
148   }
149   /* ...and if the connection is currently down, it sends 10 bytes of zeroes
150    * instead of a fake MAC address and PPP header. */
151   else if (memcmp(tvb_get_ptr(tvb, 0, 10), zeroes, 10) == 0) {
152         next_tvb = tvb_new_subset(tvb, 10, -1, -1);
153         call_dissector(ip_handle, next_tvb, pinfo, tree);
154   }
155   else {
156         /*
157          * OK, is this IPv4 or IPv6?
158          */
159         switch (tvb_get_guint8(tvb, 0) & 0xF0) {
160
161         case 0x40:
162           /* IPv4 */
163           call_dissector(ip_handle, tvb, pinfo, tree);
164           break;
165
166         case 0x60:
167           /* IPv6 */
168           call_dissector(ipv6_handle, tvb, pinfo, tree);
169           break;
170
171         default:
172           /* None of the above. */
173           call_dissector(data_handle, tvb, pinfo, tree);
174           break;
175         }
176   }
177 }
178
179 void
180 proto_register_raw(void)
181 {
182   static gint *ett[] = {
183     &ett_raw,
184   };
185
186   proto_raw = proto_register_protocol("Raw packet data", "Raw", "raw");
187   proto_register_subtree_array(ett, array_length(ett));
188 }
189
190 void
191 proto_reg_handoff_raw(void)
192 {
193   dissector_handle_t raw_handle;
194
195   /*
196    * Get handles for the IP, IPv6, undissected-data, and
197    * PPP-in-HDLC-like-framing dissectors.
198    */
199   ip_handle = find_dissector("ip");
200   ipv6_handle = find_dissector("ipv6");
201   data_handle = find_dissector("data");
202   ppp_hdlc_handle = find_dissector("ppp_hdlc");
203   raw_handle = create_dissector_handle(dissect_raw, proto_raw);
204   dissector_add("wtap_encap", WTAP_ENCAP_RAW_IP, raw_handle);
205 }