blob: 839591ad21ac04992d23b657664a0f7e9560c323 [file] [log] [blame]
Thomas Gleixnerb4d0d232019-05-20 19:08:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
David Howells4c0b4b12014-07-01 16:02:52 +01002/* Parse a Microsoft Individual Code Signing blob
3 *
4 * Copyright (C) 2014 Red Hat, Inc. All Rights Reserved.
5 * Written by David Howells (dhowells@redhat.com)
David Howells4c0b4b12014-07-01 16:02:52 +01006 */
7
8#define pr_fmt(fmt) "MSCODE: "fmt
9#include <linux/kernel.h>
10#include <linux/slab.h>
11#include <linux/err.h>
12#include <linux/oid_registry.h>
13#include <crypto/pkcs7.h>
14#include "verify_pefile.h"
Masahiro Yamada4fa8bc92018-03-23 22:04:37 +090015#include "mscode.asn1.h"
David Howells4c0b4b12014-07-01 16:02:52 +010016
17/*
18 * Parse a Microsoft Individual Code Signing blob
19 */
David Howellse68503b2016-04-06 16:14:24 +010020int mscode_parse(void *_ctx, const void *content_data, size_t data_len,
21 size_t asn1hdrlen)
David Howells4c0b4b12014-07-01 16:02:52 +010022{
David Howellse68503b2016-04-06 16:14:24 +010023 struct pefile_context *ctx = _ctx;
David Howells4c0b4b12014-07-01 16:02:52 +010024
David Howellse68503b2016-04-06 16:14:24 +010025 content_data -= asn1hdrlen;
26 data_len += asn1hdrlen;
David Howells4c0b4b12014-07-01 16:02:52 +010027 pr_devel("Data: %zu [%*ph]\n", data_len, (unsigned)(data_len),
28 content_data);
29
30 return asn1_ber_decoder(&mscode_decoder, ctx, content_data, data_len);
31}
32
33/*
34 * Check the content type OID
35 */
36int mscode_note_content_type(void *context, size_t hdrlen,
37 unsigned char tag,
38 const void *value, size_t vlen)
39{
40 enum OID oid;
41
42 oid = look_up_OID(value, vlen);
43 if (oid == OID__NR) {
44 char buffer[50];
45
46 sprint_oid(value, vlen, buffer, sizeof(buffer));
47 pr_err("Unknown OID: %s\n", buffer);
48 return -EBADMSG;
49 }
50
Vivek Goyaldd7d66f2014-07-08 18:10:46 +010051 /*
52 * pesign utility had a bug where it was putting
53 * OID_msIndividualSPKeyPurpose instead of OID_msPeImageDataObjId
54 * So allow both OIDs.
55 */
56 if (oid != OID_msPeImageDataObjId &&
57 oid != OID_msIndividualSPKeyPurpose) {
David Howells4c0b4b12014-07-01 16:02:52 +010058 pr_err("Unexpected content type OID %u\n", oid);
59 return -EBADMSG;
60 }
61
62 return 0;
63}
64
65/*
66 * Note the digest algorithm OID
67 */
68int mscode_note_digest_algo(void *context, size_t hdrlen,
69 unsigned char tag,
70 const void *value, size_t vlen)
71{
72 struct pefile_context *ctx = context;
73 char buffer[50];
74 enum OID oid;
75
76 oid = look_up_OID(value, vlen);
77 switch (oid) {
78 case OID_md4:
David Howells4e8ae722016-03-03 21:49:27 +000079 ctx->digest_algo = "md4";
David Howells4c0b4b12014-07-01 16:02:52 +010080 break;
81 case OID_md5:
David Howells4e8ae722016-03-03 21:49:27 +000082 ctx->digest_algo = "md5";
David Howells4c0b4b12014-07-01 16:02:52 +010083 break;
84 case OID_sha1:
David Howells4e8ae722016-03-03 21:49:27 +000085 ctx->digest_algo = "sha1";
David Howells4c0b4b12014-07-01 16:02:52 +010086 break;
87 case OID_sha256:
David Howells4e8ae722016-03-03 21:49:27 +000088 ctx->digest_algo = "sha256";
David Howells4c0b4b12014-07-01 16:02:52 +010089 break;
David Howells07f081f2015-08-30 16:59:57 +010090 case OID_sha384:
David Howells4e8ae722016-03-03 21:49:27 +000091 ctx->digest_algo = "sha384";
David Howells07f081f2015-08-30 16:59:57 +010092 break;
93 case OID_sha512:
David Howells4e8ae722016-03-03 21:49:27 +000094 ctx->digest_algo = "sha512";
David Howells07f081f2015-08-30 16:59:57 +010095 break;
96 case OID_sha224:
David Howells4e8ae722016-03-03 21:49:27 +000097 ctx->digest_algo = "sha224";
David Howells07f081f2015-08-30 16:59:57 +010098 break;
David Howells4c0b4b12014-07-01 16:02:52 +010099
100 case OID__NR:
101 sprint_oid(value, vlen, buffer, sizeof(buffer));
102 pr_err("Unknown OID: %s\n", buffer);
103 return -EBADMSG;
104
105 default:
106 pr_err("Unsupported content type: %u\n", oid);
107 return -ENOPKG;
108 }
109
110 return 0;
111}
112
113/*
114 * Note the digest we're guaranteeing with this certificate
115 */
116int mscode_note_digest(void *context, size_t hdrlen,
117 unsigned char tag,
118 const void *value, size_t vlen)
119{
120 struct pefile_context *ctx = context;
121
David Howellse68503b2016-04-06 16:14:24 +0100122 ctx->digest = kmemdup(value, vlen, GFP_KERNEL);
Lans Zhangd1284712016-07-18 00:10:47 +0100123 if (!ctx->digest)
124 return -ENOMEM;
125
126 ctx->digest_len = vlen;
127
128 return 0;
David Howells4c0b4b12014-07-01 16:02:52 +0100129}