blob: e357bc800111043ed8d477d758bd245b8aa4c566 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Alexey Dobriyan30639b6a2009-06-16 15:33:40 -07002/*
3 * Supplementary group IDs
4 */
5#include <linux/cred.h>
Paul Gortmaker9984de12011-05-23 14:51:41 -04006#include <linux/export.h>
Alexey Dobriyan30639b6a2009-06-16 15:33:40 -07007#include <linux/slab.h>
8#include <linux/security.h>
Rasmus Villemoesb7b25622017-07-10 15:51:17 -07009#include <linux/sort.h>
Alexey Dobriyan30639b6a2009-06-16 15:33:40 -070010#include <linux/syscalls.h>
Eric W. Biederman273d2c62014-12-05 18:01:11 -060011#include <linux/user_namespace.h>
Alexey Dobriyan81243ea2016-10-07 17:03:12 -070012#include <linux/vmalloc.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080013#include <linux/uaccess.h>
Alexey Dobriyan30639b6a2009-06-16 15:33:40 -070014
Alexey Dobriyan30639b6a2009-06-16 15:33:40 -070015struct group_info *groups_alloc(int gidsetsize)
16{
Alexey Dobriyan81243ea2016-10-07 17:03:12 -070017 struct group_info *gi;
18 unsigned int len;
Alexey Dobriyan30639b6a2009-06-16 15:33:40 -070019
Alexey Dobriyan81243ea2016-10-07 17:03:12 -070020 len = sizeof(struct group_info) + sizeof(kgid_t) * gidsetsize;
21 gi = kmalloc(len, GFP_KERNEL_ACCOUNT|__GFP_NOWARN|__GFP_NORETRY);
22 if (!gi)
Michal Hocko19809c22017-05-08 15:57:44 -070023 gi = __vmalloc(len, GFP_KERNEL_ACCOUNT, PAGE_KERNEL);
Alexey Dobriyan81243ea2016-10-07 17:03:12 -070024 if (!gi)
Alexey Dobriyan30639b6a2009-06-16 15:33:40 -070025 return NULL;
Alexey Dobriyan30639b6a2009-06-16 15:33:40 -070026
Alexey Dobriyan81243ea2016-10-07 17:03:12 -070027 atomic_set(&gi->usage, 1);
28 gi->ngroups = gidsetsize;
29 return gi;
Alexey Dobriyan30639b6a2009-06-16 15:33:40 -070030}
31
32EXPORT_SYMBOL(groups_alloc);
33
34void groups_free(struct group_info *group_info)
35{
Alexey Dobriyan81243ea2016-10-07 17:03:12 -070036 kvfree(group_info);
Alexey Dobriyan30639b6a2009-06-16 15:33:40 -070037}
38
39EXPORT_SYMBOL(groups_free);
40
41/* export the group_info to a user-space array */
42static int groups_to_user(gid_t __user *grouplist,
43 const struct group_info *group_info)
44{
Eric W. Biedermanae2975b2011-11-14 15:56:38 -080045 struct user_namespace *user_ns = current_user_ns();
Alexey Dobriyan30639b6a2009-06-16 15:33:40 -070046 int i;
47 unsigned int count = group_info->ngroups;
48
Eric W. Biedermanae2975b2011-11-14 15:56:38 -080049 for (i = 0; i < count; i++) {
50 gid_t gid;
Alexey Dobriyan81243ea2016-10-07 17:03:12 -070051 gid = from_kgid_munged(user_ns, group_info->gid[i]);
Eric W. Biedermanae2975b2011-11-14 15:56:38 -080052 if (put_user(gid, grouplist+i))
Alexey Dobriyan30639b6a2009-06-16 15:33:40 -070053 return -EFAULT;
Alexey Dobriyan30639b6a2009-06-16 15:33:40 -070054 }
55 return 0;
56}
57
58/* fill a group_info from a user-space array - it must be allocated already */
59static int groups_from_user(struct group_info *group_info,
60 gid_t __user *grouplist)
61{
Eric W. Biedermanae2975b2011-11-14 15:56:38 -080062 struct user_namespace *user_ns = current_user_ns();
Alexey Dobriyan30639b6a2009-06-16 15:33:40 -070063 int i;
64 unsigned int count = group_info->ngroups;
65
Eric W. Biedermanae2975b2011-11-14 15:56:38 -080066 for (i = 0; i < count; i++) {
67 gid_t gid;
68 kgid_t kgid;
69 if (get_user(gid, grouplist+i))
Alexey Dobriyan30639b6a2009-06-16 15:33:40 -070070 return -EFAULT;
71
Eric W. Biedermanae2975b2011-11-14 15:56:38 -080072 kgid = make_kgid(user_ns, gid);
73 if (!gid_valid(kgid))
74 return -EINVAL;
75
Alexey Dobriyan81243ea2016-10-07 17:03:12 -070076 group_info->gid[i] = kgid;
Alexey Dobriyan30639b6a2009-06-16 15:33:40 -070077 }
78 return 0;
79}
80
Rasmus Villemoesb7b25622017-07-10 15:51:17 -070081static int gid_cmp(const void *_a, const void *_b)
82{
83 kgid_t a = *(kgid_t *)_a;
84 kgid_t b = *(kgid_t *)_b;
85
86 return gid_gt(a, b) - gid_lt(a, b);
87}
88
Alexey Dobriyan30639b6a2009-06-16 15:33:40 -070089static void groups_sort(struct group_info *group_info)
90{
Rasmus Villemoesb7b25622017-07-10 15:51:17 -070091 sort(group_info->gid, group_info->ngroups, sizeof(*group_info->gid),
92 gid_cmp, NULL);
Alexey Dobriyan30639b6a2009-06-16 15:33:40 -070093}
94
95/* a simple bsearch */
Eric W. Biedermanae2975b2011-11-14 15:56:38 -080096int groups_search(const struct group_info *group_info, kgid_t grp)
Alexey Dobriyan30639b6a2009-06-16 15:33:40 -070097{
98 unsigned int left, right;
99
100 if (!group_info)
101 return 0;
102
103 left = 0;
104 right = group_info->ngroups;
105 while (left < right) {
106 unsigned int mid = (left+right)/2;
Alexey Dobriyan81243ea2016-10-07 17:03:12 -0700107 if (gid_gt(grp, group_info->gid[mid]))
Alexey Dobriyan30639b6a2009-06-16 15:33:40 -0700108 left = mid + 1;
Alexey Dobriyan81243ea2016-10-07 17:03:12 -0700109 else if (gid_lt(grp, group_info->gid[mid]))
Alexey Dobriyan30639b6a2009-06-16 15:33:40 -0700110 right = mid;
111 else
112 return 1;
113 }
114 return 0;
115}
116
117/**
118 * set_groups - Change a group subscription in a set of credentials
119 * @new: The newly prepared set of credentials to alter
120 * @group_info: The group list to install
Alexey Dobriyan30639b6a2009-06-16 15:33:40 -0700121 */
Wang YanQing8f6c5ff2014-04-03 14:48:26 -0700122void set_groups(struct cred *new, struct group_info *group_info)
Alexey Dobriyan30639b6a2009-06-16 15:33:40 -0700123{
Alexey Dobriyan30639b6a2009-06-16 15:33:40 -0700124 put_group_info(new->group_info);
125 groups_sort(group_info);
126 get_group_info(group_info);
127 new->group_info = group_info;
Alexey Dobriyan30639b6a2009-06-16 15:33:40 -0700128}
129
130EXPORT_SYMBOL(set_groups);
131
132/**
133 * set_current_groups - Change current's group subscription
134 * @group_info: The group list to impose
135 *
136 * Validate a group subscription and, if valid, impose it upon current's task
137 * security record.
138 */
139int set_current_groups(struct group_info *group_info)
140{
141 struct cred *new;
Alexey Dobriyan30639b6a2009-06-16 15:33:40 -0700142
143 new = prepare_creds();
144 if (!new)
145 return -ENOMEM;
146
Wang YanQing8f6c5ff2014-04-03 14:48:26 -0700147 set_groups(new, group_info);
Alexey Dobriyan30639b6a2009-06-16 15:33:40 -0700148 return commit_creds(new);
149}
150
151EXPORT_SYMBOL(set_current_groups);
152
153SYSCALL_DEFINE2(getgroups, int, gidsetsize, gid_t __user *, grouplist)
154{
155 const struct cred *cred = current_cred();
156 int i;
157
158 if (gidsetsize < 0)
159 return -EINVAL;
160
161 /* no need to grab task_lock here; it cannot change */
162 i = cred->group_info->ngroups;
163 if (gidsetsize) {
164 if (i > gidsetsize) {
165 i = -EINVAL;
166 goto out;
167 }
168 if (groups_to_user(grouplist, cred->group_info)) {
169 i = -EFAULT;
170 goto out;
171 }
172 }
173out:
174 return i;
175}
176
Eric W. Biederman7ff4d902014-12-05 17:19:27 -0600177bool may_setgroups(void)
178{
179 struct user_namespace *user_ns = current_user_ns();
180
Eric W. Biederman273d2c62014-12-05 18:01:11 -0600181 return ns_capable(user_ns, CAP_SETGID) &&
182 userns_may_setgroups(user_ns);
Eric W. Biederman7ff4d902014-12-05 17:19:27 -0600183}
184
Alexey Dobriyan30639b6a2009-06-16 15:33:40 -0700185/*
186 * SMP: Our groups are copy-on-write. We can set them safely
187 * without another task interfering.
188 */
189
190SYSCALL_DEFINE2(setgroups, int, gidsetsize, gid_t __user *, grouplist)
191{
192 struct group_info *group_info;
193 int retval;
194
Eric W. Biederman7ff4d902014-12-05 17:19:27 -0600195 if (!may_setgroups())
Alexey Dobriyan30639b6a2009-06-16 15:33:40 -0700196 return -EPERM;
197 if ((unsigned)gidsetsize > NGROUPS_MAX)
198 return -EINVAL;
199
200 group_info = groups_alloc(gidsetsize);
201 if (!group_info)
202 return -ENOMEM;
203 retval = groups_from_user(group_info, grouplist);
204 if (retval) {
205 put_group_info(group_info);
206 return retval;
207 }
208
209 retval = set_current_groups(group_info);
210 put_group_info(group_info);
211
212 return retval;
213}
214
215/*
216 * Check whether we're fsgid/egid or in the supplemental group..
217 */
Eric W. Biederman72cda3d2012-02-09 09:09:39 -0800218int in_group_p(kgid_t grp)
Alexey Dobriyan30639b6a2009-06-16 15:33:40 -0700219{
220 const struct cred *cred = current_cred();
221 int retval = 1;
222
Eric W. Biederman72cda3d2012-02-09 09:09:39 -0800223 if (!gid_eq(grp, cred->fsgid))
224 retval = groups_search(cred->group_info, grp);
Alexey Dobriyan30639b6a2009-06-16 15:33:40 -0700225 return retval;
226}
227
228EXPORT_SYMBOL(in_group_p);
229
Eric W. Biederman72cda3d2012-02-09 09:09:39 -0800230int in_egroup_p(kgid_t grp)
Alexey Dobriyan30639b6a2009-06-16 15:33:40 -0700231{
232 const struct cred *cred = current_cred();
233 int retval = 1;
234
Eric W. Biederman72cda3d2012-02-09 09:09:39 -0800235 if (!gid_eq(grp, cred->egid))
236 retval = groups_search(cred->group_info, grp);
Alexey Dobriyan30639b6a2009-06-16 15:33:40 -0700237 return retval;
238}
239
240EXPORT_SYMBOL(in_egroup_p);