0ec472573889e6c5434d7e0038bf2748c6d4c5ec
[obnox/wireshark/wip.git] / asn1 / pkix1explicit / packet-pkix1explicit-template.c
1 #define BER_UNI_TAG_TeletexString           20  /* workaround bug in asn2wrs */
2
3 /* packet-pkix1explicit.c
4  * Routines for PKIX1Explitic packet dissection
5  *
6  * $Id$
7  *
8  * Wireshark - Network traffic analyzer
9  * By Gerald Combs <gerald@wireshark.org>
10  * Copyright 1998 Gerald Combs
11  *
12  * This program is free software; you can redistribute it and/or
13  * modify it under the terms of the GNU General Public License
14  * as published by the Free Software Foundation; either version 2
15  * of the License, or (at your option) any later version.
16  *
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  * GNU General Public License for more details.
21  *
22  * You should have received a copy of the GNU General Public License
23  * along with this program; if not, write to the Free Software
24  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
25  */
26
27 #ifdef HAVE_CONFIG_H
28 # include "config.h"
29 #endif
30
31 #include <glib.h>
32 #include <epan/packet.h>
33 #include <epan/asn1.h>
34 #include <epan/oids.h>
35 #include <epan/afn.h>
36
37 #include <stdio.h>
38 #include <string.h>
39
40 #include "packet-ber.h"
41 #include "packet-pkix1explicit.h"
42 #include "packet-x509af.h"
43 #include "packet-x509if.h"
44 #include "packet-x509ce.h"
45
46 #define PNAME  "PKIX1Explicit"
47 #define PSNAME "PKIX1EXPLICIT"
48 #define PFNAME "pkix1explicit"
49
50 /* Initialize the protocol and registered fields */
51 static int proto_pkix1explicit = -1;
52 static int hf_pkix1explicit_object_identifier_id = -1;
53 static int hf_pkix1explicit_addressFamily_afn = -1;
54 static int hf_pkix1explicit_addressFamily_safi = -1;
55
56 static int ett_pkix1explicit_addressFamily = -1;
57
58 #include "packet-pkix1explicit-hf.c"
59
60 /* Initialize the subtree pointers */
61 #include "packet-pkix1explicit-ett.c"
62
63
64 static const char *object_identifier_id;
65
66 int
67 dissect_pkix1explicit_Certificate(gboolean implicit_tag _U_, tvbuff_t *tvb, int offset, asn1_ctx_t *actx _U_, proto_tree *tree, int hf_index) {
68   offset = dissect_x509af_Certificate(implicit_tag, tvb, offset, actx, tree, hf_index);
69
70   return offset;
71 }
72 int
73 dissect_pkix1explicit_CertificateList(gboolean implicit_tag _U_, tvbuff_t *tvb, int offset, asn1_ctx_t *actx _U_, proto_tree *tree, int hf_index) {
74   offset = dissect_x509af_CertificateList(implicit_tag, tvb, offset, actx, tree, hf_index);
75
76   return offset;
77 }
78 int
79 dissect_pkix1explicit_GeneralName(gboolean implicit_tag _U_, tvbuff_t *tvb, int offset, asn1_ctx_t *actx _U_, proto_tree *tree, int hf_index) {
80   offset = dissect_x509ce_GeneralName(implicit_tag, tvb, offset, actx, tree, hf_index);
81
82   return offset;
83 }
84 int
85 dissect_pkix1explicit_Name(gboolean implicit_tag _U_, tvbuff_t *tvb, int offset, asn1_ctx_t *actx _U_, proto_tree *tree, int hf_index) {
86   offset = dissect_x509if_Name(implicit_tag, tvb, offset, actx, tree, hf_index);
87
88   return offset;
89 }
90 int
91 dissect_pkix1explicit_AlgorithmIdentifier(gboolean implicit_tag _U_, tvbuff_t *tvb, int offset, asn1_ctx_t *actx _U_, proto_tree *tree, int hf_index) {
92   offset = dissect_x509af_AlgorithmIdentifier(implicit_tag, tvb, offset, actx, tree, hf_index);
93
94   return offset;
95 }
96
97 int
98 dissect_pkix1explicit_SubjectPublicKeyInfo(gboolean implicit_tag, tvbuff_t *tvb, int offset, asn1_ctx_t *actx _U_, proto_tree *tree, int hf_index) {
99   offset = dissect_x509af_SubjectPublicKeyInfo(implicit_tag, tvb, offset, actx, tree, hf_index);
100
101   return offset;
102 }
103
104
105 #include "packet-pkix1explicit-fn.c"
106
107
108 /*--- proto_register_pkix1explicit ----------------------------------------------*/
109 void proto_register_pkix1explicit(void) {
110
111   /* List of fields */
112   static hf_register_info hf[] = {
113     { &hf_pkix1explicit_object_identifier_id,
114       { "Id", "pkix1explicit.id", FT_STRING, BASE_NONE, NULL, 0,
115         "Object identifier Id", HFILL }},
116
117     { &hf_pkix1explicit_addressFamily_afn,
118       { "Address family(AFN)", "pkix1explicit.addressfamily", FT_UINT16, BASE_DEC, VALS(afn_vals), 0,
119         NULL, HFILL }},
120
121     { &hf_pkix1explicit_addressFamily_safi,
122       { "Subsequent Address Family Identifiers (SAFI)", "pkix1explicit.addressfamily.safi", FT_UINT16, BASE_DEC, NULL, 0,
123         "Subsequent Address Family Identifiers (SAFI) RFC4760", HFILL }},
124 #include "packet-pkix1explicit-hfarr.c"
125   };
126
127   /* List of subtrees */
128   static gint *ett[] = {
129           &ett_pkix1explicit_addressFamily,
130 #include "packet-pkix1explicit-ettarr.c"
131   };
132
133   /* Register protocol */
134   proto_pkix1explicit = proto_register_protocol(PNAME, PSNAME, PFNAME);
135
136   /* Register fields and subtrees */
137   proto_register_field_array(proto_pkix1explicit, hf, array_length(hf));
138   proto_register_subtree_array(ett, array_length(ett));
139
140 }
141
142
143 /*--- proto_reg_handoff_pkix1explicit -------------------------------------------*/
144 void proto_reg_handoff_pkix1explicit(void) {
145         oid_add_from_string("id-pkix","1.3.6.1.5.5.7");
146 #include "packet-pkix1explicit-dis-tab.c"
147 }
148