d579487858e8eb1ff3889e25954a31b8137a3f10
[obnox/wireshark/wip.git] / asn1 / disp / packet-disp-template.c
1 /* packet-disp.c
2  * Routines for X.525 (X.500 Directory Shadow Asbtract Service) and X.519 DISP packet dissection
3  * Graeme Lunt 2005
4  *
5  * $Id$
6  *
7  * Wireshark - Network traffic analyzer
8  * By Gerald Combs <gerald@wireshark.org>
9  * Copyright 1998 Gerald Combs
10  *
11  * This program is free software; you can redistribute it and/or
12  * modify it under the terms of the GNU General Public License
13  * as published by the Free Software Foundation; either version 2
14  * of the License, or (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
24  */
25
26 #ifdef HAVE_CONFIG_H
27 # include "config.h"
28 #endif
29
30 #include <glib.h>
31 #include <epan/packet.h>
32 #include <epan/prefs.h>
33 #include <epan/oids.h>
34 #include <epan/asn1.h>
35
36 #include <stdio.h>
37 #include <string.h>
38
39 #include "packet-ber.h"
40 #include "packet-acse.h"
41 #include "packet-ros.h"
42 #include "packet-rtse.h"
43
44 #include "packet-x509if.h"
45 #include "packet-x509af.h"
46 #include "packet-x509sat.h"
47 #include "packet-crmf.h"
48
49 #include "packet-dop.h"
50 #include "packet-dap.h"
51 #include "packet-dsp.h"
52 #include "packet-disp.h"
53
54
55 /* we don't have a separate dissector for X519 - 
56    and most of DISP is defined in X525 */
57 #define PNAME  "X.519 Directory Information Shadowing Protocol"
58 #define PSNAME "DISP"
59 #define PFNAME "disp"
60
61 static guint global_disp_tcp_port = 102;
62 static dissector_handle_t tpkt_handle;
63 void prefs_register_disp(void); /* forward declaration for use in preferences registration */
64
65
66 /* Initialize the protocol and registered fields */
67 int proto_disp = -1;
68
69 static struct SESSION_DATA_STRUCTURE* session = NULL;
70
71 #include "packet-disp-hf.c"
72
73 /* Initialize the subtree pointers */
74 static gint ett_disp = -1;
75 #include "packet-disp-ett.c"
76
77 #include "packet-disp-fn.c"
78
79 /*
80 * Dissect DISP PDUs inside a ROS PDUs
81 */
82 static void
83 dissect_disp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *parent_tree)
84 {
85         int offset = 0;
86         int old_offset;
87         proto_item *item=NULL;
88         proto_tree *tree=NULL;
89         int (*disp_dissector)(gboolean implicit_tag _U_, tvbuff_t *tvb, int offset, asn1_ctx_t *actx, proto_tree *tree, int hf_index _U_) = NULL;
90         char *disp_op_name;
91         asn1_ctx_t asn1_ctx;
92
93         asn1_ctx_init(&asn1_ctx, ASN1_ENC_BER, TRUE, pinfo);
94
95         /* do we have operation information from the ROS dissector?  */
96         if( !pinfo->private_data ){
97                 if(parent_tree){
98                         proto_tree_add_text(parent_tree, tvb, offset, -1,
99                                 "Internal error: can't get operation information from ROS dissector.");
100                 } 
101                 return  ;
102         } else {
103                 session  = ( (struct SESSION_DATA_STRUCTURE*)(pinfo->private_data) );
104         }
105
106         if(parent_tree){
107                 item = proto_tree_add_item(parent_tree, proto_disp, tvb, 0, -1, FALSE);
108                 tree = proto_item_add_subtree(item, ett_disp);
109         }
110         col_set_str(pinfo->cinfo, COL_PROTOCOL, "DISP");
111         if (check_col(pinfo->cinfo, COL_INFO))
112                 col_clear(pinfo->cinfo, COL_INFO);
113
114         switch(session->ros_op & ROS_OP_MASK) {
115         case (ROS_OP_BIND | ROS_OP_ARGUMENT):   /*  BindInvoke */
116           disp_dissector = dissect_disp_DSAShadowBindArgument;
117           disp_op_name = "Shadow-Bind-Argument";
118           break;
119         case (ROS_OP_BIND | ROS_OP_RESULT):     /*  BindResult */
120           disp_dissector = dissect_disp_DSAShadowBindResult;
121           disp_op_name = "Shadow-Bind-Result";
122           break;
123         case (ROS_OP_BIND | ROS_OP_ERROR):      /*  BindError */
124           disp_dissector = dissect_disp_DSAShadowBindError;
125           disp_op_name = "Shadow-Bind-Error";
126           break;
127         case (ROS_OP_INVOKE | ROS_OP_ARGUMENT): /*  Invoke Argument */
128           switch(session->ros_op & ROS_OP_OPCODE_MASK) {
129           case 1: /* requestShadowUpdate */
130             disp_dissector = dissect_disp_RequestShadowUpdateArgument;
131             disp_op_name = "Request-Shadow-Update-Argument";
132             break;
133           case 2: /* updateShadow*/
134             disp_dissector = dissect_disp_UpdateShadowArgument;
135             disp_op_name = "Update-Shadow-Argument";
136             break;
137           case 3: /* coordinateShadowUpdate */
138             disp_dissector = dissect_disp_CoordinateShadowUpdateArgument;
139             disp_op_name = "Coordinate-Shadow-Update-Argument";
140             break;
141           default:
142             proto_tree_add_text(tree, tvb, offset, -1,"Unsupported DISP opcode (%d)",
143                                 session->ros_op & ROS_OP_OPCODE_MASK);
144             break;
145           }
146           break;
147         case (ROS_OP_INVOKE | ROS_OP_RESULT):   /*  Return Result */
148           switch(session->ros_op & ROS_OP_OPCODE_MASK) {
149           case 1: /* requestShadowUpdate */
150             disp_dissector = dissect_disp_RequestShadowUpdateResult;
151             disp_op_name = "Request-Shadow-Result";
152             break;
153           case 2: /* updateShadow */
154             disp_dissector = dissect_disp_UpdateShadowResult;
155             disp_op_name = "Update-Shadow-Result";
156             break;
157           case 3: /* coordinateShadowUpdate */
158             disp_dissector = dissect_disp_CoordinateShadowUpdateResult;
159             disp_op_name = "Coordinate-Shadow-Update-Result";
160             break;
161           default:
162             proto_tree_add_text(tree, tvb, offset, -1,"Unsupported DISP opcode (%d)",
163                                 session->ros_op & ROS_OP_OPCODE_MASK);
164             break;
165           }
166           break;
167         case (ROS_OP_INVOKE | ROS_OP_ERROR):    /*  Return Error */
168           switch(session->ros_op & ROS_OP_OPCODE_MASK) {
169           case 1: /* shadowError */
170             disp_dissector = dissect_disp_ShadowError;
171             disp_op_name = "Shadow-Error";
172             break;
173           default:
174             proto_tree_add_text(tree, tvb, offset, -1,"Unsupported DISP errcode (%d)",
175                                 session->ros_op & ROS_OP_OPCODE_MASK);
176             break;
177           }
178           break;
179         default:
180           proto_tree_add_text(tree, tvb, offset, -1,"Unsupported DISP PDU");
181           return;
182         }
183
184         if(disp_dissector) {
185           if (check_col(pinfo->cinfo, COL_INFO))
186             col_set_str(pinfo->cinfo, COL_INFO, disp_op_name);
187
188           while (tvb_reported_length_remaining(tvb, offset) > 0){
189             old_offset=offset;
190             offset=(*disp_dissector)(FALSE, tvb, offset, &asn1_ctx, tree, -1);
191             if(offset == old_offset){
192               proto_tree_add_text(tree, tvb, offset, -1,"Internal error, zero-byte DISP PDU");
193               offset = tvb_length(tvb);
194               break;
195             }
196           }
197         }
198 }
199
200
201 /*--- proto_register_disp -------------------------------------------*/
202 void proto_register_disp(void) {
203
204   /* List of fields */
205   static hf_register_info hf[] =
206   {
207 #include "packet-disp-hfarr.c"
208   };
209
210   /* List of subtrees */
211   static gint *ett[] = {
212     &ett_disp,
213 #include "packet-disp-ettarr.c"
214   };
215   module_t *disp_module;
216
217   /* Register protocol */
218   proto_disp = proto_register_protocol(PNAME, PSNAME, PFNAME);
219   register_dissector("disp", dissect_disp, proto_disp);
220
221   /* Register fields and subtrees */
222   proto_register_field_array(proto_disp, hf, array_length(hf));
223   proto_register_subtree_array(ett, array_length(ett));
224
225   /* Register our configuration options for DISP, particularly our port */
226
227   disp_module = prefs_register_protocol_subtree("OSI/X.500", proto_disp, prefs_register_disp);
228
229   prefs_register_uint_preference(disp_module, "tcp.port", "DISP TCP Port",
230                                  "Set the port for DISP operations (if other"
231                                  " than the default of 102)",
232                                  10, &global_disp_tcp_port);
233
234 }
235
236
237 /*--- proto_reg_handoff_disp --- */
238 void proto_reg_handoff_disp(void) {
239   dissector_handle_t disp_handle;
240
241   #include "packet-disp-dis-tab.c"
242
243   /* APPLICATION CONTEXT */
244
245   oid_add_from_string("id-ac-shadow-consumer-initiated","2.5.3.4");
246   oid_add_from_string("id-ac-shadow-supplier-initiated","2.5.3.5");
247   oid_add_from_string("id-ac-reliable-shadow-consumer-initiated","2.5.3.6");
248   oid_add_from_string("id-ac-reliable-shadow-supplier-initiated","2.5.3.7");
249
250   /* ABSTRACT SYNTAXES */
251
252   disp_handle = find_dissector("disp");
253
254   register_ros_oid_dissector_handle("2.5.9.3", disp_handle, 0, "id-as-directory-shadow", FALSE); 
255   register_rtse_oid_dissector_handle("2.5.9.5", disp_handle, 0, "id-as-directory-reliable-shadow", FALSE); 
256   register_rtse_oid_dissector_handle("2.5.9.6", disp_handle, 0, "id-as-directory-reliable-binding", FALSE); 
257
258   /* OPERATIONAL BINDING */
259   oid_add_from_string("id-op-binding-shadow","2.5.1.0.5.1");
260
261   tpkt_handle = find_dissector("tpkt");
262
263   /* DNs */
264   x509if_register_fmt(hf_disp_contextPrefix, "cp=");
265
266 }
267
268
269 void prefs_register_disp(void) {
270   static guint tcp_port = 0;
271
272   /* de-register the old port */
273   /* port 102 is registered by TPKT - don't undo this! */
274   if((tcp_port > 0) && (tcp_port != 102) && tpkt_handle)
275     dissector_delete("tcp.port", tcp_port, tpkt_handle);
276
277   /* Set our port number for future use */
278   tcp_port = global_disp_tcp_port;
279
280   if((tcp_port > 0) && (tcp_port != 102) && tpkt_handle)
281     dissector_add("tcp.port", global_disp_tcp_port, tpkt_handle);
282
283 }