CRED: Use RCU to access another task's creds and to release a task's own creds
[linux-2.6-block.git] / security / keys / permission.c
1 /* permission.c: key permission determination
2  *
3  * Copyright (C) 2005 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/security.h>
14 #include "internal.h"
15
16 /*****************************************************************************/
17 /*
18  * check to see whether permission is granted to use a key in the desired way,
19  * but permit the security modules to override
20  */
21 int key_task_permission(const key_ref_t key_ref,
22                         struct task_struct *context,
23                         key_perm_t perm)
24 {
25         const struct cred *cred;
26         struct key *key;
27         key_perm_t kperm;
28         int ret;
29
30         key = key_ref_to_ptr(key_ref);
31
32         rcu_read_lock();
33         cred = __task_cred(context);
34
35         /* use the second 8-bits of permissions for keys the caller owns */
36         if (key->uid == cred->fsuid) {
37                 kperm = key->perm >> 16;
38                 goto use_these_perms;
39         }
40
41         /* use the third 8-bits of permissions for keys the caller has a group
42          * membership in common with */
43         if (key->gid != -1 && key->perm & KEY_GRP_ALL) {
44                 if (key->gid == cred->fsgid) {
45                         kperm = key->perm >> 8;
46                         goto use_these_perms;
47                 }
48
49                 ret = groups_search(cred->group_info, key->gid);
50                 if (ret) {
51                         kperm = key->perm >> 8;
52                         goto use_these_perms;
53                 }
54         }
55
56         /* otherwise use the least-significant 8-bits */
57         kperm = key->perm;
58
59 use_these_perms:
60         rcu_read_lock();
61
62         /* use the top 8-bits of permissions for keys the caller possesses
63          * - possessor permissions are additive with other permissions
64          */
65         if (is_key_possessed(key_ref))
66                 kperm |= key->perm >> 24;
67
68         kperm = kperm & perm & KEY_ALL;
69
70         if (kperm != perm)
71                 return -EACCES;
72
73         /* let LSM be the final arbiter */
74         return security_key_permission(key_ref, context, perm);
75
76 } /* end key_task_permission() */
77
78 EXPORT_SYMBOL(key_task_permission);
79
80 /*****************************************************************************/
81 /*
82  * validate a key
83  */
84 int key_validate(struct key *key)
85 {
86         struct timespec now;
87         int ret = 0;
88
89         if (key) {
90                 /* check it's still accessible */
91                 ret = -EKEYREVOKED;
92                 if (test_bit(KEY_FLAG_REVOKED, &key->flags) ||
93                     test_bit(KEY_FLAG_DEAD, &key->flags))
94                         goto error;
95
96                 /* check it hasn't expired */
97                 ret = 0;
98                 if (key->expiry) {
99                         now = current_kernel_time();
100                         if (now.tv_sec >= key->expiry)
101                                 ret = -EKEYEXPIRED;
102                 }
103         }
104
105  error:
106         return ret;
107
108 } /* end key_validate() */
109
110 EXPORT_SYMBOL(key_validate);