arm64: dts: rockchip: add cpu-id nvmem cell node for rk3399
[linux-2.6/btrfs-unstable.git] / crypto / asymmetric_keys / asymmetric_type.c
blob6600181d5d01b72e7cfe04fc3fb4054a9a2a108a
1 /* Asymmetric public-key cryptography key type
3 * See Documentation/security/asymmetric-keys.txt
5 * Copyright (C) 2012 Red Hat, Inc. All Rights Reserved.
6 * Written by David Howells (dhowells@redhat.com)
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public Licence
10 * as published by the Free Software Foundation; either version
11 * 2 of the Licence, or (at your option) any later version.
13 #include <keys/asymmetric-subtype.h>
14 #include <keys/asymmetric-parser.h>
15 #include <crypto/public_key.h>
16 #include <linux/seq_file.h>
17 #include <linux/module.h>
18 #include <linux/slab.h>
19 #include <linux/ctype.h>
20 #include "asymmetric_keys.h"
22 MODULE_LICENSE("GPL");
24 const char *const key_being_used_for[NR__KEY_BEING_USED_FOR] = {
25 [VERIFYING_MODULE_SIGNATURE] = "mod sig",
26 [VERIFYING_FIRMWARE_SIGNATURE] = "firmware sig",
27 [VERIFYING_KEXEC_PE_SIGNATURE] = "kexec PE sig",
28 [VERIFYING_KEY_SIGNATURE] = "key sig",
29 [VERIFYING_KEY_SELF_SIGNATURE] = "key self sig",
30 [VERIFYING_UNSPECIFIED_SIGNATURE] = "unspec sig",
32 EXPORT_SYMBOL_GPL(key_being_used_for);
34 static LIST_HEAD(asymmetric_key_parsers);
35 static DECLARE_RWSEM(asymmetric_key_parsers_sem);
37 /**
38 * find_asymmetric_key - Find a key by ID.
39 * @keyring: The keys to search.
40 * @id_0: The first ID to look for or NULL.
41 * @id_1: The second ID to look for or NULL.
42 * @partial: Use partial match if true, exact if false.
44 * Find a key in the given keyring by identifier. The preferred identifier is
45 * the id_0 and the fallback identifier is the id_1. If both are given, the
46 * lookup is by the former, but the latter must also match.
48 struct key *find_asymmetric_key(struct key *keyring,
49 const struct asymmetric_key_id *id_0,
50 const struct asymmetric_key_id *id_1,
51 bool partial)
53 struct key *key;
54 key_ref_t ref;
55 const char *lookup;
56 char *req, *p;
57 int len;
59 if (id_0) {
60 lookup = id_0->data;
61 len = id_0->len;
62 } else {
63 lookup = id_1->data;
64 len = id_1->len;
67 /* Construct an identifier "id:<keyid>". */
68 p = req = kmalloc(2 + 1 + len * 2 + 1, GFP_KERNEL);
69 if (!req)
70 return ERR_PTR(-ENOMEM);
72 if (partial) {
73 *p++ = 'i';
74 *p++ = 'd';
75 } else {
76 *p++ = 'e';
77 *p++ = 'x';
79 *p++ = ':';
80 p = bin2hex(p, lookup, len);
81 *p = 0;
83 pr_debug("Look up: \"%s\"\n", req);
85 ref = keyring_search(make_key_ref(keyring, 1),
86 &key_type_asymmetric, req);
87 if (IS_ERR(ref))
88 pr_debug("Request for key '%s' err %ld\n", req, PTR_ERR(ref));
89 kfree(req);
91 if (IS_ERR(ref)) {
92 switch (PTR_ERR(ref)) {
93 /* Hide some search errors */
94 case -EACCES:
95 case -ENOTDIR:
96 case -EAGAIN:
97 return ERR_PTR(-ENOKEY);
98 default:
99 return ERR_CAST(ref);
103 key = key_ref_to_ptr(ref);
104 if (id_0 && id_1) {
105 const struct asymmetric_key_ids *kids = asymmetric_key_ids(key);
107 if (!kids->id[0]) {
108 pr_debug("First ID matches, but second is missing\n");
109 goto reject;
111 if (!asymmetric_key_id_same(id_1, kids->id[1])) {
112 pr_debug("First ID matches, but second does not\n");
113 goto reject;
117 pr_devel("<==%s() = 0 [%x]\n", __func__, key_serial(key));
118 return key;
120 reject:
121 key_put(key);
122 return ERR_PTR(-EKEYREJECTED);
124 EXPORT_SYMBOL_GPL(find_asymmetric_key);
127 * asymmetric_key_generate_id: Construct an asymmetric key ID
128 * @val_1: First binary blob
129 * @len_1: Length of first binary blob
130 * @val_2: Second binary blob
131 * @len_2: Length of second binary blob
133 * Construct an asymmetric key ID from a pair of binary blobs.
135 struct asymmetric_key_id *asymmetric_key_generate_id(const void *val_1,
136 size_t len_1,
137 const void *val_2,
138 size_t len_2)
140 struct asymmetric_key_id *kid;
142 kid = kmalloc(sizeof(struct asymmetric_key_id) + len_1 + len_2,
143 GFP_KERNEL);
144 if (!kid)
145 return ERR_PTR(-ENOMEM);
146 kid->len = len_1 + len_2;
147 memcpy(kid->data, val_1, len_1);
148 memcpy(kid->data + len_1, val_2, len_2);
149 return kid;
151 EXPORT_SYMBOL_GPL(asymmetric_key_generate_id);
154 * asymmetric_key_id_same - Return true if two asymmetric keys IDs are the same.
155 * @kid_1, @kid_2: The key IDs to compare
157 bool asymmetric_key_id_same(const struct asymmetric_key_id *kid1,
158 const struct asymmetric_key_id *kid2)
160 if (!kid1 || !kid2)
161 return false;
162 if (kid1->len != kid2->len)
163 return false;
164 return memcmp(kid1->data, kid2->data, kid1->len) == 0;
166 EXPORT_SYMBOL_GPL(asymmetric_key_id_same);
169 * asymmetric_key_id_partial - Return true if two asymmetric keys IDs
170 * partially match
171 * @kid_1, @kid_2: The key IDs to compare
173 bool asymmetric_key_id_partial(const struct asymmetric_key_id *kid1,
174 const struct asymmetric_key_id *kid2)
176 if (!kid1 || !kid2)
177 return false;
178 if (kid1->len < kid2->len)
179 return false;
180 return memcmp(kid1->data + (kid1->len - kid2->len),
181 kid2->data, kid2->len) == 0;
183 EXPORT_SYMBOL_GPL(asymmetric_key_id_partial);
186 * asymmetric_match_key_ids - Search asymmetric key IDs
187 * @kids: The list of key IDs to check
188 * @match_id: The key ID we're looking for
189 * @match: The match function to use
191 static bool asymmetric_match_key_ids(
192 const struct asymmetric_key_ids *kids,
193 const struct asymmetric_key_id *match_id,
194 bool (*match)(const struct asymmetric_key_id *kid1,
195 const struct asymmetric_key_id *kid2))
197 int i;
199 if (!kids || !match_id)
200 return false;
201 for (i = 0; i < ARRAY_SIZE(kids->id); i++)
202 if (match(kids->id[i], match_id))
203 return true;
204 return false;
207 /* helper function can be called directly with pre-allocated memory */
208 inline int __asymmetric_key_hex_to_key_id(const char *id,
209 struct asymmetric_key_id *match_id,
210 size_t hexlen)
212 match_id->len = hexlen;
213 return hex2bin(match_id->data, id, hexlen);
217 * asymmetric_key_hex_to_key_id - Convert a hex string into a key ID.
218 * @id: The ID as a hex string.
220 struct asymmetric_key_id *asymmetric_key_hex_to_key_id(const char *id)
222 struct asymmetric_key_id *match_id;
223 size_t asciihexlen;
224 int ret;
226 if (!*id)
227 return ERR_PTR(-EINVAL);
228 asciihexlen = strlen(id);
229 if (asciihexlen & 1)
230 return ERR_PTR(-EINVAL);
232 match_id = kmalloc(sizeof(struct asymmetric_key_id) + asciihexlen / 2,
233 GFP_KERNEL);
234 if (!match_id)
235 return ERR_PTR(-ENOMEM);
236 ret = __asymmetric_key_hex_to_key_id(id, match_id, asciihexlen / 2);
237 if (ret < 0) {
238 kfree(match_id);
239 return ERR_PTR(-EINVAL);
241 return match_id;
245 * Match asymmetric keys by an exact match on an ID.
247 static bool asymmetric_key_cmp(const struct key *key,
248 const struct key_match_data *match_data)
250 const struct asymmetric_key_ids *kids = asymmetric_key_ids(key);
251 const struct asymmetric_key_id *match_id = match_data->preparsed;
253 return asymmetric_match_key_ids(kids, match_id,
254 asymmetric_key_id_same);
258 * Match asymmetric keys by a partial match on an IDs.
260 static bool asymmetric_key_cmp_partial(const struct key *key,
261 const struct key_match_data *match_data)
263 const struct asymmetric_key_ids *kids = asymmetric_key_ids(key);
264 const struct asymmetric_key_id *match_id = match_data->preparsed;
266 return asymmetric_match_key_ids(kids, match_id,
267 asymmetric_key_id_partial);
271 * Preparse the match criterion. If we don't set lookup_type and cmp,
272 * the default will be an exact match on the key description.
274 * There are some specifiers for matching key IDs rather than by the key
275 * description:
277 * "id:<id>" - find a key by partial match on any available ID
278 * "ex:<id>" - find a key by exact match on any available ID
280 * These have to be searched by iteration rather than by direct lookup because
281 * the key is hashed according to its description.
283 static int asymmetric_key_match_preparse(struct key_match_data *match_data)
285 struct asymmetric_key_id *match_id;
286 const char *spec = match_data->raw_data;
287 const char *id;
288 bool (*cmp)(const struct key *, const struct key_match_data *) =
289 asymmetric_key_cmp;
291 if (!spec || !*spec)
292 return -EINVAL;
293 if (spec[0] == 'i' &&
294 spec[1] == 'd' &&
295 spec[2] == ':') {
296 id = spec + 3;
297 cmp = asymmetric_key_cmp_partial;
298 } else if (spec[0] == 'e' &&
299 spec[1] == 'x' &&
300 spec[2] == ':') {
301 id = spec + 3;
302 } else {
303 goto default_match;
306 match_id = asymmetric_key_hex_to_key_id(id);
307 if (IS_ERR(match_id))
308 return PTR_ERR(match_id);
310 match_data->preparsed = match_id;
311 match_data->cmp = cmp;
312 match_data->lookup_type = KEYRING_SEARCH_LOOKUP_ITERATE;
313 return 0;
315 default_match:
316 return 0;
320 * Free the preparsed the match criterion.
322 static void asymmetric_key_match_free(struct key_match_data *match_data)
324 kfree(match_data->preparsed);
328 * Describe the asymmetric key
330 static void asymmetric_key_describe(const struct key *key, struct seq_file *m)
332 const struct asymmetric_key_subtype *subtype = asymmetric_key_subtype(key);
333 const struct asymmetric_key_ids *kids = asymmetric_key_ids(key);
334 const struct asymmetric_key_id *kid;
335 const unsigned char *p;
336 int n;
338 seq_puts(m, key->description);
340 if (subtype) {
341 seq_puts(m, ": ");
342 subtype->describe(key, m);
344 if (kids && kids->id[1]) {
345 kid = kids->id[1];
346 seq_putc(m, ' ');
347 n = kid->len;
348 p = kid->data;
349 if (n > 4) {
350 p += n - 4;
351 n = 4;
353 seq_printf(m, "%*phN", n, p);
356 seq_puts(m, " [");
357 /* put something here to indicate the key's capabilities */
358 seq_putc(m, ']');
363 * Preparse a asymmetric payload to get format the contents appropriately for the
364 * internal payload to cut down on the number of scans of the data performed.
366 * We also generate a proposed description from the contents of the key that
367 * can be used to name the key if the user doesn't want to provide one.
369 static int asymmetric_key_preparse(struct key_preparsed_payload *prep)
371 struct asymmetric_key_parser *parser;
372 int ret;
374 pr_devel("==>%s()\n", __func__);
376 if (prep->datalen == 0)
377 return -EINVAL;
379 down_read(&asymmetric_key_parsers_sem);
381 ret = -EBADMSG;
382 list_for_each_entry(parser, &asymmetric_key_parsers, link) {
383 pr_debug("Trying parser '%s'\n", parser->name);
385 ret = parser->parse(prep);
386 if (ret != -EBADMSG) {
387 pr_debug("Parser recognised the format (ret %d)\n",
388 ret);
389 break;
393 up_read(&asymmetric_key_parsers_sem);
394 pr_devel("<==%s() = %d\n", __func__, ret);
395 return ret;
399 * Clean up the key ID list
401 static void asymmetric_key_free_kids(struct asymmetric_key_ids *kids)
403 int i;
405 if (kids) {
406 for (i = 0; i < ARRAY_SIZE(kids->id); i++)
407 kfree(kids->id[i]);
408 kfree(kids);
413 * Clean up the preparse data
415 static void asymmetric_key_free_preparse(struct key_preparsed_payload *prep)
417 struct asymmetric_key_subtype *subtype = prep->payload.data[asym_subtype];
418 struct asymmetric_key_ids *kids = prep->payload.data[asym_key_ids];
420 pr_devel("==>%s()\n", __func__);
422 if (subtype) {
423 subtype->destroy(prep->payload.data[asym_crypto],
424 prep->payload.data[asym_auth]);
425 module_put(subtype->owner);
427 asymmetric_key_free_kids(kids);
428 kfree(prep->description);
432 * dispose of the data dangling from the corpse of a asymmetric key
434 static void asymmetric_key_destroy(struct key *key)
436 struct asymmetric_key_subtype *subtype = asymmetric_key_subtype(key);
437 struct asymmetric_key_ids *kids = key->payload.data[asym_key_ids];
438 void *data = key->payload.data[asym_crypto];
439 void *auth = key->payload.data[asym_auth];
441 key->payload.data[asym_crypto] = NULL;
442 key->payload.data[asym_subtype] = NULL;
443 key->payload.data[asym_key_ids] = NULL;
444 key->payload.data[asym_auth] = NULL;
446 if (subtype) {
447 subtype->destroy(data, auth);
448 module_put(subtype->owner);
451 asymmetric_key_free_kids(kids);
454 struct key_type key_type_asymmetric = {
455 .name = "asymmetric",
456 .preparse = asymmetric_key_preparse,
457 .free_preparse = asymmetric_key_free_preparse,
458 .instantiate = generic_key_instantiate,
459 .match_preparse = asymmetric_key_match_preparse,
460 .match_free = asymmetric_key_match_free,
461 .destroy = asymmetric_key_destroy,
462 .describe = asymmetric_key_describe,
464 EXPORT_SYMBOL_GPL(key_type_asymmetric);
467 * register_asymmetric_key_parser - Register a asymmetric key blob parser
468 * @parser: The parser to register
470 int register_asymmetric_key_parser(struct asymmetric_key_parser *parser)
472 struct asymmetric_key_parser *cursor;
473 int ret;
475 down_write(&asymmetric_key_parsers_sem);
477 list_for_each_entry(cursor, &asymmetric_key_parsers, link) {
478 if (strcmp(cursor->name, parser->name) == 0) {
479 pr_err("Asymmetric key parser '%s' already registered\n",
480 parser->name);
481 ret = -EEXIST;
482 goto out;
486 list_add_tail(&parser->link, &asymmetric_key_parsers);
488 pr_notice("Asymmetric key parser '%s' registered\n", parser->name);
489 ret = 0;
491 out:
492 up_write(&asymmetric_key_parsers_sem);
493 return ret;
495 EXPORT_SYMBOL_GPL(register_asymmetric_key_parser);
498 * unregister_asymmetric_key_parser - Unregister a asymmetric key blob parser
499 * @parser: The parser to unregister
501 void unregister_asymmetric_key_parser(struct asymmetric_key_parser *parser)
503 down_write(&asymmetric_key_parsers_sem);
504 list_del(&parser->link);
505 up_write(&asymmetric_key_parsers_sem);
507 pr_notice("Asymmetric key parser '%s' unregistered\n", parser->name);
509 EXPORT_SYMBOL_GPL(unregister_asymmetric_key_parser);
512 * Module stuff
514 static int __init asymmetric_key_init(void)
516 return register_key_type(&key_type_asymmetric);
519 static void __exit asymmetric_key_cleanup(void)
521 unregister_key_type(&key_type_asymmetric);
524 module_init(asymmetric_key_init);
525 module_exit(asymmetric_key_cleanup);