Add wtap-int.h. Move definitions relevant to the internal workins of wiretap
[obnox/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.15 2000/05/19 23:06:09 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-lapb.h"
40 #include "packet-x25.h"
41 #include "xdlc.h"
42
43 #define FROM_DCE        0x80
44
45 static int proto_lapb = -1;
46 static int hf_lapb_address = -1;
47 static int hf_lapb_control = -1;
48
49 static gint ett_lapb = -1;
50 static gint ett_lapb_control = -1;
51
52 void
53 dissect_lapb(const union wtap_pseudo_header *pseudo_header, const u_char *pd,
54                 frame_data *fd, proto_tree *tree)
55 {
56     proto_tree *lapb_tree, *ti;
57     int is_response;
58
59     if (check_col(fd, COL_PROTOCOL))
60         col_add_str(fd, COL_PROTOCOL, "LAPB");
61
62     if(check_col(fd, COL_RES_DL_SRC))
63         col_add_fstr(fd, COL_RES_DL_SRC, "0x%02X", pd[0]);
64     if (pd[0] != 0x01 && pd[0] != 0x03) /* invalid LAPB frame */
65     {
66         if (check_col(fd, COL_INFO))
67             col_add_str(fd, COL_INFO, "Invalid LAPB frame");
68         if (tree)
69             ti = proto_tree_add_protocol_format(tree, proto_lapb, NullTVB, 0, fd->cap_len,
70                                             "Invalid LAPB frame");
71         return;
72     }
73
74     if (pseudo_header->x25.flags & FROM_DCE) {
75         if(check_col(fd, COL_RES_DL_DST))
76             col_add_str(fd, COL_RES_DL_DST, "DTE");
77         if(check_col(fd, COL_RES_DL_SRC))
78             col_add_str(fd, COL_RES_DL_SRC, "DCE");
79     }
80     else {
81         if(check_col(fd, COL_RES_DL_DST))
82             col_add_str(fd, COL_RES_DL_DST, "DCE");
83         if(check_col(fd, COL_RES_DL_SRC))
84             col_add_str(fd, COL_RES_DL_SRC, "DTE");
85     }
86
87     if (((pseudo_header->x25.flags & FROM_DCE) && pd[0] == 0x01) ||
88        (!(pseudo_header->x25.flags & FROM_DCE) && pd[0] == 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, NullTVB, 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, NullTVB, 0, 1, pd[0],
98                                        "Address: 0x%02X", pd[0]);
99     }
100     else
101         lapb_tree = NULL;
102     dissect_xdlc_control(pd, 1, fd, lapb_tree, hf_lapb_control,
103             ett_lapb_control, is_response, FALSE);
104
105     /* not end of frame ==> X.25 */
106     if (fd->cap_len > 2) dissect_x25(pseudo_header, pd, 2, fd, tree);
107 }
108
109 void
110 proto_register_lapb(void)
111 {
112     static hf_register_info hf[] = {
113         { &hf_lapb_address,
114           { "Address Field", "lapb.address", FT_UINT8, BASE_HEX, NULL, 0x0, 
115                 "" }},
116
117         { &hf_lapb_control,
118           { "Control Field", "lapb.control", FT_UINT8, BASE_HEX, NULL, 0x0,
119                 "" }},
120     };
121     static gint *ett[] = {
122         &ett_lapb,
123         &ett_lapb_control,
124     };
125
126     proto_lapb = proto_register_protocol ("Link Access Procedure Balanced (LAPB)", "lapb");
127     proto_register_field_array (proto_lapb, hf, array_length(hf));
128     proto_register_subtree_array(ett, array_length(ett));
129 }