There's no need to allocate and fill in an array of sub-authorities and
[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.35 2002/04/09 08:15:02 guy Exp $
6  *
7  * Ethereal - Network traffic analyzer
8  * By Gerald Combs <gerald@ethereal.com>
9  * Copyright 1998
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 #ifdef HAVE_SYS_TYPES_H
31 # include <sys/types.h>
32 #endif
33
34 #include <stdio.h>
35 #include <glib.h>
36 #include <string.h>
37 #include <epan/packet.h>
38 #include "xdlc.h"
39
40 static int proto_lapb = -1;
41 static int hf_lapb_address = -1;
42 static int hf_lapb_control = -1;
43
44 static gint ett_lapb = -1;
45 static gint ett_lapb_control = -1;
46
47 static dissector_handle_t x25_dir_handle;
48
49 static void
50 dissect_lapb(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
51 {
52     proto_tree          *lapb_tree, *ti;
53     int                 is_response;
54     guint8              byte0;
55     tvbuff_t            *next_tvb;
56
57     if (check_col(pinfo->cinfo, COL_PROTOCOL))
58         col_set_str(pinfo->cinfo, COL_PROTOCOL, "LAPB");
59     if (check_col(pinfo->cinfo, COL_INFO))
60         col_clear(pinfo->cinfo, COL_INFO);
61
62     if (pinfo->pseudo_header->x25.flags & FROM_DCE) {
63         if(check_col(pinfo->cinfo, COL_RES_DL_DST))
64             col_set_str(pinfo->cinfo, COL_RES_DL_DST, "DTE");
65         if(check_col(pinfo->cinfo, COL_RES_DL_SRC))
66             col_set_str(pinfo->cinfo, COL_RES_DL_SRC, "DCE");
67     }
68     else {
69         if(check_col(pinfo->cinfo, COL_RES_DL_DST))
70             col_set_str(pinfo->cinfo, COL_RES_DL_DST, "DCE");
71         if(check_col(pinfo->cinfo, COL_RES_DL_SRC))
72             col_set_str(pinfo->cinfo, COL_RES_DL_SRC, "DTE");
73     }
74
75     byte0 = tvb_get_guint8(tvb, 0);
76
77     if (byte0 != 0x01 && byte0 != 0x03) /* invalid LAPB frame */
78     {
79         if (check_col(pinfo->cinfo, COL_INFO))
80             col_set_str(pinfo->cinfo, COL_INFO, "Invalid LAPB frame");
81         if (tree)
82             ti = proto_tree_add_protocol_format(tree, proto_lapb, tvb, 0, -1,
83                             "Invalid LAPB frame");
84         return;
85     }
86
87     if (((pinfo->pseudo_header->x25.flags & FROM_DCE) && byte0 == 0x01) ||
88        (!(pinfo->pseudo_header->x25.flags & FROM_DCE) && byte0 == 0x03))
89         is_response = TRUE;
90     else
91         is_response = FALSE;
92
93     if (tree) {
94         ti = proto_tree_add_protocol_format(tree, proto_lapb, tvb, 0, 2,
95                                             "LAPB");
96         lapb_tree = proto_item_add_subtree(ti, ett_lapb);
97         proto_tree_add_uint_format(lapb_tree, hf_lapb_address, tvb, 0, 1, byte0,
98                                        "Address: 0x%02X", byte0);
99     }
100     else
101         lapb_tree = NULL;
102
103     dissect_xdlc_control(tvb, 1, pinfo, lapb_tree, hf_lapb_control,
104             ett_lapb_control, is_response, FALSE);
105
106     /* not end of frame ==> X.25 */
107     if (tvb_reported_length(tvb) > 2) {
108             next_tvb = tvb_new_subset(tvb, 2, -1, -1);
109             call_dissector(x25_dir_handle, next_tvb, pinfo, tree);
110     }
111 }
112
113 void
114 proto_register_lapb(void)
115 {
116     static hf_register_info hf[] = {
117         { &hf_lapb_address,
118           { "Address Field", "lapb.address", FT_UINT8, BASE_HEX, NULL, 0x0, 
119                 "Address", HFILL }},
120
121         { &hf_lapb_control,
122           { "Control Field", "lapb.control", FT_UINT8, BASE_HEX, NULL, 0x0,
123                 "Control field", HFILL }},
124     };
125     static gint *ett[] = {
126         &ett_lapb,
127         &ett_lapb_control,
128     };
129
130     proto_lapb = proto_register_protocol("Link Access Procedure Balanced (LAPB)",
131                                          "LAPB", "lapb");
132     proto_register_field_array (proto_lapb, hf, array_length(hf));
133     proto_register_subtree_array(ett, array_length(ett));
134
135     register_dissector("lapb", dissect_lapb, proto_lapb);
136 }
137
138 void
139 proto_reg_handoff_lapb(void)
140 {
141     dissector_handle_t lapb_handle;
142
143     /*
144      * Get a handle for the X.25 dissector; we will be getting an
145      * X.25 pseudo-header, so call the dissector that can handle it.
146      */
147     x25_dir_handle = find_dissector("x.25_dir");
148
149     lapb_handle = find_dissector("lapb");
150     dissector_add("wtap_encap", WTAP_ENCAP_LAPB, lapb_handle);
151 }