]> git.karo-electronics.de Git - linux-beck.git/blob - security/keys/keyctl.c
KEYS: special dot prefixed keyring name bug fix
[linux-beck.git] / security / keys / keyctl.c
1 /* Userspace key control operations
2  *
3  * Copyright (C) 2004-5 Red Hat, Inc. All Rights Reserved.
4  * 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/key.h>
18 #include <linux/keyctl.h>
19 #include <linux/fs.h>
20 #include <linux/capability.h>
21 #include <linux/string.h>
22 #include <linux/err.h>
23 #include <linux/vmalloc.h>
24 #include <linux/security.h>
25 #include <linux/uio.h>
26 #include <asm/uaccess.h>
27 #include "internal.h"
28
29 static int key_get_type_from_user(char *type,
30                                   const char __user *_type,
31                                   unsigned len)
32 {
33         int ret;
34
35         ret = strncpy_from_user(type, _type, len);
36         if (ret < 0)
37                 return ret;
38         if (ret == 0 || ret >= len)
39                 return -EINVAL;
40         type[len - 1] = '\0';
41         return 0;
42 }
43
44 /*
45  * Extract the description of a new key from userspace and either add it as a
46  * new key to the specified keyring or update a matching key in that keyring.
47  *
48  * If the description is NULL or an empty string, the key type is asked to
49  * generate one from the payload.
50  *
51  * The keyring must be writable so that we can attach the key to it.
52  *
53  * If successful, the new key's serial number is returned, otherwise an error
54  * code is returned.
55  */
56 SYSCALL_DEFINE5(add_key, const char __user *, _type,
57                 const char __user *, _description,
58                 const void __user *, _payload,
59                 size_t, plen,
60                 key_serial_t, ringid)
61 {
62         key_ref_t keyring_ref, key_ref;
63         char type[32], *description;
64         void *payload;
65         long ret;
66         bool vm;
67
68         ret = -EINVAL;
69         if (plen > 1024 * 1024 - 1)
70                 goto error;
71
72         /* draw all the data into kernel space */
73         ret = key_get_type_from_user(type, _type, sizeof(type));
74         if (ret < 0)
75                 goto error;
76
77         description = NULL;
78         if (_description) {
79                 description = strndup_user(_description, PAGE_SIZE);
80                 if (IS_ERR(description)) {
81                         ret = PTR_ERR(description);
82                         goto error;
83                 }
84                 if (!*description) {
85                         kfree(description);
86                         description = NULL;
87                 } else if ((description[0] == '.') &&
88                            (strncmp(type, "keyring", 7) == 0)) {
89                         ret = -EPERM;
90                         goto error2;
91                 }
92         }
93
94         /* pull the payload in if one was supplied */
95         payload = NULL;
96
97         vm = false;
98         if (_payload) {
99                 ret = -ENOMEM;
100                 payload = kmalloc(plen, GFP_KERNEL | __GFP_NOWARN);
101                 if (!payload) {
102                         if (plen <= PAGE_SIZE)
103                                 goto error2;
104                         vm = true;
105                         payload = vmalloc(plen);
106                         if (!payload)
107                                 goto error2;
108                 }
109
110                 ret = -EFAULT;
111                 if (copy_from_user(payload, _payload, plen) != 0)
112                         goto error3;
113         }
114
115         /* find the target keyring (which must be writable) */
116         keyring_ref = lookup_user_key(ringid, KEY_LOOKUP_CREATE, KEY_NEED_WRITE);
117         if (IS_ERR(keyring_ref)) {
118                 ret = PTR_ERR(keyring_ref);
119                 goto error3;
120         }
121
122         /* create or update the requested key and add it to the target
123          * keyring */
124         key_ref = key_create_or_update(keyring_ref, type, description,
125                                        payload, plen, KEY_PERM_UNDEF,
126                                        KEY_ALLOC_IN_QUOTA);
127         if (!IS_ERR(key_ref)) {
128                 ret = key_ref_to_ptr(key_ref)->serial;
129                 key_ref_put(key_ref);
130         }
131         else {
132                 ret = PTR_ERR(key_ref);
133         }
134
135         key_ref_put(keyring_ref);
136  error3:
137         if (!vm)
138                 kfree(payload);
139         else
140                 vfree(payload);
141  error2:
142         kfree(description);
143  error:
144         return ret;
145 }
146
147 /*
148  * Search the process keyrings and keyring trees linked from those for a
149  * matching key.  Keyrings must have appropriate Search permission to be
150  * searched.
151  *
152  * If a key is found, it will be attached to the destination keyring if there's
153  * one specified and the serial number of the key will be returned.
154  *
155  * If no key is found, /sbin/request-key will be invoked if _callout_info is
156  * non-NULL in an attempt to create a key.  The _callout_info string will be
157  * passed to /sbin/request-key to aid with completing the request.  If the
158  * _callout_info string is "" then it will be changed to "-".
159  */
160 SYSCALL_DEFINE4(request_key, const char __user *, _type,
161                 const char __user *, _description,
162                 const char __user *, _callout_info,
163                 key_serial_t, destringid)
164 {
165         struct key_type *ktype;
166         struct key *key;
167         key_ref_t dest_ref;
168         size_t callout_len;
169         char type[32], *description, *callout_info;
170         long ret;
171
172         /* pull the type into kernel space */
173         ret = key_get_type_from_user(type, _type, sizeof(type));
174         if (ret < 0)
175                 goto error;
176
177         /* pull the description into kernel space */
178         description = strndup_user(_description, PAGE_SIZE);
179         if (IS_ERR(description)) {
180                 ret = PTR_ERR(description);
181                 goto error;
182         }
183
184         /* pull the callout info into kernel space */
185         callout_info = NULL;
186         callout_len = 0;
187         if (_callout_info) {
188                 callout_info = strndup_user(_callout_info, PAGE_SIZE);
189                 if (IS_ERR(callout_info)) {
190                         ret = PTR_ERR(callout_info);
191                         goto error2;
192                 }
193                 callout_len = strlen(callout_info);
194         }
195
196         /* get the destination keyring if specified */
197         dest_ref = NULL;
198         if (destringid) {
199                 dest_ref = lookup_user_key(destringid, KEY_LOOKUP_CREATE,
200                                            KEY_NEED_WRITE);
201                 if (IS_ERR(dest_ref)) {
202                         ret = PTR_ERR(dest_ref);
203                         goto error3;
204                 }
205         }
206
207         /* find the key type */
208         ktype = key_type_lookup(type);
209         if (IS_ERR(ktype)) {
210                 ret = PTR_ERR(ktype);
211                 goto error4;
212         }
213
214         /* do the search */
215         key = request_key_and_link(ktype, description, callout_info,
216                                    callout_len, NULL, key_ref_to_ptr(dest_ref),
217                                    KEY_ALLOC_IN_QUOTA);
218         if (IS_ERR(key)) {
219                 ret = PTR_ERR(key);
220                 goto error5;
221         }
222
223         /* wait for the key to finish being constructed */
224         ret = wait_for_key_construction(key, 1);
225         if (ret < 0)
226                 goto error6;
227
228         ret = key->serial;
229
230 error6:
231         key_put(key);
232 error5:
233         key_type_put(ktype);
234 error4:
235         key_ref_put(dest_ref);
236 error3:
237         kfree(callout_info);
238 error2:
239         kfree(description);
240 error:
241         return ret;
242 }
243
244 /*
245  * Get the ID of the specified process keyring.
246  *
247  * The requested keyring must have search permission to be found.
248  *
249  * If successful, the ID of the requested keyring will be returned.
250  */
251 long keyctl_get_keyring_ID(key_serial_t id, int create)
252 {
253         key_ref_t key_ref;
254         unsigned long lflags;
255         long ret;
256
257         lflags = create ? KEY_LOOKUP_CREATE : 0;
258         key_ref = lookup_user_key(id, lflags, KEY_NEED_SEARCH);
259         if (IS_ERR(key_ref)) {
260                 ret = PTR_ERR(key_ref);
261                 goto error;
262         }
263
264         ret = key_ref_to_ptr(key_ref)->serial;
265         key_ref_put(key_ref);
266 error:
267         return ret;
268 }
269
270 /*
271  * Join a (named) session keyring.
272  *
273  * Create and join an anonymous session keyring or join a named session
274  * keyring, creating it if necessary.  A named session keyring must have Search
275  * permission for it to be joined.  Session keyrings without this permit will
276  * be skipped over.
277  *
278  * If successful, the ID of the joined session keyring will be returned.
279  */
280 long keyctl_join_session_keyring(const char __user *_name)
281 {
282         char *name;
283         long ret;
284
285         /* fetch the name from userspace */
286         name = NULL;
287         if (_name) {
288                 name = strndup_user(_name, PAGE_SIZE);
289                 if (IS_ERR(name)) {
290                         ret = PTR_ERR(name);
291                         goto error;
292                 }
293         }
294
295         /* join the session */
296         ret = join_session_keyring(name);
297         kfree(name);
298
299 error:
300         return ret;
301 }
302
303 /*
304  * Update a key's data payload from the given data.
305  *
306  * The key must grant the caller Write permission and the key type must support
307  * updating for this to work.  A negative key can be positively instantiated
308  * with this call.
309  *
310  * If successful, 0 will be returned.  If the key type does not support
311  * updating, then -EOPNOTSUPP will be returned.
312  */
313 long keyctl_update_key(key_serial_t id,
314                        const void __user *_payload,
315                        size_t plen)
316 {
317         key_ref_t key_ref;
318         void *payload;
319         long ret;
320
321         ret = -EINVAL;
322         if (plen > PAGE_SIZE)
323                 goto error;
324
325         /* pull the payload in if one was supplied */
326         payload = NULL;
327         if (_payload) {
328                 ret = -ENOMEM;
329                 payload = kmalloc(plen, GFP_KERNEL);
330                 if (!payload)
331                         goto error;
332
333                 ret = -EFAULT;
334                 if (copy_from_user(payload, _payload, plen) != 0)
335                         goto error2;
336         }
337
338         /* find the target key (which must be writable) */
339         key_ref = lookup_user_key(id, 0, KEY_NEED_WRITE);
340         if (IS_ERR(key_ref)) {
341                 ret = PTR_ERR(key_ref);
342                 goto error2;
343         }
344
345         /* update the key */
346         ret = key_update(key_ref, payload, plen);
347
348         key_ref_put(key_ref);
349 error2:
350         kfree(payload);
351 error:
352         return ret;
353 }
354
355 /*
356  * Revoke a key.
357  *
358  * The key must be grant the caller Write or Setattr permission for this to
359  * work.  The key type should give up its quota claim when revoked.  The key
360  * and any links to the key will be automatically garbage collected after a
361  * certain amount of time (/proc/sys/kernel/keys/gc_delay).
362  *
363  * If successful, 0 is returned.
364  */
365 long keyctl_revoke_key(key_serial_t id)
366 {
367         key_ref_t key_ref;
368         long ret;
369
370         key_ref = lookup_user_key(id, 0, KEY_NEED_WRITE);
371         if (IS_ERR(key_ref)) {
372                 ret = PTR_ERR(key_ref);
373                 if (ret != -EACCES)
374                         goto error;
375                 key_ref = lookup_user_key(id, 0, KEY_NEED_SETATTR);
376                 if (IS_ERR(key_ref)) {
377                         ret = PTR_ERR(key_ref);
378                         goto error;
379                 }
380         }
381
382         key_revoke(key_ref_to_ptr(key_ref));
383         ret = 0;
384
385         key_ref_put(key_ref);
386 error:
387         return ret;
388 }
389
390 /*
391  * Invalidate a key.
392  *
393  * The key must be grant the caller Invalidate permission for this to work.
394  * The key and any links to the key will be automatically garbage collected
395  * immediately.
396  *
397  * If successful, 0 is returned.
398  */
399 long keyctl_invalidate_key(key_serial_t id)
400 {
401         key_ref_t key_ref;
402         long ret;
403
404         kenter("%d", id);
405
406         key_ref = lookup_user_key(id, 0, KEY_NEED_SEARCH);
407         if (IS_ERR(key_ref)) {
408                 ret = PTR_ERR(key_ref);
409                 goto error;
410         }
411
412         key_invalidate(key_ref_to_ptr(key_ref));
413         ret = 0;
414
415         key_ref_put(key_ref);
416 error:
417         kleave(" = %ld", ret);
418         return ret;
419 }
420
421 /*
422  * Clear the specified keyring, creating an empty process keyring if one of the
423  * special keyring IDs is used.
424  *
425  * The keyring must grant the caller Write permission for this to work.  If
426  * successful, 0 will be returned.
427  */
428 long keyctl_keyring_clear(key_serial_t ringid)
429 {
430         key_ref_t keyring_ref;
431         long ret;
432
433         keyring_ref = lookup_user_key(ringid, KEY_LOOKUP_CREATE, KEY_NEED_WRITE);
434         if (IS_ERR(keyring_ref)) {
435                 ret = PTR_ERR(keyring_ref);
436
437                 /* Root is permitted to invalidate certain special keyrings */
438                 if (capable(CAP_SYS_ADMIN)) {
439                         keyring_ref = lookup_user_key(ringid, 0, 0);
440                         if (IS_ERR(keyring_ref))
441                                 goto error;
442                         if (test_bit(KEY_FLAG_ROOT_CAN_CLEAR,
443                                      &key_ref_to_ptr(keyring_ref)->flags))
444                                 goto clear;
445                         goto error_put;
446                 }
447
448                 goto error;
449         }
450
451 clear:
452         ret = keyring_clear(key_ref_to_ptr(keyring_ref));
453 error_put:
454         key_ref_put(keyring_ref);
455 error:
456         return ret;
457 }
458
459 /*
460  * Create a link from a keyring to a key if there's no matching key in the
461  * keyring, otherwise replace the link to the matching key with a link to the
462  * new key.
463  *
464  * The key must grant the caller Link permission and the the keyring must grant
465  * the caller Write permission.  Furthermore, if an additional link is created,
466  * the keyring's quota will be extended.
467  *
468  * If successful, 0 will be returned.
469  */
470 long keyctl_keyring_link(key_serial_t id, key_serial_t ringid)
471 {
472         key_ref_t keyring_ref, key_ref;
473         long ret;
474
475         keyring_ref = lookup_user_key(ringid, KEY_LOOKUP_CREATE, KEY_NEED_WRITE);
476         if (IS_ERR(keyring_ref)) {
477                 ret = PTR_ERR(keyring_ref);
478                 goto error;
479         }
480
481         key_ref = lookup_user_key(id, KEY_LOOKUP_CREATE, KEY_NEED_LINK);
482         if (IS_ERR(key_ref)) {
483                 ret = PTR_ERR(key_ref);
484                 goto error2;
485         }
486
487         ret = key_link(key_ref_to_ptr(keyring_ref), key_ref_to_ptr(key_ref));
488
489         key_ref_put(key_ref);
490 error2:
491         key_ref_put(keyring_ref);
492 error:
493         return ret;
494 }
495
496 /*
497  * Unlink a key from a keyring.
498  *
499  * The keyring must grant the caller Write permission for this to work; the key
500  * itself need not grant the caller anything.  If the last link to a key is
501  * removed then that key will be scheduled for destruction.
502  *
503  * If successful, 0 will be returned.
504  */
505 long keyctl_keyring_unlink(key_serial_t id, key_serial_t ringid)
506 {
507         key_ref_t keyring_ref, key_ref;
508         long ret;
509
510         keyring_ref = lookup_user_key(ringid, 0, KEY_NEED_WRITE);
511         if (IS_ERR(keyring_ref)) {
512                 ret = PTR_ERR(keyring_ref);
513                 goto error;
514         }
515
516         key_ref = lookup_user_key(id, KEY_LOOKUP_FOR_UNLINK, 0);
517         if (IS_ERR(key_ref)) {
518                 ret = PTR_ERR(key_ref);
519                 goto error2;
520         }
521
522         ret = key_unlink(key_ref_to_ptr(keyring_ref), key_ref_to_ptr(key_ref));
523
524         key_ref_put(key_ref);
525 error2:
526         key_ref_put(keyring_ref);
527 error:
528         return ret;
529 }
530
531 /*
532  * Return a description of a key to userspace.
533  *
534  * The key must grant the caller View permission for this to work.
535  *
536  * If there's a buffer, we place up to buflen bytes of data into it formatted
537  * in the following way:
538  *
539  *      type;uid;gid;perm;description<NUL>
540  *
541  * If successful, we return the amount of description available, irrespective
542  * of how much we may have copied into the buffer.
543  */
544 long keyctl_describe_key(key_serial_t keyid,
545                          char __user *buffer,
546                          size_t buflen)
547 {
548         struct key *key, *instkey;
549         key_ref_t key_ref;
550         char *tmpbuf;
551         long ret;
552
553         key_ref = lookup_user_key(keyid, KEY_LOOKUP_PARTIAL, KEY_NEED_VIEW);
554         if (IS_ERR(key_ref)) {
555                 /* viewing a key under construction is permitted if we have the
556                  * authorisation token handy */
557                 if (PTR_ERR(key_ref) == -EACCES) {
558                         instkey = key_get_instantiation_authkey(keyid);
559                         if (!IS_ERR(instkey)) {
560                                 key_put(instkey);
561                                 key_ref = lookup_user_key(keyid,
562                                                           KEY_LOOKUP_PARTIAL,
563                                                           0);
564                                 if (!IS_ERR(key_ref))
565                                         goto okay;
566                         }
567                 }
568
569                 ret = PTR_ERR(key_ref);
570                 goto error;
571         }
572
573 okay:
574         /* calculate how much description we're going to return */
575         ret = -ENOMEM;
576         tmpbuf = kmalloc(PAGE_SIZE, GFP_KERNEL);
577         if (!tmpbuf)
578                 goto error2;
579
580         key = key_ref_to_ptr(key_ref);
581
582         ret = snprintf(tmpbuf, PAGE_SIZE - 1,
583                        "%s;%d;%d;%08x;%s",
584                        key->type->name,
585                        from_kuid_munged(current_user_ns(), key->uid),
586                        from_kgid_munged(current_user_ns(), key->gid),
587                        key->perm,
588                        key->description ?: "");
589
590         /* include a NUL char at the end of the data */
591         if (ret > PAGE_SIZE - 1)
592                 ret = PAGE_SIZE - 1;
593         tmpbuf[ret] = 0;
594         ret++;
595
596         /* consider returning the data */
597         if (buffer && buflen > 0) {
598                 if (buflen > ret)
599                         buflen = ret;
600
601                 if (copy_to_user(buffer, tmpbuf, buflen) != 0)
602                         ret = -EFAULT;
603         }
604
605         kfree(tmpbuf);
606 error2:
607         key_ref_put(key_ref);
608 error:
609         return ret;
610 }
611
612 /*
613  * Search the specified keyring and any keyrings it links to for a matching
614  * key.  Only keyrings that grant the caller Search permission will be searched
615  * (this includes the starting keyring).  Only keys with Search permission can
616  * be found.
617  *
618  * If successful, the found key will be linked to the destination keyring if
619  * supplied and the key has Link permission, and the found key ID will be
620  * returned.
621  */
622 long keyctl_keyring_search(key_serial_t ringid,
623                            const char __user *_type,
624                            const char __user *_description,
625                            key_serial_t destringid)
626 {
627         struct key_type *ktype;
628         key_ref_t keyring_ref, key_ref, dest_ref;
629         char type[32], *description;
630         long ret;
631
632         /* pull the type and description into kernel space */
633         ret = key_get_type_from_user(type, _type, sizeof(type));
634         if (ret < 0)
635                 goto error;
636
637         description = strndup_user(_description, PAGE_SIZE);
638         if (IS_ERR(description)) {
639                 ret = PTR_ERR(description);
640                 goto error;
641         }
642
643         /* get the keyring at which to begin the search */
644         keyring_ref = lookup_user_key(ringid, 0, KEY_NEED_SEARCH);
645         if (IS_ERR(keyring_ref)) {
646                 ret = PTR_ERR(keyring_ref);
647                 goto error2;
648         }
649
650         /* get the destination keyring if specified */
651         dest_ref = NULL;
652         if (destringid) {
653                 dest_ref = lookup_user_key(destringid, KEY_LOOKUP_CREATE,
654                                            KEY_NEED_WRITE);
655                 if (IS_ERR(dest_ref)) {
656                         ret = PTR_ERR(dest_ref);
657                         goto error3;
658                 }
659         }
660
661         /* find the key type */
662         ktype = key_type_lookup(type);
663         if (IS_ERR(ktype)) {
664                 ret = PTR_ERR(ktype);
665                 goto error4;
666         }
667
668         /* do the search */
669         key_ref = keyring_search(keyring_ref, ktype, description);
670         if (IS_ERR(key_ref)) {
671                 ret = PTR_ERR(key_ref);
672
673                 /* treat lack or presence of a negative key the same */
674                 if (ret == -EAGAIN)
675                         ret = -ENOKEY;
676                 goto error5;
677         }
678
679         /* link the resulting key to the destination keyring if we can */
680         if (dest_ref) {
681                 ret = key_permission(key_ref, KEY_NEED_LINK);
682                 if (ret < 0)
683                         goto error6;
684
685                 ret = key_link(key_ref_to_ptr(dest_ref), key_ref_to_ptr(key_ref));
686                 if (ret < 0)
687                         goto error6;
688         }
689
690         ret = key_ref_to_ptr(key_ref)->serial;
691
692 error6:
693         key_ref_put(key_ref);
694 error5:
695         key_type_put(ktype);
696 error4:
697         key_ref_put(dest_ref);
698 error3:
699         key_ref_put(keyring_ref);
700 error2:
701         kfree(description);
702 error:
703         return ret;
704 }
705
706 /*
707  * Read a key's payload.
708  *
709  * The key must either grant the caller Read permission, or it must grant the
710  * caller Search permission when searched for from the process keyrings.
711  *
712  * If successful, we place up to buflen bytes of data into the buffer, if one
713  * is provided, and return the amount of data that is available in the key,
714  * irrespective of how much we copied into the buffer.
715  */
716 long keyctl_read_key(key_serial_t keyid, char __user *buffer, size_t buflen)
717 {
718         struct key *key;
719         key_ref_t key_ref;
720         long ret;
721
722         /* find the key first */
723         key_ref = lookup_user_key(keyid, 0, 0);
724         if (IS_ERR(key_ref)) {
725                 ret = -ENOKEY;
726                 goto error;
727         }
728
729         key = key_ref_to_ptr(key_ref);
730
731         /* see if we can read it directly */
732         ret = key_permission(key_ref, KEY_NEED_READ);
733         if (ret == 0)
734                 goto can_read_key;
735         if (ret != -EACCES)
736                 goto error;
737
738         /* we can't; see if it's searchable from this process's keyrings
739          * - we automatically take account of the fact that it may be
740          *   dangling off an instantiation key
741          */
742         if (!is_key_possessed(key_ref)) {
743                 ret = -EACCES;
744                 goto error2;
745         }
746
747         /* the key is probably readable - now try to read it */
748 can_read_key:
749         ret = key_validate(key);
750         if (ret == 0) {
751                 ret = -EOPNOTSUPP;
752                 if (key->type->read) {
753                         /* read the data with the semaphore held (since we
754                          * might sleep) */
755                         down_read(&key->sem);
756                         ret = key->type->read(key, buffer, buflen);
757                         up_read(&key->sem);
758                 }
759         }
760
761 error2:
762         key_put(key);
763 error:
764         return ret;
765 }
766
767 /*
768  * Change the ownership of a key
769  *
770  * The key must grant the caller Setattr permission for this to work, though
771  * the key need not be fully instantiated yet.  For the UID to be changed, or
772  * for the GID to be changed to a group the caller is not a member of, the
773  * caller must have sysadmin capability.  If either uid or gid is -1 then that
774  * attribute is not changed.
775  *
776  * If the UID is to be changed, the new user must have sufficient quota to
777  * accept the key.  The quota deduction will be removed from the old user to
778  * the new user should the attribute be changed.
779  *
780  * If successful, 0 will be returned.
781  */
782 long keyctl_chown_key(key_serial_t id, uid_t user, gid_t group)
783 {
784         struct key_user *newowner, *zapowner = NULL;
785         struct key *key;
786         key_ref_t key_ref;
787         long ret;
788         kuid_t uid;
789         kgid_t gid;
790
791         uid = make_kuid(current_user_ns(), user);
792         gid = make_kgid(current_user_ns(), group);
793         ret = -EINVAL;
794         if ((user != (uid_t) -1) && !uid_valid(uid))
795                 goto error;
796         if ((group != (gid_t) -1) && !gid_valid(gid))
797                 goto error;
798
799         ret = 0;
800         if (user == (uid_t) -1 && group == (gid_t) -1)
801                 goto error;
802
803         key_ref = lookup_user_key(id, KEY_LOOKUP_CREATE | KEY_LOOKUP_PARTIAL,
804                                   KEY_NEED_SETATTR);
805         if (IS_ERR(key_ref)) {
806                 ret = PTR_ERR(key_ref);
807                 goto error;
808         }
809
810         key = key_ref_to_ptr(key_ref);
811
812         /* make the changes with the locks held to prevent chown/chown races */
813         ret = -EACCES;
814         down_write(&key->sem);
815
816         if (!capable(CAP_SYS_ADMIN)) {
817                 /* only the sysadmin can chown a key to some other UID */
818                 if (user != (uid_t) -1 && !uid_eq(key->uid, uid))
819                         goto error_put;
820
821                 /* only the sysadmin can set the key's GID to a group other
822                  * than one of those that the current process subscribes to */
823                 if (group != (gid_t) -1 && !gid_eq(gid, key->gid) && !in_group_p(gid))
824                         goto error_put;
825         }
826
827         /* change the UID */
828         if (user != (uid_t) -1 && !uid_eq(uid, key->uid)) {
829                 ret = -ENOMEM;
830                 newowner = key_user_lookup(uid);
831                 if (!newowner)
832                         goto error_put;
833
834                 /* transfer the quota burden to the new user */
835                 if (test_bit(KEY_FLAG_IN_QUOTA, &key->flags)) {
836                         unsigned maxkeys = uid_eq(uid, GLOBAL_ROOT_UID) ?
837                                 key_quota_root_maxkeys : key_quota_maxkeys;
838                         unsigned maxbytes = uid_eq(uid, GLOBAL_ROOT_UID) ?
839                                 key_quota_root_maxbytes : key_quota_maxbytes;
840
841                         spin_lock(&newowner->lock);
842                         if (newowner->qnkeys + 1 >= maxkeys ||
843                             newowner->qnbytes + key->quotalen >= maxbytes ||
844                             newowner->qnbytes + key->quotalen <
845                             newowner->qnbytes)
846                                 goto quota_overrun;
847
848                         newowner->qnkeys++;
849                         newowner->qnbytes += key->quotalen;
850                         spin_unlock(&newowner->lock);
851
852                         spin_lock(&key->user->lock);
853                         key->user->qnkeys--;
854                         key->user->qnbytes -= key->quotalen;
855                         spin_unlock(&key->user->lock);
856                 }
857
858                 atomic_dec(&key->user->nkeys);
859                 atomic_inc(&newowner->nkeys);
860
861                 if (test_bit(KEY_FLAG_INSTANTIATED, &key->flags)) {
862                         atomic_dec(&key->user->nikeys);
863                         atomic_inc(&newowner->nikeys);
864                 }
865
866                 zapowner = key->user;
867                 key->user = newowner;
868                 key->uid = uid;
869         }
870
871         /* change the GID */
872         if (group != (gid_t) -1)
873                 key->gid = gid;
874
875         ret = 0;
876
877 error_put:
878         up_write(&key->sem);
879         key_put(key);
880         if (zapowner)
881                 key_user_put(zapowner);
882 error:
883         return ret;
884
885 quota_overrun:
886         spin_unlock(&newowner->lock);
887         zapowner = newowner;
888         ret = -EDQUOT;
889         goto error_put;
890 }
891
892 /*
893  * Change the permission mask on a key.
894  *
895  * The key must grant the caller Setattr permission for this to work, though
896  * the key need not be fully instantiated yet.  If the caller does not have
897  * sysadmin capability, it may only change the permission on keys that it owns.
898  */
899 long keyctl_setperm_key(key_serial_t id, key_perm_t perm)
900 {
901         struct key *key;
902         key_ref_t key_ref;
903         long ret;
904
905         ret = -EINVAL;
906         if (perm & ~(KEY_POS_ALL | KEY_USR_ALL | KEY_GRP_ALL | KEY_OTH_ALL))
907                 goto error;
908
909         key_ref = lookup_user_key(id, KEY_LOOKUP_CREATE | KEY_LOOKUP_PARTIAL,
910                                   KEY_NEED_SETATTR);
911         if (IS_ERR(key_ref)) {
912                 ret = PTR_ERR(key_ref);
913                 goto error;
914         }
915
916         key = key_ref_to_ptr(key_ref);
917
918         /* make the changes with the locks held to prevent chown/chmod races */
919         ret = -EACCES;
920         down_write(&key->sem);
921
922         /* if we're not the sysadmin, we can only change a key that we own */
923         if (capable(CAP_SYS_ADMIN) || uid_eq(key->uid, current_fsuid())) {
924                 key->perm = perm;
925                 ret = 0;
926         }
927
928         up_write(&key->sem);
929         key_put(key);
930 error:
931         return ret;
932 }
933
934 /*
935  * Get the destination keyring for instantiation and check that the caller has
936  * Write permission on it.
937  */
938 static long get_instantiation_keyring(key_serial_t ringid,
939                                       struct request_key_auth *rka,
940                                       struct key **_dest_keyring)
941 {
942         key_ref_t dkref;
943
944         *_dest_keyring = NULL;
945
946         /* just return a NULL pointer if we weren't asked to make a link */
947         if (ringid == 0)
948                 return 0;
949
950         /* if a specific keyring is nominated by ID, then use that */
951         if (ringid > 0) {
952                 dkref = lookup_user_key(ringid, KEY_LOOKUP_CREATE, KEY_NEED_WRITE);
953                 if (IS_ERR(dkref))
954                         return PTR_ERR(dkref);
955                 *_dest_keyring = key_ref_to_ptr(dkref);
956                 return 0;
957         }
958
959         if (ringid == KEY_SPEC_REQKEY_AUTH_KEY)
960                 return -EINVAL;
961
962         /* otherwise specify the destination keyring recorded in the
963          * authorisation key (any KEY_SPEC_*_KEYRING) */
964         if (ringid >= KEY_SPEC_REQUESTOR_KEYRING) {
965                 *_dest_keyring = key_get(rka->dest_keyring);
966                 return 0;
967         }
968
969         return -ENOKEY;
970 }
971
972 /*
973  * Change the request_key authorisation key on the current process.
974  */
975 static int keyctl_change_reqkey_auth(struct key *key)
976 {
977         struct cred *new;
978
979         new = prepare_creds();
980         if (!new)
981                 return -ENOMEM;
982
983         key_put(new->request_key_auth);
984         new->request_key_auth = key_get(key);
985
986         return commit_creds(new);
987 }
988
989 /*
990  * Copy the iovec data from userspace
991  */
992 static long copy_from_user_iovec(void *buffer, const struct iovec *iov,
993                                  unsigned ioc)
994 {
995         for (; ioc > 0; ioc--) {
996                 if (copy_from_user(buffer, iov->iov_base, iov->iov_len) != 0)
997                         return -EFAULT;
998                 buffer += iov->iov_len;
999                 iov++;
1000         }
1001         return 0;
1002 }
1003
1004 /*
1005  * Instantiate a key with the specified payload and link the key into the
1006  * destination keyring if one is given.
1007  *
1008  * The caller must have the appropriate instantiation permit set for this to
1009  * work (see keyctl_assume_authority).  No other permissions are required.
1010  *
1011  * If successful, 0 will be returned.
1012  */
1013 long keyctl_instantiate_key_common(key_serial_t id,
1014                                    const struct iovec *payload_iov,
1015                                    unsigned ioc,
1016                                    size_t plen,
1017                                    key_serial_t ringid)
1018 {
1019         const struct cred *cred = current_cred();
1020         struct request_key_auth *rka;
1021         struct key *instkey, *dest_keyring;
1022         void *payload;
1023         long ret;
1024         bool vm = false;
1025
1026         kenter("%d,,%zu,%d", id, plen, ringid);
1027
1028         ret = -EINVAL;
1029         if (plen > 1024 * 1024 - 1)
1030                 goto error;
1031
1032         /* the appropriate instantiation authorisation key must have been
1033          * assumed before calling this */
1034         ret = -EPERM;
1035         instkey = cred->request_key_auth;
1036         if (!instkey)
1037                 goto error;
1038
1039         rka = instkey->payload.data;
1040         if (rka->target_key->serial != id)
1041                 goto error;
1042
1043         /* pull the payload in if one was supplied */
1044         payload = NULL;
1045
1046         if (payload_iov) {
1047                 ret = -ENOMEM;
1048                 payload = kmalloc(plen, GFP_KERNEL);
1049                 if (!payload) {
1050                         if (plen <= PAGE_SIZE)
1051                                 goto error;
1052                         vm = true;
1053                         payload = vmalloc(plen);
1054                         if (!payload)
1055                                 goto error;
1056                 }
1057
1058                 ret = copy_from_user_iovec(payload, payload_iov, ioc);
1059                 if (ret < 0)
1060                         goto error2;
1061         }
1062
1063         /* find the destination keyring amongst those belonging to the
1064          * requesting task */
1065         ret = get_instantiation_keyring(ringid, rka, &dest_keyring);
1066         if (ret < 0)
1067                 goto error2;
1068
1069         /* instantiate the key and link it into a keyring */
1070         ret = key_instantiate_and_link(rka->target_key, payload, plen,
1071                                        dest_keyring, instkey);
1072
1073         key_put(dest_keyring);
1074
1075         /* discard the assumed authority if it's just been disabled by
1076          * instantiation of the key */
1077         if (ret == 0)
1078                 keyctl_change_reqkey_auth(NULL);
1079
1080 error2:
1081         if (!vm)
1082                 kfree(payload);
1083         else
1084                 vfree(payload);
1085 error:
1086         return ret;
1087 }
1088
1089 /*
1090  * Instantiate a key with the specified payload and link the key into the
1091  * destination keyring if one is given.
1092  *
1093  * The caller must have the appropriate instantiation permit set for this to
1094  * work (see keyctl_assume_authority).  No other permissions are required.
1095  *
1096  * If successful, 0 will be returned.
1097  */
1098 long keyctl_instantiate_key(key_serial_t id,
1099                             const void __user *_payload,
1100                             size_t plen,
1101                             key_serial_t ringid)
1102 {
1103         if (_payload && plen) {
1104                 struct iovec iov[1] = {
1105                         [0].iov_base = (void __user *)_payload,
1106                         [0].iov_len  = plen
1107                 };
1108
1109                 return keyctl_instantiate_key_common(id, iov, 1, plen, ringid);
1110         }
1111
1112         return keyctl_instantiate_key_common(id, NULL, 0, 0, ringid);
1113 }
1114
1115 /*
1116  * Instantiate a key with the specified multipart payload and link the key into
1117  * the destination keyring if one is given.
1118  *
1119  * The caller must have the appropriate instantiation permit set for this to
1120  * work (see keyctl_assume_authority).  No other permissions are required.
1121  *
1122  * If successful, 0 will be returned.
1123  */
1124 long keyctl_instantiate_key_iov(key_serial_t id,
1125                                 const struct iovec __user *_payload_iov,
1126                                 unsigned ioc,
1127                                 key_serial_t ringid)
1128 {
1129         struct iovec iovstack[UIO_FASTIOV], *iov = iovstack;
1130         long ret;
1131
1132         if (!_payload_iov || !ioc)
1133                 goto no_payload;
1134
1135         ret = rw_copy_check_uvector(WRITE, _payload_iov, ioc,
1136                                     ARRAY_SIZE(iovstack), iovstack, &iov);
1137         if (ret < 0)
1138                 goto err;
1139         if (ret == 0)
1140                 goto no_payload_free;
1141
1142         ret = keyctl_instantiate_key_common(id, iov, ioc, ret, ringid);
1143 err:
1144         if (iov != iovstack)
1145                 kfree(iov);
1146         return ret;
1147
1148 no_payload_free:
1149         if (iov != iovstack)
1150                 kfree(iov);
1151 no_payload:
1152         return keyctl_instantiate_key_common(id, NULL, 0, 0, ringid);
1153 }
1154
1155 /*
1156  * Negatively instantiate the key with the given timeout (in seconds) and link
1157  * the key into the destination keyring if one is given.
1158  *
1159  * The caller must have the appropriate instantiation permit set for this to
1160  * work (see keyctl_assume_authority).  No other permissions are required.
1161  *
1162  * The key and any links to the key will be automatically garbage collected
1163  * after the timeout expires.
1164  *
1165  * Negative keys are used to rate limit repeated request_key() calls by causing
1166  * them to return -ENOKEY until the negative key expires.
1167  *
1168  * If successful, 0 will be returned.
1169  */
1170 long keyctl_negate_key(key_serial_t id, unsigned timeout, key_serial_t ringid)
1171 {
1172         return keyctl_reject_key(id, timeout, ENOKEY, ringid);
1173 }
1174
1175 /*
1176  * Negatively instantiate the key with the given timeout (in seconds) and error
1177  * code and link the key into the destination keyring if one is given.
1178  *
1179  * The caller must have the appropriate instantiation permit set for this to
1180  * work (see keyctl_assume_authority).  No other permissions are required.
1181  *
1182  * The key and any links to the key will be automatically garbage collected
1183  * after the timeout expires.
1184  *
1185  * Negative keys are used to rate limit repeated request_key() calls by causing
1186  * them to return the specified error code until the negative key expires.
1187  *
1188  * If successful, 0 will be returned.
1189  */
1190 long keyctl_reject_key(key_serial_t id, unsigned timeout, unsigned error,
1191                        key_serial_t ringid)
1192 {
1193         const struct cred *cred = current_cred();
1194         struct request_key_auth *rka;
1195         struct key *instkey, *dest_keyring;
1196         long ret;
1197
1198         kenter("%d,%u,%u,%d", id, timeout, error, ringid);
1199
1200         /* must be a valid error code and mustn't be a kernel special */
1201         if (error <= 0 ||
1202             error >= MAX_ERRNO ||
1203             error == ERESTARTSYS ||
1204             error == ERESTARTNOINTR ||
1205             error == ERESTARTNOHAND ||
1206             error == ERESTART_RESTARTBLOCK)
1207                 return -EINVAL;
1208
1209         /* the appropriate instantiation authorisation key must have been
1210          * assumed before calling this */
1211         ret = -EPERM;
1212         instkey = cred->request_key_auth;
1213         if (!instkey)
1214                 goto error;
1215
1216         rka = instkey->payload.data;
1217         if (rka->target_key->serial != id)
1218                 goto error;
1219
1220         /* find the destination keyring if present (which must also be
1221          * writable) */
1222         ret = get_instantiation_keyring(ringid, rka, &dest_keyring);
1223         if (ret < 0)
1224                 goto error;
1225
1226         /* instantiate the key and link it into a keyring */
1227         ret = key_reject_and_link(rka->target_key, timeout, error,
1228                                   dest_keyring, instkey);
1229
1230         key_put(dest_keyring);
1231
1232         /* discard the assumed authority if it's just been disabled by
1233          * instantiation of the key */
1234         if (ret == 0)
1235                 keyctl_change_reqkey_auth(NULL);
1236
1237 error:
1238         return ret;
1239 }
1240
1241 /*
1242  * Read or set the default keyring in which request_key() will cache keys and
1243  * return the old setting.
1244  *
1245  * If a process keyring is specified then this will be created if it doesn't
1246  * yet exist.  The old setting will be returned if successful.
1247  */
1248 long keyctl_set_reqkey_keyring(int reqkey_defl)
1249 {
1250         struct cred *new;
1251         int ret, old_setting;
1252
1253         old_setting = current_cred_xxx(jit_keyring);
1254
1255         if (reqkey_defl == KEY_REQKEY_DEFL_NO_CHANGE)
1256                 return old_setting;
1257
1258         new = prepare_creds();
1259         if (!new)
1260                 return -ENOMEM;
1261
1262         switch (reqkey_defl) {
1263         case KEY_REQKEY_DEFL_THREAD_KEYRING:
1264                 ret = install_thread_keyring_to_cred(new);
1265                 if (ret < 0)
1266                         goto error;
1267                 goto set;
1268
1269         case KEY_REQKEY_DEFL_PROCESS_KEYRING:
1270                 ret = install_process_keyring_to_cred(new);
1271                 if (ret < 0) {
1272                         if (ret != -EEXIST)
1273                                 goto error;
1274                         ret = 0;
1275                 }
1276                 goto set;
1277
1278         case KEY_REQKEY_DEFL_DEFAULT:
1279         case KEY_REQKEY_DEFL_SESSION_KEYRING:
1280         case KEY_REQKEY_DEFL_USER_KEYRING:
1281         case KEY_REQKEY_DEFL_USER_SESSION_KEYRING:
1282         case KEY_REQKEY_DEFL_REQUESTOR_KEYRING:
1283                 goto set;
1284
1285         case KEY_REQKEY_DEFL_NO_CHANGE:
1286         case KEY_REQKEY_DEFL_GROUP_KEYRING:
1287         default:
1288                 ret = -EINVAL;
1289                 goto error;
1290         }
1291
1292 set:
1293         new->jit_keyring = reqkey_defl;
1294         commit_creds(new);
1295         return old_setting;
1296 error:
1297         abort_creds(new);
1298         return ret;
1299 }
1300
1301 /*
1302  * Set or clear the timeout on a key.
1303  *
1304  * Either the key must grant the caller Setattr permission or else the caller
1305  * must hold an instantiation authorisation token for the key.
1306  *
1307  * The timeout is either 0 to clear the timeout, or a number of seconds from
1308  * the current time.  The key and any links to the key will be automatically
1309  * garbage collected after the timeout expires.
1310  *
1311  * If successful, 0 is returned.
1312  */
1313 long keyctl_set_timeout(key_serial_t id, unsigned timeout)
1314 {
1315         struct key *key, *instkey;
1316         key_ref_t key_ref;
1317         long ret;
1318
1319         key_ref = lookup_user_key(id, KEY_LOOKUP_CREATE | KEY_LOOKUP_PARTIAL,
1320                                   KEY_NEED_SETATTR);
1321         if (IS_ERR(key_ref)) {
1322                 /* setting the timeout on a key under construction is permitted
1323                  * if we have the authorisation token handy */
1324                 if (PTR_ERR(key_ref) == -EACCES) {
1325                         instkey = key_get_instantiation_authkey(id);
1326                         if (!IS_ERR(instkey)) {
1327                                 key_put(instkey);
1328                                 key_ref = lookup_user_key(id,
1329                                                           KEY_LOOKUP_PARTIAL,
1330                                                           0);
1331                                 if (!IS_ERR(key_ref))
1332                                         goto okay;
1333                         }
1334                 }
1335
1336                 ret = PTR_ERR(key_ref);
1337                 goto error;
1338         }
1339
1340 okay:
1341         key = key_ref_to_ptr(key_ref);
1342         key_set_timeout(key, timeout);
1343         key_put(key);
1344
1345         ret = 0;
1346 error:
1347         return ret;
1348 }
1349
1350 /*
1351  * Assume (or clear) the authority to instantiate the specified key.
1352  *
1353  * This sets the authoritative token currently in force for key instantiation.
1354  * This must be done for a key to be instantiated.  It has the effect of making
1355  * available all the keys from the caller of the request_key() that created a
1356  * key to request_key() calls made by the caller of this function.
1357  *
1358  * The caller must have the instantiation key in their process keyrings with a
1359  * Search permission grant available to the caller.
1360  *
1361  * If the ID given is 0, then the setting will be cleared and 0 returned.
1362  *
1363  * If the ID given has a matching an authorisation key, then that key will be
1364  * set and its ID will be returned.  The authorisation key can be read to get
1365  * the callout information passed to request_key().
1366  */
1367 long keyctl_assume_authority(key_serial_t id)
1368 {
1369         struct key *authkey;
1370         long ret;
1371
1372         /* special key IDs aren't permitted */
1373         ret = -EINVAL;
1374         if (id < 0)
1375                 goto error;
1376
1377         /* we divest ourselves of authority if given an ID of 0 */
1378         if (id == 0) {
1379                 ret = keyctl_change_reqkey_auth(NULL);
1380                 goto error;
1381         }
1382
1383         /* attempt to assume the authority temporarily granted to us whilst we
1384          * instantiate the specified key
1385          * - the authorisation key must be in the current task's keyrings
1386          *   somewhere
1387          */
1388         authkey = key_get_instantiation_authkey(id);
1389         if (IS_ERR(authkey)) {
1390                 ret = PTR_ERR(authkey);
1391                 goto error;
1392         }
1393
1394         ret = keyctl_change_reqkey_auth(authkey);
1395         if (ret < 0)
1396                 goto error;
1397         key_put(authkey);
1398
1399         ret = authkey->serial;
1400 error:
1401         return ret;
1402 }
1403
1404 /*
1405  * Get a key's the LSM security label.
1406  *
1407  * The key must grant the caller View permission for this to work.
1408  *
1409  * If there's a buffer, then up to buflen bytes of data will be placed into it.
1410  *
1411  * If successful, the amount of information available will be returned,
1412  * irrespective of how much was copied (including the terminal NUL).
1413  */
1414 long keyctl_get_security(key_serial_t keyid,
1415                          char __user *buffer,
1416                          size_t buflen)
1417 {
1418         struct key *key, *instkey;
1419         key_ref_t key_ref;
1420         char *context;
1421         long ret;
1422
1423         key_ref = lookup_user_key(keyid, KEY_LOOKUP_PARTIAL, KEY_NEED_VIEW);
1424         if (IS_ERR(key_ref)) {
1425                 if (PTR_ERR(key_ref) != -EACCES)
1426                         return PTR_ERR(key_ref);
1427
1428                 /* viewing a key under construction is also permitted if we
1429                  * have the authorisation token handy */
1430                 instkey = key_get_instantiation_authkey(keyid);
1431                 if (IS_ERR(instkey))
1432                         return PTR_ERR(instkey);
1433                 key_put(instkey);
1434
1435                 key_ref = lookup_user_key(keyid, KEY_LOOKUP_PARTIAL, 0);
1436                 if (IS_ERR(key_ref))
1437                         return PTR_ERR(key_ref);
1438         }
1439
1440         key = key_ref_to_ptr(key_ref);
1441         ret = security_key_getsecurity(key, &context);
1442         if (ret == 0) {
1443                 /* if no information was returned, give userspace an empty
1444                  * string */
1445                 ret = 1;
1446                 if (buffer && buflen > 0 &&
1447                     copy_to_user(buffer, "", 1) != 0)
1448                         ret = -EFAULT;
1449         } else if (ret > 0) {
1450                 /* return as much data as there's room for */
1451                 if (buffer && buflen > 0) {
1452                         if (buflen > ret)
1453                                 buflen = ret;
1454
1455                         if (copy_to_user(buffer, context, buflen) != 0)
1456                                 ret = -EFAULT;
1457                 }
1458
1459                 kfree(context);
1460         }
1461
1462         key_ref_put(key_ref);
1463         return ret;
1464 }
1465
1466 /*
1467  * Attempt to install the calling process's session keyring on the process's
1468  * parent process.
1469  *
1470  * The keyring must exist and must grant the caller LINK permission, and the
1471  * parent process must be single-threaded and must have the same effective
1472  * ownership as this process and mustn't be SUID/SGID.
1473  *
1474  * The keyring will be emplaced on the parent when it next resumes userspace.
1475  *
1476  * If successful, 0 will be returned.
1477  */
1478 long keyctl_session_to_parent(void)
1479 {
1480         struct task_struct *me, *parent;
1481         const struct cred *mycred, *pcred;
1482         struct callback_head *newwork, *oldwork;
1483         key_ref_t keyring_r;
1484         struct cred *cred;
1485         int ret;
1486
1487         keyring_r = lookup_user_key(KEY_SPEC_SESSION_KEYRING, 0, KEY_NEED_LINK);
1488         if (IS_ERR(keyring_r))
1489                 return PTR_ERR(keyring_r);
1490
1491         ret = -ENOMEM;
1492
1493         /* our parent is going to need a new cred struct, a new tgcred struct
1494          * and new security data, so we allocate them here to prevent ENOMEM in
1495          * our parent */
1496         cred = cred_alloc_blank();
1497         if (!cred)
1498                 goto error_keyring;
1499         newwork = &cred->rcu;
1500
1501         cred->session_keyring = key_ref_to_ptr(keyring_r);
1502         keyring_r = NULL;
1503         init_task_work(newwork, key_change_session_keyring);
1504
1505         me = current;
1506         rcu_read_lock();
1507         write_lock_irq(&tasklist_lock);
1508
1509         ret = -EPERM;
1510         oldwork = NULL;
1511         parent = me->real_parent;
1512
1513         /* the parent mustn't be init and mustn't be a kernel thread */
1514         if (parent->pid <= 1 || !parent->mm)
1515                 goto unlock;
1516
1517         /* the parent must be single threaded */
1518         if (!thread_group_empty(parent))
1519                 goto unlock;
1520
1521         /* the parent and the child must have different session keyrings or
1522          * there's no point */
1523         mycred = current_cred();
1524         pcred = __task_cred(parent);
1525         if (mycred == pcred ||
1526             mycred->session_keyring == pcred->session_keyring) {
1527                 ret = 0;
1528                 goto unlock;
1529         }
1530
1531         /* the parent must have the same effective ownership and mustn't be
1532          * SUID/SGID */
1533         if (!uid_eq(pcred->uid,  mycred->euid) ||
1534             !uid_eq(pcred->euid, mycred->euid) ||
1535             !uid_eq(pcred->suid, mycred->euid) ||
1536             !gid_eq(pcred->gid,  mycred->egid) ||
1537             !gid_eq(pcred->egid, mycred->egid) ||
1538             !gid_eq(pcred->sgid, mycred->egid))
1539                 goto unlock;
1540
1541         /* the keyrings must have the same UID */
1542         if ((pcred->session_keyring &&
1543              !uid_eq(pcred->session_keyring->uid, mycred->euid)) ||
1544             !uid_eq(mycred->session_keyring->uid, mycred->euid))
1545                 goto unlock;
1546
1547         /* cancel an already pending keyring replacement */
1548         oldwork = task_work_cancel(parent, key_change_session_keyring);
1549
1550         /* the replacement session keyring is applied just prior to userspace
1551          * restarting */
1552         ret = task_work_add(parent, newwork, true);
1553         if (!ret)
1554                 newwork = NULL;
1555 unlock:
1556         write_unlock_irq(&tasklist_lock);
1557         rcu_read_unlock();
1558         if (oldwork)
1559                 put_cred(container_of(oldwork, struct cred, rcu));
1560         if (newwork)
1561                 put_cred(cred);
1562         return ret;
1563
1564 error_keyring:
1565         key_ref_put(keyring_r);
1566         return ret;
1567 }
1568
1569 /*
1570  * The key control system call
1571  */
1572 SYSCALL_DEFINE5(keyctl, int, option, unsigned long, arg2, unsigned long, arg3,
1573                 unsigned long, arg4, unsigned long, arg5)
1574 {
1575         switch (option) {
1576         case KEYCTL_GET_KEYRING_ID:
1577                 return keyctl_get_keyring_ID((key_serial_t) arg2,
1578                                              (int) arg3);
1579
1580         case KEYCTL_JOIN_SESSION_KEYRING:
1581                 return keyctl_join_session_keyring((const char __user *) arg2);
1582
1583         case KEYCTL_UPDATE:
1584                 return keyctl_update_key((key_serial_t) arg2,
1585                                          (const void __user *) arg3,
1586                                          (size_t) arg4);
1587
1588         case KEYCTL_REVOKE:
1589                 return keyctl_revoke_key((key_serial_t) arg2);
1590
1591         case KEYCTL_DESCRIBE:
1592                 return keyctl_describe_key((key_serial_t) arg2,
1593                                            (char __user *) arg3,
1594                                            (unsigned) arg4);
1595
1596         case KEYCTL_CLEAR:
1597                 return keyctl_keyring_clear((key_serial_t) arg2);
1598
1599         case KEYCTL_LINK:
1600                 return keyctl_keyring_link((key_serial_t) arg2,
1601                                            (key_serial_t) arg3);
1602
1603         case KEYCTL_UNLINK:
1604                 return keyctl_keyring_unlink((key_serial_t) arg2,
1605                                              (key_serial_t) arg3);
1606
1607         case KEYCTL_SEARCH:
1608                 return keyctl_keyring_search((key_serial_t) arg2,
1609                                              (const char __user *) arg3,
1610                                              (const char __user *) arg4,
1611                                              (key_serial_t) arg5);
1612
1613         case KEYCTL_READ:
1614                 return keyctl_read_key((key_serial_t) arg2,
1615                                        (char __user *) arg3,
1616                                        (size_t) arg4);
1617
1618         case KEYCTL_CHOWN:
1619                 return keyctl_chown_key((key_serial_t) arg2,
1620                                         (uid_t) arg3,
1621                                         (gid_t) arg4);
1622
1623         case KEYCTL_SETPERM:
1624                 return keyctl_setperm_key((key_serial_t) arg2,
1625                                           (key_perm_t) arg3);
1626
1627         case KEYCTL_INSTANTIATE:
1628                 return keyctl_instantiate_key((key_serial_t) arg2,
1629                                               (const void __user *) arg3,
1630                                               (size_t) arg4,
1631                                               (key_serial_t) arg5);
1632
1633         case KEYCTL_NEGATE:
1634                 return keyctl_negate_key((key_serial_t) arg2,
1635                                          (unsigned) arg3,
1636                                          (key_serial_t) arg4);
1637
1638         case KEYCTL_SET_REQKEY_KEYRING:
1639                 return keyctl_set_reqkey_keyring(arg2);
1640
1641         case KEYCTL_SET_TIMEOUT:
1642                 return keyctl_set_timeout((key_serial_t) arg2,
1643                                           (unsigned) arg3);
1644
1645         case KEYCTL_ASSUME_AUTHORITY:
1646                 return keyctl_assume_authority((key_serial_t) arg2);
1647
1648         case KEYCTL_GET_SECURITY:
1649                 return keyctl_get_security((key_serial_t) arg2,
1650                                            (char __user *) arg3,
1651                                            (size_t) arg4);
1652
1653         case KEYCTL_SESSION_TO_PARENT:
1654                 return keyctl_session_to_parent();
1655
1656         case KEYCTL_REJECT:
1657                 return keyctl_reject_key((key_serial_t) arg2,
1658                                          (unsigned) arg3,
1659                                          (unsigned) arg4,
1660                                          (key_serial_t) arg5);
1661
1662         case KEYCTL_INSTANTIATE_IOV:
1663                 return keyctl_instantiate_key_iov(
1664                         (key_serial_t) arg2,
1665                         (const struct iovec __user *) arg3,
1666                         (unsigned) arg4,
1667                         (key_serial_t) arg5);
1668
1669         case KEYCTL_INVALIDATE:
1670                 return keyctl_invalidate_key((key_serial_t) arg2);
1671
1672         case KEYCTL_GET_PERSISTENT:
1673                 return keyctl_get_persistent((uid_t)arg2, (key_serial_t)arg3);
1674
1675         default:
1676                 return -EOPNOTSUPP;
1677         }
1678 }