blob: 02d8a251c47656593690ceabd36ea42f42cc2cdb [file] [log] [blame]
Alexey Dobriyan30639b6a2009-06-16 15:33:40 -07001/*
2 * Supplementary group IDs
3 */
4#include <linux/cred.h>
Paul Gortmaker9984de12011-05-23 14:51:41 -04005#include <linux/export.h>
Alexey Dobriyan30639b6a2009-06-16 15:33:40 -07006#include <linux/slab.h>
7#include <linux/security.h>
8#include <linux/syscalls.h>
9#include <asm/uaccess.h>
10
11/* init to 2 - one for init_task, one to ensure it is never freed */
12struct group_info init_groups = { .usage = ATOMIC_INIT(2) };
13
14struct group_info *groups_alloc(int gidsetsize)
15{
16 struct group_info *group_info;
17 int nblocks;
18 int i;
19
20 nblocks = (gidsetsize + NGROUPS_PER_BLOCK - 1) / NGROUPS_PER_BLOCK;
21 /* Make sure we always allocate at least one indirect block pointer */
22 nblocks = nblocks ? : 1;
23 group_info = kmalloc(sizeof(*group_info) + nblocks*sizeof(gid_t *), GFP_USER);
24 if (!group_info)
25 return NULL;
26 group_info->ngroups = gidsetsize;
27 group_info->nblocks = nblocks;
28 atomic_set(&group_info->usage, 1);
29
30 if (gidsetsize <= NGROUPS_SMALL)
31 group_info->blocks[0] = group_info->small_block;
32 else {
33 for (i = 0; i < nblocks; i++) {
Eric W. Biedermanae2975b2011-11-14 15:56:38 -080034 kgid_t *b;
Alexey Dobriyan30639b6a2009-06-16 15:33:40 -070035 b = (void *)__get_free_page(GFP_USER);
36 if (!b)
37 goto out_undo_partial_alloc;
38 group_info->blocks[i] = b;
39 }
40 }
41 return group_info;
42
43out_undo_partial_alloc:
44 while (--i >= 0) {
45 free_page((unsigned long)group_info->blocks[i]);
46 }
47 kfree(group_info);
48 return NULL;
49}
50
51EXPORT_SYMBOL(groups_alloc);
52
53void groups_free(struct group_info *group_info)
54{
55 if (group_info->blocks[0] != group_info->small_block) {
56 int i;
57 for (i = 0; i < group_info->nblocks; i++)
58 free_page((unsigned long)group_info->blocks[i]);
59 }
60 kfree(group_info);
61}
62
63EXPORT_SYMBOL(groups_free);
64
65/* export the group_info to a user-space array */
66static int groups_to_user(gid_t __user *grouplist,
67 const struct group_info *group_info)
68{
Eric W. Biedermanae2975b2011-11-14 15:56:38 -080069 struct user_namespace *user_ns = current_user_ns();
Alexey Dobriyan30639b6a2009-06-16 15:33:40 -070070 int i;
71 unsigned int count = group_info->ngroups;
72
Eric W. Biedermanae2975b2011-11-14 15:56:38 -080073 for (i = 0; i < count; i++) {
74 gid_t gid;
75 gid = from_kgid_munged(user_ns, GROUP_AT(group_info, i));
76 if (put_user(gid, grouplist+i))
Alexey Dobriyan30639b6a2009-06-16 15:33:40 -070077 return -EFAULT;
Alexey Dobriyan30639b6a2009-06-16 15:33:40 -070078 }
79 return 0;
80}
81
82/* fill a group_info from a user-space array - it must be allocated already */
83static int groups_from_user(struct group_info *group_info,
84 gid_t __user *grouplist)
85{
Eric W. Biedermanae2975b2011-11-14 15:56:38 -080086 struct user_namespace *user_ns = current_user_ns();
Alexey Dobriyan30639b6a2009-06-16 15:33:40 -070087 int i;
88 unsigned int count = group_info->ngroups;
89
Eric W. Biedermanae2975b2011-11-14 15:56:38 -080090 for (i = 0; i < count; i++) {
91 gid_t gid;
92 kgid_t kgid;
93 if (get_user(gid, grouplist+i))
Alexey Dobriyan30639b6a2009-06-16 15:33:40 -070094 return -EFAULT;
95
Eric W. Biedermanae2975b2011-11-14 15:56:38 -080096 kgid = make_kgid(user_ns, gid);
97 if (!gid_valid(kgid))
98 return -EINVAL;
99
100 GROUP_AT(group_info, i) = kgid;
Alexey Dobriyan30639b6a2009-06-16 15:33:40 -0700101 }
102 return 0;
103}
104
105/* a simple Shell sort */
106static void groups_sort(struct group_info *group_info)
107{
108 int base, max, stride;
109 int gidsetsize = group_info->ngroups;
110
111 for (stride = 1; stride < gidsetsize; stride = 3 * stride + 1)
112 ; /* nothing */
113 stride /= 3;
114
115 while (stride) {
116 max = gidsetsize - stride;
117 for (base = 0; base < max; base++) {
118 int left = base;
119 int right = left + stride;
Eric W. Biedermanae2975b2011-11-14 15:56:38 -0800120 kgid_t tmp = GROUP_AT(group_info, right);
Alexey Dobriyan30639b6a2009-06-16 15:33:40 -0700121
Eric W. Biedermanae2975b2011-11-14 15:56:38 -0800122 while (left >= 0 && gid_gt(GROUP_AT(group_info, left), tmp)) {
Alexey Dobriyan30639b6a2009-06-16 15:33:40 -0700123 GROUP_AT(group_info, right) =
124 GROUP_AT(group_info, left);
125 right = left;
126 left -= stride;
127 }
128 GROUP_AT(group_info, right) = tmp;
129 }
130 stride /= 3;
131 }
132}
133
134/* a simple bsearch */
Eric W. Biedermanae2975b2011-11-14 15:56:38 -0800135int groups_search(const struct group_info *group_info, kgid_t grp)
Alexey Dobriyan30639b6a2009-06-16 15:33:40 -0700136{
137 unsigned int left, right;
138
139 if (!group_info)
140 return 0;
141
142 left = 0;
143 right = group_info->ngroups;
144 while (left < right) {
145 unsigned int mid = (left+right)/2;
Eric W. Biedermanae2975b2011-11-14 15:56:38 -0800146 if (gid_gt(grp, GROUP_AT(group_info, mid)))
Alexey Dobriyan30639b6a2009-06-16 15:33:40 -0700147 left = mid + 1;
Eric W. Biedermanae2975b2011-11-14 15:56:38 -0800148 else if (gid_lt(grp, GROUP_AT(group_info, mid)))
Alexey Dobriyan30639b6a2009-06-16 15:33:40 -0700149 right = mid;
150 else
151 return 1;
152 }
153 return 0;
154}
155
156/**
157 * set_groups - Change a group subscription in a set of credentials
158 * @new: The newly prepared set of credentials to alter
159 * @group_info: The group list to install
Alexey Dobriyan30639b6a2009-06-16 15:33:40 -0700160 */
Wang YanQing8f6c5ff2014-04-03 14:48:26 -0700161void set_groups(struct cred *new, struct group_info *group_info)
Alexey Dobriyan30639b6a2009-06-16 15:33:40 -0700162{
Alexey Dobriyan30639b6a2009-06-16 15:33:40 -0700163 put_group_info(new->group_info);
164 groups_sort(group_info);
165 get_group_info(group_info);
166 new->group_info = group_info;
Alexey Dobriyan30639b6a2009-06-16 15:33:40 -0700167}
168
169EXPORT_SYMBOL(set_groups);
170
171/**
172 * set_current_groups - Change current's group subscription
173 * @group_info: The group list to impose
174 *
175 * Validate a group subscription and, if valid, impose it upon current's task
176 * security record.
177 */
178int set_current_groups(struct group_info *group_info)
179{
180 struct cred *new;
Alexey Dobriyan30639b6a2009-06-16 15:33:40 -0700181
182 new = prepare_creds();
183 if (!new)
184 return -ENOMEM;
185
Wang YanQing8f6c5ff2014-04-03 14:48:26 -0700186 set_groups(new, group_info);
Alexey Dobriyan30639b6a2009-06-16 15:33:40 -0700187 return commit_creds(new);
188}
189
190EXPORT_SYMBOL(set_current_groups);
191
192SYSCALL_DEFINE2(getgroups, int, gidsetsize, gid_t __user *, grouplist)
193{
194 const struct cred *cred = current_cred();
195 int i;
196
197 if (gidsetsize < 0)
198 return -EINVAL;
199
200 /* no need to grab task_lock here; it cannot change */
201 i = cred->group_info->ngroups;
202 if (gidsetsize) {
203 if (i > gidsetsize) {
204 i = -EINVAL;
205 goto out;
206 }
207 if (groups_to_user(grouplist, cred->group_info)) {
208 i = -EFAULT;
209 goto out;
210 }
211 }
212out:
213 return i;
214}
215
Eric W. Biederman7ff4d902014-12-05 17:19:27 -0600216bool may_setgroups(void)
217{
218 struct user_namespace *user_ns = current_user_ns();
219
220 return ns_capable(user_ns, CAP_SETGID);
221}
222
Alexey Dobriyan30639b6a2009-06-16 15:33:40 -0700223/*
224 * SMP: Our groups are copy-on-write. We can set them safely
225 * without another task interfering.
226 */
227
228SYSCALL_DEFINE2(setgroups, int, gidsetsize, gid_t __user *, grouplist)
229{
230 struct group_info *group_info;
231 int retval;
232
Eric W. Biederman7ff4d902014-12-05 17:19:27 -0600233 if (!may_setgroups())
Alexey Dobriyan30639b6a2009-06-16 15:33:40 -0700234 return -EPERM;
235 if ((unsigned)gidsetsize > NGROUPS_MAX)
236 return -EINVAL;
237
238 group_info = groups_alloc(gidsetsize);
239 if (!group_info)
240 return -ENOMEM;
241 retval = groups_from_user(group_info, grouplist);
242 if (retval) {
243 put_group_info(group_info);
244 return retval;
245 }
246
247 retval = set_current_groups(group_info);
248 put_group_info(group_info);
249
250 return retval;
251}
252
253/*
254 * Check whether we're fsgid/egid or in the supplemental group..
255 */
Eric W. Biederman72cda3d2012-02-09 09:09:39 -0800256int in_group_p(kgid_t grp)
Alexey Dobriyan30639b6a2009-06-16 15:33:40 -0700257{
258 const struct cred *cred = current_cred();
259 int retval = 1;
260
Eric W. Biederman72cda3d2012-02-09 09:09:39 -0800261 if (!gid_eq(grp, cred->fsgid))
262 retval = groups_search(cred->group_info, grp);
Alexey Dobriyan30639b6a2009-06-16 15:33:40 -0700263 return retval;
264}
265
266EXPORT_SYMBOL(in_group_p);
267
Eric W. Biederman72cda3d2012-02-09 09:09:39 -0800268int in_egroup_p(kgid_t grp)
Alexey Dobriyan30639b6a2009-06-16 15:33:40 -0700269{
270 const struct cred *cred = current_cred();
271 int retval = 1;
272
Eric W. Biederman72cda3d2012-02-09 09:09:39 -0800273 if (!gid_eq(grp, cred->egid))
274 retval = groups_search(cred->group_info, grp);
Alexey Dobriyan30639b6a2009-06-16 15:33:40 -0700275 return retval;
276}
277
278EXPORT_SYMBOL(in_egroup_p);