blob: b58d93892740476ed115568167d3dac8a5b2db34 [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),
37 .uid = 0,
Serge E. Hallyn1d1e9752009-02-26 18:27:38 -060038 .user_ns = &init_user_ns,
Linus Torvalds1da177e2005-04-16 15:20:36 -070039};
40
Linus Torvalds1da177e2005-04-16 15:20:36 -070041/*
David Howells973c9f42011-01-20 16:38:33 +000042 * Install the user and user session keyrings for the current process's UID.
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 */
David Howells8bbf49762008-11-14 10:39:14 +110044int install_user_keyrings(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070045{
David Howellsd84f4f92008-11-14 10:39:23 +110046 struct user_struct *user;
47 const struct cred *cred;
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 struct key *uid_keyring, *session_keyring;
David Howells96b5c8f2012-10-02 19:24:56 +010049 key_perm_t user_keyring_perm;
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 char buf[20];
51 int ret;
52
David Howells96b5c8f2012-10-02 19:24:56 +010053 user_keyring_perm = (KEY_POS_ALL & ~KEY_POS_SETATTR) | KEY_USR_ALL;
David Howellsd84f4f92008-11-14 10:39:23 +110054 cred = current_cred();
55 user = cred->user;
56
David Howells69664cf2008-04-29 01:01:31 -070057 kenter("%p{%u}", user, user->uid);
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
David Howells69664cf2008-04-29 01:01:31 -070059 if (user->uid_keyring) {
60 kleave(" = 0 [exist]");
61 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 }
63
David Howells69664cf2008-04-29 01:01:31 -070064 mutex_lock(&key_user_keyring_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 ret = 0;
66
David Howells69664cf2008-04-29 01:01:31 -070067 if (!user->uid_keyring) {
68 /* get the UID-specific keyring
69 * - there may be one in existence already as it may have been
70 * pinned by a session, but the user_struct pointing to it
71 * may have been destroyed by setuid */
72 sprintf(buf, "_uid.%u", user->uid);
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
David Howells69664cf2008-04-29 01:01:31 -070074 uid_keyring = find_keyring_by_name(buf, true);
75 if (IS_ERR(uid_keyring)) {
76 uid_keyring = keyring_alloc(buf, user->uid, (gid_t) -1,
David Howells96b5c8f2012-10-02 19:24:56 +010077 cred, user_keyring_perm,
78 KEY_ALLOC_IN_QUOTA, NULL);
David Howells69664cf2008-04-29 01:01:31 -070079 if (IS_ERR(uid_keyring)) {
80 ret = PTR_ERR(uid_keyring);
81 goto error;
82 }
83 }
84
85 /* get a default session keyring (which might also exist
86 * already) */
87 sprintf(buf, "_uid_ses.%u", user->uid);
88
89 session_keyring = find_keyring_by_name(buf, true);
90 if (IS_ERR(session_keyring)) {
91 session_keyring =
92 keyring_alloc(buf, user->uid, (gid_t) -1,
David Howells96b5c8f2012-10-02 19:24:56 +010093 cred, user_keyring_perm,
94 KEY_ALLOC_IN_QUOTA, NULL);
David Howells69664cf2008-04-29 01:01:31 -070095 if (IS_ERR(session_keyring)) {
96 ret = PTR_ERR(session_keyring);
97 goto error_release;
98 }
99
100 /* we install a link from the user session keyring to
101 * the user keyring */
102 ret = key_link(session_keyring, uid_keyring);
103 if (ret < 0)
104 goto error_release_both;
105 }
106
107 /* install the keyrings */
108 user->uid_keyring = uid_keyring;
109 user->session_keyring = session_keyring;
110 }
111
112 mutex_unlock(&key_user_keyring_mutex);
113 kleave(" = 0");
114 return 0;
115
116error_release_both:
117 key_put(session_keyring);
118error_release:
119 key_put(uid_keyring);
120error:
121 mutex_unlock(&key_user_keyring_mutex);
122 kleave(" = %d", ret);
123 return ret;
124}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126/*
David Howells973c9f42011-01-20 16:38:33 +0000127 * Install a fresh thread keyring directly to new credentials. This keyring is
128 * allowed to overrun the quota.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 */
David Howellsd84f4f92008-11-14 10:39:23 +1100130int install_thread_keyring_to_cred(struct cred *new)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131{
David Howellsd84f4f92008-11-14 10:39:23 +1100132 struct key *keyring;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
David Howellsd84f4f92008-11-14 10:39:23 +1100134 keyring = keyring_alloc("_tid", new->uid, new->gid, new,
David Howells96b5c8f2012-10-02 19:24:56 +0100135 KEY_POS_ALL | KEY_USR_VIEW,
David Howellsd84f4f92008-11-14 10:39:23 +1100136 KEY_ALLOC_QUOTA_OVERRUN, NULL);
137 if (IS_ERR(keyring))
138 return PTR_ERR(keyring);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
David Howellsd84f4f92008-11-14 10:39:23 +1100140 new->thread_keyring = keyring;
141 return 0;
142}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144/*
David Howells973c9f42011-01-20 16:38:33 +0000145 * Install a fresh thread keyring, discarding the old one.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 */
David Howellsd84f4f92008-11-14 10:39:23 +1100147static int install_thread_keyring(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148{
David Howellsd84f4f92008-11-14 10:39:23 +1100149 struct cred *new;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 int ret;
151
David Howellsd84f4f92008-11-14 10:39:23 +1100152 new = prepare_creds();
153 if (!new)
154 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
David Howellsd84f4f92008-11-14 10:39:23 +1100156 BUG_ON(new->thread_keyring);
157
158 ret = install_thread_keyring_to_cred(new);
159 if (ret < 0) {
160 abort_creds(new);
161 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 }
163
David Howellsd84f4f92008-11-14 10:39:23 +1100164 return commit_creds(new);
165}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
David Howellsd84f4f92008-11-14 10:39:23 +1100167/*
David Howells973c9f42011-01-20 16:38:33 +0000168 * Install a process keyring directly to a credentials struct.
169 *
170 * Returns -EEXIST if there was already a process keyring, 0 if one installed,
171 * and other value on any other error
David Howellsd84f4f92008-11-14 10:39:23 +1100172 */
173int install_process_keyring_to_cred(struct cred *new)
174{
175 struct key *keyring;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
David Howells3a505972012-10-02 19:24:29 +0100177 if (new->process_keyring)
David Howellsd84f4f92008-11-14 10:39:23 +1100178 return -EEXIST;
179
David Howells96b5c8f2012-10-02 19:24:56 +0100180 keyring = keyring_alloc("_pid", new->uid, new->gid, new,
181 KEY_POS_ALL | KEY_USR_VIEW,
182 KEY_ALLOC_QUOTA_OVERRUN, NULL);
David Howellsd84f4f92008-11-14 10:39:23 +1100183 if (IS_ERR(keyring))
184 return PTR_ERR(keyring);
185
David Howells3a505972012-10-02 19:24:29 +0100186 new->process_keyring = keyring;
187 return 0;
David Howellsd84f4f92008-11-14 10:39:23 +1100188}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190/*
David Howells973c9f42011-01-20 16:38:33 +0000191 * Make sure a process keyring is installed for the current process. The
192 * existing process keyring is not replaced.
193 *
194 * Returns 0 if there is a process keyring by the end of this function, some
195 * error otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 */
David Howellsd84f4f92008-11-14 10:39:23 +1100197static int install_process_keyring(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198{
David Howellsd84f4f92008-11-14 10:39:23 +1100199 struct cred *new;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 int ret;
201
David Howellsd84f4f92008-11-14 10:39:23 +1100202 new = prepare_creds();
203 if (!new)
204 return -ENOMEM;
David Howells1a26feb2006-04-10 22:54:26 -0700205
David Howellsd84f4f92008-11-14 10:39:23 +1100206 ret = install_process_keyring_to_cred(new);
207 if (ret < 0) {
208 abort_creds(new);
Andi Kleen27d63792010-10-28 13:16:13 +0100209 return ret != -EEXIST ? ret : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 }
211
David Howellsd84f4f92008-11-14 10:39:23 +1100212 return commit_creds(new);
213}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215/*
David Howells973c9f42011-01-20 16:38:33 +0000216 * Install a session keyring directly to a credentials struct.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 */
Oleg Nesterov685bfd22010-05-26 14:43:00 -0700218int install_session_keyring_to_cred(struct cred *cred, struct key *keyring)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219{
David Howells7e047ef2006-06-26 00:24:50 -0700220 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 struct key *old;
David Howells1a26feb2006-04-10 22:54:26 -0700222
223 might_sleep();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
225 /* create an empty session keyring */
226 if (!keyring) {
David Howells7e047ef2006-06-26 00:24:50 -0700227 flags = KEY_ALLOC_QUOTA_OVERRUN;
David Howells3a505972012-10-02 19:24:29 +0100228 if (cred->session_keyring)
David Howells7e047ef2006-06-26 00:24:50 -0700229 flags = KEY_ALLOC_IN_QUOTA;
230
David Howells96b5c8f2012-10-02 19:24:56 +0100231 keyring = keyring_alloc("_ses", cred->uid, cred->gid, cred,
232 KEY_POS_ALL | KEY_USR_VIEW | KEY_USR_READ,
233 flags, NULL);
David Howells1a26feb2006-04-10 22:54:26 -0700234 if (IS_ERR(keyring))
235 return PTR_ERR(keyring);
David Howellsd84f4f92008-11-14 10:39:23 +1100236 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 atomic_inc(&keyring->usage);
238 }
239
240 /* install the keyring */
David Howells3a505972012-10-02 19:24:29 +0100241 old = cred->session_keyring;
242 rcu_assign_pointer(cred->session_keyring, keyring);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243
David Howells3a505972012-10-02 19:24:29 +0100244 if (old)
David Howells1a26feb2006-04-10 22:54:26 -0700245 key_put(old);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
David Howells1a26feb2006-04-10 22:54:26 -0700247 return 0;
David Howellsd84f4f92008-11-14 10:39:23 +1100248}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250/*
David Howells973c9f42011-01-20 16:38:33 +0000251 * Install a session keyring, discarding the old one. If a keyring is not
252 * supplied, an empty one is invented.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 */
David Howellsd84f4f92008-11-14 10:39:23 +1100254static int install_session_keyring(struct key *keyring)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255{
David Howellsd84f4f92008-11-14 10:39:23 +1100256 struct cred *new;
257 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
David Howellsd84f4f92008-11-14 10:39:23 +1100259 new = prepare_creds();
260 if (!new)
261 return -ENOMEM;
David Howellsb5f545c2006-01-08 01:02:47 -0800262
David Howells995995372011-08-22 14:08:33 +0100263 ret = install_session_keyring_to_cred(new, keyring);
David Howellsd84f4f92008-11-14 10:39:23 +1100264 if (ret < 0) {
265 abort_creds(new);
266 return ret;
267 }
David Howellsb5f545c2006-01-08 01:02:47 -0800268
David Howellsd84f4f92008-11-14 10:39:23 +1100269 return commit_creds(new);
270}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272/*
David Howells973c9f42011-01-20 16:38:33 +0000273 * Handle the fsuid changing.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 */
275void key_fsuid_changed(struct task_struct *tsk)
276{
277 /* update the ownership of the thread keyring */
David Howellsb6dff3e2008-11-14 10:39:16 +1100278 BUG_ON(!tsk->cred);
279 if (tsk->cred->thread_keyring) {
280 down_write(&tsk->cred->thread_keyring->sem);
281 tsk->cred->thread_keyring->uid = tsk->cred->fsuid;
282 up_write(&tsk->cred->thread_keyring->sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 }
David Howellsa8b17ed2011-01-20 16:38:27 +0000284}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286/*
David Howells973c9f42011-01-20 16:38:33 +0000287 * Handle the fsgid changing.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 */
289void key_fsgid_changed(struct task_struct *tsk)
290{
291 /* update the ownership of the thread keyring */
David Howellsb6dff3e2008-11-14 10:39:16 +1100292 BUG_ON(!tsk->cred);
293 if (tsk->cred->thread_keyring) {
294 down_write(&tsk->cred->thread_keyring->sem);
295 tsk->cred->thread_keyring->gid = tsk->cred->fsgid;
296 up_write(&tsk->cred->thread_keyring->sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 }
David Howellsa8b17ed2011-01-20 16:38:27 +0000298}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300/*
David Howells973c9f42011-01-20 16:38:33 +0000301 * Search the process keyrings attached to the supplied cred for the first
302 * matching key.
303 *
304 * The search criteria are the type and the match function. The description is
305 * given to the match function as a parameter, but doesn't otherwise influence
306 * the search. Typically the match function will compare the description
307 * parameter to the key's description.
308 *
309 * This can only search keyrings that grant Search permission to the supplied
310 * credentials. Keyrings linked to searched keyrings will also be searched if
311 * they grant Search permission too. Keys can only be found if they grant
312 * Search permission to the credentials.
313 *
314 * Returns a pointer to the key with the key usage count incremented if
315 * successful, -EAGAIN if we didn't find any matching key or -ENOKEY if we only
316 * matched negative keys.
317 *
318 * In the case of a successful return, the possession attribute is set on the
319 * returned key reference.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 */
David Howells927942a2010-06-11 17:31:10 +0100321key_ref_t search_my_process_keyrings(struct key_type *type,
322 const void *description,
323 key_match_func_t match,
David Howells78b72802011-03-11 17:57:23 +0000324 bool no_state_check,
David Howells927942a2010-06-11 17:31:10 +0100325 const struct cred *cred)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326{
David Howellsb5f545c2006-01-08 01:02:47 -0800327 key_ref_t key_ref, ret, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328
329 /* we want to return -EAGAIN or -ENOKEY if any of the keyrings were
330 * searchable, but we failed to find a key or we found a negative key;
331 * otherwise we want to return a sample error (probably -EACCES) if
332 * none of the keyrings were searchable
333 *
334 * in terms of priority: success > -ENOKEY > -EAGAIN > other error
335 */
David Howells664cceb2005-09-28 17:03:15 +0100336 key_ref = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 ret = NULL;
338 err = ERR_PTR(-EAGAIN);
339
340 /* search the thread keyring first */
David Howellsc69e8d92008-11-14 10:39:19 +1100341 if (cred->thread_keyring) {
David Howells664cceb2005-09-28 17:03:15 +0100342 key_ref = keyring_search_aux(
David Howellsc69e8d92008-11-14 10:39:19 +1100343 make_key_ref(cred->thread_keyring, 1),
David Howells78b72802011-03-11 17:57:23 +0000344 cred, type, description, match, no_state_check);
David Howells664cceb2005-09-28 17:03:15 +0100345 if (!IS_ERR(key_ref))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 goto found;
347
David Howells664cceb2005-09-28 17:03:15 +0100348 switch (PTR_ERR(key_ref)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 case -EAGAIN: /* no key */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 case -ENOKEY: /* negative key */
David Howells664cceb2005-09-28 17:03:15 +0100351 ret = key_ref;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 break;
353 default:
David Howells664cceb2005-09-28 17:03:15 +0100354 err = key_ref;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 break;
356 }
357 }
358
359 /* search the process keyring second */
David Howells3a505972012-10-02 19:24:29 +0100360 if (cred->process_keyring) {
David Howells664cceb2005-09-28 17:03:15 +0100361 key_ref = keyring_search_aux(
David Howells3a505972012-10-02 19:24:29 +0100362 make_key_ref(cred->process_keyring, 1),
David Howells78b72802011-03-11 17:57:23 +0000363 cred, type, description, match, no_state_check);
David Howells664cceb2005-09-28 17:03:15 +0100364 if (!IS_ERR(key_ref))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 goto found;
366
David Howells664cceb2005-09-28 17:03:15 +0100367 switch (PTR_ERR(key_ref)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 case -EAGAIN: /* no key */
369 if (ret)
370 break;
371 case -ENOKEY: /* negative key */
David Howells664cceb2005-09-28 17:03:15 +0100372 ret = key_ref;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 break;
374 default:
David Howells664cceb2005-09-28 17:03:15 +0100375 err = key_ref;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 break;
377 }
378 }
379
David Howells3e301482005-06-23 22:00:56 -0700380 /* search the session keyring */
David Howells3a505972012-10-02 19:24:29 +0100381 if (cred->session_keyring) {
David Howells8589b4e2005-06-23 22:00:53 -0700382 rcu_read_lock();
David Howells664cceb2005-09-28 17:03:15 +0100383 key_ref = keyring_search_aux(
David Howells3a505972012-10-02 19:24:29 +0100384 make_key_ref(rcu_dereference(cred->session_keyring), 1),
David Howells78b72802011-03-11 17:57:23 +0000385 cred, type, description, match, no_state_check);
David Howells8589b4e2005-06-23 22:00:53 -0700386 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
David Howells664cceb2005-09-28 17:03:15 +0100388 if (!IS_ERR(key_ref))
David Howells3e301482005-06-23 22:00:56 -0700389 goto found;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390
David Howells664cceb2005-09-28 17:03:15 +0100391 switch (PTR_ERR(key_ref)) {
David Howells3e301482005-06-23 22:00:56 -0700392 case -EAGAIN: /* no key */
393 if (ret)
394 break;
395 case -ENOKEY: /* negative key */
David Howells664cceb2005-09-28 17:03:15 +0100396 ret = key_ref;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 break;
David Howells3e301482005-06-23 22:00:56 -0700398 default:
David Howells664cceb2005-09-28 17:03:15 +0100399 err = key_ref;
David Howells3e301482005-06-23 22:00:56 -0700400 break;
401 }
David Howells3e301482005-06-23 22:00:56 -0700402 }
403 /* or search the user-session keyring */
David Howellsc69e8d92008-11-14 10:39:19 +1100404 else if (cred->user->session_keyring) {
David Howells664cceb2005-09-28 17:03:15 +0100405 key_ref = keyring_search_aux(
David Howellsc69e8d92008-11-14 10:39:19 +1100406 make_key_ref(cred->user->session_keyring, 1),
David Howells78b72802011-03-11 17:57:23 +0000407 cred, type, description, match, no_state_check);
David Howells664cceb2005-09-28 17:03:15 +0100408 if (!IS_ERR(key_ref))
David Howells3e301482005-06-23 22:00:56 -0700409 goto found;
410
David Howells664cceb2005-09-28 17:03:15 +0100411 switch (PTR_ERR(key_ref)) {
David Howells3e301482005-06-23 22:00:56 -0700412 case -EAGAIN: /* no key */
413 if (ret)
414 break;
415 case -ENOKEY: /* negative key */
David Howells664cceb2005-09-28 17:03:15 +0100416 ret = key_ref;
David Howells3e301482005-06-23 22:00:56 -0700417 break;
418 default:
David Howells664cceb2005-09-28 17:03:15 +0100419 err = key_ref;
David Howells3e301482005-06-23 22:00:56 -0700420 break;
421 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 }
423
David Howells927942a2010-06-11 17:31:10 +0100424 /* no key - decide on the error we're going to go for */
425 key_ref = ret ? ret : err;
426
427found:
428 return key_ref;
429}
430
David Howells927942a2010-06-11 17:31:10 +0100431/*
David Howells973c9f42011-01-20 16:38:33 +0000432 * Search the process keyrings attached to the supplied cred for the first
433 * matching key in the manner of search_my_process_keyrings(), but also search
434 * the keys attached to the assumed authorisation key using its credentials if
435 * one is available.
436 *
437 * Return same as search_my_process_keyrings().
David Howells927942a2010-06-11 17:31:10 +0100438 */
439key_ref_t search_process_keyrings(struct key_type *type,
440 const void *description,
441 key_match_func_t match,
442 const struct cred *cred)
443{
444 struct request_key_auth *rka;
445 key_ref_t key_ref, ret = ERR_PTR(-EACCES), err;
446
447 might_sleep();
448
David Howells78b72802011-03-11 17:57:23 +0000449 key_ref = search_my_process_keyrings(type, description, match,
450 false, cred);
David Howells927942a2010-06-11 17:31:10 +0100451 if (!IS_ERR(key_ref))
452 goto found;
453 err = key_ref;
454
David Howellsb5f545c2006-01-08 01:02:47 -0800455 /* if this process has an instantiation authorisation key, then we also
456 * search the keyrings of the process mentioned there
457 * - we don't permit access to request_key auth keys via this method
458 */
David Howellsc69e8d92008-11-14 10:39:19 +1100459 if (cred->request_key_auth &&
David Howellsd84f4f92008-11-14 10:39:23 +1100460 cred == current_cred() &&
David Howells04c567d2006-06-22 14:47:18 -0700461 type != &key_type_request_key_auth
David Howellsb5f545c2006-01-08 01:02:47 -0800462 ) {
David Howells04c567d2006-06-22 14:47:18 -0700463 /* defend against the auth key being revoked */
David Howellsc69e8d92008-11-14 10:39:19 +1100464 down_read(&cred->request_key_auth->sem);
David Howells3e301482005-06-23 22:00:56 -0700465
David Howellsc69e8d92008-11-14 10:39:19 +1100466 if (key_validate(cred->request_key_auth) == 0) {
467 rka = cred->request_key_auth->payload.data;
David Howellsb5f545c2006-01-08 01:02:47 -0800468
David Howells04c567d2006-06-22 14:47:18 -0700469 key_ref = search_process_keyrings(type, description,
David Howellsd84f4f92008-11-14 10:39:23 +1100470 match, rka->cred);
David Howellsb5f545c2006-01-08 01:02:47 -0800471
David Howellsc69e8d92008-11-14 10:39:19 +1100472 up_read(&cred->request_key_auth->sem);
David Howells04c567d2006-06-22 14:47:18 -0700473
474 if (!IS_ERR(key_ref))
475 goto found;
476
David Howells927942a2010-06-11 17:31:10 +0100477 ret = key_ref;
David Howells04c567d2006-06-22 14:47:18 -0700478 } else {
David Howellsc69e8d92008-11-14 10:39:19 +1100479 up_read(&cred->request_key_auth->sem);
David Howellsb5f545c2006-01-08 01:02:47 -0800480 }
481 }
482
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 /* no key - decide on the error we're going to go for */
David Howells927942a2010-06-11 17:31:10 +0100484 if (err == ERR_PTR(-ENOKEY) || ret == ERR_PTR(-ENOKEY))
485 key_ref = ERR_PTR(-ENOKEY);
486 else if (err == ERR_PTR(-EACCES))
487 key_ref = ret;
488 else
489 key_ref = err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490
David Howells3e301482005-06-23 22:00:56 -0700491found:
David Howells664cceb2005-09-28 17:03:15 +0100492 return key_ref;
David Howellsa8b17ed2011-01-20 16:38:27 +0000493}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495/*
David Howells973c9f42011-01-20 16:38:33 +0000496 * See if the key we're looking at is the target key.
David Howells664cceb2005-09-28 17:03:15 +0100497 */
David Howells927942a2010-06-11 17:31:10 +0100498int lookup_user_key_possessed(const struct key *key, const void *target)
David Howells664cceb2005-09-28 17:03:15 +0100499{
500 return key == target;
David Howellsa8b17ed2011-01-20 16:38:27 +0000501}
David Howells664cceb2005-09-28 17:03:15 +0100502
David Howells664cceb2005-09-28 17:03:15 +0100503/*
David Howells973c9f42011-01-20 16:38:33 +0000504 * Look up a key ID given us by userspace with a given permissions mask to get
505 * the key it refers to.
506 *
507 * Flags can be passed to request that special keyrings be created if referred
508 * to directly, to permit partially constructed keys to be found and to skip
509 * validity and permission checks on the found key.
510 *
511 * Returns a pointer to the key with an incremented usage count if successful;
512 * -EINVAL if the key ID is invalid; -ENOKEY if the key ID does not correspond
513 * to a key or the best found key was a negative key; -EKEYREVOKED or
514 * -EKEYEXPIRED if the best found key was revoked or expired; -EACCES if the
515 * found key doesn't grant the requested permit or the LSM denied access to it;
516 * or -ENOMEM if a special keyring couldn't be created.
517 *
518 * In the case of a successful return, the possession attribute is set on the
519 * returned key reference.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 */
David Howells55931222009-09-02 09:13:45 +0100521key_ref_t lookup_user_key(key_serial_t id, unsigned long lflags,
David Howells8bbf49762008-11-14 10:39:14 +1100522 key_perm_t perm)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523{
David Howells8bbf49762008-11-14 10:39:14 +1100524 struct request_key_auth *rka;
David Howellsd84f4f92008-11-14 10:39:23 +1100525 const struct cred *cred;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 struct key *key;
David Howellsb6dff3e2008-11-14 10:39:16 +1100527 key_ref_t key_ref, skey_ref;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 int ret;
529
David Howellsbb952bb2008-11-14 10:39:20 +1100530try_again:
531 cred = get_current_cred();
David Howells664cceb2005-09-28 17:03:15 +0100532 key_ref = ERR_PTR(-ENOKEY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533
534 switch (id) {
535 case KEY_SPEC_THREAD_KEYRING:
David Howellsb6dff3e2008-11-14 10:39:16 +1100536 if (!cred->thread_keyring) {
David Howells55931222009-09-02 09:13:45 +0100537 if (!(lflags & KEY_LOOKUP_CREATE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 goto error;
539
David Howells8bbf49762008-11-14 10:39:14 +1100540 ret = install_thread_keyring();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 if (ret < 0) {
Dan Carpenter4d09ec02010-05-17 14:42:35 +0100542 key_ref = ERR_PTR(ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 goto error;
544 }
David Howellsbb952bb2008-11-14 10:39:20 +1100545 goto reget_creds;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 }
547
David Howellsb6dff3e2008-11-14 10:39:16 +1100548 key = cred->thread_keyring;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 atomic_inc(&key->usage);
David Howells664cceb2005-09-28 17:03:15 +0100550 key_ref = make_key_ref(key, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 break;
552
553 case KEY_SPEC_PROCESS_KEYRING:
David Howells3a505972012-10-02 19:24:29 +0100554 if (!cred->process_keyring) {
David Howells55931222009-09-02 09:13:45 +0100555 if (!(lflags & KEY_LOOKUP_CREATE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 goto error;
557
David Howells8bbf49762008-11-14 10:39:14 +1100558 ret = install_process_keyring();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 if (ret < 0) {
Dan Carpenter4d09ec02010-05-17 14:42:35 +0100560 key_ref = ERR_PTR(ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 goto error;
562 }
David Howellsbb952bb2008-11-14 10:39:20 +1100563 goto reget_creds;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 }
565
David Howells3a505972012-10-02 19:24:29 +0100566 key = cred->process_keyring;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 atomic_inc(&key->usage);
David Howells664cceb2005-09-28 17:03:15 +0100568 key_ref = make_key_ref(key, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 break;
570
571 case KEY_SPEC_SESSION_KEYRING:
David Howells3a505972012-10-02 19:24:29 +0100572 if (!cred->session_keyring) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 /* always install a session keyring upon access if one
574 * doesn't exist yet */
David Howells8bbf49762008-11-14 10:39:14 +1100575 ret = install_user_keyrings();
David Howells69664cf2008-04-29 01:01:31 -0700576 if (ret < 0)
577 goto error;
David Howells3ecf1b42011-08-22 14:08:43 +0100578 if (lflags & KEY_LOOKUP_CREATE)
579 ret = join_session_keyring(NULL);
580 else
581 ret = install_session_keyring(
582 cred->user->session_keyring);
David Howellsd84f4f92008-11-14 10:39:23 +1100583
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 if (ret < 0)
585 goto error;
David Howellsbb952bb2008-11-14 10:39:20 +1100586 goto reget_creds;
David Howells3a505972012-10-02 19:24:29 +0100587 } else if (cred->session_keyring ==
David Howells3ecf1b42011-08-22 14:08:43 +0100588 cred->user->session_keyring &&
589 lflags & KEY_LOOKUP_CREATE) {
590 ret = join_session_keyring(NULL);
591 if (ret < 0)
592 goto error;
593 goto reget_creds;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 }
595
David Howells3e301482005-06-23 22:00:56 -0700596 rcu_read_lock();
David Howells3a505972012-10-02 19:24:29 +0100597 key = rcu_dereference(cred->session_keyring);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 atomic_inc(&key->usage);
David Howells3e301482005-06-23 22:00:56 -0700599 rcu_read_unlock();
David Howells664cceb2005-09-28 17:03:15 +0100600 key_ref = make_key_ref(key, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 break;
602
603 case KEY_SPEC_USER_KEYRING:
David Howellsb6dff3e2008-11-14 10:39:16 +1100604 if (!cred->user->uid_keyring) {
David Howells8bbf49762008-11-14 10:39:14 +1100605 ret = install_user_keyrings();
David Howells69664cf2008-04-29 01:01:31 -0700606 if (ret < 0)
607 goto error;
608 }
609
David Howellsb6dff3e2008-11-14 10:39:16 +1100610 key = cred->user->uid_keyring;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 atomic_inc(&key->usage);
David Howells664cceb2005-09-28 17:03:15 +0100612 key_ref = make_key_ref(key, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 break;
614
615 case KEY_SPEC_USER_SESSION_KEYRING:
David Howellsb6dff3e2008-11-14 10:39:16 +1100616 if (!cred->user->session_keyring) {
David Howells8bbf49762008-11-14 10:39:14 +1100617 ret = install_user_keyrings();
David Howells69664cf2008-04-29 01:01:31 -0700618 if (ret < 0)
619 goto error;
620 }
621
David Howellsb6dff3e2008-11-14 10:39:16 +1100622 key = cred->user->session_keyring;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 atomic_inc(&key->usage);
David Howells664cceb2005-09-28 17:03:15 +0100624 key_ref = make_key_ref(key, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 break;
626
627 case KEY_SPEC_GROUP_KEYRING:
628 /* group keyrings are not yet supported */
Dan Carpenter4d09ec02010-05-17 14:42:35 +0100629 key_ref = ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 goto error;
631
David Howellsb5f545c2006-01-08 01:02:47 -0800632 case KEY_SPEC_REQKEY_AUTH_KEY:
David Howellsb6dff3e2008-11-14 10:39:16 +1100633 key = cred->request_key_auth;
David Howellsb5f545c2006-01-08 01:02:47 -0800634 if (!key)
635 goto error;
636
637 atomic_inc(&key->usage);
638 key_ref = make_key_ref(key, 1);
639 break;
640
David Howells8bbf49762008-11-14 10:39:14 +1100641 case KEY_SPEC_REQUESTOR_KEYRING:
David Howellsb6dff3e2008-11-14 10:39:16 +1100642 if (!cred->request_key_auth)
David Howells8bbf49762008-11-14 10:39:14 +1100643 goto error;
644
David Howellsb6dff3e2008-11-14 10:39:16 +1100645 down_read(&cred->request_key_auth->sem);
Dan Carpenterf67dabb2012-03-06 13:32:16 +0000646 if (test_bit(KEY_FLAG_REVOKED,
647 &cred->request_key_auth->flags)) {
David Howells8bbf49762008-11-14 10:39:14 +1100648 key_ref = ERR_PTR(-EKEYREVOKED);
649 key = NULL;
650 } else {
David Howellsb6dff3e2008-11-14 10:39:16 +1100651 rka = cred->request_key_auth->payload.data;
David Howells8bbf49762008-11-14 10:39:14 +1100652 key = rka->dest_keyring;
653 atomic_inc(&key->usage);
654 }
David Howellsb6dff3e2008-11-14 10:39:16 +1100655 up_read(&cred->request_key_auth->sem);
David Howells8bbf49762008-11-14 10:39:14 +1100656 if (!key)
657 goto error;
658 key_ref = make_key_ref(key, 1);
659 break;
660
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 default:
David Howells664cceb2005-09-28 17:03:15 +0100662 key_ref = ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 if (id < 1)
664 goto error;
665
666 key = key_lookup(id);
David Howells664cceb2005-09-28 17:03:15 +0100667 if (IS_ERR(key)) {
David Howellse231c2e2008-02-07 00:15:26 -0800668 key_ref = ERR_CAST(key);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 goto error;
David Howells664cceb2005-09-28 17:03:15 +0100670 }
671
672 key_ref = make_key_ref(key, 0);
673
674 /* check to see if we possess the key */
675 skey_ref = search_process_keyrings(key->type, key,
676 lookup_user_key_possessed,
David Howellsd84f4f92008-11-14 10:39:23 +1100677 cred);
David Howells664cceb2005-09-28 17:03:15 +0100678
679 if (!IS_ERR(skey_ref)) {
680 key_put(key);
681 key_ref = skey_ref;
682 }
683
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 break;
685 }
686
David Howells55931222009-09-02 09:13:45 +0100687 /* unlink does not use the nominated key in any way, so can skip all
688 * the permission checks as it is only concerned with the keyring */
689 if (lflags & KEY_LOOKUP_FOR_UNLINK) {
690 ret = 0;
691 goto error;
692 }
693
694 if (!(lflags & KEY_LOOKUP_PARTIAL)) {
David Howells76181c12007-10-16 23:29:46 -0700695 ret = wait_for_key_construction(key, true);
696 switch (ret) {
697 case -ERESTARTSYS:
698 goto invalid_key;
699 default:
700 if (perm)
701 goto invalid_key;
702 case 0:
703 break;
704 }
705 } else if (perm) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 ret = key_validate(key);
707 if (ret < 0)
708 goto invalid_key;
709 }
710
711 ret = -EIO;
David Howells55931222009-09-02 09:13:45 +0100712 if (!(lflags & KEY_LOOKUP_PARTIAL) &&
713 !test_bit(KEY_FLAG_INSTANTIATED, &key->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 goto invalid_key;
715
David Howells3e301482005-06-23 22:00:56 -0700716 /* check the permissions */
David Howellsd84f4f92008-11-14 10:39:23 +1100717 ret = key_task_permission(key_ref, cred, perm);
David Howells29db9192005-10-30 15:02:44 -0800718 if (ret < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 goto invalid_key;
720
David Howells31d5a792012-05-11 10:56:56 +0100721 key->last_used_at = current_kernel_time().tv_sec;
722
David Howells664cceb2005-09-28 17:03:15 +0100723error:
David Howellsbb952bb2008-11-14 10:39:20 +1100724 put_cred(cred);
David Howells664cceb2005-09-28 17:03:15 +0100725 return key_ref;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726
David Howells664cceb2005-09-28 17:03:15 +0100727invalid_key:
728 key_ref_put(key_ref);
729 key_ref = ERR_PTR(ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 goto error;
731
David Howellsbb952bb2008-11-14 10:39:20 +1100732 /* if we attempted to install a keyring, then it may have caused new
733 * creds to be installed */
734reget_creds:
735 put_cred(cred);
736 goto try_again;
David Howellsa8b17ed2011-01-20 16:38:27 +0000737}
David Howellsbb952bb2008-11-14 10:39:20 +1100738
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739/*
David Howells973c9f42011-01-20 16:38:33 +0000740 * Join the named keyring as the session keyring if possible else attempt to
741 * create a new one of that name and join that.
742 *
743 * If the name is NULL, an empty anonymous keyring will be installed as the
744 * session keyring.
745 *
746 * Named session keyrings are joined with a semaphore held to prevent the
747 * keyrings from going away whilst the attempt is made to going them and also
748 * to prevent a race in creating compatible session keyrings.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 */
750long join_session_keyring(const char *name)
751{
David Howellsd84f4f92008-11-14 10:39:23 +1100752 const struct cred *old;
753 struct cred *new;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 struct key *keyring;
David Howellsd84f4f92008-11-14 10:39:23 +1100755 long ret, serial;
756
David Howellsd84f4f92008-11-14 10:39:23 +1100757 new = prepare_creds();
758 if (!new)
759 return -ENOMEM;
760 old = current_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761
762 /* if no name is provided, install an anonymous keyring */
763 if (!name) {
David Howellsd84f4f92008-11-14 10:39:23 +1100764 ret = install_session_keyring_to_cred(new, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 if (ret < 0)
766 goto error;
767
David Howells3a505972012-10-02 19:24:29 +0100768 serial = new->session_keyring->serial;
David Howellsd84f4f92008-11-14 10:39:23 +1100769 ret = commit_creds(new);
770 if (ret == 0)
771 ret = serial;
772 goto okay;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 }
774
775 /* allow the user to join or create a named keyring */
Ingo Molnarbb003072006-03-22 00:09:14 -0800776 mutex_lock(&key_session_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777
778 /* look for an existing keyring of this name */
David Howells69664cf2008-04-29 01:01:31 -0700779 keyring = find_keyring_by_name(name, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 if (PTR_ERR(keyring) == -ENOKEY) {
781 /* not found - try and create a new one */
David Howells96b5c8f2012-10-02 19:24:56 +0100782 keyring = keyring_alloc(
783 name, old->uid, old->gid, old,
784 KEY_POS_ALL | KEY_USR_VIEW | KEY_USR_READ | KEY_USR_LINK,
785 KEY_ALLOC_IN_QUOTA, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 if (IS_ERR(keyring)) {
787 ret = PTR_ERR(keyring);
David Howellsbcf945d2005-08-04 13:07:06 -0700788 goto error2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 }
David Howellsd84f4f92008-11-14 10:39:23 +1100790 } else if (IS_ERR(keyring)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 ret = PTR_ERR(keyring);
792 goto error2;
David Howells3a505972012-10-02 19:24:29 +0100793 } else if (keyring == new->session_keyring) {
794 ret = 0;
795 goto error2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 }
797
798 /* we've got a keyring - now to install it */
David Howellsd84f4f92008-11-14 10:39:23 +1100799 ret = install_session_keyring_to_cred(new, keyring);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 if (ret < 0)
801 goto error2;
802
David Howellsd84f4f92008-11-14 10:39:23 +1100803 commit_creds(new);
804 mutex_unlock(&key_session_mutex);
805
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 ret = keyring->serial;
807 key_put(keyring);
David Howellsd84f4f92008-11-14 10:39:23 +1100808okay:
809 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810
David Howells664cceb2005-09-28 17:03:15 +0100811error2:
Ingo Molnarbb003072006-03-22 00:09:14 -0800812 mutex_unlock(&key_session_mutex);
David Howells664cceb2005-09-28 17:03:15 +0100813error:
David Howellsd84f4f92008-11-14 10:39:23 +1100814 abort_creds(new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 return ret;
David Howellsd84f4f92008-11-14 10:39:23 +1100816}
David Howellsee18d642009-09-02 09:14:21 +0100817
818/*
David Howells973c9f42011-01-20 16:38:33 +0000819 * Replace a process's session keyring on behalf of one of its children when
820 * the target process is about to resume userspace execution.
David Howellsee18d642009-09-02 09:14:21 +0100821 */
Al Viro67d12142012-06-27 11:07:19 +0400822void key_change_session_keyring(struct callback_head *twork)
David Howellsee18d642009-09-02 09:14:21 +0100823{
Oleg Nesterov413cd3d2012-05-11 10:59:08 +1000824 const struct cred *old = current_cred();
Al Viro67d12142012-06-27 11:07:19 +0400825 struct cred *new = container_of(twork, struct cred, rcu);
David Howellsee18d642009-09-02 09:14:21 +0100826
Oleg Nesterov413cd3d2012-05-11 10:59:08 +1000827 if (unlikely(current->flags & PF_EXITING)) {
828 put_cred(new);
David Howellsee18d642009-09-02 09:14:21 +0100829 return;
Oleg Nesterov413cd3d2012-05-11 10:59:08 +1000830 }
David Howellsee18d642009-09-02 09:14:21 +0100831
David Howellsee18d642009-09-02 09:14:21 +0100832 new-> uid = old-> uid;
833 new-> euid = old-> euid;
834 new-> suid = old-> suid;
835 new->fsuid = old->fsuid;
836 new-> gid = old-> gid;
837 new-> egid = old-> egid;
838 new-> sgid = old-> sgid;
839 new->fsgid = old->fsgid;
840 new->user = get_uid(old->user);
Eric W. Biederman0093ccb2011-11-16 21:52:53 -0800841 new->user_ns = get_user_ns(new->user_ns);
David Howellsee18d642009-09-02 09:14:21 +0100842 new->group_info = get_group_info(old->group_info);
843
844 new->securebits = old->securebits;
845 new->cap_inheritable = old->cap_inheritable;
846 new->cap_permitted = old->cap_permitted;
847 new->cap_effective = old->cap_effective;
848 new->cap_bset = old->cap_bset;
849
850 new->jit_keyring = old->jit_keyring;
851 new->thread_keyring = key_get(old->thread_keyring);
David Howells3a505972012-10-02 19:24:29 +0100852 new->process_keyring = key_get(old->process_keyring);
David Howellsee18d642009-09-02 09:14:21 +0100853
854 security_transfer_creds(new, old);
855
856 commit_creds(new);
857}