3 * Copyright (C) 2012 Red Hat, Inc. All Rights Reserved.
4 * Written by David Howells (dhowells@redhat.com)
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public Licence
8 * as published by the Free Software Foundation; either version
9 * 2 of the Licence, or (at your option) any later version.
12 #define pr_fmt(fmt) "PKCS7: "fmt
13 #include <linux/kernel.h>
14 #include <linux/export.h>
15 #include <linux/slab.h>
16 #include <linux/err.h>
17 #include <linux/oid_registry.h>
18 #include "public_key.h"
19 #include "pkcs7_parser.h"
20 #include "pkcs7-asn1.h"
22 struct pkcs7_parse_context
{
23 struct pkcs7_message
*msg
; /* Message being constructed */
24 struct pkcs7_signed_info
*sinfo
; /* SignedInfo being constructed */
25 struct pkcs7_signed_info
**ppsinfo
;
26 struct x509_certificate
*certs
; /* Certificate cache */
27 struct x509_certificate
**ppcerts
;
28 unsigned long data
; /* Start of data */
29 enum OID last_oid
; /* Last OID encountered */
32 const void *raw_serial
;
33 unsigned raw_serial_size
;
34 unsigned raw_issuer_size
;
35 const void *raw_issuer
;
37 unsigned raw_skid_size
;
42 * Free a signed information block.
44 static void pkcs7_free_signed_info(struct pkcs7_signed_info
*sinfo
)
47 mpi_free(sinfo
->sig
.mpi
[0]);
48 kfree(sinfo
->sig
.digest
);
49 kfree(sinfo
->signing_cert_id
);
55 * pkcs7_free_message - Free a PKCS#7 message
56 * @pkcs7: The PKCS#7 message to free
58 void pkcs7_free_message(struct pkcs7_message
*pkcs7
)
60 struct x509_certificate
*cert
;
61 struct pkcs7_signed_info
*sinfo
;
64 while (pkcs7
->certs
) {
66 pkcs7
->certs
= cert
->next
;
67 x509_free_certificate(cert
);
71 pkcs7
->crl
= cert
->next
;
72 x509_free_certificate(cert
);
74 while (pkcs7
->signed_infos
) {
75 sinfo
= pkcs7
->signed_infos
;
76 pkcs7
->signed_infos
= sinfo
->next
;
77 pkcs7_free_signed_info(sinfo
);
82 EXPORT_SYMBOL_GPL(pkcs7_free_message
);
85 * Check authenticatedAttributes are provided or not provided consistently.
87 static int pkcs7_check_authattrs(struct pkcs7_message
*msg
)
89 struct pkcs7_signed_info
*sinfo
;
92 sinfo
= msg
->signed_infos
;
93 if (sinfo
->authattrs
) {
95 msg
->have_authattrs
= true;
98 for (sinfo
= sinfo
->next
; sinfo
; sinfo
= sinfo
->next
)
99 if (!!sinfo
->authattrs
!= want
)
104 pr_warn("Inconsistently supplied authAttrs\n");
109 * pkcs7_parse_message - Parse a PKCS#7 message
110 * @data: The raw binary ASN.1 encoded message to be parsed
111 * @datalen: The size of the encoded message
113 struct pkcs7_message
*pkcs7_parse_message(const void *data
, size_t datalen
)
115 struct pkcs7_parse_context
*ctx
;
116 struct pkcs7_message
*msg
= ERR_PTR(-ENOMEM
);
119 ctx
= kzalloc(sizeof(struct pkcs7_parse_context
), GFP_KERNEL
);
122 ctx
->msg
= kzalloc(sizeof(struct pkcs7_message
), GFP_KERNEL
);
125 ctx
->sinfo
= kzalloc(sizeof(struct pkcs7_signed_info
), GFP_KERNEL
);
129 ctx
->data
= (unsigned long)data
;
130 ctx
->ppcerts
= &ctx
->certs
;
131 ctx
->ppsinfo
= &ctx
->msg
->signed_infos
;
133 /* Attempt to decode the signature */
134 ret
= asn1_ber_decoder(&pkcs7_decoder
, ctx
, data
, datalen
);
140 ret
= pkcs7_check_authattrs(ctx
->msg
);
149 struct x509_certificate
*cert
= ctx
->certs
;
150 ctx
->certs
= cert
->next
;
151 x509_free_certificate(cert
);
153 pkcs7_free_signed_info(ctx
->sinfo
);
155 pkcs7_free_message(ctx
->msg
);
161 EXPORT_SYMBOL_GPL(pkcs7_parse_message
);
164 * pkcs7_get_content_data - Get access to the PKCS#7 content
165 * @pkcs7: The preparsed PKCS#7 message to access
166 * @_data: Place to return a pointer to the data
167 * @_data_len: Place to return the data length
168 * @want_wrapper: True if the ASN.1 object header should be included in the data
170 * Get access to the data content of the PKCS#7 message, including, optionally,
171 * the header of the ASN.1 object that contains it. Returns -ENODATA if the
172 * data object was missing from the message.
174 int pkcs7_get_content_data(const struct pkcs7_message
*pkcs7
,
175 const void **_data
, size_t *_data_len
,
183 wrapper
= want_wrapper
? pkcs7
->data_hdrlen
: 0;
184 *_data
= pkcs7
->data
- wrapper
;
185 *_data_len
= pkcs7
->data_len
+ wrapper
;
188 EXPORT_SYMBOL_GPL(pkcs7_get_content_data
);
191 * Note an OID when we find one for later processing when we know how
194 int pkcs7_note_OID(void *context
, size_t hdrlen
,
196 const void *value
, size_t vlen
)
198 struct pkcs7_parse_context
*ctx
= context
;
200 ctx
->last_oid
= look_up_OID(value
, vlen
);
201 if (ctx
->last_oid
== OID__NR
) {
203 sprint_oid(value
, vlen
, buffer
, sizeof(buffer
));
204 printk("PKCS7: Unknown OID: [%lu] %s\n",
205 (unsigned long)value
- ctx
->data
, buffer
);
211 * Note the digest algorithm for the signature.
213 int pkcs7_sig_note_digest_algo(void *context
, size_t hdrlen
,
215 const void *value
, size_t vlen
)
217 struct pkcs7_parse_context
*ctx
= context
;
219 switch (ctx
->last_oid
) {
221 ctx
->sinfo
->sig
.pkey_hash_algo
= HASH_ALGO_MD4
;
224 ctx
->sinfo
->sig
.pkey_hash_algo
= HASH_ALGO_MD5
;
227 ctx
->sinfo
->sig
.pkey_hash_algo
= HASH_ALGO_SHA1
;
230 ctx
->sinfo
->sig
.pkey_hash_algo
= HASH_ALGO_SHA256
;
233 ctx
->sinfo
->sig
.pkey_hash_algo
= HASH_ALGO_SHA384
;
236 ctx
->sinfo
->sig
.pkey_hash_algo
= HASH_ALGO_SHA512
;
239 ctx
->sinfo
->sig
.pkey_hash_algo
= HASH_ALGO_SHA224
;
241 printk("Unsupported digest algo: %u\n", ctx
->last_oid
);
248 * Note the public key algorithm for the signature.
250 int pkcs7_sig_note_pkey_algo(void *context
, size_t hdrlen
,
252 const void *value
, size_t vlen
)
254 struct pkcs7_parse_context
*ctx
= context
;
256 switch (ctx
->last_oid
) {
257 case OID_rsaEncryption
:
258 ctx
->sinfo
->sig
.pkey_algo
= PKEY_ALGO_RSA
;
261 printk("Unsupported pkey algo: %u\n", ctx
->last_oid
);
268 * We only support signed data [RFC2315 sec 9].
270 int pkcs7_check_content_type(void *context
, size_t hdrlen
,
272 const void *value
, size_t vlen
)
274 struct pkcs7_parse_context
*ctx
= context
;
276 if (ctx
->last_oid
!= OID_signed_data
) {
277 pr_warn("Only support pkcs7_signedData type\n");
285 * Note the SignedData version
287 int pkcs7_note_signeddata_version(void *context
, size_t hdrlen
,
289 const void *value
, size_t vlen
)
291 struct pkcs7_parse_context
*ctx
= context
;
297 ctx
->msg
->version
= version
= *(const u8
*)value
;
300 /* PKCS#7 SignedData [RFC2315 sec 9.1]
301 * CMS ver 1 SignedData [RFC5652 sec 5.1]
305 /* CMS ver 3 SignedData [RFC2315 sec 5.1] */
314 pr_warn("Unsupported SignedData version\n");
319 * Note the SignerInfo version
321 int pkcs7_note_signerinfo_version(void *context
, size_t hdrlen
,
323 const void *value
, size_t vlen
)
325 struct pkcs7_parse_context
*ctx
= context
;
331 version
= *(const u8
*)value
;
334 /* PKCS#7 SignerInfo [RFC2315 sec 9.2]
335 * CMS ver 1 SignerInfo [RFC5652 sec 5.3]
337 if (ctx
->msg
->version
!= 1)
338 goto version_mismatch
;
339 ctx
->expect_skid
= false;
342 /* CMS ver 3 SignerInfo [RFC2315 sec 5.3] */
343 if (ctx
->msg
->version
== 1)
344 goto version_mismatch
;
345 ctx
->expect_skid
= true;
354 pr_warn("Unsupported SignerInfo version\n");
357 pr_warn("SignedData-SignerInfo version mismatch\n");
362 * Extract a certificate and store it in the context.
364 int pkcs7_extract_cert(void *context
, size_t hdrlen
,
366 const void *value
, size_t vlen
)
368 struct pkcs7_parse_context
*ctx
= context
;
369 struct x509_certificate
*x509
;
371 if (tag
!= ((ASN1_UNIV
<< 6) | ASN1_CONS_BIT
| ASN1_SEQ
)) {
372 pr_debug("Cert began with tag %02x at %lu\n",
373 tag
, (unsigned long)ctx
- ctx
->data
);
377 /* We have to correct for the header so that the X.509 parser can start
378 * from the beginning. Note that since X.509 stipulates DER, there
379 * probably shouldn't be an EOC trailer - but it is in PKCS#7 (which
385 if (((u8
*)value
)[1] == 0x80)
386 vlen
+= 2; /* Indefinite length - there should be an EOC */
388 x509
= x509_cert_parse(value
, vlen
);
390 return PTR_ERR(x509
);
392 x509
->index
= ++ctx
->x509_index
;
393 pr_debug("Got cert %u for %s\n", x509
->index
, x509
->subject
);
394 pr_debug("- fingerprint %*phN\n", x509
->id
->len
, x509
->id
->data
);
396 *ctx
->ppcerts
= x509
;
397 ctx
->ppcerts
= &x509
->next
;
402 * Save the certificate list
404 int pkcs7_note_certificate_list(void *context
, size_t hdrlen
,
406 const void *value
, size_t vlen
)
408 struct pkcs7_parse_context
*ctx
= context
;
410 pr_devel("Got cert list (%02x)\n", tag
);
412 *ctx
->ppcerts
= ctx
->msg
->certs
;
413 ctx
->msg
->certs
= ctx
->certs
;
415 ctx
->ppcerts
= &ctx
->certs
;
420 * Note the content type.
422 int pkcs7_note_content(void *context
, size_t hdrlen
,
424 const void *value
, size_t vlen
)
426 struct pkcs7_parse_context
*ctx
= context
;
428 if (ctx
->last_oid
!= OID_data
&&
429 ctx
->last_oid
!= OID_msIndirectData
) {
430 pr_warn("Unsupported data type %d\n", ctx
->last_oid
);
434 ctx
->msg
->data_type
= ctx
->last_oid
;
439 * Extract the data from the message and store that and its content type OID in
442 int pkcs7_note_data(void *context
, size_t hdrlen
,
444 const void *value
, size_t vlen
)
446 struct pkcs7_parse_context
*ctx
= context
;
448 pr_debug("Got data\n");
450 ctx
->msg
->data
= value
;
451 ctx
->msg
->data_len
= vlen
;
452 ctx
->msg
->data_hdrlen
= hdrlen
;
457 * Parse authenticated attributes.
459 int pkcs7_sig_note_authenticated_attr(void *context
, size_t hdrlen
,
461 const void *value
, size_t vlen
)
463 struct pkcs7_parse_context
*ctx
= context
;
464 struct pkcs7_signed_info
*sinfo
= ctx
->sinfo
;
465 enum OID content_type
;
467 pr_devel("AuthAttr: %02x %zu [%*ph]\n", tag
, vlen
, (unsigned)vlen
, value
);
469 switch (ctx
->last_oid
) {
470 case OID_contentType
:
471 if (__test_and_set_bit(sinfo_has_content_type
, &sinfo
->aa_set
))
473 content_type
= look_up_OID(value
, vlen
);
474 if (content_type
!= ctx
->msg
->data_type
) {
475 pr_warn("Mismatch between global data type (%d) and sinfo %u (%d)\n",
476 ctx
->msg
->data_type
, sinfo
->index
,
482 case OID_signingTime
:
483 if (__test_and_set_bit(sinfo_has_signing_time
, &sinfo
->aa_set
))
485 /* Should we check that the signing time is consistent
486 * with the signer's X.509 cert?
488 return x509_decode_time(&sinfo
->signing_time
,
489 hdrlen
, tag
, value
, vlen
);
491 case OID_messageDigest
:
492 if (__test_and_set_bit(sinfo_has_message_digest
, &sinfo
->aa_set
))
496 sinfo
->msgdigest
= value
;
497 sinfo
->msgdigest_len
= vlen
;
500 case OID_smimeCapabilites
:
501 if (__test_and_set_bit(sinfo_has_smime_caps
, &sinfo
->aa_set
))
503 if (ctx
->msg
->data_type
!= OID_msIndirectData
) {
504 pr_warn("S/MIME Caps only allowed with Authenticode\n");
505 return -EKEYREJECTED
;
509 /* Microsoft SpOpusInfo seems to be contain cont[0] 16-bit BE
510 * char URLs and cont[1] 8-bit char URLs.
512 * Microsoft StatementType seems to contain a list of OIDs that
513 * are also used as extendedKeyUsage types in X.509 certs.
515 case OID_msSpOpusInfo
:
516 if (__test_and_set_bit(sinfo_has_ms_opus_info
, &sinfo
->aa_set
))
518 goto authenticode_check
;
519 case OID_msStatementType
:
520 if (__test_and_set_bit(sinfo_has_ms_statement_type
, &sinfo
->aa_set
))
523 if (ctx
->msg
->data_type
!= OID_msIndirectData
) {
524 pr_warn("Authenticode AuthAttrs only allowed with Authenticode\n");
525 return -EKEYREJECTED
;
527 /* I'm not sure how to validate these */
534 /* We permit max one item per AuthenticatedAttribute and no repeats */
535 pr_warn("Repeated/multivalue AuthAttrs not permitted\n");
536 return -EKEYREJECTED
;
540 * Note the set of auth attributes for digestion purposes [RFC2315 sec 9.3]
542 int pkcs7_sig_note_set_of_authattrs(void *context
, size_t hdrlen
,
544 const void *value
, size_t vlen
)
546 struct pkcs7_parse_context
*ctx
= context
;
547 struct pkcs7_signed_info
*sinfo
= ctx
->sinfo
;
549 if (!test_bit(sinfo_has_content_type
, &sinfo
->aa_set
) ||
550 !test_bit(sinfo_has_message_digest
, &sinfo
->aa_set
) ||
551 (ctx
->msg
->data_type
== OID_msIndirectData
&&
552 !test_bit(sinfo_has_ms_opus_info
, &sinfo
->aa_set
))) {
553 pr_warn("Missing required AuthAttr\n");
557 if (ctx
->msg
->data_type
!= OID_msIndirectData
&&
558 test_bit(sinfo_has_ms_opus_info
, &sinfo
->aa_set
)) {
559 pr_warn("Unexpected Authenticode AuthAttr\n");
563 /* We need to switch the 'CONT 0' to a 'SET OF' when we digest */
564 sinfo
->authattrs
= value
- (hdrlen
- 1);
565 sinfo
->authattrs_len
= vlen
+ (hdrlen
- 1);
570 * Note the issuing certificate serial number
572 int pkcs7_sig_note_serial(void *context
, size_t hdrlen
,
574 const void *value
, size_t vlen
)
576 struct pkcs7_parse_context
*ctx
= context
;
577 ctx
->raw_serial
= value
;
578 ctx
->raw_serial_size
= vlen
;
583 * Note the issuer's name
585 int pkcs7_sig_note_issuer(void *context
, size_t hdrlen
,
587 const void *value
, size_t vlen
)
589 struct pkcs7_parse_context
*ctx
= context
;
590 ctx
->raw_issuer
= value
;
591 ctx
->raw_issuer_size
= vlen
;
596 * Note the issuing cert's subjectKeyIdentifier
598 int pkcs7_sig_note_skid(void *context
, size_t hdrlen
,
600 const void *value
, size_t vlen
)
602 struct pkcs7_parse_context
*ctx
= context
;
604 pr_devel("SKID: %02x %zu [%*ph]\n", tag
, vlen
, (unsigned)vlen
, value
);
606 ctx
->raw_skid
= value
;
607 ctx
->raw_skid_size
= vlen
;
612 * Note the signature data
614 int pkcs7_sig_note_signature(void *context
, size_t hdrlen
,
616 const void *value
, size_t vlen
)
618 struct pkcs7_parse_context
*ctx
= context
;
621 BUG_ON(ctx
->sinfo
->sig
.pkey_algo
!= PKEY_ALGO_RSA
);
623 mpi
= mpi_read_raw_data(value
, vlen
);
627 ctx
->sinfo
->sig
.mpi
[0] = mpi
;
628 ctx
->sinfo
->sig
.nr_mpi
= 1;
633 * Note a signature information block
635 int pkcs7_note_signed_info(void *context
, size_t hdrlen
,
637 const void *value
, size_t vlen
)
639 struct pkcs7_parse_context
*ctx
= context
;
640 struct pkcs7_signed_info
*sinfo
= ctx
->sinfo
;
641 struct asymmetric_key_id
*kid
;
643 if (ctx
->msg
->data_type
== OID_msIndirectData
&& !sinfo
->authattrs
) {
644 pr_warn("Authenticode requires AuthAttrs\n");
648 /* Generate cert issuer + serial number key ID */
649 if (!ctx
->expect_skid
) {
650 kid
= asymmetric_key_generate_id(ctx
->raw_serial
,
651 ctx
->raw_serial_size
,
653 ctx
->raw_issuer_size
);
655 kid
= asymmetric_key_generate_id(ctx
->raw_skid
,
662 pr_devel("SINFO KID: %u [%*phN]\n", kid
->len
, kid
->len
, kid
->data
);
664 sinfo
->signing_cert_id
= kid
;
665 sinfo
->index
= ++ctx
->sinfo_index
;
666 *ctx
->ppsinfo
= sinfo
;
667 ctx
->ppsinfo
= &sinfo
->next
;
668 ctx
->sinfo
= kzalloc(sizeof(struct pkcs7_signed_info
), GFP_KERNEL
);