Add tvbuff class.
[metze/wireshark/wip.git] / packet-lapb.c
1 /* packet-lapb.c
2  * Routines for lapb frame disassembly
3  * Olivier Abad <abad@daba.dhis.net>
4  *
5  * $Id: packet-lapb.c,v 1.13 2000/05/11 08:15:18 gram 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 void
52 dissect_lapb(const u_char *pd, frame_data *fd, proto_tree *tree)
53 {
54     proto_tree *lapb_tree, *ti;
55     int is_response;
56
57     if (check_col(fd, COL_PROTOCOL))
58         col_add_str(fd, COL_PROTOCOL, "LAPB");
59
60     if(check_col(fd, COL_RES_DL_SRC))
61         col_add_fstr(fd, COL_RES_DL_SRC, "0x%02X", pd[0]);
62     if (pd[0] != 0x01 && pd[0] != 0x03) /* invalid LAPB frame */
63     {
64         if (check_col(fd, COL_INFO))
65             col_add_str(fd, COL_INFO, "Invalid LAPB frame");
66         if (tree)
67             ti = proto_tree_add_protocol_format(tree, proto_lapb, NullTVB, 0, fd->cap_len,
68                                             "Invalid LAPB frame");
69         return;
70     }
71
72     if (fd->pseudo_header.x25.flags & FROM_DCE) {
73         if(check_col(fd, COL_RES_DL_DST))
74             col_add_str(fd, COL_RES_DL_DST, "DTE");
75         if(check_col(fd, COL_RES_DL_SRC))
76             col_add_str(fd, COL_RES_DL_SRC, "DCE");
77     }
78     else {
79         if(check_col(fd, COL_RES_DL_DST))
80             col_add_str(fd, COL_RES_DL_DST, "DCE");
81         if(check_col(fd, COL_RES_DL_SRC))
82             col_add_str(fd, COL_RES_DL_SRC, "DTE");
83     }
84
85     if (((fd->pseudo_header.x25.flags & FROM_DCE) && pd[0] == 0x01) ||
86        (!(fd->pseudo_header.x25.flags & FROM_DCE) && pd[0] == 0x03))
87         is_response = TRUE;
88     else
89         is_response = FALSE;
90
91     if (tree) {
92         ti = proto_tree_add_protocol_format(tree, proto_lapb, NullTVB, 0, 2,
93                                             "LAPB");
94         lapb_tree = proto_item_add_subtree(ti, ett_lapb);
95         proto_tree_add_uint_format(lapb_tree, hf_lapb_address, NullTVB, 0, 1, pd[0],
96                                        "Address: 0x%02X", pd[0]);
97     }
98     else
99         lapb_tree = NULL;
100     dissect_xdlc_control(pd, 1, fd, lapb_tree, hf_lapb_control,
101             ett_lapb_control, is_response, FALSE);
102
103     /* not end of frame ==> X.25 */
104     if (fd->cap_len > 2) dissect_x25(pd, 2, fd, tree);
105 }
106
107 void
108 proto_register_lapb(void)
109 {
110     static hf_register_info hf[] = {
111         { &hf_lapb_address,
112           { "Address Field", "lapb.address", FT_UINT8, BASE_HEX, NULL, 0x0, 
113                 "" }},
114
115         { &hf_lapb_control,
116           { "Control Field", "lapb.control", FT_UINT8, BASE_HEX, NULL, 0x0,
117                 "" }},
118     };
119     static gint *ett[] = {
120         &ett_lapb,
121         &ett_lapb_control,
122     };
123
124     proto_lapb = proto_register_protocol ("Link Access Procedure Balanced (LAPB)", "lapb");
125     proto_register_field_array (proto_lapb, hf, array_length(hf));
126     proto_register_subtree_array(ett, array_length(ett));
127 }