[PATCH] Update contact info for Geert Uytterhoeven
[linux-2.6-block.git] / security / keys / process_keys.c
CommitLineData
1da177e4
LT
1/* process_keys.c: management of a process's keyrings
2 *
8589b4e0 3 * Copyright (C) 2004-5 Red Hat, Inc. All Rights Reserved.
1da177e4
LT
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/keyctl.h>
17#include <linux/fs.h>
18#include <linux/err.h>
bb003079 19#include <linux/mutex.h>
1da177e4
LT
20#include <asm/uaccess.h>
21#include "internal.h"
22
23/* session keyring create vs join semaphore */
bb003079 24static DEFINE_MUTEX(key_session_mutex);
1da177e4
LT
25
26/* the root user's tracking struct */
27struct key_user root_key_user = {
28 .usage = ATOMIC_INIT(3),
29 .consq = LIST_HEAD_INIT(root_key_user.consq),
30 .lock = SPIN_LOCK_UNLOCKED,
31 .nkeys = ATOMIC_INIT(2),
32 .nikeys = ATOMIC_INIT(2),
33 .uid = 0,
34};
35
36/* the root user's UID keyring */
37struct key root_user_keyring = {
38 .usage = ATOMIC_INIT(1),
39 .serial = 2,
40 .type = &key_type_keyring,
41 .user = &root_key_user,
1da177e4 42 .sem = __RWSEM_INITIALIZER(root_user_keyring.sem),
29db9190 43 .perm = (KEY_POS_ALL & ~KEY_POS_SETATTR) | KEY_USR_ALL,
76d8aeab 44 .flags = 1 << KEY_FLAG_INSTANTIATED,
1da177e4
LT
45 .description = "_uid.0",
46#ifdef KEY_DEBUGGING
47 .magic = KEY_DEBUG_MAGIC,
48#endif
49};
50
51/* the root user's default session keyring */
52struct key root_session_keyring = {
53 .usage = ATOMIC_INIT(1),
54 .serial = 1,
55 .type = &key_type_keyring,
56 .user = &root_key_user,
1da177e4 57 .sem = __RWSEM_INITIALIZER(root_session_keyring.sem),
29db9190 58 .perm = (KEY_POS_ALL & ~KEY_POS_SETATTR) | KEY_USR_ALL,
76d8aeab 59 .flags = 1 << KEY_FLAG_INSTANTIATED,
1da177e4
LT
60 .description = "_uid_ses.0",
61#ifdef KEY_DEBUGGING
62 .magic = KEY_DEBUG_MAGIC,
63#endif
64};
65
66/*****************************************************************************/
67/*
68 * allocate the keyrings to be associated with a UID
69 */
70int alloc_uid_keyring(struct user_struct *user)
71{
72 struct key *uid_keyring, *session_keyring;
73 char buf[20];
74 int ret;
75
76 /* concoct a default session keyring */
77 sprintf(buf, "_uid_ses.%u", user->uid);
78
79 session_keyring = keyring_alloc(buf, user->uid, (gid_t) -1, 0, NULL);
80 if (IS_ERR(session_keyring)) {
81 ret = PTR_ERR(session_keyring);
82 goto error;
83 }
84
85 /* and a UID specific keyring, pointed to by the default session
86 * keyring */
87 sprintf(buf, "_uid.%u", user->uid);
88
89 uid_keyring = keyring_alloc(buf, user->uid, (gid_t) -1, 0,
90 session_keyring);
91 if (IS_ERR(uid_keyring)) {
92 key_put(session_keyring);
93 ret = PTR_ERR(uid_keyring);
94 goto error;
95 }
96
97 /* install the keyrings */
98 user->uid_keyring = uid_keyring;
99 user->session_keyring = session_keyring;
100 ret = 0;
101
664cceb0 102error:
1da177e4
LT
103 return ret;
104
105} /* end alloc_uid_keyring() */
106
107/*****************************************************************************/
108/*
109 * deal with the UID changing
110 */
111void switch_uid_keyring(struct user_struct *new_user)
112{
113#if 0 /* do nothing for now */
114 struct key *old;
115
116 /* switch to the new user's session keyring if we were running under
117 * root's default session keyring */
118 if (new_user->uid != 0 &&
119 current->session_keyring == &root_session_keyring
120 ) {
121 atomic_inc(&new_user->session_keyring->usage);
122
123 task_lock(current);
124 old = current->session_keyring;
125 current->session_keyring = new_user->session_keyring;
126 task_unlock(current);
127
128 key_put(old);
129 }
130#endif
131
132} /* end switch_uid_keyring() */
133
134/*****************************************************************************/
135/*
136 * install a fresh thread keyring, discarding the old one
137 */
138int install_thread_keyring(struct task_struct *tsk)
139{
140 struct key *keyring, *old;
141 char buf[20];
142 int ret;
143
144 sprintf(buf, "_tid.%u", tsk->pid);
145
146 keyring = keyring_alloc(buf, tsk->uid, tsk->gid, 1, NULL);
147 if (IS_ERR(keyring)) {
148 ret = PTR_ERR(keyring);
149 goto error;
150 }
151
152 task_lock(tsk);
153 old = tsk->thread_keyring;
154 tsk->thread_keyring = keyring;
155 task_unlock(tsk);
156
157 ret = 0;
158
159 key_put(old);
664cceb0 160error:
1da177e4
LT
161 return ret;
162
163} /* end install_thread_keyring() */
164
165/*****************************************************************************/
166/*
167 * make sure a process keyring is installed
168 */
3e30148c 169int install_process_keyring(struct task_struct *tsk)
1da177e4
LT
170{
171 unsigned long flags;
172 struct key *keyring;
173 char buf[20];
174 int ret;
175
176 if (!tsk->signal->process_keyring) {
177 sprintf(buf, "_pid.%u", tsk->tgid);
178
179 keyring = keyring_alloc(buf, tsk->uid, tsk->gid, 1, NULL);
180 if (IS_ERR(keyring)) {
181 ret = PTR_ERR(keyring);
182 goto error;
183 }
184
8589b4e0 185 /* attach keyring */
1da177e4
LT
186 spin_lock_irqsave(&tsk->sighand->siglock, flags);
187 if (!tsk->signal->process_keyring) {
188 tsk->signal->process_keyring = keyring;
189 keyring = NULL;
190 }
191 spin_unlock_irqrestore(&tsk->sighand->siglock, flags);
192
193 key_put(keyring);
194 }
195
196 ret = 0;
664cceb0 197error:
1da177e4
LT
198 return ret;
199
200} /* end install_process_keyring() */
201
202/*****************************************************************************/
203/*
204 * install a session keyring, discarding the old one
205 * - if a keyring is not supplied, an empty one is invented
206 */
207static int install_session_keyring(struct task_struct *tsk,
208 struct key *keyring)
209{
210 unsigned long flags;
211 struct key *old;
212 char buf[20];
213 int ret;
214
215 /* create an empty session keyring */
216 if (!keyring) {
217 sprintf(buf, "_ses.%u", tsk->tgid);
218
219 keyring = keyring_alloc(buf, tsk->uid, tsk->gid, 1, NULL);
220 if (IS_ERR(keyring)) {
221 ret = PTR_ERR(keyring);
222 goto error;
223 }
224 }
225 else {
226 atomic_inc(&keyring->usage);
227 }
228
229 /* install the keyring */
230 spin_lock_irqsave(&tsk->sighand->siglock, flags);
8589b4e0
DH
231 old = rcu_dereference(tsk->signal->session_keyring);
232 rcu_assign_pointer(tsk->signal->session_keyring, keyring);
1da177e4
LT
233 spin_unlock_irqrestore(&tsk->sighand->siglock, flags);
234
235 ret = 0;
236
8589b4e0 237 /* we're using RCU on the pointer */
b2b18660 238 synchronize_rcu();
1da177e4 239 key_put(old);
664cceb0 240error:
1da177e4
LT
241 return ret;
242
243} /* end install_session_keyring() */
244
245/*****************************************************************************/
246/*
247 * copy the keys in a thread group for fork without CLONE_THREAD
248 */
249int copy_thread_group_keys(struct task_struct *tsk)
250{
1da177e4
LT
251 key_check(current->thread_group->session_keyring);
252 key_check(current->thread_group->process_keyring);
253
254 /* no process keyring yet */
255 tsk->signal->process_keyring = NULL;
256
257 /* same session keyring */
8589b4e0 258 rcu_read_lock();
1da177e4 259 tsk->signal->session_keyring =
8589b4e0
DH
260 key_get(rcu_dereference(current->signal->session_keyring));
261 rcu_read_unlock();
1da177e4
LT
262
263 return 0;
264
265} /* end copy_thread_group_keys() */
266
267/*****************************************************************************/
268/*
269 * copy the keys for fork
270 */
271int copy_keys(unsigned long clone_flags, struct task_struct *tsk)
272{
273 key_check(tsk->thread_keyring);
b5f545c8 274 key_check(tsk->request_key_auth);
1da177e4
LT
275
276 /* no thread keyring yet */
277 tsk->thread_keyring = NULL;
b5f545c8
DH
278
279 /* copy the request_key() authorisation for this thread */
280 key_get(tsk->request_key_auth);
281
1da177e4
LT
282 return 0;
283
284} /* end copy_keys() */
285
286/*****************************************************************************/
287/*
288 * dispose of thread group keys upon thread group destruction
289 */
290void exit_thread_group_keys(struct signal_struct *tg)
291{
292 key_put(tg->session_keyring);
293 key_put(tg->process_keyring);
294
295} /* end exit_thread_group_keys() */
296
297/*****************************************************************************/
298/*
b5f545c8 299 * dispose of per-thread keys upon thread exit
1da177e4
LT
300 */
301void exit_keys(struct task_struct *tsk)
302{
303 key_put(tsk->thread_keyring);
b5f545c8 304 key_put(tsk->request_key_auth);
1da177e4
LT
305
306} /* end exit_keys() */
307
308/*****************************************************************************/
309/*
310 * deal with execve()
311 */
312int exec_keys(struct task_struct *tsk)
313{
314 unsigned long flags;
315 struct key *old;
316
317 /* newly exec'd tasks don't get a thread keyring */
318 task_lock(tsk);
319 old = tsk->thread_keyring;
320 tsk->thread_keyring = NULL;
321 task_unlock(tsk);
322
323 key_put(old);
324
325 /* discard the process keyring from a newly exec'd task */
326 spin_lock_irqsave(&tsk->sighand->siglock, flags);
327 old = tsk->signal->process_keyring;
328 tsk->signal->process_keyring = NULL;
329 spin_unlock_irqrestore(&tsk->sighand->siglock, flags);
330
331 key_put(old);
332
333 return 0;
334
335} /* end exec_keys() */
336
337/*****************************************************************************/
338/*
339 * deal with SUID programs
340 * - we might want to make this invent a new session keyring
341 */
342int suid_keys(struct task_struct *tsk)
343{
344 return 0;
345
346} /* end suid_keys() */
347
348/*****************************************************************************/
349/*
350 * the filesystem user ID changed
351 */
352void key_fsuid_changed(struct task_struct *tsk)
353{
354 /* update the ownership of the thread keyring */
355 if (tsk->thread_keyring) {
356 down_write(&tsk->thread_keyring->sem);
1da177e4 357 tsk->thread_keyring->uid = tsk->fsuid;
1da177e4
LT
358 up_write(&tsk->thread_keyring->sem);
359 }
360
361} /* end key_fsuid_changed() */
362
363/*****************************************************************************/
364/*
365 * the filesystem group ID changed
366 */
367void key_fsgid_changed(struct task_struct *tsk)
368{
369 /* update the ownership of the thread keyring */
370 if (tsk->thread_keyring) {
371 down_write(&tsk->thread_keyring->sem);
1da177e4 372 tsk->thread_keyring->gid = tsk->fsgid;
1da177e4
LT
373 up_write(&tsk->thread_keyring->sem);
374 }
375
376} /* end key_fsgid_changed() */
377
378/*****************************************************************************/
379/*
380 * search the process keyrings for the first matching key
381 * - we use the supplied match function to see if the description (or other
382 * feature of interest) matches
383 * - we return -EAGAIN if we didn't find any matching key
384 * - we return -ENOKEY if we found only negative matching keys
385 */
664cceb0
DH
386key_ref_t search_process_keyrings(struct key_type *type,
387 const void *description,
388 key_match_func_t match,
389 struct task_struct *context)
1da177e4 390{
3e30148c 391 struct request_key_auth *rka;
b5f545c8 392 key_ref_t key_ref, ret, err;
1da177e4
LT
393
394 /* we want to return -EAGAIN or -ENOKEY if any of the keyrings were
395 * searchable, but we failed to find a key or we found a negative key;
396 * otherwise we want to return a sample error (probably -EACCES) if
397 * none of the keyrings were searchable
398 *
399 * in terms of priority: success > -ENOKEY > -EAGAIN > other error
400 */
664cceb0 401 key_ref = NULL;
1da177e4
LT
402 ret = NULL;
403 err = ERR_PTR(-EAGAIN);
404
405 /* search the thread keyring first */
3e30148c 406 if (context->thread_keyring) {
664cceb0
DH
407 key_ref = keyring_search_aux(
408 make_key_ref(context->thread_keyring, 1),
409 context, type, description, match);
410 if (!IS_ERR(key_ref))
1da177e4
LT
411 goto found;
412
664cceb0 413 switch (PTR_ERR(key_ref)) {
1da177e4
LT
414 case -EAGAIN: /* no key */
415 if (ret)
416 break;
417 case -ENOKEY: /* negative key */
664cceb0 418 ret = key_ref;
1da177e4
LT
419 break;
420 default:
664cceb0 421 err = key_ref;
1da177e4
LT
422 break;
423 }
424 }
425
426 /* search the process keyring second */
3e30148c 427 if (context->signal->process_keyring) {
664cceb0
DH
428 key_ref = keyring_search_aux(
429 make_key_ref(context->signal->process_keyring, 1),
430 context, type, description, match);
431 if (!IS_ERR(key_ref))
1da177e4
LT
432 goto found;
433
664cceb0 434 switch (PTR_ERR(key_ref)) {
1da177e4
LT
435 case -EAGAIN: /* no key */
436 if (ret)
437 break;
438 case -ENOKEY: /* negative key */
664cceb0 439 ret = key_ref;
1da177e4
LT
440 break;
441 default:
664cceb0 442 err = key_ref;
1da177e4
LT
443 break;
444 }
445 }
446
3e30148c
DH
447 /* search the session keyring */
448 if (context->signal->session_keyring) {
8589b4e0 449 rcu_read_lock();
664cceb0
DH
450 key_ref = keyring_search_aux(
451 make_key_ref(rcu_dereference(
452 context->signal->session_keyring),
453 1),
3e30148c 454 context, type, description, match);
8589b4e0 455 rcu_read_unlock();
3e30148c 456
664cceb0 457 if (!IS_ERR(key_ref))
3e30148c
DH
458 goto found;
459
664cceb0 460 switch (PTR_ERR(key_ref)) {
3e30148c
DH
461 case -EAGAIN: /* no key */
462 if (ret)
463 break;
464 case -ENOKEY: /* negative key */
664cceb0 465 ret = key_ref;
3e30148c
DH
466 break;
467 default:
664cceb0 468 err = key_ref;
3e30148c
DH
469 break;
470 }
b5f545c8
DH
471 }
472 /* or search the user-session keyring */
473 else {
474 key_ref = keyring_search_aux(
475 make_key_ref(context->user->session_keyring, 1),
476 context, type, description, match);
664cceb0 477 if (!IS_ERR(key_ref))
3e30148c
DH
478 goto found;
479
664cceb0 480 switch (PTR_ERR(key_ref)) {
3e30148c
DH
481 case -EAGAIN: /* no key */
482 if (ret)
483 break;
484 case -ENOKEY: /* negative key */
664cceb0 485 ret = key_ref;
3e30148c
DH
486 break;
487 default:
664cceb0 488 err = key_ref;
3e30148c
DH
489 break;
490 }
8589b4e0 491 }
b5f545c8
DH
492
493 /* if this process has an instantiation authorisation key, then we also
494 * search the keyrings of the process mentioned there
495 * - we don't permit access to request_key auth keys via this method
496 */
497 if (context->request_key_auth &&
498 context == current &&
499 type != &key_type_request_key_auth &&
500 key_validate(context->request_key_auth) == 0
501 ) {
502 rka = context->request_key_auth->payload.data;
503
504 key_ref = search_process_keyrings(type, description, match,
505 rka->context);
506
664cceb0 507 if (!IS_ERR(key_ref))
3e30148c 508 goto found;
1da177e4 509
664cceb0 510 switch (PTR_ERR(key_ref)) {
3e30148c
DH
511 case -EAGAIN: /* no key */
512 if (ret)
513 break;
514 case -ENOKEY: /* negative key */
664cceb0 515 ret = key_ref;
1da177e4 516 break;
3e30148c 517 default:
664cceb0 518 err = key_ref;
3e30148c
DH
519 break;
520 }
1da177e4
LT
521 }
522
523 /* no key - decide on the error we're going to go for */
664cceb0 524 key_ref = ret ? ret : err;
1da177e4 525
3e30148c 526found:
664cceb0 527 return key_ref;
1da177e4 528
1da177e4
LT
529} /* end search_process_keyrings() */
530
664cceb0
DH
531/*****************************************************************************/
532/*
533 * see if the key we're looking at is the target key
534 */
535static int lookup_user_key_possessed(const struct key *key, const void *target)
536{
537 return key == target;
538
539} /* end lookup_user_key_possessed() */
540
1da177e4
LT
541/*****************************************************************************/
542/*
543 * lookup a key given a key ID from userspace with a given permissions mask
544 * - don't create special keyrings unless so requested
545 * - partially constructed keys aren't found unless requested
546 */
664cceb0
DH
547key_ref_t lookup_user_key(struct task_struct *context, key_serial_t id,
548 int create, int partial, key_perm_t perm)
1da177e4 549{
664cceb0 550 key_ref_t key_ref, skey_ref;
1da177e4
LT
551 struct key *key;
552 int ret;
553
3e30148c
DH
554 if (!context)
555 context = current;
556
664cceb0 557 key_ref = ERR_PTR(-ENOKEY);
1da177e4
LT
558
559 switch (id) {
560 case KEY_SPEC_THREAD_KEYRING:
3e30148c 561 if (!context->thread_keyring) {
1da177e4
LT
562 if (!create)
563 goto error;
564
3e30148c 565 ret = install_thread_keyring(context);
1da177e4
LT
566 if (ret < 0) {
567 key = ERR_PTR(ret);
568 goto error;
569 }
570 }
571
3e30148c 572 key = context->thread_keyring;
1da177e4 573 atomic_inc(&key->usage);
664cceb0 574 key_ref = make_key_ref(key, 1);
1da177e4
LT
575 break;
576
577 case KEY_SPEC_PROCESS_KEYRING:
3e30148c 578 if (!context->signal->process_keyring) {
1da177e4
LT
579 if (!create)
580 goto error;
581
3e30148c 582 ret = install_process_keyring(context);
1da177e4
LT
583 if (ret < 0) {
584 key = ERR_PTR(ret);
585 goto error;
586 }
587 }
588
3e30148c 589 key = context->signal->process_keyring;
1da177e4 590 atomic_inc(&key->usage);
664cceb0 591 key_ref = make_key_ref(key, 1);
1da177e4
LT
592 break;
593
594 case KEY_SPEC_SESSION_KEYRING:
3e30148c 595 if (!context->signal->session_keyring) {
1da177e4
LT
596 /* always install a session keyring upon access if one
597 * doesn't exist yet */
598 ret = install_session_keyring(
664cceb0 599 context, context->user->session_keyring);
1da177e4
LT
600 if (ret < 0)
601 goto error;
602 }
603
3e30148c
DH
604 rcu_read_lock();
605 key = rcu_dereference(context->signal->session_keyring);
1da177e4 606 atomic_inc(&key->usage);
3e30148c 607 rcu_read_unlock();
664cceb0 608 key_ref = make_key_ref(key, 1);
1da177e4
LT
609 break;
610
611 case KEY_SPEC_USER_KEYRING:
3e30148c 612 key = context->user->uid_keyring;
1da177e4 613 atomic_inc(&key->usage);
664cceb0 614 key_ref = make_key_ref(key, 1);
1da177e4
LT
615 break;
616
617 case KEY_SPEC_USER_SESSION_KEYRING:
3e30148c 618 key = context->user->session_keyring;
1da177e4 619 atomic_inc(&key->usage);
664cceb0 620 key_ref = make_key_ref(key, 1);
1da177e4
LT
621 break;
622
623 case KEY_SPEC_GROUP_KEYRING:
624 /* group keyrings are not yet supported */
625 key = ERR_PTR(-EINVAL);
626 goto error;
627
b5f545c8
DH
628 case KEY_SPEC_REQKEY_AUTH_KEY:
629 key = context->request_key_auth;
630 if (!key)
631 goto error;
632
633 atomic_inc(&key->usage);
634 key_ref = make_key_ref(key, 1);
635 break;
636
1da177e4 637 default:
664cceb0 638 key_ref = ERR_PTR(-EINVAL);
1da177e4
LT
639 if (id < 1)
640 goto error;
641
642 key = key_lookup(id);
664cceb0
DH
643 if (IS_ERR(key)) {
644 key_ref = ERR_PTR(PTR_ERR(key));
1da177e4 645 goto error;
664cceb0
DH
646 }
647
648 key_ref = make_key_ref(key, 0);
649
650 /* check to see if we possess the key */
651 skey_ref = search_process_keyrings(key->type, key,
652 lookup_user_key_possessed,
653 current);
654
655 if (!IS_ERR(skey_ref)) {
656 key_put(key);
657 key_ref = skey_ref;
658 }
659
1da177e4
LT
660 break;
661 }
662
3e30148c 663 /* check the status */
1da177e4
LT
664 if (perm) {
665 ret = key_validate(key);
666 if (ret < 0)
667 goto invalid_key;
668 }
669
670 ret = -EIO;
76d8aeab 671 if (!partial && !test_bit(KEY_FLAG_INSTANTIATED, &key->flags))
1da177e4
LT
672 goto invalid_key;
673
3e30148c 674 /* check the permissions */
29db9190
DH
675 ret = key_task_permission(key_ref, context, perm);
676 if (ret < 0)
1da177e4
LT
677 goto invalid_key;
678
664cceb0
DH
679error:
680 return key_ref;
1da177e4 681
664cceb0
DH
682invalid_key:
683 key_ref_put(key_ref);
684 key_ref = ERR_PTR(ret);
1da177e4
LT
685 goto error;
686
687} /* end lookup_user_key() */
688
689/*****************************************************************************/
690/*
691 * join the named keyring as the session keyring if possible, or attempt to
692 * create a new one of that name if not
693 * - if the name is NULL, an empty anonymous keyring is installed instead
694 * - named session keyring joining is done with a semaphore held
695 */
696long join_session_keyring(const char *name)
697{
698 struct task_struct *tsk = current;
1da177e4
LT
699 struct key *keyring;
700 long ret;
701
702 /* if no name is provided, install an anonymous keyring */
703 if (!name) {
704 ret = install_session_keyring(tsk, NULL);
705 if (ret < 0)
706 goto error;
707
3e30148c
DH
708 rcu_read_lock();
709 ret = rcu_dereference(tsk->signal->session_keyring)->serial;
710 rcu_read_unlock();
1da177e4
LT
711 goto error;
712 }
713
714 /* allow the user to join or create a named keyring */
bb003079 715 mutex_lock(&key_session_mutex);
1da177e4
LT
716
717 /* look for an existing keyring of this name */
718 keyring = find_keyring_by_name(name, 0);
719 if (PTR_ERR(keyring) == -ENOKEY) {
720 /* not found - try and create a new one */
721 keyring = keyring_alloc(name, tsk->uid, tsk->gid, 0, NULL);
722 if (IS_ERR(keyring)) {
723 ret = PTR_ERR(keyring);
bcf945d3 724 goto error2;
1da177e4
LT
725 }
726 }
727 else if (IS_ERR(keyring)) {
728 ret = PTR_ERR(keyring);
729 goto error2;
730 }
731
732 /* we've got a keyring - now to install it */
733 ret = install_session_keyring(tsk, keyring);
734 if (ret < 0)
735 goto error2;
736
737 ret = keyring->serial;
738 key_put(keyring);
739
664cceb0 740error2:
bb003079 741 mutex_unlock(&key_session_mutex);
664cceb0 742error:
1da177e4
LT
743 return ret;
744
745} /* end join_session_keyring() */