aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Peylo <wireshark@izac.de>2018-10-03 14:19:52 +0300
committerAnders Broman <a.broman58@gmail.com>2018-10-04 11:23:43 +0000
commit2370973e63ef58f965942bf0b4b922ff74015161 (patch)
treefca77787eaccd3ad88433ccc8025aae75e2ab417
parent03a6a85dcef0637fea9bacba4d2b01c8ce558766 (diff)
CMP: adding p10cr PKIbody dissection
Enabled by now-existing PKCS#10 dissector Change-Id: Ia4b7e998f2c61d482daf3f8b45c141bed31e6653 Reviewed-on: https://code.wireshark.org/review/30009 Petri-Dish: Anders Broman <a.broman58@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Anders Broman <a.broman58@gmail.com>
-rw-r--r--epan/dissectors/asn1/cmp/CMP.asn12
-rw-r--r--epan/dissectors/asn1/cmp/cmp.cnf1
-rw-r--r--epan/dissectors/asn1/cmp/packet-cmp-template.c1
-rw-r--r--epan/dissectors/packet-cmp.c34
4 files changed, 20 insertions, 28 deletions
diff --git a/epan/dissectors/asn1/cmp/CMP.asn b/epan/dissectors/asn1/cmp/CMP.asn
index 94e80dde5e..99cbf84da0 100644
--- a/epan/dissectors/asn1/cmp/CMP.asn
+++ b/epan/dissectors/asn1/cmp/CMP.asn
@@ -10,13 +10,13 @@
-- follows below:
--
-- Full Copyright Statement
---
+--
-- Copyright (C) The Internet Society (2005).
---
+--
-- This document is subject to the rights, licenses and restrictions
-- contained in BCP 78, and except as set forth therein, the authors
-- retain all their rights.
---
+--
-- This document and the information contained herein are provided on an
-- "AS IS" basis and THE CONTRIBUTOR, THE ORGANIZATION HE/SHE REPRESENTS
-- OR IS SPONSORED BY (IF ANY), THE INTERNET SOCIETY AND THE INTERNET
@@ -38,7 +38,7 @@
IMPORTS
Certificate, CertificateList, Extensions, AlgorithmIdentifier --,
- -- UTF8String
+ -- UTF8String
-- if required; otherwise, comment out
FROM PKIX1Explicit88 {iso(1) identified-organization(3)
dod(6) internet(1) security(5) mechanisms(5) pkix(7)
@@ -145,9 +145,7 @@
ip [1] CertRepMessage, --Initialization Response
cr [2] CertReqMessages, --Certification Request
cp [3] CertRepMessage, --Certification Response
- -- p10cr [4] CertificationRequest,
- --imported from [PKCS10]
- p10cr [4] NULL, -- added for Wireshark to avoid miscounting of the branch_taken
+ p10cr [4] CertificationRequest, --imported from [PKCS10]
popdecc [5] POPODecKeyChallContent, --pop Challenge
popdecr [6] POPODecKeyRespContent, --pop Response
kur [7] CertReqMessages, --Key Update Request
diff --git a/epan/dissectors/asn1/cmp/cmp.cnf b/epan/dissectors/asn1/cmp/cmp.cnf
index 232811d149..c72f435003 100644
--- a/epan/dissectors/asn1/cmp/cmp.cnf
+++ b/epan/dissectors/asn1/cmp/cmp.cnf
@@ -4,6 +4,7 @@
#.MODULE_IMPORT
PKIX1Explicit88 pkix1explicit
PKIX1Implicit88 pkix1implicit
+PKCS-10 pkcs10
#.INCLUDE ../pkix1explicit/pkix1explicit_exp.cnf
#.INCLUDE ../pkix1implicit/pkix1implicit_exp.cnf
diff --git a/epan/dissectors/asn1/cmp/packet-cmp-template.c b/epan/dissectors/asn1/cmp/packet-cmp-template.c
index c8379d1b51..21e3b27ed4 100644
--- a/epan/dissectors/asn1/cmp/packet-cmp-template.c
+++ b/epan/dissectors/asn1/cmp/packet-cmp-template.c
@@ -23,6 +23,7 @@
#include "packet-crmf.h"
#include "packet-pkix1explicit.h"
#include "packet-pkix1implicit.h"
+#include "packet-pkcs10.h"
#include "packet-tcp.h"
#include "packet-http.h"
#include <epan/prefs.h>
diff --git a/epan/dissectors/packet-cmp.c b/epan/dissectors/packet-cmp.c
index 94e2924712..bb4caf6f23 100644
--- a/epan/dissectors/packet-cmp.c
+++ b/epan/dissectors/packet-cmp.c
@@ -31,6 +31,7 @@
#include "packet-crmf.h"
#include "packet-pkix1explicit.h"
#include "packet-pkix1implicit.h"
+#include "packet-pkcs10.h"
#include "packet-tcp.h"
#include "packet-http.h"
#include <epan/prefs.h>
@@ -103,7 +104,7 @@ static int hf_cmp_ir = -1; /* CertReqMessages */
static int hf_cmp_ip = -1; /* CertRepMessage */
static int hf_cmp_cr = -1; /* CertReqMessages */
static int hf_cmp_cp = -1; /* CertRepMessage */
-static int hf_cmp_p10cr = -1; /* NULL */
+static int hf_cmp_p10cr = -1; /* CertificationRequest */
static int hf_cmp_popdecc = -1; /* POPODecKeyChallContent */
static int hf_cmp_popdecr = -1; /* POPODecKeyRespContent */
static int hf_cmp_kur = -1; /* CertReqMessages */
@@ -222,7 +223,7 @@ static int hf_cmp_PKIFailureInfo_systemFailure = -1;
static int hf_cmp_PKIFailureInfo_duplicateCertReq = -1;
/*--- End of included file: packet-cmp-hf.c ---*/
-#line 55 "./asn1/cmp/packet-cmp-template.c"
+#line 56 "./asn1/cmp/packet-cmp-template.c"
/* Initialize the subtree pointers */
static gint ett_cmp = -1;
@@ -278,7 +279,7 @@ static gint ett_cmp_PollRepContent = -1;
static gint ett_cmp_PollRepContent_item = -1;
/*--- End of included file: packet-cmp-ett.c ---*/
-#line 59 "./asn1/cmp/packet-cmp-template.c"
+#line 60 "./asn1/cmp/packet-cmp-template.c"
/*--- Included file: packet-cmp-fn.c ---*/
#line 1 "./asn1/cmp/packet-cmp-fn.c"
@@ -380,7 +381,7 @@ dissect_cmp_T_infoType(gboolean implicit_tag _U_, tvbuff_t *tvb _U_, int offset
static int
dissect_cmp_T_infoValue(gboolean implicit_tag _U_, tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
-#line 51 "./asn1/cmp/cmp.cnf"
+#line 52 "./asn1/cmp/cmp.cnf"
offset=call_ber_oid_callback(actx->external.direct_reference, tvb, offset, actx->pinfo, tree, NULL);
@@ -479,7 +480,7 @@ static const value_string cmp_PKIStatus_vals[] = {
static int
dissect_cmp_PKIStatus(gboolean implicit_tag _U_, tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
-#line 67 "./asn1/cmp/cmp.cnf"
+#line 68 "./asn1/cmp/cmp.cnf"
guint32 value;
offset = dissect_ber_integer(implicit_tag, actx, tree, tvb, offset, hf_index,
@@ -634,15 +635,6 @@ dissect_cmp_CertRepMessage(gboolean implicit_tag _U_, tvbuff_t *tvb _U_, int off
}
-
-static int
-dissect_cmp_NULL(gboolean implicit_tag _U_, tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
- offset = dissect_ber_null(implicit_tag, actx, tree, tvb, offset, hf_index);
-
- return offset;
-}
-
-
static const ber_sequence_t Challenge_sequence[] = {
{ &hf_cmp_owf , BER_CLASS_UNI, BER_UNI_TAG_SEQUENCE, BER_FLAGS_OPTIONAL|BER_FLAGS_NOOWNTAG, dissect_pkix1explicit_AlgorithmIdentifier },
{ &hf_cmp_witness , BER_CLASS_UNI, BER_UNI_TAG_OCTETSTRING, BER_FLAGS_NOOWNTAG, dissect_cmp_OCTET_STRING },
@@ -1048,7 +1040,7 @@ static const ber_choice_t PKIBody_choice[] = {
{ 1, &hf_cmp_ip , BER_CLASS_CON, 1, 0, dissect_cmp_CertRepMessage },
{ 2, &hf_cmp_cr , BER_CLASS_CON, 2, 0, dissect_crmf_CertReqMessages },
{ 3, &hf_cmp_cp , BER_CLASS_CON, 3, 0, dissect_cmp_CertRepMessage },
- { 4, &hf_cmp_p10cr , BER_CLASS_CON, 4, 0, dissect_cmp_NULL },
+ { 4, &hf_cmp_p10cr , BER_CLASS_CON, 4, 0, dissect_pkcs10_CertificationRequest },
{ 5, &hf_cmp_popdecc , BER_CLASS_CON, 5, 0, dissect_cmp_POPODecKeyChallContent },
{ 6, &hf_cmp_popdecr , BER_CLASS_CON, 6, 0, dissect_cmp_POPODecKeyRespContent },
{ 7, &hf_cmp_kur , BER_CLASS_CON, 7, 0, dissect_crmf_CertReqMessages },
@@ -1076,7 +1068,7 @@ static const ber_choice_t PKIBody_choice[] = {
static int
dissect_cmp_PKIBody(gboolean implicit_tag _U_, tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
-#line 57 "./asn1/cmp/cmp.cnf"
+#line 58 "./asn1/cmp/cmp.cnf"
gint branch_taken;
offset = dissect_ber_choice(actx, tree, tvb, offset,
@@ -1470,7 +1462,7 @@ static int dissect_SuppLangTagsValue_PDU(tvbuff_t *tvb _U_, packet_info *pinfo _
/*--- End of included file: packet-cmp-fn.c ---*/
-#line 60 "./asn1/cmp/packet-cmp-template.c"
+#line 61 "./asn1/cmp/packet-cmp-template.c"
static int
dissect_cmp_pdu(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void *data _U_)
@@ -1882,7 +1874,7 @@ void proto_register_cmp(void) {
{ &hf_cmp_p10cr,
{ "p10cr", "cmp.p10cr_element",
FT_NONE, BASE_NONE, NULL, 0,
- NULL, HFILL }},
+ "CertificationRequest", HFILL }},
{ &hf_cmp_popdecc,
{ "popdecc", "cmp.popdecc",
FT_UINT32, BASE_DEC, NULL, 0,
@@ -2345,7 +2337,7 @@ void proto_register_cmp(void) {
NULL, HFILL }},
/*--- End of included file: packet-cmp-hfarr.c ---*/
-#line 302 "./asn1/cmp/packet-cmp-template.c"
+#line 303 "./asn1/cmp/packet-cmp-template.c"
};
/* List of subtrees */
@@ -2403,7 +2395,7 @@ void proto_register_cmp(void) {
&ett_cmp_PollRepContent_item,
/*--- End of included file: packet-cmp-ettarr.c ---*/
-#line 308 "./asn1/cmp/packet-cmp-template.c"
+#line 309 "./asn1/cmp/packet-cmp-template.c"
};
module_t *cmp_module;
@@ -2490,7 +2482,7 @@ void proto_reg_handoff_cmp(void) {
/*--- End of included file: packet-cmp-dis-tab.c ---*/
-#line 373 "./asn1/cmp/packet-cmp-template.c"
+#line 374 "./asn1/cmp/packet-cmp-template.c"
inited = TRUE;
}