request_key.c 12.0 KB
Newer Older
L
Linus Torvalds 已提交
1 2
/* request_key.c: request a key from userspace
 *
3
 * Copyright (C) 2004-5 Red Hat, Inc. All Rights Reserved.
L
Linus Torvalds 已提交
4 5 6 7 8 9
 * Written by David Howells (dhowells@redhat.com)
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version
 * 2 of the License, or (at your option) any later version.
10 11
 *
 * See Documentation/keys-request-key.txt
L
Linus Torvalds 已提交
12 13 14 15 16 17
 */

#include <linux/module.h>
#include <linux/sched.h>
#include <linux/kmod.h>
#include <linux/err.h>
18
#include <linux/keyctl.h>
L
Linus Torvalds 已提交
19 20 21 22 23 24 25 26 27 28 29 30 31
#include "internal.h"

struct key_construction {
	struct list_head	link;	/* link in construction queue */
	struct key		*key;	/* key being constructed */
};

/* when waiting for someone else's keys, you get added to this */
DECLARE_WAIT_QUEUE_HEAD(request_key_conswq);

/*****************************************************************************/
/*
 * request userspace finish the construction of a key
32
 * - execute "/sbin/request-key <op> <key> <uid> <gid> <keyring> <keyring> <keyring>"
L
Linus Torvalds 已提交
33
 */
34 35 36
static int call_sbin_request_key(struct key *key,
				 struct key *authkey,
				 const char *op)
L
Linus Torvalds 已提交
37 38 39
{
	struct task_struct *tsk = current;
	key_serial_t prkey, sskey;
40 41
	struct key *keyring;
	char *argv[9], *envp[3], uid_str[12], gid_str[12];
L
Linus Torvalds 已提交
42
	char key_str[12], keyring_str[3][12];
43
	char desc[20];
44 45
	int ret, i;

46
	kenter("{%d},{%d},%s", key->serial, authkey->serial, op);
47

48 49 50
	/* allocate a new session keyring */
	sprintf(desc, "_req.%u", key->serial);

51 52
	keyring = keyring_alloc(desc, current->fsuid, current->fsgid,
				current, 1, NULL);
53 54 55
	if (IS_ERR(keyring)) {
		ret = PTR_ERR(keyring);
		goto error_alloc;
56
	}
L
Linus Torvalds 已提交
57

58 59 60 61 62
	/* attach the auth key to the session keyring */
	ret = __key_link(keyring, authkey);
	if (ret < 0)
		goto error_link;

L
Linus Torvalds 已提交
63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
	/* record the UID and GID */
	sprintf(uid_str, "%d", current->fsuid);
	sprintf(gid_str, "%d", current->fsgid);

	/* we say which key is under construction */
	sprintf(key_str, "%d", key->serial);

	/* we specify the process's default keyrings */
	sprintf(keyring_str[0], "%d",
		tsk->thread_keyring ? tsk->thread_keyring->serial : 0);

	prkey = 0;
	if (tsk->signal->process_keyring)
		prkey = tsk->signal->process_keyring->serial;

78
	sprintf(keyring_str[1], "%d", prkey);
L
Linus Torvalds 已提交
79

80 81 82 83 84 85
	if (tsk->signal->session_keyring) {
		rcu_read_lock();
		sskey = rcu_dereference(tsk->signal->session_keyring)->serial;
		rcu_read_unlock();
	}
	else {
L
Linus Torvalds 已提交
86
		sskey = tsk->user->session_keyring->serial;
87
	}
L
Linus Torvalds 已提交
88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109

	sprintf(keyring_str[2], "%d", sskey);

	/* set up a minimal environment */
	i = 0;
	envp[i++] = "HOME=/";
	envp[i++] = "PATH=/sbin:/bin:/usr/sbin:/usr/bin";
	envp[i] = NULL;

	/* set up the argument list */
	i = 0;
	argv[i++] = "/sbin/request-key";
	argv[i++] = (char *) op;
	argv[i++] = key_str;
	argv[i++] = uid_str;
	argv[i++] = gid_str;
	argv[i++] = keyring_str[0];
	argv[i++] = keyring_str[1];
	argv[i++] = keyring_str[2];
	argv[i] = NULL;

	/* do it */
110
	ret = call_usermodehelper_keys(argv[0], argv, envp, keyring, 1);
111

112 113
error_link:
	key_put(keyring);
114

115
error_alloc:
116 117
	kleave(" = %d", ret);
	return ret;
L
Linus Torvalds 已提交
118

119
} /* end call_sbin_request_key() */
L
Linus Torvalds 已提交
120 121 122 123 124 125 126 127 128 129 130

