blob: fb767c6cd99f6a92da8fa989999a18988bce1a19 [file] [log] [blame]
David Howells973c9f42011-01-20 16:38:33 +00001/* Userspace key control operations
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 *
David Howells3e301482005-06-23 22:00:56 -07003 * Copyright (C) 2004-5 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>
15#include <linux/slab.h>
16#include <linux/syscalls.h>
Bryan Schumaker59e6b9c2012-02-24 14:14:50 -050017#include <linux/key.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/keyctl.h>
19#include <linux/fs.h>
Randy.Dunlapc59ede72006-01-11 12:17:46 -080020#include <linux/capability.h>
Davi Arnaut0cb409d2006-03-24 03:18:43 -080021#include <linux/string.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/err.h>
David Howells38bbca62008-04-29 01:01:19 -070023#include <linux/vmalloc.h>
David Howells70a5bb72008-04-29 01:01:26 -070024#include <linux/security.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <asm/uaccess.h>
26#include "internal.h"
27
Davi Arnaut0cb409d2006-03-24 03:18:43 -080028static int key_get_type_from_user(char *type,
29 const char __user *_type,
30 unsigned len)
31{
32 int ret;
33
34 ret = strncpy_from_user(type, _type, len);
Davi Arnaut0cb409d2006-03-24 03:18:43 -080035 if (ret < 0)
Dan Carpenter4303ef12010-06-11 17:30:05 +010036 return ret;
Davi Arnaut0cb409d2006-03-24 03:18:43 -080037 if (ret == 0 || ret >= len)
38 return -EINVAL;
Davi Arnaut0cb409d2006-03-24 03:18:43 -080039 if (type[0] == '.')
40 return -EPERM;
Davi Arnaut0cb409d2006-03-24 03:18:43 -080041 type[len - 1] = '\0';
Davi Arnaut0cb409d2006-03-24 03:18:43 -080042 return 0;
43}
44
Linus Torvalds1da177e2005-04-16 15:20:36 -070045/*
David Howells973c9f42011-01-20 16:38:33 +000046 * Extract the description of a new key from userspace and either add it as a
47 * new key to the specified keyring or update a matching key in that keyring.
48 *
49 * The keyring must be writable so that we can attach the key to it.
50 *
51 * If successful, the new key's serial number is returned, otherwise an error
52 * code is returned.
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 */
Heiko Carstens1e7bfb22009-01-14 14:14:29 +010054SYSCALL_DEFINE5(add_key, const char __user *, _type,
55 const char __user *, _description,
56 const void __user *, _payload,
57 size_t, plen,
58 key_serial_t, ringid)
Linus Torvalds1da177e2005-04-16 15:20:36 -070059{
David Howells664cceb2005-09-28 17:03:15 +010060 key_ref_t keyring_ref, key_ref;
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 char type[32], *description;
62 void *payload;
Davi Arnaut0cb409d2006-03-24 03:18:43 -080063 long ret;
David Howells38bbca62008-04-29 01:01:19 -070064 bool vm;
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
66 ret = -EINVAL;
David Howells38bbca62008-04-29 01:01:19 -070067 if (plen > 1024 * 1024 - 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 goto error;
69
70 /* draw all the data into kernel space */
Davi Arnaut0cb409d2006-03-24 03:18:43 -080071 ret = key_get_type_from_user(type, _type, sizeof(type));
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 if (ret < 0)
73 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
Davi Arnaut0cb409d2006-03-24 03:18:43 -080075 description = strndup_user(_description, PAGE_SIZE);
76 if (IS_ERR(description)) {
77 ret = PTR_ERR(description);
David Howells3e301482005-06-23 22:00:56 -070078 goto error;
Davi Arnaut0cb409d2006-03-24 03:18:43 -080079 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
81 /* pull the payload in if one was supplied */
82 payload = NULL;
83
David Howells38bbca62008-04-29 01:01:19 -070084 vm = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 if (_payload) {
86 ret = -ENOMEM;
87 payload = kmalloc(plen, GFP_KERNEL);
David Howells38bbca62008-04-29 01:01:19 -070088 if (!payload) {
89 if (plen <= PAGE_SIZE)
90 goto error2;
91 vm = true;
92 payload = vmalloc(plen);
93 if (!payload)
94 goto error2;
95 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
97 ret = -EFAULT;
98 if (copy_from_user(payload, _payload, plen) != 0)
99 goto error3;
100 }
101
102 /* find the target keyring (which must be writable) */
David Howells55931222009-09-02 09:13:45 +0100103 keyring_ref = lookup_user_key(ringid, KEY_LOOKUP_CREATE, KEY_WRITE);
David Howells664cceb2005-09-28 17:03:15 +0100104 if (IS_ERR(keyring_ref)) {
105 ret = PTR_ERR(keyring_ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 goto error3;
107 }
108
109 /* create or update the requested key and add it to the target
110 * keyring */
David Howells664cceb2005-09-28 17:03:15 +0100111 key_ref = key_create_or_update(keyring_ref, type, description,
Arun Raghavan6b79ccb2008-04-29 01:01:28 -0700112 payload, plen, KEY_PERM_UNDEF,
113 KEY_ALLOC_IN_QUOTA);
David Howells664cceb2005-09-28 17:03:15 +0100114 if (!IS_ERR(key_ref)) {
115 ret = key_ref_to_ptr(key_ref)->serial;
116 key_ref_put(key_ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 }
118 else {
David Howells664cceb2005-09-28 17:03:15 +0100119 ret = PTR_ERR(key_ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 }
121
David Howells664cceb2005-09-28 17:03:15 +0100122 key_ref_put(keyring_ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 error3:
David Howells38bbca62008-04-29 01:01:19 -0700124 if (!vm)
125 kfree(payload);
126 else
127 vfree(payload);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 error2:
129 kfree(description);
130 error:
131 return ret;
David Howellsa8b17ed2011-01-20 16:38:27 +0000132}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134/*
David Howells973c9f42011-01-20 16:38:33 +0000135 * Search the process keyrings and keyring trees linked from those for a
136 * matching key. Keyrings must have appropriate Search permission to be
137 * searched.
138 *
139 * If a key is found, it will be attached to the destination keyring if there's
140 * one specified and the serial number of the key will be returned.
141 *
142 * If no key is found, /sbin/request-key will be invoked if _callout_info is
143 * non-NULL in an attempt to create a key. The _callout_info string will be
144 * passed to /sbin/request-key to aid with completing the request. If the
145 * _callout_info string is "" then it will be changed to "-".
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 */
Heiko Carstens1e7bfb22009-01-14 14:14:29 +0100147SYSCALL_DEFINE4(request_key, const char __user *, _type,
148 const char __user *, _description,
149 const char __user *, _callout_info,
150 key_serial_t, destringid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151{
152 struct key_type *ktype;
David Howells664cceb2005-09-28 17:03:15 +0100153 struct key *key;
154 key_ref_t dest_ref;
David Howells4a38e122008-04-29 01:01:24 -0700155 size_t callout_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 char type[32], *description, *callout_info;
Davi Arnaut0cb409d2006-03-24 03:18:43 -0800157 long ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
159 /* pull the type into kernel space */
Davi Arnaut0cb409d2006-03-24 03:18:43 -0800160 ret = key_get_type_from_user(type, _type, sizeof(type));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 if (ret < 0)
162 goto error;
David Howells1260f802005-08-04 11:50:01 +0100163
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 /* pull the description into kernel space */
Davi Arnaut0cb409d2006-03-24 03:18:43 -0800165 description = strndup_user(_description, PAGE_SIZE);
166 if (IS_ERR(description)) {
167 ret = PTR_ERR(description);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 goto error;
Davi Arnaut0cb409d2006-03-24 03:18:43 -0800169 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
171 /* pull the callout info into kernel space */
172 callout_info = NULL;
David Howells4a38e122008-04-29 01:01:24 -0700173 callout_len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 if (_callout_info) {
Davi Arnaut0cb409d2006-03-24 03:18:43 -0800175 callout_info = strndup_user(_callout_info, PAGE_SIZE);
176 if (IS_ERR(callout_info)) {
177 ret = PTR_ERR(callout_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 goto error2;
Davi Arnaut0cb409d2006-03-24 03:18:43 -0800179 }
David Howells4a38e122008-04-29 01:01:24 -0700180 callout_len = strlen(callout_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 }
182
183 /* get the destination keyring if specified */
David Howells664cceb2005-09-28 17:03:15 +0100184 dest_ref = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 if (destringid) {
David Howells55931222009-09-02 09:13:45 +0100186 dest_ref = lookup_user_key(destringid, KEY_LOOKUP_CREATE,
187 KEY_WRITE);
David Howells664cceb2005-09-28 17:03:15 +0100188 if (IS_ERR(dest_ref)) {
189 ret = PTR_ERR(dest_ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 goto error3;
191 }
192 }
193
194 /* find the key type */
195 ktype = key_type_lookup(type);
196 if (IS_ERR(ktype)) {
197 ret = PTR_ERR(ktype);
198 goto error4;
199 }
200
201 /* do the search */
David Howells4a38e122008-04-29 01:01:24 -0700202 key = request_key_and_link(ktype, description, callout_info,
203 callout_len, NULL, key_ref_to_ptr(dest_ref),
David Howells7e047ef2006-06-26 00:24:50 -0700204 KEY_ALLOC_IN_QUOTA);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 if (IS_ERR(key)) {
206 ret = PTR_ERR(key);
207 goto error5;
208 }
209
David Howells4aab1e82011-03-11 17:57:33 +0000210 /* wait for the key to finish being constructed */
211 ret = wait_for_key_construction(key, 1);
212 if (ret < 0)
213 goto error6;
214
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 ret = key->serial;
216
David Howells4aab1e82011-03-11 17:57:33 +0000217error6:
David Howells3e301482005-06-23 22:00:56 -0700218 key_put(key);
Justin P. Mattockc5b60b52010-04-21 00:02:11 -0700219error5:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 key_type_put(ktype);
Justin P. Mattockc5b60b52010-04-21 00:02:11 -0700221error4:
David Howells664cceb2005-09-28 17:03:15 +0100222 key_ref_put(dest_ref);
Justin P. Mattockc5b60b52010-04-21 00:02:11 -0700223error3:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 kfree(callout_info);
Justin P. Mattockc5b60b52010-04-21 00:02:11 -0700225error2:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 kfree(description);
Justin P. Mattockc5b60b52010-04-21 00:02:11 -0700227error:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 return ret;
David Howellsa8b17ed2011-01-20 16:38:27 +0000229}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231/*
David Howells973c9f42011-01-20 16:38:33 +0000232 * Get the ID of the specified process keyring.
233 *
234 * The requested keyring must have search permission to be found.
235 *
236 * If successful, the ID of the requested keyring will be returned.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 */
238long keyctl_get_keyring_ID(key_serial_t id, int create)
239{
David Howells664cceb2005-09-28 17:03:15 +0100240 key_ref_t key_ref;
David Howells55931222009-09-02 09:13:45 +0100241 unsigned long lflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 long ret;
243
David Howells55931222009-09-02 09:13:45 +0100244 lflags = create ? KEY_LOOKUP_CREATE : 0;
245 key_ref = lookup_user_key(id, lflags, KEY_SEARCH);
David Howells664cceb2005-09-28 17:03:15 +0100246 if (IS_ERR(key_ref)) {
247 ret = PTR_ERR(key_ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 goto error;
249 }
250
David Howells664cceb2005-09-28 17:03:15 +0100251 ret = key_ref_to_ptr(key_ref)->serial;
252 key_ref_put(key_ref);
Justin P. Mattockc5b60b52010-04-21 00:02:11 -0700253error:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 return ret;
David Howells973c9f42011-01-20 16:38:33 +0000255}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257/*
David Howells973c9f42011-01-20 16:38:33 +0000258 * Join a (named) session keyring.
259 *
260 * Create and join an anonymous session keyring or join a named session
261 * keyring, creating it if necessary. A named session keyring must have Search
262 * permission for it to be joined. Session keyrings without this permit will
263 * be skipped over.
264 *
265 * If successful, the ID of the joined session keyring will be returned.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 */
267long keyctl_join_session_keyring(const char __user *_name)
268{
269 char *name;
Davi Arnaut0cb409d2006-03-24 03:18:43 -0800270 long ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271
272 /* fetch the name from userspace */
273 name = NULL;
274 if (_name) {
Davi Arnaut0cb409d2006-03-24 03:18:43 -0800275 name = strndup_user(_name, PAGE_SIZE);
276 if (IS_ERR(name)) {
277 ret = PTR_ERR(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 goto error;
Davi Arnaut0cb409d2006-03-24 03:18:43 -0800279 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 }
281
282 /* join the session */
283 ret = join_session_keyring(name);
Vegard Nossum0d54ee12009-01-17 17:45:45 +0100284 kfree(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285
Justin P. Mattockc5b60b52010-04-21 00:02:11 -0700286error:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 return ret;
David Howellsa8b17ed2011-01-20 16:38:27 +0000288}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290/*
David Howells973c9f42011-01-20 16:38:33 +0000291 * Update a key's data payload from the given data.
292 *
293 * The key must grant the caller Write permission and the key type must support
294 * updating for this to work. A negative key can be positively instantiated
295 * with this call.
296 *
297 * If successful, 0 will be returned. If the key type does not support
298 * updating, then -EOPNOTSUPP will be returned.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 */
300long keyctl_update_key(key_serial_t id,
301 const void __user *_payload,
302 size_t plen)
303{
David Howells664cceb2005-09-28 17:03:15 +0100304 key_ref_t key_ref;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 void *payload;
306 long ret;
307
308 ret = -EINVAL;
309 if (plen > PAGE_SIZE)
310 goto error;
311
312 /* pull the payload in if one was supplied */
313 payload = NULL;
314 if (_payload) {
315 ret = -ENOMEM;
316 payload = kmalloc(plen, GFP_KERNEL);
317 if (!payload)
318 goto error;
319
320 ret = -EFAULT;
321 if (copy_from_user(payload, _payload, plen) != 0)
322 goto error2;
323 }
324
325 /* find the target key (which must be writable) */
David Howells55931222009-09-02 09:13:45 +0100326 key_ref = lookup_user_key(id, 0, KEY_WRITE);
David Howells664cceb2005-09-28 17:03:15 +0100327 if (IS_ERR(key_ref)) {
328 ret = PTR_ERR(key_ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 goto error2;
330 }
331
332 /* update the key */
David Howells664cceb2005-09-28 17:03:15 +0100333 ret = key_update(key_ref, payload, plen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
David Howells664cceb2005-09-28 17:03:15 +0100335 key_ref_put(key_ref);
Justin P. Mattockc5b60b52010-04-21 00:02:11 -0700336error2:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 kfree(payload);
Justin P. Mattockc5b60b52010-04-21 00:02:11 -0700338error:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 return ret;
David Howellsa8b17ed2011-01-20 16:38:27 +0000340}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342/*
David Howells973c9f42011-01-20 16:38:33 +0000343 * Revoke a key.
344 *
345 * The key must be grant the caller Write or Setattr permission for this to
346 * work. The key type should give up its quota claim when revoked. The key
347 * and any links to the key will be automatically garbage collected after a
348 * certain amount of time (/proc/sys/kernel/keys/gc_delay).
349 *
350 * If successful, 0 is returned.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 */
352long keyctl_revoke_key(key_serial_t id)
353{
David Howells664cceb2005-09-28 17:03:15 +0100354 key_ref_t key_ref;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 long ret;
356
David Howells55931222009-09-02 09:13:45 +0100357 key_ref = lookup_user_key(id, 0, KEY_WRITE);
David Howells664cceb2005-09-28 17:03:15 +0100358 if (IS_ERR(key_ref)) {
359 ret = PTR_ERR(key_ref);
David Howells0c2c9a32009-09-02 09:13:50 +0100360 if (ret != -EACCES)
361 goto error;
362 key_ref = lookup_user_key(id, 0, KEY_SETATTR);
363 if (IS_ERR(key_ref)) {
364 ret = PTR_ERR(key_ref);
365 goto error;
366 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 }
368
David Howells664cceb2005-09-28 17:03:15 +0100369 key_revoke(key_ref_to_ptr(key_ref));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 ret = 0;
371
David Howells664cceb2005-09-28 17:03:15 +0100372 key_ref_put(key_ref);
Justin P. Mattockc5b60b52010-04-21 00:02:11 -0700373error:
David Howells1260f802005-08-04 11:50:01 +0100374 return ret;
David Howellsa8b17ed2011-01-20 16:38:27 +0000375}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377/*
David Howells973c9f42011-01-20 16:38:33 +0000378 * Clear the specified keyring, creating an empty process keyring if one of the
379 * special keyring IDs is used.
380 *
381 * The keyring must grant the caller Write permission for this to work. If
382 * successful, 0 will be returned.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 */
384long keyctl_keyring_clear(key_serial_t ringid)
385{
David Howells664cceb2005-09-28 17:03:15 +0100386 key_ref_t keyring_ref;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 long ret;
388
David Howells55931222009-09-02 09:13:45 +0100389 keyring_ref = lookup_user_key(ringid, KEY_LOOKUP_CREATE, KEY_WRITE);
David Howells664cceb2005-09-28 17:03:15 +0100390 if (IS_ERR(keyring_ref)) {
391 ret = PTR_ERR(keyring_ref);
David Howells700920e2012-01-18 15:31:45 +0000392
393 /* Root is permitted to invalidate certain special keyrings */
394 if (capable(CAP_SYS_ADMIN)) {
395 keyring_ref = lookup_user_key(ringid, 0, 0);
396 if (IS_ERR(keyring_ref))
397 goto error;
398 if (test_bit(KEY_FLAG_ROOT_CAN_CLEAR,
399 &key_ref_to_ptr(keyring_ref)->flags))
400 goto clear;
401 goto error_put;
402 }
403
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 goto error;
405 }
406
David Howells700920e2012-01-18 15:31:45 +0000407clear:
David Howells664cceb2005-09-28 17:03:15 +0100408 ret = keyring_clear(key_ref_to_ptr(keyring_ref));
David Howells700920e2012-01-18 15:31:45 +0000409error_put:
David Howells664cceb2005-09-28 17:03:15 +0100410 key_ref_put(keyring_ref);
Justin P. Mattockc5b60b52010-04-21 00:02:11 -0700411error:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 return ret;
David Howellsa8b17ed2011-01-20 16:38:27 +0000413}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415/*
David Howells973c9f42011-01-20 16:38:33 +0000416 * Create a link from a keyring to a key if there's no matching key in the
417 * keyring, otherwise replace the link to the matching key with a link to the
418 * new key.
419 *
420 * The key must grant the caller Link permission and the the keyring must grant
421 * the caller Write permission. Furthermore, if an additional link is created,
422 * the keyring's quota will be extended.
423 *
424 * If successful, 0 will be returned.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 */
426long keyctl_keyring_link(key_serial_t id, key_serial_t ringid)
427{
David Howells664cceb2005-09-28 17:03:15 +0100428 key_ref_t keyring_ref, key_ref;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 long ret;
430
David Howells55931222009-09-02 09:13:45 +0100431 keyring_ref = lookup_user_key(ringid, KEY_LOOKUP_CREATE, KEY_WRITE);
David Howells664cceb2005-09-28 17:03:15 +0100432 if (IS_ERR(keyring_ref)) {
433 ret = PTR_ERR(keyring_ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 goto error;
435 }
436
David Howells55931222009-09-02 09:13:45 +0100437 key_ref = lookup_user_key(id, KEY_LOOKUP_CREATE, KEY_LINK);
David Howells664cceb2005-09-28 17:03:15 +0100438 if (IS_ERR(key_ref)) {
439 ret = PTR_ERR(key_ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 goto error2;
441 }
442
David Howells664cceb2005-09-28 17:03:15 +0100443 ret = key_link(key_ref_to_ptr(keyring_ref), key_ref_to_ptr(key_ref));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444
David Howells664cceb2005-09-28 17:03:15 +0100445 key_ref_put(key_ref);
Justin P. Mattockc5b60b52010-04-21 00:02:11 -0700446error2:
David Howells664cceb2005-09-28 17:03:15 +0100447 key_ref_put(keyring_ref);
Justin P. Mattockc5b60b52010-04-21 00:02:11 -0700448error:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 return ret;
David Howellsa8b17ed2011-01-20 16:38:27 +0000450}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452/*
David Howells973c9f42011-01-20 16:38:33 +0000453 * Unlink a key from a keyring.
454 *
455 * The keyring must grant the caller Write permission for this to work; the key
456 * itself need not grant the caller anything. If the last link to a key is
457 * removed then that key will be scheduled for destruction.
458 *
459 * If successful, 0 will be returned.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 */
461long keyctl_keyring_unlink(key_serial_t id, key_serial_t ringid)
462{
David Howells664cceb2005-09-28 17:03:15 +0100463 key_ref_t keyring_ref, key_ref;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 long ret;
465
David Howells55931222009-09-02 09:13:45 +0100466 keyring_ref = lookup_user_key(ringid, 0, KEY_WRITE);
David Howells664cceb2005-09-28 17:03:15 +0100467 if (IS_ERR(keyring_ref)) {
468 ret = PTR_ERR(keyring_ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 goto error;
470 }
471
David Howells55931222009-09-02 09:13:45 +0100472 key_ref = lookup_user_key(id, KEY_LOOKUP_FOR_UNLINK, 0);
David Howells664cceb2005-09-28 17:03:15 +0100473 if (IS_ERR(key_ref)) {
474 ret = PTR_ERR(key_ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 goto error2;
476 }
477
David Howells664cceb2005-09-28 17:03:15 +0100478 ret = key_unlink(key_ref_to_ptr(keyring_ref), key_ref_to_ptr(key_ref));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
David Howells664cceb2005-09-28 17:03:15 +0100480 key_ref_put(key_ref);
Justin P. Mattockc5b60b52010-04-21 00:02:11 -0700481error2:
David Howells664cceb2005-09-28 17:03:15 +0100482 key_ref_put(keyring_ref);
Justin P. Mattockc5b60b52010-04-21 00:02:11 -0700483error:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 return ret;
David Howellsa8b17ed2011-01-20 16:38:27 +0000485}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487/*
David Howells973c9f42011-01-20 16:38:33 +0000488 * Return a description of a key to userspace.
489 *
490 * The key must grant the caller View permission for this to work.
491 *
492 * If there's a buffer, we place up to buflen bytes of data into it formatted
493 * in the following way:
494 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 * type;uid;gid;perm;description<NUL>
David Howells973c9f42011-01-20 16:38:33 +0000496 *
497 * If successful, we return the amount of description available, irrespective
498 * of how much we may have copied into the buffer.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 */
500long keyctl_describe_key(key_serial_t keyid,
501 char __user *buffer,
502 size_t buflen)
503{
David Howells3e301482005-06-23 22:00:56 -0700504 struct key *key, *instkey;
David Howells664cceb2005-09-28 17:03:15 +0100505 key_ref_t key_ref;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 char *tmpbuf;
507 long ret;
508
David Howells55931222009-09-02 09:13:45 +0100509 key_ref = lookup_user_key(keyid, KEY_LOOKUP_PARTIAL, KEY_VIEW);
David Howells664cceb2005-09-28 17:03:15 +0100510 if (IS_ERR(key_ref)) {
David Howells3e301482005-06-23 22:00:56 -0700511 /* viewing a key under construction is permitted if we have the
512 * authorisation token handy */
David Howells664cceb2005-09-28 17:03:15 +0100513 if (PTR_ERR(key_ref) == -EACCES) {
David Howells3e301482005-06-23 22:00:56 -0700514 instkey = key_get_instantiation_authkey(keyid);
515 if (!IS_ERR(instkey)) {
516 key_put(instkey);
David Howells8bbf49762008-11-14 10:39:14 +1100517 key_ref = lookup_user_key(keyid,
David Howells55931222009-09-02 09:13:45 +0100518 KEY_LOOKUP_PARTIAL,
519 0);
David Howells664cceb2005-09-28 17:03:15 +0100520 if (!IS_ERR(key_ref))
David Howells3e301482005-06-23 22:00:56 -0700521 goto okay;
522 }
523 }
524
David Howells664cceb2005-09-28 17:03:15 +0100525 ret = PTR_ERR(key_ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 goto error;
527 }
528
David Howells3e301482005-06-23 22:00:56 -0700529okay:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 /* calculate how much description we're going to return */
531 ret = -ENOMEM;
532 tmpbuf = kmalloc(PAGE_SIZE, GFP_KERNEL);
533 if (!tmpbuf)
534 goto error2;
535
David Howells664cceb2005-09-28 17:03:15 +0100536 key = key_ref_to_ptr(key_ref);
537
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 ret = snprintf(tmpbuf, PAGE_SIZE - 1,
David Howells664cceb2005-09-28 17:03:15 +0100539 "%s;%d;%d;%08x;%s",
David Howells94fd8402010-06-28 14:05:04 +0100540 key->type->name,
541 key->uid,
542 key->gid,
543 key->perm,
544 key->description ?: "");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
546 /* include a NUL char at the end of the data */
547 if (ret > PAGE_SIZE - 1)
548 ret = PAGE_SIZE - 1;
549 tmpbuf[ret] = 0;
550 ret++;
551
552 /* consider returning the data */
553 if (buffer && buflen > 0) {
554 if (buflen > ret)
555 buflen = ret;
556
557 if (copy_to_user(buffer, tmpbuf, buflen) != 0)
558 ret = -EFAULT;
559 }
560
561 kfree(tmpbuf);
Justin P. Mattockc5b60b52010-04-21 00:02:11 -0700562error2:
David Howells664cceb2005-09-28 17:03:15 +0100563 key_ref_put(key_ref);
Justin P. Mattockc5b60b52010-04-21 00:02:11 -0700564error:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 return ret;
David Howellsa8b17ed2011-01-20 16:38:27 +0000566}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568/*
David Howells973c9f42011-01-20 16:38:33 +0000569 * Search the specified keyring and any keyrings it links to for a matching
570 * key. Only keyrings that grant the caller Search permission will be searched
571 * (this includes the starting keyring). Only keys with Search permission can
572 * be found.
573 *
574 * If successful, the found key will be linked to the destination keyring if
575 * supplied and the key has Link permission, and the found key ID will be
576 * returned.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 */
578long keyctl_keyring_search(key_serial_t ringid,
579 const char __user *_type,
580 const char __user *_description,
581 key_serial_t destringid)
582{
583 struct key_type *ktype;
David Howells664cceb2005-09-28 17:03:15 +0100584 key_ref_t keyring_ref, key_ref, dest_ref;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 char type[32], *description;
Davi Arnaut0cb409d2006-03-24 03:18:43 -0800586 long ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587
588 /* pull the type and description into kernel space */
Davi Arnaut0cb409d2006-03-24 03:18:43 -0800589 ret = key_get_type_from_user(type, _type, sizeof(type));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 if (ret < 0)
591 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592
Davi Arnaut0cb409d2006-03-24 03:18:43 -0800593 description = strndup_user(_description, PAGE_SIZE);
594 if (IS_ERR(description)) {
595 ret = PTR_ERR(description);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 goto error;
Davi Arnaut0cb409d2006-03-24 03:18:43 -0800597 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598
599 /* get the keyring at which to begin the search */
David Howells55931222009-09-02 09:13:45 +0100600 keyring_ref = lookup_user_key(ringid, 0, KEY_SEARCH);
David Howells664cceb2005-09-28 17:03:15 +0100601 if (IS_ERR(keyring_ref)) {
602 ret = PTR_ERR(keyring_ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 goto error2;
604 }
605
606 /* get the destination keyring if specified */
David Howells664cceb2005-09-28 17:03:15 +0100607 dest_ref = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 if (destringid) {
David Howells55931222009-09-02 09:13:45 +0100609 dest_ref = lookup_user_key(destringid, KEY_LOOKUP_CREATE,
610 KEY_WRITE);
David Howells664cceb2005-09-28 17:03:15 +0100611 if (IS_ERR(dest_ref)) {
612 ret = PTR_ERR(dest_ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 goto error3;
614 }
615 }
616
617 /* find the key type */
618 ktype = key_type_lookup(type);
619 if (IS_ERR(ktype)) {
620 ret = PTR_ERR(ktype);
621 goto error4;
622 }
623
624 /* do the search */
David Howells664cceb2005-09-28 17:03:15 +0100625 key_ref = keyring_search(keyring_ref, ktype, description);
626 if (IS_ERR(key_ref)) {
627 ret = PTR_ERR(key_ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628
629 /* treat lack or presence of a negative key the same */
630 if (ret == -EAGAIN)
631 ret = -ENOKEY;
632 goto error5;
633 }
634
635 /* link the resulting key to the destination keyring if we can */
David Howells664cceb2005-09-28 17:03:15 +0100636 if (dest_ref) {
David Howells29db9192005-10-30 15:02:44 -0800637 ret = key_permission(key_ref, KEY_LINK);
638 if (ret < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 goto error6;
640
David Howells664cceb2005-09-28 17:03:15 +0100641 ret = key_link(key_ref_to_ptr(dest_ref), key_ref_to_ptr(key_ref));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 if (ret < 0)
643 goto error6;
644 }
645
David Howells664cceb2005-09-28 17:03:15 +0100646 ret = key_ref_to_ptr(key_ref)->serial;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647
Justin P. Mattockc5b60b52010-04-21 00:02:11 -0700648error6:
David Howells664cceb2005-09-28 17:03:15 +0100649 key_ref_put(key_ref);
Justin P. Mattockc5b60b52010-04-21 00:02:11 -0700650error5:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 key_type_put(ktype);
Justin P. Mattockc5b60b52010-04-21 00:02:11 -0700652error4:
David Howells664cceb2005-09-28 17:03:15 +0100653 key_ref_put(dest_ref);
Justin P. Mattockc5b60b52010-04-21 00:02:11 -0700654error3:
David Howells664cceb2005-09-28 17:03:15 +0100655 key_ref_put(keyring_ref);
Justin P. Mattockc5b60b52010-04-21 00:02:11 -0700656error2:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 kfree(description);
Justin P. Mattockc5b60b52010-04-21 00:02:11 -0700658error:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 return ret;
David Howellsa8b17ed2011-01-20 16:38:27 +0000660}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662/*
David Howells973c9f42011-01-20 16:38:33 +0000663 * Read a key's payload.
664 *
665 * The key must either grant the caller Read permission, or it must grant the
666 * caller Search permission when searched for from the process keyrings.
667 *
668 * If successful, we place up to buflen bytes of data into the buffer, if one
669 * is provided, and return the amount of data that is available in the key,
670 * irrespective of how much we copied into the buffer.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 */
672long keyctl_read_key(key_serial_t keyid, char __user *buffer, size_t buflen)
673{
David Howells664cceb2005-09-28 17:03:15 +0100674 struct key *key;
675 key_ref_t key_ref;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 long ret;
677
678 /* find the key first */
David Howells55931222009-09-02 09:13:45 +0100679 key_ref = lookup_user_key(keyid, 0, 0);
David Howells664cceb2005-09-28 17:03:15 +0100680 if (IS_ERR(key_ref)) {
681 ret = -ENOKEY;
682 goto error;
683 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684
David Howells664cceb2005-09-28 17:03:15 +0100685 key = key_ref_to_ptr(key_ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686
David Howells664cceb2005-09-28 17:03:15 +0100687 /* see if we can read it directly */
David Howells29db9192005-10-30 15:02:44 -0800688 ret = key_permission(key_ref, KEY_READ);
689 if (ret == 0)
David Howells664cceb2005-09-28 17:03:15 +0100690 goto can_read_key;
David Howells29db9192005-10-30 15:02:44 -0800691 if (ret != -EACCES)
692 goto error;
David Howells664cceb2005-09-28 17:03:15 +0100693
694 /* we can't; see if it's searchable from this process's keyrings
695 * - we automatically take account of the fact that it may be
696 * dangling off an instantiation key
697 */
698 if (!is_key_possessed(key_ref)) {
699 ret = -EACCES;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 goto error2;
701 }
702
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 /* the key is probably readable - now try to read it */
Justin P. Mattockc5b60b52010-04-21 00:02:11 -0700704can_read_key:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 ret = key_validate(key);
706 if (ret == 0) {
707 ret = -EOPNOTSUPP;
708 if (key->type->read) {
709 /* read the data with the semaphore held (since we
710 * might sleep) */
711 down_read(&key->sem);
712 ret = key->type->read(key, buffer, buflen);
713 up_read(&key->sem);
714 }
715 }
716
Justin P. Mattockc5b60b52010-04-21 00:02:11 -0700717error2:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 key_put(key);
Justin P. Mattockc5b60b52010-04-21 00:02:11 -0700719error:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 return ret;
David Howellsa8b17ed2011-01-20 16:38:27 +0000721}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723/*
David Howells973c9f42011-01-20 16:38:33 +0000724 * Change the ownership of a key
725 *
726 * The key must grant the caller Setattr permission for this to work, though
727 * the key need not be fully instantiated yet. For the UID to be changed, or
728 * for the GID to be changed to a group the caller is not a member of, the
729 * caller must have sysadmin capability. If either uid or gid is -1 then that
730 * attribute is not changed.
731 *
732 * If the UID is to be changed, the new user must have sufficient quota to
733 * accept the key. The quota deduction will be removed from the old user to
734 * the new user should the attribute be changed.
735 *
736 * If successful, 0 will be returned.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 */
738long keyctl_chown_key(key_serial_t id, uid_t uid, gid_t gid)
739{
Fredrik Tolf58016492006-06-26 00:24:51 -0700740 struct key_user *newowner, *zapowner = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 struct key *key;
David Howells664cceb2005-09-28 17:03:15 +0100742 key_ref_t key_ref;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 long ret;
744
745 ret = 0;
746 if (uid == (uid_t) -1 && gid == (gid_t) -1)
747 goto error;
748
David Howells55931222009-09-02 09:13:45 +0100749 key_ref = lookup_user_key(id, KEY_LOOKUP_CREATE | KEY_LOOKUP_PARTIAL,
750 KEY_SETATTR);
David Howells664cceb2005-09-28 17:03:15 +0100751 if (IS_ERR(key_ref)) {
752 ret = PTR_ERR(key_ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 goto error;
754 }
755
David Howells664cceb2005-09-28 17:03:15 +0100756 key = key_ref_to_ptr(key_ref);
757
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 /* make the changes with the locks held to prevent chown/chown races */
759 ret = -EACCES;
760 down_write(&key->sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761
762 if (!capable(CAP_SYS_ADMIN)) {
763 /* only the sysadmin can chown a key to some other UID */
764 if (uid != (uid_t) -1 && key->uid != uid)
Fredrik Tolf58016492006-06-26 00:24:51 -0700765 goto error_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766
767 /* only the sysadmin can set the key's GID to a group other
768 * than one of those that the current process subscribes to */
769 if (gid != (gid_t) -1 && gid != key->gid && !in_group_p(gid))
Fredrik Tolf58016492006-06-26 00:24:51 -0700770 goto error_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 }
772
Fredrik Tolf58016492006-06-26 00:24:51 -0700773 /* change the UID */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 if (uid != (uid_t) -1 && uid != key->uid) {
Fredrik Tolf58016492006-06-26 00:24:51 -0700775 ret = -ENOMEM;
Serge E. Hallyn1d1e9752009-02-26 18:27:38 -0600776 newowner = key_user_lookup(uid, current_user_ns());
Fredrik Tolf58016492006-06-26 00:24:51 -0700777 if (!newowner)
778 goto error_put;
779
780 /* transfer the quota burden to the new user */
781 if (test_bit(KEY_FLAG_IN_QUOTA, &key->flags)) {
David Howells0b77f5b2008-04-29 01:01:32 -0700782 unsigned maxkeys = (uid == 0) ?
783 key_quota_root_maxkeys : key_quota_maxkeys;
784 unsigned maxbytes = (uid == 0) ?
785 key_quota_root_maxbytes : key_quota_maxbytes;
786
Fredrik Tolf58016492006-06-26 00:24:51 -0700787 spin_lock(&newowner->lock);
David Howells0b77f5b2008-04-29 01:01:32 -0700788 if (newowner->qnkeys + 1 >= maxkeys ||
789 newowner->qnbytes + key->quotalen >= maxbytes ||
790 newowner->qnbytes + key->quotalen <
791 newowner->qnbytes)
Fredrik Tolf58016492006-06-26 00:24:51 -0700792 goto quota_overrun;
793
794 newowner->qnkeys++;
795 newowner->qnbytes += key->quotalen;
796 spin_unlock(&newowner->lock);
797
798 spin_lock(&key->user->lock);
799 key->user->qnkeys--;
800 key->user->qnbytes -= key->quotalen;
801 spin_unlock(&key->user->lock);
802 }
803
804 atomic_dec(&key->user->nkeys);
805 atomic_inc(&newowner->nkeys);
806
807 if (test_bit(KEY_FLAG_INSTANTIATED, &key->flags)) {
808 atomic_dec(&key->user->nikeys);
809 atomic_inc(&newowner->nikeys);
810 }
811
812 zapowner = key->user;
813 key->user = newowner;
814 key->uid = uid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 }
816
817 /* change the GID */
818 if (gid != (gid_t) -1)
819 key->gid = gid;
820
821 ret = 0;
822
Fredrik Tolf58016492006-06-26 00:24:51 -0700823error_put:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 up_write(&key->sem);
825 key_put(key);
Fredrik Tolf58016492006-06-26 00:24:51 -0700826 if (zapowner)
827 key_user_put(zapowner);
828error:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 return ret;
830
Fredrik Tolf58016492006-06-26 00:24:51 -0700831quota_overrun:
832 spin_unlock(&newowner->lock);
833 zapowner = newowner;
834 ret = -EDQUOT;
835 goto error_put;
David Howellsa8b17ed2011-01-20 16:38:27 +0000836}
Fredrik Tolf58016492006-06-26 00:24:51 -0700837
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838/*
David Howells973c9f42011-01-20 16:38:33 +0000839 * Change the permission mask on a key.
840 *
841 * The key must grant the caller Setattr permission for this to work, though
842 * the key need not be fully instantiated yet. If the caller does not have
843 * sysadmin capability, it may only change the permission on keys that it owns.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 */
845long keyctl_setperm_key(key_serial_t id, key_perm_t perm)
846{
847 struct key *key;
David Howells664cceb2005-09-28 17:03:15 +0100848 key_ref_t key_ref;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 long ret;
850
851 ret = -EINVAL;
David Howells664cceb2005-09-28 17:03:15 +0100852 if (perm & ~(KEY_POS_ALL | KEY_USR_ALL | KEY_GRP_ALL | KEY_OTH_ALL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 goto error;
854
David Howells55931222009-09-02 09:13:45 +0100855 key_ref = lookup_user_key(id, KEY_LOOKUP_CREATE | KEY_LOOKUP_PARTIAL,
856 KEY_SETATTR);
David Howells664cceb2005-09-28 17:03:15 +0100857 if (IS_ERR(key_ref)) {
858 ret = PTR_ERR(key_ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 goto error;
860 }
861
David Howells664cceb2005-09-28 17:03:15 +0100862 key = key_ref_to_ptr(key_ref);
863
David Howells76d8aea2005-06-23 22:00:49 -0700864 /* make the changes with the locks held to prevent chown/chmod races */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 ret = -EACCES;
866 down_write(&key->sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867
David Howells76d8aea2005-06-23 22:00:49 -0700868 /* if we're not the sysadmin, we can only change a key that we own */
David Howells47d804b2008-11-14 10:39:11 +1100869 if (capable(CAP_SYS_ADMIN) || key->uid == current_fsuid()) {
David Howells76d8aea2005-06-23 22:00:49 -0700870 key->perm = perm;
871 ret = 0;
872 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 up_write(&key->sem);
875 key_put(key);
David Howells76d8aea2005-06-23 22:00:49 -0700876error:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 return ret;
David Howellsa8b17ed2011-01-20 16:38:27 +0000878}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879
David Howells8bbf49762008-11-14 10:39:14 +1100880/*
David Howells973c9f42011-01-20 16:38:33 +0000881 * Get the destination keyring for instantiation and check that the caller has
882 * Write permission on it.
David Howells8bbf49762008-11-14 10:39:14 +1100883 */
884static long get_instantiation_keyring(key_serial_t ringid,
885 struct request_key_auth *rka,
886 struct key **_dest_keyring)
887{
888 key_ref_t dkref;
889
David Howellseca1bf52008-12-29 00:41:51 +0000890 *_dest_keyring = NULL;
891
David Howells8bbf49762008-11-14 10:39:14 +1100892 /* just return a NULL pointer if we weren't asked to make a link */
David Howellseca1bf52008-12-29 00:41:51 +0000893 if (ringid == 0)
David Howells8bbf49762008-11-14 10:39:14 +1100894 return 0;
David Howells8bbf49762008-11-14 10:39:14 +1100895
896 /* if a specific keyring is nominated by ID, then use that */
897 if (ringid > 0) {
David Howells55931222009-09-02 09:13:45 +0100898 dkref = lookup_user_key(ringid, KEY_LOOKUP_CREATE, KEY_WRITE);
David Howells8bbf49762008-11-14 10:39:14 +1100899 if (IS_ERR(dkref))
900 return PTR_ERR(dkref);
901 *_dest_keyring = key_ref_to_ptr(dkref);
902 return 0;
903 }
904
905 if (ringid == KEY_SPEC_REQKEY_AUTH_KEY)
906 return -EINVAL;
907
908 /* otherwise specify the destination keyring recorded in the
909 * authorisation key (any KEY_SPEC_*_KEYRING) */
910 if (ringid >= KEY_SPEC_REQUESTOR_KEYRING) {
David Howells21279cf2009-10-15 10:14:35 +0100911 *_dest_keyring = key_get(rka->dest_keyring);
David Howells8bbf49762008-11-14 10:39:14 +1100912 return 0;
913 }
914
915 return -ENOKEY;
916}
917
David Howellsd84f4f92008-11-14 10:39:23 +1100918/*
David Howells973c9f42011-01-20 16:38:33 +0000919 * Change the request_key authorisation key on the current process.
David Howellsd84f4f92008-11-14 10:39:23 +1100920 */
921static int keyctl_change_reqkey_auth(struct key *key)
922{
923 struct cred *new;
924
925 new = prepare_creds();
926 if (!new)
927 return -ENOMEM;
928
929 key_put(new->request_key_auth);
930 new->request_key_auth = key_get(key);
931
932 return commit_creds(new);
933}
934
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935/*
David Howellsee009e4a02011-03-07 15:06:20 +0000936 * Copy the iovec data from userspace
937 */
938static long copy_from_user_iovec(void *buffer, const struct iovec *iov,
939 unsigned ioc)
940{
941 for (; ioc > 0; ioc--) {
942 if (copy_from_user(buffer, iov->iov_base, iov->iov_len) != 0)
943 return -EFAULT;
944 buffer += iov->iov_len;
945 iov++;
946 }
947 return 0;
948}
949
950/*
David Howells973c9f42011-01-20 16:38:33 +0000951 * Instantiate a key with the specified payload and link the key into the
952 * destination keyring if one is given.
953 *
954 * The caller must have the appropriate instantiation permit set for this to
955 * work (see keyctl_assume_authority). No other permissions are required.
956 *
957 * If successful, 0 will be returned.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 */
David Howellsee009e4a02011-03-07 15:06:20 +0000959long keyctl_instantiate_key_common(key_serial_t id,
960 const struct iovec *payload_iov,
961 unsigned ioc,
962 size_t plen,
963 key_serial_t ringid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964{
David Howellsd84f4f92008-11-14 10:39:23 +1100965 const struct cred *cred = current_cred();
David Howells3e301482005-06-23 22:00:56 -0700966 struct request_key_auth *rka;
David Howells8bbf49762008-11-14 10:39:14 +1100967 struct key *instkey, *dest_keyring;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 void *payload;
969 long ret;
David Howells38bbca62008-04-29 01:01:19 -0700970 bool vm = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971
David Howellsd84f4f92008-11-14 10:39:23 +1100972 kenter("%d,,%zu,%d", id, plen, ringid);
973
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 ret = -EINVAL;
David Howells38bbca62008-04-29 01:01:19 -0700975 if (plen > 1024 * 1024 - 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 goto error;
977
David Howellsb5f545c2006-01-08 01:02:47 -0800978 /* the appropriate instantiation authorisation key must have been
979 * assumed before calling this */
980 ret = -EPERM;
David Howellsd84f4f92008-11-14 10:39:23 +1100981 instkey = cred->request_key_auth;
David Howellsb5f545c2006-01-08 01:02:47 -0800982 if (!instkey)
983 goto error;
984
985 rka = instkey->payload.data;
986 if (rka->target_key->serial != id)
987 goto error;
988
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 /* pull the payload in if one was supplied */
990 payload = NULL;
991
David Howellsee009e4a02011-03-07 15:06:20 +0000992 if (payload_iov) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 ret = -ENOMEM;
994 payload = kmalloc(plen, GFP_KERNEL);
David Howells38bbca62008-04-29 01:01:19 -0700995 if (!payload) {
996 if (plen <= PAGE_SIZE)
997 goto error;
998 vm = true;
999 payload = vmalloc(plen);
1000 if (!payload)
1001 goto error;
1002 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003
David Howellsee009e4a02011-03-07 15:06:20 +00001004 ret = copy_from_user_iovec(payload, payload_iov, ioc);
1005 if (ret < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 goto error2;
1007 }
1008
David Howells3e301482005-06-23 22:00:56 -07001009 /* find the destination keyring amongst those belonging to the
1010 * requesting task */
David Howells8bbf49762008-11-14 10:39:14 +11001011 ret = get_instantiation_keyring(ringid, rka, &dest_keyring);
1012 if (ret < 0)
1013 goto error2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014
1015 /* instantiate the key and link it into a keyring */
David Howells3e301482005-06-23 22:00:56 -07001016 ret = key_instantiate_and_link(rka->target_key, payload, plen,
David Howells8bbf49762008-11-14 10:39:14 +11001017 dest_keyring, instkey);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018
David Howells8bbf49762008-11-14 10:39:14 +11001019 key_put(dest_keyring);
David Howellsb5f545c2006-01-08 01:02:47 -08001020
1021 /* discard the assumed authority if it's just been disabled by
1022 * instantiation of the key */
David Howellsd84f4f92008-11-14 10:39:23 +11001023 if (ret == 0)
1024 keyctl_change_reqkey_auth(NULL);
David Howellsb5f545c2006-01-08 01:02:47 -08001025
1026error2:
David Howells38bbca62008-04-29 01:01:19 -07001027 if (!vm)
1028 kfree(payload);
1029 else
1030 vfree(payload);
David Howellsb5f545c2006-01-08 01:02:47 -08001031error:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 return ret;
David Howellsa8b17ed2011-01-20 16:38:27 +00001033}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035/*
David Howellsee009e4a02011-03-07 15:06:20 +00001036 * Instantiate a key with the specified payload and link the key into the
1037 * destination keyring if one is given.
1038 *
1039 * The caller must have the appropriate instantiation permit set for this to
1040 * work (see keyctl_assume_authority). No other permissions are required.
1041 *
1042 * If successful, 0 will be returned.
1043 */
1044long keyctl_instantiate_key(key_serial_t id,
1045 const void __user *_payload,
1046 size_t plen,
1047 key_serial_t ringid)
1048{
1049 if (_payload && plen) {
1050 struct iovec iov[1] = {
1051 [0].iov_base = (void __user *)_payload,
1052 [0].iov_len = plen
1053 };
1054
1055 return keyctl_instantiate_key_common(id, iov, 1, plen, ringid);
1056 }
1057
1058 return keyctl_instantiate_key_common(id, NULL, 0, 0, ringid);
1059}
1060
1061/*
1062 * Instantiate a key with the specified multipart payload and link the key into
1063 * the destination keyring if one is given.
1064 *
1065 * The caller must have the appropriate instantiation permit set for this to
1066 * work (see keyctl_assume_authority). No other permissions are required.
1067 *
1068 * If successful, 0 will be returned.
1069 */
1070long keyctl_instantiate_key_iov(key_serial_t id,
1071 const struct iovec __user *_payload_iov,
1072 unsigned ioc,
1073 key_serial_t ringid)
1074{
1075 struct iovec iovstack[UIO_FASTIOV], *iov = iovstack;
1076 long ret;
1077
1078 if (_payload_iov == 0 || ioc == 0)
1079 goto no_payload;
1080
1081 ret = rw_copy_check_uvector(WRITE, _payload_iov, ioc,
Christopher Yeohfcf63402011-10-31 17:06:39 -07001082 ARRAY_SIZE(iovstack), iovstack, &iov, 1);
David Howellsee009e4a02011-03-07 15:06:20 +00001083 if (ret < 0)
1084 return ret;
1085 if (ret == 0)
1086 goto no_payload_free;
1087
1088 ret = keyctl_instantiate_key_common(id, iov, ioc, ret, ringid);
1089
1090 if (iov != iovstack)
1091 kfree(iov);
1092 return ret;
1093
1094no_payload_free:
1095 if (iov != iovstack)
1096 kfree(iov);
1097no_payload:
1098 return keyctl_instantiate_key_common(id, NULL, 0, 0, ringid);
1099}
1100
1101/*
David Howells973c9f42011-01-20 16:38:33 +00001102 * Negatively instantiate the key with the given timeout (in seconds) and link
1103 * the key into the destination keyring if one is given.
1104 *
1105 * The caller must have the appropriate instantiation permit set for this to
1106 * work (see keyctl_assume_authority). No other permissions are required.
1107 *
1108 * The key and any links to the key will be automatically garbage collected
1109 * after the timeout expires.
1110 *
1111 * Negative keys are used to rate limit repeated request_key() calls by causing
1112 * them to return -ENOKEY until the negative key expires.
1113 *
1114 * If successful, 0 will be returned.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 */
1116long keyctl_negate_key(key_serial_t id, unsigned timeout, key_serial_t ringid)
1117{
David Howellsfdd1b942011-03-07 15:06:09 +00001118 return keyctl_reject_key(id, timeout, ENOKEY, ringid);
1119}
1120
1121/*
1122 * Negatively instantiate the key with the given timeout (in seconds) and error
1123 * code and link the key into the destination keyring if one is given.
1124 *
1125 * The caller must have the appropriate instantiation permit set for this to
1126 * work (see keyctl_assume_authority). No other permissions are required.
1127 *
1128 * The key and any links to the key will be automatically garbage collected
1129 * after the timeout expires.
1130 *
1131 * Negative keys are used to rate limit repeated request_key() calls by causing
1132 * them to return the specified error code until the negative key expires.
1133 *
1134 * If successful, 0 will be returned.
1135 */
1136long keyctl_reject_key(key_serial_t id, unsigned timeout, unsigned error,
1137 key_serial_t ringid)
1138{
David Howellsd84f4f92008-11-14 10:39:23 +11001139 const struct cred *cred = current_cred();
David Howells3e301482005-06-23 22:00:56 -07001140 struct request_key_auth *rka;
David Howells8bbf49762008-11-14 10:39:14 +11001141 struct key *instkey, *dest_keyring;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 long ret;
1143
David Howellsfdd1b942011-03-07 15:06:09 +00001144 kenter("%d,%u,%u,%d", id, timeout, error, ringid);
1145
1146 /* must be a valid error code and mustn't be a kernel special */
1147 if (error <= 0 ||
1148 error >= MAX_ERRNO ||
1149 error == ERESTARTSYS ||
1150 error == ERESTARTNOINTR ||
1151 error == ERESTARTNOHAND ||
1152 error == ERESTART_RESTARTBLOCK)
1153 return -EINVAL;
David Howellsd84f4f92008-11-14 10:39:23 +11001154
David Howellsb5f545c2006-01-08 01:02:47 -08001155 /* the appropriate instantiation authorisation key must have been
1156 * assumed before calling this */
1157 ret = -EPERM;
David Howellsd84f4f92008-11-14 10:39:23 +11001158 instkey = cred->request_key_auth;
David Howellsb5f545c2006-01-08 01:02:47 -08001159 if (!instkey)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161
David Howells3e301482005-06-23 22:00:56 -07001162 rka = instkey->payload.data;
David Howellsb5f545c2006-01-08 01:02:47 -08001163 if (rka->target_key->serial != id)
1164 goto error;
David Howells3e301482005-06-23 22:00:56 -07001165
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 /* find the destination keyring if present (which must also be
1167 * writable) */
David Howells8bbf49762008-11-14 10:39:14 +11001168 ret = get_instantiation_keyring(ringid, rka, &dest_keyring);
1169 if (ret < 0)
1170 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171
1172 /* instantiate the key and link it into a keyring */
David Howellsfdd1b942011-03-07 15:06:09 +00001173 ret = key_reject_and_link(rka->target_key, timeout, error,
David Howells8bbf49762008-11-14 10:39:14 +11001174 dest_keyring, instkey);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175
David Howells8bbf49762008-11-14 10:39:14 +11001176 key_put(dest_keyring);
David Howellsb5f545c2006-01-08 01:02:47 -08001177
1178 /* discard the assumed authority if it's just been disabled by
1179 * instantiation of the key */
David Howellsd84f4f92008-11-14 10:39:23 +11001180 if (ret == 0)
1181 keyctl_change_reqkey_auth(NULL);
David Howellsb5f545c2006-01-08 01:02:47 -08001182
1183error:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 return ret;
David Howellsa8b17ed2011-01-20 16:38:27 +00001185}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187/*
David Howells973c9f42011-01-20 16:38:33 +00001188 * Read or set the default keyring in which request_key() will cache keys and
1189 * return the old setting.
1190 *
1191 * If a process keyring is specified then this will be created if it doesn't
1192 * yet exist. The old setting will be returned if successful.
David Howells3e301482005-06-23 22:00:56 -07001193 */
1194long keyctl_set_reqkey_keyring(int reqkey_defl)
1195{
David Howellsd84f4f92008-11-14 10:39:23 +11001196 struct cred *new;
1197 int ret, old_setting;
1198
1199 old_setting = current_cred_xxx(jit_keyring);
1200
1201 if (reqkey_defl == KEY_REQKEY_DEFL_NO_CHANGE)
1202 return old_setting;
1203
1204 new = prepare_creds();
1205 if (!new)
1206 return -ENOMEM;
David Howells3e301482005-06-23 22:00:56 -07001207
1208 switch (reqkey_defl) {
1209 case KEY_REQKEY_DEFL_THREAD_KEYRING:
David Howellsd84f4f92008-11-14 10:39:23 +11001210 ret = install_thread_keyring_to_cred(new);
David Howells3e301482005-06-23 22:00:56 -07001211 if (ret < 0)
David Howellsd84f4f92008-11-14 10:39:23 +11001212 goto error;
David Howells3e301482005-06-23 22:00:56 -07001213 goto set;
1214
1215 case KEY_REQKEY_DEFL_PROCESS_KEYRING:
David Howellsd84f4f92008-11-14 10:39:23 +11001216 ret = install_process_keyring_to_cred(new);
1217 if (ret < 0) {
1218 if (ret != -EEXIST)
1219 goto error;
1220 ret = 0;
1221 }
1222 goto set;
David Howells3e301482005-06-23 22:00:56 -07001223
1224 case KEY_REQKEY_DEFL_DEFAULT:
1225 case KEY_REQKEY_DEFL_SESSION_KEYRING:
1226 case KEY_REQKEY_DEFL_USER_KEYRING:
1227 case KEY_REQKEY_DEFL_USER_SESSION_KEYRING:
David Howellsd84f4f92008-11-14 10:39:23 +11001228 case KEY_REQKEY_DEFL_REQUESTOR_KEYRING:
1229 goto set;
David Howells3e301482005-06-23 22:00:56 -07001230
1231 case KEY_REQKEY_DEFL_NO_CHANGE:
David Howells3e301482005-06-23 22:00:56 -07001232 case KEY_REQKEY_DEFL_GROUP_KEYRING:
1233 default:
David Howellsd84f4f92008-11-14 10:39:23 +11001234 ret = -EINVAL;
1235 goto error;
David Howells3e301482005-06-23 22:00:56 -07001236 }
1237
David Howellsd84f4f92008-11-14 10:39:23 +11001238set:
1239 new->jit_keyring = reqkey_defl;
1240 commit_creds(new);
1241 return old_setting;
1242error:
1243 abort_creds(new);
Dan Carpenter4303ef12010-06-11 17:30:05 +01001244 return ret;
David Howellsa8b17ed2011-01-20 16:38:27 +00001245}
David Howellsd84f4f92008-11-14 10:39:23 +11001246
David Howells3e301482005-06-23 22:00:56 -07001247/*
David Howells973c9f42011-01-20 16:38:33 +00001248 * Set or clear the timeout on a key.
1249 *
1250 * Either the key must grant the caller Setattr permission or else the caller
1251 * must hold an instantiation authorisation token for the key.
1252 *
1253 * The timeout is either 0 to clear the timeout, or a number of seconds from
1254 * the current time. The key and any links to the key will be automatically
1255 * garbage collected after the timeout expires.
1256 *
1257 * If successful, 0 is returned.
David Howells017679c2006-01-08 01:02:43 -08001258 */
1259long keyctl_set_timeout(key_serial_t id, unsigned timeout)
1260{
David Howells91562352010-06-11 17:31:05 +01001261 struct key *key, *instkey;
David Howells017679c2006-01-08 01:02:43 -08001262 key_ref_t key_ref;
David Howells017679c2006-01-08 01:02:43 -08001263 long ret;
1264
David Howells55931222009-09-02 09:13:45 +01001265 key_ref = lookup_user_key(id, KEY_LOOKUP_CREATE | KEY_LOOKUP_PARTIAL,
1266 KEY_SETATTR);
David Howells017679c2006-01-08 01:02:43 -08001267 if (IS_ERR(key_ref)) {
David Howells91562352010-06-11 17:31:05 +01001268 /* setting the timeout on a key under construction is permitted
1269 * if we have the authorisation token handy */
1270 if (PTR_ERR(key_ref) == -EACCES) {
1271 instkey = key_get_instantiation_authkey(id);
1272 if (!IS_ERR(instkey)) {
1273 key_put(instkey);
1274 key_ref = lookup_user_key(id,
1275 KEY_LOOKUP_PARTIAL,
1276 0);
1277 if (!IS_ERR(key_ref))
1278 goto okay;
1279 }
1280 }
1281
David Howells017679c2006-01-08 01:02:43 -08001282 ret = PTR_ERR(key_ref);
1283 goto error;
1284 }
1285
David Howells91562352010-06-11 17:31:05 +01001286okay:
David Howells017679c2006-01-08 01:02:43 -08001287 key = key_ref_to_ptr(key_ref);
Bryan Schumaker59e6b9c2012-02-24 14:14:50 -05001288 key_set_timeout(key, timeout);
David Howells017679c2006-01-08 01:02:43 -08001289 key_put(key);
1290
1291 ret = 0;
1292error:
1293 return ret;
David Howellsa8b17ed2011-01-20 16:38:27 +00001294}
David Howells017679c2006-01-08 01:02:43 -08001295
David Howells017679c2006-01-08 01:02:43 -08001296/*
David Howells973c9f42011-01-20 16:38:33 +00001297 * Assume (or clear) the authority to instantiate the specified key.
1298 *
1299 * This sets the authoritative token currently in force for key instantiation.
1300 * This must be done for a key to be instantiated. It has the effect of making
1301 * available all the keys from the caller of the request_key() that created a
1302 * key to request_key() calls made by the caller of this function.
1303 *
1304 * The caller must have the instantiation key in their process keyrings with a
1305 * Search permission grant available to the caller.
1306 *
1307 * If the ID given is 0, then the setting will be cleared and 0 returned.
1308 *
1309 * If the ID given has a matching an authorisation key, then that key will be
1310 * set and its ID will be returned. The authorisation key can be read to get
1311 * the callout information passed to request_key().
David Howellsb5f545c2006-01-08 01:02:47 -08001312 */
1313long keyctl_assume_authority(key_serial_t id)
1314{
1315 struct key *authkey;
1316 long ret;
1317
1318 /* special key IDs aren't permitted */
1319 ret = -EINVAL;
1320 if (id < 0)
1321 goto error;
1322
1323 /* we divest ourselves of authority if given an ID of 0 */
1324 if (id == 0) {
David Howellsd84f4f92008-11-14 10:39:23 +11001325 ret = keyctl_change_reqkey_auth(NULL);
David Howellsb5f545c2006-01-08 01:02:47 -08001326 goto error;
1327 }
1328
1329 /* attempt to assume the authority temporarily granted to us whilst we
1330 * instantiate the specified key
1331 * - the authorisation key must be in the current task's keyrings
1332 * somewhere
1333 */
1334 authkey = key_get_instantiation_authkey(id);
1335 if (IS_ERR(authkey)) {
1336 ret = PTR_ERR(authkey);
1337 goto error;
1338 }
1339
David Howellsd84f4f92008-11-14 10:39:23 +11001340 ret = keyctl_change_reqkey_auth(authkey);
1341 if (ret < 0)
1342 goto error;
1343 key_put(authkey);
David Howellsb5f545c2006-01-08 01:02:47 -08001344
David Howellsd84f4f92008-11-14 10:39:23 +11001345 ret = authkey->serial;
David Howellsb5f545c2006-01-08 01:02:47 -08001346error:
1347 return ret;
David Howellsa8b17ed2011-01-20 16:38:27 +00001348}
David Howellsb5f545c2006-01-08 01:02:47 -08001349
David Howells70a5bb72008-04-29 01:01:26 -07001350/*
David Howells973c9f42011-01-20 16:38:33 +00001351 * Get a key's the LSM security label.
1352 *
1353 * The key must grant the caller View permission for this to work.
1354 *
1355 * If there's a buffer, then up to buflen bytes of data will be placed into it.
1356 *
1357 * If successful, the amount of information available will be returned,
1358 * irrespective of how much was copied (including the terminal NUL).
David Howells70a5bb72008-04-29 01:01:26 -07001359 */
1360long keyctl_get_security(key_serial_t keyid,
1361 char __user *buffer,
1362 size_t buflen)
1363{
1364 struct key *key, *instkey;
1365 key_ref_t key_ref;
1366 char *context;
1367 long ret;
1368
David Howells55931222009-09-02 09:13:45 +01001369 key_ref = lookup_user_key(keyid, KEY_LOOKUP_PARTIAL, KEY_VIEW);
David Howells70a5bb72008-04-29 01:01:26 -07001370 if (IS_ERR(key_ref)) {
1371 if (PTR_ERR(key_ref) != -EACCES)
1372 return PTR_ERR(key_ref);
1373
1374 /* viewing a key under construction is also permitted if we
1375 * have the authorisation token handy */
1376 instkey = key_get_instantiation_authkey(keyid);
1377 if (IS_ERR(instkey))
Roel Kluinfa1cc7b2009-12-15 15:05:12 -08001378 return PTR_ERR(instkey);
David Howells70a5bb72008-04-29 01:01:26 -07001379 key_put(instkey);
1380
David Howells55931222009-09-02 09:13:45 +01001381 key_ref = lookup_user_key(keyid, KEY_LOOKUP_PARTIAL, 0);
David Howells70a5bb72008-04-29 01:01:26 -07001382 if (IS_ERR(key_ref))
1383 return PTR_ERR(key_ref);
1384 }
1385
1386 key = key_ref_to_ptr(key_ref);
1387 ret = security_key_getsecurity(key, &context);
1388 if (ret == 0) {
1389 /* if no information was returned, give userspace an empty
1390 * string */
1391 ret = 1;
1392 if (buffer && buflen > 0 &&
1393 copy_to_user(buffer, "", 1) != 0)
1394 ret = -EFAULT;
1395 } else if (ret > 0) {
1396 /* return as much data as there's room for */
1397 if (buffer && buflen > 0) {
1398 if (buflen > ret)
1399 buflen = ret;
1400
1401 if (copy_to_user(buffer, context, buflen) != 0)
1402 ret = -EFAULT;
1403 }
1404
1405 kfree(context);
1406 }
1407
1408 key_ref_put(key_ref);
1409 return ret;
1410}
1411
David Howellsee18d642009-09-02 09:14:21 +01001412/*
David Howells973c9f42011-01-20 16:38:33 +00001413 * Attempt to install the calling process's session keyring on the process's
1414 * parent process.
1415 *
1416 * The keyring must exist and must grant the caller LINK permission, and the
1417 * parent process must be single-threaded and must have the same effective
1418 * ownership as this process and mustn't be SUID/SGID.
1419 *
1420 * The keyring will be emplaced on the parent when it next resumes userspace.
1421 *
1422 * If successful, 0 will be returned.
David Howellsee18d642009-09-02 09:14:21 +01001423 */
1424long keyctl_session_to_parent(void)
1425{
Geert Uytterhoevena00ae4d2009-12-13 20:21:34 +01001426#ifdef TIF_NOTIFY_RESUME
David Howellsee18d642009-09-02 09:14:21 +01001427 struct task_struct *me, *parent;
1428 const struct cred *mycred, *pcred;
1429 struct cred *cred, *oldcred;
1430 key_ref_t keyring_r;
1431 int ret;
1432
1433 keyring_r = lookup_user_key(KEY_SPEC_SESSION_KEYRING, 0, KEY_LINK);
1434 if (IS_ERR(keyring_r))
1435 return PTR_ERR(keyring_r);
1436
1437 /* our parent is going to need a new cred struct, a new tgcred struct
1438 * and new security data, so we allocate them here to prevent ENOMEM in
1439 * our parent */
1440 ret = -ENOMEM;
1441 cred = cred_alloc_blank();
1442 if (!cred)
1443 goto error_keyring;
1444
1445 cred->tgcred->session_keyring = key_ref_to_ptr(keyring_r);
1446 keyring_r = NULL;
1447
1448 me = current;
David Howells9d1ac652010-09-10 09:59:46 +01001449 rcu_read_lock();
David Howellsee18d642009-09-02 09:14:21 +01001450 write_lock_irq(&tasklist_lock);
1451
1452 parent = me->real_parent;
1453 ret = -EPERM;
1454
1455 /* the parent mustn't be init and mustn't be a kernel thread */
1456 if (parent->pid <= 1 || !parent->mm)
1457 goto not_permitted;
1458
1459 /* the parent must be single threaded */
Oleg Nesterovdd98acf2010-05-26 14:43:23 -07001460 if (!thread_group_empty(parent))
David Howellsee18d642009-09-02 09:14:21 +01001461 goto not_permitted;
1462
1463 /* the parent and the child must have different session keyrings or
1464 * there's no point */
1465 mycred = current_cred();
1466 pcred = __task_cred(parent);
1467 if (mycred == pcred ||
1468 mycred->tgcred->session_keyring == pcred->tgcred->session_keyring)
1469 goto already_same;
1470
1471 /* the parent must have the same effective ownership and mustn't be
1472 * SUID/SGID */
Justin P. Mattockc5b60b52010-04-21 00:02:11 -07001473 if (pcred->uid != mycred->euid ||
David Howellsee18d642009-09-02 09:14:21 +01001474 pcred->euid != mycred->euid ||
1475 pcred->suid != mycred->euid ||
Justin P. Mattockc5b60b52010-04-21 00:02:11 -07001476 pcred->gid != mycred->egid ||
David Howellsee18d642009-09-02 09:14:21 +01001477 pcred->egid != mycred->egid ||
1478 pcred->sgid != mycred->egid)
1479 goto not_permitted;
1480
1481 /* the keyrings must have the same UID */
David Howells3d964062010-09-10 09:59:51 +01001482 if ((pcred->tgcred->session_keyring &&
1483 pcred->tgcred->session_keyring->uid != mycred->euid) ||
David Howellsee18d642009-09-02 09:14:21 +01001484 mycred->tgcred->session_keyring->uid != mycred->euid)
1485 goto not_permitted;
1486
David Howellsee18d642009-09-02 09:14:21 +01001487 /* if there's an already pending keyring replacement, then we replace
1488 * that */
1489 oldcred = parent->replacement_session_keyring;
1490
1491 /* the replacement session keyring is applied just prior to userspace
1492 * restarting */
1493 parent->replacement_session_keyring = cred;
1494 cred = NULL;
1495 set_ti_thread_flag(task_thread_info(parent), TIF_NOTIFY_RESUME);
1496
1497 write_unlock_irq(&tasklist_lock);
David Howells9d1ac652010-09-10 09:59:46 +01001498 rcu_read_unlock();
David Howellsee18d642009-09-02 09:14:21 +01001499 if (oldcred)
1500 put_cred(oldcred);
1501 return 0;
1502
1503already_same:
1504 ret = 0;
1505not_permitted:
Marc Dionne5c843422009-09-14 12:46:23 +01001506 write_unlock_irq(&tasklist_lock);
David Howells9d1ac652010-09-10 09:59:46 +01001507 rcu_read_unlock();
David Howellsee18d642009-09-02 09:14:21 +01001508 put_cred(cred);
1509 return ret;
1510
1511error_keyring:
1512 key_ref_put(keyring_r);
1513 return ret;
Geert Uytterhoevena00ae4d2009-12-13 20:21:34 +01001514
1515#else /* !TIF_NOTIFY_RESUME */
1516 /*
1517 * To be removed when TIF_NOTIFY_RESUME has been implemented on
1518 * m68k/xtensa
1519 */
1520#warning TIF_NOTIFY_RESUME not implemented
1521 return -EOPNOTSUPP;
1522#endif /* !TIF_NOTIFY_RESUME */
David Howellsee18d642009-09-02 09:14:21 +01001523}
1524
David Howellsb5f545c2006-01-08 01:02:47 -08001525/*
David Howells973c9f42011-01-20 16:38:33 +00001526 * The key control system call
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527 */
Heiko Carstens938bb9f2009-01-14 14:14:30 +01001528SYSCALL_DEFINE5(keyctl, int, option, unsigned long, arg2, unsigned long, arg3,
1529 unsigned long, arg4, unsigned long, arg5)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530{
1531 switch (option) {
1532 case KEYCTL_GET_KEYRING_ID:
1533 return keyctl_get_keyring_ID((key_serial_t) arg2,
1534 (int) arg3);
1535
1536 case KEYCTL_JOIN_SESSION_KEYRING:
1537 return keyctl_join_session_keyring((const char __user *) arg2);
1538
1539 case KEYCTL_UPDATE:
1540 return keyctl_update_key((key_serial_t) arg2,
1541 (const void __user *) arg3,
1542 (size_t) arg4);
1543
1544 case KEYCTL_REVOKE:
1545 return keyctl_revoke_key((key_serial_t) arg2);
1546
1547 case KEYCTL_DESCRIBE:
1548 return keyctl_describe_key((key_serial_t) arg2,
1549 (char __user *) arg3,
1550 (unsigned) arg4);
1551
1552 case KEYCTL_CLEAR:
1553 return keyctl_keyring_clear((key_serial_t) arg2);
1554
1555 case KEYCTL_LINK:
1556 return keyctl_keyring_link((key_serial_t) arg2,
1557 (key_serial_t) arg3);
1558
1559 case KEYCTL_UNLINK:
1560 return keyctl_keyring_unlink((key_serial_t) arg2,
1561 (key_serial_t) arg3);
1562
1563 case KEYCTL_SEARCH:
1564 return keyctl_keyring_search((key_serial_t) arg2,
1565 (const char __user *) arg3,
1566 (const char __user *) arg4,
1567 (key_serial_t) arg5);
1568
1569 case KEYCTL_READ:
1570 return keyctl_read_key((key_serial_t) arg2,
1571 (char __user *) arg3,
1572 (size_t) arg4);
1573
1574 case KEYCTL_CHOWN:
1575 return keyctl_chown_key((key_serial_t) arg2,
1576 (uid_t) arg3,
1577 (gid_t) arg4);
1578
1579 case KEYCTL_SETPERM:
1580 return keyctl_setperm_key((key_serial_t) arg2,
1581 (key_perm_t) arg3);
1582
1583 case KEYCTL_INSTANTIATE:
1584 return keyctl_instantiate_key((key_serial_t) arg2,
1585 (const void __user *) arg3,
1586 (size_t) arg4,
1587 (key_serial_t) arg5);
1588
1589 case KEYCTL_NEGATE:
1590 return keyctl_negate_key((key_serial_t) arg2,
1591 (unsigned) arg3,
1592 (key_serial_t) arg4);
1593
David Howells3e301482005-06-23 22:00:56 -07001594 case KEYCTL_SET_REQKEY_KEYRING:
1595 return keyctl_set_reqkey_keyring(arg2);
1596
David Howells017679c2006-01-08 01:02:43 -08001597 case KEYCTL_SET_TIMEOUT:
1598 return keyctl_set_timeout((key_serial_t) arg2,
1599 (unsigned) arg3);
1600
David Howellsb5f545c2006-01-08 01:02:47 -08001601 case KEYCTL_ASSUME_AUTHORITY:
1602 return keyctl_assume_authority((key_serial_t) arg2);
1603
David Howells70a5bb72008-04-29 01:01:26 -07001604 case KEYCTL_GET_SECURITY:
1605 return keyctl_get_security((key_serial_t) arg2,
James Morris90bd49a2008-12-29 14:35:35 +11001606 (char __user *) arg3,
David Howells70a5bb72008-04-29 01:01:26 -07001607 (size_t) arg4);
1608
David Howellsee18d642009-09-02 09:14:21 +01001609 case KEYCTL_SESSION_TO_PARENT:
1610 return keyctl_session_to_parent();
1611
David Howellsfdd1b942011-03-07 15:06:09 +00001612 case KEYCTL_REJECT:
1613 return keyctl_reject_key((key_serial_t) arg2,
1614 (unsigned) arg3,
1615 (unsigned) arg4,
1616 (key_serial_t) arg5);
1617
David Howellsee009e4a02011-03-07 15:06:20 +00001618 case KEYCTL_INSTANTIATE_IOV:
1619 return keyctl_instantiate_key_iov(
1620 (key_serial_t) arg2,
1621 (const struct iovec __user *) arg3,
1622 (unsigned) arg4,
1623 (key_serial_t) arg5);
1624
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625 default:
1626 return -EOPNOTSUPP;
1627 }
David Howellsa8b17ed2011-01-20 16:38:27 +00001628}