When doing a capture, decode enough of the incoming packets to correctly
[obnox/wireshark/wip.git] / packet-raw.c
1 /* packet-raw.c
2  * Routines for raw packet disassembly
3  *
4  * $Id: packet-raw.c,v 1.8 1999/02/09 00:35:38 guy Exp $
5  *
6  * Ethereal - Network traffic analyzer
7  * By Gerald Combs <gerald@zing.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 #ifdef HAVE_SYS_TYPES_H
32 # include <sys/types.h>
33 #endif
34
35 #include <gtk/gtk.h>
36 #include <stdio.h>
37
38 #include "ethereal.h"
39 #include "packet.h"
40
41 void
42 capture_raw( const u_char *pd, guint32 cap_len, packet_counts *ld ) {
43
44   /* So far, the only time we get raw connection types are with Linux and
45    * Irix PPP connections.  We can't tell what type of data is coming down
46    * the line, so our safest bet is IP. - GCC
47    */
48    
49   /* Currently, the Linux 2.1.xxx PPP driver passes back some of the header
50    * sometimes.  This check should be removed when 2.2 is out.
51    */
52   if (pd[0] == 0xff && pd[1] == 0x03)
53     capture_ip(pd, 4, cap_len, ld);
54   else
55     capture_ip(pd, 0, cap_len, ld);
56 }
57
58 void
59 dissect_raw( const u_char *pd, frame_data *fd, GtkTree *tree ) {
60   GtkWidget *ti, *fh_tree;
61
62   /* load the top pane info. This should be overwritten by
63      the next protocol in the stack */
64   if(check_col(fd, COL_RES_DL_SRC))
65     col_add_str(fd, COL_RES_DL_SRC, "N/A" );
66   if(check_col(fd, COL_RES_DL_DST))
67     col_add_str(fd, COL_RES_DL_DST, "N/A" );
68   if(check_col(fd, COL_PROTOCOL))
69     col_add_str(fd, COL_PROTOCOL, "N/A" );
70   if(check_col(fd, COL_INFO))
71     col_add_str(fd, COL_INFO, "Raw packet data" );
72
73   /* populate a tree in the second pane with the status of the link
74      layer (ie none) */
75   if(tree) {
76     ti = add_item_to_tree( GTK_WIDGET(tree), 0, 0,
77                            "Raw packet data" );
78     fh_tree = gtk_tree_new();
79     add_subtree(ti, fh_tree, ETT_RAW);
80     add_item_to_tree(fh_tree, 0, 0, "No link information available");
81   }
82
83   /* So far, the only time we get raw connection types are with Linux and
84    * Irix PPP connections.  We can't tell what type of data is coming down
85    * the line, so our safest bet is IP. - GCC
86    */
87    
88   /* Currently, the Linux 2.1.xxx PPP driver passes back some of the header
89    * sometimes.  This check should be removed when 2.2 is out.
90    */
91   if (pd[0] == 0xff && pd[1] == 0x03)
92     dissect_ip(pd, 4, fd, tree);
93   else
94     dissect_ip(pd, 0, fd, tree);
95 }
96