Add routines for adding items to a protocol tree that take arguments of
[obnox/wireshark/wip.git] / packet-mpls.c
1 /* packet-mpls.c
2  * Routines for MPLS data packet disassembly
3  * 
4  * (c) Copyright Ashok Narayanan <ashokn@cisco.com>
5  *
6  * $Id: packet-mpls.c,v 1.7 2000/05/31 05:07:19 guy Exp $
7  *
8  * Ethereal - Network traffic analyzer
9  * By Gerald Combs <gerald@zing.org>
10  * Copyright 1998 Gerald Combs
11  *
12  * 
13  * This program is free software; you can redistribute it and/or
14  * modify it under the terms of the GNU General Public License
15  * as published by the Free Software Foundation; either version 2
16  * of the License, or (at your option) any later version.
17  * 
18  * This program is distributed in the hope that it will be useful,
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21  * GNU General Public License for more details.
22  * 
23  * You should have received a copy of the GNU General Public License
24  * along with this program; if not, write to the Free Software
25  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
26  */
27
28 /*
29  * NOTES
30  *
31  * This module defines routines to handle Ethernet-encapsulated MPLS IP packets.
32  * It should implement all the functionality in <draft-ietf-mpls-label-encaps-07.txt>
33  * Multicast MPLS support is not tested yet
34  */
35
36
37 #ifdef HAVE_CONFIG_H
38 # include "config.h"
39 #endif
40
41 #ifdef HAVE_SYS_TYPES_H
42 # include <sys/types.h>
43 #endif
44
45 #include <glib.h>
46 #include "etypes.h"
47 #include "packet.h"
48 #include "packet-ip.h"
49
50 static gint proto_mpls = -1;
51
52 static gint ett_mpls = -1;
53
54 /* Special labels in MPLS */
55 enum {
56     IP4_EXPLICIT_NULL = 0,
57     ROUTER_ALERT,
58     IP6_EXPLICIT_NULL,
59     IMPLICIT_NULL,
60
61     MAX_RESERVED = 15
62 };
63
64 static const value_string special_labels[] = {
65     {IP4_EXPLICIT_NULL, "IPv4 Explicit-Null"},
66     {ROUTER_ALERT, "Router Alert"},
67     {IP6_EXPLICIT_NULL, "IPv6 Explicit-Null"},
68     {IMPLICIT_NULL, "Implicit-Null"},
69     {0, NULL }
70 };
71
72 /* MPLS filter values */
73 enum mpls_filter_keys {
74
75     /* Is the packet MPLS-encapsulated? */
76 /*    MPLSF_PACKET,*/
77
78     /* MPLS encap properties */
79     MPLSF_LABEL,
80     MPLSF_EXP,
81     MPLSF_BOTTOM_OF_STACK,
82     MPLSF_TTL,
83
84     MPLSF_MAX
85 };
86
87 static int mpls_filter[MPLSF_MAX];
88 static hf_register_info mplsf_info[] = {
89
90 /*    {&mpls_filter[MPLSF_PACKET], 
91      {"MPLS Label Switched Packet", "mpls", FT_UINT8, BASE_NONE, NULL, 0x0, 
92       "" }},*/
93
94     {&mpls_filter[MPLSF_LABEL], 
95      {"MPLS Label", "mpls.label", FT_UINT32, BASE_DEC, VALS(special_labels), 0x0, 
96       "" }},
97
98     {&mpls_filter[MPLSF_EXP], 
99      {"MPLS Experimental Bits", "mpls.exp", FT_UINT8, BASE_DEC, NULL, 0x0, 
100       "" }},
101
102     {&mpls_filter[MPLSF_BOTTOM_OF_STACK], 
103      {"MPLS Bottom Of Label Stack", "mpls.bottom", FT_UINT8, BASE_DEC, NULL, 0x0, 
104       "" }},
105
106     {&mpls_filter[MPLSF_TTL], 
107      {"MPLS TTL", "mpls.ttl", FT_UINT8, BASE_DEC, NULL, 0x0, 
108       "" }},
109 };
110
111 /*
112  * Given a 4-byte MPLS label starting at "start", decode this.
113  * Return the label in "label", EXP bits in "exp",
114  * bottom_of_stack in "bos", and TTL in "ttl"
115  */
116 void decode_mpls_label(const unsigned char *start,  
117                        guint32 *label, guint8 *exp,
118                        guint8 *bos, guint8 *ttl)
119 {
120     *label = (start[0] << 12) + (start[1] << 4) + ((start[2] >> 4) & 0xff);
121     *exp = (start[2] >> 1) & 0x7;
122     *bos = (start[2] & 0x1);
123     *ttl = start[3];
124 }
125
126 static void
127 dissect_mpls(const u_char *pd, int offset, frame_data *fd, proto_tree *tree) 
128 {
129     guint32 label;
130     guint8 exp;
131     guint8 bos;
132     guint8 ttl;
133
134     proto_tree  *mpls_tree;
135     proto_item  *ti;
136
137     if (check_col(fd, COL_PROTOCOL)) {
138         col_add_str(fd,COL_PROTOCOL, "MPLS");
139     }
140     
141     if (check_col(fd,COL_INFO)) {
142         col_add_fstr(fd,COL_INFO,"MPLS Label Switched Packet");
143     }
144
145     /* Start Decoding Here. */
146     while (1) {
147         if (!BYTES_ARE_IN_FRAME(offset, 4)) {
148             dissect_data(pd, offset, fd, tree);
149             return;
150         }
151
152         decode_mpls_label(pd+offset, &label, &exp, &bos, &ttl);
153
154         if (tree) {
155
156             ti = proto_tree_add_item(tree, proto_mpls, NullTVB, offset, 4, FALSE);
157             mpls_tree = proto_item_add_subtree(ti, ett_mpls);
158
159             if (label <= MAX_RESERVED)
160                 proto_tree_add_uint_format(mpls_tree, mpls_filter[MPLSF_LABEL], NullTVB,
161                                     offset, 3, label, "Label: %d (%s)", 
162                                     label, val_to_str(label, special_labels, 
163                                                       "Reserved - Unknown"));
164             else
165                 proto_tree_add_uint(mpls_tree, mpls_filter[MPLSF_LABEL], NullTVB,
166                                     offset, 3, label);
167
168             proto_tree_add_uint(mpls_tree,mpls_filter[MPLSF_EXP], NullTVB, 
169                                 offset+2,1, exp);
170             proto_tree_add_uint(mpls_tree,mpls_filter[MPLSF_BOTTOM_OF_STACK], NullTVB, 
171                                 offset+2,1, bos);
172             proto_tree_add_uint(mpls_tree,mpls_filter[MPLSF_TTL], NullTVB, 
173                                 offset+3,1, ttl);
174         }
175         offset += 4;
176         if (bos) break;
177     }
178     dissect_ip(pd, offset, fd, tree);
179 }
180
181 void
182 proto_register_mpls(void)
183 {
184         static gint *ett[] = {
185                 &ett_mpls,
186         };
187
188         proto_mpls = proto_register_protocol("MultiProtocol Label Switching Header", "mpls");
189         proto_register_field_array(proto_mpls, mplsf_info, array_length(mplsf_info));
190         proto_register_subtree_array(ett, array_length(ett));
191 }
192
193 void
194 proto_reg_handoff_mpls(void)
195 {
196         dissector_add("ethertype", ETHERTYPE_MPLS, dissect_mpls);
197 }