/*****************************************************************************/
/*
 * call out to userspace for the key
 * - called with the construction sem held, but the sem is dropped here
 * - we ignore program failure and go on key status instead
 */
static struct key *__request_key_construction(struct key_type *type,
					      const char *description,
					      const char *callout_info)
{
131
	request_key_actor_t actor;
L
Linus Torvalds 已提交
132 133
	struct key_construction cons;
	struct timespec now;
134
	struct key *key, *authkey;
135
	int ret, negated;
L
Linus Torvalds 已提交
136

137 138
	kenter("%s,%s,%s", type->name, description, callout_info);

L
Linus Torvalds 已提交
139 140
	/* create a key and add it to the queue */
	key = key_alloc(type, description,
141 142
			current->fsuid, current->fsgid,
			current, KEY_POS_ALL, 0);
L
Linus Torvalds 已提交
143 144 145
	if (IS_ERR(key))
		goto alloc_failed;

146
	set_bit(KEY_FLAG_USER_CONSTRUCT, &key->flags);
L
Linus Torvalds 已提交
147 148 149 150 151 152 153

	cons.key = key;
	list_add_tail(&cons.link, &key->user->consq);

	/* we drop the construction sem here on behalf of the caller */
	up_write(&key_construction_sem);

154 155 156 157 158 159 160 161
	/* allocate an authorisation key */
	authkey = request_key_auth_new(key, callout_info);
	if (IS_ERR(authkey)) {
		ret = PTR_ERR(authkey);
		authkey = NULL;
		goto alloc_authkey_failed;
	}

L
Linus Torvalds 已提交
162
	/* make the call */
163 164 165 166
	actor = call_sbin_request_key;
	if (type->request_key)
		actor = type->request_key;
	ret = actor(key, authkey, "create");
L
Linus Torvalds 已提交
167 168 169 170 171
	if (ret < 0)
		goto request_failed;

	/* if the key wasn't instantiated, then we want to give an error */
	ret = -ENOKEY;
172
	if (!test_bit(KEY_FLAG_INSTANTIATED, &key->flags))
L
Linus Torvalds 已提交
173 174
		goto request_failed;

175 176 177
	key_revoke(authkey);
	key_put(authkey);

L
Linus Torvalds 已提交
178 179 180 181 182
	down_write(&key_construction_sem);
	list_del(&cons.link);
	up_write(&key_construction_sem);

	/* also give an error if the key was negatively instantiated */
183
check_not_negative:
184
	if (test_bit(KEY_FLAG_NEGATIVE, &key->flags)) {
L
Linus Torvalds 已提交
185 186 187 188
		key_put(key);
		key = ERR_PTR(-ENOKEY);
	}

189
out:
190
	kleave(" = %p", key);
L
Linus Torvalds 已提交
191 192
	return key;

193 194 195 196 197
request_failed:
	key_revoke(authkey);
	key_put(authkey);

alloc_authkey_failed:
L
Linus Torvalds 已提交
198 199 200 201
	/* it wasn't instantiated
	 * - remove from construction queue
	 * - mark the key as dead
	 */
202
	negated = 0;
L
Linus Torvalds 已提交
203 204 205 206 207
	down_write(&key_construction_sem);

	list_del(&cons.link);

	/* check it didn't get instantiated between the check and the down */
208 209 210 211
	if (!test_bit(KEY_FLAG_INSTANTIATED, &key->flags)) {
		set_bit(KEY_FLAG_NEGATIVE, &key->flags);
		set_bit(KEY_FLAG_INSTANTIATED, &key->flags);
		negated = 1;
L
Linus Torvalds 已提交
212 213
	}

214 215
	clear_bit(KEY_FLAG_USER_CONSTRUCT, &key->flags);

L
Linus Torvalds 已提交
216 217
	up_write(&key_construction_sem);

218
	if (!negated)
L
Linus Torvalds 已提交
219 220 221 222 223 224 225 226 227 228
		goto check_not_negative; /* surprisingly, the key got
					  * instantiated */

	/* set the timeout and store in the session keyring if we can */
	now = current_kernel_time();
	key->expiry = now.tv_sec + key_negative_timeout;

	if (current->signal->session_keyring) {
		struct key *keyring;

229 230
		rcu_read_lock();
		keyring = rcu_dereference(current->signal->session_keyring);
L
Linus Torvalds 已提交
231
		atomic_inc(&keyring->usage);
232
		rcu_read_unlock();
L
Linus Torvalds 已提交
233 234 235 236 237 238 239 240 241 242 243 244 245

		key_link(keyring, key);
		key_put(keyring);
	}

	key_put(key);

	/* notify anyone who was waiting */
	wake_up_all(&request_key_conswq);

	key = ERR_PTR(ret);
	goto out;

246
alloc_failed:
L
Linus Torvalds 已提交
247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267
	up_write(&key_construction_sem);
	goto out;

} /* end __request_key_construction() */

