Add support for reading Full Frontal ATM from an ATM Sniffer capture
[obnox/wireshark/wip.git] / packet-lapb.c
1 /* packet-lapb.c
2  * Routines for lapb frame disassembly
3  * Olivier Abad <abad@daba.dhis.org>
4  *
5  * $Id: packet-lapb.c,v 1.4 1999/08/20 06:55:07 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 int proto_lapb = -1;
44 int hf_lapb_address = -1;
45 int hf_lapb_control = -1;
46
47 void
48 dissect_lapb(const u_char *pd, frame_data *fd, proto_tree *tree)
49 {
50     proto_tree *lapb_tree, *ti;
51     int is_response;
52
53     if (check_col(fd, COL_PROTOCOL))
54         col_add_str(fd, COL_PROTOCOL, "LAPB");
55
56     if(check_col(fd, COL_RES_DL_SRC))
57         col_add_fstr(fd, COL_RES_DL_SRC, "0x%02X", pd[0]);
58     if (fd->pseudo_header.x25.flags & FROM_DCE) {
59         if(check_col(fd, COL_RES_DL_DST))
60             col_add_str(fd, COL_RES_DL_DST, "DTE");
61         if(check_col(fd, COL_RES_DL_SRC))
62             col_add_str(fd, COL_RES_DL_SRC, "DCE");
63     }
64     else {
65         if(check_col(fd, COL_RES_DL_DST))
66             col_add_str(fd, COL_RES_DL_DST, "DCE");
67         if(check_col(fd, COL_RES_DL_SRC))
68             col_add_str(fd, COL_RES_DL_SRC, "DTE");
69     }
70
71     if (((fd->pseudo_header.x25.flags & FROM_DCE) && pd[0] == 0x01) ||
72        (!(fd->pseudo_header.x25.flags & FROM_DCE) && pd[0] == 0x03))
73         is_response = TRUE;
74     else
75         is_response = FALSE;
76
77     if (tree) {
78         ti = proto_tree_add_item_format(tree, proto_lapb, 0, 2, NULL,
79                                             "LAPB");
80         lapb_tree = proto_item_add_subtree(ti, ETT_LAPB);
81         proto_tree_add_item_format(lapb_tree, hf_lapb_address, 0, 1, pd[0],
82                                        "Address: 0x%02X", pd[0]);
83     }
84     else
85         lapb_tree = NULL;
86     dissect_xdlc_control(pd, 1, fd, lapb_tree, hf_lapb_control,
87             is_response, FALSE);
88
89     /* not end of frame ==> X.25 */
90     if (fd->cap_len > 2) dissect_x25(pd, 2, fd, tree);
91 }
92
93 void
94 proto_register_lapb(void)
95 {
96     static hf_register_info hf[] = {
97         { &hf_lapb_address,
98           { "Address Field", "lapb.address", FT_UINT8, NULL} },
99         { &hf_lapb_control,
100           { "Control Field", "lapb.control", FT_STRING, NULL} },
101     };
102
103     proto_lapb = proto_register_protocol ("LAPB", "lapb");
104     proto_register_field_array (proto_lapb, hf, array_length(hf));
105 }