From Michael Tuexen: add missing support for the T-Bit in ABORT chunks.
[obnox/wireshark/wip.git] / packet-ascend.c
1 /* packet-ascend.c
2  * Routines for decoding Lucent/Ascend packet traces
3  *
4  * $Id: packet-ascend.c,v 1.30 2002/01/21 07:36:32 guy Exp $
5  *
6  * Ethereal - Network traffic analyzer
7  * By Gerald Combs <gerald@ethereal.com>
8  *
9  * This program is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU General Public License
11  * as published by the Free Software Foundation; either version 2
12  * of the License, or (at your option) any later version.
13  * 
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  * 
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
22  */
23
24 #ifdef HAVE_CONFIG_H
25 # include "config.h"
26 #endif
27
28 #ifdef HAVE_SYS_TYPES_H
29 # include <sys/types.h>
30 #endif
31
32 #include <glib.h>
33 #include <string.h>
34 #include <epan/packet.h>
35
36 static int proto_ascend  = -1;
37 static int hf_link_type  = -1;
38 static int hf_session_id = -1;
39 static int hf_called_number = -1;
40 static int hf_chunk      = -1;
41 static int hf_task       = -1;
42 static int hf_user_name  = -1;
43
44 static gint ett_raw = -1;
45
46 static const value_string encaps_vals[] = {
47   {ASCEND_PFX_WDS_X, "PPP Transmit"},
48   {ASCEND_PFX_WDS_R, "PPP Receive" },
49   {ASCEND_PFX_WDD,   "Ethernet"    },
50   {0,                NULL          } };
51
52 static dissector_handle_t eth_handle;
53 static dissector_handle_t ppp_hdlc_handle;
54
55 static void
56 dissect_ascend(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
57 {
58   proto_tree                    *fh_tree;
59   proto_item                    *ti;
60   union wtap_pseudo_header      *pseudo_header = pinfo->pseudo_header;
61
62   /* load the top pane info. This should be overwritten by
63      the next protocol in the stack */
64   if(check_col(pinfo->cinfo, COL_RES_DL_SRC))
65     col_set_str(pinfo->cinfo, COL_RES_DL_SRC, "N/A" );
66   if(check_col(pinfo->cinfo, COL_RES_DL_DST))
67     col_set_str(pinfo->cinfo, COL_RES_DL_DST, "N/A" );
68   if(check_col(pinfo->cinfo, COL_PROTOCOL))
69     col_set_str(pinfo->cinfo, COL_PROTOCOL, "N/A" );
70   if(check_col(pinfo->cinfo, COL_INFO))
71     col_set_str(pinfo->cinfo, COL_INFO, "Lucent/Ascend packet trace" );
72
73   /* If this is a transmitted or received PPP frame, set the PPP direction. */
74   switch (pseudo_header->ascend.type) {
75
76   case ASCEND_PFX_WDS_X:
77     pinfo->p2p_dir = P2P_DIR_SENT;
78     break;
79
80   case ASCEND_PFX_WDS_R:
81     pinfo->p2p_dir = P2P_DIR_RECV;
82     break;
83   }
84
85   /* populate a tree in the second pane with the status of the link
86      layer (ie none) */
87   if(tree) {
88     ti = proto_tree_add_protocol_format(tree, proto_ascend, tvb, 0, 0,
89                                         "Lucent/Ascend packet trace");
90     fh_tree = proto_item_add_subtree(ti, ett_raw);
91     proto_tree_add_uint(fh_tree, hf_link_type, tvb, 0, 0, 
92                         pseudo_header->ascend.type);
93     if (pseudo_header->ascend.type == ASCEND_PFX_WDD) {
94       proto_tree_add_string(fh_tree, hf_called_number, tvb, 0, 0, 
95                           pseudo_header->ascend.call_num);
96       proto_tree_add_uint(fh_tree, hf_chunk, tvb, 0, 0,
97                           pseudo_header->ascend.chunk);
98       proto_tree_add_uint_hidden(fh_tree, hf_session_id, tvb, 0, 0, 0);
99     } else {  /* It's wandsession data */
100       proto_tree_add_string(fh_tree, hf_user_name, tvb, 0, 0, 
101                           pseudo_header->ascend.user);
102       proto_tree_add_uint(fh_tree, hf_session_id, tvb, 0, 0,
103                           pseudo_header->ascend.sess);
104       proto_tree_add_uint_hidden(fh_tree, hf_chunk, tvb, 0, 0, 0);
105     }
106     proto_tree_add_uint(fh_tree, hf_task, tvb, 0, 0, pseudo_header->ascend.task);
107   }
108
109   switch (pseudo_header->ascend.type) {
110     case ASCEND_PFX_WDS_X:
111     case ASCEND_PFX_WDS_R:
112       call_dissector(ppp_hdlc_handle, tvb, pinfo, tree);
113       break;
114     case ASCEND_PFX_WDD:
115       call_dissector(eth_handle, tvb, pinfo, tree);
116       break;
117     default:
118       break;
119   }
120 }
121
122 void
123 proto_register_ascend(void)
124 {
125   static hf_register_info hf[] = {
126     { &hf_link_type,
127     { "Link type",      "ascend.type",  FT_UINT32, BASE_DEC,    VALS(encaps_vals),      0x0,
128       "", HFILL }},
129
130     { &hf_session_id,
131     { "Session ID",     "ascend.sess",  FT_UINT32, BASE_DEC,    NULL, 0x0,
132       "", HFILL }},
133
134     { &hf_called_number,
135     { "Called number",  "ascend.number", FT_STRING, BASE_NONE,  NULL, 0x0,
136       "", HFILL }},
137
138     { &hf_chunk,
139     { "WDD Chunk",      "ascend.chunk", FT_UINT32, BASE_HEX,    NULL, 0x0,
140       "", HFILL }},
141
142     { &hf_task,
143     { "Task",           "ascend.task",  FT_UINT32, BASE_HEX,    NULL, 0x0,
144       "", HFILL }},
145
146     { &hf_user_name,
147     { "User name",      "ascend.user",  FT_STRING, BASE_NONE,   NULL, 0x0,
148       "", HFILL }},
149   };
150   static gint *ett[] = {
151     &ett_raw,
152   };
153
154   proto_ascend = proto_register_protocol("Lucent/Ascend debug output",
155                                          "Lucent/Ascend", "ascend");
156   proto_register_field_array(proto_ascend, hf, array_length(hf));
157   proto_register_subtree_array(ett, array_length(ett));
158 }
159
160 void
161 proto_reg_handoff_ascend(void)
162 {
163   dissector_handle_t ascend_handle;
164
165   /*
166    * Get handles for the Ethernet and PPP-in-HDLC-like-framing dissectors.
167    */
168   eth_handle = find_dissector("eth");
169   ppp_hdlc_handle = find_dissector("ppp_hdlc");
170
171   ascend_handle = create_dissector_handle(dissect_ascend, proto_ascend);
172   dissector_add("wtap_encap", WTAP_ENCAP_ASCEND, ascend_handle);
173 }