- bug fixed with user name display
[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.7 1999/10/15 21:05:49 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 "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 (pd[0] != 0x01 && pd[0] != 0x03) /* invalid LAPB frame */
59     {
60         if (check_col(fd, COL_INFO))
61             col_add_str(fd, COL_INFO, "Invalid LAPB frame");
62         if (tree)
63             ti = proto_tree_add_item_format(tree, proto_lapb, 0, fd->cap_len,
64                                             NULL, "Invalid LAPB frame");
65         return;
66     }
67
68     if (fd->pseudo_header.x25.flags & FROM_DCE) {
69         if(check_col(fd, COL_RES_DL_DST))
70             col_add_str(fd, COL_RES_DL_DST, "DTE");
71         if(check_col(fd, COL_RES_DL_SRC))
72             col_add_str(fd, COL_RES_DL_SRC, "DCE");
73     }
74     else {
75         if(check_col(fd, COL_RES_DL_DST))
76             col_add_str(fd, COL_RES_DL_DST, "DCE");
77         if(check_col(fd, COL_RES_DL_SRC))
78             col_add_str(fd, COL_RES_DL_SRC, "DTE");
79     }
80
81     if (((fd->pseudo_header.x25.flags & FROM_DCE) && pd[0] == 0x01) ||
82        (!(fd->pseudo_header.x25.flags & FROM_DCE) && pd[0] == 0x03))
83         is_response = TRUE;
84     else
85         is_response = FALSE;
86
87     if (tree) {
88         ti = proto_tree_add_item_format(tree, proto_lapb, 0, 2, NULL,
89                                             "LAPB");
90         lapb_tree = proto_item_add_subtree(ti, ETT_LAPB);
91         proto_tree_add_item_format(lapb_tree, hf_lapb_address, 0, 1, pd[0],
92                                        "Address: 0x%02X", pd[0]);
93     }
94     else
95         lapb_tree = NULL;
96     dissect_xdlc_control(pd, 1, fd, lapb_tree, hf_lapb_control,
97             is_response, FALSE);
98
99     /* not end of frame ==> X.25 */
100     if (fd->cap_len > 2) dissect_x25(pd, 2, fd, tree);
101 }
102
103 void
104 proto_register_lapb(void)
105 {
106     static hf_register_info hf[] = {
107         { &hf_lapb_address,
108           { "Address Field", "lapb.address", FT_UINT8, BASE_DEC, NULL, 0x0, 
109                 "" }},
110
111         { &hf_lapb_control,
112           { "Control Field", "lapb.control", FT_STRING, BASE_NONE, NULL, 0x0,
113                 "" }},
114     };
115
116     proto_lapb = proto_register_protocol ("Link Access Procedure Balanced (LAPB)", "lapb");
117     proto_register_field_array (proto_lapb, hf, array_length(hf));
118 }