Blame view

kernel/groups.c 5.18 KB
30639b6af   Alexey Dobriyan   groups: move code...
1
2
3
4
  /*
   * Supplementary group IDs
   */
  #include <linux/cred.h>
9984de1a5   Paul Gortmaker   kernel: Map most ...
5
  #include <linux/export.h>
30639b6af   Alexey Dobriyan   groups: move code...
6
7
8
  #include <linux/slab.h>
  #include <linux/security.h>
  #include <linux/syscalls.h>
273d2c67c   Eric W. Biederman   userns: Don't all...
9
  #include <linux/user_namespace.h>
81243eacf   Alexey Dobriyan   cred: simpler, 1D...
10
  #include <linux/vmalloc.h>
30639b6af   Alexey Dobriyan   groups: move code...
11
  #include <asm/uaccess.h>
30639b6af   Alexey Dobriyan   groups: move code...
12
13
  struct group_info *groups_alloc(int gidsetsize)
  {
81243eacf   Alexey Dobriyan   cred: simpler, 1D...
14
15
16
17
18
19
20
21
  	struct group_info *gi;
  	unsigned int len;
  
  	len = sizeof(struct group_info) + sizeof(kgid_t) * gidsetsize;
  	gi = kmalloc(len, GFP_KERNEL_ACCOUNT|__GFP_NOWARN|__GFP_NORETRY);
  	if (!gi)
  		gi = __vmalloc(len, GFP_KERNEL_ACCOUNT|__GFP_HIGHMEM, PAGE_KERNEL);
  	if (!gi)
30639b6af   Alexey Dobriyan   groups: move code...
22
  		return NULL;
30639b6af   Alexey Dobriyan   groups: move code...
23

81243eacf   Alexey Dobriyan   cred: simpler, 1D...
24
25
26
  	atomic_set(&gi->usage, 1);
  	gi->ngroups = gidsetsize;
  	return gi;
30639b6af   Alexey Dobriyan   groups: move code...
27
28
29
30
31
32
  }
  
  EXPORT_SYMBOL(groups_alloc);
  
  void groups_free(struct group_info *group_info)
  {
81243eacf   Alexey Dobriyan   cred: simpler, 1D...
33
  	kvfree(group_info);
30639b6af   Alexey Dobriyan   groups: move code...
34
35
36
37
38
39
40
41
  }
  
  EXPORT_SYMBOL(groups_free);
  
  /* export the group_info to a user-space array */
  static int groups_to_user(gid_t __user *grouplist,
  			  const struct group_info *group_info)
  {
ae2975bc3   Eric W. Biederman   userns: Convert g...
42
  	struct user_namespace *user_ns = current_user_ns();
30639b6af   Alexey Dobriyan   groups: move code...
43
44
  	int i;
  	unsigned int count = group_info->ngroups;
ae2975bc3   Eric W. Biederman   userns: Convert g...
45
46
  	for (i = 0; i < count; i++) {
  		gid_t gid;
81243eacf   Alexey Dobriyan   cred: simpler, 1D...
47
  		gid = from_kgid_munged(user_ns, group_info->gid[i]);
ae2975bc3   Eric W. Biederman   userns: Convert g...
48
  		if (put_user(gid, grouplist+i))
30639b6af   Alexey Dobriyan   groups: move code...
49
  			return -EFAULT;
30639b6af   Alexey Dobriyan   groups: move code...
50
51
52
53
54
55
56
57
  	}
  	return 0;
  }
  
  /* fill a group_info from a user-space array - it must be allocated already */
  static int groups_from_user(struct group_info *group_info,
      gid_t __user *grouplist)
  {
ae2975bc3   Eric W. Biederman   userns: Convert g...
58
  	struct user_namespace *user_ns = current_user_ns();
30639b6af   Alexey Dobriyan   groups: move code...
59
60
  	int i;
  	unsigned int count = group_info->ngroups;
ae2975bc3   Eric W. Biederman   userns: Convert g...
61
62
63
64
  	for (i = 0; i < count; i++) {
  		gid_t gid;
  		kgid_t kgid;
  		if (get_user(gid, grouplist+i))
30639b6af   Alexey Dobriyan   groups: move code...
65
  			return -EFAULT;
ae2975bc3   Eric W. Biederman   userns: Convert g...
66
67
68
  		kgid = make_kgid(user_ns, gid);
  		if (!gid_valid(kgid))
  			return -EINVAL;
81243eacf   Alexey Dobriyan   cred: simpler, 1D...
69
  		group_info->gid[i] = kgid;
30639b6af   Alexey Dobriyan   groups: move code...
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
  	}
  	return 0;
  }
  
  /* a simple Shell sort */
  static void groups_sort(struct group_info *group_info)
  {
  	int base, max, stride;
  	int gidsetsize = group_info->ngroups;
  
  	for (stride = 1; stride < gidsetsize; stride = 3 * stride + 1)
  		; /* nothing */
  	stride /= 3;
  
  	while (stride) {
  		max = gidsetsize - stride;
  		for (base = 0; base < max; base++) {
  			int left = base;
  			int right = left + stride;
81243eacf   Alexey Dobriyan   cred: simpler, 1D...
89
  			kgid_t tmp = group_info->gid[right];
30639b6af   Alexey Dobriyan   groups: move code...
90

81243eacf   Alexey Dobriyan   cred: simpler, 1D...
91
92
  			while (left >= 0 && gid_gt(group_info->gid[left], tmp)) {
  				group_info->gid[right] = group_info->gid[left];
30639b6af   Alexey Dobriyan   groups: move code...
93
94
95
  				right = left;
  				left -= stride;
  			}
81243eacf   Alexey Dobriyan   cred: simpler, 1D...
96
  			group_info->gid[right] = tmp;
30639b6af   Alexey Dobriyan   groups: move code...
97
98
99
100
101
102
  		}
  		stride /= 3;
  	}
  }
  
  /* a simple bsearch */
