BACKPORT: sched/fair: Initiate a new task's util avg to a bounded value
[firefly-linux-kernel-4.4.55.git] / security / keys / process_keys.c
1 /* Manage a process's keyrings
2  *
3  * Copyright (C) 2004-2005, 2008 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/keyctl.h>
16 #include <linux/fs.h>
17 #include <linux/err.h>
18 #include <linux/mutex.h>
19 #include <linux/security.h>
20 #include <linux/user_namespace.h>
21 #include <asm/uaccess.h>
22 #include "internal.h"
23
24 /* Session keyring create vs join semaphore */
25 static DEFINE_MUTEX(key_session_mutex);
26
27 /* User keyring creation semaphore */
28 static DEFINE_MUTEX(key_user_keyring_mutex);
29
30 /* The root user's tracking struct */
31 struct key_user root_key_user = {
32         .usage          = ATOMIC_INIT(3),
33         .cons_lock      = __MUTEX_INITIALIZER(root_key_user.cons_lock),
34         .lock           = __SPIN_LOCK_UNLOCKED(root_key_user.lock),
35         .nkeys          = ATOMIC_INIT(2),
36         .nikeys         = ATOMIC_INIT(2),
37         .uid            = GLOBAL_ROOT_UID,
38 };
39
40 /*
41  * Install the user and user session keyrings for the current process's UID.
42  */
43 int install_user_keyrings(void)
44 {
45         struct user_struct *user;
46         const struct cred *cred;
47         struct key *uid_keyring, *session_keyring;
48         key_perm_t user_keyring_perm;
49         char buf[20];
50         int ret;
51         uid_t uid;
52
53         user_keyring_perm = (KEY_POS_ALL & ~KEY_POS_SETATTR) | KEY_USR_ALL;
54         cred = current_cred();
55         user = cred->user;
56         uid = from_kuid(cred->user_ns, user->uid);
57
58         kenter("%p{%u}", user, uid);
59
60         if (user->uid_keyring && user->session_keyring) {
61                 kleave(" = 0 [exist]");
62                 return 0;
63         }
64
65         mutex_lock(&key_user_keyring_mutex);
66         ret = 0;
67
68         if (!user->uid_keyring) {
69                 /* get the UID-specific keyring
70                  * - there may be one in existence already as it may have been
71                  *   pinned by a session, but the user_struct pointing to it
72                  *   may have been destroyed by setuid */
73                 sprintf(buf, "_uid.%u", uid);
74
75                 uid_keyring = find_keyring_by_name(buf, true);
76                 if (IS_ERR(uid_keyring)) {
77                         uid_keyring = keyring_alloc(buf, user->uid, INVALID_GID,
78                                                     cred, user_keyring_perm,
79                                                     KEY_ALLOC_IN_QUOTA, NULL);
80                         if (IS_ERR(uid_keyring)) {
81                                 ret = PTR_ERR(uid_keyring);
82                                 goto error;
83                         }
84                 }
85
86                 /* get a default session keyring (which might also exist
87                  * already) */
88                 sprintf(buf, "_uid_ses.%u", uid);
89
90                 session_keyring = find_keyring_by_name(buf, true);
91                 if (IS_ERR(session_keyring)) {
92                         session_keyring =
93                                 keyring_alloc(buf, user->uid, INVALID_GID,
94                                               cred, user_keyring_perm,
95                                               KEY_ALLOC_IN_QUOTA, NULL);
96                         if (IS_ERR(session_keyring)) {
97                                 ret = PTR_ERR(session_keyring);
98                                 goto error_release;
99                         }
100
101                         /* we install a link from the user session keyring to
102                          * the user keyring */
103                         ret = key_link(session_keyring, uid_keyring);
104                         if (ret < 0)
105                                 goto error_release_both;
106                 }
107
108                 /* install the keyrings */
109                 user->uid_keyring = uid_keyring;
110                 user->session_keyring = session_keyring;
111         }
112
113         mutex_unlock(&key_user_keyring_mutex);
114         kleave(" = 0");
115         return 0;
116
117 error_release_both:
118         key_put(session_keyring);
119 error_release:
120         key_put(uid_keyring);
121 error:
122         mutex_unlock(&key_user_keyring_mutex);
123         kleave(" = %d", ret);
124         return ret;
125 }
126
127 /*
128  * Install a thread keyring to the given credentials struct if it didn't have
129  * one already.  This is allowed to overrun the quota.
130  *
131  * Return: 0 if a thread keyring is now present; -errno on failure.
132  */
133 int install_thread_keyring_to_cred(struct cred *new)
134 {
135         struct key *keyring;
136
137         if (new->thread_keyring)
138                 return 0;
139
140         keyring = keyring_alloc("_tid", new->uid, new->gid, new,
141                                 KEY_POS_ALL | KEY_USR_VIEW,
142                                 KEY_ALLOC_QUOTA_OVERRUN, NULL);
143         if (IS_ERR(keyring))
144                 return PTR_ERR(keyring);
145
146         new->thread_keyring = keyring;
147         return 0;
148 }
149
150 /*
151  * Install a thread keyring to the current task if it didn't have one already.
152  *
153  * Return: 0 if a thread keyring is now present; -errno on failure.
154  */
155 static int install_thread_keyring(void)
156 {
157         struct cred *new;
158         int ret;
159
160         new = prepare_creds();
161         if (!new)
162                 return -ENOMEM;
163
164         ret = install_thread_keyring_to_cred(new);
165         if (ret < 0) {
166                 abort_creds(new);
167                 return ret;
168         }
169
170         return commit_creds(new);
171 }
172
173 /*
174  * Install a process keyring to the given credentials struct if it didn't have
175  * one already.  This is allowed to overrun the quota.
176  *
177  * Return: 0 if a process keyring is now present; -errno on failure.
178  */
179 int install_process_keyring_to_cred(struct cred *new)
180 {
181         struct key *keyring;
182
183         if (new->process_keyring)
184                 return 0;
185
186         keyring = keyring_alloc("_pid", new->uid, new->gid, new,
187                                 KEY_POS_ALL | KEY_USR_VIEW,
188                                 KEY_ALLOC_QUOTA_OVERRUN, NULL);
189         if (IS_ERR(keyring))
190                 return PTR_ERR(keyring);
191
192         new->process_keyring = keyring;
193         return 0;
194 }
195
196 /*
197  * Install a process keyring to the current task if it didn't have one already.
198  *
199  * Return: 0 if a process keyring is now present; -errno on failure.
200  */
201 static int install_process_keyring(void)
202 {
203         struct cred *new;
204         int ret;
205
206         new = prepare_creds();
207         if (!new)
208                 return -ENOMEM;
209
210         ret = install_process_keyring_to_cred(new);
211         if (ret < 0) {
212                 abort_creds(new);
213                 return ret;
214         }
215
216         return commit_creds(new);
217 }
218
219 /*
220  * Install the given keyring as the session keyring of the given credentials
221  * struct, replacing the existing one if any.  If the given keyring is NULL,
222  * then install a new anonymous session keyring.
223  *
224  * Return: 0 on success; -errno on failure.
225  */
226 int install_session_keyring_to_cred(struct cred *cred, struct key *keyring)
227 {
228         unsigned long flags;
229         struct key *old;
230
231         might_sleep();
232
233         /* create an empty session keyring */
234         if (!keyring) {
235                 flags = KEY_ALLOC_QUOTA_OVERRUN;
236                 if (cred->session_keyring)
237                         flags = KEY_ALLOC_IN_QUOTA;
238
239                 keyring = keyring_alloc("_ses", cred->uid, cred->gid, cred,
240                                         KEY_POS_ALL | KEY_USR_VIEW | KEY_USR_READ,
241                                         flags, NULL);
242                 if (IS_ERR(keyring))
243                         return PTR_ERR(keyring);
244         } else {
245                 __key_get(keyring);
246         }
247
248         /* install the keyring */
249         old = cred->session_keyring;
250         rcu_assign_pointer(cred->session_keyring, keyring);
251
252         if (old)
253                 key_put(old);
254
255         return 0;
256 }
257
258 /*
259  * Install the given keyring as the session keyring of the current task,
260  * replacing the existing one if any.  If the given keyring is NULL, then
261  * install a new anonymous session keyring.
262  *
263  * Return: 0 on success; -errno on failure.
264  */
265 static int install_session_keyring(struct key *keyring)
266 {
267         struct cred *new;
268         int ret;
269
270         new = prepare_creds();
271         if (!new)
272                 return -ENOMEM;
273
274         ret = install_session_keyring_to_cred(new, keyring);
275         if (ret < 0) {
276                 abort_creds(new);
277                 return ret;
278         }
279
280         return commit_creds(new);
281 }
282
283 /*
284  * Handle the fsuid changing.
285  */
286 void key_fsuid_changed(struct task_struct *tsk)
287 {
288         /* update the ownership of the thread keyring */
289         BUG_ON(!tsk->cred);
290         if (tsk->cred->thread_keyring) {
291                 down_write(&tsk->cred->thread_keyring->sem);
292                 tsk->cred->thread_keyring->uid = tsk->cred->fsuid;
293                 up_write(&tsk->cred->thread_keyring->sem);
294         }
295 }
296
297 /*
298  * Handle the fsgid changing.
299  */
300 void key_fsgid_changed(struct task_struct *tsk)
301 {
302         /* update the ownership of the thread keyring */
303         BUG_ON(!tsk->cred);
304         if (tsk->cred->thread_keyring) {
305                 down_write(&tsk->cred->thread_keyring->sem);
306                 tsk->cred->thread_keyring->gid = tsk->cred->fsgid;
307                 up_write(&tsk->cred->thread_keyring->sem);
308         }
309 }
310
311 /*
312  * Search the process keyrings attached to the supplied cred for the first
313  * matching key.
314  *
315  * The search criteria are the type and the match function.  The description is
316  * given to the match function as a parameter, but doesn't otherwise influence
317  * the search.  Typically the match function will compare the description
318  * parameter to the key's description.
319  *
320  * This can only search keyrings that grant Search permission to the supplied
321  * credentials.  Keyrings linked to searched keyrings will also be searched if
322  * they grant Search permission too.  Keys can only be found if they grant
323  * Search permission to the credentials.
324  *
325  * Returns a pointer to the key with the key usage count incremented if
326  * successful, -EAGAIN if we didn't find any matching key or -ENOKEY if we only
327  * matched negative keys.
328  *
329  * In the case of a successful return, the possession attribute is set on the
330  * returned key reference.
331  */
332 key_ref_t search_my_process_keyrings(struct keyring_search_context *ctx)
333 {
334         key_ref_t key_ref, ret, err;
335
336         /* we want to return -EAGAIN or -ENOKEY if any of the keyrings were
337          * searchable, but we failed to find a key or we found a negative key;
338          * otherwise we want to return a sample error (probably -EACCES) if
339          * none of the keyrings were searchable
340          *
341          * in terms of priority: success > -ENOKEY > -EAGAIN > other error
342          */
343         key_ref = NULL;
344         ret = NULL;
345         err = ERR_PTR(-EAGAIN);
346
347         /* search the thread keyring first */
348         if (ctx->cred->thread_keyring) {
349                 key_ref = keyring_search_aux(
350                         make_key_ref(ctx->cred->thread_keyring, 1), ctx);
351                 if (!IS_ERR(key_ref))
352                         goto found;
353
354                 switch (PTR_ERR(key_ref)) {
355                 case -EAGAIN: /* no key */
356                 case -ENOKEY: /* negative key */
357                         ret = key_ref;
358                         break;
359                 default:
360                         err = key_ref;
361                         break;
362                 }
363         }
364
365         /* search the process keyring second */
366         if (ctx->cred->process_keyring) {
367                 key_ref = keyring_search_aux(
368                         make_key_ref(ctx->cred->process_keyring, 1), ctx);
369                 if (!IS_ERR(key_ref))
370                         goto found;
371
372                 switch (PTR_ERR(key_ref)) {
373                 case -EAGAIN: /* no key */
374                         if (ret)
375                                 break;
376                 case -ENOKEY: /* negative key */
377                         ret = key_ref;
378                         break;
379                 default:
380                         err = key_ref;
381                         break;
382                 }
383         }
384
385         /* search the session keyring */
386         if (ctx->cred->session_keyring) {
387                 rcu_read_lock();
388                 key_ref = keyring_search_aux(
389                         make_key_ref(rcu_dereference(ctx->cred->session_keyring), 1),
390                         ctx);
391                 rcu_read_unlock();
392
393                 if (!IS_ERR(key_ref))
394                         goto found;
395
396                 switch (PTR_ERR(key_ref)) {
397                 case -EAGAIN: /* no key */
398                         if (ret)
399                                 break;
400                 case -ENOKEY: /* negative key */
401                         ret = key_ref;
402                         break;
403                 default:
404                         err = key_ref;
405                         break;
406                 }
407         }
408         /* or search the user-session keyring */
409         else if (ctx->cred->user->session_keyring) {
410                 key_ref = keyring_search_aux(
411                         make_key_ref(ctx->cred->user->session_keyring, 1),
412                         ctx);
413                 if (!IS_ERR(key_ref))
414                         goto found;
415
416                 switch (PTR_ERR(key_ref)) {
417                 case -EAGAIN: /* no key */
418                         if (ret)
419                                 break;
420                 case -ENOKEY: /* negative key */
421                         ret = key_ref;
422                         break;
423                 default:
424                         err = key_ref;
425                         break;
426                 }
427         }
428
429         /* no key - decide on the error we're going to go for */
430         key_ref = ret ? ret : err;
431
432 found:
433         return key_ref;
434 }
435
436 /*
437  * Search the process keyrings attached to the supplied cred for the first
438  * matching key in the manner of search_my_process_keyrings(), but also search
439  * the keys attached to the assumed authorisation key using its credentials if
440  * one is available.
441  *
442  * Return same as search_my_process_keyrings().
443  */
444 key_ref_t search_process_keyrings(struct keyring_search_context *ctx)
445 {
446         struct request_key_auth *rka;
447         key_ref_t key_ref, ret = ERR_PTR(-EACCES), err;
448
449         might_sleep();
450
451         key_ref = search_my_process_keyrings(ctx);
452         if (!IS_ERR(key_ref))
453                 goto found;
454         err = key_ref;
455
456         /* if this process has an instantiation authorisation key, then we also
457          * search the keyrings of the process mentioned there
458          * - we don't permit access to request_key auth keys via this method
459          */
460         if (ctx->cred->request_key_auth &&
461             ctx->cred == current_cred() &&
462             ctx->index_key.type != &key_type_request_key_auth
463             ) {
464                 const struct cred *cred = ctx->cred;
465
466                 /* defend against the auth key being revoked */
467                 down_read(&cred->request_key_auth->sem);
468
469                 if (key_validate(ctx->cred->request_key_auth) == 0) {
470                         rka = ctx->cred->request_key_auth->payload.data[0];
471
472                         ctx->cred = rka->cred;
473                         key_ref = search_process_keyrings(ctx);
474                         ctx->cred = cred;
475
476                         up_read(&cred->request_key_auth->sem);
477
478                         if (!IS_ERR(key_ref))
479                                 goto found;
480
481                         ret = key_ref;
482                 } else {
483                         up_read(&cred->request_key_auth->sem);
484                 }
485         }
486
487         /* no key - decide on the error we're going to go for */
488         if (err == ERR_PTR(-ENOKEY) || ret == ERR_PTR(-ENOKEY))
489                 key_ref = ERR_PTR(-ENOKEY);
490         else if (err == ERR_PTR(-EACCES))
491                 key_ref = ret;
492         else
493                 key_ref = err;
494
495 found:
496         return key_ref;
497 }
498
499 /*
500  * See if the key we're looking at is the target key.
501  */
502 bool lookup_user_key_possessed(const struct key *key,
503                                const struct key_match_data *match_data)
504 {
505         return key == match_data->raw_data;
506 }
507
508 /*
509  * Look up a key ID given us by userspace with a given permissions mask to get
510  * the key it refers to.
511  *
512  * Flags can be passed to request that special keyrings be created if referred
513  * to directly, to permit partially constructed keys to be found and to skip
514  * validity and permission checks on the found key.
515  *
516  * Returns a pointer to the key with an incremented usage count if successful;
517  * -EINVAL if the key ID is invalid; -ENOKEY if the key ID does not correspond
518  * to a key or the best found key was a negative key; -EKEYREVOKED or
519  * -EKEYEXPIRED if the best found key was revoked or expired; -EACCES if the
520  * found key doesn't grant the requested permit or the LSM denied access to it;
521  * or -ENOMEM if a special keyring couldn't be created.
522  *
523  * In the case of a successful return, the possession attribute is set on the
524  * returned key reference.
525  */
526 key_ref_t lookup_user_key(key_serial_t id, unsigned long lflags,
527                           key_perm_t perm)
528 {
529         struct keyring_search_context ctx = {
530                 .match_data.cmp         = lookup_user_key_possessed,
531                 .match_data.lookup_type = KEYRING_SEARCH_LOOKUP_DIRECT,
532                 .flags                  = KEYRING_SEARCH_NO_STATE_CHECK,
533         };
534         struct request_key_auth *rka;
535         struct key *key;
536         key_ref_t key_ref, skey_ref;
537         int ret;
538
539 try_again:
540         ctx.cred = get_current_cred();
541         key_ref = ERR_PTR(-ENOKEY);
542
543         switch (id) {
544         case KEY_SPEC_THREAD_KEYRING:
545                 if (!ctx.cred->thread_keyring) {
546                         if (!(lflags & KEY_LOOKUP_CREATE))
547                                 goto error;
548
549                         ret = install_thread_keyring();
550                         if (ret < 0) {
551                                 key_ref = ERR_PTR(ret);
552                                 goto error;
553                         }
554                         goto reget_creds;
555                 }
556
557                 key = ctx.cred->thread_keyring;
558                 __key_get(key);
559                 key_ref = make_key_ref(key, 1);
560                 break;
561
562         case KEY_SPEC_PROCESS_KEYRING:
563                 if (!ctx.cred->process_keyring) {
564                         if (!(lflags & KEY_LOOKUP_CREATE))
565                                 goto error;
566
567                         ret = install_process_keyring();
568                         if (ret < 0) {
569                                 key_ref = ERR_PTR(ret);
570                                 goto error;
571                         }
572                         goto reget_creds;
573                 }
574
575                 key = ctx.cred->process_keyring;
576                 __key_get(key);
577                 key_ref = make_key_ref(key, 1);
578                 break;
579
580         case KEY_SPEC_SESSION_KEYRING:
581                 if (!ctx.cred->session_keyring) {
582                         /* always install a session keyring upon access if one
583                          * doesn't exist yet */
584                         ret = install_user_keyrings();
585                         if (ret < 0)
586                                 goto error;
587                         if (lflags & KEY_LOOKUP_CREATE)
588                                 ret = join_session_keyring(NULL);
589                         else
590                                 ret = install_session_keyring(
591                                         ctx.cred->user->session_keyring);
592
593                         if (ret < 0)
594                                 goto error;
595                         goto reget_creds;
596                 } else if (ctx.cred->session_keyring ==
597                            ctx.cred->user->session_keyring &&
598                            lflags & KEY_LOOKUP_CREATE) {
599                         ret = join_session_keyring(NULL);
600                         if (ret < 0)
601                                 goto error;
602                         goto reget_creds;
603                 }
604
605                 rcu_read_lock();
606                 key = rcu_dereference(ctx.cred->session_keyring);
607                 __key_get(key);
608                 rcu_read_unlock();
609                 key_ref = make_key_ref(key, 1);
610                 break;
611
612         case KEY_SPEC_USER_KEYRING:
613                 if (!ctx.cred->user->uid_keyring) {
614                         ret = install_user_keyrings();
615                         if (ret < 0)
616                                 goto error;
617                 }
618
619                 key = ctx.cred->user->uid_keyring;
620                 __key_get(key);
621                 key_ref = make_key_ref(key, 1);
622                 break;
623
624         case KEY_SPEC_USER_SESSION_KEYRING:
625                 if (!ctx.cred->user->session_keyring) {
626                         ret = install_user_keyrings();
627                         if (ret < 0)
628                                 goto error;
629                 }
630
631                 key = ctx.cred->user->session_keyring;
632                 __key_get(key);
633                 key_ref = make_key_ref(key, 1);
634                 break;
635
636         case KEY_SPEC_GROUP_KEYRING:
637                 /* group keyrings are not yet supported */
638                 key_ref = ERR_PTR(-EINVAL);
639                 goto error;
640
641         case KEY_SPEC_REQKEY_AUTH_KEY:
642                 key = ctx.cred->request_key_auth;
643                 if (!key)
644                         goto error;
645
646                 __key_get(key);
647                 key_ref = make_key_ref(key, 1);
648                 break;
649
650         case KEY_SPEC_REQUESTOR_KEYRING:
651                 if (!ctx.cred->request_key_auth)
652                         goto error;
653
654                 down_read(&ctx.cred->request_key_auth->sem);
655                 if (test_bit(KEY_FLAG_REVOKED,
656                              &ctx.cred->request_key_auth->flags)) {
657                         key_ref = ERR_PTR(-EKEYREVOKED);
658                         key = NULL;
659                 } else {
660                         rka = ctx.cred->request_key_auth->payload.data[0];
661                         key = rka->dest_keyring;
662                         __key_get(key);
663                 }
664                 up_read(&ctx.cred->request_key_auth->sem);
665                 if (!key)
666                         goto error;
667                 key_ref = make_key_ref(key, 1);
668                 break;
669
670         default:
671                 key_ref = ERR_PTR(-EINVAL);
672                 if (id < 1)
673                         goto error;
674
675                 key = key_lookup(id);
676                 if (IS_ERR(key)) {
677                         key_ref = ERR_CAST(key);
678                         goto error;
679                 }
680
681                 key_ref = make_key_ref(key, 0);
682
683                 /* check to see if we possess the key */
684                 ctx.index_key.type              = key->type;
685                 ctx.index_key.description       = key->description;
686                 ctx.index_key.desc_len          = strlen(key->description);
687                 ctx.match_data.raw_data         = key;
688                 kdebug("check possessed");
689                 skey_ref = search_process_keyrings(&ctx);
690                 kdebug("possessed=%p", skey_ref);
691
692                 if (!IS_ERR(skey_ref)) {
693                         key_put(key);
694                         key_ref = skey_ref;
695                 }
696
697                 break;
698         }
699
700         /* unlink does not use the nominated key in any way, so can skip all
701          * the permission checks as it is only concerned with the keyring */
702         if (lflags & KEY_LOOKUP_FOR_UNLINK) {
703                 ret = 0;
704                 goto error;
705         }
706
707         if (!(lflags & KEY_LOOKUP_PARTIAL)) {
708                 ret = wait_for_key_construction(key, true);
709                 switch (ret) {
710                 case -ERESTARTSYS:
711                         goto invalid_key;
712                 default:
713                         if (perm)
714                                 goto invalid_key;
715                 case 0:
716                         break;
717                 }
718         } else if (perm) {
719                 ret = key_validate(key);
720                 if (ret < 0)
721                         goto invalid_key;
722         }
723
724         ret = -EIO;
725         if (!(lflags & KEY_LOOKUP_PARTIAL) &&
726             !test_bit(KEY_FLAG_INSTANTIATED, &key->flags))
727                 goto invalid_key;
728
729         /* check the permissions */
730         ret = key_task_permission(key_ref, ctx.cred, perm);
731         if (ret < 0)
732                 goto invalid_key;
733
734         key->last_used_at = current_kernel_time().tv_sec;
735
736 error:
737         put_cred(ctx.cred);
738         return key_ref;
739
740 invalid_key:
741         key_ref_put(key_ref);
742         key_ref = ERR_PTR(ret);
743         goto error;
744
745         /* if we attempted to install a keyring, then it may have caused new
746          * creds to be installed */
747 reget_creds:
748         put_cred(ctx.cred);
749         goto try_again;
750 }
751
752 /*
753  * Join the named keyring as the session keyring if possible else attempt to
754  * create a new one of that name and join that.
755  *
756  * If the name is NULL, an empty anonymous keyring will be installed as the
757  * session keyring.
758  *
759  * Named session keyrings are joined with a semaphore held to prevent the
760  * keyrings from going away whilst the attempt is made to going them and also
761  * to prevent a race in creating compatible session keyrings.
762  */
763 long join_session_keyring(const char *name)
764 {
765         const struct cred *old;
766         struct cred *new;
767         struct key *keyring;
768         long ret, serial;
769
770         new = prepare_creds();
771         if (!new)
772                 return -ENOMEM;
773         old = current_cred();
774
775         /* if no name is provided, install an anonymous keyring */
776         if (!name) {
777                 ret = install_session_keyring_to_cred(new, NULL);
778                 if (ret < 0)
779                         goto error;
780
781                 serial = new->session_keyring->serial;
782                 ret = commit_creds(new);
783                 if (ret == 0)
784                         ret = serial;
785                 goto okay;
786         }
787
788         /* allow the user to join or create a named keyring */
789         mutex_lock(&key_session_mutex);
790
791         /* look for an existing keyring of this name */
792         keyring = find_keyring_by_name(name, false);
793         if (PTR_ERR(keyring) == -ENOKEY) {
794                 /* not found - try and create a new one */
795                 keyring = keyring_alloc(
796                         name, old->uid, old->gid, old,
797                         KEY_POS_ALL | KEY_USR_VIEW | KEY_USR_READ | KEY_USR_LINK,
798                         KEY_ALLOC_IN_QUOTA, NULL);
799                 if (IS_ERR(keyring)) {
800                         ret = PTR_ERR(keyring);
801                         goto error2;
802                 }
803         } else if (IS_ERR(keyring)) {
804                 ret = PTR_ERR(keyring);
805                 goto error2;
806         } else if (keyring == new->session_keyring) {
807                 key_put(keyring);
808                 ret = 0;
809                 goto error2;
810         }
811
812         /* we've got a keyring - now to install it */
813         ret = install_session_keyring_to_cred(new, keyring);
814         if (ret < 0)
815                 goto error2;
816
817         commit_creds(new);
818         mutex_unlock(&key_session_mutex);
819
820         ret = keyring->serial;
821         key_put(keyring);
822 okay:
823         return ret;
824
825 error2:
826         mutex_unlock(&key_session_mutex);
827 error:
828         abort_creds(new);
829         return ret;
830 }
831
832 /*
833  * Replace a process's session keyring on behalf of one of its children when
834  * the target  process is about to resume userspace execution.
835  */
836 void key_change_session_keyring(struct callback_head *twork)
837 {
838         const struct cred *old = current_cred();
839         struct cred *new = container_of(twork, struct cred, rcu);
840
841         if (unlikely(current->flags & PF_EXITING)) {
842                 put_cred(new);
843                 return;
844         }
845
846         new->  uid      = old->  uid;
847         new-> euid      = old-> euid;
848         new-> suid      = old-> suid;
849         new->fsuid      = old->fsuid;
850         new->  gid      = old->  gid;
851         new-> egid      = old-> egid;
852         new-> sgid      = old-> sgid;
853         new->fsgid      = old->fsgid;
854         new->user       = get_uid(old->user);
855         new->user_ns    = get_user_ns(old->user_ns);
856         new->group_info = get_group_info(old->group_info);
857
858         new->securebits = old->securebits;
859         new->cap_inheritable    = old->cap_inheritable;
860         new->cap_permitted      = old->cap_permitted;
861         new->cap_effective      = old->cap_effective;
862         new->cap_ambient        = old->cap_ambient;
863         new->cap_bset           = old->cap_bset;
864
865         new->jit_keyring        = old->jit_keyring;
866         new->thread_keyring     = key_get(old->thread_keyring);
867         new->process_keyring    = key_get(old->process_keyring);
868
869         security_transfer_creds(new, old);
870
871         commit_creds(new);
872 }
873
874 /*
875  * Make sure that root's user and user-session keyrings exist.
876  */
877 static int __init init_root_keyring(void)
878 {
879         return install_user_keyrings();
880 }
881
882 late_initcall(init_root_keyring);