Loading...
1/*
2 * Supplementary group IDs
3 */
4#include <linux/cred.h>
5#include <linux/export.h>
6#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++) {
34 kgid_t *b;
35 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{
69 struct user_namespace *user_ns = current_user_ns();
70 int i;
71 unsigned int count = group_info->ngroups;
72
73 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))
77 return -EFAULT;
78 }
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{
86 struct user_namespace *user_ns = current_user_ns();
87 int i;
88 unsigned int count = group_info->ngroups;
89
90 for (i = 0; i < count; i++) {
91 gid_t gid;
92 kgid_t kgid;
93 if (get_user(gid, grouplist+i))
94 return -EFAULT;
95
96 kgid = make_kgid(user_ns, gid);
97 if (!gid_valid(kgid))
98 return -EINVAL;
99
100 GROUP_AT(group_info, i) = kgid;
101 }
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;
120 kgid_t tmp = GROUP_AT(group_info, right);
121
122 while (left >= 0 && gid_gt(GROUP_AT(group_info, left), tmp)) {
123 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 */
135int groups_search(const struct group_info *group_info, kgid_t grp)
136{
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;
146 if (gid_gt(grp, GROUP_AT(group_info, mid)))
147 left = mid + 1;
148 else if (gid_lt(grp, GROUP_AT(group_info, mid)))
149 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
160 */
161void set_groups(struct cred *new, struct group_info *group_info)
162{
163 put_group_info(new->group_info);
164 groups_sort(group_info);
165 get_group_info(group_info);
166 new->group_info = group_info;
167}
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;
181
182 new = prepare_creds();
183 if (!new)
184 return -ENOMEM;
185
186 set_groups(new, group_info);
187 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
216/*
217 * SMP: Our groups are copy-on-write. We can set them safely
218 * without another task interfering.
219 */
220
221SYSCALL_DEFINE2(setgroups, int, gidsetsize, gid_t __user *, grouplist)
222{
223 struct group_info *group_info;
224 int retval;
225
226 if (!ns_capable(current_user_ns(), CAP_SETGID))
227 return -EPERM;
228 if ((unsigned)gidsetsize > NGROUPS_MAX)
229 return -EINVAL;
230
231 group_info = groups_alloc(gidsetsize);
232 if (!group_info)
233 return -ENOMEM;
234 retval = groups_from_user(group_info, grouplist);
235 if (retval) {
236 put_group_info(group_info);
237 return retval;
238 }
239
240 retval = set_current_groups(group_info);
241 put_group_info(group_info);
242
243 return retval;
244}
245
246/*
247 * Check whether we're fsgid/egid or in the supplemental group..
248 */
249int in_group_p(kgid_t grp)
250{
251 const struct cred *cred = current_cred();
252 int retval = 1;
253
254 if (!gid_eq(grp, cred->fsgid))
255 retval = groups_search(cred->group_info, grp);
256 return retval;
257}
258
259EXPORT_SYMBOL(in_group_p);
260
261int in_egroup_p(kgid_t grp)
262{
263 const struct cred *cred = current_cred();
264 int retval = 1;
265
266 if (!gid_eq(grp, cred->egid))
267 retval = groups_search(cred->group_info, grp);
268 return retval;
269}
270
271EXPORT_SYMBOL(in_egroup_p);
1// SPDX-License-Identifier: GPL-2.0
2/*
3 * Supplementary group IDs
4 */
5#include <linux/cred.h>
6#include <linux/export.h>
7#include <linux/slab.h>
8#include <linux/security.h>
9#include <linux/sort.h>
10#include <linux/syscalls.h>
11#include <linux/user_namespace.h>
12#include <linux/vmalloc.h>
13#include <linux/uaccess.h>
14
15struct group_info *groups_alloc(int gidsetsize)
16{
17 struct group_info *gi;
18 gi = kvmalloc(struct_size(gi, gid, gidsetsize), GFP_KERNEL_ACCOUNT);
19 if (!gi)
20 return NULL;
21
22 refcount_set(&gi->usage, 1);
23 gi->ngroups = gidsetsize;
24 return gi;
25}
26
27EXPORT_SYMBOL(groups_alloc);
28
29void groups_free(struct group_info *group_info)
30{
31 kvfree(group_info);
32}
33
34EXPORT_SYMBOL(groups_free);
35
36/* export the group_info to a user-space array */
37static int groups_to_user(gid_t __user *grouplist,
38 const struct group_info *group_info)
39{
40 struct user_namespace *user_ns = current_user_ns();
41 int i;
42 unsigned int count = group_info->ngroups;
43
44 for (i = 0; i < count; i++) {
45 gid_t gid;
46 gid = from_kgid_munged(user_ns, group_info->gid[i]);
47 if (put_user(gid, grouplist+i))
48 return -EFAULT;
49 }
50 return 0;
51}
52
53/* fill a group_info from a user-space array - it must be allocated already */
54static int groups_from_user(struct group_info *group_info,
55 gid_t __user *grouplist)
56{
57 struct user_namespace *user_ns = current_user_ns();
58 int i;
59 unsigned int count = group_info->ngroups;
60
61 for (i = 0; i < count; i++) {
62 gid_t gid;
63 kgid_t kgid;
64 if (get_user(gid, grouplist+i))
65 return -EFAULT;
66
67 kgid = make_kgid(user_ns, gid);
68 if (!gid_valid(kgid))
69 return -EINVAL;
70
71 group_info->gid[i] = kgid;
72 }
73 return 0;
74}
75
76static int gid_cmp(const void *_a, const void *_b)
77{
78 kgid_t a = *(kgid_t *)_a;
79 kgid_t b = *(kgid_t *)_b;
80
81 return gid_gt(a, b) - gid_lt(a, b);
82}
83
84void groups_sort(struct group_info *group_info)
85{
86 sort(group_info->gid, group_info->ngroups, sizeof(*group_info->gid),
87 gid_cmp, NULL);
88}
89EXPORT_SYMBOL(groups_sort);
90
91/* a simple bsearch */
92int groups_search(const struct group_info *group_info, kgid_t grp)
93{
94 unsigned int left, right;
95
96 if (!group_info)
97 return 0;
98
99 left = 0;
100 right = group_info->ngroups;
101 while (left < right) {
102 unsigned int mid = (left+right)/2;
103 if (gid_gt(grp, group_info->gid[mid]))
104 left = mid + 1;
105 else if (gid_lt(grp, group_info->gid[mid]))
106 right = mid;
107 else
108 return 1;
109 }
110 return 0;
111}
112
113/**
114 * set_groups - Change a group subscription in a set of credentials
115 * @new: The newly prepared set of credentials to alter
116 * @group_info: The group list to install
117 */
118void set_groups(struct cred *new, struct group_info *group_info)
119{
120 put_group_info(new->group_info);
121 get_group_info(group_info);
122 new->group_info = group_info;
123}
124
125EXPORT_SYMBOL(set_groups);
126
127/**
128 * set_current_groups - Change current's group subscription
129 * @group_info: The group list to impose
130 *
131 * Validate a group subscription and, if valid, impose it upon current's task
132 * security record.
133 */
134int set_current_groups(struct group_info *group_info)
135{
136 struct cred *new;
137 const struct cred *old;
138 int retval;
139
140 new = prepare_creds();
141 if (!new)
142 return -ENOMEM;
143
144 old = current_cred();
145
146 set_groups(new, group_info);
147
148 retval = security_task_fix_setgroups(new, old);
149 if (retval < 0)
150 goto error;
151
152 return commit_creds(new);
153
154error:
155 abort_creds(new);
156 return retval;
157}
158
159EXPORT_SYMBOL(set_current_groups);
160
161SYSCALL_DEFINE2(getgroups, int, gidsetsize, gid_t __user *, grouplist)
162{
163 const struct cred *cred = current_cred();
164 int i;
165
166 if (gidsetsize < 0)
167 return -EINVAL;
168
169 /* no need to grab task_lock here; it cannot change */
170 i = cred->group_info->ngroups;
171 if (gidsetsize) {
172 if (i > gidsetsize) {
173 i = -EINVAL;
174 goto out;
175 }
176 if (groups_to_user(grouplist, cred->group_info)) {
177 i = -EFAULT;
178 goto out;
179 }
180 }
181out:
182 return i;
183}
184
185bool may_setgroups(void)
186{
187 struct user_namespace *user_ns = current_user_ns();
188
189 return ns_capable_setid(user_ns, CAP_SETGID) &&
190 userns_may_setgroups(user_ns);
191}
192
193/*
194 * SMP: Our groups are copy-on-write. We can set them safely
195 * without another task interfering.
196 */
197
198SYSCALL_DEFINE2(setgroups, int, gidsetsize, gid_t __user *, grouplist)
199{
200 struct group_info *group_info;
201 int retval;
202
203 if (!may_setgroups())
204 return -EPERM;
205 if ((unsigned)gidsetsize > NGROUPS_MAX)
206 return -EINVAL;
207
208 group_info = groups_alloc(gidsetsize);
209 if (!group_info)
210 return -ENOMEM;
211 retval = groups_from_user(group_info, grouplist);
212 if (retval) {
213 put_group_info(group_info);
214 return retval;
215 }
216
217 groups_sort(group_info);
218 retval = set_current_groups(group_info);
219 put_group_info(group_info);
220
221 return retval;
222}
223
224/*
225 * Check whether we're fsgid/egid or in the supplemental group..
226 */
227int in_group_p(kgid_t grp)
228{
229 const struct cred *cred = current_cred();
230 int retval = 1;
231
232 if (!gid_eq(grp, cred->fsgid))
233 retval = groups_search(cred->group_info, grp);
234 return retval;
235}
236
237EXPORT_SYMBOL(in_group_p);
238
239int in_egroup_p(kgid_t grp)
240{
241 const struct cred *cred = current_cred();
242 int retval = 1;
243
244 if (!gid_eq(grp, cred->egid))
245 retval = groups_search(cred->group_info, grp);
246 return retval;
247}
248
249EXPORT_SYMBOL(in_egroup_p);