improve ripng dissector. decode route entries in more detail.
[metze/wireshark/wip.git] / packet-ripng.c
1 /* packet-ripng.c
2  * Routines for RIPng disassembly
3  * (c) Copyright Jun-ichiro itojun Hagino <itojun@itojun.org>
4  * derived from packet-rip.c
5  *
6  * $Id: packet-ripng.c,v 1.5 1999/10/18 00:37:35 itojun 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 #include "config.h"
29
30 #ifdef HAVE_SYS_TYPES_H
31 #include <sys/types.h>
32 #endif
33
34 #ifdef HAVE_NETINET_IN_H
35 #include <netinet/in.h>
36 #endif
37
38 #include <glib.h>
39 #include "packet.h"
40 #include "packet-ipv6.h"
41 #include "packet-ripng.h"
42
43 #ifndef offsetof
44 #define offsetof(type, member)  ((size_t)(&((type *)0)->member))
45 #endif
46
47 static int proto_ripng = -1;
48 static int hf_ripng_cmd = -1;
49 static int hf_ripng_version = -1;
50
51 void 
52 dissect_ripng(const u_char *pd, int offset, frame_data *fd, proto_tree *tree) {
53     struct rip6 rip6;
54     struct netinfo6 ni6;
55     proto_tree *ripng_tree = NULL;
56     proto_tree *subtree = NULL;
57     proto_item *ti; 
58     static const value_string cmdvals[] = {
59         { RIP6_REQUEST, "Request" },
60         { RIP6_RESPONSE, "Response" },
61         { 0, NULL },
62     };
63     const char *cmd;
64
65     /* avoid alignment problem */
66     memcpy(&rip6, &pd[offset], sizeof(rip6));
67   
68     cmd = val_to_str(rip6.rip6_cmd, cmdvals, "Unknown");
69
70     if (check_col(fd, COL_PROTOCOL))
71         col_add_fstr(fd, COL_PROTOCOL, "RIPng version %d", rip6.rip6_vers);
72     if (check_col(fd, COL_INFO))
73         col_add_fstr(fd, COL_INFO, "%s", cmd); 
74
75     if (tree) {
76         ti = proto_tree_add_item(tree, proto_ripng, offset, END_OF_FRAME, NULL);
77         ripng_tree = proto_item_add_subtree(ti, ETT_RIPNG);
78
79         proto_tree_add_item_format(ripng_tree, hf_ripng_cmd, offset, 1,
80             rip6.rip6_cmd,
81             "Command: %s (%u)", cmd, rip6.rip6_cmd); 
82         proto_tree_add_item(ripng_tree, hf_ripng_version, offset + 1, 1,
83             rip6.rip6_vers);
84
85         offset += 4;
86         while ((pi.captured_len - offset) >= sizeof(struct netinfo6)){
87             memcpy(&ni6, &pd[offset], sizeof(ni6));
88             if (ni6.rip6_tag) {
89                 ti = proto_tree_add_text(ripng_tree, offset,
90                                 sizeof(ni6), "IP Address: %s/%d, Metric: %ld, tag: 0x%04x",
91                                 ip6_to_str(&ni6.rip6_dest),
92                                 ni6.rip6_plen,
93                                 ni6.rip6_metric,
94                                 ntohs(ni6.rip6_tag));
95             } else {
96                 ti = proto_tree_add_text(ripng_tree, offset,
97                                 sizeof(ni6), "IP Address: %s/%d, Metric: %ld",
98                                 ip6_to_str(&ni6.rip6_dest),
99                                 ni6.rip6_plen,
100                                 ni6.rip6_metric);
101             }
102             subtree = proto_item_add_subtree(ti, ETT_RIPNG_ADDR);
103             proto_tree_add_text(subtree,
104                         offset + offsetof(struct netinfo6, rip6_dest),
105                         sizeof(ni6.rip6_dest), "IP Address: %s",
106                         ip6_to_str(&ni6.rip6_dest));
107             proto_tree_add_text(subtree,
108                         offset + offsetof(struct netinfo6, rip6_tag),
109                         sizeof(ni6.rip6_tag), "Tag: 0x%04x",
110                         ntohs(ni6.rip6_tag));
111             proto_tree_add_text(subtree,
112                         offset + offsetof(struct netinfo6, rip6_plen),
113                         sizeof(ni6.rip6_plen), "Prefix length: %d",
114                         ni6.rip6_plen);
115             proto_tree_add_text(subtree,
116                         offset + offsetof(struct netinfo6, rip6_metric),
117                         sizeof(ni6.rip6_metric), "Metric: %d",
118                         ni6.rip6_metric);
119
120             offset += sizeof(ni6);
121         }
122     }
123 }
124
125 void
126 proto_register_ripng(void)
127 {
128     static hf_register_info hf[] = {
129       { &hf_ripng_cmd,
130         { "Command",            "ripng.cmd",
131                                 FT_UINT8, BASE_DEC, NULL, 0x0, "" }},
132       { &hf_ripng_version,
133         { "Version",            "ripng.version",
134                                 FT_UINT8, BASE_DEC, NULL, 0x0, "" }},
135     };
136
137     proto_ripng = proto_register_protocol("RIPng", "ripng");
138     proto_register_field_array(proto_ripng, hf, array_length(hf));
139 }