/*****************************************************************************/
/*
 * call out to userspace to request the key
 * - we check the construction queue first to see if an appropriate key is
 *   already being constructed by userspace
 */
static struct key *request_key_construction(struct key_type *type,
					    const char *description,
					    struct key_user *user,
					    const char *callout_info)
{
	struct key_construction *pcons;
	struct key *key, *ckey;

	DECLARE_WAITQUEUE(myself, current);

268 269 270
	kenter("%s,%s,{%d},%s",
	       type->name, description, user->uid, callout_info);

L
Linus Torvalds 已提交
271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286
	/* see if there's such a key under construction already */
	down_write(&key_construction_sem);

	list_for_each_entry(pcons, &user->consq, link) {
		ckey = pcons->key;

		if (ckey->type != type)
			continue;

		if (type->match(ckey, description))
			goto found_key_under_construction;
	}

	/* see about getting userspace to construct the key */
	key = __request_key_construction(type, description, callout_info);
 error:
287
	kleave(" = %p", key);
L
Linus Torvalds 已提交
288 289 290 291 292 293 294 295 296 297 298 299 300
	return key;

	/* someone else has the same key under construction
	 * - we want to keep an eye on their key
	 */
 found_key_under_construction:
	atomic_inc(&ckey->usage);
	up_write(&key_construction_sem);

	/* wait for the key to be completed one way or another */
	add_wait_queue(&request_key_conswq, &myself);

	for (;;) {
301
		set_current_state(TASK_INTERRUPTIBLE);
302
		if (!test_bit(KEY_FLAG_USER_CONSTRUCT, &ckey->flags))
L
Linus Torvalds 已提交
303
			break;
304 305
		if (signal_pending(current))
			break;
L
Linus Torvalds 已提交
306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322
		schedule();
	}

	set_current_state(TASK_RUNNING);
	remove_wait_queue(&request_key_conswq, &myself);

	/* we'll need to search this process's keyrings to see if the key is
	 * now there since we can't automatically assume it's also available
	 * there */
	key_put(ckey);
	ckey = NULL;

	key = NULL; /* request a retry */
	goto error;

} /* end request_key_construction() */

323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380
/*****************************************************************************/
/*
 * link a freshly minted key to an appropriate destination keyring
 */
static void request_key_link(struct key *key, struct key *dest_keyring)
{
	struct task_struct *tsk = current;
	struct key *drop = NULL;

	kenter("{%d},%p", key->serial, dest_keyring);

	/* find the appropriate keyring */
	if (!dest_keyring) {
		switch (tsk->jit_keyring) {
		case KEY_REQKEY_DEFL_DEFAULT:
		case KEY_REQKEY_DEFL_THREAD_KEYRING:
			dest_keyring = tsk->thread_keyring;
			if (dest_keyring)
				break;

		case KEY_REQKEY_DEFL_PROCESS_KEYRING:
			dest_keyring = tsk->signal->process_keyring;
			if (dest_keyring)
				break;

		case KEY_REQKEY_DEFL_SESSION_KEYRING:
			rcu_read_lock();
			dest_keyring = key_get(
				rcu_dereference(tsk->signal->session_keyring));
			rcu_read_unlock();
			drop = dest_keyring;

			if (dest_keyring)
				break;

		case KEY_REQKEY_DEFL_USER_SESSION_KEYRING:
			dest_keyring = current->user->session_keyring;
			break;

		case KEY_REQKEY_DEFL_USER_KEYRING:
			dest_keyring = current->user->uid_keyring;
			break;

		case KEY_REQKEY_DEFL_GROUP_KEYRING:
		default:
			BUG();
		}
	}

	/* and attach the key to it */
	key_link(dest_keyring, key);

	key_put(drop);

	kleave("");

} /* end request_key_link() */

