parport: Revert "parport: fix memory leak"
[linux-2.6/btrfs-unstable.git] / crypto / asymmetric_keys / pkcs7_key_type.c
blob3d13b042da735823b7c6425f93cce9cff82e0abe
1 /* Testing module to load key from trusted PKCS#7 message
3 * Copyright (C) 2014 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) "PKCS7key: "fmt
13 #include <linux/key.h>
14 #include <linux/err.h>
15 #include <linux/module.h>
16 #include <linux/key-type.h>
17 #include <crypto/pkcs7.h>
18 #include <keys/user-type.h>
19 #include <keys/system_keyring.h>
20 #include "pkcs7_parser.h"
23 * Preparse a PKCS#7 wrapped and validated data blob.
25 static int pkcs7_preparse(struct key_preparsed_payload *prep)
27 struct pkcs7_message *pkcs7;
28 const void *data, *saved_prep_data;
29 size_t datalen, saved_prep_datalen;
30 bool trusted;
31 int ret;
33 kenter("");
35 saved_prep_data = prep->data;
36 saved_prep_datalen = prep->datalen;
37 pkcs7 = pkcs7_parse_message(saved_prep_data, saved_prep_datalen);
38 if (IS_ERR(pkcs7)) {
39 ret = PTR_ERR(pkcs7);
40 goto error;
43 ret = pkcs7_verify(pkcs7);
44 if (ret < 0)
45 goto error_free;
47 ret = pkcs7_validate_trust(pkcs7, system_trusted_keyring, &trusted);
48 if (ret < 0)
49 goto error_free;
50 if (!trusted)
51 pr_warn("PKCS#7 message doesn't chain back to a trusted key\n");
53 ret = pkcs7_get_content_data(pkcs7, &data, &datalen, false);
54 if (ret < 0)
55 goto error_free;
57 prep->data = data;
58 prep->datalen = datalen;
59 ret = user_preparse(prep);
60 prep->data = saved_prep_data;
61 prep->datalen = saved_prep_datalen;
63 error_free:
64 pkcs7_free_message(pkcs7);
65 error:
66 kleave(" = %d", ret);
67 return ret;
71 * user defined keys take an arbitrary string as the description and an
72 * arbitrary blob of data as the payload
74 static struct key_type key_type_pkcs7 = {
75 .name = "pkcs7_test",
76 .preparse = pkcs7_preparse,
77 .free_preparse = user_free_preparse,
78 .instantiate = generic_key_instantiate,
79 .revoke = user_revoke,
80 .destroy = user_destroy,
81 .describe = user_describe,
82 .read = user_read,
86 * Module stuff
88 static int __init pkcs7_key_init(void)
90 return register_key_type(&key_type_pkcs7);
93 static void __exit pkcs7_key_cleanup(void)
95 unregister_key_type(&key_type_pkcs7);
98 module_init(pkcs7_key_init);
99 module_exit(pkcs7_key_cleanup);