blob: b2aa925a84bc512cabe5446c5c65e769fac1ff96 [file] [log] [blame]
David Howells22d01af2014-07-01 19:06:18 +01001/* Testing module to load key from trusted PKCS#7 message
2 *
3 * Copyright (C) 2014 Red Hat, Inc. All Rights Reserved.
4 * Written by David Howells (dhowells@redhat.com)
5 *
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.
10 */
11
12#define pr_fmt(fmt) "PKCS7key: "fmt
13#include <linux/key.h>
David Howells8f3438c2014-07-25 11:33:53 +010014#include <linux/err.h>
Paul Gortmaker88775582015-05-01 21:29:53 -040015#include <linux/module.h>
David Howellse68503b2016-04-06 16:14:24 +010016#include <linux/verification.h>
David Howells22d01af2014-07-01 19:06:18 +010017#include <linux/key-type.h>
David Howells22d01af2014-07-01 19:06:18 +010018#include <keys/user-type.h>
David Howells22d01af2014-07-01 19:06:18 +010019
David Howells772111a2015-08-13 02:51:33 +010020MODULE_LICENSE("GPL");
21MODULE_DESCRIPTION("PKCS#7 testing key type");
22
David Howells99db4432015-08-05 15:22:27 +010023static unsigned pkcs7_usage;
24module_param_named(usage, pkcs7_usage, uint, S_IWUSR | S_IRUGO);
25MODULE_PARM_DESC(pkcs7_usage,
26 "Usage to specify when verifying the PKCS#7 message");
27
David Howells22d01af2014-07-01 19:06:18 +010028/*
David Howellse68503b2016-04-06 16:14:24 +010029 * Retrieve the PKCS#7 message content.
30 */
31static int pkcs7_view_content(void *ctx, const void *data, size_t len,
32 size_t asn1hdrlen)
33{
34 struct key_preparsed_payload *prep = ctx;
35 const void *saved_prep_data;
36 size_t saved_prep_datalen;
37 int ret;
38
39 saved_prep_data = prep->data;
40 saved_prep_datalen = prep->datalen;
41 prep->data = data;
42 prep->datalen = len;
43
44 ret = user_preparse(prep);
45
46 prep->data = saved_prep_data;
47 prep->datalen = saved_prep_datalen;
48 return ret;
49}
50
51/*
David Howells1ca72c92014-07-22 21:52:33 +010052 * Preparse a PKCS#7 wrapped and validated data blob.
David Howells22d01af2014-07-01 19:06:18 +010053 */
David Howells1ca72c92014-07-22 21:52:33 +010054static int pkcs7_preparse(struct key_preparsed_payload *prep)
David Howells22d01af2014-07-01 19:06:18 +010055{
David Howells99db4432015-08-05 15:22:27 +010056 enum key_being_used_for usage = pkcs7_usage;
David Howells22d01af2014-07-01 19:06:18 +010057
David Howells99db4432015-08-05 15:22:27 +010058 if (usage >= NR__KEY_BEING_USED_FOR) {
59 pr_err("Invalid usage type %d\n", usage);
60 return -EINVAL;
61 }
62
David Howellse68503b2016-04-06 16:14:24 +010063 return verify_pkcs7_signature(NULL, 0,
64 prep->data, prep->datalen,
Yannik Sembritzki40b08cd2018-08-16 14:05:10 +010065 VERIFY_USE_SECONDARY_KEYRING, usage,
David Howellse68503b2016-04-06 16:14:24 +010066 pkcs7_view_content, prep);
David Howells22d01af2014-07-01 19:06:18 +010067}
68
69/*
70 * user defined keys take an arbitrary string as the description and an
71 * arbitrary blob of data as the payload
72 */
Wei Yongjun63d25512014-07-28 21:17:12 +080073static struct key_type key_type_pkcs7 = {
David Howells22d01af2014-07-01 19:06:18 +010074 .name = "pkcs7_test",
David Howells1ca72c92014-07-22 21:52:33 +010075 .preparse = pkcs7_preparse,
76 .free_preparse = user_free_preparse,
77 .instantiate = generic_key_instantiate,
David Howells22d01af2014-07-01 19:06:18 +010078 .revoke = user_revoke,
79 .destroy = user_destroy,
80 .describe = user_describe,
81 .read = user_read,
82};
83
84/*
85 * Module stuff
86 */
87static int __init pkcs7_key_init(void)
88{
89 return register_key_type(&key_type_pkcs7);
90}
91
92static void __exit pkcs7_key_cleanup(void)
93{
94 unregister_key_type(&key_type_pkcs7);
95}
96
97module_init(pkcs7_key_init);
98module_exit(pkcs7_key_cleanup);