L
Linus Torvalds 已提交
381 382 383 384 385
/*****************************************************************************/
/*
 * request a key
 * - search the process's keyrings
 * - check the list of keys being created or updated
386 387
 * - call out to userspace for a key if supplementary info was provided
 * - cache the key in an appropriate keyring
L
Linus Torvalds 已提交
388
 */
389 390 391 392
struct key *request_key_and_link(struct key_type *type,
				 const char *description,
				 const char *callout_info,
				 struct key *dest_keyring)
L
Linus Torvalds 已提交
393 394 395
{
	struct key_user *user;
	struct key *key;
396
	key_ref_t key_ref;
L
Linus Torvalds 已提交
397

398 399 400
	kenter("%s,%s,%s,%p",
	       type->name, description, callout_info, dest_keyring);

L
Linus Torvalds 已提交
401
	/* search all the process keyrings for a key */
402 403
	key_ref = search_process_keyrings(type, description, type->match,
					  current);
L
Linus Torvalds 已提交
404

405 406 407 408 409 410 411 412 413
	kdebug("search 1: %p", key_ref);

	if (!IS_ERR(key_ref)) {
		key = key_ref_to_ptr(key_ref);
	}
	else if (PTR_ERR(key_ref) != -EAGAIN) {
		key = ERR_PTR(PTR_ERR(key_ref));
	}
	else  {
L
Linus Torvalds 已提交
414 415 416 417 418 419 420 421
		/* the search failed, but the keyrings were searchable, so we
		 * should consult userspace if we can */
		key = ERR_PTR(-ENOKEY);
		if (!callout_info)
			goto error;

		/* - get hold of the user's construction queue */
		user = key_user_lookup(current->fsuid);
422 423 424
		if (!user)
			goto nomem;

425
		for (;;) {
426 427
			if (signal_pending(current))
				goto interrupted;
L
Linus Torvalds 已提交
428 429 430 431 432 433 434 435 436 437

			/* ask userspace (returns NULL if it waited on a key
			 * being constructed) */
			key = request_key_construction(type, description,
						       user, callout_info);
			if (key)
				break;

			/* someone else made the key we want, so we need to
			 * search again as it might now be available to us */
438 439 440 441 442
			key_ref = search_process_keyrings(type, description,
							  type->match,
							  current);

			kdebug("search 2: %p", key_ref);
443

444 445 446 447 448 449 450 451 452 453
			if (!IS_ERR(key_ref)) {
				key = key_ref_to_ptr(key_ref);
				break;
			}

			if (PTR_ERR(key_ref) != -EAGAIN) {
				key = ERR_PTR(PTR_ERR(key_ref));
				break;
			}
		}
L
Linus Torvalds 已提交
454 455

		key_user_put(user);
456 457

		/* link the new key into the appropriate keyring */
458
		if (!IS_ERR(key))
459
			request_key_link(key, dest_keyring);
L
Linus Torvalds 已提交
460 461
	}

462 463
error:
	kleave(" = %p", key);
L
Linus Torvalds 已提交
464 465
	return key;

466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489
nomem:
	key = ERR_PTR(-ENOMEM);
	goto error;

interrupted:
	key_user_put(user);
	key = ERR_PTR(-EINTR);
	goto error;

} /* end request_key_and_link() */

/*****************************************************************************/
/*
 * request a key
 * - search the process's keyrings
 * - check the list of keys being created or updated
 * - call out to userspace for a key if supplementary info was provided
 */
struct key *request_key(struct key_type *type,
			const char *description,
			const char *callout_info)
{
	return request_key_and_link(type, description, callout_info, NULL);

L
Linus Torvalds 已提交
490 491 492
} /* end request_key() */

EXPORT_SYMBOL(request_key);