From Aaron Woo (via Jeff Weston): Optimized Link State Routing Protocol
[obnox/wireshark/wip.git] / xdlc.c
1 /* xdlc.c
2  * Routines for use by various SDLC-derived protocols, such as HDLC
3  * and its derivatives LAPB, IEEE 802.2 LLC, etc..
4  *
5  * $Id: xdlc.c,v 1.22 2004/01/03 03:49:23 guy Exp $
6  *
7  * Ethereal - Network traffic analyzer
8  * By Gerald Combs <gerald@ethereal.com>
9  * Copyright 1998 Gerald Combs
10  *
11  * This program is free software; you can redistribute it and/or
12  * modify it under the terms of the GNU General Public License
13  * as published by the Free Software Foundation; either version 2
14  * of the License, or (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
24  */
25
26 #ifdef HAVE_CONFIG_H
27 # include "config.h"
28 #endif
29
30 #include <stdio.h>
31 #include <string.h>
32
33 #include <glib.h>
34 #include <epan/packet.h>
35 #include "xdlc.h"
36
37 const value_string ftype_vals[] = {
38     { XDLC_I, "Information frame" },
39     { XDLC_S, "Supervisory frame" },
40     { XDLC_U, "Unnumbered frame" },
41     { 0,      NULL }
42 };
43
44 const value_string stype_vals[] = {
45     { XDLC_RR>>2,   "Receiver ready" },
46     { XDLC_RNR>>2,  "Receiver not ready" },
47     { XDLC_REJ>>2,  "Reject" },
48     { XDLC_SREJ>>2, "Selective reject" },
49     { 0,            NULL }
50 };
51
52 static const value_string modifier_short_vals_cmd[] = {
53     { XDLC_UI,    "UI" },
54     { XDLC_UP,    "UP" },
55     { XDLC_DISC,  "DISC" },
56     { XDLC_UA,    "UA" },
57     { XDLC_SNRM,  "SNRM" },
58     { XDLC_SNRME, "SNRME" },
59     { XDLC_TEST,  "TEST" },
60     { XDLC_SIM,   "SIM" },
61     { XDLC_FRMR,  "FRMR" },
62     { XDLC_CFGR,  "CFGR" },
63     { XDLC_SARM,  "SARM" },
64     { XDLC_SABM,  "SABM" },
65     { XDLC_SARME, "SARME" },
66     { XDLC_SABME, "SABME" },
67     { XDLC_RESET, "RESET" },
68     { XDLC_XID,   "XID" },
69     { XDLC_SNRME, "SNRME" },
70     { XDLC_BCN,   "BCN" },
71     { 0,          NULL }
72 };
73
74 const value_string modifier_vals_cmd[] = {
75     { XDLC_UI>>2,    "Unnumbered Information" },
76     { XDLC_UP>>2,    "Unnumbered Poll" },
77     { XDLC_DISC>>2,  "Disconnect" },
78     { XDLC_UA>>2,    "Unnumbered Acknowledge" },
79     { XDLC_SNRM>>2,  "Set Normal Response Mode" },
80     { XDLC_TEST>>2,  "Test" },
81     { XDLC_SIM>>2,   "Set Initialization Mode" },
82     { XDLC_FRMR>>2,  "Frame reject" },
83     { XDLC_CFGR>>2,  "Configure" },
84     { XDLC_SARM>>2,  "Set Asynchronous Response Mode" },
85     { XDLC_SABM>>2,  "Set Asynchronous Balanced Mode" },
86     { XDLC_SARME>>2, "Set Asynchronous Response Mode Extended" },
87     { XDLC_SABME>>2, "Set Asynchronous Balanced Mode Extended" },
88     { XDLC_RESET>>2, "Reset" },
89     { XDLC_XID>>2,   "Exchange identification" },
90     { XDLC_SNRME>>2, "Set Normal Response Mode Extended" },
91     { XDLC_BCN>>2,   "Beacon" },
92     { 0,             NULL }
93 };
94
95 static const value_string modifier_short_vals_resp[] = {
96     { XDLC_UI,    "UI" },
97     { XDLC_UP,    "UP" },
98     { XDLC_RD,    "RD" },
99     { XDLC_UA,    "UA" },
100     { XDLC_SNRM,  "SNRM" },
101     { XDLC_TEST,  "TEST" },
102     { XDLC_RIM,   "RIM" },
103     { XDLC_FRMR,  "FRMR" },
104     { XDLC_CFGR,  "CFGR" },
105     { XDLC_DM,    "DM" },
106     { XDLC_SABM,  "SABM" },
107     { XDLC_SARME, "SARME" },
108     { XDLC_SABME, "SABME" },
109     { XDLC_RESET, "RESET" },
110     { XDLC_XID,   "XID" },
111     { XDLC_SNRME, "SNRME" },
112     { XDLC_BCN,   "BCN" },
113     { 0,          NULL }
114 };
115
116 const value_string modifier_vals_resp[] = {
117     { XDLC_UI>>2,    "Unnumbered Information" },
118     { XDLC_UP>>2,    "Unnumbered Poll" },
119     { XDLC_RD>>2,    "Request Disconnect" },
120     { XDLC_UA>>2,    "Unnumbered Acknowledge" },
121     { XDLC_SNRM>>2,  "Set Normal Response Mode" },
122     { XDLC_TEST>>2,  "Test" },
123     { XDLC_RIM>>2,   "Request Initialization Mode" },
124     { XDLC_FRMR>>2,  "Frame reject" },
125     { XDLC_CFGR>>2,  "Configure" },
126     { XDLC_DM>>2,    "Disconnected mode" },
127     { XDLC_SABM>>2,  "Set Asynchronous Balanced Mode" },
128     { XDLC_SARME>>2, "Set Asynchronous Response Mode Extended" },
129     { XDLC_SABME>>2, "Set Asynchronous Balanced Mode Extended" },
130     { XDLC_RESET>>2, "Reset" },
131     { XDLC_XID>>2,   "Exchange identification" },
132     { XDLC_SNRME>>2, "Set Normal Response Mode Extended" },
133     { XDLC_BCN>>2,   "Beacon" },
134     { 0,             NULL }
135 };
136
137 int
138 get_xdlc_control(const guchar *pd, int offset, int is_extended)
139 {
140     guint16 control;
141
142     switch (pd[offset] & 0x03) {
143
144     case XDLC_S:
145     default:
146         /*
147          * Supervisory or Information frame.
148          */
149         if (is_extended)
150                 control = pletohs(&pd[offset]);
151         else
152                 control = pd[offset];
153         break;
154
155     case XDLC_U:
156         /*
157          * Unnumbered frame.
158          *
159          * XXX - is this two octets, with a P/F bit, in HDLC extended
160          * operation?  It's one octet in LLC, even though the control
161          * field of I and S frames is a 2-byte extended-operation field
162          * in LLC.  Given that there are no sequence numbers in the
163          * control field of a U frame, there doesn't appear to be any
164          * need for it to be 2 bytes in extended operation.
165          */
166         control = pd[offset];
167         break;
168     }
169     return control;
170 }
171
172 int
173 dissect_xdlc_control(tvbuff_t *tvb, int offset, packet_info *pinfo,
174   proto_tree *xdlc_tree, int hf_xdlc_control, gint ett_xdlc_control,
175   const xdlc_cf_items *cf_items_nonext, const xdlc_cf_items *cf_items_ext,
176   int is_response, int is_extended, int append_info)
177 {
178     guint16 control;
179     int control_len;
180     const xdlc_cf_items *cf_items;
181     char *control_format;
182     guint16 poll_final;
183     char info[80];
184     proto_tree *tc, *control_tree;
185     gchar *frame_type = NULL;
186     gchar *modifier;
187
188     switch (tvb_get_guint8(tvb, offset) & 0x03) {
189
190     case XDLC_S:
191         if (is_extended) {
192             control = tvb_get_letohs(tvb, offset);
193             control_len = 2;
194             cf_items = cf_items_ext;
195             control_format = "Control field: %s (0x%04X)";
196         } else {
197             control = tvb_get_guint8(tvb, offset);
198             control_len = 1;
199             cf_items = cf_items_nonext;
200             control_format = "Control field: %s (0x%02X)";
201         }
202         /*
203          * Supervisory frame.
204          */
205         switch (control & XDLC_S_FTYPE_MASK) {
206         case XDLC_RR:
207             frame_type = "RR";
208             break;
209
210         case XDLC_RNR:
211             frame_type = "RNR";
212             break;
213
214         case XDLC_REJ:
215             frame_type = "REJ";
216             break;
217
218         case XDLC_SREJ:
219             frame_type = "SREJ";
220             break;
221         }
222         if (is_extended) {
223             poll_final = (control & XDLC_P_F_EXT);
224             sprintf(info, "S%s, %sN(R) = %u", frame_type,
225                         (poll_final ?
226                             (is_response ? "func = F, " : "func = P, ") :
227                             ""),
228                         (control & XDLC_N_R_EXT_MASK) >> XDLC_N_R_EXT_SHIFT);
229         } else {
230             poll_final = (control & XDLC_P_F);
231             sprintf(info, "S%s, %sN(R) = %u", frame_type,
232                         (poll_final ?
233                             (is_response ? "func = F, " : "func = P, ") :
234                             ""),
235                         (control & XDLC_N_R_MASK) >> XDLC_N_R_SHIFT);
236         }
237         if (check_col(pinfo->cinfo, COL_INFO)) {
238             if (append_info) {
239                 col_append_str(pinfo->cinfo, COL_INFO, ", ");
240                 col_append_str(pinfo->cinfo, COL_INFO, info);
241             } else
242                 col_add_str(pinfo->cinfo, COL_INFO, info);
243         }
244         if (xdlc_tree) {
245             tc = proto_tree_add_uint_format(xdlc_tree, hf_xdlc_control, tvb,
246                 offset, control_len, control, control_format, info, control);
247             control_tree = proto_item_add_subtree(tc, ett_xdlc_control);
248             proto_tree_add_uint(control_tree, *cf_items->hf_xdlc_n_r,
249                 tvb, offset, control_len, control);
250             if (poll_final) {
251                 proto_tree_add_boolean(control_tree,
252                         (is_response ? *cf_items->hf_xdlc_f :
253                                        *cf_items->hf_xdlc_p),
254                         tvb, offset, control_len, control);
255             }
256             proto_tree_add_uint(control_tree, *cf_items->hf_xdlc_s_ftype,
257                 tvb, offset, control_len, control);
258             /* This will always say it's a supervisory frame */
259             proto_tree_add_uint(control_tree, *cf_items->hf_xdlc_ftype_s_u,
260                 tvb, offset, control_len, control);
261         }
262         break;
263
264     case XDLC_U:
265         /*
266          * Unnumbered frame.
267          *
268          * XXX - is this two octets, with a P/F bit, in HDLC extended
269          * operation?  It's one octet in LLC, even though the control
270          * field of I and S frames is a 2-byte extended-operation field
271          * in LLC.  Given that there are no sequence numbers in the
272          * control field of a U frame, there doesn't appear to be any
273          * need for it to be 2 bytes in extended operation.
274          */
275         control = tvb_get_guint8(tvb, offset);
276         control_len = 1;
277         cf_items = cf_items_nonext;
278         control_format = "Control field: %s (0x%02X)";
279         if (is_response) {
280                 modifier = match_strval(control & XDLC_U_MODIFIER_MASK,
281                         modifier_short_vals_resp);
282         } else {
283                 modifier = match_strval(control & XDLC_U_MODIFIER_MASK,
284                         modifier_short_vals_cmd);
285         }
286         if (modifier == NULL)
287                 modifier = "Unknown";
288         poll_final = (control & XDLC_P_F);
289         sprintf(info, "U%s, func = %s",
290                 (poll_final ?
291                     (is_response ? " F" : " P") :
292                     ""),
293                 modifier);
294         if (check_col(pinfo->cinfo, COL_INFO)) {
295             if (append_info) {
296                 col_append_str(pinfo->cinfo, COL_INFO, ", ");
297                 col_append_str(pinfo->cinfo, COL_INFO, info);
298             } else
299                 col_add_str(pinfo->cinfo, COL_INFO, info);
300         }
301         if (xdlc_tree) {
302             tc = proto_tree_add_uint_format(xdlc_tree, hf_xdlc_control, tvb,
303                 offset, control_len, control, control_format, info, control);
304             control_tree = proto_item_add_subtree(tc, ett_xdlc_control);
305             if (poll_final) {
306                 proto_tree_add_boolean(control_tree,
307                         (is_response ? *cf_items->hf_xdlc_f:
308                                        *cf_items->hf_xdlc_p),
309                         tvb, offset, control_len, control);
310             }
311             proto_tree_add_uint(control_tree,
312                 (is_response ? *cf_items->hf_xdlc_u_modifier_resp :
313                                *cf_items->hf_xdlc_u_modifier_cmd),
314                 tvb, offset, control_len, control);
315             /* This will always say it's an unnumbered frame */
316             proto_tree_add_uint(control_tree, *cf_items->hf_xdlc_ftype_s_u,
317                 tvb, offset, control_len, control);
318         }
319         break;
320
321     default:
322         /*
323          * Information frame.
324          */
325         if (is_extended) {
326             control = tvb_get_letohs(tvb, offset);
327             control_len = 2;
328             cf_items = cf_items_ext;
329             control_format = "Control field: %s (0x%04X)";
330             poll_final = (control & XDLC_P_F_EXT);
331             sprintf(info, "I%s, N(R) = %u, N(S) = %u",
332                         ((control & XDLC_P_F_EXT) ? " P" : ""),
333                         (control & XDLC_N_R_EXT_MASK) >> XDLC_N_R_EXT_SHIFT,
334                         (control & XDLC_N_S_EXT_MASK) >> XDLC_N_S_EXT_SHIFT);
335         } else {
336             control = tvb_get_guint8(tvb, offset);
337             control_len = 1;
338             cf_items = cf_items_nonext;
339             control_format = "Control field: %s (0x%02X)";
340             poll_final = (control & XDLC_P_F);
341             sprintf(info, "I%s, N(R) = %u, N(S) = %u",
342                         ((control & XDLC_P_F) ? " P" : ""),
343                         (control & XDLC_N_R_MASK) >> XDLC_N_R_SHIFT,
344                         (control & XDLC_N_S_MASK) >> XDLC_N_S_SHIFT);
345         }
346         if (check_col(pinfo->cinfo, COL_INFO)) {
347             if (append_info) {
348                 col_append_str(pinfo->cinfo, COL_INFO, ", ");
349                 col_append_str(pinfo->cinfo, COL_INFO, info);
350             } else
351                 col_add_str(pinfo->cinfo, COL_INFO, info);
352         }
353         if (xdlc_tree) {
354             tc = proto_tree_add_uint_format(xdlc_tree, hf_xdlc_control, tvb,
355                 offset, control_len, control, control_format, info, control);
356             control_tree = proto_item_add_subtree(tc, ett_xdlc_control);
357             proto_tree_add_uint(control_tree, *cf_items->hf_xdlc_n_r,
358                 tvb, offset, control_len, control);
359             proto_tree_add_uint(control_tree, *cf_items->hf_xdlc_n_s,
360                 tvb, offset, control_len, control);
361             if (poll_final) {
362                 proto_tree_add_boolean(control_tree, *cf_items->hf_xdlc_p,
363                         tvb, offset, control_len, control);
364             }
365             /* This will always say it's an information frame */
366             proto_tree_add_uint(control_tree, *cf_items->hf_xdlc_ftype_i,
367                 tvb, offset, control_len, control);
368         }
369         break;
370     }
371     return control;
372 }