Support for HTTP methods added by GENA (the uPnP protocol), and for the
[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.25 2000/12/29 02:27:21 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 "packet-x25.h"
40 #include "xdlc.h"
41
42 #define FROM_DCE        0x80
43
44 static int proto_lapb = -1;
45 static int hf_lapb_address = -1;
46 static int hf_lapb_control = -1;
47
48 static gint ett_lapb = -1;
49 static gint ett_lapb_control = -1;
50
51 static void
52 dissect_lapb(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
53 {
54     proto_tree          *lapb_tree, *ti;
55     int                 is_response;
56     guint8              byte0;
57     tvbuff_t            *next_tvb;
58
59     CHECK_DISPLAY_AS_DATA(proto_lapb, tvb, pinfo, tree);
60
61     pinfo->current_proto = "LAPB";
62
63     if (check_col(pinfo->fd, COL_PROTOCOL))
64         col_set_str(pinfo->fd, COL_PROTOCOL, "LAPB");
65
66     if (pinfo->pseudo_header->x25.flags & FROM_DCE) {
67         if(check_col(pinfo->fd, COL_RES_DL_DST))
68             col_set_str(pinfo->fd, COL_RES_DL_DST, "DTE");
69         if(check_col(pinfo->fd, COL_RES_DL_SRC))
70             col_set_str(pinfo->fd, COL_RES_DL_SRC, "DCE");
71     }
72     else {
73         if(check_col(pinfo->fd, COL_RES_DL_DST))
74             col_set_str(pinfo->fd, COL_RES_DL_DST, "DCE");
75         if(check_col(pinfo->fd, COL_RES_DL_SRC))
76             col_set_str(pinfo->fd, COL_RES_DL_SRC, "DTE");
77     }
78
79     byte0 = tvb_get_guint8(tvb, 0);
80
81     if (byte0 != 0x01 && byte0 != 0x03) /* invalid LAPB frame */
82     {
83         if (check_col(pinfo->fd, COL_INFO))
84             col_set_str(pinfo->fd, COL_INFO, "Invalid LAPB frame");
85         if (tree)
86             ti = proto_tree_add_protocol_format(tree, proto_lapb, tvb, 0,
87                             tvb_length(tvb), "Invalid LAPB frame");
88         return;
89     }
90
91     if (((pinfo->pseudo_header->x25.flags & FROM_DCE) && byte0 == 0x01) ||
92        (!(pinfo->pseudo_header->x25.flags & FROM_DCE) && byte0 == 0x03))
93         is_response = TRUE;
94     else
95         is_response = FALSE;
96
97     if (tree) {
98         ti = proto_tree_add_protocol_format(tree, proto_lapb, tvb, 0, 2,
99                                             "LAPB");
100         lapb_tree = proto_item_add_subtree(ti, ett_lapb);
101         proto_tree_add_uint_format(lapb_tree, hf_lapb_address, tvb, 0, 1, byte0,
102                                        "Address: 0x%02X", byte0);
103     }
104     else
105         lapb_tree = NULL;
106
107     dissect_xdlc_control(tvb, 1, pinfo, lapb_tree, hf_lapb_control,
108             ett_lapb_control, is_response, FALSE);
109
110     /* not end of frame ==> X.25 */
111     if (tvb_length(tvb) > 2) {
112             next_tvb = tvb_new_subset(tvb, 2, -1, -1);
113             dissect_x25(next_tvb, pinfo, tree);
114     }
115 }
116
117 void
118 proto_register_lapb(void)
119 {
120     static hf_register_info hf[] = {
121         { &hf_lapb_address,
122           { "Address Field", "lapb.address", FT_UINT8, BASE_HEX, NULL, 0x0, 
123                 "" }},
124
125         { &hf_lapb_control,
126           { "Control Field", "lapb.control", FT_UINT8, BASE_HEX, NULL, 0x0,
127                 "" }},
128     };
129     static gint *ett[] = {
130         &ett_lapb,
131         &ett_lapb_control,
132     };
133
134     proto_lapb = proto_register_protocol ("Link Access Procedure Balanced (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);
139 }
140
141 void
142 proto_reg_handoff_lapb(void)
143 {
144     dissector_add("wtap_encap", WTAP_ENCAP_LAPB, dissect_lapb);
145 }