xref: /openbmc/linux/security/keys/keyring.c (revision 355ef8e15885020da88f5ba2d85ce42b1d01f537)
169664cf1SDavid Howells /* Keyring handling
21da177e4SLinus Torvalds  *
3b2a4df20SDavid Howells  * Copyright (C) 2004-2005, 2008, 2013 Red Hat, Inc. All Rights Reserved.
41da177e4SLinus Torvalds  * Written by David Howells (dhowells@redhat.com)
51da177e4SLinus Torvalds  *
61da177e4SLinus Torvalds  * This program is free software; you can redistribute it and/or
71da177e4SLinus Torvalds  * modify it under the terms of the GNU General Public License
81da177e4SLinus Torvalds  * as published by the Free Software Foundation; either version
91da177e4SLinus Torvalds  * 2 of the License, or (at your option) any later version.
101da177e4SLinus Torvalds  */
111da177e4SLinus Torvalds 
12876979c9SPaul Gortmaker #include <linux/export.h>
131da177e4SLinus Torvalds #include <linux/init.h>
141da177e4SLinus Torvalds #include <linux/sched.h>
151da177e4SLinus Torvalds #include <linux/slab.h>
1629db9190SDavid Howells #include <linux/security.h>
171da177e4SLinus Torvalds #include <linux/seq_file.h>
181da177e4SLinus Torvalds #include <linux/err.h>
19e9e349b0SDavid Howells #include <keys/keyring-type.h>
20b2a4df20SDavid Howells #include <keys/user-type.h>
21b2a4df20SDavid Howells #include <linux/assoc_array_priv.h>
22512ea3bcSChihau Chau #include <linux/uaccess.h>
231da177e4SLinus Torvalds #include "internal.h"
241da177e4SLinus Torvalds 
251da177e4SLinus Torvalds /*
26973c9f4fSDavid Howells  * When plumbing the depths of the key tree, this sets a hard limit
27973c9f4fSDavid Howells  * set on how deep we're willing to go.
281da177e4SLinus Torvalds  */
291da177e4SLinus Torvalds #define KEYRING_SEARCH_MAX_DEPTH 6
301da177e4SLinus Torvalds 
311da177e4SLinus Torvalds /*
32973c9f4fSDavid Howells  * We keep all named keyrings in a hash to speed looking them up.
331da177e4SLinus Torvalds  */
341da177e4SLinus Torvalds #define KEYRING_NAME_HASH_SIZE	(1 << 5)
351da177e4SLinus Torvalds 
36b2a4df20SDavid Howells /*
37b2a4df20SDavid Howells  * We mark pointers we pass to the associative array with bit 1 set if
38b2a4df20SDavid Howells  * they're keyrings and clear otherwise.
39b2a4df20SDavid Howells  */
40b2a4df20SDavid Howells #define KEYRING_PTR_SUBTYPE	0x2UL
41b2a4df20SDavid Howells 
42b2a4df20SDavid Howells static inline bool keyring_ptr_is_keyring(const struct assoc_array_ptr *x)
43b2a4df20SDavid Howells {
44b2a4df20SDavid Howells 	return (unsigned long)x & KEYRING_PTR_SUBTYPE;
45b2a4df20SDavid Howells }
46b2a4df20SDavid Howells static inline struct key *keyring_ptr_to_key(const struct assoc_array_ptr *x)
47b2a4df20SDavid Howells {
48b2a4df20SDavid Howells 	void *object = assoc_array_ptr_to_leaf(x);
49b2a4df20SDavid Howells 	return (struct key *)((unsigned long)object & ~KEYRING_PTR_SUBTYPE);
50b2a4df20SDavid Howells }
51b2a4df20SDavid Howells static inline void *keyring_key_to_ptr(struct key *key)
52b2a4df20SDavid Howells {
53b2a4df20SDavid Howells 	if (key->type == &key_type_keyring)
54b2a4df20SDavid Howells 		return (void *)((unsigned long)key | KEYRING_PTR_SUBTYPE);
55b2a4df20SDavid Howells 	return key;
56b2a4df20SDavid Howells }
57b2a4df20SDavid Howells 
581da177e4SLinus Torvalds static struct list_head	keyring_name_hash[KEYRING_NAME_HASH_SIZE];
591da177e4SLinus Torvalds static DEFINE_RWLOCK(keyring_name_lock);
601da177e4SLinus Torvalds 
611da177e4SLinus Torvalds static inline unsigned keyring_hash(const char *desc)
621da177e4SLinus Torvalds {
631da177e4SLinus Torvalds 	unsigned bucket = 0;
641da177e4SLinus Torvalds 
651da177e4SLinus Torvalds 	for (; *desc; desc++)
661da177e4SLinus Torvalds 		bucket += (unsigned char)*desc;
671da177e4SLinus Torvalds 
681da177e4SLinus Torvalds 	return bucket & (KEYRING_NAME_HASH_SIZE - 1);
691da177e4SLinus Torvalds }
701da177e4SLinus Torvalds 
711da177e4SLinus Torvalds /*
72973c9f4fSDavid Howells  * The keyring key type definition.  Keyrings are simply keys of this type and
73973c9f4fSDavid Howells  * can be treated as ordinary keys in addition to having their own special
74973c9f4fSDavid Howells  * operations.
751da177e4SLinus Torvalds  */
765d19e20bSDavid Howells static int keyring_preparse(struct key_preparsed_payload *prep);
775d19e20bSDavid Howells static void keyring_free_preparse(struct key_preparsed_payload *prep);
781da177e4SLinus Torvalds static int keyring_instantiate(struct key *keyring,
79cf7f601cSDavid Howells 			       struct key_preparsed_payload *prep);
8031204ed9SDavid Howells static void keyring_revoke(struct key *keyring);
811da177e4SLinus Torvalds static void keyring_destroy(struct key *keyring);
821da177e4SLinus Torvalds static void keyring_describe(const struct key *keyring, struct seq_file *m);
831da177e4SLinus Torvalds static long keyring_read(const struct key *keyring,
841da177e4SLinus Torvalds 			 char __user *buffer, size_t buflen);
851da177e4SLinus Torvalds 
861da177e4SLinus Torvalds struct key_type key_type_keyring = {
871da177e4SLinus Torvalds 	.name		= "keyring",
88b2a4df20SDavid Howells 	.def_datalen	= 0,
895d19e20bSDavid Howells 	.preparse	= keyring_preparse,
905d19e20bSDavid Howells 	.free_preparse	= keyring_free_preparse,
911da177e4SLinus Torvalds 	.instantiate	= keyring_instantiate,
9231204ed9SDavid Howells 	.revoke		= keyring_revoke,
931da177e4SLinus Torvalds 	.destroy	= keyring_destroy,
941da177e4SLinus Torvalds 	.describe	= keyring_describe,
951da177e4SLinus Torvalds 	.read		= keyring_read,
961da177e4SLinus Torvalds };
977318226eSDavid Howells EXPORT_SYMBOL(key_type_keyring);
987318226eSDavid Howells 
991da177e4SLinus Torvalds /*
100973c9f4fSDavid Howells  * Semaphore to serialise link/link calls to prevent two link calls in parallel
101973c9f4fSDavid Howells  * introducing a cycle.
1021da177e4SLinus Torvalds  */
1033be59f74SDavid Howells static DEFINE_MUTEX(keyring_serialise_link_lock);
1041da177e4SLinus Torvalds 
1051da177e4SLinus Torvalds /*
106973c9f4fSDavid Howells  * Publish the name of a keyring so that it can be found by name (if it has
107973c9f4fSDavid Howells  * one).
1081da177e4SLinus Torvalds  */
10969664cf1SDavid Howells static void keyring_publish_name(struct key *keyring)
1101da177e4SLinus Torvalds {
1111da177e4SLinus Torvalds 	int bucket;
1121da177e4SLinus Torvalds 
1131da177e4SLinus Torvalds 	if (keyring->description) {
1141da177e4SLinus Torvalds 		bucket = keyring_hash(keyring->description);
1151da177e4SLinus Torvalds 
1161da177e4SLinus Torvalds 		write_lock(&keyring_name_lock);
1171da177e4SLinus Torvalds 
1181da177e4SLinus Torvalds 		if (!keyring_name_hash[bucket].next)
1191da177e4SLinus Torvalds 			INIT_LIST_HEAD(&keyring_name_hash[bucket]);
1201da177e4SLinus Torvalds 
121146aa8b1SDavid Howells 		list_add_tail(&keyring->name_link,
1221da177e4SLinus Torvalds 			      &keyring_name_hash[bucket]);
1231da177e4SLinus Torvalds 
1241da177e4SLinus Torvalds 		write_unlock(&keyring_name_lock);
1251da177e4SLinus Torvalds 	}
126a8b17ed0SDavid Howells }
1271da177e4SLinus Torvalds 
1281da177e4SLinus Torvalds /*
1295d19e20bSDavid Howells  * Preparse a keyring payload
1305d19e20bSDavid Howells  */
1315d19e20bSDavid Howells static int keyring_preparse(struct key_preparsed_payload *prep)
1325d19e20bSDavid Howells {
1335d19e20bSDavid Howells 	return prep->datalen != 0 ? -EINVAL : 0;
1345d19e20bSDavid Howells }
1355d19e20bSDavid Howells 
1365d19e20bSDavid Howells /*
1375d19e20bSDavid Howells  * Free a preparse of a user defined key payload
1385d19e20bSDavid Howells  */
1395d19e20bSDavid Howells static void keyring_free_preparse(struct key_preparsed_payload *prep)
1405d19e20bSDavid Howells {
1415d19e20bSDavid Howells }
1425d19e20bSDavid Howells 
1435d19e20bSDavid Howells /*
144973c9f4fSDavid Howells  * Initialise a keyring.
145973c9f4fSDavid Howells  *
146973c9f4fSDavid Howells  * Returns 0 on success, -EINVAL if given any data.
1471da177e4SLinus Torvalds  */
1481da177e4SLinus Torvalds static int keyring_instantiate(struct key *keyring,
149cf7f601cSDavid Howells 			       struct key_preparsed_payload *prep)
1501da177e4SLinus Torvalds {
151b2a4df20SDavid Howells 	assoc_array_init(&keyring->keys);
1521da177e4SLinus Torvalds 	/* make the keyring available by name if it has one */
1531da177e4SLinus Torvalds 	keyring_publish_name(keyring);
1545d19e20bSDavid Howells 	return 0;
155a8b17ed0SDavid Howells }
1561da177e4SLinus Torvalds 
1571da177e4SLinus Torvalds /*
158b2a4df20SDavid Howells  * Multiply 64-bits by 32-bits to 96-bits and fold back to 64-bit.  Ideally we'd
159b2a4df20SDavid Howells  * fold the carry back too, but that requires inline asm.
1601da177e4SLinus Torvalds  */
161b2a4df20SDavid Howells static u64 mult_64x32_and_fold(u64 x, u32 y)
1621da177e4SLinus Torvalds {
163b2a4df20SDavid Howells 	u64 hi = (u64)(u32)(x >> 32) * y;
164b2a4df20SDavid Howells 	u64 lo = (u64)(u32)(x) * y;
165b2a4df20SDavid Howells 	return lo + ((u64)(u32)hi << 32) + (u32)(hi >> 32);
166a8b17ed0SDavid Howells }
1671da177e4SLinus Torvalds 
1681da177e4SLinus Torvalds /*
169b2a4df20SDavid Howells  * Hash a key type and description.
170b2a4df20SDavid Howells  */
171*355ef8e1SDavid Howells static void hash_key_type_and_desc(struct keyring_index_key *index_key)
172b2a4df20SDavid Howells {
173b2a4df20SDavid Howells 	const unsigned level_shift = ASSOC_ARRAY_LEVEL_STEP;
174d54e58b7SDavid Howells 	const unsigned long fan_mask = ASSOC_ARRAY_FAN_MASK;
175b2a4df20SDavid Howells 	const char *description = index_key->description;
176b2a4df20SDavid Howells 	unsigned long hash, type;
177b2a4df20SDavid Howells 	u32 piece;
178b2a4df20SDavid Howells 	u64 acc;
179b2a4df20SDavid Howells 	int n, desc_len = index_key->desc_len;
180b2a4df20SDavid Howells 
181b2a4df20SDavid Howells 	type = (unsigned long)index_key->type;
182b2a4df20SDavid Howells 	acc = mult_64x32_and_fold(type, desc_len + 13);
183b2a4df20SDavid Howells 	acc = mult_64x32_and_fold(acc, 9207);
184f771fde8SDavid Howells 
185b2a4df20SDavid Howells 	for (;;) {
186b2a4df20SDavid Howells 		n = desc_len;
187b2a4df20SDavid Howells 		if (n <= 0)
188b2a4df20SDavid Howells 			break;
189b2a4df20SDavid Howells 		if (n > 4)
190b2a4df20SDavid Howells 			n = 4;
191b2a4df20SDavid Howells 		piece = 0;
192b2a4df20SDavid Howells 		memcpy(&piece, description, n);
193b2a4df20SDavid Howells 		description += n;
194b2a4df20SDavid Howells 		desc_len -= n;
195b2a4df20SDavid Howells 		acc = mult_64x32_and_fold(acc, piece);
196b2a4df20SDavid Howells 		acc = mult_64x32_and_fold(acc, 9207);
197b2a4df20SDavid Howells 	}
198b2a4df20SDavid Howells 
199b2a4df20SDavid Howells 	/* Fold the hash down to 32 bits if need be. */
200b2a4df20SDavid Howells 	hash = acc;
201b2a4df20SDavid Howells 	if (ASSOC_ARRAY_KEY_CHUNK_SIZE == 32)
202b2a4df20SDavid Howells 		hash ^= acc >> 32;
203b2a4df20SDavid Howells 
204b2a4df20SDavid Howells 	/* Squidge all the keyrings into a separate part of the tree to
205b2a4df20SDavid Howells 	 * ordinary keys by making sure the lowest level segment in the hash is
206b2a4df20SDavid Howells 	 * zero for keyrings and non-zero otherwise.
207b2a4df20SDavid Howells 	 */
208d54e58b7SDavid Howells 	if (index_key->type != &key_type_keyring && (hash & fan_mask) == 0)
209*355ef8e1SDavid Howells 		hash |= (hash >> (ASSOC_ARRAY_KEY_CHUNK_SIZE - level_shift)) | 1;
210*355ef8e1SDavid Howells 	else if (index_key->type == &key_type_keyring && (hash & fan_mask) != 0)
211*355ef8e1SDavid Howells 		hash = (hash + (hash << level_shift)) & ~fan_mask;
212*355ef8e1SDavid Howells 	index_key->hash = hash;
213*355ef8e1SDavid Howells }
214*355ef8e1SDavid Howells 
215*355ef8e1SDavid Howells /*
216*355ef8e1SDavid Howells  * Finalise an index key to include a part of the description actually in the
217*355ef8e1SDavid Howells  * index key and to add in the hash too.
218*355ef8e1SDavid Howells  */
219*355ef8e1SDavid Howells void key_set_index_key(struct keyring_index_key *index_key)
220*355ef8e1SDavid Howells {
221*355ef8e1SDavid Howells 	size_t n = min_t(size_t, index_key->desc_len, sizeof(index_key->desc));
222*355ef8e1SDavid Howells 	memcpy(index_key->desc, index_key->description, n);
223*355ef8e1SDavid Howells 
224*355ef8e1SDavid Howells 	hash_key_type_and_desc(index_key);
225b2a4df20SDavid Howells }
226b2a4df20SDavid Howells 
227b2a4df20SDavid Howells /*
228b2a4df20SDavid Howells  * Build the next index key chunk.
229b2a4df20SDavid Howells  *
230b2a4df20SDavid Howells  * We return it one word-sized chunk at a time.
231b2a4df20SDavid Howells  */
232b2a4df20SDavid Howells static unsigned long keyring_get_key_chunk(const void *data, int level)
233b2a4df20SDavid Howells {
234b2a4df20SDavid Howells 	const struct keyring_index_key *index_key = data;
235b2a4df20SDavid Howells 	unsigned long chunk = 0;
236f771fde8SDavid Howells 	const u8 *d;
237b2a4df20SDavid Howells 	int desc_len = index_key->desc_len, n = sizeof(chunk);
238b2a4df20SDavid Howells 
239b2a4df20SDavid Howells 	level /= ASSOC_ARRAY_KEY_CHUNK_SIZE;
240b2a4df20SDavid Howells 	switch (level) {
241b2a4df20SDavid Howells 	case 0:
242*355ef8e1SDavid Howells 		return index_key->hash;
243b2a4df20SDavid Howells 	case 1:
244f771fde8SDavid Howells 		return index_key->x;
245b2a4df20SDavid Howells 	case 2:
246f771fde8SDavid Howells 		return (unsigned long)index_key->type;
247b2a4df20SDavid Howells 	default:
248f771fde8SDavid Howells 		level -= 3;
249f771fde8SDavid Howells 		if (desc_len <= sizeof(index_key->desc))
250b2a4df20SDavid Howells 			return 0;
251f771fde8SDavid Howells 
252f771fde8SDavid Howells 		d = index_key->description + sizeof(index_key->desc);
253f771fde8SDavid Howells 		d += level * sizeof(long);
254f771fde8SDavid Howells 		desc_len -= sizeof(index_key->desc);
255b2a4df20SDavid Howells 		if (desc_len > n)
256b2a4df20SDavid Howells 			desc_len = n;
257b2a4df20SDavid Howells 		do {
258b2a4df20SDavid Howells 			chunk <<= 8;
259f771fde8SDavid Howells 			chunk |= *d++;
260b2a4df20SDavid Howells 		} while (--desc_len > 0);
261b2a4df20SDavid Howells 		return chunk;
262b2a4df20SDavid Howells 	}
263b2a4df20SDavid Howells }
264b2a4df20SDavid Howells 
265b2a4df20SDavid Howells static unsigned long keyring_get_object_key_chunk(const void *object, int level)
266b2a4df20SDavid Howells {
267b2a4df20SDavid Howells 	const struct key *key = keyring_ptr_to_key(object);
268b2a4df20SDavid Howells 	return keyring_get_key_chunk(&key->index_key, level);
269b2a4df20SDavid Howells }
270b2a4df20SDavid Howells 
271b2a4df20SDavid Howells static bool keyring_compare_object(const void *object, const void *data)
272b2a4df20SDavid Howells {
273b2a4df20SDavid Howells 	const struct keyring_index_key *index_key = data;
274b2a4df20SDavid Howells 	const struct key *key = keyring_ptr_to_key(object);
275b2a4df20SDavid Howells 
276b2a4df20SDavid Howells 	return key->index_key.type == index_key->type &&
277b2a4df20SDavid Howells 		key->index_key.desc_len == index_key->desc_len &&
278b2a4df20SDavid Howells 		memcmp(key->index_key.description, index_key->description,
279b2a4df20SDavid Howells 		       index_key->desc_len) == 0;
280b2a4df20SDavid Howells }
281b2a4df20SDavid Howells 
282b2a4df20SDavid Howells /*
283b2a4df20SDavid Howells  * Compare the index keys of a pair of objects and determine the bit position
284b2a4df20SDavid Howells  * at which they differ - if they differ.
285b2a4df20SDavid Howells  */
28623fd78d7SDavid Howells static int keyring_diff_objects(const void *object, const void *data)
287b2a4df20SDavid Howells {
28823fd78d7SDavid Howells 	const struct key *key_a = keyring_ptr_to_key(object);
289b2a4df20SDavid Howells 	const struct keyring_index_key *a = &key_a->index_key;
29023fd78d7SDavid Howells 	const struct keyring_index_key *b = data;
291b2a4df20SDavid Howells 	unsigned long seg_a, seg_b;
292b2a4df20SDavid Howells 	int level, i;
293b2a4df20SDavid Howells 
294b2a4df20SDavid Howells 	level = 0;
295*355ef8e1SDavid Howells 	seg_a = a->hash;
296*355ef8e1SDavid Howells 	seg_b = b->hash;
297b2a4df20SDavid Howells 	if ((seg_a ^ seg_b) != 0)
298b2a4df20SDavid Howells 		goto differ;
299f771fde8SDavid Howells 	level += ASSOC_ARRAY_KEY_CHUNK_SIZE / 8;
300b2a4df20SDavid Howells 
301b2a4df20SDavid Howells 	/* The number of bits contributed by the hash is controlled by a
302b2a4df20SDavid Howells 	 * constant in the assoc_array headers.  Everything else thereafter we
303b2a4df20SDavid Howells 	 * can deal with as being machine word-size dependent.
304b2a4df20SDavid Howells 	 */
305f771fde8SDavid Howells 	seg_a = a->x;
306f771fde8SDavid Howells 	seg_b = b->x;
307b2a4df20SDavid Howells 	if ((seg_a ^ seg_b) != 0)
308b2a4df20SDavid Howells 		goto differ;
309f771fde8SDavid Howells 	level += sizeof(unsigned long);
310b2a4df20SDavid Howells 
311b2a4df20SDavid Howells 	/* The next bit may not work on big endian */
312b2a4df20SDavid Howells 	seg_a = (unsigned long)a->type;
313b2a4df20SDavid Howells 	seg_b = (unsigned long)b->type;
314b2a4df20SDavid Howells 	if ((seg_a ^ seg_b) != 0)
315b2a4df20SDavid Howells 		goto differ;
316b2a4df20SDavid Howells 	level += sizeof(unsigned long);
317b2a4df20SDavid Howells 
318f771fde8SDavid Howells 	i = sizeof(a->desc);
319f771fde8SDavid Howells 	if (a->desc_len <= i)
320f771fde8SDavid Howells 		goto same;
321b2a4df20SDavid Howells 
322b2a4df20SDavid Howells 	for (; i < a->desc_len; i++) {
323b2a4df20SDavid Howells 		seg_a = *(unsigned char *)(a->description + i);
324b2a4df20SDavid Howells 		seg_b = *(unsigned char *)(b->description + i);
325b2a4df20SDavid Howells 		if ((seg_a ^ seg_b) != 0)
326b2a4df20SDavid Howells 			goto differ_plus_i;
327b2a4df20SDavid Howells 	}
328b2a4df20SDavid Howells 
329b2a4df20SDavid Howells same:
330b2a4df20SDavid Howells 	return -1;
331b2a4df20SDavid Howells 
332b2a4df20SDavid Howells differ_plus_i:
333b2a4df20SDavid Howells 	level += i;
334b2a4df20SDavid Howells differ:
335b2a4df20SDavid Howells 	i = level * 8 + __ffs(seg_a ^ seg_b);
336b2a4df20SDavid Howells 	return i;
337b2a4df20SDavid Howells }
338b2a4df20SDavid Howells 
339b2a4df20SDavid Howells /*
340b2a4df20SDavid Howells  * Free an object after stripping the keyring flag off of the pointer.
341b2a4df20SDavid Howells  */
342b2a4df20SDavid Howells static void keyring_free_object(void *object)
343b2a4df20SDavid Howells {
344b2a4df20SDavid Howells 	key_put(keyring_ptr_to_key(object));
345b2a4df20SDavid Howells }
346b2a4df20SDavid Howells 
347b2a4df20SDavid Howells /*
348b2a4df20SDavid Howells  * Operations for keyring management by the index-tree routines.
349b2a4df20SDavid Howells  */
350b2a4df20SDavid Howells static const struct assoc_array_ops keyring_assoc_array_ops = {
351b2a4df20SDavid Howells 	.get_key_chunk		= keyring_get_key_chunk,
352b2a4df20SDavid Howells 	.get_object_key_chunk	= keyring_get_object_key_chunk,
353b2a4df20SDavid Howells 	.compare_object		= keyring_compare_object,
354b2a4df20SDavid Howells 	.diff_objects		= keyring_diff_objects,
355b2a4df20SDavid Howells 	.free_object		= keyring_free_object,
356b2a4df20SDavid Howells };
357b2a4df20SDavid Howells 
358b2a4df20SDavid Howells /*
359973c9f4fSDavid Howells  * Clean up a keyring when it is destroyed.  Unpublish its name if it had one
360973c9f4fSDavid Howells  * and dispose of its data.
361233e4735SDavid Howells  *
362233e4735SDavid Howells  * The garbage collector detects the final key_put(), removes the keyring from
363233e4735SDavid Howells  * the serial number tree and then does RCU synchronisation before coming here,
364233e4735SDavid Howells  * so we shouldn't need to worry about code poking around here with the RCU
365233e4735SDavid Howells  * readlock held by this time.
3661da177e4SLinus Torvalds  */
3671da177e4SLinus Torvalds static void keyring_destroy(struct key *keyring)
3681da177e4SLinus Torvalds {
3691da177e4SLinus Torvalds 	if (keyring->description) {
3701da177e4SLinus Torvalds 		write_lock(&keyring_name_lock);
37194efe72fSDavid Howells 
372146aa8b1SDavid Howells 		if (keyring->name_link.next != NULL &&
373146aa8b1SDavid Howells 		    !list_empty(&keyring->name_link))
374146aa8b1SDavid Howells 			list_del(&keyring->name_link);
37594efe72fSDavid Howells 
3761da177e4SLinus Torvalds 		write_unlock(&keyring_name_lock);
3771da177e4SLinus Torvalds 	}
3781da177e4SLinus Torvalds 
3792b6aa412SMat Martineau 	if (keyring->restrict_link) {
3802b6aa412SMat Martineau 		struct key_restriction *keyres = keyring->restrict_link;
3812b6aa412SMat Martineau 
3822b6aa412SMat Martineau 		key_put(keyres->key);
3832b6aa412SMat Martineau 		kfree(keyres);
3842b6aa412SMat Martineau 	}
3852b6aa412SMat Martineau 
386b2a4df20SDavid Howells 	assoc_array_destroy(&keyring->keys, &keyring_assoc_array_ops);
387a8b17ed0SDavid Howells }
3881da177e4SLinus Torvalds 
3891da177e4SLinus Torvalds /*
390973c9f4fSDavid Howells  * Describe a keyring for /proc.
3911da177e4SLinus Torvalds  */
3921da177e4SLinus Torvalds static void keyring_describe(const struct key *keyring, struct seq_file *m)
3931da177e4SLinus Torvalds {
394c8563473Swzt.wzt@gmail.com 	if (keyring->description)
3951da177e4SLinus Torvalds 		seq_puts(m, keyring->description);
396c8563473Swzt.wzt@gmail.com 	else
3971da177e4SLinus Torvalds 		seq_puts(m, "[anon]");
3981da177e4SLinus Torvalds 
399363b02daSDavid Howells 	if (key_is_positive(keyring)) {
400b2a4df20SDavid Howells 		if (keyring->keys.nr_leaves_on_tree != 0)
401b2a4df20SDavid Howells 			seq_printf(m, ": %lu", keyring->keys.nr_leaves_on_tree);
4021da177e4SLinus Torvalds 		else
4031da177e4SLinus Torvalds 			seq_puts(m, ": empty");
404a8b17ed0SDavid Howells 	}
40578b7280cSDavid Howells }
4061da177e4SLinus Torvalds 
407b2a4df20SDavid Howells struct keyring_read_iterator_context {
408e645016aSEric Biggers 	size_t			buflen;
409b2a4df20SDavid Howells 	size_t			count;
410b2a4df20SDavid Howells 	key_serial_t __user	*buffer;
411b2a4df20SDavid Howells };
412b2a4df20SDavid Howells 
413b2a4df20SDavid Howells static int keyring_read_iterator(const void *object, void *data)
414b2a4df20SDavid Howells {
415b2a4df20SDavid Howells 	struct keyring_read_iterator_context *ctx = data;
416b2a4df20SDavid Howells 	const struct key *key = keyring_ptr_to_key(object);
417b2a4df20SDavid Howells 	int ret;
418b2a4df20SDavid Howells 
419b2a4df20SDavid Howells 	kenter("{%s,%d},,{%zu/%zu}",
420e645016aSEric Biggers 	       key->type->name, key->serial, ctx->count, ctx->buflen);
421b2a4df20SDavid Howells 
422e645016aSEric Biggers 	if (ctx->count >= ctx->buflen)
423b2a4df20SDavid Howells 		return 1;
424b2a4df20SDavid Howells 
425b2a4df20SDavid Howells 	ret = put_user(key->serial, ctx->buffer);
426b2a4df20SDavid Howells 	if (ret < 0)
427b2a4df20SDavid Howells 		return ret;
428b2a4df20SDavid Howells 	ctx->buffer++;
429b2a4df20SDavid Howells 	ctx->count += sizeof(key->serial);
430b2a4df20SDavid Howells 	return 0;
431b2a4df20SDavid Howells }
432b2a4df20SDavid Howells 
4331da177e4SLinus Torvalds /*
434973c9f4fSDavid Howells  * Read a list of key IDs from the keyring's contents in binary form
435973c9f4fSDavid Howells  *
436b2a4df20SDavid Howells  * The keyring's semaphore is read-locked by the caller.  This prevents someone
437b2a4df20SDavid Howells  * from modifying it under us - which could cause us to read key IDs multiple
438b2a4df20SDavid Howells  * times.
4391da177e4SLinus Torvalds  */
4401da177e4SLinus Torvalds static long keyring_read(const struct key *keyring,
4411da177e4SLinus Torvalds 			 char __user *buffer, size_t buflen)
4421da177e4SLinus Torvalds {
443b2a4df20SDavid Howells 	struct keyring_read_iterator_context ctx;
4443239b6f2SEric Biggers 	long ret;
4451da177e4SLinus Torvalds 
446b2a4df20SDavid Howells 	kenter("{%d},,%zu", key_serial(keyring), buflen);
4471da177e4SLinus Torvalds 
448b2a4df20SDavid Howells 	if (buflen & (sizeof(key_serial_t) - 1))
449b2a4df20SDavid Howells 		return -EINVAL;
4501da177e4SLinus Torvalds 
4513239b6f2SEric Biggers 	/* Copy as many key IDs as fit into the buffer */
4523239b6f2SEric Biggers 	if (buffer && buflen) {
453b2a4df20SDavid Howells 		ctx.buffer = (key_serial_t __user *)buffer;
454e645016aSEric Biggers 		ctx.buflen = buflen;
455b2a4df20SDavid Howells 		ctx.count = 0;
4563239b6f2SEric Biggers 		ret = assoc_array_iterate(&keyring->keys,
4573239b6f2SEric Biggers 					  keyring_read_iterator, &ctx);
458b2a4df20SDavid Howells 		if (ret < 0) {
4593239b6f2SEric Biggers 			kleave(" = %ld [iterate]", ret);
4601da177e4SLinus Torvalds 			return ret;
461a8b17ed0SDavid Howells 		}
4623239b6f2SEric Biggers 	}
4631da177e4SLinus Torvalds 
4643239b6f2SEric Biggers 	/* Return the size of the buffer needed */
4653239b6f2SEric Biggers 	ret = keyring->keys.nr_leaves_on_tree * sizeof(key_serial_t);
4663239b6f2SEric Biggers 	if (ret <= buflen)
4673239b6f2SEric Biggers 		kleave("= %ld [ok]", ret);
4683239b6f2SEric Biggers 	else
4693239b6f2SEric Biggers 		kleave("= %ld [buffer too small]", ret);
4703239b6f2SEric Biggers 	return ret;
471b2a4df20SDavid Howells }
472b2a4df20SDavid Howells 
4731da177e4SLinus Torvalds /*
474973c9f4fSDavid Howells  * Allocate a keyring and link into the destination keyring.
4751da177e4SLinus Torvalds  */
4769a56c2dbSEric W. Biederman struct key *keyring_alloc(const char *description, kuid_t uid, kgid_t gid,
47796b5c8feSDavid Howells 			  const struct cred *cred, key_perm_t perm,
4785ac7eaceSDavid Howells 			  unsigned long flags,
4792b6aa412SMat Martineau 			  struct key_restriction *restrict_link,
4805ac7eaceSDavid Howells 			  struct key *dest)
4811da177e4SLinus Torvalds {
4821da177e4SLinus Torvalds 	struct key *keyring;
4831da177e4SLinus Torvalds 	int ret;
4841da177e4SLinus Torvalds 
4851da177e4SLinus Torvalds 	keyring = key_alloc(&key_type_keyring, description,
4865ac7eaceSDavid Howells 			    uid, gid, cred, perm, flags, restrict_link);
4871da177e4SLinus Torvalds 	if (!IS_ERR(keyring)) {
4883e30148cSDavid Howells 		ret = key_instantiate_and_link(keyring, NULL, 0, dest, NULL);
4891da177e4SLinus Torvalds 		if (ret < 0) {
4901da177e4SLinus Torvalds 			key_put(keyring);
4911da177e4SLinus Torvalds 			keyring = ERR_PTR(ret);
4921da177e4SLinus Torvalds 		}
4931da177e4SLinus Torvalds 	}
4941da177e4SLinus Torvalds 
4951da177e4SLinus Torvalds 	return keyring;
496a8b17ed0SDavid Howells }
497f8aa23a5SDavid Howells EXPORT_SYMBOL(keyring_alloc);
4981da177e4SLinus Torvalds 
4995ac7eaceSDavid Howells /**
5005ac7eaceSDavid Howells  * restrict_link_reject - Give -EPERM to restrict link
5015ac7eaceSDavid Howells  * @keyring: The keyring being added to.
5025ac7eaceSDavid Howells  * @type: The type of key being added.
5035ac7eaceSDavid Howells  * @payload: The payload of the key intended to be added.
5049fd16537SDavid Howells  * @restriction_key: Keys providing additional data for evaluating restriction.
5055ac7eaceSDavid Howells  *
5065ac7eaceSDavid Howells  * Reject the addition of any links to a keyring.  It can be overridden by
5075ac7eaceSDavid Howells  * passing KEY_ALLOC_BYPASS_RESTRICTION to key_instantiate_and_link() when
5085ac7eaceSDavid Howells  * adding a key to a keyring.
5095ac7eaceSDavid Howells  *
5102b6aa412SMat Martineau  * This is meant to be stored in a key_restriction structure which is passed
5112b6aa412SMat Martineau  * in the restrict_link parameter to keyring_alloc().
5125ac7eaceSDavid Howells  */
5135ac7eaceSDavid Howells int restrict_link_reject(struct key *keyring,
5145ac7eaceSDavid Howells 			 const struct key_type *type,
515aaf66c88SMat Martineau 			 const union key_payload *payload,
516aaf66c88SMat Martineau 			 struct key *restriction_key)
5175ac7eaceSDavid Howells {
5185ac7eaceSDavid Howells 	return -EPERM;
5195ac7eaceSDavid Howells }
5205ac7eaceSDavid Howells 
521b2a4df20SDavid Howells /*
522c06cfb08SDavid Howells  * By default, we keys found by getting an exact match on their descriptions.
523c06cfb08SDavid Howells  */
5240c903ab6SDavid Howells bool key_default_cmp(const struct key *key,
525c06cfb08SDavid Howells 		     const struct key_match_data *match_data)
526c06cfb08SDavid Howells {
527c06cfb08SDavid Howells 	return strcmp(key->description, match_data->raw_data) == 0;
528c06cfb08SDavid Howells }
529c06cfb08SDavid Howells 
530c06cfb08SDavid Howells /*
531b2a4df20SDavid Howells  * Iteration function to consider each key found.
532b2a4df20SDavid Howells  */
533b2a4df20SDavid Howells static int keyring_search_iterator(const void *object, void *iterator_data)
534b2a4df20SDavid Howells {
535b2a4df20SDavid Howells 	struct keyring_search_context *ctx = iterator_data;
536b2a4df20SDavid Howells 	const struct key *key = keyring_ptr_to_key(object);
537363b02daSDavid Howells 	unsigned long kflags = READ_ONCE(key->flags);
538363b02daSDavid Howells 	short state = READ_ONCE(key->state);
539b2a4df20SDavid Howells 
540b2a4df20SDavid Howells 	kenter("{%d}", key->serial);
541b2a4df20SDavid Howells 
542b2a4df20SDavid Howells 	/* ignore keys not of this type */
543b2a4df20SDavid Howells 	if (key->type != ctx->index_key.type) {
544b2a4df20SDavid Howells 		kleave(" = 0 [!type]");
545b2a4df20SDavid Howells 		return 0;
546b2a4df20SDavid Howells 	}
547b2a4df20SDavid Howells 
548b2a4df20SDavid Howells 	/* skip invalidated, revoked and expired keys */
549b2a4df20SDavid Howells 	if (ctx->flags & KEYRING_SEARCH_DO_STATE_CHECK) {
550074d5898SBaolin Wang 		time64_t expiry = READ_ONCE(key->expiry);
5519d6c8711SEric Biggers 
552b2a4df20SDavid Howells 		if (kflags & ((1 << KEY_FLAG_INVALIDATED) |
553b2a4df20SDavid Howells 			      (1 << KEY_FLAG_REVOKED))) {
554b2a4df20SDavid Howells 			ctx->result = ERR_PTR(-EKEYREVOKED);
555b2a4df20SDavid Howells 			kleave(" = %d [invrev]", ctx->skipped_ret);
556b2a4df20SDavid Howells 			goto skipped;
557b2a4df20SDavid Howells 		}
558b2a4df20SDavid Howells 
559074d5898SBaolin Wang 		if (expiry && ctx->now >= expiry) {
5600b0a8415SDavid Howells 			if (!(ctx->flags & KEYRING_SEARCH_SKIP_EXPIRED))
561b2a4df20SDavid Howells 				ctx->result = ERR_PTR(-EKEYEXPIRED);
562b2a4df20SDavid Howells 			kleave(" = %d [expire]", ctx->skipped_ret);
563b2a4df20SDavid Howells 			goto skipped;
564b2a4df20SDavid Howells 		}
565b2a4df20SDavid Howells 	}
566b2a4df20SDavid Howells 
567b2a4df20SDavid Howells 	/* keys that don't match */
56846291959SDavid Howells 	if (!ctx->match_data.cmp(key, &ctx->match_data)) {
569b2a4df20SDavid Howells 		kleave(" = 0 [!match]");
570b2a4df20SDavid Howells 		return 0;
571b2a4df20SDavid Howells 	}
572b2a4df20SDavid Howells 
573b2a4df20SDavid Howells 	/* key must have search permissions */
574b2a4df20SDavid Howells 	if (!(ctx->flags & KEYRING_SEARCH_NO_CHECK_PERM) &&
575b2a4df20SDavid Howells 	    key_task_permission(make_key_ref(key, ctx->possessed),
576f5895943SDavid Howells 				ctx->cred, KEY_NEED_SEARCH) < 0) {
577b2a4df20SDavid Howells 		ctx->result = ERR_PTR(-EACCES);
578b2a4df20SDavid Howells 		kleave(" = %d [!perm]", ctx->skipped_ret);
579b2a4df20SDavid Howells 		goto skipped;
580b2a4df20SDavid Howells 	}
581b2a4df20SDavid Howells 
582b2a4df20SDavid Howells 	if (ctx->flags & KEYRING_SEARCH_DO_STATE_CHECK) {
583b2a4df20SDavid Howells 		/* we set a different error code if we pass a negative key */
584363b02daSDavid Howells 		if (state < 0) {
585363b02daSDavid Howells 			ctx->result = ERR_PTR(state);
586b2a4df20SDavid Howells 			kleave(" = %d [neg]", ctx->skipped_ret);
587b2a4df20SDavid Howells 			goto skipped;
588b2a4df20SDavid Howells 		}
589b2a4df20SDavid Howells 	}
590b2a4df20SDavid Howells 
591b2a4df20SDavid Howells 	/* Found */
592b2a4df20SDavid Howells 	ctx->result = make_key_ref(key, ctx->possessed);
593b2a4df20SDavid Howells 	kleave(" = 1 [found]");
594b2a4df20SDavid Howells 	return 1;
595b2a4df20SDavid Howells 
596b2a4df20SDavid Howells skipped:
597b2a4df20SDavid Howells 	return ctx->skipped_ret;
598b2a4df20SDavid Howells }
599b2a4df20SDavid Howells 
600b2a4df20SDavid Howells /*
601b2a4df20SDavid Howells  * Search inside a keyring for a key.  We can search by walking to it
602b2a4df20SDavid Howells  * directly based on its index-key or we can iterate over the entire
603b2a4df20SDavid Howells  * tree looking for it, based on the match function.
604b2a4df20SDavid Howells  */
605b2a4df20SDavid Howells static int search_keyring(struct key *keyring, struct keyring_search_context *ctx)
606b2a4df20SDavid Howells {
60746291959SDavid Howells 	if (ctx->match_data.lookup_type == KEYRING_SEARCH_LOOKUP_DIRECT) {
608b2a4df20SDavid Howells 		const void *object;
609b2a4df20SDavid Howells 
610b2a4df20SDavid Howells 		object = assoc_array_find(&keyring->keys,
611b2a4df20SDavid Howells 					  &keyring_assoc_array_ops,
612b2a4df20SDavid Howells 					  &ctx->index_key);
613b2a4df20SDavid Howells 		return object ? ctx->iterator(object, ctx) : 0;
614b2a4df20SDavid Howells 	}
615b2a4df20SDavid Howells 	return assoc_array_iterate(&keyring->keys, ctx->iterator, ctx);
616b2a4df20SDavid Howells }
617b2a4df20SDavid Howells 
618b2a4df20SDavid Howells /*
619b2a4df20SDavid Howells  * Search a tree of keyrings that point to other keyrings up to the maximum
620b2a4df20SDavid Howells  * depth.
621b2a4df20SDavid Howells  */
622b2a4df20SDavid Howells static bool search_nested_keyrings(struct key *keyring,
623b2a4df20SDavid Howells 				   struct keyring_search_context *ctx)
624b2a4df20SDavid Howells {
625b2a4df20SDavid Howells 	struct {
626b2a4df20SDavid Howells 		struct key *keyring;
627b2a4df20SDavid Howells 		struct assoc_array_node *node;
628b2a4df20SDavid Howells 		int slot;
629b2a4df20SDavid Howells 	} stack[KEYRING_SEARCH_MAX_DEPTH];
630b2a4df20SDavid Howells 
631b2a4df20SDavid Howells 	struct assoc_array_shortcut *shortcut;
632b2a4df20SDavid Howells 	struct assoc_array_node *node;
633b2a4df20SDavid Howells 	struct assoc_array_ptr *ptr;
634b2a4df20SDavid Howells 	struct key *key;
635b2a4df20SDavid Howells 	int sp = 0, slot;
636b2a4df20SDavid Howells 
637b2a4df20SDavid Howells 	kenter("{%d},{%s,%s}",
638b2a4df20SDavid Howells 	       keyring->serial,
639b2a4df20SDavid Howells 	       ctx->index_key.type->name,
640b2a4df20SDavid Howells 	       ctx->index_key.description);
641b2a4df20SDavid Howells 
642054f6180SDavid Howells #define STATE_CHECKS (KEYRING_SEARCH_NO_STATE_CHECK | KEYRING_SEARCH_DO_STATE_CHECK)
643054f6180SDavid Howells 	BUG_ON((ctx->flags & STATE_CHECKS) == 0 ||
644054f6180SDavid Howells 	       (ctx->flags & STATE_CHECKS) == STATE_CHECKS);
645054f6180SDavid Howells 
646f771fde8SDavid Howells 	if (ctx->index_key.description)
647f771fde8SDavid Howells 		key_set_index_key(&ctx->index_key);
648f771fde8SDavid Howells 
649b2a4df20SDavid Howells 	/* Check to see if this top-level keyring is what we are looking for
650b2a4df20SDavid Howells 	 * and whether it is valid or not.
651b2a4df20SDavid Howells 	 */
65246291959SDavid Howells 	if (ctx->match_data.lookup_type == KEYRING_SEARCH_LOOKUP_ITERATE ||
653b2a4df20SDavid Howells 	    keyring_compare_object(keyring, &ctx->index_key)) {
654b2a4df20SDavid Howells 		ctx->skipped_ret = 2;
655b2a4df20SDavid Howells 		switch (ctx->iterator(keyring_key_to_ptr(keyring), ctx)) {
656b2a4df20SDavid Howells 		case 1:
657b2a4df20SDavid Howells 			goto found;
658b2a4df20SDavid Howells 		case 2:
659b2a4df20SDavid Howells 			return false;
660b2a4df20SDavid Howells 		default:
661b2a4df20SDavid Howells 			break;
662b2a4df20SDavid Howells 		}
663b2a4df20SDavid Howells 	}
664b2a4df20SDavid Howells 
665b2a4df20SDavid Howells 	ctx->skipped_ret = 0;
666b2a4df20SDavid Howells 
667b2a4df20SDavid Howells 	/* Start processing a new keyring */
668b2a4df20SDavid Howells descend_to_keyring:
669b2a4df20SDavid Howells 	kdebug("descend to %d", keyring->serial);
670b2a4df20SDavid Howells 	if (keyring->flags & ((1 << KEY_FLAG_INVALIDATED) |
671b2a4df20SDavid Howells 			      (1 << KEY_FLAG_REVOKED)))
672b2a4df20SDavid Howells 		goto not_this_keyring;
673b2a4df20SDavid Howells 
674b2a4df20SDavid Howells 	/* Search through the keys in this keyring before its searching its
675b2a4df20SDavid Howells 	 * subtrees.
676b2a4df20SDavid Howells 	 */
677b2a4df20SDavid Howells 	if (search_keyring(keyring, ctx))
678b2a4df20SDavid Howells 		goto found;
679b2a4df20SDavid Howells 
680b2a4df20SDavid Howells 	/* Then manually iterate through the keyrings nested in this one.
681b2a4df20SDavid Howells 	 *
682b2a4df20SDavid Howells 	 * Start from the root node of the index tree.  Because of the way the
683b2a4df20SDavid Howells 	 * hash function has been set up, keyrings cluster on the leftmost
684b2a4df20SDavid Howells 	 * branch of the root node (root slot 0) or in the root node itself.
685b2a4df20SDavid Howells 	 * Non-keyrings avoid the leftmost branch of the root entirely (root
686b2a4df20SDavid Howells 	 * slots 1-15).
687b2a4df20SDavid Howells 	 */
688381f20fcSDavidlohr Bueso 	ptr = READ_ONCE(keyring->keys.root);
689b2a4df20SDavid Howells 	if (!ptr)
690b2a4df20SDavid Howells 		goto not_this_keyring;
691b2a4df20SDavid Howells 
692b2a4df20SDavid Howells 	if (assoc_array_ptr_is_shortcut(ptr)) {
693b2a4df20SDavid Howells 		/* If the root is a shortcut, either the keyring only contains
694b2a4df20SDavid Howells 		 * keyring pointers (everything clusters behind root slot 0) or
695b2a4df20SDavid Howells 		 * doesn't contain any keyring pointers.
696b2a4df20SDavid Howells 		 */
697b2a4df20SDavid Howells 		shortcut = assoc_array_ptr_to_shortcut(ptr);
698b2a4df20SDavid Howells 		if ((shortcut->index_key[0] & ASSOC_ARRAY_FAN_MASK) != 0)
699b2a4df20SDavid Howells 			goto not_this_keyring;
700b2a4df20SDavid Howells 
701381f20fcSDavidlohr Bueso 		ptr = READ_ONCE(shortcut->next_node);
702b2a4df20SDavid Howells 		node = assoc_array_ptr_to_node(ptr);
703b2a4df20SDavid Howells 		goto begin_node;
704b2a4df20SDavid Howells 	}
705b2a4df20SDavid Howells 
706b2a4df20SDavid Howells 	node = assoc_array_ptr_to_node(ptr);
707b2a4df20SDavid Howells 	ptr = node->slots[0];
708b2a4df20SDavid Howells 	if (!assoc_array_ptr_is_meta(ptr))
709b2a4df20SDavid Howells 		goto begin_node;
710b2a4df20SDavid Howells 
711b2a4df20SDavid Howells descend_to_node:
712b2a4df20SDavid Howells 	/* Descend to a more distal node in this keyring's content tree and go
713b2a4df20SDavid Howells 	 * through that.
714b2a4df20SDavid Howells 	 */
715b2a4df20SDavid Howells 	kdebug("descend");
716b2a4df20SDavid Howells 	if (assoc_array_ptr_is_shortcut(ptr)) {
717b2a4df20SDavid Howells 		shortcut = assoc_array_ptr_to_shortcut(ptr);
718381f20fcSDavidlohr Bueso 		ptr = READ_ONCE(shortcut->next_node);
719b2a4df20SDavid Howells 		BUG_ON(!assoc_array_ptr_is_node(ptr));
720b2a4df20SDavid Howells 	}
7219c5e45dfSDavid Howells 	node = assoc_array_ptr_to_node(ptr);
722b2a4df20SDavid Howells 
723b2a4df20SDavid Howells begin_node:
724b2a4df20SDavid Howells 	kdebug("begin_node");
725b2a4df20SDavid Howells 	slot = 0;
726b2a4df20SDavid Howells ascend_to_node:
727b2a4df20SDavid Howells 	/* Go through the slots in a node */
728b2a4df20SDavid Howells 	for (; slot < ASSOC_ARRAY_FAN_OUT; slot++) {
729381f20fcSDavidlohr Bueso 		ptr = READ_ONCE(node->slots[slot]);
730b2a4df20SDavid Howells 
731b2a4df20SDavid Howells 		if (assoc_array_ptr_is_meta(ptr) && node->back_pointer)
732b2a4df20SDavid Howells 			goto descend_to_node;
733b2a4df20SDavid Howells 
734b2a4df20SDavid Howells 		if (!keyring_ptr_is_keyring(ptr))
735b2a4df20SDavid Howells 			continue;
736b2a4df20SDavid Howells 
737b2a4df20SDavid Howells 		key = keyring_ptr_to_key(ptr);
738b2a4df20SDavid Howells 
739b2a4df20SDavid Howells 		if (sp >= KEYRING_SEARCH_MAX_DEPTH) {
740b2a4df20SDavid Howells 			if (ctx->flags & KEYRING_SEARCH_DETECT_TOO_DEEP) {
741b2a4df20SDavid Howells 				ctx->result = ERR_PTR(-ELOOP);
742b2a4df20SDavid Howells 				return false;
743b2a4df20SDavid Howells 			}
744b2a4df20SDavid Howells 			goto not_this_keyring;
745b2a4df20SDavid Howells 		}
746b2a4df20SDavid Howells 
747b2a4df20SDavid Howells 		/* Search a nested keyring */
748b2a4df20SDavid Howells 		if (!(ctx->flags & KEYRING_SEARCH_NO_CHECK_PERM) &&
749b2a4df20SDavid Howells 		    key_task_permission(make_key_ref(key, ctx->possessed),
750f5895943SDavid Howells 					ctx->cred, KEY_NEED_SEARCH) < 0)
751b2a4df20SDavid Howells 			continue;
752b2a4df20SDavid Howells 
753b2a4df20SDavid Howells 		/* stack the current position */
754b2a4df20SDavid Howells 		stack[sp].keyring = keyring;
755b2a4df20SDavid Howells 		stack[sp].node = node;
756b2a4df20SDavid Howells 		stack[sp].slot = slot;
757b2a4df20SDavid Howells 		sp++;
758b2a4df20SDavid Howells 
759b2a4df20SDavid Howells 		/* begin again with the new keyring */
760b2a4df20SDavid Howells 		keyring = key;
761b2a4df20SDavid Howells 		goto descend_to_keyring;
762b2a4df20SDavid Howells 	}
763b2a4df20SDavid Howells 
764b2a4df20SDavid Howells 	/* We've dealt with all the slots in the current node, so now we need
765b2a4df20SDavid Howells 	 * to ascend to the parent and continue processing there.
766b2a4df20SDavid Howells 	 */
767381f20fcSDavidlohr Bueso 	ptr = READ_ONCE(node->back_pointer);
768b2a4df20SDavid Howells 	slot = node->parent_slot;
769b2a4df20SDavid Howells 
770b2a4df20SDavid Howells 	if (ptr && assoc_array_ptr_is_shortcut(ptr)) {
771b2a4df20SDavid Howells 		shortcut = assoc_array_ptr_to_shortcut(ptr);
772381f20fcSDavidlohr Bueso 		ptr = READ_ONCE(shortcut->back_pointer);
773b2a4df20SDavid Howells 		slot = shortcut->parent_slot;
774b2a4df20SDavid Howells 	}
775b2a4df20SDavid Howells 	if (!ptr)
776b2a4df20SDavid Howells 		goto not_this_keyring;
777b2a4df20SDavid Howells 	node = assoc_array_ptr_to_node(ptr);
778b2a4df20SDavid Howells 	slot++;
779b2a4df20SDavid Howells 
780b2a4df20SDavid Howells 	/* If we've ascended to the root (zero backpointer), we must have just
781b2a4df20SDavid Howells 	 * finished processing the leftmost branch rather than the root slots -
782b2a4df20SDavid Howells 	 * so there can't be any more keyrings for us to find.
783b2a4df20SDavid Howells 	 */
784b2a4df20SDavid Howells 	if (node->back_pointer) {
785b2a4df20SDavid Howells 		kdebug("ascend %d", slot);
786b2a4df20SDavid Howells 		goto ascend_to_node;
787b2a4df20SDavid Howells 	}
788b2a4df20SDavid Howells 
789b2a4df20SDavid Howells 	/* The keyring we're looking at was disqualified or didn't contain a
790b2a4df20SDavid Howells 	 * matching key.
791b2a4df20SDavid Howells 	 */
792b2a4df20SDavid Howells not_this_keyring:
793b2a4df20SDavid Howells 	kdebug("not_this_keyring %d", sp);
794b2a4df20SDavid Howells 	if (sp <= 0) {
795b2a4df20SDavid Howells 		kleave(" = false");
796b2a4df20SDavid Howells 		return false;
797b2a4df20SDavid Howells 	}
798b2a4df20SDavid Howells 
799b2a4df20SDavid Howells 	/* Resume the processing of a keyring higher up in the tree */
800b2a4df20SDavid Howells 	sp--;
801b2a4df20SDavid Howells 	keyring = stack[sp].keyring;
802b2a4df20SDavid Howells 	node = stack[sp].node;
803b2a4df20SDavid Howells 	slot = stack[sp].slot + 1;
804b2a4df20SDavid Howells 	kdebug("ascend to %d [%d]", keyring->serial, slot);
805b2a4df20SDavid Howells 	goto ascend_to_node;
806b2a4df20SDavid Howells 
807b2a4df20SDavid Howells 	/* We found a viable match */
808b2a4df20SDavid Howells found:
809b2a4df20SDavid Howells 	key = key_ref_to_ptr(ctx->result);
810b2a4df20SDavid Howells 	key_check(key);
811b2a4df20SDavid Howells 	if (!(ctx->flags & KEYRING_SEARCH_NO_UPDATE_TIME)) {
812074d5898SBaolin Wang 		key->last_used_at = ctx->now;
813074d5898SBaolin Wang 		keyring->last_used_at = ctx->now;
814b2a4df20SDavid Howells 		while (sp > 0)
815074d5898SBaolin Wang 			stack[--sp].keyring->last_used_at = ctx->now;
816b2a4df20SDavid Howells 	}
817b2a4df20SDavid Howells 	kleave(" = true");
818b2a4df20SDavid Howells 	return true;
819b2a4df20SDavid Howells }
820b2a4df20SDavid Howells 
821973c9f4fSDavid Howells /**
822e59428f7SDavid Howells  * keyring_search_rcu - Search a keyring tree for a matching key under RCU
823973c9f4fSDavid Howells  * @keyring_ref: A pointer to the keyring with possession indicator.
8244bdf0bc3SDavid Howells  * @ctx: The keyring search context.
825973c9f4fSDavid Howells  *
826973c9f4fSDavid Howells  * Search the supplied keyring tree for a key that matches the criteria given.
827973c9f4fSDavid Howells  * The root keyring and any linked keyrings must grant Search permission to the
828973c9f4fSDavid Howells  * caller to be searchable and keys can only be found if they too grant Search
829973c9f4fSDavid Howells  * to the caller. The possession flag on the root keyring pointer controls use
830973c9f4fSDavid Howells  * of the possessor bits in permissions checking of the entire tree.  In
831973c9f4fSDavid Howells  * addition, the LSM gets to forbid keyring searches and key matches.
832973c9f4fSDavid Howells  *
833973c9f4fSDavid Howells  * The search is performed as a breadth-then-depth search up to the prescribed
834e59428f7SDavid Howells  * limit (KEYRING_SEARCH_MAX_DEPTH).  The caller must hold the RCU read lock to
835e59428f7SDavid Howells  * prevent keyrings from being destroyed or rearranged whilst they are being
836e59428f7SDavid Howells  * searched.
837973c9f4fSDavid Howells  *
838973c9f4fSDavid Howells  * Keys are matched to the type provided and are then filtered by the match
839973c9f4fSDavid Howells  * function, which is given the description to use in any way it sees fit.  The
840973c9f4fSDavid Howells  * match function may use any attributes of a key that it wishes to to
841973c9f4fSDavid Howells  * determine the match.  Normally the match function from the key type would be
842973c9f4fSDavid Howells  * used.
843973c9f4fSDavid Howells  *
844b2a4df20SDavid Howells  * RCU can be used to prevent the keyring key lists from disappearing without
845b2a4df20SDavid Howells  * the need to take lots of locks.
846973c9f4fSDavid Howells  *
847973c9f4fSDavid Howells  * Returns a pointer to the found key and increments the key usage count if
848973c9f4fSDavid Howells  * successful; -EAGAIN if no matching keys were found, or if expired or revoked
849973c9f4fSDavid Howells  * keys were found; -ENOKEY if only negative keys were found; -ENOTDIR if the
850973c9f4fSDavid Howells  * specified keyring wasn't a keyring.
851973c9f4fSDavid Howells  *
852973c9f4fSDavid Howells  * In the case of a successful return, the possession attribute from
853973c9f4fSDavid Howells  * @keyring_ref is propagated to the returned key reference.
8541da177e4SLinus Torvalds  */
855e59428f7SDavid Howells key_ref_t keyring_search_rcu(key_ref_t keyring_ref,
8564bdf0bc3SDavid Howells 			     struct keyring_search_context *ctx)
8571da177e4SLinus Torvalds {
85831d5a79dSDavid Howells 	struct key *keyring;
8591da177e4SLinus Torvalds 	long err;
860b2a4df20SDavid Howells 
861b2a4df20SDavid Howells 	ctx->iterator = keyring_search_iterator;
862b2a4df20SDavid Howells 	ctx->possessed = is_key_possessed(keyring_ref);
863b2a4df20SDavid Howells 	ctx->result = ERR_PTR(-EAGAIN);
8641da177e4SLinus Torvalds 
865664cceb0SDavid Howells 	keyring = key_ref_to_ptr(keyring_ref);
8661da177e4SLinus Torvalds 	key_check(keyring);
8671da177e4SLinus Torvalds 
8681da177e4SLinus Torvalds 	if (keyring->type != &key_type_keyring)
869b2a4df20SDavid Howells 		return ERR_PTR(-ENOTDIR);
870b2a4df20SDavid Howells 
871b2a4df20SDavid Howells 	if (!(ctx->flags & KEYRING_SEARCH_NO_CHECK_PERM)) {
872f5895943SDavid Howells 		err = key_task_permission(keyring_ref, ctx->cred, KEY_NEED_SEARCH);
873b2a4df20SDavid Howells 		if (err < 0)
874b2a4df20SDavid Howells 			return ERR_PTR(err);
875b2a4df20SDavid Howells 	}
8761da177e4SLinus Torvalds 
877074d5898SBaolin Wang 	ctx->now = ktime_get_real_seconds();
878b2a4df20SDavid Howells 	if (search_nested_keyrings(keyring, ctx))
879b2a4df20SDavid Howells 		__key_get(key_ref_to_ptr(ctx->result));
880b2a4df20SDavid Howells 	return ctx->result;
881a8b17ed0SDavid Howells }
8821da177e4SLinus Torvalds 
883973c9f4fSDavid Howells /**
884973c9f4fSDavid Howells  * keyring_search - Search the supplied keyring tree for a matching key
885973c9f4fSDavid Howells  * @keyring: The root of the keyring tree to be searched.
886973c9f4fSDavid Howells  * @type: The type of keyring we want to find.
887973c9f4fSDavid Howells  * @description: The name of the keyring we want to find.
888973c9f4fSDavid Howells  *
889e59428f7SDavid Howells  * As keyring_search_rcu() above, but using the current task's credentials and
890b2a4df20SDavid Howells  * type's default matching function and preferred search method.
8911da177e4SLinus Torvalds  */
892664cceb0SDavid Howells key_ref_t keyring_search(key_ref_t keyring,
8931da177e4SLinus Torvalds 			 struct key_type *type,
8941da177e4SLinus Torvalds 			 const char *description)
8951da177e4SLinus Torvalds {
8964bdf0bc3SDavid Howells 	struct keyring_search_context ctx = {
8974bdf0bc3SDavid Howells 		.index_key.type		= type,
8984bdf0bc3SDavid Howells 		.index_key.description	= description,
899ede0fa98SEric Biggers 		.index_key.desc_len	= strlen(description),
9004bdf0bc3SDavid Howells 		.cred			= current_cred(),
901c06cfb08SDavid Howells 		.match_data.cmp		= key_default_cmp,
90246291959SDavid Howells 		.match_data.raw_data	= description,
90346291959SDavid Howells 		.match_data.lookup_type	= KEYRING_SEARCH_LOOKUP_DIRECT,
90446291959SDavid Howells 		.flags			= KEYRING_SEARCH_DO_STATE_CHECK,
9054bdf0bc3SDavid Howells 	};
90646291959SDavid Howells 	key_ref_t key;
90746291959SDavid Howells 	int ret;
9084bdf0bc3SDavid Howells 
90946291959SDavid Howells 	if (type->match_preparse) {
91046291959SDavid Howells 		ret = type->match_preparse(&ctx.match_data);
91146291959SDavid Howells 		if (ret < 0)
91246291959SDavid Howells 			return ERR_PTR(ret);
91346291959SDavid Howells 	}
91446291959SDavid Howells 
915e59428f7SDavid Howells 	rcu_read_lock();
916e59428f7SDavid Howells 	key = keyring_search_rcu(keyring, &ctx);
917e59428f7SDavid Howells 	rcu_read_unlock();
91846291959SDavid Howells 
91946291959SDavid Howells 	if (type->match_free)
92046291959SDavid Howells 		type->match_free(&ctx.match_data);
92146291959SDavid Howells 	return key;
922a8b17ed0SDavid Howells }
9231da177e4SLinus Torvalds EXPORT_SYMBOL(keyring_search);
9241da177e4SLinus Torvalds 
9256563c91fSMat Martineau static struct key_restriction *keyring_restriction_alloc(
9266563c91fSMat Martineau 	key_restrict_link_func_t check)
9276563c91fSMat Martineau {
9286563c91fSMat Martineau 	struct key_restriction *keyres =
9296563c91fSMat Martineau 		kzalloc(sizeof(struct key_restriction), GFP_KERNEL);
9306563c91fSMat Martineau 
9316563c91fSMat Martineau 	if (!keyres)
9326563c91fSMat Martineau 		return ERR_PTR(-ENOMEM);
9336563c91fSMat Martineau 
9346563c91fSMat Martineau 	keyres->check = check;
9356563c91fSMat Martineau 
9366563c91fSMat Martineau 	return keyres;
9376563c91fSMat Martineau }
9386563c91fSMat Martineau 
9396563c91fSMat Martineau /*
9406563c91fSMat Martineau  * Semaphore to serialise restriction setup to prevent reference count
9416563c91fSMat Martineau  * cycles through restriction key pointers.
9426563c91fSMat Martineau  */
9436563c91fSMat Martineau static DECLARE_RWSEM(keyring_serialise_restrict_sem);
9446563c91fSMat Martineau 
9456563c91fSMat Martineau /*
9466563c91fSMat Martineau  * Check for restriction cycles that would prevent keyring garbage collection.
9476563c91fSMat Martineau  * keyring_serialise_restrict_sem must be held.
9486563c91fSMat Martineau  */
9496563c91fSMat Martineau static bool keyring_detect_restriction_cycle(const struct key *dest_keyring,
9506563c91fSMat Martineau 					     struct key_restriction *keyres)
9516563c91fSMat Martineau {
9526563c91fSMat Martineau 	while (keyres && keyres->key &&
9536563c91fSMat Martineau 	       keyres->key->type == &key_type_keyring) {
9546563c91fSMat Martineau 		if (keyres->key == dest_keyring)
9556563c91fSMat Martineau 			return true;
9566563c91fSMat Martineau 
9576563c91fSMat Martineau 		keyres = keyres->key->restrict_link;
9586563c91fSMat Martineau 	}
9596563c91fSMat Martineau 
9606563c91fSMat Martineau 	return false;
9616563c91fSMat Martineau }
9626563c91fSMat Martineau 
9636563c91fSMat Martineau /**
9646563c91fSMat Martineau  * keyring_restrict - Look up and apply a restriction to a keyring
9659fd16537SDavid Howells  * @keyring_ref: The keyring to be restricted
9669fd16537SDavid Howells  * @type: The key type that will provide the restriction checker.
9676563c91fSMat Martineau  * @restriction: The restriction options to apply to the keyring
9689fd16537SDavid Howells  *
9699fd16537SDavid Howells  * Look up a keyring and apply a restriction to it.  The restriction is managed
9709fd16537SDavid Howells  * by the specific key type, but can be configured by the options specified in
9719fd16537SDavid Howells  * the restriction string.
9726563c91fSMat Martineau  */
9736563c91fSMat Martineau int keyring_restrict(key_ref_t keyring_ref, const char *type,
9746563c91fSMat Martineau 		     const char *restriction)
9756563c91fSMat Martineau {
9766563c91fSMat Martineau 	struct key *keyring;
9776563c91fSMat Martineau 	struct key_type *restrict_type = NULL;
9786563c91fSMat Martineau 	struct key_restriction *restrict_link;
9796563c91fSMat Martineau 	int ret = 0;
9806563c91fSMat Martineau 
9816563c91fSMat Martineau 	keyring = key_ref_to_ptr(keyring_ref);
9826563c91fSMat Martineau 	key_check(keyring);
9836563c91fSMat Martineau 
9846563c91fSMat Martineau 	if (keyring->type != &key_type_keyring)
9856563c91fSMat Martineau 		return -ENOTDIR;
9866563c91fSMat Martineau 
9876563c91fSMat Martineau 	if (!type) {
9886563c91fSMat Martineau 		restrict_link = keyring_restriction_alloc(restrict_link_reject);
9896563c91fSMat Martineau 	} else {
9906563c91fSMat Martineau 		restrict_type = key_type_lookup(type);
9916563c91fSMat Martineau 
9926563c91fSMat Martineau 		if (IS_ERR(restrict_type))
9936563c91fSMat Martineau 			return PTR_ERR(restrict_type);
9946563c91fSMat Martineau 
9956563c91fSMat Martineau 		if (!restrict_type->lookup_restriction) {
9966563c91fSMat Martineau 			ret = -ENOENT;
9976563c91fSMat Martineau 			goto error;
9986563c91fSMat Martineau 		}
9996563c91fSMat Martineau 
10006563c91fSMat Martineau 		restrict_link = restrict_type->lookup_restriction(restriction);
10016563c91fSMat Martineau 	}
10026563c91fSMat Martineau 
10036563c91fSMat Martineau 	if (IS_ERR(restrict_link)) {
10046563c91fSMat Martineau 		ret = PTR_ERR(restrict_link);
10056563c91fSMat Martineau 		goto error;
10066563c91fSMat Martineau 	}
10076563c91fSMat Martineau 
10086563c91fSMat Martineau 	down_write(&keyring->sem);
10096563c91fSMat Martineau 	down_write(&keyring_serialise_restrict_sem);
10106563c91fSMat Martineau 
10116563c91fSMat Martineau 	if (keyring->restrict_link)
10126563c91fSMat Martineau 		ret = -EEXIST;
10136563c91fSMat Martineau 	else if (keyring_detect_restriction_cycle(keyring, restrict_link))
10146563c91fSMat Martineau 		ret = -EDEADLK;
10156563c91fSMat Martineau 	else
10166563c91fSMat Martineau 		keyring->restrict_link = restrict_link;
10176563c91fSMat Martineau 
10186563c91fSMat Martineau 	up_write(&keyring_serialise_restrict_sem);
10196563c91fSMat Martineau 	up_write(&keyring->sem);
10206563c91fSMat Martineau 
10216563c91fSMat Martineau 	if (ret < 0) {
10226563c91fSMat Martineau 		key_put(restrict_link->key);
10236563c91fSMat Martineau 		kfree(restrict_link);
10246563c91fSMat Martineau 	}
10256563c91fSMat Martineau 
10266563c91fSMat Martineau error:
10276563c91fSMat Martineau 	if (restrict_type)
10286563c91fSMat Martineau 		key_type_put(restrict_type);
10296563c91fSMat Martineau 
10306563c91fSMat Martineau 	return ret;
10316563c91fSMat Martineau }
10326563c91fSMat Martineau EXPORT_SYMBOL(keyring_restrict);
10336563c91fSMat Martineau 
10341da177e4SLinus Torvalds /*
1035b2a4df20SDavid Howells  * Search the given keyring for a key that might be updated.
1036973c9f4fSDavid Howells  *
1037973c9f4fSDavid Howells  * The caller must guarantee that the keyring is a keyring and that the
1038b2a4df20SDavid Howells  * permission is granted to modify the keyring as no check is made here.  The
1039b2a4df20SDavid Howells  * caller must also hold a lock on the keyring semaphore.
1040973c9f4fSDavid Howells  *
1041973c9f4fSDavid Howells  * Returns a pointer to the found key with usage count incremented if
1042b2a4df20SDavid Howells  * successful and returns NULL if not found.  Revoked and invalidated keys are
1043b2a4df20SDavid Howells  * skipped over.
1044973c9f4fSDavid Howells  *
1045973c9f4fSDavid Howells  * If successful, the possession indicator is propagated from the keyring ref
1046973c9f4fSDavid Howells  * to the returned key reference.
10471da177e4SLinus Torvalds  */
1048b2a4df20SDavid Howells key_ref_t find_key_to_update(key_ref_t keyring_ref,
1049e57e8669SDavid Howells 			     const struct keyring_index_key *index_key)
10501da177e4SLinus Torvalds {
1051664cceb0SDavid Howells 	struct key *keyring, *key;
1052b2a4df20SDavid Howells 	const void *object;
10531da177e4SLinus Torvalds 
1054664cceb0SDavid Howells 	keyring = key_ref_to_ptr(keyring_ref);
1055664cceb0SDavid Howells 
1056b2a4df20SDavid Howells 	kenter("{%d},{%s,%s}",
1057b2a4df20SDavid Howells 	       keyring->serial, index_key->type->name, index_key->description);
105876d8aeabSDavid Howells 
1059b2a4df20SDavid Howells 	object = assoc_array_find(&keyring->keys, &keyring_assoc_array_ops,
1060b2a4df20SDavid Howells 				  index_key);
1061b2a4df20SDavid Howells 
1062b2a4df20SDavid Howells 	if (object)
10631da177e4SLinus Torvalds 		goto found;
10641da177e4SLinus Torvalds 
1065b2a4df20SDavid Howells 	kleave(" = NULL");
1066b2a4df20SDavid Howells 	return NULL;
10671da177e4SLinus Torvalds 
10681da177e4SLinus Torvalds found:
1069b2a4df20SDavid Howells 	key = keyring_ptr_to_key(object);
1070b2a4df20SDavid Howells 	if (key->flags & ((1 << KEY_FLAG_INVALIDATED) |
1071b2a4df20SDavid Howells 			  (1 << KEY_FLAG_REVOKED))) {
1072b2a4df20SDavid Howells 		kleave(" = NULL [x]");
1073b2a4df20SDavid Howells 		return NULL;
1074b2a4df20SDavid Howells 	}
1075ccc3e6d9SDavid Howells 	__key_get(key);
1076b2a4df20SDavid Howells 	kleave(" = {%d}", key->serial);
1077b2a4df20SDavid Howells 	return make_key_ref(key, is_key_possessed(keyring_ref));
1078a8b17ed0SDavid Howells }
10791da177e4SLinus Torvalds 
10801da177e4SLinus Torvalds /*
1081973c9f4fSDavid Howells  * Find a keyring with the specified name.
1082973c9f4fSDavid Howells  *
1083237bbd29SEric Biggers  * Only keyrings that have nonzero refcount, are not revoked, and are owned by a
1084237bbd29SEric Biggers  * user in the current user namespace are considered.  If @uid_keyring is %true,
1085237bbd29SEric Biggers  * the keyring additionally must have been allocated as a user or user session
1086237bbd29SEric Biggers  * keyring; otherwise, it must grant Search permission directly to the caller.
1087973c9f4fSDavid Howells  *
1088973c9f4fSDavid Howells  * Returns a pointer to the keyring with the keyring's refcount having being
1089973c9f4fSDavid Howells  * incremented on success.  -ENOKEY is returned if a key could not be found.
10901da177e4SLinus Torvalds  */
1091237bbd29SEric Biggers struct key *find_keyring_by_name(const char *name, bool uid_keyring)
10921da177e4SLinus Torvalds {
10931da177e4SLinus Torvalds 	struct key *keyring;
10941da177e4SLinus Torvalds 	int bucket;
10951da177e4SLinus Torvalds 
10961da177e4SLinus Torvalds 	if (!name)
1097cea7daa3SToshiyuki Okajima 		return ERR_PTR(-EINVAL);
10981da177e4SLinus Torvalds 
10991da177e4SLinus Torvalds 	bucket = keyring_hash(name);
11001da177e4SLinus Torvalds 
11011da177e4SLinus Torvalds 	read_lock(&keyring_name_lock);
11021da177e4SLinus Torvalds 
11031da177e4SLinus Torvalds 	if (keyring_name_hash[bucket].next) {
11041da177e4SLinus Torvalds 		/* search this hash bucket for a keyring with a matching name
11051da177e4SLinus Torvalds 		 * that's readable and that hasn't been revoked */
11061da177e4SLinus Torvalds 		list_for_each_entry(keyring,
11071da177e4SLinus Torvalds 				    &keyring_name_hash[bucket],
1108146aa8b1SDavid Howells 				    name_link
11091da177e4SLinus Torvalds 				    ) {
11109a56c2dbSEric W. Biederman 			if (!kuid_has_mapping(current_user_ns(), keyring->user->uid))
11112ea190d0SSerge E. Hallyn 				continue;
11122ea190d0SSerge E. Hallyn 
111376d8aeabSDavid Howells 			if (test_bit(KEY_FLAG_REVOKED, &keyring->flags))
11141da177e4SLinus Torvalds 				continue;
11151da177e4SLinus Torvalds 
11161da177e4SLinus Torvalds 			if (strcmp(keyring->description, name) != 0)
11171da177e4SLinus Torvalds 				continue;
11181da177e4SLinus Torvalds 
1119237bbd29SEric Biggers 			if (uid_keyring) {
1120237bbd29SEric Biggers 				if (!test_bit(KEY_FLAG_UID_KEYRING,
1121237bbd29SEric Biggers 					      &keyring->flags))
1122237bbd29SEric Biggers 					continue;
1123237bbd29SEric Biggers 			} else {
1124237bbd29SEric Biggers 				if (key_permission(make_key_ref(keyring, 0),
1125f5895943SDavid Howells 						   KEY_NEED_SEARCH) < 0)
11261da177e4SLinus Torvalds 					continue;
1127237bbd29SEric Biggers 			}
11281da177e4SLinus Torvalds 
1129cea7daa3SToshiyuki Okajima 			/* we've got a match but we might end up racing with
1130cea7daa3SToshiyuki Okajima 			 * key_cleanup() if the keyring is currently 'dead'
1131cea7daa3SToshiyuki Okajima 			 * (ie. it has a zero usage count) */
1132fff29291SElena Reshetova 			if (!refcount_inc_not_zero(&keyring->usage))
1133cea7daa3SToshiyuki Okajima 				continue;
1134074d5898SBaolin Wang 			keyring->last_used_at = ktime_get_real_seconds();
1135cea7daa3SToshiyuki Okajima 			goto out;
11361da177e4SLinus Torvalds 		}
11371da177e4SLinus Torvalds 	}
11381da177e4SLinus Torvalds 
11391da177e4SLinus Torvalds 	keyring = ERR_PTR(-ENOKEY);
1140cea7daa3SToshiyuki Okajima out:
1141cea7daa3SToshiyuki Okajima 	read_unlock(&keyring_name_lock);
11421da177e4SLinus Torvalds 	return keyring;
1143a8b17ed0SDavid Howells }
11441da177e4SLinus Torvalds 
1145b2a4df20SDavid Howells static int keyring_detect_cycle_iterator(const void *object,
1146b2a4df20SDavid Howells 					 void *iterator_data)
1147b2a4df20SDavid Howells {
1148b2a4df20SDavid Howells 	struct keyring_search_context *ctx = iterator_data;
1149b2a4df20SDavid Howells 	const struct key *key = keyring_ptr_to_key(object);
1150b2a4df20SDavid Howells 
1151b2a4df20SDavid Howells 	kenter("{%d}", key->serial);
1152b2a4df20SDavid Howells 
1153979e0d74SDavid Howells 	/* We might get a keyring with matching index-key that is nonetheless a
1154979e0d74SDavid Howells 	 * different keyring. */
115546291959SDavid Howells 	if (key != ctx->match_data.raw_data)
1156979e0d74SDavid Howells 		return 0;
1157979e0d74SDavid Howells 
1158b2a4df20SDavid Howells 	ctx->result = ERR_PTR(-EDEADLK);
1159b2a4df20SDavid Howells 	return 1;
1160b2a4df20SDavid Howells }
1161b2a4df20SDavid Howells 
11621da177e4SLinus Torvalds /*
1163973c9f4fSDavid Howells  * See if a cycle will will be created by inserting acyclic tree B in acyclic
1164973c9f4fSDavid Howells  * tree A at the topmost level (ie: as a direct child of A).
1165973c9f4fSDavid Howells  *
1166973c9f4fSDavid Howells  * Since we are adding B to A at the top level, checking for cycles should just
1167973c9f4fSDavid Howells  * be a matter of seeing if node A is somewhere in tree B.
11681da177e4SLinus Torvalds  */
11691da177e4SLinus Torvalds static int keyring_detect_cycle(struct key *A, struct key *B)
11701da177e4SLinus Torvalds {
1171b2a4df20SDavid Howells 	struct keyring_search_context ctx = {
1172b2a4df20SDavid Howells 		.index_key		= A->index_key,
117346291959SDavid Howells 		.match_data.raw_data	= A,
117446291959SDavid Howells 		.match_data.lookup_type = KEYRING_SEARCH_LOOKUP_DIRECT,
1175b2a4df20SDavid Howells 		.iterator		= keyring_detect_cycle_iterator,
117646291959SDavid Howells 		.flags			= (KEYRING_SEARCH_NO_STATE_CHECK |
1177b2a4df20SDavid Howells 					   KEYRING_SEARCH_NO_UPDATE_TIME |
1178b2a4df20SDavid Howells 					   KEYRING_SEARCH_NO_CHECK_PERM |
1179b2a4df20SDavid Howells 					   KEYRING_SEARCH_DETECT_TOO_DEEP),
1180b2a4df20SDavid Howells 	};
11811da177e4SLinus Torvalds 
118276d8aeabSDavid Howells 	rcu_read_lock();
1183b2a4df20SDavid Howells 	search_nested_keyrings(B, &ctx);
118476d8aeabSDavid Howells 	rcu_read_unlock();
1185b2a4df20SDavid Howells 	return PTR_ERR(ctx.result) == -EAGAIN ? 0 : PTR_ERR(ctx.result);
1186f70e2e06SDavid Howells }
1187cab8eb59SDavid Howells 
1188cab8eb59SDavid Howells /*
1189df593ee2SDavid Howells  * Lock keyring for link.
1190df593ee2SDavid Howells  */
1191df593ee2SDavid Howells int __key_link_lock(struct key *keyring,
1192df593ee2SDavid Howells 		    const struct keyring_index_key *index_key)
1193df593ee2SDavid Howells 	__acquires(&keyring->sem)
1194df593ee2SDavid Howells 	__acquires(&keyring_serialise_link_lock)
1195df593ee2SDavid Howells {
1196df593ee2SDavid Howells 	if (keyring->type != &key_type_keyring)
1197df593ee2SDavid Howells 		return -ENOTDIR;
1198df593ee2SDavid Howells 
1199df593ee2SDavid Howells 	down_write(&keyring->sem);
1200df593ee2SDavid Howells 
1201df593ee2SDavid Howells 	/* Serialise link/link calls to prevent parallel calls causing a cycle
1202df593ee2SDavid Howells 	 * when linking two keyring in opposite orders.
1203df593ee2SDavid Howells 	 */
1204df593ee2SDavid Howells 	if (index_key->type == &key_type_keyring)
1205df593ee2SDavid Howells 		mutex_lock(&keyring_serialise_link_lock);
1206df593ee2SDavid Howells 
1207df593ee2SDavid Howells 	return 0;
1208df593ee2SDavid Howells }
1209df593ee2SDavid Howells 
1210df593ee2SDavid Howells /*
1211ed0ac5c7SDavid Howells  * Lock keyrings for move (link/unlink combination).
1212ed0ac5c7SDavid Howells  */
1213ed0ac5c7SDavid Howells int __key_move_lock(struct key *l_keyring, struct key *u_keyring,
1214ed0ac5c7SDavid Howells 		    const struct keyring_index_key *index_key)
1215ed0ac5c7SDavid Howells 	__acquires(&l_keyring->sem)
1216ed0ac5c7SDavid Howells 	__acquires(&u_keyring->sem)
1217ed0ac5c7SDavid Howells 	__acquires(&keyring_serialise_link_lock)
1218ed0ac5c7SDavid Howells {
1219ed0ac5c7SDavid Howells 	if (l_keyring->type != &key_type_keyring ||
1220ed0ac5c7SDavid Howells 	    u_keyring->type != &key_type_keyring)
1221ed0ac5c7SDavid Howells 		return -ENOTDIR;
1222ed0ac5c7SDavid Howells 
1223ed0ac5c7SDavid Howells 	/* We have to be very careful here to take the keyring locks in the
1224ed0ac5c7SDavid Howells 	 * right order, lest we open ourselves to deadlocking against another
1225ed0ac5c7SDavid Howells 	 * move operation.
1226ed0ac5c7SDavid Howells 	 */
1227ed0ac5c7SDavid Howells 	if (l_keyring < u_keyring) {
1228ed0ac5c7SDavid Howells 		down_write(&l_keyring->sem);
1229ed0ac5c7SDavid Howells 		down_write_nested(&u_keyring->sem, 1);
1230ed0ac5c7SDavid Howells 	} else {
1231ed0ac5c7SDavid Howells 		down_write(&u_keyring->sem);
1232ed0ac5c7SDavid Howells 		down_write_nested(&l_keyring->sem, 1);
1233ed0ac5c7SDavid Howells 	}
1234ed0ac5c7SDavid Howells 
1235ed0ac5c7SDavid Howells 	/* Serialise link/link calls to prevent parallel calls causing a cycle
1236ed0ac5c7SDavid Howells 	 * when linking two keyring in opposite orders.
1237ed0ac5c7SDavid Howells 	 */
1238ed0ac5c7SDavid Howells 	if (index_key->type == &key_type_keyring)
1239ed0ac5c7SDavid Howells 		mutex_lock(&keyring_serialise_link_lock);
1240ed0ac5c7SDavid Howells 
1241ed0ac5c7SDavid Howells 	return 0;
1242ed0ac5c7SDavid Howells }
1243ed0ac5c7SDavid Howells 
1244ed0ac5c7SDavid Howells /*
1245973c9f4fSDavid Howells  * Preallocate memory so that a key can be linked into to a keyring.
12461da177e4SLinus Torvalds  */
1247b2a4df20SDavid Howells int __key_link_begin(struct key *keyring,
1248b2a4df20SDavid Howells 		     const struct keyring_index_key *index_key,
1249b2a4df20SDavid Howells 		     struct assoc_array_edit **_edit)
12501da177e4SLinus Torvalds {
1251b2a4df20SDavid Howells 	struct assoc_array_edit *edit;
1252b2a4df20SDavid Howells 	int ret;
12531da177e4SLinus Torvalds 
125416feef43SDavid Howells 	kenter("%d,%s,%s,",
1255b2a4df20SDavid Howells 	       keyring->serial, index_key->type->name, index_key->description);
1256b2a4df20SDavid Howells 
1257b2a4df20SDavid Howells 	BUG_ON(index_key->desc_len == 0);
1258df593ee2SDavid Howells 	BUG_ON(*_edit != NULL);
1259f70e2e06SDavid Howells 
1260df593ee2SDavid Howells 	*_edit = NULL;
1261f70e2e06SDavid Howells 
12621da177e4SLinus Torvalds 	ret = -EKEYREVOKED;
126376d8aeabSDavid Howells 	if (test_bit(KEY_FLAG_REVOKED, &keyring->flags))
1264df593ee2SDavid Howells 		goto error;
12651da177e4SLinus Torvalds 
1266b2a4df20SDavid Howells 	/* Create an edit script that will insert/replace the key in the
1267b2a4df20SDavid Howells 	 * keyring tree.
1268b2a4df20SDavid Howells 	 */
1269b2a4df20SDavid Howells 	edit = assoc_array_insert(&keyring->keys,
1270b2a4df20SDavid Howells 				  &keyring_assoc_array_ops,
1271b2a4df20SDavid Howells 				  index_key,
1272b2a4df20SDavid Howells 				  NULL);
1273b2a4df20SDavid Howells 	if (IS_ERR(edit)) {
1274b2a4df20SDavid Howells 		ret = PTR_ERR(edit);
1275df593ee2SDavid Howells 		goto error;
1276034faeb9SDavid Howells 	}
1277034faeb9SDavid Howells 
1278034faeb9SDavid Howells 	/* If we're not replacing a link in-place then we're going to need some
1279034faeb9SDavid Howells 	 * extra quota.
1280034faeb9SDavid Howells 	 */
1281034faeb9SDavid Howells 	if (!edit->dead_leaf) {
1282034faeb9SDavid Howells 		ret = key_payload_reserve(keyring,
1283034faeb9SDavid Howells 					  keyring->datalen + KEYQUOTA_LINK_BYTES);
1284034faeb9SDavid Howells 		if (ret < 0)
1285034faeb9SDavid Howells 			goto error_cancel;
12861da177e4SLinus Torvalds 	}
12871da177e4SLinus Torvalds 
1288b2a4df20SDavid Howells 	*_edit = edit;
1289f70e2e06SDavid Howells 	kleave(" = 0");
1290f70e2e06SDavid Howells 	return 0;
12911da177e4SLinus Torvalds 
1292034faeb9SDavid Howells error_cancel:
1293034faeb9SDavid Howells 	assoc_array_cancel_edit(edit);
1294df593ee2SDavid Howells error:
1295f70e2e06SDavid Howells 	kleave(" = %d", ret);
1296f70e2e06SDavid Howells 	return ret;
1297f70e2e06SDavid Howells }
12981da177e4SLinus Torvalds 
1299f70e2e06SDavid Howells /*
1300973c9f4fSDavid Howells  * Check already instantiated keys aren't going to be a problem.
1301973c9f4fSDavid Howells  *
1302973c9f4fSDavid Howells  * The caller must have called __key_link_begin(). Don't need to call this for
1303973c9f4fSDavid Howells  * keys that were created since __key_link_begin() was called.
1304f70e2e06SDavid Howells  */
1305f70e2e06SDavid Howells int __key_link_check_live_key(struct key *keyring, struct key *key)
1306f70e2e06SDavid Howells {
1307f70e2e06SDavid Howells 	if (key->type == &key_type_keyring)
1308f70e2e06SDavid Howells 		/* check that we aren't going to create a cycle by linking one
1309f70e2e06SDavid Howells 		 * keyring to another */
1310f70e2e06SDavid Howells 		return keyring_detect_cycle(keyring, key);
1311f70e2e06SDavid Howells 	return 0;
1312f70e2e06SDavid Howells }
13131da177e4SLinus Torvalds 
1314f70e2e06SDavid Howells /*
1315973c9f4fSDavid Howells  * Link a key into to a keyring.
1316973c9f4fSDavid Howells  *
1317973c9f4fSDavid Howells  * Must be called with __key_link_begin() having being called.  Discards any
1318973c9f4fSDavid Howells  * already extant link to matching key if there is one, so that each keyring
1319973c9f4fSDavid Howells  * holds at most one link to any given key of a particular type+description
1320973c9f4fSDavid Howells  * combination.
1321f70e2e06SDavid Howells  */
1322b2a4df20SDavid Howells void __key_link(struct key *key, struct assoc_array_edit **_edit)
1323f70e2e06SDavid Howells {
1324ccc3e6d9SDavid Howells 	__key_get(key);
1325b2a4df20SDavid Howells 	assoc_array_insert_set_object(*_edit, keyring_key_to_ptr(key));
1326b2a4df20SDavid Howells 	assoc_array_apply_edit(*_edit);
1327b2a4df20SDavid Howells 	*_edit = NULL;
1328f70e2e06SDavid Howells }
1329f70e2e06SDavid Howells 
1330f70e2e06SDavid Howells /*
1331973c9f4fSDavid Howells  * Finish linking a key into to a keyring.
1332973c9f4fSDavid Howells  *
1333973c9f4fSDavid Howells  * Must be called with __key_link_begin() having being called.
1334f70e2e06SDavid Howells  */
133516feef43SDavid Howells void __key_link_end(struct key *keyring,
133616feef43SDavid Howells 		    const struct keyring_index_key *index_key,
1337b2a4df20SDavid Howells 		    struct assoc_array_edit *edit)
1338f70e2e06SDavid Howells 	__releases(&keyring->sem)
13393be59f74SDavid Howells 	__releases(&keyring_serialise_link_lock)
1340f70e2e06SDavid Howells {
134116feef43SDavid Howells 	BUG_ON(index_key->type == NULL);
1342b2a4df20SDavid Howells 	kenter("%d,%s,", keyring->serial, index_key->type->name);
1343f70e2e06SDavid Howells 
1344ca4da5ddSColin Ian King 	if (edit) {
1345ca4da5ddSColin Ian King 		if (!edit->dead_leaf) {
1346f70e2e06SDavid Howells 			key_payload_reserve(keyring,
1347b2a4df20SDavid Howells 				keyring->datalen - KEYQUOTA_LINK_BYTES);
1348ca4da5ddSColin Ian King 		}
1349b2a4df20SDavid Howells 		assoc_array_cancel_edit(edit);
1350f70e2e06SDavid Howells 	}
1351f70e2e06SDavid Howells 	up_write(&keyring->sem);
1352df593ee2SDavid Howells 
1353df593ee2SDavid Howells 	if (index_key->type == &key_type_keyring)
1354df593ee2SDavid Howells 		mutex_unlock(&keyring_serialise_link_lock);
1355f70e2e06SDavid Howells }
1356f70e2e06SDavid Howells 
13575ac7eaceSDavid Howells /*
13585ac7eaceSDavid Howells  * Check addition of keys to restricted keyrings.
13595ac7eaceSDavid Howells  */
13605ac7eaceSDavid Howells static int __key_link_check_restriction(struct key *keyring, struct key *key)
13615ac7eaceSDavid Howells {
13622b6aa412SMat Martineau 	if (!keyring->restrict_link || !keyring->restrict_link->check)
13635ac7eaceSDavid Howells 		return 0;
13642b6aa412SMat Martineau 	return keyring->restrict_link->check(keyring, key->type, &key->payload,
13652b6aa412SMat Martineau 					     keyring->restrict_link->key);
13665ac7eaceSDavid Howells }
13675ac7eaceSDavid Howells 
1368973c9f4fSDavid Howells /**
1369973c9f4fSDavid Howells  * key_link - Link a key to a keyring
1370973c9f4fSDavid Howells  * @keyring: The keyring to make the link in.
1371973c9f4fSDavid Howells  * @key: The key to link to.
1372973c9f4fSDavid Howells  *
1373973c9f4fSDavid Howells  * Make a link in a keyring to a key, such that the keyring holds a reference
1374973c9f4fSDavid Howells  * on that key and the key can potentially be found by searching that keyring.
1375973c9f4fSDavid Howells  *
1376973c9f4fSDavid Howells  * This function will write-lock the keyring's semaphore and will consume some
1377973c9f4fSDavid Howells  * of the user's key data quota to hold the link.
1378973c9f4fSDavid Howells  *
1379973c9f4fSDavid Howells  * Returns 0 if successful, -ENOTDIR if the keyring isn't a keyring,
1380973c9f4fSDavid Howells  * -EKEYREVOKED if the keyring has been revoked, -ENFILE if the keyring is
1381973c9f4fSDavid Howells  * full, -EDQUOT if there is insufficient key data quota remaining to add
1382973c9f4fSDavid Howells  * another link or -ENOMEM if there's insufficient memory.
1383973c9f4fSDavid Howells  *
1384973c9f4fSDavid Howells  * It is assumed that the caller has checked that it is permitted for a link to
1385973c9f4fSDavid Howells  * be made (the keyring should have Write permission and the key Link
1386973c9f4fSDavid Howells  * permission).
13871da177e4SLinus Torvalds  */
13881da177e4SLinus Torvalds int key_link(struct key *keyring, struct key *key)
13891da177e4SLinus Torvalds {
1390df593ee2SDavid Howells 	struct assoc_array_edit *edit = NULL;
13911da177e4SLinus Torvalds 	int ret;
13921da177e4SLinus Torvalds 
1393fff29291SElena Reshetova 	kenter("{%d,%d}", keyring->serial, refcount_read(&keyring->usage));
1394b2a4df20SDavid Howells 
13951da177e4SLinus Torvalds 	key_check(keyring);
13961da177e4SLinus Torvalds 	key_check(key);
13971da177e4SLinus Torvalds 
1398df593ee2SDavid Howells 	ret = __key_link_lock(keyring, &key->index_key);
1399df593ee2SDavid Howells 	if (ret < 0)
1400df593ee2SDavid Howells 		goto error;
1401df593ee2SDavid Howells 
1402b2a4df20SDavid Howells 	ret = __key_link_begin(keyring, &key->index_key, &edit);
1403df593ee2SDavid Howells 	if (ret < 0)
1404df593ee2SDavid Howells 		goto error_end;
1405df593ee2SDavid Howells 
1406fff29291SElena Reshetova 	kdebug("begun {%d,%d}", keyring->serial, refcount_read(&keyring->usage));
14075ac7eaceSDavid Howells 	ret = __key_link_check_restriction(keyring, key);
14085ac7eaceSDavid Howells 	if (ret == 0)
1409f70e2e06SDavid Howells 		ret = __key_link_check_live_key(keyring, key);
1410f70e2e06SDavid Howells 	if (ret == 0)
1411b2a4df20SDavid Howells 		__key_link(key, &edit);
14121da177e4SLinus Torvalds 
1413df593ee2SDavid Howells error_end:
1414df593ee2SDavid Howells 	__key_link_end(keyring, &key->index_key, edit);
1415df593ee2SDavid Howells error:
1416fff29291SElena Reshetova 	kleave(" = %d {%d,%d}", ret, keyring->serial, refcount_read(&keyring->usage));
14171da177e4SLinus Torvalds 	return ret;
1418f70e2e06SDavid Howells }
14191da177e4SLinus Torvalds EXPORT_SYMBOL(key_link);
14201da177e4SLinus Torvalds 
1421eb0f68cbSDavid Howells /*
1422eb0f68cbSDavid Howells  * Lock a keyring for unlink.
1423eb0f68cbSDavid Howells  */
1424eb0f68cbSDavid Howells static int __key_unlink_lock(struct key *keyring)
1425eb0f68cbSDavid Howells 	__acquires(&keyring->sem)
1426eb0f68cbSDavid Howells {
1427eb0f68cbSDavid Howells 	if (keyring->type != &key_type_keyring)
1428eb0f68cbSDavid Howells 		return -ENOTDIR;
1429eb0f68cbSDavid Howells 
1430eb0f68cbSDavid Howells 	down_write(&keyring->sem);
1431eb0f68cbSDavid Howells 	return 0;
1432eb0f68cbSDavid Howells }
1433eb0f68cbSDavid Howells 
1434eb0f68cbSDavid Howells /*
1435eb0f68cbSDavid Howells  * Begin the process of unlinking a key from a keyring.
1436eb0f68cbSDavid Howells  */
1437eb0f68cbSDavid Howells static int __key_unlink_begin(struct key *keyring, struct key *key,
1438eb0f68cbSDavid Howells 			      struct assoc_array_edit **_edit)
1439eb0f68cbSDavid Howells {
1440eb0f68cbSDavid Howells 	struct assoc_array_edit *edit;
1441eb0f68cbSDavid Howells 
1442eb0f68cbSDavid Howells 	BUG_ON(*_edit != NULL);
1443eb0f68cbSDavid Howells 
1444eb0f68cbSDavid Howells 	edit = assoc_array_delete(&keyring->keys, &keyring_assoc_array_ops,
1445eb0f68cbSDavid Howells 				  &key->index_key);
1446eb0f68cbSDavid Howells 	if (IS_ERR(edit))
1447eb0f68cbSDavid Howells 		return PTR_ERR(edit);
1448eb0f68cbSDavid Howells 
1449eb0f68cbSDavid Howells 	if (!edit)
1450eb0f68cbSDavid Howells 		return -ENOENT;
1451eb0f68cbSDavid Howells 
1452eb0f68cbSDavid Howells 	*_edit = edit;
1453eb0f68cbSDavid Howells 	return 0;
1454eb0f68cbSDavid Howells }
1455eb0f68cbSDavid Howells 
1456eb0f68cbSDavid Howells /*
1457eb0f68cbSDavid Howells  * Apply an unlink change.
1458eb0f68cbSDavid Howells  */
1459eb0f68cbSDavid Howells static void __key_unlink(struct key *keyring, struct key *key,
1460eb0f68cbSDavid Howells 			 struct assoc_array_edit **_edit)
1461eb0f68cbSDavid Howells {
1462eb0f68cbSDavid Howells 	assoc_array_apply_edit(*_edit);
1463eb0f68cbSDavid Howells 	*_edit = NULL;
1464eb0f68cbSDavid Howells 	key_payload_reserve(keyring, keyring->datalen - KEYQUOTA_LINK_BYTES);
1465eb0f68cbSDavid Howells }
1466eb0f68cbSDavid Howells 
1467eb0f68cbSDavid Howells /*
1468eb0f68cbSDavid Howells  * Finish unlinking a key from to a keyring.
1469eb0f68cbSDavid Howells  */
1470eb0f68cbSDavid Howells static void __key_unlink_end(struct key *keyring,
1471eb0f68cbSDavid Howells 			     struct key *key,
1472eb0f68cbSDavid Howells 			     struct assoc_array_edit *edit)
1473eb0f68cbSDavid Howells 	__releases(&keyring->sem)
1474eb0f68cbSDavid Howells {
1475eb0f68cbSDavid Howells 	if (edit)
1476eb0f68cbSDavid Howells 		assoc_array_cancel_edit(edit);
1477eb0f68cbSDavid Howells 	up_write(&keyring->sem);
1478eb0f68cbSDavid Howells }
1479eb0f68cbSDavid Howells 
1480973c9f4fSDavid Howells /**
1481973c9f4fSDavid Howells  * key_unlink - Unlink the first link to a key from a keyring.
1482973c9f4fSDavid Howells  * @keyring: The keyring to remove the link from.
1483973c9f4fSDavid Howells  * @key: The key the link is to.
1484973c9f4fSDavid Howells  *
1485973c9f4fSDavid Howells  * Remove a link from a keyring to a key.
1486973c9f4fSDavid Howells  *
1487973c9f4fSDavid Howells  * This function will write-lock the keyring's semaphore.
1488973c9f4fSDavid Howells  *
1489973c9f4fSDavid Howells  * Returns 0 if successful, -ENOTDIR if the keyring isn't a keyring, -ENOENT if
1490973c9f4fSDavid Howells  * the key isn't linked to by the keyring or -ENOMEM if there's insufficient
1491973c9f4fSDavid Howells  * memory.
1492973c9f4fSDavid Howells  *
1493973c9f4fSDavid Howells  * It is assumed that the caller has checked that it is permitted for a link to
1494973c9f4fSDavid Howells  * be removed (the keyring should have Write permission; no permissions are
1495973c9f4fSDavid Howells  * required on the key).
14961da177e4SLinus Torvalds  */
14971da177e4SLinus Torvalds int key_unlink(struct key *keyring, struct key *key)
14981da177e4SLinus Torvalds {
1499eb0f68cbSDavid Howells 	struct assoc_array_edit *edit = NULL;
1500b2a4df20SDavid Howells 	int ret;
15011da177e4SLinus Torvalds 
15021da177e4SLinus Torvalds 	key_check(keyring);
15031da177e4SLinus Torvalds 	key_check(key);
15041da177e4SLinus Torvalds 
1505eb0f68cbSDavid Howells 	ret = __key_unlink_lock(keyring);
1506eb0f68cbSDavid Howells 	if (ret < 0)
1507eb0f68cbSDavid Howells 		return ret;
15081da177e4SLinus Torvalds 
1509eb0f68cbSDavid Howells 	ret = __key_unlink_begin(keyring, key, &edit);
1510eb0f68cbSDavid Howells 	if (ret == 0)
1511eb0f68cbSDavid Howells 		__key_unlink(keyring, key, &edit);
1512eb0f68cbSDavid Howells 	__key_unlink_end(keyring, key, edit);
1513b2a4df20SDavid Howells 	return ret;
1514a8b17ed0SDavid Howells }
15151da177e4SLinus Torvalds EXPORT_SYMBOL(key_unlink);
15161da177e4SLinus Torvalds 
1517973c9f4fSDavid Howells /**
1518ed0ac5c7SDavid Howells  * key_move - Move a key from one keyring to another
1519ed0ac5c7SDavid Howells  * @key: The key to move
1520ed0ac5c7SDavid Howells  * @from_keyring: The keyring to remove the link from.
1521ed0ac5c7SDavid Howells  * @to_keyring: The keyring to make the link in.
1522ed0ac5c7SDavid Howells  * @flags: Qualifying flags, such as KEYCTL_MOVE_EXCL.
1523ed0ac5c7SDavid Howells  *
1524ed0ac5c7SDavid Howells  * Make a link in @to_keyring to a key, such that the keyring holds a reference
1525ed0ac5c7SDavid Howells  * on that key and the key can potentially be found by searching that keyring
1526ed0ac5c7SDavid Howells  * whilst simultaneously removing a link to the key from @from_keyring.
1527ed0ac5c7SDavid Howells  *
1528ed0ac5c7SDavid Howells  * This function will write-lock both keyring's semaphores and will consume
1529ed0ac5c7SDavid Howells  * some of the user's key data quota to hold the link on @to_keyring.
1530ed0ac5c7SDavid Howells  *
1531ed0ac5c7SDavid Howells  * Returns 0 if successful, -ENOTDIR if either keyring isn't a keyring,
1532ed0ac5c7SDavid Howells  * -EKEYREVOKED if either keyring has been revoked, -ENFILE if the second
1533ed0ac5c7SDavid Howells  * keyring is full, -EDQUOT if there is insufficient key data quota remaining
1534ed0ac5c7SDavid Howells  * to add another link or -ENOMEM if there's insufficient memory.  If
1535ed0ac5c7SDavid Howells  * KEYCTL_MOVE_EXCL is set, then -EEXIST will be returned if there's already a
1536ed0ac5c7SDavid Howells  * matching key in @to_keyring.
1537ed0ac5c7SDavid Howells  *
1538ed0ac5c7SDavid Howells  * It is assumed that the caller has checked that it is permitted for a link to
1539ed0ac5c7SDavid Howells  * be made (the keyring should have Write permission and the key Link
1540ed0ac5c7SDavid Howells  * permission).
1541ed0ac5c7SDavid Howells  */
1542ed0ac5c7SDavid Howells int key_move(struct key *key,
1543ed0ac5c7SDavid Howells 	     struct key *from_keyring,
1544ed0ac5c7SDavid Howells 	     struct key *to_keyring,
1545ed0ac5c7SDavid Howells 	     unsigned int flags)
1546ed0ac5c7SDavid Howells {
1547ed0ac5c7SDavid Howells 	struct assoc_array_edit *from_edit = NULL, *to_edit = NULL;
1548ed0ac5c7SDavid Howells 	int ret;
1549ed0ac5c7SDavid Howells 
1550ed0ac5c7SDavid Howells 	kenter("%d,%d,%d", key->serial, from_keyring->serial, to_keyring->serial);
1551ed0ac5c7SDavid Howells 
1552ed0ac5c7SDavid Howells 	if (from_keyring == to_keyring)
1553ed0ac5c7SDavid Howells 		return 0;
1554ed0ac5c7SDavid Howells 
1555ed0ac5c7SDavid Howells 	key_check(key);
1556ed0ac5c7SDavid Howells 	key_check(from_keyring);
1557ed0ac5c7SDavid Howells 	key_check(to_keyring);
1558ed0ac5c7SDavid Howells 
1559ed0ac5c7SDavid Howells 	ret = __key_move_lock(from_keyring, to_keyring, &key->index_key);
1560ed0ac5c7SDavid Howells 	if (ret < 0)
1561ed0ac5c7SDavid Howells 		goto out;
1562ed0ac5c7SDavid Howells 	ret = __key_unlink_begin(from_keyring, key, &from_edit);
1563ed0ac5c7SDavid Howells 	if (ret < 0)
1564ed0ac5c7SDavid Howells 		goto error;
1565ed0ac5c7SDavid Howells 	ret = __key_link_begin(to_keyring, &key->index_key, &to_edit);
1566ed0ac5c7SDavid Howells 	if (ret < 0)
1567ed0ac5c7SDavid Howells 		goto error;
1568ed0ac5c7SDavid Howells 
1569ed0ac5c7SDavid Howells 	ret = -EEXIST;
1570ed0ac5c7SDavid Howells 	if (to_edit->dead_leaf && (flags & KEYCTL_MOVE_EXCL))
1571ed0ac5c7SDavid Howells 		goto error;
1572ed0ac5c7SDavid Howells 
1573ed0ac5c7SDavid Howells 	ret = __key_link_check_restriction(to_keyring, key);
1574ed0ac5c7SDavid Howells 	if (ret < 0)
1575ed0ac5c7SDavid Howells 		goto error;
1576ed0ac5c7SDavid Howells 	ret = __key_link_check_live_key(to_keyring, key);
1577ed0ac5c7SDavid Howells 	if (ret < 0)
1578ed0ac5c7SDavid Howells 		goto error;
1579ed0ac5c7SDavid Howells 
1580ed0ac5c7SDavid Howells 	__key_unlink(from_keyring, key, &from_edit);
1581ed0ac5c7SDavid Howells 	__key_link(key, &to_edit);
1582ed0ac5c7SDavid Howells error:
1583ed0ac5c7SDavid Howells 	__key_link_end(to_keyring, &key->index_key, to_edit);
1584ed0ac5c7SDavid Howells 	__key_unlink_end(from_keyring, key, from_edit);
1585ed0ac5c7SDavid Howells out:
1586ed0ac5c7SDavid Howells 	kleave(" = %d", ret);
1587ed0ac5c7SDavid Howells 	return ret;
1588ed0ac5c7SDavid Howells }
1589ed0ac5c7SDavid Howells EXPORT_SYMBOL(key_move);
1590ed0ac5c7SDavid Howells 
1591ed0ac5c7SDavid Howells /**
1592973c9f4fSDavid Howells  * keyring_clear - Clear a keyring
1593973c9f4fSDavid Howells  * @keyring: The keyring to clear.
1594973c9f4fSDavid Howells  *
1595973c9f4fSDavid Howells  * Clear the contents of the specified keyring.
1596973c9f4fSDavid Howells  *
1597973c9f4fSDavid Howells  * Returns 0 if successful or -ENOTDIR if the keyring isn't a keyring.
15981da177e4SLinus Torvalds  */
15991da177e4SLinus Torvalds int keyring_clear(struct key *keyring)
16001da177e4SLinus Torvalds {
1601b2a4df20SDavid Howells 	struct assoc_array_edit *edit;
160276d8aeabSDavid Howells 	int ret;
16031da177e4SLinus Torvalds 
1604b2a4df20SDavid Howells 	if (keyring->type != &key_type_keyring)
1605b2a4df20SDavid Howells 		return -ENOTDIR;
1606b2a4df20SDavid Howells 
16071da177e4SLinus Torvalds 	down_write(&keyring->sem);
16081da177e4SLinus Torvalds 
1609b2a4df20SDavid Howells 	edit = assoc_array_clear(&keyring->keys, &keyring_assoc_array_ops);
1610b2a4df20SDavid Howells 	if (IS_ERR(edit)) {
1611b2a4df20SDavid Howells 		ret = PTR_ERR(edit);
1612b2a4df20SDavid Howells 	} else {
1613b2a4df20SDavid Howells 		if (edit)
1614b2a4df20SDavid Howells 			assoc_array_apply_edit(edit);
1615b2a4df20SDavid Howells 		key_payload_reserve(keyring, 0);
16161da177e4SLinus Torvalds 		ret = 0;
16171da177e4SLinus Torvalds 	}
16181da177e4SLinus Torvalds 
1619b2a4df20SDavid Howells 	up_write(&keyring->sem);
16201da177e4SLinus Torvalds 	return ret;
1621a8b17ed0SDavid Howells }
16221da177e4SLinus Torvalds EXPORT_SYMBOL(keyring_clear);
162331204ed9SDavid Howells 
162431204ed9SDavid Howells /*
1625973c9f4fSDavid Howells  * Dispose of the links from a revoked keyring.
1626973c9f4fSDavid Howells  *
1627973c9f4fSDavid Howells  * This is called with the key sem write-locked.
162831204ed9SDavid Howells  */
162931204ed9SDavid Howells static void keyring_revoke(struct key *keyring)
163031204ed9SDavid Howells {
1631b2a4df20SDavid Howells 	struct assoc_array_edit *edit;
1632f0641cbaSDavid Howells 
1633b2a4df20SDavid Howells 	edit = assoc_array_clear(&keyring->keys, &keyring_assoc_array_ops);
1634b2a4df20SDavid Howells 	if (!IS_ERR(edit)) {
1635b2a4df20SDavid Howells 		if (edit)
1636b2a4df20SDavid Howells 			assoc_array_apply_edit(edit);
163731204ed9SDavid Howells 		key_payload_reserve(keyring, 0);
163831204ed9SDavid Howells 	}
1639a8b17ed0SDavid Howells }
16405d135440SDavid Howells 
164162fe3182SDavid Howells static bool keyring_gc_select_iterator(void *object, void *iterator_data)
1642b2a4df20SDavid Howells {
1643b2a4df20SDavid Howells 	struct key *key = keyring_ptr_to_key(object);
1644074d5898SBaolin Wang 	time64_t *limit = iterator_data;
1645b2a4df20SDavid Howells 
1646b2a4df20SDavid Howells 	if (key_is_dead(key, *limit))
1647b2a4df20SDavid Howells 		return false;
1648b2a4df20SDavid Howells 	key_get(key);
1649b2a4df20SDavid Howells 	return true;
1650b2a4df20SDavid Howells }
1651b2a4df20SDavid Howells 
165262fe3182SDavid Howells static int keyring_gc_check_iterator(const void *object, void *iterator_data)
165362fe3182SDavid Howells {
165462fe3182SDavid Howells 	const struct key *key = keyring_ptr_to_key(object);
1655074d5898SBaolin Wang 	time64_t *limit = iterator_data;
165662fe3182SDavid Howells 
165762fe3182SDavid Howells 	key_check(key);
165862fe3182SDavid Howells 	return key_is_dead(key, *limit);
165962fe3182SDavid Howells }
166062fe3182SDavid Howells 
16615d135440SDavid Howells /*
166262fe3182SDavid Howells  * Garbage collect pointers from a keyring.
1663973c9f4fSDavid Howells  *
166462fe3182SDavid Howells  * Not called with any locks held.  The keyring's key struct will not be
166562fe3182SDavid Howells  * deallocated under us as only our caller may deallocate it.
16665d135440SDavid Howells  */
1667074d5898SBaolin Wang void keyring_gc(struct key *keyring, time64_t limit)
16685d135440SDavid Howells {
166962fe3182SDavid Howells 	int result;
16705d135440SDavid Howells 
167162fe3182SDavid Howells 	kenter("%x{%s}", keyring->serial, keyring->description ?: "");
167262fe3182SDavid Howells 
167362fe3182SDavid Howells 	if (keyring->flags & ((1 << KEY_FLAG_INVALIDATED) |
167462fe3182SDavid Howells 			      (1 << KEY_FLAG_REVOKED)))
167562fe3182SDavid Howells 		goto dont_gc;
167662fe3182SDavid Howells 
167762fe3182SDavid Howells 	/* scan the keyring looking for dead keys */
167862fe3182SDavid Howells 	rcu_read_lock();
167962fe3182SDavid Howells 	result = assoc_array_iterate(&keyring->keys,
168062fe3182SDavid Howells 				     keyring_gc_check_iterator, &limit);
168162fe3182SDavid Howells 	rcu_read_unlock();
168262fe3182SDavid Howells 	if (result == true)
168362fe3182SDavid Howells 		goto do_gc;
168462fe3182SDavid Howells 
168562fe3182SDavid Howells dont_gc:
168662fe3182SDavid Howells 	kleave(" [no gc]");
168762fe3182SDavid Howells 	return;
168862fe3182SDavid Howells 
168962fe3182SDavid Howells do_gc:
16905d135440SDavid Howells 	down_write(&keyring->sem);
1691b2a4df20SDavid Howells 	assoc_array_gc(&keyring->keys, &keyring_assoc_array_ops,
169262fe3182SDavid Howells 		       keyring_gc_select_iterator, &limit);
16935d135440SDavid Howells 	up_write(&keyring->sem);
169462fe3182SDavid Howells 	kleave(" [gc]");
16955d135440SDavid Howells }
16962b6aa412SMat Martineau 
16972b6aa412SMat Martineau /*
16982b6aa412SMat Martineau  * Garbage collect restriction pointers from a keyring.
16992b6aa412SMat Martineau  *
17002b6aa412SMat Martineau  * Keyring restrictions are associated with a key type, and must be cleaned
17012b6aa412SMat Martineau  * up if the key type is unregistered. The restriction is altered to always
17022b6aa412SMat Martineau  * reject additional keys so a keyring cannot be opened up by unregistering
17032b6aa412SMat Martineau  * a key type.
17042b6aa412SMat Martineau  *
17052b6aa412SMat Martineau  * Not called with any keyring locks held. The keyring's key struct will not
17062b6aa412SMat Martineau  * be deallocated under us as only our caller may deallocate it.
17072b6aa412SMat Martineau  *
17082b6aa412SMat Martineau  * The caller is required to hold key_types_sem and dead_type->sem. This is
17092b6aa412SMat Martineau  * fulfilled by key_gc_keytype() holding the locks on behalf of
17102b6aa412SMat Martineau  * key_garbage_collector(), which it invokes on a workqueue.
17112b6aa412SMat Martineau  */
17122b6aa412SMat Martineau void keyring_restriction_gc(struct key *keyring, struct key_type *dead_type)
17132b6aa412SMat Martineau {
17142b6aa412SMat Martineau 	struct key_restriction *keyres;
17152b6aa412SMat Martineau 
17162b6aa412SMat Martineau 	kenter("%x{%s}", keyring->serial, keyring->description ?: "");
17172b6aa412SMat Martineau 
17182b6aa412SMat Martineau 	/*
17192b6aa412SMat Martineau 	 * keyring->restrict_link is only assigned at key allocation time
17202b6aa412SMat Martineau 	 * or with the key type locked, so the only values that could be
17212b6aa412SMat Martineau 	 * concurrently assigned to keyring->restrict_link are for key
17222b6aa412SMat Martineau 	 * types other than dead_type. Given this, it's ok to check
17232b6aa412SMat Martineau 	 * the key type before acquiring keyring->sem.
17242b6aa412SMat Martineau 	 */
17252b6aa412SMat Martineau 	if (!dead_type || !keyring->restrict_link ||
17262b6aa412SMat Martineau 	    keyring->restrict_link->keytype != dead_type) {
17272b6aa412SMat Martineau 		kleave(" [no restriction gc]");
17282b6aa412SMat Martineau 		return;
17292b6aa412SMat Martineau 	}
17302b6aa412SMat Martineau 
17312b6aa412SMat Martineau 	/* Lock the keyring to ensure that a link is not in progress */
17322b6aa412SMat Martineau 	down_write(&keyring->sem);
17332b6aa412SMat Martineau 
17342b6aa412SMat Martineau 	keyres = keyring->restrict_link;
17352b6aa412SMat Martineau 
17362b6aa412SMat Martineau 	keyres->check = restrict_link_reject;
17372b6aa412SMat Martineau 
17382b6aa412SMat Martineau 	key_put(keyres->key);
17392b6aa412SMat Martineau 	keyres->key = NULL;
17402b6aa412SMat Martineau 	keyres->keytype = NULL;
17412b6aa412SMat Martineau 
17422b6aa412SMat Martineau 	up_write(&keyring->sem);
17432b6aa412SMat Martineau 
17442b6aa412SMat Martineau 	kleave(" [restriction gc]");
17452b6aa412SMat Martineau }
1746