blob: a58f712605d83105b6d32e1b966436a454331a90 [file] [log] [blame]
David Howells973c9f42011-01-20 16:38:33 +00001/* Manage a process's keyrings
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 *
David Howells69664cf2008-04-29 01:01:31 -07003 * Copyright (C) 2004-2005, 2008 Red Hat, Inc. All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 * Written by David Howells (dhowells@redhat.com)
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 */
11
12#include <linux/module.h>
13#include <linux/init.h>
14#include <linux/sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/keyctl.h>
16#include <linux/fs.h>
17#include <linux/err.h>
Ingo Molnarbb003072006-03-22 00:09:14 -080018#include <linux/mutex.h>
David Howellsee18d642009-09-02 09:14:21 +010019#include <linux/security.h>
Serge E. Hallyn1d1e9752009-02-26 18:27:38 -060020#include <linux/user_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <asm/uaccess.h>
22#include "internal.h"
23
David Howells973c9f42011-01-20 16:38:33 +000024/* Session keyring create vs join semaphore */
Ingo Molnarbb003072006-03-22 00:09:14 -080025static DEFINE_MUTEX(key_session_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
David Howells973c9f42011-01-20 16:38:33 +000027/* User keyring creation semaphore */
David Howells69664cf2008-04-29 01:01:31 -070028static DEFINE_MUTEX(key_user_keyring_mutex);
29
David Howells973c9f42011-01-20 16:38:33 +000030/* The root user's tracking struct */
Linus Torvalds1da177e2005-04-16 15:20:36 -070031struct key_user root_key_user = {
32 .usage = ATOMIC_INIT(3),
David Howells76181c12007-10-16 23:29:46 -070033 .cons_lock = __MUTEX_INITIALIZER(root_key_user.cons_lock),
Peter Zijlstra6cfd76a2006-12-06 20:37:22 -080034 .lock = __SPIN_LOCK_UNLOCKED(root_key_user.lock),
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 .nkeys = ATOMIC_INIT(2),
36 .nikeys = ATOMIC_INIT(2),
Eric W. Biederman9a56c2d2012-02-08 07:53:04 -080037 .uid = GLOBAL_ROOT_UID,
Linus Torvalds1da177e2005-04-16 15:20:36 -070038};
39
Linus Torvalds1da177e2005-04-16 15:20:36 -070040/*
David Howells973c9f42011-01-20 16:38:33 +000041 * Install the user and user session keyrings for the current process's UID.
Linus Torvalds1da177e2005-04-16 15:20:36 -070042 */
David Howells8bbf49762008-11-14 10:39:14 +110043int install_user_keyrings(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070044{
David Howellsd84f4f92008-11-14 10:39:23 +110045 struct user_struct *user;
46 const struct cred *cred;
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 struct key *uid_keyring, *session_keyring;
48 char buf[20];
49 int ret;
Eric W. Biederman9a56c2d2012-02-08 07:53:04 -080050 uid_t uid;
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
David Howellsd84f4f92008-11-14 10:39:23 +110052 cred = current_cred();
53 user = cred->user;
Eric W. Biederman9a56c2d2012-02-08 07:53:04 -080054 uid = from_kuid(cred->user_ns, user->uid);
David Howellsd84f4f92008-11-14 10:39:23 +110055
Eric W. Biederman9a56c2d2012-02-08 07:53:04 -080056 kenter("%p{%u}", user, uid);
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
David Howells69664cf2008-04-29 01:01:31 -070058 if (user->uid_keyring) {
59 kleave(" = 0 [exist]");
60 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 }
62
David Howells69664cf2008-04-29 01:01:31 -070063 mutex_lock(&key_user_keyring_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 ret = 0;
65
David Howells69664cf2008-04-29 01:01:31 -070066 if (!user->uid_keyring) {
67 /* get the UID-specific keyring
68 * - there may be one in existence already as it may have been
69 * pinned by a session, but the user_struct pointing to it
70 * may have been destroyed by setuid */
Eric W. Biederman9a56c2d2012-02-08 07:53:04 -080071 sprintf(buf, "_uid.%u", uid);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
David Howells69664cf2008-04-29 01:01:31 -070073 uid_keyring = find_keyring_by_name(buf, true);
74 if (IS_ERR(uid_keyring)) {
Eric W. Biederman9a56c2d2012-02-08 07:53:04 -080075 uid_keyring = keyring_alloc(buf, user->uid, INVALID_GID,
David Howellsd84f4f92008-11-14 10:39:23 +110076 cred, KEY_ALLOC_IN_QUOTA,
David Howells69664cf2008-04-29 01:01:31 -070077 NULL);
78 if (IS_ERR(uid_keyring)) {
79 ret = PTR_ERR(uid_keyring);
80 goto error;
81 }
82 }
83
84 /* get a default session keyring (which might also exist
85 * already) */
Eric W. Biederman9a56c2d2012-02-08 07:53:04 -080086 sprintf(buf, "_uid_ses.%u", uid);
David Howells69664cf2008-04-29 01:01:31 -070087
88 session_keyring = find_keyring_by_name(buf, true);
89 if (IS_ERR(session_keyring)) {
90 session_keyring =
Eric W. Biederman9a56c2d2012-02-08 07:53:04 -080091 keyring_alloc(buf, user->uid, INVALID_GID,
David Howellsd84f4f92008-11-14 10:39:23 +110092 cred, KEY_ALLOC_IN_QUOTA, NULL);
David Howells69664cf2008-04-29 01:01:31 -070093 if (IS_ERR(session_keyring)) {
94 ret = PTR_ERR(session_keyring);
95 goto error_release;
96 }
97
98 /* we install a link from the user session keyring to
99 * the user keyring */
100 ret = key_link(session_keyring, uid_keyring);
101 if (ret < 0)
102 goto error_release_both;
103 }
104
105 /* install the keyrings */
106 user->uid_keyring = uid_keyring;
107 user->session_keyring = session_keyring;
108 }
109
110 mutex_unlock(&key_user_keyring_mutex);
111 kleave(" = 0");
112 return 0;
113
114error_release_both:
115 key_put(session_keyring);
116error_release:
117 key_put(uid_keyring);
118error:
119 mutex_unlock(&key_user_keyring_mutex);
120 kleave(" = %d", ret);
121 return ret;
122}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124/*
David Howells973c9f42011-01-20 16:38:33 +0000125 * Install a fresh thread keyring directly to new credentials. This keyring is
126 * allowed to overrun the quota.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 */
David Howellsd84f4f92008-11-14 10:39:23 +1100128int install_thread_keyring_to_cred(struct cred *new)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129{
David Howellsd84f4f92008-11-14 10:39:23 +1100130 struct key *keyring;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
David Howellsd84f4f92008-11-14 10:39:23 +1100132 keyring = keyring_alloc("_tid", new->uid, new->gid, new,
133 KEY_ALLOC_QUOTA_OVERRUN, NULL);
134 if (IS_ERR(keyring))
135 return PTR_ERR(keyring);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
David Howellsd84f4f92008-11-14 10:39:23 +1100137 new->thread_keyring = keyring;
138 return 0;
139}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141/*
David Howells973c9f42011-01-20 16:38:33 +0000142 * Install a fresh thread keyring, discarding the old one.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 */
David Howellsd84f4f92008-11-14 10:39:23 +1100144static int install_thread_keyring(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145{
David Howellsd84f4f92008-11-14 10:39:23 +1100146 struct cred *new;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 int ret;
148
David Howellsd84f4f92008-11-14 10:39:23 +1100149 new = prepare_creds();
150 if (!new)
151 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
David Howellsd84f4f92008-11-14 10:39:23 +1100153 BUG_ON(new->thread_keyring);
154
155 ret = install_thread_keyring_to_cred(new);
156 if (ret < 0) {
157 abort_creds(new);
158 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 }
160
David Howellsd84f4f92008-11-14 10:39:23 +1100161 return commit_creds(new);
162}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
David Howellsd84f4f92008-11-14 10:39:23 +1100164/*
David Howells973c9f42011-01-20 16:38:33 +0000165 * Install a process keyring directly to a credentials struct.
166 *
167 * Returns -EEXIST if there was already a process keyring, 0 if one installed,
168 * and other value on any other error
David Howellsd84f4f92008-11-14 10:39:23 +1100169 */
170int install_process_keyring_to_cred(struct cred *new)
171{
172 struct key *keyring;
173 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
David Howellsd84f4f92008-11-14 10:39:23 +1100175 if (new->tgcred->process_keyring)
176 return -EEXIST;
177
178 keyring = keyring_alloc("_pid", new->uid, new->gid,
179 new, KEY_ALLOC_QUOTA_OVERRUN, NULL);
180 if (IS_ERR(keyring))
181 return PTR_ERR(keyring);
182
183 spin_lock_irq(&new->tgcred->lock);
184 if (!new->tgcred->process_keyring) {
185 new->tgcred->process_keyring = keyring;
186 keyring = NULL;
187 ret = 0;
188 } else {
189 ret = -EEXIST;
190 }
191 spin_unlock_irq(&new->tgcred->lock);
192 key_put(keyring);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 return ret;
David Howellsd84f4f92008-11-14 10:39:23 +1100194}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196/*
David Howells973c9f42011-01-20 16:38:33 +0000197 * Make sure a process keyring is installed for the current process. The
198 * existing process keyring is not replaced.
199 *
200 * Returns 0 if there is a process keyring by the end of this function, some
201 * error otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 */
David Howellsd84f4f92008-11-14 10:39:23 +1100203static int install_process_keyring(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204{
David Howellsd84f4f92008-11-14 10:39:23 +1100205 struct cred *new;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 int ret;
207
David Howellsd84f4f92008-11-14 10:39:23 +1100208 new = prepare_creds();
209 if (!new)
210 return -ENOMEM;
David Howells1a26feb2006-04-10 22:54:26 -0700211
David Howellsd84f4f92008-11-14 10:39:23 +1100212 ret = install_process_keyring_to_cred(new);
213 if (ret < 0) {
214 abort_creds(new);
Andi Kleen27d63792010-10-28 13:16:13 +0100215 return ret != -EEXIST ? ret : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 }
217
David Howellsd84f4f92008-11-14 10:39:23 +1100218 return commit_creds(new);
219}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221/*
David Howells973c9f42011-01-20 16:38:33 +0000222 * Install a session keyring directly to a credentials struct.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 */
Oleg Nesterov685bfd22010-05-26 14:43:00 -0700224int install_session_keyring_to_cred(struct cred *cred, struct key *keyring)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225{
David Howells7e047ef2006-06-26 00:24:50 -0700226 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 struct key *old;
David Howells1a26feb2006-04-10 22:54:26 -0700228
229 might_sleep();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230
231 /* create an empty session keyring */
232 if (!keyring) {
David Howells7e047ef2006-06-26 00:24:50 -0700233 flags = KEY_ALLOC_QUOTA_OVERRUN;
David Howellsd84f4f92008-11-14 10:39:23 +1100234 if (cred->tgcred->session_keyring)
David Howells7e047ef2006-06-26 00:24:50 -0700235 flags = KEY_ALLOC_IN_QUOTA;
236
David Howellsd84f4f92008-11-14 10:39:23 +1100237 keyring = keyring_alloc("_ses", cred->uid, cred->gid,
238 cred, flags, NULL);
David Howells1a26feb2006-04-10 22:54:26 -0700239 if (IS_ERR(keyring))
240 return PTR_ERR(keyring);
David Howellsd84f4f92008-11-14 10:39:23 +1100241 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 atomic_inc(&keyring->usage);
243 }
244
245 /* install the keyring */
David Howellsd84f4f92008-11-14 10:39:23 +1100246 spin_lock_irq(&cred->tgcred->lock);
247 old = cred->tgcred->session_keyring;
248 rcu_assign_pointer(cred->tgcred->session_keyring, keyring);
249 spin_unlock_irq(&cred->tgcred->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
David Howells1a26feb2006-04-10 22:54:26 -0700251 /* we're using RCU on the pointer, but there's no point synchronising
252 * on it if it didn't previously point to anything */
253 if (old) {
254 synchronize_rcu();
255 key_put(old);
256 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
David Howells1a26feb2006-04-10 22:54:26 -0700258 return 0;
David Howellsd84f4f92008-11-14 10:39:23 +1100259}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261/*
David Howells973c9f42011-01-20 16:38:33 +0000262 * Install a session keyring, discarding the old one. If a keyring is not
263 * supplied, an empty one is invented.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 */
David Howellsd84f4f92008-11-14 10:39:23 +1100265static int install_session_keyring(struct key *keyring)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266{
David Howellsd84f4f92008-11-14 10:39:23 +1100267 struct cred *new;
268 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
David Howellsd84f4f92008-11-14 10:39:23 +1100270 new = prepare_creds();
271 if (!new)
272 return -ENOMEM;
David Howellsb5f545c2006-01-08 01:02:47 -0800273
David Howells995995372011-08-22 14:08:33 +0100274 ret = install_session_keyring_to_cred(new, keyring);
David Howellsd84f4f92008-11-14 10:39:23 +1100275 if (ret < 0) {
276 abort_creds(new);
277 return ret;
278 }
David Howellsb5f545c2006-01-08 01:02:47 -0800279
David Howellsd84f4f92008-11-14 10:39:23 +1100280 return commit_creds(new);
281}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283/*
David Howells973c9f42011-01-20 16:38:33 +0000284 * Handle the fsuid changing.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 */
286void key_fsuid_changed(struct task_struct *tsk)
287{
288 /* update the ownership of the thread keyring */
David Howellsb6dff3e2008-11-14 10:39:16 +1100289 BUG_ON(!tsk->cred);
290 if (tsk->cred->thread_keyring) {
291 down_write(&tsk->cred->thread_keyring->sem);
292 tsk->cred->thread_keyring->uid = tsk->cred->fsuid;
293 up_write(&tsk->cred->thread_keyring->sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 }
David Howellsa8b17ed2011-01-20 16:38:27 +0000295}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297/*
David Howells973c9f42011-01-20 16:38:33 +0000298 * Handle the fsgid changing.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 */
300void key_fsgid_changed(struct task_struct *tsk)
301{
302 /* update the ownership of the thread keyring */
David Howellsb6dff3e2008-11-14 10:39:16 +1100303 BUG_ON(!tsk->cred);
304 if (tsk->cred->thread_keyring) {
305 down_write(&tsk->cred->thread_keyring->sem);
306 tsk->cred->thread_keyring->gid = tsk->cred->fsgid;
307 up_write(&tsk->cred->thread_keyring->sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 }
David Howellsa8b17ed2011-01-20 16:38:27 +0000309}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311/*
David Howells973c9f42011-01-20 16:38:33 +0000312 * Search the process keyrings attached to the supplied cred for the first
313 * matching key.
314 *
315 * The search criteria are the type and the match function. The description is
316 * given to the match function as a parameter, but doesn't otherwise influence
317 * the search. Typically the match function will compare the description
318 * parameter to the key's description.
319 *
320 * This can only search keyrings that grant Search permission to the supplied
321 * credentials. Keyrings linked to searched keyrings will also be searched if
322 * they grant Search permission too. Keys can only be found if they grant
323 * Search permission to the credentials.
324 *
325 * Returns a pointer to the key with the key usage count incremented if
326 * successful, -EAGAIN if we didn't find any matching key or -ENOKEY if we only
327 * matched negative keys.
328 *
329 * In the case of a successful return, the possession attribute is set on the
330 * returned key reference.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 */
David Howells927942a2010-06-11 17:31:10 +0100332key_ref_t search_my_process_keyrings(struct key_type *type,
333 const void *description,
334 key_match_func_t match,
David Howells78b72802011-03-11 17:57:23 +0000335 bool no_state_check,
David Howells927942a2010-06-11 17:31:10 +0100336 const struct cred *cred)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337{
David Howellsb5f545c2006-01-08 01:02:47 -0800338 key_ref_t key_ref, ret, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339
340 /* we want to return -EAGAIN or -ENOKEY if any of the keyrings were
341 * searchable, but we failed to find a key or we found a negative key;
342 * otherwise we want to return a sample error (probably -EACCES) if
343 * none of the keyrings were searchable
344 *
345 * in terms of priority: success > -ENOKEY > -EAGAIN > other error
346 */
David Howells664cceb2005-09-28 17:03:15 +0100347 key_ref = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 ret = NULL;
349 err = ERR_PTR(-EAGAIN);
350
351 /* search the thread keyring first */
David Howellsc69e8d92008-11-14 10:39:19 +1100352 if (cred->thread_keyring) {
David Howells664cceb2005-09-28 17:03:15 +0100353 key_ref = keyring_search_aux(
David Howellsc69e8d92008-11-14 10:39:19 +1100354 make_key_ref(cred->thread_keyring, 1),
David Howells78b72802011-03-11 17:57:23 +0000355 cred, type, description, match, no_state_check);
David Howells664cceb2005-09-28 17:03:15 +0100356 if (!IS_ERR(key_ref))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 goto found;
358
David Howells664cceb2005-09-28 17:03:15 +0100359 switch (PTR_ERR(key_ref)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 case -EAGAIN: /* no key */
361 if (ret)
362 break;
363 case -ENOKEY: /* negative key */
David Howells664cceb2005-09-28 17:03:15 +0100364 ret = key_ref;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 break;
366 default:
David Howells664cceb2005-09-28 17:03:15 +0100367 err = key_ref;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 break;
369 }
370 }
371
372 /* search the process keyring second */
David Howellsbb952bb2008-11-14 10:39:20 +1100373 if (cred->tgcred->process_keyring) {
David Howells664cceb2005-09-28 17:03:15 +0100374 key_ref = keyring_search_aux(
David Howellsbb952bb2008-11-14 10:39:20 +1100375 make_key_ref(cred->tgcred->process_keyring, 1),
David Howells78b72802011-03-11 17:57:23 +0000376 cred, type, description, match, no_state_check);
David Howells664cceb2005-09-28 17:03:15 +0100377 if (!IS_ERR(key_ref))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 goto found;
379
David Howells664cceb2005-09-28 17:03:15 +0100380 switch (PTR_ERR(key_ref)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 case -EAGAIN: /* no key */
382 if (ret)
383 break;
384 case -ENOKEY: /* negative key */
David Howells664cceb2005-09-28 17:03:15 +0100385 ret = key_ref;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 break;
387 default:
David Howells664cceb2005-09-28 17:03:15 +0100388 err = key_ref;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 break;
390 }
391 }
392
David Howells3e301482005-06-23 22:00:56 -0700393 /* search the session keyring */
David Howellsbb952bb2008-11-14 10:39:20 +1100394 if (cred->tgcred->session_keyring) {
David Howells8589b4e2005-06-23 22:00:53 -0700395 rcu_read_lock();
David Howells664cceb2005-09-28 17:03:15 +0100396 key_ref = keyring_search_aux(
397 make_key_ref(rcu_dereference(
David Howellsbb952bb2008-11-14 10:39:20 +1100398 cred->tgcred->session_keyring),
David Howells664cceb2005-09-28 17:03:15 +0100399 1),
David Howells78b72802011-03-11 17:57:23 +0000400 cred, type, description, match, no_state_check);
David Howells8589b4e2005-06-23 22:00:53 -0700401 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402
David Howells664cceb2005-09-28 17:03:15 +0100403 if (!IS_ERR(key_ref))
David Howells3e301482005-06-23 22:00:56 -0700404 goto found;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405
David Howells664cceb2005-09-28 17:03:15 +0100406 switch (PTR_ERR(key_ref)) {
David Howells3e301482005-06-23 22:00:56 -0700407 case -EAGAIN: /* no key */
408 if (ret)
409 break;
410 case -ENOKEY: /* negative key */
David Howells664cceb2005-09-28 17:03:15 +0100411 ret = key_ref;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 break;
David Howells3e301482005-06-23 22:00:56 -0700413 default:
David Howells664cceb2005-09-28 17:03:15 +0100414 err = key_ref;
David Howells3e301482005-06-23 22:00:56 -0700415 break;
416 }
David Howells3e301482005-06-23 22:00:56 -0700417 }
418 /* or search the user-session keyring */
David Howellsc69e8d92008-11-14 10:39:19 +1100419 else if (cred->user->session_keyring) {
David Howells664cceb2005-09-28 17:03:15 +0100420 key_ref = keyring_search_aux(
David Howellsc69e8d92008-11-14 10:39:19 +1100421 make_key_ref(cred->user->session_keyring, 1),
David Howells78b72802011-03-11 17:57:23 +0000422 cred, type, description, match, no_state_check);
David Howells664cceb2005-09-28 17:03:15 +0100423 if (!IS_ERR(key_ref))
David Howells3e301482005-06-23 22:00:56 -0700424 goto found;
425
David Howells664cceb2005-09-28 17:03:15 +0100426 switch (PTR_ERR(key_ref)) {
David Howells3e301482005-06-23 22:00:56 -0700427 case -EAGAIN: /* no key */
428 if (ret)
429 break;
430 case -ENOKEY: /* negative key */
David Howells664cceb2005-09-28 17:03:15 +0100431 ret = key_ref;
David Howells3e301482005-06-23 22:00:56 -0700432 break;
433 default:
David Howells664cceb2005-09-28 17:03:15 +0100434 err = key_ref;
David Howells3e301482005-06-23 22:00:56 -0700435 break;
436 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 }
438
David Howells927942a2010-06-11 17:31:10 +0100439 /* no key - decide on the error we're going to go for */
440 key_ref = ret ? ret : err;
441
442found:
443 return key_ref;
444}
445
David Howells927942a2010-06-11 17:31:10 +0100446/*
David Howells973c9f42011-01-20 16:38:33 +0000447 * Search the process keyrings attached to the supplied cred for the first
448 * matching key in the manner of search_my_process_keyrings(), but also search
449 * the keys attached to the assumed authorisation key using its credentials if
450 * one is available.
451 *
452 * Return same as search_my_process_keyrings().
David Howells927942a2010-06-11 17:31:10 +0100453 */
454key_ref_t search_process_keyrings(struct key_type *type,
455 const void *description,
456 key_match_func_t match,
457 const struct cred *cred)
458{
459 struct request_key_auth *rka;
460 key_ref_t key_ref, ret = ERR_PTR(-EACCES), err;
461
462 might_sleep();
463
David Howells78b72802011-03-11 17:57:23 +0000464 key_ref = search_my_process_keyrings(type, description, match,
465 false, cred);
David Howells927942a2010-06-11 17:31:10 +0100466 if (!IS_ERR(key_ref))
467 goto found;
468 err = key_ref;
469
David Howellsb5f545c2006-01-08 01:02:47 -0800470 /* if this process has an instantiation authorisation key, then we also
471 * search the keyrings of the process mentioned there
472 * - we don't permit access to request_key auth keys via this method
473 */
David Howellsc69e8d92008-11-14 10:39:19 +1100474 if (cred->request_key_auth &&
David Howellsd84f4f92008-11-14 10:39:23 +1100475 cred == current_cred() &&
David Howells04c567d2006-06-22 14:47:18 -0700476 type != &key_type_request_key_auth
David Howellsb5f545c2006-01-08 01:02:47 -0800477 ) {
David Howells04c567d2006-06-22 14:47:18 -0700478 /* defend against the auth key being revoked */
David Howellsc69e8d92008-11-14 10:39:19 +1100479 down_read(&cred->request_key_auth->sem);
David Howells3e301482005-06-23 22:00:56 -0700480
David Howellsc69e8d92008-11-14 10:39:19 +1100481 if (key_validate(cred->request_key_auth) == 0) {
482 rka = cred->request_key_auth->payload.data;
David Howellsb5f545c2006-01-08 01:02:47 -0800483
David Howells04c567d2006-06-22 14:47:18 -0700484 key_ref = search_process_keyrings(type, description,
David Howellsd84f4f92008-11-14 10:39:23 +1100485 match, rka->cred);
David Howellsb5f545c2006-01-08 01:02:47 -0800486
David Howellsc69e8d92008-11-14 10:39:19 +1100487 up_read(&cred->request_key_auth->sem);
David Howells04c567d2006-06-22 14:47:18 -0700488
489 if (!IS_ERR(key_ref))
490 goto found;
491
David Howells927942a2010-06-11 17:31:10 +0100492 ret = key_ref;
David Howells04c567d2006-06-22 14:47:18 -0700493 } else {
David Howellsc69e8d92008-11-14 10:39:19 +1100494 up_read(&cred->request_key_auth->sem);
David Howellsb5f545c2006-01-08 01:02:47 -0800495 }
496 }
497
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 /* no key - decide on the error we're going to go for */
David Howells927942a2010-06-11 17:31:10 +0100499 if (err == ERR_PTR(-ENOKEY) || ret == ERR_PTR(-ENOKEY))
500 key_ref = ERR_PTR(-ENOKEY);
501 else if (err == ERR_PTR(-EACCES))
502 key_ref = ret;
503 else
504 key_ref = err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505
David Howells3e301482005-06-23 22:00:56 -0700506found:
David Howells664cceb2005-09-28 17:03:15 +0100507 return key_ref;
David Howellsa8b17ed2011-01-20 16:38:27 +0000508}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510/*
David Howells973c9f42011-01-20 16:38:33 +0000511 * See if the key we're looking at is the target key.
David Howells664cceb2005-09-28 17:03:15 +0100512 */
David Howells927942a2010-06-11 17:31:10 +0100513int lookup_user_key_possessed(const struct key *key, const void *target)
David Howells664cceb2005-09-28 17:03:15 +0100514{
515 return key == target;
David Howellsa8b17ed2011-01-20 16:38:27 +0000516}
David Howells664cceb2005-09-28 17:03:15 +0100517
David Howells664cceb2005-09-28 17:03:15 +0100518/*
David Howells973c9f42011-01-20 16:38:33 +0000519 * Look up a key ID given us by userspace with a given permissions mask to get
520 * the key it refers to.
521 *
522 * Flags can be passed to request that special keyrings be created if referred
523 * to directly, to permit partially constructed keys to be found and to skip
524 * validity and permission checks on the found key.
525 *
526 * Returns a pointer to the key with an incremented usage count if successful;
527 * -EINVAL if the key ID is invalid; -ENOKEY if the key ID does not correspond
528 * to a key or the best found key was a negative key; -EKEYREVOKED or
529 * -EKEYEXPIRED if the best found key was revoked or expired; -EACCES if the
530 * found key doesn't grant the requested permit or the LSM denied access to it;
531 * or -ENOMEM if a special keyring couldn't be created.
532 *
533 * In the case of a successful return, the possession attribute is set on the
534 * returned key reference.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 */
David Howells55931222009-09-02 09:13:45 +0100536key_ref_t lookup_user_key(key_serial_t id, unsigned long lflags,
David Howells8bbf49762008-11-14 10:39:14 +1100537 key_perm_t perm)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538{
David Howells8bbf49762008-11-14 10:39:14 +1100539 struct request_key_auth *rka;
David Howellsd84f4f92008-11-14 10:39:23 +1100540 const struct cred *cred;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 struct key *key;
David Howellsb6dff3e2008-11-14 10:39:16 +1100542 key_ref_t key_ref, skey_ref;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 int ret;
544
David Howellsbb952bb2008-11-14 10:39:20 +1100545try_again:
546 cred = get_current_cred();
David Howells664cceb2005-09-28 17:03:15 +0100547 key_ref = ERR_PTR(-ENOKEY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548
549 switch (id) {
550 case KEY_SPEC_THREAD_KEYRING:
David Howellsb6dff3e2008-11-14 10:39:16 +1100551 if (!cred->thread_keyring) {
David Howells55931222009-09-02 09:13:45 +0100552 if (!(lflags & KEY_LOOKUP_CREATE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 goto error;
554
David Howells8bbf49762008-11-14 10:39:14 +1100555 ret = install_thread_keyring();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 if (ret < 0) {
Dan Carpenter4d09ec02010-05-17 14:42:35 +0100557 key_ref = ERR_PTR(ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 goto error;
559 }
David Howellsbb952bb2008-11-14 10:39:20 +1100560 goto reget_creds;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 }
562
David Howellsb6dff3e2008-11-14 10:39:16 +1100563 key = cred->thread_keyring;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 atomic_inc(&key->usage);
David Howells664cceb2005-09-28 17:03:15 +0100565 key_ref = make_key_ref(key, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 break;
567
568 case KEY_SPEC_PROCESS_KEYRING:
David Howellsbb952bb2008-11-14 10:39:20 +1100569 if (!cred->tgcred->process_keyring) {
David Howells55931222009-09-02 09:13:45 +0100570 if (!(lflags & KEY_LOOKUP_CREATE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 goto error;
572
David Howells8bbf49762008-11-14 10:39:14 +1100573 ret = install_process_keyring();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 if (ret < 0) {
Dan Carpenter4d09ec02010-05-17 14:42:35 +0100575 key_ref = ERR_PTR(ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 goto error;
577 }
David Howellsbb952bb2008-11-14 10:39:20 +1100578 goto reget_creds;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 }
580
David Howellsbb952bb2008-11-14 10:39:20 +1100581 key = cred->tgcred->process_keyring;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 atomic_inc(&key->usage);
David Howells664cceb2005-09-28 17:03:15 +0100583 key_ref = make_key_ref(key, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 break;
585
586 case KEY_SPEC_SESSION_KEYRING:
David Howellsbb952bb2008-11-14 10:39:20 +1100587 if (!cred->tgcred->session_keyring) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 /* always install a session keyring upon access if one
589 * doesn't exist yet */
David Howells8bbf49762008-11-14 10:39:14 +1100590 ret = install_user_keyrings();
David Howells69664cf2008-04-29 01:01:31 -0700591 if (ret < 0)
592 goto error;
David Howells3ecf1b42011-08-22 14:08:43 +0100593 if (lflags & KEY_LOOKUP_CREATE)
594 ret = join_session_keyring(NULL);
595 else
596 ret = install_session_keyring(
597 cred->user->session_keyring);
David Howellsd84f4f92008-11-14 10:39:23 +1100598
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 if (ret < 0)
600 goto error;
David Howellsbb952bb2008-11-14 10:39:20 +1100601 goto reget_creds;
David Howells3ecf1b42011-08-22 14:08:43 +0100602 } else if (cred->tgcred->session_keyring ==
603 cred->user->session_keyring &&
604 lflags & KEY_LOOKUP_CREATE) {
605 ret = join_session_keyring(NULL);
606 if (ret < 0)
607 goto error;
608 goto reget_creds;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 }
610
David Howells3e301482005-06-23 22:00:56 -0700611 rcu_read_lock();
David Howellsbb952bb2008-11-14 10:39:20 +1100612 key = rcu_dereference(cred->tgcred->session_keyring);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 atomic_inc(&key->usage);
David Howells3e301482005-06-23 22:00:56 -0700614 rcu_read_unlock();
David Howells664cceb2005-09-28 17:03:15 +0100615 key_ref = make_key_ref(key, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 break;
617
618 case KEY_SPEC_USER_KEYRING:
David Howellsb6dff3e2008-11-14 10:39:16 +1100619 if (!cred->user->uid_keyring) {
David Howells8bbf49762008-11-14 10:39:14 +1100620 ret = install_user_keyrings();
David Howells69664cf2008-04-29 01:01:31 -0700621 if (ret < 0)
622 goto error;
623 }
624
David Howellsb6dff3e2008-11-14 10:39:16 +1100625 key = cred->user->uid_keyring;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 atomic_inc(&key->usage);
David Howells664cceb2005-09-28 17:03:15 +0100627 key_ref = make_key_ref(key, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 break;
629
630 case KEY_SPEC_USER_SESSION_KEYRING:
David Howellsb6dff3e2008-11-14 10:39:16 +1100631 if (!cred->user->session_keyring) {
David Howells8bbf49762008-11-14 10:39:14 +1100632 ret = install_user_keyrings();
David Howells69664cf2008-04-29 01:01:31 -0700633 if (ret < 0)
634 goto error;
635 }
636
David Howellsb6dff3e2008-11-14 10:39:16 +1100637 key = cred->user->session_keyring;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 atomic_inc(&key->usage);
David Howells664cceb2005-09-28 17:03:15 +0100639 key_ref = make_key_ref(key, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 break;
641
642 case KEY_SPEC_GROUP_KEYRING:
643 /* group keyrings are not yet supported */
Dan Carpenter4d09ec02010-05-17 14:42:35 +0100644 key_ref = ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 goto error;
646
David Howellsb5f545c2006-01-08 01:02:47 -0800647 case KEY_SPEC_REQKEY_AUTH_KEY:
David Howellsb6dff3e2008-11-14 10:39:16 +1100648 key = cred->request_key_auth;
David Howellsb5f545c2006-01-08 01:02:47 -0800649 if (!key)
650 goto error;
651
652 atomic_inc(&key->usage);
653 key_ref = make_key_ref(key, 1);
654 break;
655
David Howells8bbf49762008-11-14 10:39:14 +1100656 case KEY_SPEC_REQUESTOR_KEYRING:
David Howellsb6dff3e2008-11-14 10:39:16 +1100657 if (!cred->request_key_auth)
David Howells8bbf49762008-11-14 10:39:14 +1100658 goto error;
659
David Howellsb6dff3e2008-11-14 10:39:16 +1100660 down_read(&cred->request_key_auth->sem);
Dan Carpenterf67dabb2012-03-06 13:32:16 +0000661 if (test_bit(KEY_FLAG_REVOKED,
662 &cred->request_key_auth->flags)) {
David Howells8bbf49762008-11-14 10:39:14 +1100663 key_ref = ERR_PTR(-EKEYREVOKED);
664 key = NULL;
665 } else {
David Howellsb6dff3e2008-11-14 10:39:16 +1100666 rka = cred->request_key_auth->payload.data;
David Howells8bbf49762008-11-14 10:39:14 +1100667 key = rka->dest_keyring;
668 atomic_inc(&key->usage);
669 }
David Howellsb6dff3e2008-11-14 10:39:16 +1100670 up_read(&cred->request_key_auth->sem);
David Howells8bbf49762008-11-14 10:39:14 +1100671 if (!key)
672 goto error;
673 key_ref = make_key_ref(key, 1);
674 break;
675
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 default:
David Howells664cceb2005-09-28 17:03:15 +0100677 key_ref = ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 if (id < 1)
679 goto error;
680
681 key = key_lookup(id);
David Howells664cceb2005-09-28 17:03:15 +0100682 if (IS_ERR(key)) {
David Howellse231c2e2008-02-07 00:15:26 -0800683 key_ref = ERR_CAST(key);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 goto error;
David Howells664cceb2005-09-28 17:03:15 +0100685 }
686
687 key_ref = make_key_ref(key, 0);
688
689 /* check to see if we possess the key */
690 skey_ref = search_process_keyrings(key->type, key,
691 lookup_user_key_possessed,
David Howellsd84f4f92008-11-14 10:39:23 +1100692 cred);
David Howells664cceb2005-09-28 17:03:15 +0100693
694 if (!IS_ERR(skey_ref)) {
695 key_put(key);
696 key_ref = skey_ref;
697 }
698
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 break;
700 }
701
David Howells55931222009-09-02 09:13:45 +0100702 /* unlink does not use the nominated key in any way, so can skip all
703 * the permission checks as it is only concerned with the keyring */
704 if (lflags & KEY_LOOKUP_FOR_UNLINK) {
705 ret = 0;
706 goto error;
707 }
708
709 if (!(lflags & KEY_LOOKUP_PARTIAL)) {
David Howells76181c12007-10-16 23:29:46 -0700710 ret = wait_for_key_construction(key, true);
711 switch (ret) {
712 case -ERESTARTSYS:
713 goto invalid_key;
714 default:
715 if (perm)
716 goto invalid_key;
717 case 0:
718 break;
719 }
720 } else if (perm) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 ret = key_validate(key);
722 if (ret < 0)
723 goto invalid_key;
724 }
725
726 ret = -EIO;
David Howells55931222009-09-02 09:13:45 +0100727 if (!(lflags & KEY_LOOKUP_PARTIAL) &&
728 !test_bit(KEY_FLAG_INSTANTIATED, &key->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 goto invalid_key;
730
David Howells3e301482005-06-23 22:00:56 -0700731 /* check the permissions */
David Howellsd84f4f92008-11-14 10:39:23 +1100732 ret = key_task_permission(key_ref, cred, perm);
David Howells29db9192005-10-30 15:02:44 -0800733 if (ret < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 goto invalid_key;
735
David Howells31d5a792012-05-11 10:56:56 +0100736 key->last_used_at = current_kernel_time().tv_sec;
737
David Howells664cceb2005-09-28 17:03:15 +0100738error:
David Howellsbb952bb2008-11-14 10:39:20 +1100739 put_cred(cred);
David Howells664cceb2005-09-28 17:03:15 +0100740 return key_ref;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741
David Howells664cceb2005-09-28 17:03:15 +0100742invalid_key:
743 key_ref_put(key_ref);
744 key_ref = ERR_PTR(ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 goto error;
746
David Howellsbb952bb2008-11-14 10:39:20 +1100747 /* if we attempted to install a keyring, then it may have caused new
748 * creds to be installed */
749reget_creds:
750 put_cred(cred);
751 goto try_again;
David Howellsa8b17ed2011-01-20 16:38:27 +0000752}
David Howellsbb952bb2008-11-14 10:39:20 +1100753
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754/*
David Howells973c9f42011-01-20 16:38:33 +0000755 * Join the named keyring as the session keyring if possible else attempt to
756 * create a new one of that name and join that.
757 *
758 * If the name is NULL, an empty anonymous keyring will be installed as the
759 * session keyring.
760 *
761 * Named session keyrings are joined with a semaphore held to prevent the
762 * keyrings from going away whilst the attempt is made to going them and also
763 * to prevent a race in creating compatible session keyrings.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 */
765long join_session_keyring(const char *name)
766{
David Howellsd84f4f92008-11-14 10:39:23 +1100767 const struct cred *old;
768 struct cred *new;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 struct key *keyring;
David Howellsd84f4f92008-11-14 10:39:23 +1100770 long ret, serial;
771
772 /* only permit this if there's a single thread in the thread group -
773 * this avoids us having to adjust the creds on all threads and risking
774 * ENOMEM */
Oleg Nesterov5bb459b2009-07-10 03:48:23 +0200775 if (!current_is_single_threaded())
David Howellsd84f4f92008-11-14 10:39:23 +1100776 return -EMLINK;
777
778 new = prepare_creds();
779 if (!new)
780 return -ENOMEM;
781 old = current_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782
783 /* if no name is provided, install an anonymous keyring */
784 if (!name) {
David Howellsd84f4f92008-11-14 10:39:23 +1100785 ret = install_session_keyring_to_cred(new, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 if (ret < 0)
787 goto error;
788
David Howellsd84f4f92008-11-14 10:39:23 +1100789 serial = new->tgcred->session_keyring->serial;
790 ret = commit_creds(new);
791 if (ret == 0)
792 ret = serial;
793 goto okay;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 }
795
796 /* allow the user to join or create a named keyring */
Ingo Molnarbb003072006-03-22 00:09:14 -0800797 mutex_lock(&key_session_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798
799 /* look for an existing keyring of this name */
David Howells69664cf2008-04-29 01:01:31 -0700800 keyring = find_keyring_by_name(name, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 if (PTR_ERR(keyring) == -ENOKEY) {
802 /* not found - try and create a new one */
David Howellsd84f4f92008-11-14 10:39:23 +1100803 keyring = keyring_alloc(name, old->uid, old->gid, old,
David Howells7e047ef2006-06-26 00:24:50 -0700804 KEY_ALLOC_IN_QUOTA, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 if (IS_ERR(keyring)) {
806 ret = PTR_ERR(keyring);
David Howellsbcf945d2005-08-04 13:07:06 -0700807 goto error2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 }
David Howellsd84f4f92008-11-14 10:39:23 +1100809 } else if (IS_ERR(keyring)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 ret = PTR_ERR(keyring);
811 goto error2;
812 }
813
814 /* we've got a keyring - now to install it */
David Howellsd84f4f92008-11-14 10:39:23 +1100815 ret = install_session_keyring_to_cred(new, keyring);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 if (ret < 0)
817 goto error2;
818
David Howellsd84f4f92008-11-14 10:39:23 +1100819 commit_creds(new);
820 mutex_unlock(&key_session_mutex);
821
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 ret = keyring->serial;
823 key_put(keyring);
David Howellsd84f4f92008-11-14 10:39:23 +1100824okay:
825 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826
David Howells664cceb2005-09-28 17:03:15 +0100827error2:
Ingo Molnarbb003072006-03-22 00:09:14 -0800828 mutex_unlock(&key_session_mutex);
David Howells664cceb2005-09-28 17:03:15 +0100829error:
David Howellsd84f4f92008-11-14 10:39:23 +1100830 abort_creds(new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 return ret;
David Howellsd84f4f92008-11-14 10:39:23 +1100832}
David Howellsee18d642009-09-02 09:14:21 +0100833
834/*
David Howells973c9f42011-01-20 16:38:33 +0000835 * Replace a process's session keyring on behalf of one of its children when
836 * the target process is about to resume userspace execution.
David Howellsee18d642009-09-02 09:14:21 +0100837 */
Al Viro67d12142012-06-27 11:07:19 +0400838void key_change_session_keyring(struct callback_head *twork)
David Howellsee18d642009-09-02 09:14:21 +0100839{
Oleg Nesterov413cd3d2012-05-11 10:59:08 +1000840 const struct cred *old = current_cred();
Al Viro67d12142012-06-27 11:07:19 +0400841 struct cred *new = container_of(twork, struct cred, rcu);
David Howellsee18d642009-09-02 09:14:21 +0100842
Oleg Nesterov413cd3d2012-05-11 10:59:08 +1000843 if (unlikely(current->flags & PF_EXITING)) {
844 put_cred(new);
David Howellsee18d642009-09-02 09:14:21 +0100845 return;
Oleg Nesterov413cd3d2012-05-11 10:59:08 +1000846 }
David Howellsee18d642009-09-02 09:14:21 +0100847
David Howellsee18d642009-09-02 09:14:21 +0100848 new-> uid = old-> uid;
849 new-> euid = old-> euid;
850 new-> suid = old-> suid;
851 new->fsuid = old->fsuid;
852 new-> gid = old-> gid;
853 new-> egid = old-> egid;
854 new-> sgid = old-> sgid;
855 new->fsgid = old->fsgid;
856 new->user = get_uid(old->user);
Eric W. Biederman0093ccb2011-11-16 21:52:53 -0800857 new->user_ns = get_user_ns(new->user_ns);
David Howellsee18d642009-09-02 09:14:21 +0100858 new->group_info = get_group_info(old->group_info);
859
860 new->securebits = old->securebits;
861 new->cap_inheritable = old->cap_inheritable;
862 new->cap_permitted = old->cap_permitted;
863 new->cap_effective = old->cap_effective;
864 new->cap_bset = old->cap_bset;
865
866 new->jit_keyring = old->jit_keyring;
867 new->thread_keyring = key_get(old->thread_keyring);
868 new->tgcred->tgid = old->tgcred->tgid;
869 new->tgcred->process_keyring = key_get(old->tgcred->process_keyring);
870
871 security_transfer_creds(new, old);
872
873 commit_creds(new);
874}