From Joerg Mayer:
[obnox/wireshark/wip.git] / plugins / docsis / packet-dsarsp.c
1 /* packet-dsarsp.c
2  * Routines for Dynamic Service Addition Response dissection
3  * Copyright 2002, Anand V. Narwani <anarwani@cisco.com>
4  *
5  * Ethereal - Network traffic analyzer
6  * By Gerald Combs <gerald@ethereal.com>
7  * Copyright 1998 Gerald Combs
8  *
9  * This program is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU General Public License
11  * as published by the Free Software Foundation; either version 2
12  * of the License, or (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
22  */
23
24 #ifdef HAVE_CONFIG_H
25 # include "config.h"
26 #endif
27
28 #include "plugins/plugin_api.h"
29 #include "plugins/plugin_api_defs.h"
30 #include "moduleinfo.h"
31
32 #include <stdio.h>
33 #include <stdlib.h>
34 #include <string.h>
35
36 #ifdef HAVE_SYS_TYPES_H
37 # include <sys/types.h>
38 #endif
39
40 #ifdef HAVE_NETINET_IN_H
41 # include <netinet/in.h>
42 #endif
43
44 #include <gmodule.h>
45
46 #include <epan/packet.h>
47
48 /* Initialize the protocol and registered fields */
49 static int proto_docsis_dsarsp = -1;
50 static int hf_docsis_dsarsp = -1;
51 static int hf_docsis_dsarsp_tranid = -1;
52 static int hf_docsis_dsarsp_response = -1;
53 static dissector_handle_t docsis_tlv_handle;
54
55
56 /* Initialize the subtree pointers */
57 static gint ett_docsis_dsarsp = -1;
58
59 extern value_string docsis_conf_code[];
60
61 /* Code to actually dissect the packets */
62 static void
63 dissect_dsarsp (tvbuff_t * tvb, packet_info * pinfo, proto_tree * tree)
64 {
65
66   proto_item *it;
67   proto_tree *dsarsp_tree;
68   guint16 transid;
69   guint16 tlv_data_len;
70   guint8 response;
71   tvbuff_t *next_tvb;
72
73   transid = tvb_get_ntohs (tvb, 0);
74   response = tvb_get_guint8 (tvb, 2);
75   tlv_data_len = tvb_length_remaining (tvb, 3);
76
77   if (check_col (pinfo->cinfo, COL_INFO))
78     {
79       col_clear (pinfo->cinfo, COL_INFO);
80       col_add_fstr (pinfo->cinfo, COL_INFO,
81                     "Dynamic Service Add Response ID = %u (%s)", transid,
82                     val_to_str (response, docsis_conf_code, "%s"));
83     }
84
85   if (tree)
86     {
87       it =
88         proto_tree_add_protocol_format (tree, proto_docsis_dsarsp, tvb, 0,
89                                         tvb_length_remaining (tvb, 0),
90                                         "DSA Response");
91       dsarsp_tree = proto_item_add_subtree (it, ett_docsis_dsarsp);
92       proto_tree_add_item (dsarsp_tree, hf_docsis_dsarsp_tranid, tvb, 0, 2,
93                            FALSE);
94       proto_tree_add_item (dsarsp_tree, hf_docsis_dsarsp_response, tvb, 2, 1,
95                            FALSE);
96
97       /* Call dissector for Appendix C TLV's */
98       next_tvb = tvb_new_subset (tvb, 3, tlv_data_len, tlv_data_len);
99       call_dissector (docsis_tlv_handle, next_tvb, pinfo, dsarsp_tree);
100     }
101
102
103
104 }
105
106
107
108
109 /* Register the protocol with Ethereal */
110
111 /* this format is require because a script is used to build the C function
112    that calls all the protocol registration.
113 */
114
115
116 void
117 proto_register_docsis_dsarsp (void)
118 {
119
120 /* Setup list of header fields  See Section 1.6.1 for details*/
121   static hf_register_info hf[] = {
122     {&hf_docsis_dsarsp,
123      {"Dynamic Service Add Request", "docsis.dsarsp",
124       FT_BYTES, BASE_HEX, NULL, 0x0,
125       "Dynamic Service Add Request", HFILL}
126      },
127     {&hf_docsis_dsarsp_tranid,
128      {"Transaction Id", "docsis.dsarsp.tranid",
129       FT_UINT16, BASE_DEC, NULL, 0x0,
130       "Service Identifier", HFILL}
131      },
132     {&hf_docsis_dsarsp_response,
133      {"Confirmation Code", "docsis.dsarsp.confcode",
134       FT_UINT8, BASE_DEC, VALS (docsis_conf_code), 0x0,
135       "Confirmation Code", HFILL}
136      },
137   };
138
139 /* Setup protocol subtree array */
140   static gint *ett[] = {
141     &ett_docsis_dsarsp,
142   };
143
144 /* Register the protocol name and description */
145   proto_docsis_dsarsp =
146     proto_register_protocol ("DOCSIS Dynamic Service Addition Response",
147                              "DOCSIS DSA-RSP", "docsis_dsarsp");
148
149 /* Required function calls to register the header fields and subtrees used */
150   proto_register_field_array (proto_docsis_dsarsp, hf, array_length (hf));
151   proto_register_subtree_array (ett, array_length (ett));
152
153   register_dissector ("docsis_dsarsp", dissect_dsarsp, proto_docsis_dsarsp);
154 }
155
156
157 /* If this dissector uses sub-dissector registration add a registration routine.
158    This format is required because a script is used to find these routines and
159    create the code that calls these routines.
160 */
161 void
162 proto_reg_handoff_docsis_dsarsp (void)
163 {
164   dissector_handle_t docsis_dsarsp_handle;
165
166   docsis_dsarsp_handle = find_dissector ("docsis_dsarsp");
167   docsis_tlv_handle = find_dissector ("docsis_tlv");
168   dissector_add ("docsis_mgmt", 0x10, docsis_dsarsp_handle);
169
170 }