Get rid of a now-unused variable; it's the only variable of type
[obnox/wireshark/wip.git] / packet-lapb.c
1 /* packet-lapb.c
2  * Routines for lapb frame disassembly
3  * Olivier Abad <oabad@cybercable.fr>
4  *
5  * $Id: packet-lapb.c,v 1.30 2001/06/18 02:17:48 guy Exp $
6  *
7  * Ethereal - Network traffic analyzer
8  * By Gerald Combs <gerald@zing.org>
9  * Copyright 1998
10  *
11  * 
12  * This program is free software; you can redistribute it and/or
13  * modify it under the terms of the GNU General Public License
14  * as published by the Free Software Foundation; either version 2
15  * of the License, or (at your option) any later version.
16  * 
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  * GNU General Public License for more details.
21  * 
22  * You should have received a copy of the GNU General Public License
23  * along with this program; if not, write to the Free Software
24  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
25  */
26
27 #ifdef HAVE_CONFIG_H
28 # include "config.h"
29 #endif
30
31 #ifdef HAVE_SYS_TYPES_H
32 # include <sys/types.h>
33 #endif
34
35 #include <stdio.h>
36 #include <glib.h>
37 #include <string.h>
38 #include "packet.h"
39 #include "xdlc.h"
40
41 #define FROM_DCE        0x80
42
43 static int proto_lapb = -1;
44 static int hf_lapb_address = -1;
45 static int hf_lapb_control = -1;
46
47 static gint ett_lapb = -1;
48 static gint ett_lapb_control = -1;
49
50 static dissector_handle_t x25_handle;
51
52 static void
53 dissect_lapb(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
54 {
55     proto_tree          *lapb_tree, *ti;
56     int                 is_response;
57     guint8              byte0;
58     tvbuff_t            *next_tvb;
59
60     if (check_col(pinfo->fd, COL_PROTOCOL))
61         col_set_str(pinfo->fd, COL_PROTOCOL, "LAPB");
62     if (check_col(pinfo->fd, COL_INFO))
63         col_clear(pinfo->fd, COL_INFO);
64
65     if (pinfo->pseudo_header->x25.flags & FROM_DCE) {
66         if(check_col(pinfo->fd, COL_RES_DL_DST))
67             col_set_str(pinfo->fd, COL_RES_DL_DST, "DTE");
68         if(check_col(pinfo->fd, COL_RES_DL_SRC))
69             col_set_str(pinfo->fd, COL_RES_DL_SRC, "DCE");
70     }
71     else {
72         if(check_col(pinfo->fd, COL_RES_DL_DST))
73             col_set_str(pinfo->fd, COL_RES_DL_DST, "DCE");
74         if(check_col(pinfo->fd, COL_RES_DL_SRC))
75             col_set_str(pinfo->fd, COL_RES_DL_SRC, "DTE");
76     }
77
78     byte0 = tvb_get_guint8(tvb, 0);
79
80     if (byte0 != 0x01 && byte0 != 0x03) /* invalid LAPB frame */
81     {
82         if (check_col(pinfo->fd, COL_INFO))
83             col_set_str(pinfo->fd, COL_INFO, "Invalid LAPB frame");
84         if (tree)
85             ti = proto_tree_add_protocol_format(tree, proto_lapb, tvb, 0,
86                             tvb_length(tvb), "Invalid LAPB frame");
87         return;
88     }
89
90     if (((pinfo->pseudo_header->x25.flags & FROM_DCE) && byte0 == 0x01) ||
91        (!(pinfo->pseudo_header->x25.flags & FROM_DCE) && byte0 == 0x03))
92         is_response = TRUE;
93     else
94         is_response = FALSE;
95
96     if (tree) {
97         ti = proto_tree_add_protocol_format(tree, proto_lapb, tvb, 0, 2,
98                                             "LAPB");
99         lapb_tree = proto_item_add_subtree(ti, ett_lapb);
100         proto_tree_add_uint_format(lapb_tree, hf_lapb_address, tvb, 0, 1, byte0,
101                                        "Address: 0x%02X", byte0);
102     }
103     else
104         lapb_tree = NULL;
105
106     dissect_xdlc_control(tvb, 1, pinfo, lapb_tree, hf_lapb_control,
107             ett_lapb_control, is_response, FALSE);
108
109     /* not end of frame ==> X.25 */
110     if (tvb_length(tvb) > 2) {
111             next_tvb = tvb_new_subset(tvb, 2, -1, -1);
112             call_dissector(x25_handle, next_tvb, pinfo, tree);
113     }
114 }
115
116 void
117 proto_register_lapb(void)
118 {
119     static hf_register_info hf[] = {
120         { &hf_lapb_address,
121           { "Address Field", "lapb.address", FT_UINT8, BASE_HEX, NULL, 0x0, 
122                 "Address", HFILL }},
123
124         { &hf_lapb_control,
125           { "Control Field", "lapb.control", FT_UINT8, BASE_HEX, NULL, 0x0,
126                 "Control field", HFILL }},
127     };
128     static gint *ett[] = {
129         &ett_lapb,
130         &ett_lapb_control,
131     };
132
133     proto_lapb = proto_register_protocol("Link Access Procedure Balanced (LAPB)",
134                                          "LAPB", "lapb");
135     proto_register_field_array (proto_lapb, hf, array_length(hf));
136     proto_register_subtree_array(ett, array_length(ett));
137
138     register_dissector("lapb", dissect_lapb, proto_lapb);
139 }
140
141 void
142 proto_reg_handoff_lapb(void)
143 {
144     /*
145      * Get a handle for the X.25 dissector.
146      */
147     x25_handle = find_dissector("x.25");
148
149     dissector_add("wtap_encap", WTAP_ENCAP_LAPB, dissect_lapb, proto_lapb);
150 }