Give "dissect_rpc_string()" an extra "char **" argument; if it's
[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.9 1999/11/29 22:44:47 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 static int proto_lapb = -1;
44 static int hf_lapb_address = -1;
45 static int hf_lapb_control = -1;
46
47 static gint ett_lapb = -1;
48 static gint ett_lapb_control = -1;
49
50 void
51 dissect_lapb(const u_char *pd, frame_data *fd, proto_tree *tree)
52 {
53     proto_tree *lapb_tree, *ti;
54     int is_response;
55
56     if (check_col(fd, COL_PROTOCOL))
57         col_add_str(fd, COL_PROTOCOL, "LAPB");
58
59     if(check_col(fd, COL_RES_DL_SRC))
60         col_add_fstr(fd, COL_RES_DL_SRC, "0x%02X", pd[0]);
61     if (pd[0] != 0x01 && pd[0] != 0x03) /* invalid LAPB frame */
62     {
63         if (check_col(fd, COL_INFO))
64             col_add_str(fd, COL_INFO, "Invalid LAPB frame");
65         if (tree)
66             ti = proto_tree_add_item_format(tree, proto_lapb, 0, fd->cap_len,
67                                             NULL, "Invalid LAPB frame");
68         return;
69     }
70
71     if (fd->pseudo_header.x25.flags & FROM_DCE) {
72         if(check_col(fd, COL_RES_DL_DST))
73             col_add_str(fd, COL_RES_DL_DST, "DTE");
74         if(check_col(fd, COL_RES_DL_SRC))
75             col_add_str(fd, COL_RES_DL_SRC, "DCE");
76     }
77     else {
78         if(check_col(fd, COL_RES_DL_DST))
79             col_add_str(fd, COL_RES_DL_DST, "DCE");
80         if(check_col(fd, COL_RES_DL_SRC))
81             col_add_str(fd, COL_RES_DL_SRC, "DTE");
82     }
83
84     if (((fd->pseudo_header.x25.flags & FROM_DCE) && pd[0] == 0x01) ||
85        (!(fd->pseudo_header.x25.flags & FROM_DCE) && pd[0] == 0x03))
86         is_response = TRUE;
87     else
88         is_response = FALSE;
89
90     if (tree) {
91         ti = proto_tree_add_item_format(tree, proto_lapb, 0, 2, NULL,
92                                             "LAPB");
93         lapb_tree = proto_item_add_subtree(ti, ett_lapb);
94         proto_tree_add_item_format(lapb_tree, hf_lapb_address, 0, 1, pd[0],
95                                        "Address: 0x%02X", pd[0]);
96     }
97     else
98         lapb_tree = NULL;
99     dissect_xdlc_control(pd, 1, fd, lapb_tree, hf_lapb_control,
100             ett_lapb_control, is_response, FALSE);
101
102     /* not end of frame ==> X.25 */
103     if (fd->cap_len > 2) dissect_x25(pd, 2, fd, tree);
104 }
105
106 void
107 proto_register_lapb(void)
108 {
109     static hf_register_info hf[] = {
110         { &hf_lapb_address,
111           { "Address Field", "lapb.address", FT_UINT8, BASE_DEC, NULL, 0x0, 
112                 "" }},
113
114         { &hf_lapb_control,
115           { "Control Field", "lapb.control", FT_STRING, BASE_NONE, NULL, 0x0,
116                 "" }},
117     };
118     static gint *ett[] = {
119         &ett_lapb,
120         &ett_lapb_control,
121     };
122
123     proto_lapb = proto_register_protocol ("Link Access Procedure Balanced (LAPB)", "lapb");
124     proto_register_field_array (proto_lapb, hf, array_length(hf));
125     proto_register_subtree_array(ett, array_length(ett));
126 }