Bill Meier:
[obnox/wireshark/wip.git] / epan / dissectors / packet-alcap.c
1 /* packet-alcap.c
2 * Routines for ALCAP (Q.2630.3) dissection
3 * AAL type 2 signalling protocol - Capability set 3
4 * 10/2003
5 *
6 * Copyright 2003, Michael Lum <mlum [AT] telostech.com>
7 * In association with Telos Technology Inc.
8 *
9 * Copyright 2005, Luis E. Garcia Ontanon <luis.ontanon [AT] gmail.com>
10 *
11 * $Id$
12 *
13 * Ethereal - Network traffic analyzer
14 * By Gerald Combs <gerald@ethereal.com>
15 * Copyright 1998 Gerald Combs
16 *
17 * This program is free software; you can redistribute it and/or
18 * modify it under the terms of the GNU General Public License
19 * as published by the Free Software Foundation; either version 2
20 * of the License, or (at your option) any later version.
21 *
22 * This program is distributed in the hope that it will be useful,
23 * but WITHOUT ANY WARRANTY; without even the implied warranty of
24 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
25 * GNU General Public License for more details.
26 *
27 * You should have received a copy of the GNU General Public License
28 * along with this program; if not, write to the Free Software
29 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
30 */
31
32 #ifdef HAVE_CONFIG_H
33 # include "config.h"
34 #endif
35
36 #include <glib.h>
37
38 #include <epan/packet.h>
39 #include <epan/emem.h>
40 #include <epan/prefs.h>
41 #include "packet-alcap.h"
42 #include <epan/dissectors/packet-isup.h>
43 #include <epan/expert.h>
44 #include <epan/strutil.h>
45
46 #define ALCAP_MSG_HEADER_LEN    6
47 #define ALCAP_PARM_HEADER_LEN   3
48 #define FIELD_NSAP_ADDRESS_LEN  20
49
50 #define ALCAP_SI                12
51
52 static const value_string msg_type_strings[] = {
53 { 1,    "Block confirm (BLC)" },
54 { 2,    "Block request (BLO)" },
55 { 3,    "Confusion (CFN)" },
56 { 4,    "Establish confirm (ECF)" },
57 { 5,    "Establish request (ERQ)" },
58 { 6,    "Release confirm (RLC)" },
59 { 7,    "Release request (REL)" },
60 { 8,    "Reset confirm (RSC)" },
61 { 9,    "Reset request (RES)" },
62 { 10,   "Unblock confirm (UBC)" },
63 { 11,   "Unblock request (UBL)" },
64 { 12,   "Modify Ack (MOA)" },
65 { 13,   "Modify Reject (MOR)" },
66 { 14,   "Modify Request (MOD)" },
67 { 0, NULL }
68 };
69
70 static const value_string send_notification[] = {
71     { 0, "Do Not Send Notification"},
72     { 1, "Send Notification" },
73     { 0, NULL }
74 };
75
76 static const value_string instruction_indicator[] = {
77     { 0, "Pass On Message or Parameter"},
78     { 1, "Discard Parameter" },
79     { 2, "Discard Message" },
80     { 3, "Release Connection" },
81     { 0, NULL }
82 };
83
84 static const value_string msg_parm_strings[] = {
85     { 1,        "Cause (CAU)" },
86     { 2,        "Connection element identifier (CEID)" },
87     { 3,        "Destination E.164 service endpoint address (DESEA)" },
88     { 4,        "Destination NSAP service endpoint address (DNSEA)" },
89     { 5,        "Link characteristics (ALC)" },
90     { 6,        "Originating signalling association identifier (OSAID)" },
91     { 7,        "Served user generated reference (SUGR)" },
92     { 8,        "Served user transport (SUT)" },
93     { 9,        "Service specific information (audio) (SSIA)" },
94     { 10,       "Service specific information (multirate) (SSIM)" },
95     { 11,       "Service specific information (SAR-assured) (SSISA)" },
96     { 12,       "Service specific information (SAR-unassured) (SSISU)" },
97     { 13,       "Test connection identifier (TCI)" },
98     { 14,   "Modify Support for Link Characteristics (MSLC)" },
99     { 15,   "Modify Support for Service Specific Information (MSSSI)" },
100     { 16,   "Path Type (PT)" },
101     { 17,   "Preferred Link Characteristics (PLC)" },
102     { 18,   "Preferred Service Specific Information - Audio Extended (PSSIAE)" },
103     { 19,   "Preferred Service Specific Information - Multirate Extended (PSSIME)" },
104     { 20,   "Served User Correlation ID (SUCI)" },
105     { 21,   "Origination NSAP Service Endpoint Address (ONSEA)" },
106     { 22,   "Service Specific Information - Audio Extended (SSIAE)" },
107     { 23,   "Service Specific Information - Multirate Extended (SSIME)" },
108     { 24,   "Automatic Congestion Control (ACC)" },
109     { 25,   "Connection Priority (CP)" },
110     { 26,   "Hop Counter (HC)" },
111     { 27,   "Origination E.164 Service Endpoint Address (OESEA)" },
112     { 28,   "Preferred Transfer Capability - FBW (PFBW)" },
113     { 29,   "Preferred Transfer Capability - VBWS (PVBWS)" },
114     { 30,   "Preferred Transfer Capability - VBWT (PVBWT)" },
115     { 31,   "TAR Controlled Connection (TCC)" },
116     { 32,   "Transfer Capability (FBW)" },
117     { 33,   "Transfer Capability (VBWS)" },
118     { 34,   "Transfer Capability (VBWT)" },
119     { 35,   "Transfer Capability Support (TCS)" },
120     { 0, NULL },
121 };
122
123
124 static const value_string enabled_disabled[] = {
125     {0, "disabled" },
126     {1, "enabled" },
127     {0,NULL}
128 };
129
130 static const value_string alaw_ulaw[] = {
131     {0, "A-Law" },
132     {1, "u-Law" },
133     {0,NULL}
134 };
135
136 static const value_string cause_coding_vals[] = {
137     {0, "ITU (Q.850 - Q.2610)"},
138     {1, "ISO/IEC"},
139     {2, "National"},
140     {3, "Private"},
141     {0,NULL}
142 };
143
144
145 static const value_string cause_values_itu[] = {
146     { 1, "Unallocated (unassigned) number"},
147     { 3, "No route to destination"},
148     { 31, "Normal, unspecified"},
149     { 34, "No circuit/channel available"},
150     { 38, "Network out of order"},
151     { 41, "Temporary failure"},
152     { 42, "Switching equipment congestion"},
153     { 44, "Requested circuit/channel not available"},
154     { 47, "Resource unavailable, unspecified"},
155     { 93, "AAL parameters cannot be supported"},
156     { 95, "Invalid message, unspecified"},
157     { 96, "Mandatory information element is missing"},
158     { 97, "Message type non-existent or not implemented"},
159     { 99, "Information element/parameter non-existent or not implemented"},
160     { 100, "Invalid information element contents"},
161     { 102, "Recovery on timer expiry"},
162     { 110, "Message with unrecognized parameter, discarded"},
163     { 111, "Protocol error, unspecified"},
164     { 0, NULL }
165 };
166
167 static const value_string audio_profile_type[] = {
168     { 0, "From I.366.2" },
169     { 1, "From Organization" },
170     { 2, "Custom" },
171     { 3, "Reserved" },
172     { 0, NULL }
173 };
174
175 static const value_string congestion_level[] = {
176     { 0, "Spare" },
177     { 1, "Congestin Level 1 exceeded" },
178     { 2, "Congestin Level 2 exceeded" },
179     { 0, NULL }
180 };
181
182 static const value_string connection_priority[] = {
183     { 0, "Level 1 (Highest)" },
184     { 1, "Level 2" },
185     { 2, "Level 3" },
186     { 3, "Level 4" },
187     { 4, "Level 5 (Lowest)" },
188     { 5, "Reserved" },
189     { 6, "Reserved" },
190     { 7, "Reserved" },
191     { 0, NULL }
192 };
193
194
195
196 static const char *alcap_proto_name = "AAL type 2 signalling protocol (Q.2630)";
197 static const char *alcap_proto_name_short = "ALCAP";
198
199 /* Initialize the subtree pointers */
200 static gint ett_alcap = -1;
201 static gint ett_leg = -1;
202 static gint ett_compat = -1;
203 static gint ett_cau_diag = -1;
204
205 /* Initialize the protocol and registered fields */
206 static int proto_alcap = -1;
207
208 static int hf_alcap_dsaid = -1;
209 static int hf_alcap_msg_id = -1;
210 static int hf_alcap_compat = -1;
211 static int hf_alcap_compat_pass_on_sni = -1;
212 static int hf_alcap_compat_pass_on_ii = -1;
213 static int hf_alcap_compat_general_sni = -1;
214 static int hf_alcap_compat_general_ii = -1;
215
216 static int hf_alcap_param_id = -1;
217 static int hf_alcap_param_len = -1;
218
219 static int hf_alcap_unknown = -1;
220
221 static int hf_alcap_cau_coding = -1;
222 static int hf_alcap_cau_value_itu = -1;
223 static int hf_alcap_cau_value_non_itu = -1;
224 static int hf_alcap_cau_diag = -1;
225 static int hf_alcap_cau_diag_len = -1;
226 static int hf_alcap_cau_diag_msg = -1;
227 static int hf_alcap_cau_diag_param_id = -1;
228 static int hf_alcap_cau_diag_field_num = -1;
229
230 static int hf_alcap_ceid_pathid = -1;
231 static int hf_alcap_ceid_cid = -1;
232
233 static int hf_alcap_dnsea = -1;
234
235 static int hf_alcap_alc_max_br_fw = -1;
236 static int hf_alcap_alc_max_br_bw = -1;
237 static int hf_alcap_alc_avg_br_fw = -1;
238 static int hf_alcap_alc_avg_br_bw = -1;
239 static int hf_alcap_alc_max_sdu_fw = -1;
240 static int hf_alcap_alc_max_sdu_bw = -1;
241 static int hf_alcap_alc_avg_sdu_fw = -1;
242 static int hf_alcap_alc_avg_sdu_bw = -1;
243
244 static int hf_alcap_osaid = -1;
245
246 static int hf_alcap_sugr = -1;
247
248 static int hf_alcap_sut_len = -1;
249 static int hf_alcap_sut = -1;
250
251 static int hf_alcap_ssia_pr_type = -1;
252 static int hf_alcap_ssia_pr_id = -1;
253 static int hf_alcap_ssia_frm = -1;
254 static int hf_alcap_ssia_cmd = -1;
255 static int hf_alcap_ssia_mfr2 = -1;
256 static int hf_alcap_ssia_mfr1 = -1;
257 static int hf_alcap_ssia_dtmf = -1;
258 static int hf_alcap_ssia_cas = -1;
259 static int hf_alcap_ssia_fax = -1;
260 static int hf_alcap_ssia_pcm = -1;
261 static int hf_alcap_ssia_max_len = -1;
262 static int hf_alcap_ssia_oui = -1;
263
264 static int hf_alcap_ssim_frm = -1;
265 static int hf_alcap_ssim_mult = -1;
266 static int hf_alcap_ssim_max = -1;
267
268 static int hf_alcap_ssisa_max_sssar_fw = -1;
269 static int hf_alcap_ssisa_max_sssar_bw = -1;
270 static int hf_alcap_ssisa_max_sscop_sdu_fw = -1;
271 static int hf_alcap_ssisa_max_sscop_sdu_bw = -1;
272 static int hf_alcap_ssisa_max_sscop_uu_fw = -1;
273 static int hf_alcap_ssisa_max_sscop_uu_bw = -1;
274
275 static int hf_alcap_ssisu_max_sssar_fw = -1;
276 static int hf_alcap_ssisu_max_sssar_bw = -1;
277 static int hf_alcap_ssisu_ted = -1;
278
279 static int hf_alcap_pt = -1;
280
281 static int hf_alcap_plc_max_br_fw = -1;
282 static int hf_alcap_plc_max_br_bw = -1;
283 static int hf_alcap_plc_avg_br_fw = -1;
284 static int hf_alcap_plc_avg_br_bw = -1;
285 static int hf_alcap_plc_max_sdu_fw = -1;
286 static int hf_alcap_plc_max_sdu_bw = -1;
287 static int hf_alcap_plc_avg_sdu_fw = -1;
288 static int hf_alcap_plc_avg_sdu_bw = -1;
289
290 static int hf_alcap_pssiae_pr_type = -1;
291 static int hf_alcap_pssiae_pr_id = -1;
292 static int hf_alcap_pssiae_lb = -1;
293 static int hf_alcap_pssiae_rc = -1;
294 static int hf_alcap_pssiae_syn = -1;
295 static int hf_alcap_pssiae_frm = -1;
296 static int hf_alcap_pssiae_cmd = -1;
297 static int hf_alcap_pssiae_mfr2 = -1;
298 static int hf_alcap_pssiae_mfr1 = -1;
299 static int hf_alcap_pssiae_dtmf = -1;
300 static int hf_alcap_pssiae_cas = -1;
301 static int hf_alcap_pssiae_fax = -1;
302 static int hf_alcap_pssiae_pcm = -1;
303 static int hf_alcap_pssiae_max_len = -1;
304 static int hf_alcap_pssiae_oui = -1;
305
306 static int hf_alcap_pssime_frm = -1;
307 static int hf_alcap_pssime_lb = -1;
308 static int hf_alcap_pssime_mult = -1;
309 static int hf_alcap_pssime_max = -1;
310
311 static int hf_alcap_suci = -1;
312
313 static int hf_alcap_onsea = -1;
314
315 static int hf_alcap_ssiae_pr_type = -1;
316 static int hf_alcap_ssiae_pr_id = -1;
317 static int hf_alcap_ssiae_lb = -1;
318 static int hf_alcap_ssiae_rc = -1;
319 static int hf_alcap_ssiae_syn = -1;
320 static int hf_alcap_ssiae_frm = -1;
321 static int hf_alcap_ssiae_cmd = -1;
322 static int hf_alcap_ssiae_mfr2 = -1;
323 static int hf_alcap_ssiae_mfr1 = -1;
324 static int hf_alcap_ssiae_dtmf = -1;
325 static int hf_alcap_ssiae_cas = -1;
326 static int hf_alcap_ssiae_fax = -1;
327 static int hf_alcap_ssiae_pcm = -1;
328 static int hf_alcap_ssiae_max_len = -1;
329 static int hf_alcap_ssiae_oui = -1;
330
331 static int hf_alcap_ssime_frm = -1;
332 static int hf_alcap_ssime_lb = -1;
333 static int hf_alcap_ssime_mult = -1;
334 static int hf_alcap_ssime_max = -1;
335
336 static int hf_alcap_acc_level = -1;
337
338 static int hf_alcap_cp = -1;
339
340 static int hf_alcap_hc = -1;
341
342 static int hf_alcap_pfbw_br_fw = -1;
343 static int hf_alcap_pfbw_br_bw = -1;
344 static int hf_alcap_pfbw_bucket_fw = -1;
345 static int hf_alcap_pfbw_bucket_bw = -1;
346 static int hf_alcap_pfbw_size_fw = -1;
347 static int hf_alcap_pfbw_size_bw = -1;
348
349 static int hf_alcap_pvbws_br_fw = -1;
350 static int hf_alcap_pvbws_br_bw = -1;
351 static int hf_alcap_pvbws_bucket_fw = -1;
352 static int hf_alcap_pvbws_bucket_bw = -1;
353 static int hf_alcap_pvbws_size_fw = -1;
354 static int hf_alcap_pvbws_size_bw = -1;
355 static int hf_alcap_pvbws_stt = -1;
356
357 static int hf_alcap_pvbwt_peak_br_fw = -1;
358 static int hf_alcap_pvbwt_peak_br_bw = -1;
359 static int hf_alcap_pvbwt_peak_bucket_fw = -1;
360 static int hf_alcap_pvbwt_peak_bucket_bw = -1;
361 static int hf_alcap_pvbwt_sust_br_fw = -1;
362 static int hf_alcap_pvbwt_sust_br_bw = -1;
363 static int hf_alcap_pvbwt_sust_bucket_fw = -1;
364 static int hf_alcap_pvbwt_sust_bucket_bw = -1;
365 static int hf_alcap_pvbwt_size_fw = -1;
366 static int hf_alcap_pvbwt_size_bw = -1;
367
368 static int hf_alcap_fbw_br_fw = -1;
369 static int hf_alcap_fbw_br_bw = -1;
370 static int hf_alcap_fbw_bucket_fw = -1;
371 static int hf_alcap_fbw_bucket_bw = -1;
372 static int hf_alcap_fbw_size_fw = -1;
373 static int hf_alcap_fbw_size_bw = -1;
374
375 static int hf_alcap_vbws_br_fw = -1;
376 static int hf_alcap_vbws_br_bw = -1;
377 static int hf_alcap_vbws_bucket_fw = -1;
378 static int hf_alcap_vbws_bucket_bw = -1;
379 static int hf_alcap_vbws_size_fw = -1;
380 static int hf_alcap_vbws_size_bw = -1;
381 static int hf_alcap_vbws_stt = -1;
382
383 static int hf_alcap_vbwt_peak_br_fw = -1;
384 static int hf_alcap_vbwt_peak_br_bw = -1;
385 static int hf_alcap_vbwt_peak_bucket_fw = -1;
386 static int hf_alcap_vbwt_peak_bucket_bw = -1;
387 static int hf_alcap_vbwt_sust_br_fw = -1;
388 static int hf_alcap_vbwt_sust_br_bw = -1;
389 static int hf_alcap_vbwt_sust_bucket_fw = -1;
390 static int hf_alcap_vbwt_sust_bucket_bw = -1;
391 static int hf_alcap_vbwt_size_fw = -1;
392 static int hf_alcap_vbwt_size_bw = -1;
393
394
395 static int hf_alcap_leg_osaid = -1;
396 static int hf_alcap_leg_dsaid = -1;
397 static int hf_alcap_leg_pathid = -1;
398 static int hf_alcap_leg_cid = -1;
399 static int hf_alcap_leg_sugr = -1;
400 static int hf_alcap_leg_dnsea = -1;
401 static int hf_alcap_leg_onsea = -1;
402 static int hf_alcap_leg_frame = -1;
403 static int hf_alcap_leg_release_cause = -1;
404
405 static gboolean keep_persistent_info = TRUE;
406
407 GHashTable* legs_by_dsaid = NULL;
408 GHashTable* legs_by_osaid = NULL;
409 GHashTable* legs_by_circuit_id = NULL;
410 GHashTable* legs_by_bearer = NULL;
411
412 static gchar* dissect_fields_unknown(packet_info* pinfo _U_, tvbuff_t *tvb, proto_tree *tree, int offset, int len, alcap_message_info_t* msg_info _U_) {
413     proto_item* pi = proto_tree_add_item(tree,hf_alcap_unknown,tvb,offset,len,FALSE);
414     proto_item_set_expert_flags(pi, PI_UNDECODED, PI_WARN);
415     return NULL;
416 }
417
418 static gchar* dissect_fields_cau(packet_info* pinfo, tvbuff_t *tvb, proto_tree *tree, int offset, int len, alcap_message_info_t* msg_info) {
419     /*
420      * Q.2630.1 -> 7.3.1 Cause
421      *
422      * 7.4.16 Cause Value
423      * 7.4.17 Diagnostics
424      */
425     
426     guint coding;
427     gchar* ret_str = NULL;
428     proto_item* pi;
429     
430     if (len < 2) {
431         proto_item* bad_length = proto_tree_add_text(tree, tvb, offset, len,"[Wrong length for parameter fields]");
432         proto_item_set_expert_flags(bad_length, PI_MALFORMED, PI_WARN);
433         return NULL;
434     }
435     
436     msg_info->release_cause = tvb_get_guint8(tvb, offset+1) & 0x7f;
437     
438     coding = tvb_get_guint8(tvb, offset) & 0x3;
439     
440     proto_tree_add_item(tree, hf_alcap_cau_coding, tvb, offset, 1, FALSE);
441     
442     if (coding == 0) {
443         pi = proto_tree_add_item(tree, hf_alcap_cau_value_itu, tvb, offset+1, 1, FALSE);
444         
445         if ( msg_info->release_cause && msg_info->release_cause != 31 )
446             expert_add_info_format(pinfo, pi, PI_RESPONSE_CODE, PI_WARN, "Abnormal Release");
447         
448         ret_str = ep_strdup(val_to_str(msg_info->release_cause, cause_values_itu, "Unknown(%u)"));
449     } else {
450         proto_tree_add_item(tree, hf_alcap_cau_value_non_itu, tvb, offset+1 , 1, FALSE);
451         ret_str = ep_strdup_printf("%u", msg_info->release_cause);
452     }
453     
454     if (!tree) return ret_str;
455     
456     offset += 2;
457     
458     if (len > 2)  {
459         int diag_len = tvb_get_guint8(tvb,offset);
460         
461         pi = proto_tree_add_item(tree,hf_alcap_cau_diag, tvb, offset,len-2,FALSE);
462         tree = proto_item_add_subtree(pi,ett_cau_diag);
463         
464         proto_tree_add_item(tree, hf_alcap_cau_diag_len, tvb, offset, 1, FALSE);
465         
466         if (diag_len) {
467             switch (msg_info->release_cause) {
468                 case 97:
469                 case 99:
470                 case 110: {
471                     proto_tree_add_item(tree, hf_alcap_cau_diag_msg, tvb, ++offset, 1, FALSE);
472                     
473                     while(diag_len >= 2) {
474                         proto_tree_add_item(tree, hf_alcap_cau_diag_param_id, tvb, ++offset, 1, FALSE);
475                         proto_tree_add_item(tree, hf_alcap_cau_diag_field_num, tvb, ++offset, 1, FALSE);
476                         diag_len -= 2;
477                     }
478                 }
479                 default:
480                     /* XXX - TODO Q.2610 */
481                     pi = proto_tree_add_text(tree,tvb,offset,diag_len,"Undecoded");
482                     proto_item_set_expert_flags(pi, PI_UNDECODED, PI_WARN);
483                     break;
484             }
485         }
486     }
487     return ret_str;
488 }
489
490 static gchar* dissect_fields_ceid(packet_info* pinfo _U_, tvbuff_t *tvb, proto_tree *tree, int offset, int len, alcap_message_info_t* msg_info) {
491     /*
492      * Q.2630.1 -> 7.3.2 Connection Element Identifier
493      *
494      * 7.4.3 Path Identifier
495      * 7.4.4 Channel Identifier
496      */
497     proto_item* pi;
498     
499     if (len != 5) {
500         proto_item* bad_length = proto_tree_add_text(tree, tvb, offset, len,"[Wrong length for parameter fields]");
501         proto_item_set_expert_flags(bad_length, PI_MALFORMED, PI_WARN);
502         return NULL;
503     }        
504     
505     pi = proto_tree_add_item(tree,hf_alcap_ceid_pathid,tvb,offset,4,FALSE);
506     
507     msg_info->pathid = tvb_get_ntohl(tvb,offset);
508     msg_info->cid = tvb_get_guint8(tvb,offset+4);
509     
510     if (msg_info->pathid == 0) {
511         proto_item_append_text(pi," (All Paths in association)");
512         return "Path: 0 (All Paths)";
513     }
514     
515     pi = proto_tree_add_item(tree,hf_alcap_ceid_cid,tvb,offset+4,1,FALSE);
516     
517     if (msg_info->cid == 0) {
518         proto_item_append_text(pi," (All CIDs in the Path)");        
519         return ep_strdup_printf("Path: %u CID: 0 (Every CID)",msg_info->pathid);
520     } else {
521         return ep_strdup_printf("Path: %u CID: %u",msg_info->pathid,msg_info->cid);
522     }    
523 }
524
525 static gchar* dissect_fields_desea(packet_info* pinfo _U_, tvbuff_t *tvb, proto_tree *tree, int offset, int len, alcap_message_info_t* msg_info _U_) {
526     /*
527      * Q.2630.1 -> 7.3.3 Destination E.164 service endpoint address
528      *
529      * 7.4.13 Nature of Address
530      * 7.4.14 E.164 Address
531      */
532     e164_info_t* e164;
533
534     if (len < 2) {
535         proto_item* bad_length = proto_tree_add_text(tree, tvb, offset, len,"[Wrong length for parameter fields]");
536         proto_item_set_expert_flags(bad_length, PI_MALFORMED, PI_WARN);
537         return NULL;
538     }        
539     
540     e164 = ep_alloc(sizeof(e164_info_t));
541     
542     e164->e164_number_type = CALLED_PARTY_NUMBER;
543     e164->nature_of_address = tvb_get_guint8(tvb,offset) & 0x7f;
544     e164->E164_number_str = ep_tvb_memdup(tvb,offset+1,len);
545     e164->E164_number_str[len] = '\0';
546     e164->E164_number_length = len-1;
547     
548     dissect_e164_number(tvb, tree, offset-1, len, *e164);
549     
550     return NULL;
551 }
552
553 static gchar* dissect_fields_oesea(packet_info* pinfo _U_, tvbuff_t *tvb, proto_tree *tree, int offset, int len, alcap_message_info_t* msg_info _U_) {
554     /*
555      * Q.2630.3 -> 7.3.23 Origination E.164 service endpoint address
556      *
557      * 7.4.13 Nature of Address
558      * 7.4.14 E.164 Address
559      */
560     e164_info_t* e164;
561     
562     if (len < 2) {
563         proto_item* bad_length = proto_tree_add_text(tree, tvb, offset, len,"[Wrong length for parameter fields]");
564         proto_item_set_expert_flags(bad_length, PI_MALFORMED, PI_WARN);
565         return NULL;
566     }        
567     
568     e164 = ep_alloc(sizeof(e164_info_t));
569     
570     e164->e164_number_type = CALLING_PARTY_NUMBER;
571     e164->nature_of_address = tvb_get_guint8(tvb,offset) & 0x7f;
572     e164->E164_number_str = ep_tvb_memdup(tvb,offset+1,len);
573     e164->E164_number_str[len] = '\0';
574     e164->E164_number_length = len-1;
575     
576     dissect_e164_number(tvb, tree, offset-1, len, *e164);
577         
578     return NULL;
579 }
580
581 static gchar* dissect_fields_dnsea(packet_info* pinfo _U_, tvbuff_t *tvb, proto_tree *tree, int offset, int len, alcap_message_info_t* msg_info _U_) {
582     /*
583      * Q.2630.1 -> 7.3.4 Destination NSAP service endpoint address
584      *
585      * 7.4.15 NSAP Address
586      */
587     
588     if (len < 1) {
589         proto_item* bad_length = proto_tree_add_text(tree, tvb, offset, len,"[Wrong length for parameter fields]");
590         proto_item_set_expert_flags(bad_length, PI_MALFORMED, PI_WARN);
591         return NULL;
592     }        
593     
594     msg_info->dest_nsap = tvb_bytes_to_str(tvb,offset,20);
595
596     proto_tree_add_item(tree, hf_alcap_dnsea, tvb, offset, 20, FALSE);
597         dissect_nsap(tvb, offset,20, tree);
598     
599     return NULL;
600 }
601
602 static gchar* dissect_fields_onsea(packet_info* pinfo _U_, tvbuff_t *tvb, proto_tree *tree, int offset, int len, alcap_message_info_t* msg_info _U_) {
603     /*
604      * Q.2630.3 -> 7.3.24 Origination NSAP service endpoint address
605      *
606      * 7.4.15 NSAP Address
607      */
608     
609     if (len < 1) {
610         proto_item* bad_length = proto_tree_add_text(tree, tvb, offset, len,"[Wrong length for parameter fields]");
611         proto_item_set_expert_flags(bad_length, PI_MALFORMED, PI_WARN);
612         return NULL;
613     }
614     
615     msg_info->orig_nsap = tvb_bytes_to_str(tvb,offset,20);
616     
617     proto_tree_add_item(tree, hf_alcap_onsea, tvb, offset, 20, FALSE);
618         dissect_nsap(tvb, offset,20, tree);
619     
620     return NULL;
621 }
622
623 static gchar* dissect_fields_alc(packet_info* pinfo _U_, tvbuff_t *tvb, proto_tree *tree, int offset, int len, alcap_message_info_t* msg_info _U_) {
624     /*
625      * Q.2630.1 -> 7.3.5 Link characteristics
626      *
627      * 7.4.11 CPS-SDU Bit Rate -> Maximum CPS-SDU Bit Rate
628      * 7.4.11 CPS-SDU Bit Rate -> Average CPS-SDU Bit Rate
629      * 7.4.12 CPS-SDU Size -> Maximum CPS-SDU Size
630      * 7.4.12 CPS-SDU Size -> Average CPS-SDU Size
631      */
632     
633     if (len != 12) {
634         proto_item* bad_length = proto_tree_add_text(tree, tvb, offset, len,"[Wrong length for parameter fields]");
635         proto_item_set_expert_flags(bad_length, PI_MALFORMED, PI_WARN);
636         return NULL;
637     }
638     
639     proto_tree_add_item(tree, hf_alcap_alc_max_br_fw, tvb, offset+0, 2, FALSE);
640     proto_tree_add_item(tree, hf_alcap_alc_max_br_bw, tvb, offset+2, 2, FALSE);
641     proto_tree_add_item(tree, hf_alcap_alc_avg_br_fw, tvb, offset+4, 2, FALSE);
642     proto_tree_add_item(tree, hf_alcap_alc_avg_br_bw, tvb, offset+6, 2, FALSE);
643     proto_tree_add_item(tree, hf_alcap_alc_max_sdu_fw, tvb, offset+8, 1, FALSE);
644     proto_tree_add_item(tree, hf_alcap_alc_max_sdu_bw, tvb, offset+9, 1, FALSE);
645     proto_tree_add_item(tree, hf_alcap_alc_avg_sdu_fw, tvb, offset+10, 1, FALSE);
646     proto_tree_add_item(tree, hf_alcap_alc_avg_sdu_bw, tvb, offset+11, 1, FALSE);
647     
648     return NULL;
649 }
650
651 static gchar* dissect_fields_plc(packet_info* pinfo _U_, tvbuff_t *tvb, proto_tree *tree, int offset, int len, alcap_message_info_t* msg_info _U_) {
652     /*
653      * Q.2630.2 -> 7.3.19 Preferred Link characteristics
654      *
655      * 7.4.11 CPS-SDU Bit Rate -> Maximum CPS-SDU Bit Rate
656      * 7.4.11 CPS-SDU Bit Rate -> Average CPS-SDU Bit Rate
657      * 7.4.12 CPS-SDU Size -> Maximum CPS-SDU Size
658      * 7.4.12 CPS-SDU Size -> Average CPS-SDU Size
659      */
660     
661     if (len != 12) {
662         proto_item* bad_length = proto_tree_add_text(tree, tvb, offset, len,"[Wrong length for parameter fields]");
663         proto_item_set_expert_flags(bad_length, PI_MALFORMED, PI_WARN);
664         return NULL;
665     }
666     
667     proto_tree_add_item(tree, hf_alcap_plc_max_br_fw, tvb, offset+0, 2, FALSE);
668     proto_tree_add_item(tree, hf_alcap_plc_max_br_bw, tvb, offset+2, 2, FALSE);
669     proto_tree_add_item(tree, hf_alcap_plc_avg_br_fw, tvb, offset+4, 2, FALSE);
670     proto_tree_add_item(tree, hf_alcap_plc_avg_br_bw, tvb, offset+6, 2, FALSE);
671     proto_tree_add_item(tree, hf_alcap_plc_max_sdu_fw, tvb, offset+8, 1, FALSE);
672     proto_tree_add_item(tree, hf_alcap_plc_max_sdu_bw, tvb, offset+9, 1, FALSE);
673     proto_tree_add_item(tree, hf_alcap_plc_avg_sdu_fw, tvb, offset+10, 1, FALSE);
674     proto_tree_add_item(tree, hf_alcap_plc_avg_sdu_bw, tvb, offset+11, 1, FALSE);
675     
676     return NULL;
677 }
678
679 static gchar* dissect_fields_osaid(packet_info* pinfo _U_, tvbuff_t *tvb, proto_tree *tree, int offset, int len, alcap_message_info_t* msg_info _U_) {
680     /*
681      * Q.2630.1 -> 7.3.6 Originating signalling association identifier
682      *
683      * 7.4.2 Signalling Association Identifier -> Originating Signalling Association
684      */
685     if (len != 4) {
686         proto_item* bad_length = proto_tree_add_text(tree, tvb, offset, len,"[Wrong length for parameter fields]");
687         proto_item_set_expert_flags(bad_length, PI_MALFORMED, PI_WARN);
688         return NULL;
689     }
690     
691     msg_info->osaid = tvb_get_ntohl(tvb,offset);
692     
693     proto_tree_add_item(tree, hf_alcap_osaid, tvb, offset, 4, FALSE);
694     
695     return NULL;
696 }
697
698 static gchar* dissect_fields_sugr(packet_info* pinfo _U_, tvbuff_t *tvb, proto_tree *tree, int offset, int len, alcap_message_info_t* msg_info _U_) {
699     /*
700      * Q.2630.1 -> 7.3.7 Served user generated reference
701      *
702      * 7.4.10 Served User Generated Reference
703      */
704     if (len != 4) {
705         proto_item* bad_length = proto_tree_add_text(tree, tvb, offset, len,"[Wrong length for parameter fields]");
706         proto_item_set_expert_flags(bad_length, PI_MALFORMED, PI_WARN);
707         return NULL;
708     }
709     
710     msg_info->sugr = tvb_get_ntohl(tvb,offset);
711     
712     proto_tree_add_item(tree, hf_alcap_sugr, tvb, offset, 4, FALSE);
713     
714     return NULL;
715 }
716
717 static gchar* dissect_fields_suci(packet_info* pinfo _U_, tvbuff_t *tvb, proto_tree *tree, int offset, int len, alcap_message_info_t* msg_info _U_) {
718     /*
719      * Q.2630.2 -> 7.3.22 Served user correlation ID
720      *
721      * 7.4.22 Served user correlation ID
722      */
723     if (len != 4) {
724         proto_item* bad_length = proto_tree_add_text(tree, tvb, offset, len,"[Wrong length for parameter fields]");
725         proto_item_set_expert_flags(bad_length, PI_MALFORMED, PI_WARN);
726         return NULL;
727     }
728     
729     proto_tree_add_item(tree, hf_alcap_suci, tvb, offset, len, FALSE);
730     
731     return NULL;
732 }
733
734 static gchar* dissect_fields_ssia(packet_info* pinfo _U_, tvbuff_t *tvb, proto_tree *tree, int offset, int len, alcap_message_info_t* msg_info _U_) {
735     /*
736      * Q.2630.2 -> 7.3.9 Service specific information (Audio)
737      *
738      * 7.4.5 Organizational Unique Identifier
739      */
740     if (len != 8) {
741         proto_item* bad_length = proto_tree_add_text(tree, tvb, offset, len,"[Wrong length for parameter fields]");
742         proto_item_set_expert_flags(bad_length, PI_MALFORMED, PI_WARN);
743         return NULL;
744     }
745     
746     proto_tree_add_item(tree, hf_alcap_ssia_pr_type, tvb, offset+0,1,FALSE);
747     
748     proto_tree_add_item(tree, hf_alcap_ssia_pr_id, tvb, offset+2,1,FALSE);
749     
750     proto_tree_add_item(tree, hf_alcap_ssia_frm, tvb, offset+3,1,FALSE);
751     proto_tree_add_item(tree, hf_alcap_ssia_cmd, tvb, offset+3,1,FALSE);
752     proto_tree_add_item(tree, hf_alcap_ssia_mfr2, tvb, offset+3,1,FALSE);
753     proto_tree_add_item(tree, hf_alcap_ssia_mfr1, tvb, offset+3,1,FALSE);
754     proto_tree_add_item(tree, hf_alcap_ssia_dtmf, tvb, offset+3,1,FALSE);
755     proto_tree_add_item(tree, hf_alcap_ssia_cas, tvb, offset+3,1,FALSE);
756     proto_tree_add_item(tree, hf_alcap_ssia_fax, tvb, offset+3,1,FALSE);
757     proto_tree_add_item(tree, hf_alcap_ssia_pcm, tvb, offset+3,1,FALSE);
758     
759     proto_tree_add_item(tree, hf_alcap_ssia_max_len, tvb, offset+4,2,FALSE);
760     
761     proto_tree_add_item(tree, hf_alcap_ssia_oui, tvb, offset+5,3,FALSE);
762     
763     return NULL;
764 }
765
766 static gchar* dissect_fields_ssim(packet_info* pinfo _U_, tvbuff_t *tvb, proto_tree *tree, int offset, int len, alcap_message_info_t* msg_info _U_) {
767     /*
768      * Q.2630.1 -> 7.3.10 Service specific information (Multirate)
769      *
770      * 7.4.7 Multirate Service
771      */
772     if (len != 3) {
773         proto_item* bad_length = proto_tree_add_text(tree, tvb, offset, len,"[Wrong length for parameter fields]");
774         proto_item_set_expert_flags(bad_length, PI_MALFORMED, PI_WARN);
775         return NULL;
776     }
777     
778     proto_tree_add_item(tree,hf_alcap_ssim_frm,tvb,offset,1,FALSE);
779     proto_tree_add_item(tree,hf_alcap_ssim_mult,tvb,offset,1,FALSE);
780     proto_tree_add_item(tree,hf_alcap_ssim_max,tvb,offset+1,2,FALSE);
781     
782     return NULL;
783 }
784
785 static gchar* dissect_fields_ssisa(packet_info* pinfo _U_, tvbuff_t *tvb, proto_tree *tree, int offset, int len, alcap_message_info_t* msg_info _U_) {
786     /*
787      * Q.2630.1 -> 7.3.11 Service specific information (SAR-assured)
788      *
789      * 7.4.8 Segmentation and Reassembly (Assured Data Transfer)
790      */
791     if (len != 14) {
792         proto_item* bad_length = proto_tree_add_text(tree, tvb, offset, len,"[Wrong length for parameter fields]");
793         proto_item_set_expert_flags(bad_length, PI_MALFORMED, PI_WARN);
794         return NULL;
795     }
796
797     proto_tree_add_item(tree,hf_alcap_ssisa_max_sssar_fw,tvb,offset,3,FALSE);
798     proto_tree_add_item(tree,hf_alcap_ssisa_max_sssar_bw,tvb,offset+3,3,FALSE);
799     proto_tree_add_item(tree,hf_alcap_ssisa_max_sscop_sdu_fw,tvb,offset+6,2,FALSE);
800     proto_tree_add_item(tree,hf_alcap_ssisa_max_sscop_sdu_bw,tvb,offset+8,2,FALSE);
801     proto_tree_add_item(tree,hf_alcap_ssisa_max_sscop_uu_fw,tvb,offset+10,2,FALSE);
802     proto_tree_add_item(tree,hf_alcap_ssisa_max_sscop_uu_bw,tvb,offset+12,2,FALSE);
803
804     proto_tree_add_text(tree,tvb,offset,14,"Not yet decoded: Q.2630.1 7.4.8");
805     
806     return NULL;
807 }
808
809 static gchar* dissect_fields_ssisu(packet_info* pinfo _U_, tvbuff_t *tvb, proto_tree *tree, int offset, int len, alcap_message_info_t* msg_info _U_) {
810     /*
811      * Q.2630.1 -> 7.3.12 Service specific information (SAR-unassured)
812      *
813      * 7.4.9 Segmentation and Reassembly (Unassured Data Transfer)
814      */
815     if (len != 7) {
816         proto_item* bad_length = proto_tree_add_text(tree, tvb, offset, len,"[Wrong length for parameter fields]");
817         proto_item_set_expert_flags(bad_length, PI_MALFORMED, PI_WARN);
818         return NULL;
819     }
820     
821     proto_tree_add_item(tree,hf_alcap_ssisu_max_sssar_fw,tvb,offset,3,FALSE);
822     proto_tree_add_item(tree,hf_alcap_ssisu_max_sssar_bw,tvb,offset+3,3,FALSE);
823     proto_tree_add_item(tree,hf_alcap_ssisu_ted,tvb,offset+6,1,FALSE);
824     proto_tree_add_text(tree,tvb,offset,7,"Not yet decoded: Q.2630.1 7.4.9");
825     
826     return NULL;
827 }
828
829 static gchar* dissect_fields_none(packet_info* pinfo _U_, tvbuff_t *tvb, proto_tree *tree, int offset, int len, alcap_message_info_t* msg_info _U_) {
830     /*
831      * used for parameters that have no fields, just checks if len==0
832      *
833      * Q.2630.1 -> 7.3.13 Test connection indicator
834      * Q.2630.2 -> 7.3.20 Modify support for link characteristics
835      * Q.2630.2 -> 7.3.21 Modify support for service specific information
836      * Q.2630.3 -> 7.3.35 Transfer capability support
837      *
838      */
839     if (len != 0) {
840         proto_item* bad_length = proto_tree_add_text(tree, tvb, offset, len,"[Wrong length for parameter fields]");
841         proto_item_set_expert_flags(bad_length, PI_MALFORMED, PI_WARN);
842         return NULL;
843     }
844     
845     return NULL;
846 }
847
848 static gchar* dissect_fields_ssiae(packet_info* pinfo _U_, tvbuff_t *tvb, proto_tree *tree, int offset, int len, alcap_message_info_t* msg_info _U_) {
849     /*
850      * Q.2630.2 -> 7.3.15 Service specific information (Audio Extended)
851      *
852      * 7.4.19 Audio extended service
853      * 7.4.5 Organizational unique identifier
854      */
855     if (len != 8) {
856         proto_item* bad_length = proto_tree_add_text(tree, tvb, offset, len,"[Wrong length for parameter fields]");
857         proto_item_set_expert_flags(bad_length, PI_MALFORMED, PI_WARN);
858         return NULL;
859     }
860     
861     proto_tree_add_item(tree, hf_alcap_ssiae_pr_type, tvb, offset,1,FALSE);
862     proto_tree_add_item(tree, hf_alcap_ssiae_lb, tvb, offset,1,FALSE);
863     proto_tree_add_item(tree, hf_alcap_ssiae_rc, tvb, offset,1,FALSE);
864     proto_tree_add_item(tree, hf_alcap_ssiae_syn, tvb, offset,1,FALSE);
865     
866     proto_tree_add_item(tree, hf_alcap_ssiae_pr_id, tvb, offset+1,1,FALSE);
867     
868     proto_tree_add_item(tree, hf_alcap_ssiae_frm, tvb, offset+3,1,FALSE);
869     proto_tree_add_item(tree, hf_alcap_ssiae_cmd, tvb, offset+3,1,FALSE);
870     proto_tree_add_item(tree, hf_alcap_ssiae_mfr2, tvb, offset+3,1,FALSE);
871     proto_tree_add_item(tree, hf_alcap_ssiae_mfr1, tvb, offset+3,1,FALSE);
872     proto_tree_add_item(tree, hf_alcap_ssiae_dtmf, tvb, offset+3,1,FALSE);
873     proto_tree_add_item(tree, hf_alcap_ssiae_cas, tvb, offset+3,1,FALSE);
874     proto_tree_add_item(tree, hf_alcap_ssiae_fax, tvb, offset+3,1,FALSE);
875     proto_tree_add_item(tree, hf_alcap_ssiae_pcm, tvb, offset+3,1,FALSE);
876     
877     proto_tree_add_item(tree, hf_alcap_ssiae_max_len, tvb, offset+4,2,FALSE);
878     
879     proto_tree_add_item(tree, hf_alcap_ssiae_oui, tvb, offset+5,3,FALSE);
880     
881     return NULL;
882 }
883
884 static gchar* dissect_fields_pssiae(packet_info* pinfo _U_, tvbuff_t *tvb, proto_tree *tree, int offset, int len, alcap_message_info_t* msg_info _U_) {
885     /*
886      * Q.2630.2 -> 7.3.17 Preferred service specific information (Audio Extended)
887      *
888      * 7.4.19 Audio extended service
889      * 7.4.5 Organizational unique identifier
890      */
891     if (len != 8) {
892         proto_item* bad_length = proto_tree_add_text(tree, tvb, offset, len,"[Wrong length for parameter fields]");
893         proto_item_set_expert_flags(bad_length, PI_MALFORMED, PI_WARN);
894         return NULL;
895     }
896     
897     proto_tree_add_item(tree, hf_alcap_pssiae_pr_type, tvb, offset,1,FALSE);
898     proto_tree_add_item(tree, hf_alcap_pssiae_lb, tvb, offset,1,FALSE);
899     proto_tree_add_item(tree, hf_alcap_pssiae_rc, tvb, offset,1,FALSE);
900     proto_tree_add_item(tree, hf_alcap_pssiae_syn, tvb, offset,1,FALSE);
901     
902     proto_tree_add_item(tree, hf_alcap_pssiae_pr_id, tvb, offset+1,1,FALSE);
903     
904     proto_tree_add_item(tree, hf_alcap_pssiae_frm, tvb, offset+3,1,FALSE);
905     proto_tree_add_item(tree, hf_alcap_pssiae_cmd, tvb, offset+3,1,FALSE);
906     proto_tree_add_item(tree, hf_alcap_pssiae_mfr2, tvb, offset+3,1,FALSE);
907     proto_tree_add_item(tree, hf_alcap_pssiae_mfr1, tvb, offset+3,1,FALSE);
908     proto_tree_add_item(tree, hf_alcap_pssiae_dtmf, tvb, offset+3,1,FALSE);
909     proto_tree_add_item(tree, hf_alcap_pssiae_cas, tvb, offset+3,1,FALSE);
910     proto_tree_add_item(tree, hf_alcap_pssiae_fax, tvb, offset+3,1,FALSE);
911     proto_tree_add_item(tree, hf_alcap_pssiae_pcm, tvb, offset+3,1,FALSE);
912     
913     proto_tree_add_item(tree, hf_alcap_pssiae_max_len, tvb, offset+4,2,FALSE);
914     
915     proto_tree_add_item(tree, hf_alcap_pssiae_oui, tvb, offset+5,3,FALSE);
916     
917     return NULL;
918 }
919
920 static gchar* dissect_fields_ssime(packet_info* pinfo _U_, tvbuff_t *tvb, proto_tree *tree, int offset, int len, alcap_message_info_t* msg_info _U_) {
921     /*
922      * Q.2630.2 -> 7.3.16 Service specific information (Multirate Extended)
923      *
924      * 7.4.20 Multirate extended service
925      */
926     if (len != 3) {
927         proto_item* bad_length = proto_tree_add_text(tree, tvb, offset, len,"[Wrong length for parameter fields]");
928         proto_item_set_expert_flags(bad_length, PI_MALFORMED, PI_WARN);
929         return NULL;
930     }
931     
932     proto_tree_add_item(tree,hf_alcap_ssime_frm,tvb,offset,1,FALSE);
933     proto_tree_add_item(tree,hf_alcap_ssime_lb,tvb,offset,1,FALSE);
934     proto_tree_add_item(tree,hf_alcap_ssime_mult,tvb,offset,1,FALSE);
935     proto_tree_add_item(tree,hf_alcap_ssime_max,tvb,offset+1,2,FALSE);
936     
937     return NULL;
938 }
939
940 static gchar* dissect_fields_pssime(packet_info* pinfo _U_, tvbuff_t *tvb, proto_tree *tree, int offset, int len, alcap_message_info_t* msg_info _U_) {
941     /*
942      * Q.2630.2 -> 7.3.18 Preferred service specific information (Multirate Extended)
943      *
944      * 7.4.20 Multirate extended service
945      */
946     if (len != 3) {
947         proto_item* bad_length = proto_tree_add_text(tree, tvb, offset, len,"[Wrong length for parameter fields]");
948         proto_item_set_expert_flags(bad_length, PI_MALFORMED, PI_WARN);
949         return NULL;
950     }
951     
952     proto_tree_add_item(tree,hf_alcap_pssime_frm,tvb,offset,1,FALSE);
953     proto_tree_add_item(tree,hf_alcap_pssime_lb,tvb,offset,1,FALSE);
954     proto_tree_add_item(tree,hf_alcap_pssime_mult,tvb,offset,1,FALSE);
955     proto_tree_add_item(tree,hf_alcap_pssime_max,tvb,offset+1,2,FALSE);
956     
957     return NULL;
958 }
959
960 static gchar* dissect_fields_acc(packet_info* pinfo _U_, tvbuff_t *tvb, proto_tree *tree, int offset, int len, alcap_message_info_t* msg_info _U_) {
961     /*
962      * Q.2630.3 -> 7.3.25 Automatic congestion control
963      *
964      * 7.4.23 AAL type 2 Node Automatic Congestion Level
965      */
966     if (len != 1) {
967         proto_item* bad_length = proto_tree_add_text(tree, tvb, offset, len,"[Wrong length for parameter fields]");
968         proto_item_set_expert_flags(bad_length, PI_MALFORMED, PI_WARN);
969         return NULL;
970     }
971     
972     proto_tree_add_item(tree,hf_alcap_acc_level,tvb,offset,len,FALSE);
973     return NULL;
974 }
975
976
977 static gchar* dissect_fields_cp(packet_info* pinfo _U_, tvbuff_t *tvb, proto_tree *tree, int offset, int len, alcap_message_info_t* msg_info _U_) {
978     /*
979      * Q.2630.3 -> 7.3.26 Connection Priority
980      *
981      * 7.4.24 Priority
982      */
983     if (len != 1) {
984         proto_item* bad_length = proto_tree_add_text(tree, tvb, offset, len,"[Wrong length for parameter fields]");
985         proto_item_set_expert_flags(bad_length, PI_MALFORMED, PI_WARN);
986         return NULL;
987     }
988     
989     proto_tree_add_item(tree,hf_alcap_cp,tvb,offset,len,FALSE);
990     return NULL;
991 }
992
993 static gchar* dissect_fields_pt(packet_info* pinfo _U_, tvbuff_t *tvb, proto_tree *tree, int offset, int len, alcap_message_info_t* msg_info _U_) {
994     /*
995      * Q.2630.2 -> 7.3.14 Path Type
996      *
997      * 7.4.21 AAL Type 2 Path QoS Codepoint
998      */
999     if (len != 1) {
1000         proto_item* bad_length = proto_tree_add_text(tree, tvb, offset, len,"[Wrong length for parameter fields]");
1001         proto_item_set_expert_flags(bad_length, PI_MALFORMED, PI_WARN);
1002         return NULL;
1003     }
1004     
1005     proto_tree_add_item(tree,hf_alcap_pt,tvb,offset,len,FALSE);
1006     return NULL;
1007 }
1008
1009
1010 static gchar* dissect_fields_hc(packet_info* pinfo _U_, tvbuff_t *tvb, proto_tree *tree, int offset, int len, alcap_message_info_t* msg_info _U_) {
1011     /*
1012      * Q.2630.3 -> 7.3.27 Hop counter
1013      *
1014      * 7.4.25 AAL type 2 Hop Counter
1015      */
1016     if (len != 1) {
1017         proto_item* bad_length = proto_tree_add_text(tree, tvb, offset, len,"[Wrong length for parameter fields]");
1018         proto_item_set_expert_flags(bad_length, PI_MALFORMED, PI_WARN);
1019         return NULL;
1020     }
1021     
1022     proto_tree_add_item(tree,hf_alcap_hc,tvb,offset,len,FALSE);
1023     return NULL;
1024 }
1025
1026
1027 static gchar* dissect_fields_fbw(packet_info* pinfo _U_, tvbuff_t *tvb, proto_tree *tree, int offset, int len, alcap_message_info_t* msg_info _U_) {
1028     /*
1029      * Q.2630.3 -> 7.3.32 Fixed bandwidth transfer capability
1030      *
1031      * 7.4.26 CPS Bit rate -> Peak CPS bit rate
1032      * 7.4.27 CPS Token Bucket Size -> CPS token bucket size associated with Peak CPS bit rate
1033      * 7.4.28 Maximum allowed CPS packet size
1034      */
1035     if (len != 12) {
1036         proto_item* bad_length = proto_tree_add_text(tree, tvb, offset, len,"[Wrong length for parameter fields]");
1037         proto_item_set_expert_flags(bad_length, PI_MALFORMED, PI_WARN);
1038         return NULL;
1039     }
1040     
1041     proto_tree_add_item(tree,hf_alcap_fbw_br_fw,tvb,offset,3,FALSE);
1042     proto_tree_add_item(tree,hf_alcap_fbw_br_bw,tvb,offset+3,3,FALSE);
1043     proto_tree_add_item(tree,hf_alcap_fbw_bucket_fw,tvb,offset+6,2,FALSE);
1044     proto_tree_add_item(tree,hf_alcap_fbw_bucket_bw,tvb,offset+8,2,FALSE);
1045     proto_tree_add_item(tree,hf_alcap_fbw_size_fw,tvb,offset+10,1,FALSE);
1046     proto_tree_add_item(tree,hf_alcap_fbw_size_bw,tvb,offset+11,1,FALSE);
1047     
1048     return NULL;
1049 }
1050
1051 static gchar* dissect_fields_pfbw(packet_info* pinfo _U_, tvbuff_t *tvb, proto_tree *tree, int offset, int len, alcap_message_info_t* msg_info _U_) {
1052     /*
1053      * Q.2630.3 -> 7.3.29 Preferred fixed bandwidth transfer capability
1054      *
1055      * 7.4.26 CPS Bit rate -> Peak CPS bit rate
1056      * 7.4.27 CPS Token Bucket Size -> CPS token bucket size associated with Peak CPS bit rate
1057      * 7.4.28 Maximum allowed CPS packet size
1058      */
1059     if (len != 12) {
1060         proto_item* bad_length = proto_tree_add_text(tree, tvb, offset, len,"[Wrong length for parameter fields]");
1061         proto_item_set_expert_flags(bad_length, PI_MALFORMED, PI_WARN);
1062         return NULL;
1063     }
1064     
1065     proto_tree_add_item(tree,hf_alcap_pfbw_br_fw,tvb,offset,3,FALSE);
1066     proto_tree_add_item(tree,hf_alcap_pfbw_br_bw,tvb,offset+3,3,FALSE);
1067     proto_tree_add_item(tree,hf_alcap_pfbw_bucket_fw,tvb,offset+6,2,FALSE);
1068     proto_tree_add_item(tree,hf_alcap_pfbw_bucket_bw,tvb,offset+8,2,FALSE);
1069     proto_tree_add_item(tree,hf_alcap_pfbw_size_fw,tvb,offset+10,1,FALSE);
1070     proto_tree_add_item(tree,hf_alcap_pfbw_size_bw,tvb,offset+11,1,FALSE);
1071     
1072     return NULL;
1073 }
1074
1075 static gchar* dissect_fields_vbws(packet_info* pinfo _U_, tvbuff_t *tvb, proto_tree *tree, int offset, int len, alcap_message_info_t* msg_info _U_) {
1076     /*
1077      * Q.2630.3 -> 7.3.33 Variable bandwidth stringent transfer capability
1078      *
1079      * 7.4.26 CPS Bit rate -> Peak CPS bit rate
1080      * 7.4.27 CPS Token Bucket Size -> CPS token bucket size associated with Peak CPS bit rate
1081      * 7.4.28 Maximum allowed CPS packet size
1082      * 7.4.29 Source Traffic Type
1083      */
1084     if (len != 13) {
1085         proto_item* bad_length = proto_tree_add_text(tree, tvb, offset, len,"[Wrong length for parameter fields]");
1086         proto_item_set_expert_flags(bad_length, PI_MALFORMED, PI_WARN);
1087         return NULL;
1088     }
1089     
1090     proto_tree_add_item(tree,hf_alcap_vbws_br_fw,tvb,offset,3,FALSE);
1091     proto_tree_add_item(tree,hf_alcap_vbws_br_bw,tvb,offset+3,3,FALSE);
1092     proto_tree_add_item(tree,hf_alcap_vbws_bucket_fw,tvb,offset+6,2,FALSE);
1093     proto_tree_add_item(tree,hf_alcap_vbws_bucket_bw,tvb,offset+8,2,FALSE);
1094     proto_tree_add_item(tree,hf_alcap_vbws_size_fw,tvb,offset+10,1,FALSE);
1095     proto_tree_add_item(tree,hf_alcap_vbws_size_bw,tvb,offset+11,1,FALSE);
1096     proto_tree_add_item(tree,hf_alcap_vbws_size_bw,tvb,offset+11,1,FALSE);
1097     proto_tree_add_item(tree,hf_alcap_vbws_stt,tvb,offset+12,1,FALSE);
1098     
1099     return NULL;
1100 }
1101
1102 static gchar* dissect_fields_pvbws(packet_info* pinfo _U_, tvbuff_t *tvb, proto_tree *tree, int offset, int len, alcap_message_info_t* msg_info _U_) {
1103     /*
1104      * Q.2630.3 -> 7.3.30 Preferred variable bandwidth stringent transfer capability
1105      *
1106      * 7.4.26 CPS Bit rate -> Peak CPS bit rate
1107      * 7.4.27 CPS Token Bucket Size -> CPS token bucket size associated with Peak CPS bit rate
1108      * 7.4.28 Maximum allowed CPS packet size
1109      * 7.4.29 Source Traffic Type
1110      */
1111     if (len != 13) {
1112         proto_item* bad_length = proto_tree_add_text(tree, tvb, offset, len,"[Wrong length for parameter fields]");
1113         proto_item_set_expert_flags(bad_length, PI_MALFORMED, PI_WARN);
1114         return NULL;
1115     }
1116     
1117     proto_tree_add_item(tree,hf_alcap_pvbws_br_fw,tvb,offset,3,FALSE);
1118     proto_tree_add_item(tree,hf_alcap_pvbws_br_bw,tvb,offset+3,3,FALSE);
1119     proto_tree_add_item(tree,hf_alcap_pvbws_bucket_fw,tvb,offset+6,2,FALSE);
1120     proto_tree_add_item(tree,hf_alcap_pvbws_bucket_bw,tvb,offset+8,2,FALSE);
1121     proto_tree_add_item(tree,hf_alcap_pvbws_size_fw,tvb,offset+10,1,FALSE);
1122     proto_tree_add_item(tree,hf_alcap_pvbws_size_bw,tvb,offset+11,1,FALSE);
1123     proto_tree_add_item(tree,hf_alcap_pvbws_size_bw,tvb,offset+11,1,FALSE);
1124     proto_tree_add_item(tree,hf_alcap_pvbws_stt,tvb,offset+12,1,FALSE);
1125     
1126     return NULL;
1127 }
1128
1129
1130 static gchar* dissect_fields_pvbwt(packet_info* pinfo _U_, tvbuff_t *tvb, proto_tree *tree, int offset, int len, alcap_message_info_t* msg_info _U_) {
1131     /*
1132      * Q.2630.3 -> 7.3.31 Preferred variable bandwidth tolerant transfer capability
1133      *
1134      * 7.4.26 CPS Bit rate -> Peak CPS bit rate
1135      * 7.4.27 CPS Token Bucket Size -> CPS token bucket size associated with Peak CPS bit rate
1136      * 7.4.26 CPS Bit rate -> Sustainable CPS bit rate
1137      * 7.4.27 CPS Token Bucket Size -> CPS token bucket size associated with Sustainable CPS bit rate
1138      * 7.4.28 Maximum allowed CPS packet size
1139      */
1140     
1141     if (len != 22) {
1142         proto_item* bad_length = proto_tree_add_text(tree, tvb, offset, len,"[Wrong length for parameter fields]");
1143         proto_item_set_expert_flags(bad_length, PI_MALFORMED, PI_WARN);
1144         return NULL;
1145     }
1146     
1147     proto_tree_add_item(tree,hf_alcap_pvbwt_peak_br_fw,tvb,offset,3,FALSE);
1148     proto_tree_add_item(tree,hf_alcap_pvbwt_peak_br_bw,tvb,offset+3,3,FALSE);
1149     
1150     proto_tree_add_item(tree,hf_alcap_pvbwt_peak_bucket_fw,tvb,offset+6,2,FALSE);
1151     proto_tree_add_item(tree,hf_alcap_pvbwt_peak_bucket_bw,tvb,offset+8,2,FALSE);
1152     
1153     proto_tree_add_item(tree,hf_alcap_pvbwt_sust_br_fw,tvb,offset+10,3,FALSE);
1154     proto_tree_add_item(tree,hf_alcap_pvbwt_sust_br_bw,tvb,offset+13,3,FALSE);
1155     
1156     proto_tree_add_item(tree,hf_alcap_pvbwt_sust_bucket_fw,tvb,offset+16,2,FALSE);
1157     proto_tree_add_item(tree,hf_alcap_pvbwt_sust_bucket_bw,tvb,offset+18,2,FALSE);
1158     
1159     proto_tree_add_item(tree,hf_alcap_pvbwt_size_fw,tvb,offset+20,1,FALSE);
1160     proto_tree_add_item(tree,hf_alcap_pvbwt_size_bw,tvb,offset+21,1,FALSE);
1161     
1162     return NULL;
1163 }
1164
1165 static gchar* dissect_fields_vbwt(packet_info* pinfo _U_, tvbuff_t *tvb, proto_tree *tree, int offset, int len, alcap_message_info_t* msg_info _U_) {
1166     /*
1167      * Q.2630.3 -> 7.3.34 Variable bandwidth tolerant transfer capability
1168      *
1169      * 7.4.26 CPS Bit rate -> Peak CPS bit rate
1170      * 7.4.27 CPS Token Bucket Size -> CPS token bucket size associated with Peak CPS bit rate
1171      * 7.4.26 CPS Bit rate -> Sustainable CPS bit rate
1172      * 7.4.27 CPS Token Bucket Size -> CPS token bucket size associated with Sustainable CPS bit rate
1173      * 7.4.28 Maximum allowed CPS packet size
1174      */
1175     if (len != 22) {
1176         proto_item* bad_length = proto_tree_add_text(tree, tvb, offset, len,"[Wrong length for parameter fields]");
1177         proto_item_set_expert_flags(bad_length, PI_MALFORMED, PI_WARN);
1178         return NULL;
1179     }
1180     
1181     proto_tree_add_item(tree,hf_alcap_vbwt_peak_br_fw,tvb,offset,3,FALSE);
1182     proto_tree_add_item(tree,hf_alcap_vbwt_peak_br_bw,tvb,offset+3,3,FALSE);
1183     
1184     proto_tree_add_item(tree,hf_alcap_vbwt_peak_bucket_fw,tvb,offset+6,2,FALSE);
1185     proto_tree_add_item(tree,hf_alcap_vbwt_peak_bucket_bw,tvb,offset+8,2,FALSE);
1186     
1187     proto_tree_add_item(tree,hf_alcap_vbwt_sust_br_fw,tvb,offset+10,3,FALSE);
1188     proto_tree_add_item(tree,hf_alcap_vbwt_sust_br_bw,tvb,offset+13,3,FALSE);
1189     
1190     proto_tree_add_item(tree,hf_alcap_vbwt_sust_bucket_fw,tvb,offset+16,2,FALSE);
1191     proto_tree_add_item(tree,hf_alcap_vbwt_sust_bucket_bw,tvb,offset+18,2,FALSE);
1192     
1193     proto_tree_add_item(tree,hf_alcap_vbwt_size_fw,tvb,offset+20,1,FALSE);
1194     proto_tree_add_item(tree,hf_alcap_vbwt_size_bw,tvb,offset+21,1,FALSE);
1195     
1196     return NULL;
1197 }
1198
1199 static gchar* dissect_fields_sut(packet_info* pinfo _U_, tvbuff_t *tvb, proto_tree *tree, int offset, int len, alcap_message_info_t* msg_info _U_) {
1200     /*
1201      * Q.2630.1 -> 7.3.8 Served user transport
1202      *
1203      * 7.4.18 Served User Transport
1204      */
1205     guint sut_len;
1206     
1207     if (len < 2) {
1208         proto_item* bad_length = proto_tree_add_text(tree, tvb, offset, len,"[Wrong length for parameter fields]");
1209         proto_item_set_expert_flags(bad_length, PI_MALFORMED, PI_WARN);
1210         return NULL;
1211     }
1212     
1213     sut_len = tvb_get_guint8(tvb,offset);
1214     
1215     proto_tree_add_item(tree, hf_alcap_sut_len, tvb, offset, 1, FALSE);
1216     proto_tree_add_item(tree, hf_alcap_sut, tvb, offset, sut_len, FALSE);
1217     
1218     return NULL;
1219 }
1220
1221 typedef gchar* (*alcap_parameter_dissector_t) (packet_info* pinfo, tvbuff_t*, proto_tree*, int, int, alcap_message_info_t*);
1222
1223 typedef struct _alcap_param_info_t {
1224     gint ett;
1225     gchar* name;
1226     alcap_parameter_dissector_t dissect_fields;
1227     gboolean run_wo_tree;
1228 } alcap_param_info_t;
1229
1230 static alcap_param_info_t param_infos[]  = {
1231     {-1, "Unknown", dissect_fields_unknown , FALSE},
1232     {-1, "CAU", dissect_fields_cau, TRUE},
1233     {-1, "CEID", dissect_fields_ceid, TRUE},
1234     {-1, "DESEA", dissect_fields_desea, FALSE},
1235     {-1, "DNSEA", dissect_fields_dnsea, TRUE},
1236     {-1, "ALC", dissect_fields_alc, FALSE},
1237     {-1, "OSAID", dissect_fields_osaid, TRUE},
1238     {-1, "SUGR", dissect_fields_sugr, TRUE},
1239     {-1, "SUT", dissect_fields_sut, FALSE},
1240     {-1, "SSIA", dissect_fields_ssia, FALSE},
1241     {-1, "SSIM", dissect_fields_ssim, FALSE},
1242     {-1, "SSISA", dissect_fields_ssisa, FALSE},
1243     {-1, "SSISU", dissect_fields_ssisu, FALSE},
1244     {-1, "TCI", dissect_fields_none, FALSE},
1245     {-1, "MSLC", dissect_fields_none, FALSE},
1246     {-1, "MSSSI", dissect_fields_none, FALSE},
1247     {-1, "PT", dissect_fields_pt, FALSE},
1248     {-1, "PLC", dissect_fields_plc, FALSE},
1249     {-1, "PSSIAE", dissect_fields_pssiae, FALSE},
1250     {-1, "PSSIME", dissect_fields_pssime, FALSE},
1251     {-1, "SUCI", dissect_fields_suci, FALSE},
1252     {-1, "ONSEA", dissect_fields_onsea, TRUE},
1253     {-1, "SSIAE", dissect_fields_ssiae, FALSE},
1254     {-1, "SSIME", dissect_fields_ssime, FALSE},
1255     {-1, "ACC", dissect_fields_acc, FALSE},
1256     {-1, "CP", dissect_fields_cp, FALSE},
1257     {-1, "HC", dissect_fields_hc, FALSE},
1258     {-1, "OESEA", dissect_fields_oesea, FALSE},
1259     {-1, "PFBW", dissect_fields_pfbw, FALSE},
1260     {-1, "PVBWS", dissect_fields_pvbws, FALSE},
1261     {-1, "PVBWT", dissect_fields_pvbwt, FALSE},
1262     {-1, "TTC", dissect_fields_none, FALSE},
1263     {-1, "FBW", dissect_fields_fbw, FALSE},
1264     {-1, "VBWS", dissect_fields_vbws, FALSE},
1265     {-1, "VBWT", dissect_fields_vbwt, FALSE},
1266     {-1, "TCS", dissect_fields_none, FALSE}
1267 };
1268
1269 #define GET_PARAM_INFO(id) ( array_length(param_infos) < id ? &(param_infos[0]) : &(param_infos[id]) )
1270
1271 typedef struct _alcap_msg_type_info_t {
1272     gchar* abbr;
1273     int severity;
1274 } alcap_msg_type_info_t;
1275
1276 static alcap_msg_type_info_t msg_types[] = {
1277     { "Unknown Message ", PI_ERROR },
1278     { "BLC ", PI_NOTE },
1279     { "BLO ", PI_NOTE },
1280     { "CFN ", PI_WARN },
1281     { "ECF ", PI_CHAT },
1282     { "ERQ ", PI_CHAT },
1283     { "RLC ", PI_CHAT },
1284     { "REL ", PI_CHAT },
1285     { "RSC ", PI_NOTE },
1286     { "RES ", PI_NOTE },
1287     { "UBC ", PI_NOTE },
1288     { "UBL ", PI_NOTE },
1289     { "MOA ", PI_CHAT },
1290     { "MOR ", PI_CHAT },
1291     { "MOD ", PI_CHAT },
1292     { NULL, 0 }
1293 };
1294
1295 static void alcap_leg_tree(proto_tree* tree, tvbuff_t* tvb, const alcap_leg_info_t* leg) {
1296     proto_item* pi = proto_tree_add_text(tree,tvb,0,0,"[ALCAP Leg Info]");
1297     
1298     tree = proto_item_add_subtree(pi,ett_leg);
1299     
1300     if (leg->dsaid) {
1301         pi = proto_tree_add_uint(tree,hf_alcap_leg_dsaid,tvb,0,0,leg->dsaid);
1302         PROTO_ITEM_SET_GENERATED(pi);
1303     }
1304     
1305     if (leg->osaid) {
1306         pi = proto_tree_add_uint(tree,hf_alcap_leg_osaid,tvb,0,0,leg->osaid);
1307         PROTO_ITEM_SET_GENERATED(pi);
1308     }
1309     
1310     if (leg->pathid) {
1311         pi = proto_tree_add_uint(tree,hf_alcap_leg_pathid,tvb,0,0,leg->pathid);
1312         PROTO_ITEM_SET_GENERATED(pi);
1313     }
1314     
1315     if (leg->cid) {
1316         pi = proto_tree_add_uint(tree,hf_alcap_leg_cid,tvb,0,0,leg->cid);
1317         PROTO_ITEM_SET_GENERATED(pi);
1318     }
1319     
1320     if (leg->sugr) {
1321         pi = proto_tree_add_uint(tree,hf_alcap_leg_sugr,tvb,0,0,leg->sugr);
1322         PROTO_ITEM_SET_GENERATED(pi);
1323     }
1324     
1325     if (leg->orig_nsap) {
1326         pi = proto_tree_add_string(tree,hf_alcap_leg_onsea,tvb,0,0,leg->orig_nsap);
1327         PROTO_ITEM_SET_GENERATED(pi);
1328     }
1329     
1330     if (leg->dest_nsap) {
1331         pi = proto_tree_add_string(tree,hf_alcap_leg_dnsea,tvb,0,0,leg->dest_nsap);
1332         PROTO_ITEM_SET_GENERATED(pi);
1333     }
1334     
1335     if(leg->release_cause) {
1336         pi = proto_tree_add_uint(tree,hf_alcap_leg_release_cause,tvb,0,0,leg->release_cause);
1337         PROTO_ITEM_SET_GENERATED(pi);
1338         if (leg->release_cause && leg->release_cause != 31)
1339             proto_item_set_expert_flags(pi, PI_RESPONSE_CODE, PI_WARN);
1340     }
1341     
1342     if(leg->msgs) {
1343         alcap_msg_data_t* msg = leg->msgs;
1344         proto_item* pi = proto_tree_add_text(tree,tvb,0,0,"[Messages in this leg]");
1345         proto_tree* tree = proto_item_add_subtree(pi,ett_leg);
1346         
1347         
1348         do {
1349             pi = proto_tree_add_uint(tree,hf_alcap_leg_frame,tvb,0,0,msg->framenum);
1350             proto_item_set_text(pi,"%s in frame %u", val_to_str(msg->msg_type,msg_type_strings,"Unknown message"),msg->framenum);
1351             PROTO_ITEM_SET_GENERATED(pi);
1352         } while (( msg = msg->next));
1353         
1354     }
1355     
1356 }
1357
1358
1359 extern void alcap_tree_from_bearer_key(proto_tree* tree, tvbuff_t* tvb, const  gchar* key) {
1360     alcap_leg_info_t* leg = g_hash_table_lookup(legs_by_bearer,key);
1361     
1362     if (leg) {
1363         alcap_leg_tree(tree,tvb,leg);
1364     }
1365 }
1366
1367 #define GET_MSG_TYPE(id) ( array_length(msg_types) < id ? &(msg_types[0]) : &(msg_types[id]) )
1368
1369 static void dissect_alcap(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree) {
1370     proto_tree  *alcap_tree = NULL;
1371     alcap_message_info_t* msg_info = ep_alloc0(sizeof(alcap_message_info_t));
1372     int len = tvb_length(tvb);
1373     int offset;
1374     proto_item* pi;
1375     proto_tree* compat_tree;
1376     alcap_msg_type_info_t* msg_type;
1377     
1378     if (check_col(pinfo->cinfo, COL_PROTOCOL))
1379                 col_set_str(pinfo->cinfo, COL_PROTOCOL, alcap_proto_name_short);
1380     
1381     if (tree) {
1382                 proto_item      *alcap_item = proto_tree_add_item(tree, proto_alcap, tvb, 0, -1, FALSE);
1383                 alcap_tree = proto_item_add_subtree(alcap_item, ett_alcap);
1384     }
1385         
1386     proto_tree_add_item(alcap_tree,hf_alcap_dsaid,tvb,0,4,FALSE);
1387     pi = proto_tree_add_item(alcap_tree,hf_alcap_msg_id,tvb,4,1,FALSE);
1388     
1389     msg_info->dsaid = tvb_get_ntohl(tvb, 0);
1390     msg_info->msg_type = tvb_get_guint8(tvb, 4);
1391     msg_type = GET_MSG_TYPE(msg_info->msg_type);
1392     
1393     expert_add_info_format(pinfo, pi, PI_RESPONSE_CODE, msg_type->severity, " ");
1394     
1395     if (check_col(pinfo->cinfo, COL_INFO))
1396                 col_set_str(pinfo->cinfo, COL_INFO, msg_type->abbr);
1397     
1398     
1399     pi = proto_tree_add_item(alcap_tree,hf_alcap_compat,tvb,5,1,FALSE);
1400     compat_tree = proto_item_add_subtree(pi,ett_compat);
1401     proto_tree_add_item(compat_tree,hf_alcap_compat_pass_on_sni,tvb,5,1,FALSE);
1402     proto_tree_add_item(compat_tree,hf_alcap_compat_pass_on_ii,tvb,5,1,FALSE);
1403     proto_tree_add_item(compat_tree,hf_alcap_compat_general_sni,tvb,5,1,FALSE);
1404     proto_tree_add_item(compat_tree,hf_alcap_compat_general_ii,tvb,5,1,FALSE);
1405     
1406     len -= ALCAP_MSG_HEADER_LEN;
1407     offset = ALCAP_MSG_HEADER_LEN;
1408     
1409     while(len > 0) {
1410         guint param_id = tvb_get_guint8(tvb,offset);
1411         guint param_len = tvb_get_guint8(tvb,offset+2);
1412         const alcap_param_info_t* param_info = GET_PARAM_INFO(param_id);
1413         proto_tree* param_tree;
1414         gchar* colinfo_str = NULL;
1415         
1416         pi = proto_tree_add_item(alcap_tree,hf_alcap_param_id,tvb,offset,1,FALSE);
1417         param_tree = proto_item_add_subtree(pi,param_info->ett);
1418         
1419         pi = proto_tree_add_item(param_tree,hf_alcap_compat,tvb,offset+1,1,FALSE);        
1420         compat_tree = proto_item_add_subtree(pi,ett_compat);
1421         proto_tree_add_item(compat_tree,hf_alcap_compat_pass_on_sni,tvb,offset+1,1,FALSE);
1422         proto_tree_add_item(compat_tree,hf_alcap_compat_pass_on_ii,tvb,offset+1,1,FALSE);
1423         proto_tree_add_item(compat_tree,hf_alcap_compat_general_sni,tvb,offset+1,1,FALSE);
1424         proto_tree_add_item(compat_tree,hf_alcap_compat_general_ii,tvb,offset+1,1,FALSE);
1425         
1426         proto_tree_add_item(param_tree,hf_alcap_param_len,tvb,offset+2,1,FALSE);
1427         
1428         if ( alcap_tree || param_info->run_wo_tree )
1429             colinfo_str = param_info->dissect_fields(pinfo,tvb,param_tree,offset+3,param_len,msg_info);
1430         
1431         if (colinfo_str && check_col(pinfo->cinfo, COL_INFO)) {
1432             col_append_fstr(pinfo->cinfo, COL_INFO, " %s",colinfo_str);
1433         }
1434         
1435         len -= 3 + param_len;
1436         offset += 3 + param_len;
1437     }
1438         
1439     if (keep_persistent_info) {
1440         alcap_leg_info_t* leg = NULL;
1441         switch (msg_info->msg_type) {
1442             case 5: /* ERQ */
1443                 if( ! ( leg = g_hash_table_lookup(legs_by_osaid,GUINT_TO_POINTER(msg_info->osaid)) )) { 
1444                     leg = se_alloc(sizeof(alcap_leg_info_t));
1445                     
1446                     leg->dsaid = 0;
1447                     leg->osaid = msg_info->osaid;
1448                     leg->pathid = msg_info->pathid;
1449                     leg->cid = msg_info->cid;
1450                     leg->sugr = msg_info->sugr;
1451                     
1452                     if (msg_info->orig_nsap) {
1453                         gchar* key = se_strdup_printf("%s:%.8X",msg_info->orig_nsap,leg->sugr);
1454                         g_strdown(key);
1455
1456                         leg->orig_nsap = se_strdup(msg_info->orig_nsap);
1457                         
1458                         if (!g_hash_table_lookup(legs_by_bearer,key)) {
1459                             g_hash_table_insert(legs_by_bearer,key,leg);
1460                         }
1461                         
1462                         proto_tree_add_text(alcap_tree,tvb,0,0,"Key=>%s",key);
1463                     }
1464                     
1465                     if (msg_info->dest_nsap) {
1466                         gchar* key = se_strdup_printf("%s:%.8X",msg_info->dest_nsap,leg->sugr);
1467                         g_strdown(key);
1468
1469                         leg->dest_nsap = se_strdup(msg_info->dest_nsap);
1470
1471                         if (!g_hash_table_lookup(legs_by_bearer,key)) {
1472                             g_hash_table_insert(legs_by_bearer,key,leg);
1473                         }
1474                     }
1475                     
1476                     leg->msgs = NULL;
1477                     leg->release_cause = 0;
1478                     
1479                     g_hash_table_insert(legs_by_osaid,GUINT_TO_POINTER(leg->osaid),leg);
1480                 }
1481                 break;
1482             case 4: /* ECF */
1483                 if(( leg = g_hash_table_lookup(legs_by_osaid,GUINT_TO_POINTER(msg_info->dsaid)) )) { 
1484                     leg->dsaid = msg_info->osaid;
1485                     g_hash_table_insert(legs_by_dsaid,GUINT_TO_POINTER(leg->dsaid),leg);        
1486                 }
1487                 break;
1488             case 6: /* RLC */
1489             case 12:  /* MOA */
1490             case 13: /* MOR */
1491             case 14: /* MOD */
1492                 if( ( leg = g_hash_table_lookup(legs_by_osaid,GUINT_TO_POINTER(msg_info->dsaid)) )
1493                     || ( leg = g_hash_table_lookup(legs_by_dsaid,GUINT_TO_POINTER(msg_info->dsaid)) ) ) { 
1494                     
1495                     if(msg_info->release_cause)
1496                         leg->release_cause =  msg_info->release_cause;
1497                     
1498                 }
1499                 break;
1500             case 7: /* REL */
1501                 leg = g_hash_table_lookup(legs_by_osaid,GUINT_TO_POINTER(msg_info->dsaid));
1502                 
1503                 if(leg) {
1504                     leg->release_cause =  msg_info->release_cause;
1505                 } else if (( leg = g_hash_table_lookup(legs_by_dsaid,GUINT_TO_POINTER(msg_info->dsaid)) )) {
1506                     leg->release_cause =  msg_info->release_cause;
1507                 }
1508                     break;
1509             default:
1510                 break;                  
1511         }
1512         
1513         if (leg && ( (! leg->msgs) || leg->msgs->last->framenum < pinfo->fd->num ) ) {
1514             alcap_msg_data_t* msg = se_alloc(sizeof(alcap_msg_data_t));
1515             msg->msg_type = msg_info->msg_type;
1516             msg->framenum = pinfo->fd->num;
1517             msg->next = NULL;
1518             msg->last = NULL;
1519             
1520             if (leg->msgs) {
1521                 leg->msgs->last->next = msg;
1522             } else {
1523                 leg->msgs = msg;
1524             }
1525             
1526             leg->msgs->last = msg;
1527             
1528         }
1529         
1530         if (tree && leg) alcap_leg_tree(alcap_tree,tvb,leg);
1531     }
1532 }
1533
1534 static gboolean just_do_it(gpointer k _U_, gpointer v _U_, gpointer p _U_) { return TRUE; }
1535
1536 static void alcap_init(void) {
1537         if (legs_by_dsaid == NULL) {
1538                 legs_by_dsaid = g_hash_table_new(g_direct_hash,g_direct_equal);
1539                 legs_by_osaid = g_hash_table_new(g_direct_hash,g_direct_equal);
1540         legs_by_bearer = g_hash_table_new(g_str_hash,g_str_equal);
1541         } else {
1542                 g_hash_table_foreach_remove(legs_by_dsaid,just_do_it,NULL);
1543                 g_hash_table_foreach_remove(legs_by_osaid,just_do_it,NULL);
1544                 g_hash_table_foreach_remove(legs_by_bearer,just_do_it,NULL);
1545         }
1546 }
1547
1548 void
1549 proto_register_alcap(void)
1550 {
1551     module_t *alcap_module;
1552     
1553     static hf_register_info hf[] = {
1554     { &hf_alcap_dsaid, { "DSAID", "alcap.dsaid", FT_UINT32, BASE_HEX, NULL, 0, "Destination Service Association ID", HFILL }},
1555     { &hf_alcap_msg_id, { "Message Type", "alcap.msg_type", FT_UINT8, BASE_DEC, VALS(msg_type_strings), 0, "", HFILL }},
1556     { &hf_alcap_compat, { "Message Compatibility", "alcap.compat", FT_BYTES, BASE_HEX, NULL, 0, "", HFILL }},
1557     { &hf_alcap_compat_pass_on_sni, { "Pass-On SNI", "alcap.compat.pass.sni", FT_UINT8, BASE_DEC, VALS(send_notification), 0x40, "Send Notificaation Indicator", HFILL }},
1558     { &hf_alcap_compat_pass_on_ii, { "Pass-On II", "alcap.compat.pass.ii", FT_UINT8, BASE_DEC, VALS(instruction_indicator), 0x30, "Instruction Indicator", HFILL }},
1559     { &hf_alcap_compat_general_sni, { "General SNI", "alcap.compat.general.sni", FT_UINT8, BASE_DEC, VALS(send_notification), 0x04, "Send Notificaation Indicator", HFILL }},
1560     { &hf_alcap_compat_general_ii, { "General II", "alcap.compat.general.ii", FT_UINT8, BASE_DEC, VALS(instruction_indicator), 0x03, "Instruction Indicator", HFILL }},
1561         
1562     { &hf_alcap_unknown, { "Unknown Field Data", "alcap.unknown.fields", FT_BYTES, BASE_HEX, NULL, 0, "", HFILL }},
1563         
1564     { &hf_alcap_param_id, { "Parameter", "alcap.param", FT_UINT8, BASE_DEC, VALS(msg_parm_strings), 0, "Parameter Id", HFILL }},
1565     { &hf_alcap_param_len, { "Length", "alcap.param.len", FT_UINT8, BASE_DEC, NULL, 0, "Parameter Length", HFILL }},
1566         
1567     { &hf_alcap_cau_coding, { "Cause Coding", "alcap.cau.coding", FT_UINT8, BASE_DEC, VALS(cause_coding_vals), 0x03, "", HFILL }},
1568     { &hf_alcap_cau_value_itu, { "Cause Value (ITU)", "alcap.cau.value", FT_UINT8, BASE_DEC, VALS(cause_values_itu), 0x7f, "", HFILL }},
1569     { &hf_alcap_cau_value_non_itu, { "Cause Value (Other)", "alcap.cau.value", FT_UINT8, BASE_DEC, NULL, 0x7f, "", HFILL }},
1570     { &hf_alcap_cau_diag, { "Diagnostic", "alcap.cau.diag", FT_BYTES, BASE_HEX, NULL, 0, "", HFILL }},
1571     { &hf_alcap_cau_diag_len, { "Length", "alcap.cau.diag.len", FT_UINT8, BASE_DEC, NULL, 0, "Diagnostics Length", HFILL }},
1572     { &hf_alcap_cau_diag_msg, { "Message Identifier", "alcap.cau.diag.msg", FT_UINT8, BASE_DEC, VALS(msg_type_strings), 0, "", HFILL }},
1573     { &hf_alcap_cau_diag_param_id, { "Parameter Identifier", "alcap.cau.diag.param", FT_UINT8, BASE_DEC, NULL, 0, "", HFILL }},
1574     { &hf_alcap_cau_diag_field_num, { "Field Number", "alcap.cau.diag.field_num", FT_UINT8, BASE_DEC, NULL, 0, "", HFILL }},
1575         
1576     { &hf_alcap_ceid_pathid, { "Path ID", "alcap.ceid.pathid", FT_UINT32, BASE_DEC, NULL, 0, "", HFILL }},
1577     { &hf_alcap_ceid_cid, { "CID", "alcap.ceid.cid", FT_UINT8, BASE_DEC, NULL, 0, "", HFILL }},
1578         
1579     { &hf_alcap_dnsea, { "Address", "alcap.dnsea.addr", FT_BYTES, BASE_HEX, NULL, 0, "", HFILL }},
1580         
1581     { &hf_alcap_alc_max_br_fw, { "Maximum Forward Bit Rate", "alcap.alc.bitrate.max.fw", FT_UINT16, BASE_DEC, NULL, 0, "", HFILL }},
1582     { &hf_alcap_alc_max_br_bw, { "Maximum Backwards Bit Rate", "alcap.alc.bitrate.max.bw", FT_UINT16, BASE_DEC, NULL, 0, "", HFILL }},
1583     { &hf_alcap_alc_avg_br_fw, { "Average Forward Bit Rate", "alcap.alc.bitrate.avg.fw", FT_UINT16, BASE_DEC, NULL, 0, "", HFILL }},
1584     { &hf_alcap_alc_avg_br_bw, { "Average Backwards Bit Rate", "alcap.alc.bitrate.avg.bw", FT_UINT16, BASE_DEC, NULL, 0, "", HFILL }},
1585     { &hf_alcap_alc_max_sdu_fw, { "Maximum Forward CPS SDU Size", "alcap.alc.sdusize.max.fw", FT_UINT8, BASE_DEC, NULL, 0x7f, "", HFILL }},
1586     { &hf_alcap_alc_max_sdu_bw, { "Maximum Backwards CPS SDU Size", "alcap.alc.sdusize.max.bw", FT_UINT8, BASE_DEC, NULL, 0x7f, "", HFILL }},
1587     { &hf_alcap_alc_avg_sdu_fw, { "Average Forward CPS SDU Size", "alcap.alc.sdusize.avg.fw", FT_UINT8, BASE_DEC, NULL, 0x7f, "", HFILL }},
1588     { &hf_alcap_alc_avg_sdu_bw, { "Average Backwards CPS SDU Size", "alcap.alc.sdusize.avg.bw", FT_UINT8, BASE_DEC, NULL, 0x7f, "", HFILL }},
1589         
1590     { &hf_alcap_osaid, { "OSAID", "alcap.osaid", FT_UINT32, BASE_HEX, NULL, 0, "Originating Service Association ID", HFILL }},
1591         
1592     { &hf_alcap_sugr, { "SUGR", "alcap.sugr", FT_BYTES, BASE_HEX, NULL, 0, "Served User Generated Reference", HFILL }},
1593         
1594     { &hf_alcap_sut_len, { "SUT Length", "alcap.sut.sut_len", FT_UINT8, BASE_HEX, NULL, 0, "", HFILL }},
1595     { &hf_alcap_sut, { "SUT", "alcap.sut.transport", FT_BYTES, BASE_HEX, NULL, 0, "Served User Transport", HFILL }},
1596         
1597     { &hf_alcap_ssia_pr_type, { "Profile Type", "alcap.ssia.profile.type", FT_UINT8, BASE_DEC, VALS(audio_profile_type), 0xc0, "I.366.2 Profile Type", HFILL }},
1598     { &hf_alcap_ssia_pr_id, { "Profile Id", "alcap.ssia.profile.id", FT_UINT8, BASE_DEC, NULL, 0, "", HFILL }},
1599     { &hf_alcap_ssia_frm, { "Frame Mode", "alcap.ssia.frm", FT_UINT8, BASE_DEC, VALS(enabled_disabled), 0x80, "", HFILL }},
1600     { &hf_alcap_ssia_cmd, { "Circuit Mode", "alcap.ssia.cmd", FT_UINT8, BASE_DEC, VALS(enabled_disabled), 0x40, "", HFILL }},
1601     { &hf_alcap_ssia_mfr2, { "Multi-Frequency R2", "alcap.ssia.mfr2", FT_UINT8, BASE_DEC, VALS(enabled_disabled), 0x20, "", HFILL }},
1602     { &hf_alcap_ssia_mfr1, { "Multi-Frequency R1", "alcap.ssia.mfr1", FT_UINT8, BASE_DEC, VALS(enabled_disabled), 0x10, "", HFILL }},
1603     { &hf_alcap_ssia_dtmf, { "DTMF", "alcap.ssia.dtmf", FT_UINT8, BASE_DEC, VALS(enabled_disabled), 0x08, "", HFILL }},
1604     { &hf_alcap_ssia_cas, { "CAS", "alcap.ssia.cas", FT_UINT8, BASE_DEC, VALS(enabled_disabled), 0x04, "Channel Associated Signalling", HFILL }},
1605     { &hf_alcap_ssia_fax, { "Fax", "alcap.ssia.fax", FT_UINT8, BASE_DEC, VALS(enabled_disabled), 0x02, "Facsimile", HFILL }},
1606     { &hf_alcap_ssia_pcm, { "PCM Mode", "alcap.ssia.pcm", FT_UINT8, BASE_DEC, VALS(alaw_ulaw), 0x01, "", HFILL }},
1607     { &hf_alcap_ssia_max_len, { "Max Len of FM Data", "alcap.ssia.max_fmdata_len", FT_UINT16, BASE_DEC, NULL, 0, "", HFILL }},
1608     { &hf_alcap_ssia_oui, { "OUI", "alcap.ssia.oui", FT_BYTES, BASE_HEX, NULL, 0, "Organizational Unique Identifier", HFILL }},
1609         
1610     { &hf_alcap_ssim_frm, { "Frame Mode", "alcap.ssim.frm", FT_UINT8, BASE_DEC, VALS(enabled_disabled), 0x80, "", HFILL }},
1611     { &hf_alcap_ssim_mult, { "Multiplier", "alcap.ssim.mult", FT_UINT8, BASE_DEC, NULL, 0x1f, "", HFILL }},
1612     { &hf_alcap_ssim_max, { "Max Len", "alcap.ssim.max", FT_UINT16, BASE_DEC, NULL, 0, "", HFILL }},
1613         
1614     { &hf_alcap_ssisa_max_sssar_fw, { "Maximum Len of SSSAR-SDU Forward", "alcap.ssisa.sssar.max_len.fw", FT_UINT24, BASE_DEC, NULL, 0, "", HFILL }},
1615     { &hf_alcap_ssisa_max_sssar_bw, { "Maximum Len of SSSAR-SDU Backwards", "alcap.ssisa.sssar.max_len.fw", FT_UINT24, BASE_DEC, NULL, 0, "", HFILL }},
1616     { &hf_alcap_ssisa_max_sscop_sdu_fw, { "Maximum Len of SSSAR-SDU Forward", "alcap.ssisa.sscop.max_sdu_len.fw", FT_UINT16, BASE_DEC, NULL, 0, "", HFILL }},
1617     { &hf_alcap_ssisa_max_sscop_sdu_bw, { "Maximum Len of SSSAR-SDU Backwards", "alcap.ssisa.sscop.max_sdu_len.bw", FT_UINT16, BASE_DEC, NULL, 0, "", HFILL }},
1618     { &hf_alcap_ssisa_max_sscop_uu_fw, { "Maximum Len of SSSAR-SDU Forward", "alcap.ssisa.sscop.max_uu_len.fw", FT_UINT16, BASE_DEC, NULL, 0, "", HFILL }},
1619     { &hf_alcap_ssisa_max_sscop_uu_bw, { "Maximum Len of SSSAR-SDU Backwards", "alcap.ssisa.sscop.max_uu_len.bw", FT_UINT16, BASE_DEC, NULL, 0, "", HFILL }},
1620         
1621     { &hf_alcap_ssisu_max_sssar_fw, { "Maximum Len of SSSAR-SDU Forward", "alcap.ssisu.sssar.max_len.fw", FT_UINT24, BASE_DEC, NULL, 0, "", HFILL }},
1622     { &hf_alcap_ssisu_max_sssar_bw, { "Maximum Len of SSSAR-SDU Backwards", "alcap.ssisu.sssar.max_len.fw", FT_UINT24, BASE_DEC, NULL, 0, "", HFILL }},
1623     { &hf_alcap_ssisu_ted, { "Transmission Error Detection", "alcap.ssisu.ted", FT_UINT8, BASE_DEC, VALS(enabled_disabled), 0x80, "", HFILL }},
1624         
1625     { &hf_alcap_pt, { "QoS Codepoint", "alcap.pt.codepoint", FT_UINT8, BASE_DEC, NULL, 0x0, "", HFILL }},
1626         
1627     { &hf_alcap_plc_max_br_fw, { "Maximum Forward Bit Rate", "alcap.plc.bitrate.max.fw", FT_UINT16, BASE_DEC, NULL, 0, "", HFILL }},
1628     { &hf_alcap_plc_max_br_bw, { "Maximum Backwards Bit Rate", "alcap.plc.bitrate.max.bw", FT_UINT16, BASE_DEC, NULL, 0, "", HFILL }},
1629     { &hf_alcap_plc_avg_br_fw, { "Average Forward Bit Rate", "alcap.plc.bitrate.avg.fw", FT_UINT16, BASE_DEC, NULL, 0, "", HFILL }},
1630     { &hf_alcap_plc_avg_br_bw, { "Average Backwards Bit Rate", "alcap.plc.bitrate.avg.bw", FT_UINT16, BASE_DEC, NULL, 0, "", HFILL }},
1631     { &hf_alcap_plc_max_sdu_fw, { "Maximum Forward CPS SDU Size", "alcap.plc.sdusize.max.fw", FT_UINT8, BASE_DEC, NULL, 0x7f, "", HFILL }},
1632     { &hf_alcap_plc_max_sdu_bw, { "Maximum Backwards CPS SDU Size", "alcap.plc.sdusize.max.bw", FT_UINT8, BASE_DEC, NULL, 0x7f, "", HFILL }},
1633     { &hf_alcap_plc_avg_sdu_fw, { "Maximum Forward CPS SDU Size", "alcap.plc.sdusize.max.fw", FT_UINT8, BASE_DEC, NULL, 0x7f, "", HFILL }},
1634     { &hf_alcap_plc_avg_sdu_bw, { "Maximum Backwards CPS SDU Size", "alcap.plc.sdusize.max.bw", FT_UINT8, BASE_DEC, NULL, 0x7f, "", HFILL }},
1635         
1636     { &hf_alcap_pssiae_pr_type, { "Profile Type", "alcap.pssiae.profile.type", FT_UINT8, BASE_DEC, VALS(audio_profile_type), 0xc0, "I.366.2 Profile Type", HFILL }},
1637     { &hf_alcap_pssiae_pr_id, { "Profile Id", "alcap.pssiae.profile.id", FT_UINT8, BASE_DEC, NULL, 0, "", HFILL }},
1638     { &hf_alcap_pssiae_lb, { "Loopback", "alcap.pssiae.lb", FT_UINT8, BASE_DEC, VALS(enabled_disabled), 0xc0, "", HFILL }},
1639     { &hf_alcap_pssiae_rc, { "Rate Conctrol", "alcap.pssiae.rc", FT_UINT8, BASE_DEC, VALS(enabled_disabled), 0xc0, "", HFILL }},
1640     { &hf_alcap_pssiae_syn, { "Syncronization", "alcap.pssiae.syn", FT_UINT8, BASE_DEC, VALS(enabled_disabled), 0xc0, "Transport of synchronization of change in SSCS operation", HFILL }},
1641     { &hf_alcap_pssiae_frm, { "Frame Mode", "alcap.pssiae.frm", FT_UINT8, BASE_DEC, VALS(enabled_disabled), 0x80, "", HFILL }},
1642     { &hf_alcap_pssiae_cmd, { "Circuit Mode", "alcap.pssiae.cmd", FT_UINT8, BASE_DEC, VALS(enabled_disabled), 0x40, "", HFILL }},
1643     { &hf_alcap_pssiae_mfr2, { "Multi-Frequency R2", "alcap.pssiae.mfr2", FT_UINT8, BASE_DEC, VALS(enabled_disabled), 0x20, "", HFILL }},
1644     { &hf_alcap_pssiae_mfr1, { "Multi-Frequency R1", "alcap.pssiae.mfr1", FT_UINT8, BASE_DEC, VALS(enabled_disabled), 0x10, "", HFILL }},
1645     { &hf_alcap_pssiae_dtmf, { "DTMF", "alcap.pssiae.dtmf", FT_UINT8, BASE_DEC, VALS(enabled_disabled), 0x08, "", HFILL }},
1646     { &hf_alcap_pssiae_cas, { "CAS", "alcap.pssiae.cas", FT_UINT8, BASE_DEC, VALS(enabled_disabled), 0x04, "Channel Associated Signalling", HFILL }},
1647     { &hf_alcap_pssiae_fax, { "Fax", "alcap.pssiae.fax", FT_UINT8, BASE_DEC, VALS(enabled_disabled), 0x02, "Facsimile", HFILL }},
1648     { &hf_alcap_pssiae_pcm, { "PCM Mode", "alcap.pssiae.pcm", FT_UINT8, BASE_DEC, VALS(alaw_ulaw), 0x01, "", HFILL }},
1649     { &hf_alcap_pssiae_oui, { "OUI", "alcap.pssiae.oui", FT_BYTES, BASE_HEX, NULL, 0, "Organizational Unique Identifier", HFILL }},
1650         
1651     { &hf_alcap_pssime_frm, { "Frame Mode", "alcap.pssime.frm", FT_UINT8, BASE_DEC, VALS(enabled_disabled), 0x80, "", HFILL }},
1652     { &hf_alcap_pssime_lb, { "Loopback", "alcap.pssime.lb", FT_UINT8, BASE_DEC, VALS(enabled_disabled), 0x40, "", HFILL }},
1653     { &hf_alcap_pssime_mult, { "Multiplier", "alcap.pssime.mult", FT_UINT8, BASE_DEC, NULL, 0x1f, "", HFILL }},
1654     { &hf_alcap_pssime_max, { "Max Len", "alcap.pssime.max", FT_UINT16, BASE_DEC, NULL, 0, "", HFILL }},
1655         
1656     { &hf_alcap_suci, { "SUCI", "alcap.suci", FT_UINT8, BASE_HEX, NULL, 0, "Served User Correlation Id", HFILL }},
1657         
1658     { &hf_alcap_onsea, { "Address", "alcap.onsea.addr", FT_BYTES, BASE_HEX, NULL, 0, "", HFILL }},
1659         
1660     { &hf_alcap_ssiae_pr_type, { "Profile Type", "alcap.ssiae.profile.type", FT_UINT8, BASE_DEC, VALS(audio_profile_type), 0xc0, "I.366.2 Profile Type", HFILL }},
1661     { &hf_alcap_ssiae_lb, { "Loopback", "alcap.ssiae.lb", FT_UINT8, BASE_DEC, VALS(enabled_disabled), 0xc0, "", HFILL }},
1662     { &hf_alcap_ssiae_rc, { "Rate Conctrol", "alcap.ssiae.rc", FT_UINT8, BASE_DEC, VALS(enabled_disabled), 0xc0, "", HFILL }},
1663     { &hf_alcap_ssiae_syn, { "Syncronization", "alcap.ssiae.syn", FT_UINT8, BASE_DEC, VALS(enabled_disabled), 0xc0, "Transport of synchronization of change in SSCS operation", HFILL }},
1664     { &hf_alcap_ssiae_pr_id, { "Profile Id", "alcap.ssiae.profile.id", FT_UINT8, BASE_DEC, NULL, 0, "", HFILL }},
1665     { &hf_alcap_ssiae_frm, { "Frame Mode", "alcap.ssiae.frm", FT_UINT8, BASE_DEC, VALS(enabled_disabled), 0x80, "", HFILL }},
1666     { &hf_alcap_ssiae_cmd, { "Circuit Mode", "alcap.ssiae.cmd", FT_UINT8, BASE_DEC, VALS(enabled_disabled), 0x40, "", HFILL }},
1667     { &hf_alcap_ssiae_mfr2, { "Multi-Frequency R2", "alcap.ssiae.mfr2", FT_UINT8, BASE_DEC, VALS(enabled_disabled), 0x20, "", HFILL }},
1668     { &hf_alcap_ssiae_mfr1, { "Multi-Frequency R1", "alcap.ssiae.mfr1", FT_UINT8, BASE_DEC, VALS(enabled_disabled), 0x10, "", HFILL }},
1669     { &hf_alcap_ssiae_dtmf, { "DTMF", "alcap.ssiae.dtmf", FT_UINT8, BASE_DEC, VALS(enabled_disabled), 0x08, "", HFILL }},
1670     { &hf_alcap_ssiae_cas, { "CAS", "alcap.ssiae.cas", FT_UINT8, BASE_DEC, VALS(enabled_disabled), 0x04, "Channel Associated Signalling", HFILL }},
1671     { &hf_alcap_ssiae_fax, { "Fax", "alcap.ssiae.fax", FT_UINT8, BASE_DEC, VALS(enabled_disabled), 0x02, "Facsimile", HFILL }},
1672     { &hf_alcap_ssiae_pcm, { "PCM Mode", "alcap.ssiae.pcm", FT_UINT8, BASE_DEC, VALS(alaw_ulaw), 0x01, "", HFILL }},
1673     { &hf_alcap_ssiae_oui, { "OUI", "alcap.ssiae.oui", FT_BYTES, BASE_HEX, NULL, 0, "Organizational Unique Identifier", HFILL }},
1674         
1675     { &hf_alcap_ssime_frm, { "Frame Mode", "alcap.ssime.frm", FT_UINT8, BASE_DEC, VALS(enabled_disabled), 0x80, "", HFILL }},
1676     { &hf_alcap_ssime_lb, { "Loopback", "alcap.ssime.lb", FT_UINT8, BASE_DEC, VALS(enabled_disabled), 0x40, "", HFILL }},
1677     { &hf_alcap_ssime_mult, { "Multiplier", "alcap.ssime.mult", FT_UINT8, BASE_DEC, NULL, 0x1f, "", HFILL }},
1678     { &hf_alcap_ssime_max, { "Max Len", "alcap.ssime.max", FT_UINT16, BASE_DEC, NULL, 0, "", HFILL }},
1679         
1680     { &hf_alcap_acc_level, { "Congestion Level", "alcap.acc.level", FT_UINT8, BASE_DEC, VALS(congestion_level), 0, "", HFILL }},
1681         
1682     { &hf_alcap_cp, { "Level", "alcap.cp.level", FT_UINT8, BASE_DEC, VALS(connection_priority), 0x07, "", HFILL }},
1683         
1684     { &hf_alcap_hc, { "Codepoint", "alcap.hc.codepoint", FT_UINT8, BASE_DEC, NULL, 0, "", HFILL }},
1685         
1686     { &hf_alcap_pfbw_br_fw, { "CPS Forward Bitrate", "alcap.pfbw.bitrate.fw", FT_UINT24, BASE_DEC, NULL, 0, "", HFILL }},
1687     { &hf_alcap_pfbw_br_bw, { "CPS Backwards Bitrate", "alcap.pfbw.bitrate.bw", FT_UINT24, BASE_DEC, NULL, 0, "", HFILL }},
1688     { &hf_alcap_pfbw_bucket_fw, { "Forward CPS Bucket Size", "alcap.pfbw.bucket_size.fw", FT_UINT16, BASE_DEC, NULL, 0, "", HFILL }},
1689     { &hf_alcap_pfbw_bucket_bw, { "Backwards CPS Bucket Size", "alcap.pfbw.bucket_size.bw", FT_UINT16, BASE_DEC, NULL, 0, "", HFILL }},
1690     { &hf_alcap_pfbw_size_fw, { "Forward CPS Packet Size", "alcap.pfbw.max_size.fw", FT_UINT8, BASE_DEC, NULL, 0, "", HFILL }},
1691     { &hf_alcap_pfbw_size_bw, { "Backwards CPS Packet Size", "alcap.pfbw.max_size.bw", FT_UINT8, BASE_DEC, NULL, 0, "", HFILL }},
1692         
1693     { &hf_alcap_pvbws_br_fw, { "Peak CPS Forward Bitrate", "alcap.pvbws.bitrate.fw", FT_UINT24, BASE_DEC, NULL, 0, "", HFILL }},
1694     { &hf_alcap_pvbws_br_bw, { "Peak CPS Backwards Bitrate", "alcap.pvbws.bitrate.bw", FT_UINT24, BASE_DEC, NULL, 0, "", HFILL }},
1695     { &hf_alcap_pvbws_bucket_fw, { "Peak Forward CPS Bucket Size", "alcap.pvbws.bucket_size.fw", FT_UINT16, BASE_DEC, NULL, 0, "", HFILL }},
1696     { &hf_alcap_pvbws_bucket_bw, { "Peak Backwards CPS Bucket Size", "alcap.pvbws.bucket_size.bw", FT_UINT16, BASE_DEC, NULL, 0, "", HFILL }},
1697     { &hf_alcap_pvbws_size_fw, { "Forward CPS Packet Size", "alcap.pvbws.max_size.fw", FT_UINT8, BASE_DEC, NULL, 0, "", HFILL }},
1698     { &hf_alcap_pvbws_size_bw, { "Backwards CPS Packet Size", "alcap.pvbws.max_size.bw", FT_UINT8, BASE_DEC, NULL, 0, "", HFILL }},
1699     { &hf_alcap_pvbws_stt, { "Source Traffic Type", "alcap.pvbws.stt", FT_UINT8, BASE_DEC, NULL, 0, "", HFILL }},
1700         
1701     { &hf_alcap_pvbwt_peak_br_fw, { "Peak CPS Forward Bitrate", "alcap.pvbwt.bitrate.fw", FT_UINT24, BASE_DEC, NULL, 0, "", HFILL }},
1702     { &hf_alcap_pvbwt_peak_br_bw, { "Peak CPS Backwards Bitrate", "alcap.pvbwt.bitrate.bw", FT_UINT24, BASE_DEC, NULL, 0, "", HFILL }},
1703     { &hf_alcap_pvbwt_peak_bucket_fw, { "Peak Forward CPS Bucket Size", "alcap.pvbwt.bucket_size.fw", FT_UINT16, BASE_DEC, NULL, 0, "", HFILL }},
1704     { &hf_alcap_pvbwt_peak_bucket_bw, { "Peak Backwards CPS Bucket Size", "alcap.pvbwt.bucket_size.bw", FT_UINT16, BASE_DEC, NULL, 0, "", HFILL }},
1705     { &hf_alcap_pvbwt_sust_br_fw, { "Sustainable CPS Forward Bitrate", "alcap.pvbwt.bitrate.fw", FT_UINT24, BASE_DEC, NULL, 0, "", HFILL }},
1706     { &hf_alcap_pvbwt_sust_br_bw, { "Sustainable CPS Backwards Bitrate", "alcap.pvbwt.bitrate.bw", FT_UINT24, BASE_DEC, NULL, 0, "", HFILL }},
1707     { &hf_alcap_pvbwt_sust_bucket_fw, { "Sustainable Forward CPS Bucket Size", "alcap.pvbwt.bucket_size.fw", FT_UINT16, BASE_DEC, NULL, 0, "", HFILL }},
1708     { &hf_alcap_pvbwt_sust_bucket_bw, { "Sustainable Backwards CPS Bucket Size", "alcap.pvbwt.bucket_size.bw", FT_UINT16, BASE_DEC, NULL, 0, "", HFILL }},
1709     { &hf_alcap_pvbwt_size_fw, { "Forward CPS Packet Size", "alcap.pvbwt.max_size.fw", FT_UINT8, BASE_DEC, NULL, 0, "", HFILL }},
1710     { &hf_alcap_pvbwt_size_bw, { "Backwards CPS Packet Size", "alcap.pvbwt.max_size.bw", FT_UINT8, BASE_DEC, NULL, 0, "", HFILL }},
1711         
1712     { &hf_alcap_fbw_br_fw, { "CPS Forward Bitrate", "alcap.fbw.bitrate.fw", FT_UINT24, BASE_DEC, NULL, 0, "", HFILL }},
1713     { &hf_alcap_fbw_br_bw, { "CPS Backwards Bitrate", "alcap.fbw.bitrate.bw", FT_UINT24, BASE_DEC, NULL, 0, "", HFILL }},
1714     { &hf_alcap_fbw_bucket_fw, { "Forward CPS Bucket Size", "alcap.fbw.bucket_size.fw", FT_UINT16, BASE_DEC, NULL, 0, "", HFILL }},
1715     { &hf_alcap_fbw_bucket_bw, { "Backwards CPS Bucket Size", "alcap.fbw.bucket_size.bw", FT_UINT16, BASE_DEC, NULL, 0, "", HFILL }},
1716     { &hf_alcap_fbw_size_fw, { "Forward CPS Packet Size", "alcap.fbw.max_size.fw", FT_UINT8, BASE_DEC, NULL, 0, "", HFILL }},
1717     { &hf_alcap_fbw_size_bw, { "Backwards CPS Packet Size", "alcap.fbw.max_size.bw", FT_UINT8, BASE_DEC, NULL, 0, "", HFILL }},
1718         
1719     { &hf_alcap_vbws_br_fw, { "CPS Forward Bitrate", "alcap.vbws.bitrate.fw", FT_UINT24, BASE_DEC, NULL, 0, "", HFILL }},
1720     { &hf_alcap_vbws_br_bw, { "CPS Backwards Bitrate", "alcap.vbws.bitrate.bw", FT_UINT24, BASE_DEC, NULL, 0, "", HFILL }},
1721     { &hf_alcap_vbws_bucket_fw, { "Forward CPS Bucket Size", "alcap.vbws.bucket_size.fw", FT_UINT16, BASE_DEC, NULL, 0, "", HFILL }},
1722     { &hf_alcap_vbws_bucket_bw, { "Backwards CPS Bucket Size", "alcap.vbws.bucket_size.bw", FT_UINT16, BASE_DEC, NULL, 0, "", HFILL }},
1723     { &hf_alcap_vbws_size_fw, { "Forward CPS Packet Size", "alcap.vbws.max_size.fw", FT_UINT8, BASE_DEC, NULL, 0, "", HFILL }},
1724     { &hf_alcap_vbws_size_bw, { "Backwards CPS Packet Size", "alcap.vbws.max_size.bw", FT_UINT8, BASE_DEC, NULL, 0, "", HFILL }},
1725     { &hf_alcap_vbws_stt, { "Source Traffic Type", "alcap.vbws.stt", FT_UINT8, BASE_DEC, NULL, 0, "", HFILL }},
1726         
1727     { &hf_alcap_vbwt_peak_br_fw, { "Peak CPS Forward Bitrate", "alcap.vbwt.bitrate.fw", FT_UINT24, BASE_DEC, NULL, 0, "", HFILL }},
1728     { &hf_alcap_vbwt_peak_br_bw, { "Peak CPS Backwards Bitrate", "alcap.vbwt.bitrate.bw", FT_UINT24, BASE_DEC, NULL, 0, "", HFILL }},
1729     { &hf_alcap_vbwt_peak_bucket_fw, { "Peak Forward CPS Bucket Size", "alcap.vbwt.bucket_size.fw", FT_UINT16, BASE_DEC, NULL, 0, "", HFILL }},
1730     { &hf_alcap_vbwt_peak_bucket_bw, { "Peak Backwards CPS Bucket Size", "alcap.vbwt.bucket_size.bw", FT_UINT16, BASE_DEC, NULL, 0, "", HFILL }},
1731     { &hf_alcap_vbwt_sust_br_fw, { "Sustainable CPS Forward Bitrate", "alcap.vbwt.bitrate.fw", FT_UINT24, BASE_DEC, NULL, 0, "", HFILL }},
1732     { &hf_alcap_vbwt_sust_br_bw, { "Sustainable CPS Backwards Bitrate", "alcap.vbwt.bitrate.bw", FT_UINT24, BASE_DEC, NULL, 0, "", HFILL }},
1733     { &hf_alcap_vbwt_sust_bucket_fw, { "Sustainable Forward CPS Bucket Size", "alcap.vbwt.bucket_size.fw", FT_UINT16, BASE_DEC, NULL, 0, "", HFILL }},
1734     { &hf_alcap_vbwt_sust_bucket_bw, { "Sustainable Backwards CPS Bucket Size", "alcap.vbwt.bucket_size.bw", FT_UINT16, BASE_DEC, NULL, 0, "", HFILL }},
1735     { &hf_alcap_vbwt_size_fw, { "Forward CPS Packet Size", "alcap.vbwt.max_size.fw", FT_UINT8, BASE_DEC, NULL, 0, "", HFILL }},
1736     { &hf_alcap_vbwt_size_bw, { "Backwards CPS Packet Size", "alcap.vbwt.max_size.bw", FT_UINT8, BASE_DEC, NULL, 0, "", HFILL }},
1737         
1738         
1739         { &hf_alcap_leg_osaid, { "Leg's ERQ OSA id",    "alcap.leg.osaid", FT_UINT32, BASE_HEX, NULL, 0, "", HFILL } },
1740         { &hf_alcap_leg_dsaid, { "Leg's ECF OSA id",    "alcap.leg.dsaid", FT_UINT32, BASE_HEX, NULL, 0,"", HFILL } },
1741         { &hf_alcap_leg_pathid, { "Leg's path id",      "alcap.leg.pathid", FT_UINT32, BASE_DEC, NULL, 0, "", HFILL } },
1742         { &hf_alcap_leg_cid, { "Leg's channel id",      "alcap.leg.cid", FT_UINT32, BASE_DEC, NULL, 0, "", HFILL } },
1743         { &hf_alcap_leg_sugr, { "Leg's SUGR",   "alcap.leg.sugr", FT_UINT32, BASE_HEX, NULL, 0, "", HFILL } },
1744         { &hf_alcap_leg_dnsea, { "Leg's destination NSAP",      "alcap.leg.dnsea", FT_STRING, BASE_NONE, NULL, 0, "", HFILL } },
1745         { &hf_alcap_leg_onsea, { "Leg's originating NSAP",      "alcap.leg.onsea", FT_STRING, BASE_NONE, NULL, 0, "", HFILL } },
1746         { &hf_alcap_leg_frame, { "a message of this leg",       "alcap.leg.msg", FT_FRAMENUM, BASE_DEC, NULL, 0, "", HFILL } },
1747     { &hf_alcap_leg_release_cause, { "Leg's cause value in REL",        "alcap.leg.cause", FT_UINT8, BASE_DEC, VALS(cause_values_itu), 0, "", HFILL }},
1748         
1749     };
1750     
1751     gint* ett[] = {
1752         &ett_alcap,
1753         &ett_leg,
1754         &ett_compat,
1755         &ett_cau_diag,
1756         &param_infos[0].ett,
1757         &param_infos[1].ett,
1758         &param_infos[2].ett,
1759         &param_infos[3].ett,
1760         &param_infos[4].ett,
1761         &param_infos[5].ett,
1762         &param_infos[6].ett,
1763         &param_infos[7].ett,
1764         &param_infos[8].ett,
1765         &param_infos[9].ett,
1766         &param_infos[10].ett,
1767         &param_infos[11].ett,
1768         &param_infos[12].ett,
1769         &param_infos[13].ett,
1770         &param_infos[14].ett,
1771         &param_infos[15].ett,
1772         &param_infos[16].ett,
1773         &param_infos[17].ett,
1774         &param_infos[18].ett,
1775         &param_infos[19].ett,
1776         &param_infos[20].ett,
1777         &param_infos[21].ett,
1778         &param_infos[22].ett,
1779         &param_infos[23].ett,
1780         &param_infos[24].ett,
1781         &param_infos[25].ett,
1782         &param_infos[26].ett,
1783         &param_infos[27].ett,
1784         &param_infos[28].ett,
1785         &param_infos[29].ett,
1786         &param_infos[30].ett,
1787         &param_infos[31].ett,
1788         &param_infos[32].ett,
1789         &param_infos[33].ett,
1790         &param_infos[34].ett,
1791         &param_infos[35].ett,
1792     };
1793     
1794     proto_alcap = proto_register_protocol(alcap_proto_name, alcap_proto_name_short, "alcap");
1795     
1796         register_dissector("alcap", dissect_alcap, proto_alcap);
1797         
1798     proto_register_field_array(proto_alcap, hf, array_length(hf));
1799     proto_register_subtree_array(ett, array_length(ett));
1800         
1801     alcap_module = prefs_register_protocol(proto_alcap, alcap_init);
1802     
1803     prefs_register_bool_preference(alcap_module, "leg_info",
1804                                    "Keep Leg Information",
1805                                    "Whether persistent call leg information is to be kept",
1806                                    &keep_persistent_info);
1807     
1808         register_init_routine( &alcap_init );
1809 }
1810
1811
1812 void
1813 proto_reg_handoff_alcap(void)
1814 {
1815     dissector_handle_t  alcap_handle = create_dissector_handle(dissect_alcap, proto_alcap);
1816     dissector_add("mtp3.service_indicator", ALCAP_SI, alcap_handle);
1817 }