ae2975bc3   Eric W. Biederman   userns: Convert g...
103
  int groups_search(const struct group_info *group_info, kgid_t grp)
30639b6af   Alexey Dobriyan   groups: move code...
104
105
106
107
108
109
110
111
112
113
  {
  	unsigned int left, right;
  
  	if (!group_info)
  		return 0;
  
  	left = 0;
  	right = group_info->ngroups;
  	while (left < right) {
  		unsigned int mid = (left+right)/2;
81243eacf   Alexey Dobriyan   cred: simpler, 1D...
114
  		if (gid_gt(grp, group_info->gid[mid]))
30639b6af   Alexey Dobriyan   groups: move code...
115
  			left = mid + 1;
81243eacf   Alexey Dobriyan   cred: simpler, 1D...
116
  		else if (gid_lt(grp, group_info->gid[mid]))
30639b6af   Alexey Dobriyan   groups: move code...
117
118
119
120
121
122
123
124
125
126
127
  			right = mid;
  		else
  			return 1;
  	}
  	return 0;
  }
  
  /**
   * set_groups - Change a group subscription in a set of credentials
   * @new: The newly prepared set of credentials to alter
   * @group_info: The group list to install
30639b6af   Alexey Dobriyan   groups: move code...
128
   */
8f6c5ffc8   Wang YanQing   kernel/groups.c: ...
129
  void set_groups(struct cred *new, struct group_info *group_info)
