5a5fe3228092b96a9744bb5028c14178bfd904e5
[obnox/wireshark/wip.git] / asn1 / ftam / packet-ftam-template.c
1 /* packet-ftam_asn1.c
2  * Routine to dissect OSI ISO 8571 FTAM Protocol packets
3  * based on the ASN.1 specification from http://www.itu.int/ITU-T/asn1/database/iso/8571-4/1988/
4  *
5  * also based on original handwritten dissector by
6  * Yuriy Sidelnikov <YSidelnikov@hotmail.com>
7  *
8  * Anders Broman and Ronnie Sahlberg 2005 - 2006
9  *
10  * $Id$
11  *
12  * Wireshark - Network traffic analyzer
13  * By Gerald Combs <gerald@wireshark.org>
14  * Copyright 1998 Gerald Combs
15  *
16  * This program is free software; you can redistribute it and/or
17  * modify it under the terms of the GNU General Public License
18  * as published by the Free Software Foundation; either version 2
19  * of the License, or (at your option) any later version.
20  *
21  * This program is distributed in the hope that it will be useful,
22  * but WITHOUT ANY WARRANTY; without even the implied warranty of
23  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
24  * GNU General Public License for more details.
25  *
26  * You should have received a copy of the GNU General Public License
27  * along with this program; if not, write to the Free Software
28  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
29  */
30
31 #ifdef HAVE_CONFIG_H
32 # include "config.h"
33 #endif
34
35 #include <glib.h>
36 #include <epan/packet.h>
37 #include <epan/conversation.h>
38 #include <epan/oid_resolv.h>
39
40 #include <stdio.h>
41 #include <string.h>
42
43 #include "packet-ber.h"
44 #include "packet-acse.h"
45 #include "packet-ftam.h"
46
47 #define PNAME  "ISO 8571 FTAM"
48 #define PSNAME "FTAM"
49 #define PFNAME "ftam"
50
51 /* Initialize the protocol and registered fields */
52 int proto_ftam = -1;
53
54 static const char *object_identifier_id;
55 /* Declare the function to avoid a compiler warning */
56 static int dissect_ftam_OR_Set(gboolean implicit_tag _U_, tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree *tree, int hf_index _U_);
57
58 #include "packet-ftam-hf.c"
59
60 /* Initialize the subtree pointers */
61 static gint ett_ftam = -1;
62 #include "packet-ftam-ett.c"
63
64 #include "packet-ftam-fn.c"
65
66 /*
67 * Dissect FTAM PDUs inside a PPDU.
68 */
69 static void
70 dissect_ftam(tvbuff_t *tvb, packet_info *pinfo, proto_tree *parent_tree)
71 {
72         int offset = 0;
73         int old_offset;
74         proto_item *item=NULL;
75         proto_tree *tree=NULL;
76
77         if(parent_tree){
78                 item = proto_tree_add_item(parent_tree, proto_ftam, tvb, 0, -1, FALSE);
79                 tree = proto_item_add_subtree(item, ett_ftam);
80         }
81         if (check_col(pinfo->cinfo, COL_PROTOCOL))
82                 col_set_str(pinfo->cinfo, COL_PROTOCOL, "FTAM");
83         if (check_col(pinfo->cinfo, COL_INFO))
84                 col_clear(pinfo->cinfo, COL_INFO);
85
86         while (tvb_reported_length_remaining(tvb, offset) > 0){
87                 old_offset=offset;
88                 offset=dissect_ftam_PDU(FALSE, tvb, offset, pinfo , tree, -1);
89                 if(offset == old_offset){
90                         proto_tree_add_text(tree, tvb, offset, -1,"Internal error, zero-byte FTAM PDU");
91                         offset = tvb_length(tvb);
92                         break;
93                 }
94         }
95 }
96
97
98 /*--- proto_register_ftam -------------------------------------------*/
99 void proto_register_ftam(void) {
100
101   /* List of fields */
102   static hf_register_info hf[] =
103   {
104 #include "packet-ftam-hfarr.c"
105   };
106
107   /* List of subtrees */
108   static gint *ett[] = {
109     &ett_ftam,
110 #include "packet-ftam-ettarr.c"
111   };
112
113   /* Register protocol */
114   proto_ftam = proto_register_protocol(PNAME, PSNAME, PFNAME);
115   register_dissector("ftam", dissect_ftam, proto_ftam);
116   /* Register fields and subtrees */
117   proto_register_field_array(proto_ftam, hf, array_length(hf));
118   proto_register_subtree_array(ett, array_length(ett));
119
120 }
121
122
123 /*--- proto_reg_handoff_ftam --- */
124 void proto_reg_handoff_ftam(void) {
125         register_ber_oid_dissector("1.0.8571.1.1", dissect_ftam, proto_ftam,"iso-ftam(1)");
126         register_ber_oid_dissector("1.0.8571.2.1", dissect_ftam, proto_ftam,"ftam-pci(1)");
127         register_ber_oid_dissector("1.3.14.5.2.2", dissect_ftam, proto_ftam,"NIST file directory entry abstract syntax");
128
129         /* Unstructured text file document type FTAM-1 */
130         add_oid_str_name("1.0.8571.5.1","ISO FTAM unstructured text");
131         add_oid_str_name("1.0.8571.5.2","ISO FTAM sequential text");
132         add_oid_str_name("1.0.8571.2.3","FTAM unstructured text abstract syntax");
133         add_oid_str_name("1.0.8571.2.4","FTAM sequential text abstract syntax");
134         add_oid_str_name("1.0.8571.2.5","FTAM simple-hierarchy");
135         add_oid_str_name("1.0.8571.3.1","FTAM hierarchical file model");
136         add_oid_str_name("1.0.8571.4.1","FTAM unstructured constraint set");
137
138         /* Unstructured text file document type FTAM-3 */
139         add_oid_str_name("1.0.8571.5.3","ISO FTAM unstructured binary");
140         add_oid_str_name("1.0.8571.2.4","FTAM unstructured binary abstract syntax");
141
142         /* Filedirectory file document type NBS-9 */
143         add_oid_str_name("1.3.14.5.5.9","NBS-9 FTAM file directory file");
144
145         /* Filedirectory file document type NBS-9 (WITH OLD NIST OIDs)*/
146         add_oid_str_name("1.3.9999.1.5.9","NBS-9-OLD FTAM file directory file");
147         add_oid_str_name("1.3.9999.1.2.2","NIST file directory entry abstract syntax");
148 }