Created a new protocol tree implementation and a new display filter
[obnox/wireshark/wip.git] / ethertype.c
1 /* ethertype.c
2  * Routines for calling the right protocol for the ethertype.
3  * This is called by both packet-eth.c (Ethernet II) and packet-llc.c (SNAP)
4  *
5  * $Id: ethertype.c,v 1.16 1999/07/07 22:51:38 gram Exp $
6  *
7  * Gilbert Ramirez <gram@verdict.uthscsa.edu>
8  *
9  * Ethereal - Network traffic analyzer
10  * By Gerald Combs <gerald@zing.org>
11  * Copyright 1998 Gerald Combs
12  *
13  * 
14  * This program is free software; you can redistribute it and/or
15  * modify it under the terms of the GNU General Public License
16  * as published by the Free Software Foundation; either version 2
17  * of the License, or (at your option) any later version.
18  * 
19  * This program is distributed in the hope that it will be useful,
20  * but WITHOUT ANY WARRANTY; without even the implied warranty of
21  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
22  * GNU General Public License for more details.
23  * 
24  * You should have received a copy of the GNU General Public License
25  * along with this program; if not, write to the Free Software
26  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
27  */
28
29 #ifdef HAVE_CONFIG_H
30 # include "config.h"
31 #endif
32
33 #ifdef HAVE_SYS_TYPES_H
34 # include <sys/types.h>
35 #endif
36
37 #include <glib.h>
38 #include "packet.h"
39 #include "etypes.h"
40
41 const value_string etype_vals[] = {
42     {ETHERTYPE_IP,     "IP"             },
43     {ETHERTYPE_IPv6,   "IPv6"           },
44     {ETHERTYPE_ARP,    "ARP"            },
45     {ETHERTYPE_REVARP, "RARP"           },
46     {ETHERTYPE_ATALK,  "Appletalk"      },
47     {ETHERTYPE_AARP,   "AARP"           },
48     {ETHERTYPE_IPX,    "Netware IPX/SPX"},
49     {ETHERTYPE_VINES,  "Vines"          },
50     {ETHERTYPE_CDP,    "CDP"            }, /* Cisco Discovery Protocol */
51     {ETHERTYPE_TRAIN,   "Netmon Train"  },
52     {ETHERTYPE_LOOP,   "Loopback"       }, /* Ethernet Loopback */
53     {ETHERTYPE_PPPOED, "PPPoE Discovery"}, 
54     {ETHERTYPE_PPPOES, "PPPoE Session"  }, 
55     {0,                 NULL            } };
56
57 void
58 capture_ethertype(guint16 etype, int offset,
59                 const u_char *pd, guint32 cap_len, packet_counts *ld)
60 {
61   switch (etype) {
62     case ETHERTYPE_IP:
63       capture_ip(pd, offset, cap_len, ld);
64       break;
65     default:
66       ld->other++;
67       break;
68   }
69 }
70
71 void
72 ethertype(guint16 etype, int offset,
73                 const u_char *pd, frame_data *fd, proto_tree *tree, proto_tree
74                 *fh_tree, int item_id)
75 {
76   if (tree) {
77         proto_tree_add_item(fh_tree, item_id, offset - 2, 2, etype);
78   }
79   switch (etype) {
80     case ETHERTYPE_IP:
81       dissect_ip(pd, offset, fd, tree);
82       break;
83     case ETHERTYPE_IPv6:
84       dissect_ipv6(pd, offset, fd, tree);
85       break;
86     case ETHERTYPE_ARP:
87       dissect_arp(pd, offset, fd, tree);
88       break;
89     case ETHERTYPE_REVARP:
90       dissect_arp(pd, offset, fd, tree);
91       break;
92     case ETHERTYPE_ATALK:
93       dissect_ddp(pd, offset, fd, tree);
94       break;
95     case ETHERTYPE_AARP:
96       dissect_aarp(pd, offset, fd, tree);
97       break;
98     case ETHERTYPE_IPX:
99       dissect_ipx(pd, offset, fd, tree);
100       break;
101     case ETHERTYPE_VINES:
102       dissect_vines(pd, offset, fd, tree);
103       break;
104     case ETHERTYPE_CDP:
105       dissect_cdp(pd, offset, fd, tree);
106       break;
107     case ETHERTYPE_LOOP:
108       dissect_data(pd, offset, fd, tree);
109       if (check_col(fd, COL_PROTOCOL)) { col_add_fstr(fd, COL_PROTOCOL, "LOOP"); }
110       break;
111     case ETHERTYPE_PPPOED:
112       dissect_pppoed(pd, offset, fd, tree);
113       break;
114     case ETHERTYPE_PPPOES:
115       dissect_pppoes(pd, offset, fd, tree);
116       break;
117     default:
118       dissect_data(pd, offset, fd, tree);
119       if (check_col(fd, COL_PROTOCOL)) { col_add_fstr(fd, COL_PROTOCOL, "0x%04x", etype); }
120       break;
121   }
122 }
123
124
125