30639b6af   Alexey Dobriyan   groups: move code...
130
  {
30639b6af   Alexey Dobriyan   groups: move code...
131
132
133
134
  	put_group_info(new->group_info);
  	groups_sort(group_info);
  	get_group_info(group_info);
  	new->group_info = group_info;
30639b6af   Alexey Dobriyan   groups: move code...
135
136
137
138
139
140
141
142
143
144
145
146
147
148
  }
  
  EXPORT_SYMBOL(set_groups);
  
  /**
   * set_current_groups - Change current's group subscription
   * @group_info: The group list to impose
   *
   * Validate a group subscription and, if valid, impose it upon current's task
   * security record.
   */
  int set_current_groups(struct group_info *group_info)
  {
  	struct cred *new;
30639b6af   Alexey Dobriyan   groups: move code...
149
150
151
152
  
  	new = prepare_creds();
  	if (!new)
  		return -ENOMEM;
8f6c5ffc8   Wang YanQing   kernel/groups.c: ...
153
  	set_groups(new, group_info);
30639b6af   Alexey Dobriyan   groups: move code...
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
  	return commit_creds(new);
  }
  
  EXPORT_SYMBOL(set_current_groups);
  
  SYSCALL_DEFINE2(getgroups, int, gidsetsize, gid_t __user *, grouplist)
  {
  	const struct cred *cred = current_cred();
  	int i;
  
  	if (gidsetsize < 0)
  		return -EINVAL;
  
  	/* no need to grab task_lock here; it cannot change */
  	i = cred->group_info->ngroups;
  	if (gidsetsize) {
  		if (i > gidsetsize) {
  			i = -EINVAL;
  			goto out;
  		}
  		if (groups_to_user(grouplist, cred->group_info)) {
  			i = -EFAULT;
  			goto out;
  		}
  	}
  out:
  	return i;
  }
7ff4d90b4   Eric W. Biederman   groups: Consolida...
182
183
184
  bool may_setgroups(void)
  {
  	struct user_namespace *user_ns = current_user_ns();
273d2c67c   Eric W. Biederman   userns: Don't all...
185
186
  	return ns_capable(user_ns, CAP_SETGID) &&
  		userns_may_setgroups(user_ns);
7ff4d90b4   Eric W. Biederman   groups: Consolida...
187
  }
30639b6af   Alexey Dobriyan   groups: move code...
188
189
190
191
192
193
194
195
196
  /*
   *	SMP: Our groups are copy-on-write. We can set them safely
   *	without another task interfering.
   */
  
  SYSCALL_DEFINE2(setgroups, int, gidsetsize, gid_t __user *, grouplist)
  {
  	struct group_info *group_info;
  	int retval;
7ff4d90b4   Eric W. Biederman   groups: Consolida...
197
  	if (!may_setgroups())
30639b6af   Alexey Dobriyan   groups: move code...
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
  		return -EPERM;
  	if ((unsigned)gidsetsize > NGROUPS_MAX)
  		return -EINVAL;
  
  	group_info = groups_alloc(gidsetsize);
  	if (!group_info)
  		return -ENOMEM;
  	retval = groups_from_user(group_info, grouplist);
  	if (retval) {
  		put_group_info(group_info);
  		return retval;
  	}
  
  	retval = set_current_groups(group_info);
  	put_group_info(group_info);
  
  	return retval;
  }
  
  /*
   * Check whether we're fsgid/egid or in the supplemental group..
   */
72cda3d1e   Eric W. Biederman   userns: Convert i...
220
  int in_group_p(kgid_t grp)
30639b6af   Alexey Dobriyan   groups: move code...
221
222
223
  {
  	const struct cred *cred = current_cred();
  	int retval = 1;
72cda3d1e   Eric W. Biederman   userns: Convert i...
224
225
  	if (!gid_eq(grp, cred->fsgid))
  		retval = groups_search(cred->group_info, grp);
30639b6af   Alexey Dobriyan   groups: move code...
226
227
228
229
  	return retval;
  }
  
  EXPORT_SYMBOL(in_group_p);
72cda3d1e   Eric W. Biederman   userns: Convert i...
230
  int in_egroup_p(kgid_t grp)
30639b6af   Alexey Dobriyan   groups: move code...
231
232
233
  {
  	const struct cred *cred = current_cred();
  	int retval = 1;
72cda3d1e   Eric W. Biederman   userns: Convert i...
234
235
  	if (!gid_eq(grp, cred->egid))
  		retval = groups_search(cred->group_info, grp);
30639b6af   Alexey Dobriyan   groups: move code...
236
237
238
239
  	return retval;
  }
  
  EXPORT_SYMBOL(in_egroup_p);