blob: 6261745e44591acd65bb47e18e9f65b9e842bfe5 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* keyctl.c: userspace keyctl operations
2 *
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>
17#include <linux/keyctl.h>
18#include <linux/fs.h>
Randy.Dunlapc59ede72006-01-11 12:17:46 -080019#include <linux/capability.h>
Davi Arnaut0cb409d2006-03-24 03:18:43 -080020#include <linux/string.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/err.h>
David Howells38bbca62008-04-29 01:01:19 -070022#include <linux/vmalloc.h>
David Howells70a5bb72008-04-29 01:01:26 -070023#include <linux/security.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <asm/uaccess.h>
25#include "internal.h"
26
Davi Arnaut0cb409d2006-03-24 03:18:43 -080027static int key_get_type_from_user(char *type,
28 const char __user *_type,
29 unsigned len)
30{
31 int ret;
32
33 ret = strncpy_from_user(type, _type, len);
34
35 if (ret < 0)
Dan Carpenter4303ef12010-06-11 17:30:05 +010036 return ret;
Davi Arnaut0cb409d2006-03-24 03:18:43 -080037
38 if (ret == 0 || ret >= len)
39 return -EINVAL;
40
41 if (type[0] == '.')
42 return -EPERM;
43
44 type[len - 1] = '\0';
45
46 return 0;
47}
48
Linus Torvalds1da177e2005-04-16 15:20:36 -070049/*****************************************************************************/
50/*
51 * extract the description of a new key from userspace and either add it as a
52 * new key to the specified keyring or update a matching key in that keyring
53 * - the keyring must be writable
54 * - returns the new key's serial number
55 * - implements add_key()
56 */
Heiko Carstens1e7bfb22009-01-14 14:14:29 +010057SYSCALL_DEFINE5(add_key, const char __user *, _type,
58 const char __user *, _description,
59 const void __user *, _payload,
60 size_t, plen,
61 key_serial_t, ringid)
Linus Torvalds1da177e2005-04-16 15:20:36 -070062{
David Howells664cceb2005-09-28 17:03:15 +010063 key_ref_t keyring_ref, key_ref;
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 char type[32], *description;
65 void *payload;
Davi Arnaut0cb409d2006-03-24 03:18:43 -080066 long ret;
David Howells38bbca62008-04-29 01:01:19 -070067 bool vm;
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
69 ret = -EINVAL;
David Howells38bbca62008-04-29 01:01:19 -070070 if (plen > 1024 * 1024 - 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 goto error;
72
73 /* draw all the data into kernel space */
Davi Arnaut0cb409d2006-03-24 03:18:43 -080074 ret = key_get_type_from_user(type, _type, sizeof(type));
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 if (ret < 0)
76 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
Davi Arnaut0cb409d2006-03-24 03:18:43 -080078 description = strndup_user(_description, PAGE_SIZE);
79 if (IS_ERR(description)) {
80 ret = PTR_ERR(description);
David Howells3e301482005-06-23 22:00:56 -070081 goto error;
Davi Arnaut0cb409d2006-03-24 03:18:43 -080082 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
84 /* pull the payload in if one was supplied */
85 payload = NULL;
86
David Howells38bbca62008-04-29 01:01:19 -070087 vm = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 if (_payload) {
89 ret = -ENOMEM;
90 payload = kmalloc(plen, GFP_KERNEL);
David Howells38bbca62008-04-29 01:01:19 -070091 if (!payload) {
92 if (plen <= PAGE_SIZE)
93 goto error2;
94 vm = true;
95 payload = vmalloc(plen);
96 if (!payload)
97 goto error2;
98 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
100 ret = -EFAULT;
101 if (copy_from_user(payload, _payload, plen) != 0)
102 goto error3;
103 }
104
105 /* find the target keyring (which must be writable) */
David Howells55931222009-09-02 09:13:45 +0100106 keyring_ref = lookup_user_key(ringid, KEY_LOOKUP_CREATE, KEY_WRITE);
David Howells664cceb2005-09-28 17:03:15 +0100107 if (IS_ERR(keyring_ref)) {
108 ret = PTR_ERR(keyring_ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 goto error3;
110 }
111
112 /* create or update the requested key and add it to the target
113 * keyring */
David Howells664cceb2005-09-28 17:03:15 +0100114 key_ref = key_create_or_update(keyring_ref, type, description,
Arun Raghavan6b79ccb2008-04-29 01:01:28 -0700115 payload, plen, KEY_PERM_UNDEF,
116 KEY_ALLOC_IN_QUOTA);
David Howells664cceb2005-09-28 17:03:15 +0100117 if (!IS_ERR(key_ref)) {
118 ret = key_ref_to_ptr(key_ref)->serial;
119 key_ref_put(key_ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 }
121 else {
David Howells664cceb2005-09-28 17:03:15 +0100122 ret = PTR_ERR(key_ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 }
124
David Howells664cceb2005-09-28 17:03:15 +0100125 key_ref_put(keyring_ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 error3:
David Howells38bbca62008-04-29 01:01:19 -0700127 if (!vm)
128 kfree(payload);
129 else
130 vfree(payload);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 error2:
132 kfree(description);
133 error:
134 return ret;
135
136} /* end sys_add_key() */
137
138/*****************************************************************************/
139/*
140 * search the process keyrings for a matching key
141 * - nested keyrings may also be searched if they have Search permission
142 * - if a key is found, it will be attached to the destination keyring if
143 * there's one specified
144 * - /sbin/request-key will be invoked if _callout_info is non-NULL
145 * - the _callout_info string will be passed to /sbin/request-key
146 * - if the _callout_info string is empty, it will be rendered as "-"
147 * - implements request_key()
148 */
Heiko Carstens1e7bfb22009-01-14 14:14:29 +0100149SYSCALL_DEFINE4(request_key, const char __user *, _type,
150 const char __user *, _description,
151 const char __user *, _callout_info,
152 key_serial_t, destringid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153{
154 struct key_type *ktype;
David Howells664cceb2005-09-28 17:03:15 +0100155 struct key *key;
156 key_ref_t dest_ref;
David Howells4a38e122008-04-29 01:01:24 -0700157 size_t callout_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 char type[32], *description, *callout_info;
Davi Arnaut0cb409d2006-03-24 03:18:43 -0800159 long ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
161 /* pull the type into kernel space */
Davi Arnaut0cb409d2006-03-24 03:18:43 -0800162 ret = key_get_type_from_user(type, _type, sizeof(type));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 if (ret < 0)
164 goto error;
David Howells1260f802005-08-04 11:50:01 +0100165
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 /* pull the description into kernel space */
Davi Arnaut0cb409d2006-03-24 03:18:43 -0800167 description = strndup_user(_description, PAGE_SIZE);
168 if (IS_ERR(description)) {
169 ret = PTR_ERR(description);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 goto error;
Davi Arnaut0cb409d2006-03-24 03:18:43 -0800171 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
173 /* pull the callout info into kernel space */
174 callout_info = NULL;
David Howells4a38e122008-04-29 01:01:24 -0700175 callout_len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 if (_callout_info) {
Davi Arnaut0cb409d2006-03-24 03:18:43 -0800177 callout_info = strndup_user(_callout_info, PAGE_SIZE);
178 if (IS_ERR(callout_info)) {
179 ret = PTR_ERR(callout_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 goto error2;
Davi Arnaut0cb409d2006-03-24 03:18:43 -0800181 }
David Howells4a38e122008-04-29 01:01:24 -0700182 callout_len = strlen(callout_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 }
184
185 /* get the destination keyring if specified */
David Howells664cceb2005-09-28 17:03:15 +0100186 dest_ref = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 if (destringid) {
David Howells55931222009-09-02 09:13:45 +0100188 dest_ref = lookup_user_key(destringid, KEY_LOOKUP_CREATE,
189 KEY_WRITE);
David Howells664cceb2005-09-28 17:03:15 +0100190 if (IS_ERR(dest_ref)) {
191 ret = PTR_ERR(dest_ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 goto error3;
193 }
194 }
195
196 /* find the key type */
197 ktype = key_type_lookup(type);
198 if (IS_ERR(ktype)) {
199 ret = PTR_ERR(ktype);
200 goto error4;
201 }
202
203 /* do the search */
David Howells4a38e122008-04-29 01:01:24 -0700204 key = request_key_and_link(ktype, description, callout_info,
205 callout_len, NULL, key_ref_to_ptr(dest_ref),
David Howells7e047ef2006-06-26 00:24:50 -0700206 KEY_ALLOC_IN_QUOTA);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 if (IS_ERR(key)) {
208 ret = PTR_ERR(key);
209 goto error5;
210 }
211
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 ret = key->serial;
213
David Howells3e301482005-06-23 22:00:56 -0700214 key_put(key);
Justin P. Mattockc5b60b52010-04-21 00:02:11 -0700215error5:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 key_type_put(ktype);
Justin P. Mattockc5b60b52010-04-21 00:02:11 -0700217error4:
David Howells664cceb2005-09-28 17:03:15 +0100218 key_ref_put(dest_ref);
Justin P. Mattockc5b60b52010-04-21 00:02:11 -0700219error3:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 kfree(callout_info);
Justin P. Mattockc5b60b52010-04-21 00:02:11 -0700221error2:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 kfree(description);
Justin P. Mattockc5b60b52010-04-21 00:02:11 -0700223error:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 return ret;
225
226} /* end sys_request_key() */
227
228/*****************************************************************************/
229/*
230 * get the ID of the specified process keyring
231 * - the keyring must have search permission to be found
232 * - implements keyctl(KEYCTL_GET_KEYRING_ID)
233 */
234long keyctl_get_keyring_ID(key_serial_t id, int create)
235{
David Howells664cceb2005-09-28 17:03:15 +0100236 key_ref_t key_ref;
David Howells55931222009-09-02 09:13:45 +0100237 unsigned long lflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 long ret;
239
David Howells55931222009-09-02 09:13:45 +0100240 lflags = create ? KEY_LOOKUP_CREATE : 0;
241 key_ref = lookup_user_key(id, lflags, KEY_SEARCH);
David Howells664cceb2005-09-28 17:03:15 +0100242 if (IS_ERR(key_ref)) {
243 ret = PTR_ERR(key_ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 goto error;
245 }
246
David Howells664cceb2005-09-28 17:03:15 +0100247 ret = key_ref_to_ptr(key_ref)->serial;
248 key_ref_put(key_ref);
Justin P. Mattockc5b60b52010-04-21 00:02:11 -0700249error:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 return ret;
251
252} /* end keyctl_get_keyring_ID() */
253
254/*****************************************************************************/
255/*
256 * join the session keyring
257 * - implements keyctl(KEYCTL_JOIN_SESSION_KEYRING)
258 */
259long keyctl_join_session_keyring(const char __user *_name)
260{
261 char *name;
Davi Arnaut0cb409d2006-03-24 03:18:43 -0800262 long ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
264 /* fetch the name from userspace */
265 name = NULL;
266 if (_name) {
Davi Arnaut0cb409d2006-03-24 03:18:43 -0800267 name = strndup_user(_name, PAGE_SIZE);
268 if (IS_ERR(name)) {
269 ret = PTR_ERR(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 goto error;
Davi Arnaut0cb409d2006-03-24 03:18:43 -0800271 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 }
273
274 /* join the session */
275 ret = join_session_keyring(name);
Vegard Nossum0d54ee12009-01-17 17:45:45 +0100276 kfree(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277
Justin P. Mattockc5b60b52010-04-21 00:02:11 -0700278error:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 return ret;
280
281} /* end keyctl_join_session_keyring() */
282
283/*****************************************************************************/
284/*
285 * update a key's data payload
286 * - the key must be writable
287 * - implements keyctl(KEYCTL_UPDATE)
288 */
289long keyctl_update_key(key_serial_t id,
290 const void __user *_payload,
291 size_t plen)
292{
David Howells664cceb2005-09-28 17:03:15 +0100293 key_ref_t key_ref;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 void *payload;
295 long ret;
296
297 ret = -EINVAL;
298 if (plen > PAGE_SIZE)
299 goto error;
300
301 /* pull the payload in if one was supplied */
302 payload = NULL;
303 if (_payload) {
304 ret = -ENOMEM;
305 payload = kmalloc(plen, GFP_KERNEL);
306 if (!payload)
307 goto error;
308
309 ret = -EFAULT;
310 if (copy_from_user(payload, _payload, plen) != 0)
311 goto error2;
312 }
313
314 /* find the target key (which must be writable) */
David Howells55931222009-09-02 09:13:45 +0100315 key_ref = lookup_user_key(id, 0, KEY_WRITE);
David Howells664cceb2005-09-28 17:03:15 +0100316 if (IS_ERR(key_ref)) {
317 ret = PTR_ERR(key_ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 goto error2;
319 }
320
321 /* update the key */
David Howells664cceb2005-09-28 17:03:15 +0100322 ret = key_update(key_ref, payload, plen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
David Howells664cceb2005-09-28 17:03:15 +0100324 key_ref_put(key_ref);
Justin P. Mattockc5b60b52010-04-21 00:02:11 -0700325error2:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 kfree(payload);
Justin P. Mattockc5b60b52010-04-21 00:02:11 -0700327error:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 return ret;
329
330} /* end keyctl_update_key() */
331
332/*****************************************************************************/
333/*
334 * revoke a key
335 * - the key must be writable
336 * - implements keyctl(KEYCTL_REVOKE)
337 */
338long keyctl_revoke_key(key_serial_t id)
339{
David Howells664cceb2005-09-28 17:03:15 +0100340 key_ref_t key_ref;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 long ret;
342
David Howells55931222009-09-02 09:13:45 +0100343 key_ref = lookup_user_key(id, 0, KEY_WRITE);
David Howells664cceb2005-09-28 17:03:15 +0100344 if (IS_ERR(key_ref)) {
345 ret = PTR_ERR(key_ref);
David Howells0c2c9a32009-09-02 09:13:50 +0100346 if (ret != -EACCES)
347 goto error;
348 key_ref = lookup_user_key(id, 0, KEY_SETATTR);
349 if (IS_ERR(key_ref)) {
350 ret = PTR_ERR(key_ref);
351 goto error;
352 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 }
354
David Howells664cceb2005-09-28 17:03:15 +0100355 key_revoke(key_ref_to_ptr(key_ref));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 ret = 0;
357
David Howells664cceb2005-09-28 17:03:15 +0100358 key_ref_put(key_ref);
Justin P. Mattockc5b60b52010-04-21 00:02:11 -0700359error:
David Howells1260f802005-08-04 11:50:01 +0100360 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
362} /* end keyctl_revoke_key() */
363
364/*****************************************************************************/
365/*
366 * clear the specified process keyring
367 * - the keyring must be writable
368 * - implements keyctl(KEYCTL_CLEAR)
369 */
370long keyctl_keyring_clear(key_serial_t ringid)
371{
David Howells664cceb2005-09-28 17:03:15 +0100372 key_ref_t keyring_ref;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 long ret;
374
David Howells55931222009-09-02 09:13:45 +0100375 keyring_ref = lookup_user_key(ringid, KEY_LOOKUP_CREATE, KEY_WRITE);
David Howells664cceb2005-09-28 17:03:15 +0100376 if (IS_ERR(keyring_ref)) {
377 ret = PTR_ERR(keyring_ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 goto error;
379 }
380
David Howells664cceb2005-09-28 17:03:15 +0100381 ret = keyring_clear(key_ref_to_ptr(keyring_ref));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
David Howells664cceb2005-09-28 17:03:15 +0100383 key_ref_put(keyring_ref);
Justin P. Mattockc5b60b52010-04-21 00:02:11 -0700384error:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 return ret;
386
387} /* end keyctl_keyring_clear() */
388
389/*****************************************************************************/
390/*
391 * link a key into a keyring
392 * - the keyring must be writable
393 * - the key must be linkable
394 * - implements keyctl(KEYCTL_LINK)
395 */
396long keyctl_keyring_link(key_serial_t id, key_serial_t ringid)
397{
David Howells664cceb2005-09-28 17:03:15 +0100398 key_ref_t keyring_ref, key_ref;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 long ret;
400
David Howells55931222009-09-02 09:13:45 +0100401 keyring_ref = lookup_user_key(ringid, KEY_LOOKUP_CREATE, KEY_WRITE);
David Howells664cceb2005-09-28 17:03:15 +0100402 if (IS_ERR(keyring_ref)) {
403 ret = PTR_ERR(keyring_ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 goto error;
405 }
406
David Howells55931222009-09-02 09:13:45 +0100407 key_ref = lookup_user_key(id, KEY_LOOKUP_CREATE, KEY_LINK);
David Howells664cceb2005-09-28 17:03:15 +0100408 if (IS_ERR(key_ref)) {
409 ret = PTR_ERR(key_ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 goto error2;
411 }
412
David Howells664cceb2005-09-28 17:03:15 +0100413 ret = key_link(key_ref_to_ptr(keyring_ref), key_ref_to_ptr(key_ref));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414
David Howells664cceb2005-09-28 17:03:15 +0100415 key_ref_put(key_ref);
Justin P. Mattockc5b60b52010-04-21 00:02:11 -0700416error2:
David Howells664cceb2005-09-28 17:03:15 +0100417 key_ref_put(keyring_ref);
Justin P. Mattockc5b60b52010-04-21 00:02:11 -0700418error:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 return ret;
420
421} /* end keyctl_keyring_link() */
422
423/*****************************************************************************/
424/*
425 * unlink the first attachment of a key from a keyring
426 * - the keyring must be writable
427 * - we don't need any permissions on the key
428 * - implements keyctl(KEYCTL_UNLINK)
429 */
430long keyctl_keyring_unlink(key_serial_t id, key_serial_t ringid)
431{
David Howells664cceb2005-09-28 17:03:15 +0100432 key_ref_t keyring_ref, key_ref;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 long ret;
434
David Howells55931222009-09-02 09:13:45 +0100435 keyring_ref = lookup_user_key(ringid, 0, KEY_WRITE);
David Howells664cceb2005-09-28 17:03:15 +0100436 if (IS_ERR(keyring_ref)) {
437 ret = PTR_ERR(keyring_ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 goto error;
439 }
440
David Howells55931222009-09-02 09:13:45 +0100441 key_ref = lookup_user_key(id, KEY_LOOKUP_FOR_UNLINK, 0);
David Howells664cceb2005-09-28 17:03:15 +0100442 if (IS_ERR(key_ref)) {
443 ret = PTR_ERR(key_ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 goto error2;
445 }
446
David Howells664cceb2005-09-28 17:03:15 +0100447 ret = key_unlink(key_ref_to_ptr(keyring_ref), key_ref_to_ptr(key_ref));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448
David Howells664cceb2005-09-28 17:03:15 +0100449 key_ref_put(key_ref);
Justin P. Mattockc5b60b52010-04-21 00:02:11 -0700450error2:
David Howells664cceb2005-09-28 17:03:15 +0100451 key_ref_put(keyring_ref);
Justin P. Mattockc5b60b52010-04-21 00:02:11 -0700452error:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 return ret;
454
455} /* end keyctl_keyring_unlink() */
456
457/*****************************************************************************/
458/*
459 * describe a user key
460 * - the key must have view permission
461 * - if there's a buffer, we place up to buflen bytes of data into it
462 * - unless there's an error, we return the amount of description available,
463 * irrespective of how much we may have copied
464 * - the description is formatted thus:
465 * type;uid;gid;perm;description<NUL>
466 * - implements keyctl(KEYCTL_DESCRIBE)
467 */
468long keyctl_describe_key(key_serial_t keyid,
469 char __user *buffer,
470 size_t buflen)
471{
David Howells3e301482005-06-23 22:00:56 -0700472 struct key *key, *instkey;
David Howells664cceb2005-09-28 17:03:15 +0100473 key_ref_t key_ref;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 char *tmpbuf;
475 long ret;
476
David Howells55931222009-09-02 09:13:45 +0100477 key_ref = lookup_user_key(keyid, KEY_LOOKUP_PARTIAL, KEY_VIEW);
David Howells664cceb2005-09-28 17:03:15 +0100478 if (IS_ERR(key_ref)) {
David Howells3e301482005-06-23 22:00:56 -0700479 /* viewing a key under construction is permitted if we have the
480 * authorisation token handy */
David Howells664cceb2005-09-28 17:03:15 +0100481 if (PTR_ERR(key_ref) == -EACCES) {
David Howells3e301482005-06-23 22:00:56 -0700482 instkey = key_get_instantiation_authkey(keyid);
483 if (!IS_ERR(instkey)) {
484 key_put(instkey);
David Howells8bbf49762008-11-14 10:39:14 +1100485 key_ref = lookup_user_key(keyid,
David Howells55931222009-09-02 09:13:45 +0100486 KEY_LOOKUP_PARTIAL,
487 0);
David Howells664cceb2005-09-28 17:03:15 +0100488 if (!IS_ERR(key_ref))
David Howells3e301482005-06-23 22:00:56 -0700489 goto okay;
490 }
491 }
492
David Howells664cceb2005-09-28 17:03:15 +0100493 ret = PTR_ERR(key_ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 goto error;
495 }
496
David Howells3e301482005-06-23 22:00:56 -0700497okay:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 /* calculate how much description we're going to return */
499 ret = -ENOMEM;
500 tmpbuf = kmalloc(PAGE_SIZE, GFP_KERNEL);
501 if (!tmpbuf)
502 goto error2;
503
David Howells664cceb2005-09-28 17:03:15 +0100504 key = key_ref_to_ptr(key_ref);
505
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 ret = snprintf(tmpbuf, PAGE_SIZE - 1,
David Howells664cceb2005-09-28 17:03:15 +0100507 "%s;%d;%d;%08x;%s",
508 key_ref_to_ptr(key_ref)->type->name,
509 key_ref_to_ptr(key_ref)->uid,
510 key_ref_to_ptr(key_ref)->gid,
511 key_ref_to_ptr(key_ref)->perm,
512 key_ref_to_ptr(key_ref)->description ?
513 key_ref_to_ptr(key_ref)->description : ""
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 );
515
516 /* include a NUL char at the end of the data */
517 if (ret > PAGE_SIZE - 1)
518 ret = PAGE_SIZE - 1;
519 tmpbuf[ret] = 0;
520 ret++;
521
522 /* consider returning the data */
523 if (buffer && buflen > 0) {
524 if (buflen > ret)
525 buflen = ret;
526
527 if (copy_to_user(buffer, tmpbuf, buflen) != 0)
528 ret = -EFAULT;
529 }
530
531 kfree(tmpbuf);
Justin P. Mattockc5b60b52010-04-21 00:02:11 -0700532error2:
David Howells664cceb2005-09-28 17:03:15 +0100533 key_ref_put(key_ref);
Justin P. Mattockc5b60b52010-04-21 00:02:11 -0700534error:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 return ret;
536
537} /* end keyctl_describe_key() */
538
539/*****************************************************************************/
540/*
541 * search the specified keyring for a matching key
542 * - the start keyring must be searchable
543 * - nested keyrings may also be searched if they are searchable
544 * - only keys with search permission may be found
545 * - if a key is found, it will be attached to the destination keyring if
546 * there's one specified
547 * - implements keyctl(KEYCTL_SEARCH)
548 */
549long keyctl_keyring_search(key_serial_t ringid,
550 const char __user *_type,
551 const char __user *_description,
552 key_serial_t destringid)
553{
554 struct key_type *ktype;
David Howells664cceb2005-09-28 17:03:15 +0100555 key_ref_t keyring_ref, key_ref, dest_ref;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 char type[32], *description;
Davi Arnaut0cb409d2006-03-24 03:18:43 -0800557 long ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558
559 /* pull the type and description into kernel space */
Davi Arnaut0cb409d2006-03-24 03:18:43 -0800560 ret = key_get_type_from_user(type, _type, sizeof(type));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 if (ret < 0)
562 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563
Davi Arnaut0cb409d2006-03-24 03:18:43 -0800564 description = strndup_user(_description, PAGE_SIZE);
565 if (IS_ERR(description)) {
566 ret = PTR_ERR(description);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 goto error;
Davi Arnaut0cb409d2006-03-24 03:18:43 -0800568 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569
570 /* get the keyring at which to begin the search */
David Howells55931222009-09-02 09:13:45 +0100571 keyring_ref = lookup_user_key(ringid, 0, KEY_SEARCH);
David Howells664cceb2005-09-28 17:03:15 +0100572 if (IS_ERR(keyring_ref)) {
573 ret = PTR_ERR(keyring_ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 goto error2;
575 }
576
577 /* get the destination keyring if specified */
David Howells664cceb2005-09-28 17:03:15 +0100578 dest_ref = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 if (destringid) {
David Howells55931222009-09-02 09:13:45 +0100580 dest_ref = lookup_user_key(destringid, KEY_LOOKUP_CREATE,
581 KEY_WRITE);
David Howells664cceb2005-09-28 17:03:15 +0100582 if (IS_ERR(dest_ref)) {
583 ret = PTR_ERR(dest_ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 goto error3;
585 }
586 }
587
588 /* find the key type */
589 ktype = key_type_lookup(type);
590 if (IS_ERR(ktype)) {
591 ret = PTR_ERR(ktype);
592 goto error4;
593 }
594
595 /* do the search */
David Howells664cceb2005-09-28 17:03:15 +0100596 key_ref = keyring_search(keyring_ref, ktype, description);
597 if (IS_ERR(key_ref)) {
598 ret = PTR_ERR(key_ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
600 /* treat lack or presence of a negative key the same */
601 if (ret == -EAGAIN)
602 ret = -ENOKEY;
603 goto error5;
604 }
605
606 /* link the resulting key to the destination keyring if we can */
David Howells664cceb2005-09-28 17:03:15 +0100607 if (dest_ref) {
David Howells29db9192005-10-30 15:02:44 -0800608 ret = key_permission(key_ref, KEY_LINK);
609 if (ret < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 goto error6;
611
David Howells664cceb2005-09-28 17:03:15 +0100612 ret = key_link(key_ref_to_ptr(dest_ref), key_ref_to_ptr(key_ref));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 if (ret < 0)
614 goto error6;
615 }
616
David Howells664cceb2005-09-28 17:03:15 +0100617 ret = key_ref_to_ptr(key_ref)->serial;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618
Justin P. Mattockc5b60b52010-04-21 00:02:11 -0700619error6:
David Howells664cceb2005-09-28 17:03:15 +0100620 key_ref_put(key_ref);
Justin P. Mattockc5b60b52010-04-21 00:02:11 -0700621error5:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 key_type_put(ktype);
Justin P. Mattockc5b60b52010-04-21 00:02:11 -0700623error4:
David Howells664cceb2005-09-28 17:03:15 +0100624 key_ref_put(dest_ref);
Justin P. Mattockc5b60b52010-04-21 00:02:11 -0700625error3:
David Howells664cceb2005-09-28 17:03:15 +0100626 key_ref_put(keyring_ref);
Justin P. Mattockc5b60b52010-04-21 00:02:11 -0700627error2:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 kfree(description);
Justin P. Mattockc5b60b52010-04-21 00:02:11 -0700629error:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 return ret;
631
632} /* end keyctl_keyring_search() */
633
634/*****************************************************************************/
635/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 * read a user key's payload
637 * - the keyring must be readable or the key must be searchable from the
638 * process's keyrings
639 * - if there's a buffer, we place up to buflen bytes of data into it
640 * - unless there's an error, we return the amount of data in the key,
641 * irrespective of how much we may have copied
642 * - implements keyctl(KEYCTL_READ)
643 */
644long keyctl_read_key(key_serial_t keyid, char __user *buffer, size_t buflen)
645{
David Howells664cceb2005-09-28 17:03:15 +0100646 struct key *key;
647 key_ref_t key_ref;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 long ret;
649
650 /* find the key first */
David Howells55931222009-09-02 09:13:45 +0100651 key_ref = lookup_user_key(keyid, 0, 0);
David Howells664cceb2005-09-28 17:03:15 +0100652 if (IS_ERR(key_ref)) {
653 ret = -ENOKEY;
654 goto error;
655 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656
David Howells664cceb2005-09-28 17:03:15 +0100657 key = key_ref_to_ptr(key_ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658
David Howells664cceb2005-09-28 17:03:15 +0100659 /* see if we can read it directly */
David Howells29db9192005-10-30 15:02:44 -0800660 ret = key_permission(key_ref, KEY_READ);
661 if (ret == 0)
David Howells664cceb2005-09-28 17:03:15 +0100662 goto can_read_key;
David Howells29db9192005-10-30 15:02:44 -0800663 if (ret != -EACCES)
664 goto error;
David Howells664cceb2005-09-28 17:03:15 +0100665
666 /* we can't; see if it's searchable from this process's keyrings
667 * - we automatically take account of the fact that it may be
668 * dangling off an instantiation key
669 */
670 if (!is_key_possessed(key_ref)) {
671 ret = -EACCES;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 goto error2;
673 }
674
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 /* the key is probably readable - now try to read it */
Justin P. Mattockc5b60b52010-04-21 00:02:11 -0700676can_read_key:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 ret = key_validate(key);
678 if (ret == 0) {
679 ret = -EOPNOTSUPP;
680 if (key->type->read) {
681 /* read the data with the semaphore held (since we
682 * might sleep) */
683 down_read(&key->sem);
684 ret = key->type->read(key, buffer, buflen);
685 up_read(&key->sem);
686 }
687 }
688
Justin P. Mattockc5b60b52010-04-21 00:02:11 -0700689error2:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 key_put(key);
Justin P. Mattockc5b60b52010-04-21 00:02:11 -0700691error:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 return ret;
693
694} /* end keyctl_read_key() */
695
696/*****************************************************************************/
697/*
698 * change the ownership of a key
699 * - the keyring owned by the changer
700 * - if the uid or gid is -1, then that parameter is not changed
701 * - implements keyctl(KEYCTL_CHOWN)
702 */
703long keyctl_chown_key(key_serial_t id, uid_t uid, gid_t gid)
704{
Fredrik Tolf58016492006-06-26 00:24:51 -0700705 struct key_user *newowner, *zapowner = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 struct key *key;
David Howells664cceb2005-09-28 17:03:15 +0100707 key_ref_t key_ref;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 long ret;
709
710 ret = 0;
711 if (uid == (uid_t) -1 && gid == (gid_t) -1)
712 goto error;
713
David Howells55931222009-09-02 09:13:45 +0100714 key_ref = lookup_user_key(id, KEY_LOOKUP_CREATE | KEY_LOOKUP_PARTIAL,
715 KEY_SETATTR);
David Howells664cceb2005-09-28 17:03:15 +0100716 if (IS_ERR(key_ref)) {
717 ret = PTR_ERR(key_ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 goto error;
719 }
720
David Howells664cceb2005-09-28 17:03:15 +0100721 key = key_ref_to_ptr(key_ref);
722
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 /* make the changes with the locks held to prevent chown/chown races */
724 ret = -EACCES;
725 down_write(&key->sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726
727 if (!capable(CAP_SYS_ADMIN)) {
728 /* only the sysadmin can chown a key to some other UID */
729 if (uid != (uid_t) -1 && key->uid != uid)
Fredrik Tolf58016492006-06-26 00:24:51 -0700730 goto error_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731
732 /* only the sysadmin can set the key's GID to a group other
733 * than one of those that the current process subscribes to */
734 if (gid != (gid_t) -1 && gid != key->gid && !in_group_p(gid))
Fredrik Tolf58016492006-06-26 00:24:51 -0700735 goto error_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 }
737
Fredrik Tolf58016492006-06-26 00:24:51 -0700738 /* change the UID */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 if (uid != (uid_t) -1 && uid != key->uid) {
Fredrik Tolf58016492006-06-26 00:24:51 -0700740 ret = -ENOMEM;
Serge E. Hallyn1d1e9752009-02-26 18:27:38 -0600741 newowner = key_user_lookup(uid, current_user_ns());
Fredrik Tolf58016492006-06-26 00:24:51 -0700742 if (!newowner)
743 goto error_put;
744
745 /* transfer the quota burden to the new user */
746 if (test_bit(KEY_FLAG_IN_QUOTA, &key->flags)) {
David Howells0b77f5b2008-04-29 01:01:32 -0700747 unsigned maxkeys = (uid == 0) ?
748 key_quota_root_maxkeys : key_quota_maxkeys;
749 unsigned maxbytes = (uid == 0) ?
750 key_quota_root_maxbytes : key_quota_maxbytes;
751
Fredrik Tolf58016492006-06-26 00:24:51 -0700752 spin_lock(&newowner->lock);
David Howells0b77f5b2008-04-29 01:01:32 -0700753 if (newowner->qnkeys + 1 >= maxkeys ||
754 newowner->qnbytes + key->quotalen >= maxbytes ||
755 newowner->qnbytes + key->quotalen <
756 newowner->qnbytes)
Fredrik Tolf58016492006-06-26 00:24:51 -0700757 goto quota_overrun;
758
759 newowner->qnkeys++;
760 newowner->qnbytes += key->quotalen;
761 spin_unlock(&newowner->lock);
762
763 spin_lock(&key->user->lock);
764 key->user->qnkeys--;
765 key->user->qnbytes -= key->quotalen;
766 spin_unlock(&key->user->lock);
767 }
768
769 atomic_dec(&key->user->nkeys);
770 atomic_inc(&newowner->nkeys);
771
772 if (test_bit(KEY_FLAG_INSTANTIATED, &key->flags)) {
773 atomic_dec(&key->user->nikeys);
774 atomic_inc(&newowner->nikeys);
775 }
776
777 zapowner = key->user;
778 key->user = newowner;
779 key->uid = uid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 }
781
782 /* change the GID */
783 if (gid != (gid_t) -1)
784 key->gid = gid;
785
786 ret = 0;
787
Fredrik Tolf58016492006-06-26 00:24:51 -0700788error_put:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 up_write(&key->sem);
790 key_put(key);
Fredrik Tolf58016492006-06-26 00:24:51 -0700791 if (zapowner)
792 key_user_put(zapowner);
793error:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 return ret;
795
Fredrik Tolf58016492006-06-26 00:24:51 -0700796quota_overrun:
797 spin_unlock(&newowner->lock);
798 zapowner = newowner;
799 ret = -EDQUOT;
800 goto error_put;
801
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802} /* end keyctl_chown_key() */
803
804/*****************************************************************************/
805/*
806 * change the permission mask on a key
807 * - the keyring owned by the changer
808 * - implements keyctl(KEYCTL_SETPERM)
809 */
810long keyctl_setperm_key(key_serial_t id, key_perm_t perm)
811{
812 struct key *key;
David Howells664cceb2005-09-28 17:03:15 +0100813 key_ref_t key_ref;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 long ret;
815
816 ret = -EINVAL;
David Howells664cceb2005-09-28 17:03:15 +0100817 if (perm & ~(KEY_POS_ALL | KEY_USR_ALL | KEY_GRP_ALL | KEY_OTH_ALL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 goto error;
819
David Howells55931222009-09-02 09:13:45 +0100820 key_ref = lookup_user_key(id, KEY_LOOKUP_CREATE | KEY_LOOKUP_PARTIAL,
821 KEY_SETATTR);
David Howells664cceb2005-09-28 17:03:15 +0100822 if (IS_ERR(key_ref)) {
823 ret = PTR_ERR(key_ref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 goto error;
825 }
826
David Howells664cceb2005-09-28 17:03:15 +0100827 key = key_ref_to_ptr(key_ref);
828
David Howells76d8aea2005-06-23 22:00:49 -0700829 /* make the changes with the locks held to prevent chown/chmod races */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 ret = -EACCES;
831 down_write(&key->sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832
David Howells76d8aea2005-06-23 22:00:49 -0700833 /* if we're not the sysadmin, we can only change a key that we own */
David Howells47d804b2008-11-14 10:39:11 +1100834 if (capable(CAP_SYS_ADMIN) || key->uid == current_fsuid()) {
David Howells76d8aea2005-06-23 22:00:49 -0700835 key->perm = perm;
836 ret = 0;
837 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 up_write(&key->sem);
840 key_put(key);
David Howells76d8aea2005-06-23 22:00:49 -0700841error:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 return ret;
843
844} /* end keyctl_setperm_key() */
845
David Howells8bbf49762008-11-14 10:39:14 +1100846/*
847 * get the destination keyring for instantiation
848 */
849static long get_instantiation_keyring(key_serial_t ringid,
850 struct request_key_auth *rka,
851 struct key **_dest_keyring)
852{
853 key_ref_t dkref;
854
David Howellseca1bf52008-12-29 00:41:51 +0000855 *_dest_keyring = NULL;
856
David Howells8bbf49762008-11-14 10:39:14 +1100857 /* just return a NULL pointer if we weren't asked to make a link */
David Howellseca1bf52008-12-29 00:41:51 +0000858 if (ringid == 0)
David Howells8bbf49762008-11-14 10:39:14 +1100859 return 0;
David Howells8bbf49762008-11-14 10:39:14 +1100860
861 /* if a specific keyring is nominated by ID, then use that */
862 if (ringid > 0) {
David Howells55931222009-09-02 09:13:45 +0100863 dkref = lookup_user_key(ringid, KEY_LOOKUP_CREATE, KEY_WRITE);
David Howells8bbf49762008-11-14 10:39:14 +1100864 if (IS_ERR(dkref))
865 return PTR_ERR(dkref);
866 *_dest_keyring = key_ref_to_ptr(dkref);
867 return 0;
868 }
869
870 if (ringid == KEY_SPEC_REQKEY_AUTH_KEY)
871 return -EINVAL;
872
873 /* otherwise specify the destination keyring recorded in the
874 * authorisation key (any KEY_SPEC_*_KEYRING) */
875 if (ringid >= KEY_SPEC_REQUESTOR_KEYRING) {
David Howells21279cf2009-10-15 10:14:35 +0100876 *_dest_keyring = key_get(rka->dest_keyring);
David Howells8bbf49762008-11-14 10:39:14 +1100877 return 0;
878 }
879
880 return -ENOKEY;
881}
882
David Howellsd84f4f92008-11-14 10:39:23 +1100883/*
884 * change the request_key authorisation key on the current process
885 */
886static int keyctl_change_reqkey_auth(struct key *key)
887{
888 struct cred *new;
889
890 new = prepare_creds();
891 if (!new)
892 return -ENOMEM;
893
894 key_put(new->request_key_auth);
895 new->request_key_auth = key_get(key);
896
897 return commit_creds(new);
898}
899
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900/*****************************************************************************/
901/*
902 * instantiate the key with the specified payload, and, if one is given, link
903 * the key into the keyring
904 */
905long keyctl_instantiate_key(key_serial_t id,
906 const void __user *_payload,
907 size_t plen,
908 key_serial_t ringid)
909{
David Howellsd84f4f92008-11-14 10:39:23 +1100910 const struct cred *cred = current_cred();
David Howells3e301482005-06-23 22:00:56 -0700911 struct request_key_auth *rka;
David Howells8bbf49762008-11-14 10:39:14 +1100912 struct key *instkey, *dest_keyring;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 void *payload;
914 long ret;
David Howells38bbca62008-04-29 01:01:19 -0700915 bool vm = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916
David Howellsd84f4f92008-11-14 10:39:23 +1100917 kenter("%d,,%zu,%d", id, plen, ringid);
918
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 ret = -EINVAL;
David Howells38bbca62008-04-29 01:01:19 -0700920 if (plen > 1024 * 1024 - 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 goto error;
922
David Howellsb5f545c2006-01-08 01:02:47 -0800923 /* the appropriate instantiation authorisation key must have been
924 * assumed before calling this */
925 ret = -EPERM;
David Howellsd84f4f92008-11-14 10:39:23 +1100926 instkey = cred->request_key_auth;
David Howellsb5f545c2006-01-08 01:02:47 -0800927 if (!instkey)
928 goto error;
929
930 rka = instkey->payload.data;
931 if (rka->target_key->serial != id)
932 goto error;
933
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 /* pull the payload in if one was supplied */
935 payload = NULL;
936
937 if (_payload) {
938 ret = -ENOMEM;
939 payload = kmalloc(plen, GFP_KERNEL);
David Howells38bbca62008-04-29 01:01:19 -0700940 if (!payload) {
941 if (plen <= PAGE_SIZE)
942 goto error;
943 vm = true;
944 payload = vmalloc(plen);
945 if (!payload)
946 goto error;
947 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948
949 ret = -EFAULT;
950 if (copy_from_user(payload, _payload, plen) != 0)
951 goto error2;
952 }
953
David Howells3e301482005-06-23 22:00:56 -0700954 /* find the destination keyring amongst those belonging to the
955 * requesting task */
David Howells8bbf49762008-11-14 10:39:14 +1100956 ret = get_instantiation_keyring(ringid, rka, &dest_keyring);
957 if (ret < 0)
958 goto error2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959
960 /* instantiate the key and link it into a keyring */
David Howells3e301482005-06-23 22:00:56 -0700961 ret = key_instantiate_and_link(rka->target_key, payload, plen,
David Howells8bbf49762008-11-14 10:39:14 +1100962 dest_keyring, instkey);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963
David Howells8bbf49762008-11-14 10:39:14 +1100964 key_put(dest_keyring);
David Howellsb5f545c2006-01-08 01:02:47 -0800965
966 /* discard the assumed authority if it's just been disabled by
967 * instantiation of the key */
David Howellsd84f4f92008-11-14 10:39:23 +1100968 if (ret == 0)
969 keyctl_change_reqkey_auth(NULL);
David Howellsb5f545c2006-01-08 01:02:47 -0800970
971error2:
David Howells38bbca62008-04-29 01:01:19 -0700972 if (!vm)
973 kfree(payload);
974 else
975 vfree(payload);
David Howellsb5f545c2006-01-08 01:02:47 -0800976error:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 return ret;
978
979} /* end keyctl_instantiate_key() */
980
981/*****************************************************************************/
982/*
983 * negatively instantiate the key with the given timeout (in seconds), and, if
984 * one is given, link the key into the keyring
985 */
986long keyctl_negate_key(key_serial_t id, unsigned timeout, key_serial_t ringid)
987{
David Howellsd84f4f92008-11-14 10:39:23 +1100988 const struct cred *cred = current_cred();
David Howells3e301482005-06-23 22:00:56 -0700989 struct request_key_auth *rka;
David Howells8bbf49762008-11-14 10:39:14 +1100990 struct key *instkey, *dest_keyring;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 long ret;
992
David Howellsd84f4f92008-11-14 10:39:23 +1100993 kenter("%d,%u,%d", id, timeout, ringid);
994
David Howellsb5f545c2006-01-08 01:02:47 -0800995 /* the appropriate instantiation authorisation key must have been
996 * assumed before calling this */
997 ret = -EPERM;
David Howellsd84f4f92008-11-14 10:39:23 +1100998 instkey = cred->request_key_auth;
David Howellsb5f545c2006-01-08 01:02:47 -0800999 if (!instkey)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001
David Howells3e301482005-06-23 22:00:56 -07001002 rka = instkey->payload.data;
David Howellsb5f545c2006-01-08 01:02:47 -08001003 if (rka->target_key->serial != id)
1004 goto error;
David Howells3e301482005-06-23 22:00:56 -07001005
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 /* find the destination keyring if present (which must also be
1007 * writable) */
David Howells8bbf49762008-11-14 10:39:14 +11001008 ret = get_instantiation_keyring(ringid, rka, &dest_keyring);
1009 if (ret < 0)
1010 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011
1012 /* instantiate the key and link it into a keyring */
David Howells664cceb2005-09-28 17:03:15 +01001013 ret = key_negate_and_link(rka->target_key, timeout,
David Howells8bbf49762008-11-14 10:39:14 +11001014 dest_keyring, instkey);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015
David Howells8bbf49762008-11-14 10:39:14 +11001016 key_put(dest_keyring);
David Howellsb5f545c2006-01-08 01:02:47 -08001017
1018 /* discard the assumed authority if it's just been disabled by
1019 * instantiation of the key */
David Howellsd84f4f92008-11-14 10:39:23 +11001020 if (ret == 0)
1021 keyctl_change_reqkey_auth(NULL);
David Howellsb5f545c2006-01-08 01:02:47 -08001022
1023error:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 return ret;
1025
1026} /* end keyctl_negate_key() */
1027
1028/*****************************************************************************/
1029/*
David Howells3e301482005-06-23 22:00:56 -07001030 * set the default keyring in which request_key() will cache keys
1031 * - return the old setting
1032 */
1033long keyctl_set_reqkey_keyring(int reqkey_defl)
1034{
David Howellsd84f4f92008-11-14 10:39:23 +11001035 struct cred *new;
1036 int ret, old_setting;
1037
1038 old_setting = current_cred_xxx(jit_keyring);
1039
1040 if (reqkey_defl == KEY_REQKEY_DEFL_NO_CHANGE)
1041 return old_setting;
1042
1043 new = prepare_creds();
1044 if (!new)
1045 return -ENOMEM;
David Howells3e301482005-06-23 22:00:56 -07001046
1047 switch (reqkey_defl) {
1048 case KEY_REQKEY_DEFL_THREAD_KEYRING:
David Howellsd84f4f92008-11-14 10:39:23 +11001049 ret = install_thread_keyring_to_cred(new);
David Howells3e301482005-06-23 22:00:56 -07001050 if (ret < 0)
David Howellsd84f4f92008-11-14 10:39:23 +11001051 goto error;
David Howells3e301482005-06-23 22:00:56 -07001052 goto set;
1053
1054 case KEY_REQKEY_DEFL_PROCESS_KEYRING:
David Howellsd84f4f92008-11-14 10:39:23 +11001055 ret = install_process_keyring_to_cred(new);
1056 if (ret < 0) {
1057 if (ret != -EEXIST)
1058 goto error;
1059 ret = 0;
1060 }
1061 goto set;
David Howells3e301482005-06-23 22:00:56 -07001062
1063 case KEY_REQKEY_DEFL_DEFAULT:
1064 case KEY_REQKEY_DEFL_SESSION_KEYRING:
1065 case KEY_REQKEY_DEFL_USER_KEYRING:
1066 case KEY_REQKEY_DEFL_USER_SESSION_KEYRING:
David Howellsd84f4f92008-11-14 10:39:23 +11001067 case KEY_REQKEY_DEFL_REQUESTOR_KEYRING:
1068 goto set;
David Howells3e301482005-06-23 22:00:56 -07001069
1070 case KEY_REQKEY_DEFL_NO_CHANGE:
David Howells3e301482005-06-23 22:00:56 -07001071 case KEY_REQKEY_DEFL_GROUP_KEYRING:
1072 default:
David Howellsd84f4f92008-11-14 10:39:23 +11001073 ret = -EINVAL;
1074 goto error;
David Howells3e301482005-06-23 22:00:56 -07001075 }
1076
David Howellsd84f4f92008-11-14 10:39:23 +11001077set:
1078 new->jit_keyring = reqkey_defl;
1079 commit_creds(new);
1080 return old_setting;
1081error:
1082 abort_creds(new);
Dan Carpenter4303ef12010-06-11 17:30:05 +01001083 return ret;
David Howellsd84f4f92008-11-14 10:39:23 +11001084
David Howells3e301482005-06-23 22:00:56 -07001085} /* end keyctl_set_reqkey_keyring() */
1086
1087/*****************************************************************************/
1088/*
David Howells017679c2006-01-08 01:02:43 -08001089 * set or clear the timeout for a key
1090 */
1091long keyctl_set_timeout(key_serial_t id, unsigned timeout)
1092{
1093 struct timespec now;
1094 struct key *key;
1095 key_ref_t key_ref;
1096 time_t expiry;
1097 long ret;
1098
David Howells55931222009-09-02 09:13:45 +01001099 key_ref = lookup_user_key(id, KEY_LOOKUP_CREATE | KEY_LOOKUP_PARTIAL,
1100 KEY_SETATTR);
David Howells017679c2006-01-08 01:02:43 -08001101 if (IS_ERR(key_ref)) {
1102 ret = PTR_ERR(key_ref);
1103 goto error;
1104 }
1105
1106 key = key_ref_to_ptr(key_ref);
1107
1108 /* make the changes with the locks held to prevent races */
1109 down_write(&key->sem);
1110
1111 expiry = 0;
1112 if (timeout > 0) {
1113 now = current_kernel_time();
1114 expiry = now.tv_sec + timeout;
1115 }
1116
1117 key->expiry = expiry;
David Howellsc08ef802009-09-14 17:26:13 +01001118 key_schedule_gc(key->expiry + key_gc_delay);
David Howells017679c2006-01-08 01:02:43 -08001119
1120 up_write(&key->sem);
1121 key_put(key);
1122
1123 ret = 0;
1124error:
1125 return ret;
1126
1127} /* end keyctl_set_timeout() */
1128
1129/*****************************************************************************/
1130/*
David Howellsb5f545c2006-01-08 01:02:47 -08001131 * assume the authority to instantiate the specified key
1132 */
1133long keyctl_assume_authority(key_serial_t id)
1134{
1135 struct key *authkey;
1136 long ret;
1137
1138 /* special key IDs aren't permitted */
1139 ret = -EINVAL;
1140 if (id < 0)
1141 goto error;
1142
1143 /* we divest ourselves of authority if given an ID of 0 */
1144 if (id == 0) {
David Howellsd84f4f92008-11-14 10:39:23 +11001145 ret = keyctl_change_reqkey_auth(NULL);
David Howellsb5f545c2006-01-08 01:02:47 -08001146 goto error;
1147 }
1148
1149 /* attempt to assume the authority temporarily granted to us whilst we
1150 * instantiate the specified key
1151 * - the authorisation key must be in the current task's keyrings
1152 * somewhere
1153 */
1154 authkey = key_get_instantiation_authkey(id);
1155 if (IS_ERR(authkey)) {
1156 ret = PTR_ERR(authkey);
1157 goto error;
1158 }
1159
David Howellsd84f4f92008-11-14 10:39:23 +11001160 ret = keyctl_change_reqkey_auth(authkey);
1161 if (ret < 0)
1162 goto error;
1163 key_put(authkey);
David Howellsb5f545c2006-01-08 01:02:47 -08001164
David Howellsd84f4f92008-11-14 10:39:23 +11001165 ret = authkey->serial;
David Howellsb5f545c2006-01-08 01:02:47 -08001166error:
1167 return ret;
1168
1169} /* end keyctl_assume_authority() */
1170
David Howells70a5bb72008-04-29 01:01:26 -07001171/*
1172 * get the security label of a key
1173 * - the key must grant us view permission
1174 * - if there's a buffer, we place up to buflen bytes of data into it
1175 * - unless there's an error, we return the amount of information available,
1176 * irrespective of how much we may have copied (including the terminal NUL)
1177 * - implements keyctl(KEYCTL_GET_SECURITY)
1178 */
1179long keyctl_get_security(key_serial_t keyid,
1180 char __user *buffer,
1181 size_t buflen)
1182{
1183 struct key *key, *instkey;
1184 key_ref_t key_ref;
1185 char *context;
1186 long ret;
1187
David Howells55931222009-09-02 09:13:45 +01001188 key_ref = lookup_user_key(keyid, KEY_LOOKUP_PARTIAL, KEY_VIEW);
David Howells70a5bb72008-04-29 01:01:26 -07001189 if (IS_ERR(key_ref)) {
1190 if (PTR_ERR(key_ref) != -EACCES)
1191 return PTR_ERR(key_ref);
1192
1193 /* viewing a key under construction is also permitted if we
1194 * have the authorisation token handy */
1195 instkey = key_get_instantiation_authkey(keyid);
1196 if (IS_ERR(instkey))
Roel Kluinfa1cc7b2009-12-15 15:05:12 -08001197 return PTR_ERR(instkey);
David Howells70a5bb72008-04-29 01:01:26 -07001198 key_put(instkey);
1199
David Howells55931222009-09-02 09:13:45 +01001200 key_ref = lookup_user_key(keyid, KEY_LOOKUP_PARTIAL, 0);
David Howells70a5bb72008-04-29 01:01:26 -07001201 if (IS_ERR(key_ref))
1202 return PTR_ERR(key_ref);
1203 }
1204
1205 key = key_ref_to_ptr(key_ref);
1206 ret = security_key_getsecurity(key, &context);
1207 if (ret == 0) {
1208 /* if no information was returned, give userspace an empty
1209 * string */
1210 ret = 1;
1211 if (buffer && buflen > 0 &&
1212 copy_to_user(buffer, "", 1) != 0)
1213 ret = -EFAULT;
1214 } else if (ret > 0) {
1215 /* return as much data as there's room for */
1216 if (buffer && buflen > 0) {
1217 if (buflen > ret)
1218 buflen = ret;
1219
1220 if (copy_to_user(buffer, context, buflen) != 0)
1221 ret = -EFAULT;
1222 }
1223
1224 kfree(context);
1225 }
1226
1227 key_ref_put(key_ref);
1228 return ret;
1229}
1230
David Howellsee18d642009-09-02 09:14:21 +01001231/*
1232 * attempt to install the calling process's session keyring on the process's
1233 * parent process
1234 * - the keyring must exist and must grant us LINK permission
1235 * - implements keyctl(KEYCTL_SESSION_TO_PARENT)
1236 */
1237long keyctl_session_to_parent(void)
1238{
Geert Uytterhoevena00ae4d2009-12-13 20:21:34 +01001239#ifdef TIF_NOTIFY_RESUME
David Howellsee18d642009-09-02 09:14:21 +01001240 struct task_struct *me, *parent;
1241 const struct cred *mycred, *pcred;
1242 struct cred *cred, *oldcred;
1243 key_ref_t keyring_r;
1244 int ret;
1245
1246 keyring_r = lookup_user_key(KEY_SPEC_SESSION_KEYRING, 0, KEY_LINK);
1247 if (IS_ERR(keyring_r))
1248 return PTR_ERR(keyring_r);
1249
1250 /* our parent is going to need a new cred struct, a new tgcred struct
1251 * and new security data, so we allocate them here to prevent ENOMEM in
1252 * our parent */
1253 ret = -ENOMEM;
1254 cred = cred_alloc_blank();
1255 if (!cred)
1256 goto error_keyring;
1257
1258 cred->tgcred->session_keyring = key_ref_to_ptr(keyring_r);
1259 keyring_r = NULL;
1260
1261 me = current;
1262 write_lock_irq(&tasklist_lock);
1263
1264 parent = me->real_parent;
1265 ret = -EPERM;
1266
1267 /* the parent mustn't be init and mustn't be a kernel thread */
1268 if (parent->pid <= 1 || !parent->mm)
1269 goto not_permitted;
1270
1271 /* the parent must be single threaded */
Oleg Nesterovdd98acf2010-05-26 14:43:23 -07001272 if (!thread_group_empty(parent))
David Howellsee18d642009-09-02 09:14:21 +01001273 goto not_permitted;
1274
1275 /* the parent and the child must have different session keyrings or
1276 * there's no point */
1277 mycred = current_cred();
1278 pcred = __task_cred(parent);
1279 if (mycred == pcred ||
1280 mycred->tgcred->session_keyring == pcred->tgcred->session_keyring)
1281 goto already_same;
1282
1283 /* the parent must have the same effective ownership and mustn't be
1284 * SUID/SGID */
Justin P. Mattockc5b60b52010-04-21 00:02:11 -07001285 if (pcred->uid != mycred->euid ||
David Howellsee18d642009-09-02 09:14:21 +01001286 pcred->euid != mycred->euid ||
1287 pcred->suid != mycred->euid ||
Justin P. Mattockc5b60b52010-04-21 00:02:11 -07001288 pcred->gid != mycred->egid ||
David Howellsee18d642009-09-02 09:14:21 +01001289 pcred->egid != mycred->egid ||
1290 pcred->sgid != mycred->egid)
1291 goto not_permitted;
1292
1293 /* the keyrings must have the same UID */
Justin P. Mattockc5b60b52010-04-21 00:02:11 -07001294 if (pcred->tgcred->session_keyring->uid != mycred->euid ||
David Howellsee18d642009-09-02 09:14:21 +01001295 mycred->tgcred->session_keyring->uid != mycred->euid)
1296 goto not_permitted;
1297
David Howellsee18d642009-09-02 09:14:21 +01001298 /* if there's an already pending keyring replacement, then we replace
1299 * that */
1300 oldcred = parent->replacement_session_keyring;
1301
1302 /* the replacement session keyring is applied just prior to userspace
1303 * restarting */
1304 parent->replacement_session_keyring = cred;
1305 cred = NULL;
1306 set_ti_thread_flag(task_thread_info(parent), TIF_NOTIFY_RESUME);
1307
1308 write_unlock_irq(&tasklist_lock);
1309 if (oldcred)
1310 put_cred(oldcred);
1311 return 0;
1312
1313already_same:
1314 ret = 0;
1315not_permitted:
Marc Dionne5c843422009-09-14 12:46:23 +01001316 write_unlock_irq(&tasklist_lock);
David Howellsee18d642009-09-02 09:14:21 +01001317 put_cred(cred);
1318 return ret;
1319
1320error_keyring:
1321 key_ref_put(keyring_r);
1322 return ret;
Geert Uytterhoevena00ae4d2009-12-13 20:21:34 +01001323
1324#else /* !TIF_NOTIFY_RESUME */
1325 /*
1326 * To be removed when TIF_NOTIFY_RESUME has been implemented on
1327 * m68k/xtensa
1328 */
1329#warning TIF_NOTIFY_RESUME not implemented
1330 return -EOPNOTSUPP;
1331#endif /* !TIF_NOTIFY_RESUME */
David Howellsee18d642009-09-02 09:14:21 +01001332}
1333
David Howellsb5f545c2006-01-08 01:02:47 -08001334/*****************************************************************************/
1335/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 * the key control system call
1337 */
Heiko Carstens938bb9f2009-01-14 14:14:30 +01001338SYSCALL_DEFINE5(keyctl, int, option, unsigned long, arg2, unsigned long, arg3,
1339 unsigned long, arg4, unsigned long, arg5)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340{
1341 switch (option) {
1342 case KEYCTL_GET_KEYRING_ID:
1343 return keyctl_get_keyring_ID((key_serial_t) arg2,
1344 (int) arg3);
1345
1346 case KEYCTL_JOIN_SESSION_KEYRING:
1347 return keyctl_join_session_keyring((const char __user *) arg2);
1348
1349 case KEYCTL_UPDATE:
1350 return keyctl_update_key((key_serial_t) arg2,
1351 (const void __user *) arg3,
1352 (size_t) arg4);
1353
1354 case KEYCTL_REVOKE:
1355 return keyctl_revoke_key((key_serial_t) arg2);
1356
1357 case KEYCTL_DESCRIBE:
1358 return keyctl_describe_key((key_serial_t) arg2,
1359 (char __user *) arg3,
1360 (unsigned) arg4);
1361
1362 case KEYCTL_CLEAR:
1363 return keyctl_keyring_clear((key_serial_t) arg2);
1364
1365 case KEYCTL_LINK:
1366 return keyctl_keyring_link((key_serial_t) arg2,
1367 (key_serial_t) arg3);
1368
1369 case KEYCTL_UNLINK:
1370 return keyctl_keyring_unlink((key_serial_t) arg2,
1371 (key_serial_t) arg3);
1372
1373 case KEYCTL_SEARCH:
1374 return keyctl_keyring_search((key_serial_t) arg2,
1375 (const char __user *) arg3,
1376 (const char __user *) arg4,
1377 (key_serial_t) arg5);
1378
1379 case KEYCTL_READ:
1380 return keyctl_read_key((key_serial_t) arg2,
1381 (char __user *) arg3,
1382 (size_t) arg4);
1383
1384 case KEYCTL_CHOWN:
1385 return keyctl_chown_key((key_serial_t) arg2,
1386 (uid_t) arg3,
1387 (gid_t) arg4);
1388
1389 case KEYCTL_SETPERM:
1390 return keyctl_setperm_key((key_serial_t) arg2,
1391 (key_perm_t) arg3);
1392
1393 case KEYCTL_INSTANTIATE:
1394 return keyctl_instantiate_key((key_serial_t) arg2,
1395 (const void __user *) arg3,
1396 (size_t) arg4,
1397 (key_serial_t) arg5);
1398
1399 case KEYCTL_NEGATE:
1400 return keyctl_negate_key((key_serial_t) arg2,
1401 (unsigned) arg3,
1402 (key_serial_t) arg4);
1403
David Howells3e301482005-06-23 22:00:56 -07001404 case KEYCTL_SET_REQKEY_KEYRING:
1405 return keyctl_set_reqkey_keyring(arg2);
1406
David Howells017679c2006-01-08 01:02:43 -08001407 case KEYCTL_SET_TIMEOUT:
1408 return keyctl_set_timeout((key_serial_t) arg2,
1409 (unsigned) arg3);
1410
David Howellsb5f545c2006-01-08 01:02:47 -08001411 case KEYCTL_ASSUME_AUTHORITY:
1412 return keyctl_assume_authority((key_serial_t) arg2);
1413
David Howells70a5bb72008-04-29 01:01:26 -07001414 case KEYCTL_GET_SECURITY:
1415 return keyctl_get_security((key_serial_t) arg2,
James Morris90bd49a2008-12-29 14:35:35 +11001416 (char __user *) arg3,
David Howells70a5bb72008-04-29 01:01:26 -07001417 (size_t) arg4);
1418
David Howellsee18d642009-09-02 09:14:21 +01001419 case KEYCTL_SESSION_TO_PARENT:
1420 return keyctl_session_to_parent();
1421
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 default:
1423 return -EOPNOTSUPP;
1424 }
1425
1426} /* end sys_keyctl() */