name change
[obnox/wireshark/wip.git] / asn1 / x509ce / packet-x509ce-template.c
1 /* packet-x509ce.c
2  * Routines for X.509 Certificate Extensions packet dissection
3  *  Ronnie Sahlberg 2004
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/conversation.h>
33
34 #include <stdio.h>
35 #include <string.h>
36
37 #include "packet-ber.h"
38 #include "packet-x509ce.h"
39 #include "packet-x509af.h"
40 #include "packet-x509if.h"
41 #include "packet-x509sat.h"
42 #include "packet-x411.h"
43
44 #define PNAME  "X.509 Certificate Extensions"
45 #define PSNAME "X509CE"
46 #define PFNAME "x509ce"
47
48 /* Initialize the protocol and registered fields */
49 int proto_x509ce = -1;
50 static int hf_x509ce_id_ce_invalidityDate = -1;
51 static int hf_x509ce_id_ce_baseUpdateTime = -1;
52 static int hf_x509ce_object_identifier_id = -1;
53 static int hf_x509ce_IPAddress = -1;
54 #include "packet-x509ce-hf.c"
55
56 /* Initialize the subtree pointers */
57 #include "packet-x509ce-ett.c"
58
59 static const char *object_identifier_id;
60
61 #include "packet-x509ce-fn.c"
62
63
64 static void
65 dissect_x509ce_invalidityDate_callback(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
66 {
67         dissect_x509ce_GeneralizedTime(FALSE, tvb, 0, pinfo, tree, hf_x509ce_id_ce_invalidityDate);
68 }
69
70 static void
71 dissect_x509ce_baseUpdateTime_callback(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
72 {
73         dissect_x509ce_GeneralizedTime(FALSE, tvb, 0, pinfo, tree, hf_x509ce_id_ce_baseUpdateTime);
74 }
75
76 /*--- proto_register_x509ce ----------------------------------------------*/
77 void proto_register_x509ce(void) {
78
79   /* List of fields */
80   static hf_register_info hf[] = {
81     { &hf_x509ce_id_ce_baseUpdateTime,
82       { "baseUpdateTime", "x509ce.id_ce_baseUpdateTime",
83         FT_STRING, BASE_NONE, NULL, 0,
84         "baseUpdateTime", HFILL }},
85     { &hf_x509ce_id_ce_invalidityDate,
86       { "invalidityDate", "x509ce.id_ce_invalidityDate",
87         FT_STRING, BASE_NONE, NULL, 0,
88         "invalidityDate", HFILL }},
89     { &hf_x509ce_object_identifier_id, 
90       { "Id", "x509ce.id", FT_OID, BASE_NONE, NULL, 0,
91         "Object identifier Id", HFILL }},
92     { &hf_x509ce_IPAddress,
93       { "iPAddress", "x509ce.IPAddress", FT_IPv4, BASE_NONE, NULL, 0,
94         "IP Address", HFILL }},
95
96 #include "packet-x509ce-hfarr.c"
97   };
98
99   /* List of subtrees */
100   static gint *ett[] = {
101 #include "packet-x509ce-ettarr.c"
102   };
103
104   /* Register protocol */
105   proto_x509ce = proto_register_protocol(PNAME, PSNAME, PFNAME);
106
107   /* Register fields and subtrees */
108   proto_register_field_array(proto_x509ce, hf, array_length(hf));
109   proto_register_subtree_array(ett, array_length(ett));
110
111 }
112
113
114 /*--- proto_reg_handoff_x509ce -------------------------------------------*/
115 void proto_reg_handoff_x509ce(void) {
116 #include "packet-x509ce-dis-tab.c"
117         register_ber_oid_dissector("2.5.29.24", dissect_x509ce_invalidityDate_callback, proto_x509ce, "id-ce-invalidityDate");
118         register_ber_oid_dissector("2.5.29.51", dissect_x509ce_baseUpdateTime_callback, proto_x509ce, "id-ce-baseUpdateTime");
119 }
120