Add tvbuff class.
[obnox/wireshark/wip.git] / packet-lapd.c
1 /* packet-lapd.c
2  * Routines for LAPD frame disassembly
3  * Gilbert Ramirez <gram@xiexie.org>
4  *
5  * $Id: packet-lapd.c,v 1.6 2000/05/11 08:15:21 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-q931.h"
40 #include "xdlc.h"
41
42 /* ISDN/LAPD references:
43  *
44  * http://www.cisco.com/univercd/cc/td/doc/cisintwk/ito_doc/isdn.htm
45  * http://www.ece.wpi.edu/courses/ee535/hwk11cd95/agrebe/agrebe.html
46  * http://www.acacia-net.com/Clarinet/Protocol/q9213o84.htm
47  */
48
49 static int proto_lapd = -1;
50 static int hf_lapd_address = -1;
51 static int hf_lapd_sapi = -1;
52 static int hf_lapd_cr = -1;
53 static int hf_lapd_ea1 = -1;
54 static int hf_lapd_tei = -1;
55 static int hf_lapd_ea2 = -1;
56 static int hf_lapd_control = -1;
57
58 static gint ett_lapd = -1;
59 static gint ett_lapd_address = -1;
60 static gint ett_lapd_control = -1;
61
62 /*
63  * Bits in the address field.
64  */
65 #define LAPD_SAPI       0xfc00  /* Service Access Point Identifier */
66 #define LAPD_SAPI_SHIFT 10
67 #define LAPD_CR         0x0200  /* Command/Response bit */
68 #define LAPD_EA1        0x0100  /* First Address Extension bit */
69 #define LAPD_TEI        0x00fe  /* Terminal Endpoint Identifier */
70 #define LAPD_EA2        0x0001  /* Second Address Extension bit */
71
72 #define LAPD_SAPI_Q931          0       /* Q.931 call control procedure */
73 #define LAPD_SAPI_PM_Q931       1       /* Packet mode Q.931 call control procedure */
74 #define LAPD_SAPI_X25           16      /* X.25 Level 3 procedures */
75 #define LAPD_SAPI_L2            63      /* Layer 2 management procedures */
76
77 static const value_string lapd_sapi_vals[] = {
78         { LAPD_SAPI_Q931,       "Q.931 Call control procedure" },
79         { LAPD_SAPI_PM_Q931,    "Packet mode Q.931 Call control procedure" },
80         { LAPD_SAPI_X25,        "X.25 Level 3 procedures" },
81         { LAPD_SAPI_L2,         "Layer 2 management procedures" },
82         { 0,                    NULL }
83 };
84
85 void
86 dissect_lapd(const u_char *pd, frame_data *fd, proto_tree *tree)
87 {
88         proto_tree      *lapd_tree, *addr_tree;
89         proto_item      *ti;
90         guint16         control;
91         int             lapd_header_len;
92
93         guint16 address, cr, sapi;
94
95         gboolean is_response;
96
97         if (check_col(fd, COL_PROTOCOL))
98                 col_add_str(fd, COL_PROTOCOL, "LAPD");
99
100         address = pntohs(&pd[0]);
101         cr = address & LAPD_CR;
102         sapi = (address & LAPD_SAPI) >> LAPD_SAPI_SHIFT;
103         lapd_header_len = 2;    /* address */
104
105         if (fd->pseudo_header.lapd.from_network_to_user) {
106                 is_response = cr ? FALSE : TRUE;
107                 if(check_col(fd, COL_RES_DL_DST))
108                     col_add_str(fd, COL_RES_DL_DST, "User");
109                 if(check_col(fd, COL_RES_DL_SRC))
110                     col_add_str(fd, COL_RES_DL_SRC, "Network");
111         }
112         else {
113                 is_response = cr ? TRUE : FALSE;
114                 if(check_col(fd, COL_RES_DL_DST))
115                         col_add_str(fd, COL_RES_DL_DST, "Network");
116                 if(check_col(fd, COL_RES_DL_SRC))
117                         col_add_str(fd, COL_RES_DL_SRC, "User");
118         }
119
120
121         if (tree) {
122                 ti = proto_tree_add_item(tree, proto_lapd, NullTVB, 0, 3, NULL);
123                 lapd_tree = proto_item_add_subtree(ti, ett_lapd);
124
125                 ti = proto_tree_add_item(lapd_tree, hf_lapd_address, NullTVB, 0, 2, address);
126                 addr_tree = proto_item_add_subtree(ti, ett_lapd_address);
127
128                 proto_tree_add_item(addr_tree, hf_lapd_sapi, NullTVB,   0, 1, address);
129                 proto_tree_add_item(addr_tree, hf_lapd_cr, NullTVB,     0, 1, address);
130                 proto_tree_add_item(addr_tree, hf_lapd_ea1, NullTVB,    0, 1, address);
131                 proto_tree_add_item(addr_tree, hf_lapd_tei, NullTVB,    1, 1, address);
132                 proto_tree_add_item(addr_tree, hf_lapd_ea2, NullTVB,    1, 1, address);
133         }
134         else {
135                 lapd_tree = NULL;
136         }
137
138         control = dissect_xdlc_control(pd, 2, fd, lapd_tree, hf_lapd_control,
139             ett_lapd_control, is_response, TRUE);
140         lapd_header_len += XDLC_CONTROL_LEN(control, TRUE);
141
142         if (XDLC_IS_INFORMATION(control)) {
143                 /* call next protocol */
144                 switch (sapi) {
145
146                 case LAPD_SAPI_Q931:
147                         dissect_q931(pd, lapd_header_len, fd, tree);
148                         break;
149
150                 default:
151                         dissect_data(pd, lapd_header_len, fd, tree);
152                         break;
153                 }
154         } else
155                 dissect_data(pd, lapd_header_len, fd, tree);
156 }
157
158 void
159 proto_register_lapd(void)
160 {
161     static hf_register_info hf[] = {
162         { &hf_lapd_address,
163           { "Address Field", "lapd.address", FT_UINT16, BASE_HEX, NULL, 0x0, 
164                 "" }},
165
166         { &hf_lapd_sapi,
167           { "SAPI", "lapd.sapi", FT_UINT16, BASE_DEC, VALS(lapd_sapi_vals), LAPD_SAPI,
168                 "Service Access Point Identifier" }},
169
170         { &hf_lapd_cr,
171           { "C/R", "lapd.cr", FT_UINT16, BASE_DEC, NULL, LAPD_CR,
172                 "Command/Response bit" }},
173
174         { &hf_lapd_ea1,
175           { "EA1", "lapd.ea1", FT_UINT16, BASE_DEC, NULL, LAPD_EA1,
176                 "First Address Extension bit" }},
177
178         { &hf_lapd_tei,
179           { "TEI", "lapd.tei", FT_UINT16, BASE_DEC, NULL, LAPD_TEI,
180                 "Terminal Endpoint Identifier" }},
181
182         { &hf_lapd_ea2,
183           { "EA2", "lapd.ea2", FT_UINT16, BASE_DEC, NULL, LAPD_EA2,
184                 "Second Address Extension bit" }},
185
186         { &hf_lapd_control,
187           { "Control Field", "lapd.control", FT_UINT16, BASE_HEX, NULL, 0x0,
188                 "" }},
189     };
190     static gint *ett[] = {
191         &ett_lapd,
192         &ett_lapd_address,
193         &ett_lapd_control,
194     };
195
196     proto_lapd = proto_register_protocol ("Link Access Procedure, Channel D (LAPD)", "lapd");
197     proto_register_field_array (proto_lapd, hf, array_length(hf));
198     proto_register_subtree_array(ett, array_length(ett));
199 }