blob: 94bde5210e3d5ec0dfaa893f735ed9613e1a127b [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>
Eric W. Biederman273d2c62014-12-05 18:01:11 -06009#include <linux/user_namespace.h>
Alexey Dobriyan81243ea2016-10-07 17:03:12 -070010#include <linux/vmalloc.h>
Alexey Dobriyan30639b6a2009-06-16 15:33:40 -070011#include <asm/uaccess.h>
12
Alexey Dobriyan30639b6a2009-06-16 15:33:40 -070013struct group_info *groups_alloc(int gidsetsize)
14{
Alexey Dobriyan81243ea2016-10-07 17:03:12 -070015 struct group_info *gi;
16 unsigned int len;
Alexey Dobriyan30639b6a2009-06-16 15:33:40 -070017
Alexey Dobriyan81243ea2016-10-07 17:03:12 -070018 len = sizeof(struct group_info) + sizeof(kgid_t) * gidsetsize;
19 gi = kmalloc(len, GFP_KERNEL_ACCOUNT|__GFP_NOWARN|__GFP_NORETRY);
20 if (!gi)
21 gi = __vmalloc(len, GFP_KERNEL_ACCOUNT|__GFP_HIGHMEM, PAGE_KERNEL);
22 if (!gi)
Alexey Dobriyan30639b6a2009-06-16 15:33:40 -070023 return NULL;
Alexey Dobriyan30639b6a2009-06-16 15:33:40 -070024
Alexey Dobriyan81243ea2016-10-07 17:03:12 -070025 atomic_set(&gi->usage, 1);
26 gi->ngroups = gidsetsize;
27 return gi;
Alexey Dobriyan30639b6a2009-06-16 15:33:40 -070028}
29
30EXPORT_SYMBOL(groups_alloc);
31
32void groups_free(struct group_info *group_info)
33{
Alexey Dobriyan81243ea2016-10-07 17:03:12 -070034 kvfree(group_info);
Alexey Dobriyan30639b6a2009-06-16 15:33:40 -070035}
36
37EXPORT_SYMBOL(groups_free);
38
39/* export the group_info to a user-space array */
40static int groups_to_user(gid_t __user *grouplist,
41 const struct group_info *group_info)
42{
Eric W. Biedermanae2975b2011-11-14 15:56:38 -080043 struct user_namespace *user_ns = current_user_ns();
Alexey Dobriyan30639b6a2009-06-16 15:33:40 -070044 int i;
45 unsigned int count = group_info->ngroups;
46
Eric W. Biedermanae2975b2011-11-14 15:56:38 -080047 for (i = 0; i < count; i++) {
48 gid_t gid;
Alexey Dobriyan81243ea2016-10-07 17:03:12 -070049 gid = from_kgid_munged(user_ns, group_info->gid[i]);
Eric W. Biedermanae2975b2011-11-14 15:56:38 -080050 if (put_user(gid, grouplist+i))
Alexey Dobriyan30639b6a2009-06-16 15:33:40 -070051 return -EFAULT;
Alexey Dobriyan30639b6a2009-06-16 15:33:40 -070052 }
53 return 0;
54}
55
56/* fill a group_info from a user-space array - it must be allocated already */
57static int groups_from_user(struct group_info *group_info,
58 gid_t __user *grouplist)
59{
Eric W. Biedermanae2975b2011-11-14 15:56:38 -080060 struct user_namespace *user_ns = current_user_ns();
Alexey Dobriyan30639b6a2009-06-16 15:33:40 -070061 int i;
62 unsigned int count = group_info->ngroups;
63
Eric W. Biedermanae2975b2011-11-14 15:56:38 -080064 for (i = 0; i < count; i++) {
65 gid_t gid;
66 kgid_t kgid;
67 if (get_user(gid, grouplist+i))
Alexey Dobriyan30639b6a2009-06-16 15:33:40 -070068 return -EFAULT;
69
Eric W. Biedermanae2975b2011-11-14 15:56:38 -080070 kgid = make_kgid(user_ns, gid);
71 if (!gid_valid(kgid))
72 return -EINVAL;
73
Alexey Dobriyan81243ea2016-10-07 17:03:12 -070074 group_info->gid[i] = kgid;
Alexey Dobriyan30639b6a2009-06-16 15:33:40 -070075 }
76 return 0;
77}
78
79/* a simple Shell sort */
Thiago Rafael Becker79258d92017-12-14 15:33:12 -080080void groups_sort(struct group_info *group_info)
Alexey Dobriyan30639b6a2009-06-16 15:33:40 -070081{
82 int base, max, stride;
83 int gidsetsize = group_info->ngroups;
84
85 for (stride = 1; stride < gidsetsize; stride = 3 * stride + 1)
86 ; /* nothing */
87 stride /= 3;
88
89 while (stride) {
90 max = gidsetsize - stride;
91 for (base = 0; base < max; base++) {
92 int left = base;
93 int right = left + stride;
Alexey Dobriyan81243ea2016-10-07 17:03:12 -070094 kgid_t tmp = group_info->gid[right];
Alexey Dobriyan30639b6a2009-06-16 15:33:40 -070095
Alexey Dobriyan81243ea2016-10-07 17:03:12 -070096 while (left >= 0 && gid_gt(group_info->gid[left], tmp)) {
97 group_info->gid[right] = group_info->gid[left];
Alexey Dobriyan30639b6a2009-06-16 15:33:40 -070098 right = left;
99 left -= stride;
100 }
Alexey Dobriyan81243ea2016-10-07 17:03:12 -0700101 group_info->gid[right] = tmp;
Alexey Dobriyan30639b6a2009-06-16 15:33:40 -0700102 }
103 stride /= 3;
104 }
105}
Thiago Rafael Becker79258d92017-12-14 15:33:12 -0800106EXPORT_SYMBOL(groups_sort);
Alexey Dobriyan30639b6a2009-06-16 15:33:40 -0700107
108/* a simple bsearch */
Eric W. Biedermanae2975b2011-11-14 15:56:38 -0800109int groups_search(const struct group_info *group_info, kgid_t grp)
Alexey Dobriyan30639b6a2009-06-16 15:33:40 -0700110{
111 unsigned int left, right;
112
113 if (!group_info)
114 return 0;
115
116 left = 0;
117 right = group_info->ngroups;
118 while (left < right) {
119 unsigned int mid = (left+right)/2;
Alexey Dobriyan81243ea2016-10-07 17:03:12 -0700120 if (gid_gt(grp, group_info->gid[mid]))
Alexey Dobriyan30639b6a2009-06-16 15:33:40 -0700121 left = mid + 1;
Alexey Dobriyan81243ea2016-10-07 17:03:12 -0700122 else if (gid_lt(grp, group_info->gid[mid]))
Alexey Dobriyan30639b6a2009-06-16 15:33:40 -0700123 right = mid;
124 else
125 return 1;
126 }
127 return 0;
128}
129
130/**
131 * set_groups - Change a group subscription in a set of credentials
132 * @new: The newly prepared set of credentials to alter
133 * @group_info: The group list to install
Alexey Dobriyan30639b6a2009-06-16 15:33:40 -0700134 */
Wang YanQing8f6c5ff2014-04-03 14:48:26 -0700135void set_groups(struct cred *new, struct group_info *group_info)
Alexey Dobriyan30639b6a2009-06-16 15:33:40 -0700136{
Alexey Dobriyan30639b6a2009-06-16 15:33:40 -0700137 put_group_info(new->group_info);
Alexey Dobriyan30639b6a2009-06-16 15:33:40 -0700138 get_group_info(group_info);
139 new->group_info = group_info;
Alexey Dobriyan30639b6a2009-06-16 15:33:40 -0700140}
141
142EXPORT_SYMBOL(set_groups);
143
144/**
145 * set_current_groups - Change current's group subscription
146 * @group_info: The group list to impose
147 *
148 * Validate a group subscription and, if valid, impose it upon current's task
149 * security record.
150 */
151int set_current_groups(struct group_info *group_info)
152{
153 struct cred *new;
Alexey Dobriyan30639b6a2009-06-16 15:33:40 -0700154
155 new = prepare_creds();
156 if (!new)
157 return -ENOMEM;
158
Wang YanQing8f6c5ff2014-04-03 14:48:26 -0700159 set_groups(new, group_info);
Alexey Dobriyan30639b6a2009-06-16 15:33:40 -0700160 return commit_creds(new);
161}
162
163EXPORT_SYMBOL(set_current_groups);
164
165SYSCALL_DEFINE2(getgroups, int, gidsetsize, gid_t __user *, grouplist)
166{
167 const struct cred *cred = current_cred();
168 int i;
169
170 if (gidsetsize < 0)
171 return -EINVAL;
172
173 /* no need to grab task_lock here; it cannot change */
174 i = cred->group_info->ngroups;
175 if (gidsetsize) {
176 if (i > gidsetsize) {
177 i = -EINVAL;
178 goto out;
179 }
180 if (groups_to_user(grouplist, cred->group_info)) {
181 i = -EFAULT;
182 goto out;
183 }
184 }
185out:
186 return i;
187}
188
Eric W. Biederman7ff4d902014-12-05 17:19:27 -0600189bool may_setgroups(void)
190{
191 struct user_namespace *user_ns = current_user_ns();
192
Eric W. Biederman273d2c62014-12-05 18:01:11 -0600193 return ns_capable(user_ns, CAP_SETGID) &&
194 userns_may_setgroups(user_ns);
Eric W. Biederman7ff4d902014-12-05 17:19:27 -0600195}
196
Alexey Dobriyan30639b6a2009-06-16 15:33:40 -0700197/*
198 * SMP: Our groups are copy-on-write. We can set them safely
199 * without another task interfering.
200 */
201
202SYSCALL_DEFINE2(setgroups, int, gidsetsize, gid_t __user *, grouplist)
203{
204 struct group_info *group_info;
205 int retval;
206
Eric W. Biederman7ff4d902014-12-05 17:19:27 -0600207 if (!may_setgroups())
Alexey Dobriyan30639b6a2009-06-16 15:33:40 -0700208 return -EPERM;
209 if ((unsigned)gidsetsize > NGROUPS_MAX)
210 return -EINVAL;
211
212 group_info = groups_alloc(gidsetsize);
213 if (!group_info)
214 return -ENOMEM;
215 retval = groups_from_user(group_info, grouplist);
216 if (retval) {
217 put_group_info(group_info);
218 return retval;
219 }
220
Thiago Rafael Becker79258d92017-12-14 15:33:12 -0800221 groups_sort(group_info);
Alexey Dobriyan30639b6a2009-06-16 15:33:40 -0700222 retval = set_current_groups(group_info);
223 put_group_info(group_info);
224
225 return retval;
226}
227
228/*
229 * Check whether we're fsgid/egid or in the supplemental group..
230 */
Eric W. Biederman72cda3d2012-02-09 09:09:39 -0800231int in_group_p(kgid_t grp)
Alexey Dobriyan30639b6a2009-06-16 15:33:40 -0700232{
233 const struct cred *cred = current_cred();
234 int retval = 1;
235
Eric W. Biederman72cda3d2012-02-09 09:09:39 -0800236 if (!gid_eq(grp, cred->fsgid))
237 retval = groups_search(cred->group_info, grp);
Alexey Dobriyan30639b6a2009-06-16 15:33:40 -0700238 return retval;
239}
240
241EXPORT_SYMBOL(in_group_p);
242
Eric W. Biederman72cda3d2012-02-09 09:09:39 -0800243int in_egroup_p(kgid_t grp)
Alexey Dobriyan30639b6a2009-06-16 15:33:40 -0700244{
245 const struct cred *cred = current_cred();
246 int retval = 1;
247
Eric W. Biederman72cda3d2012-02-09 09:09:39 -0800248 if (!gid_eq(grp, cred->egid))
249 retval = groups_search(cred->group_info, grp);
Alexey Dobriyan30639b6a2009-06-16 15:33:40 -0700250 return retval;
251}
252
253EXPORT_SYMBOL(in_egroup_p);