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