1
2
3
4
5
6
7
8
9
10
11#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
12
13#include <linux/audit.h>
14#include <linux/capability.h>
15#include <linux/mm.h>
16#include <linux/export.h>
17#include <linux/security.h>
18#include <linux/syscalls.h>
19#include <linux/pid_namespace.h>
20#include <linux/user_namespace.h>
21#include <linux/uaccess.h>
22
23
24
25
26
27const kernel_cap_t __cap_empty_set = CAP_EMPTY_SET;
28EXPORT_SYMBOL(__cap_empty_set);
29
30int file_caps_enabled = 1;
31
32static int __init file_caps_disable(char *str)
33{
34 file_caps_enabled = 0;
35 return 1;
36}
37__setup("no_file_caps", file_caps_disable);
38
39#ifdef CONFIG_MULTIUSER
40
41
42
43
44
45
46static void warn_legacy_capability_use(void)
47{
48 char name[sizeof(current->comm)];
49
50 pr_info_once("warning: `%s' uses 32-bit capabilities (legacy support in use)\n",
51 get_task_comm(name, current));
52}
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70static void warn_deprecated_v2(void)
71{
72 char name[sizeof(current->comm)];
73
74 pr_info_once("warning: `%s' uses deprecated v2 capabilities in a way that may be insecure\n",
75 get_task_comm(name, current));
76}
77
78
79
80
81
82static int cap_validate_magic(cap_user_header_t header, unsigned *tocopy)
83{
84 __u32 version;
85
86 if (get_user(version, &header->version))
87 return -EFAULT;
88
89 switch (version) {
90 case _LINUX_CAPABILITY_VERSION_1:
91 warn_legacy_capability_use();
92 *tocopy = _LINUX_CAPABILITY_U32S_1;
93 break;
94 case _LINUX_CAPABILITY_VERSION_2:
95 warn_deprecated_v2();
96
97
98
99 case _LINUX_CAPABILITY_VERSION_3:
100 *tocopy = _LINUX_CAPABILITY_U32S_3;
101 break;
102 default:
103 if (put_user((u32)_KERNEL_CAPABILITY_VERSION, &header->version))
104 return -EFAULT;
105 return -EINVAL;
106 }
107
108 return 0;
109}
110
111
112
113
114
115
116
117
118static inline int cap_get_target_pid(pid_t pid, kernel_cap_t *pEp,
119 kernel_cap_t *pIp, kernel_cap_t *pPp)
120{
121 int ret;
122
123 if (pid && (pid != task_pid_vnr(current))) {
124 struct task_struct *target;
125
126 rcu_read_lock();
127
128 target = find_task_by_vpid(pid);
129 if (!target)
130 ret = -ESRCH;
131 else
132 ret = security_capget(target, pEp, pIp, pPp);
133
134 rcu_read_unlock();
135 } else
136 ret = security_capget(current, pEp, pIp, pPp);
137
138 return ret;
139}
140
141
142
143
144
145
146
147
148
149
150SYSCALL_DEFINE2(capget, cap_user_header_t, header, cap_user_data_t, dataptr)
151{
152 int ret = 0;
153 pid_t pid;
154 unsigned tocopy;
155 kernel_cap_t pE, pI, pP;
156
157 ret = cap_validate_magic(header, &tocopy);
158 if ((dataptr == NULL) || (ret != 0))
159 return ((dataptr == NULL) && (ret == -EINVAL)) ? 0 : ret;
160
161 if (get_user(pid, &header->pid))
162 return -EFAULT;
163
164 if (pid < 0)
165 return -EINVAL;
166
167 ret = cap_get_target_pid(pid, &pE, &pI, &pP);
168 if (!ret) {
169 struct __user_cap_data_struct kdata[_KERNEL_CAPABILITY_U32S];
170 unsigned i;
171
172 for (i = 0; i < tocopy; i++) {
173 kdata[i].effective = pE.cap[i];
174 kdata[i].permitted = pP.cap[i];
175 kdata[i].inheritable = pI.cap[i];
176 }
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197 if (copy_to_user(dataptr, kdata, tocopy
198 * sizeof(struct __user_cap_data_struct))) {
199 return -EFAULT;
200 }
201 }
202
203 return ret;
204}
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224SYSCALL_DEFINE2(capset, cap_user_header_t, header, const cap_user_data_t, data)
225{
226 struct __user_cap_data_struct kdata[_KERNEL_CAPABILITY_U32S];
227 unsigned i, tocopy, copybytes;
228 kernel_cap_t inheritable, permitted, effective;
229 struct cred *new;
230 int ret;
231 pid_t pid;
232
233 ret = cap_validate_magic(header, &tocopy);
234 if (ret != 0)
235 return ret;
236
237 if (get_user(pid, &header->pid))
238 return -EFAULT;
239
240
241 if (pid != 0 && pid != task_pid_vnr(current))
242 return -EPERM;
243
244 copybytes = tocopy * sizeof(struct __user_cap_data_struct);
245 if (copybytes > sizeof(kdata))
246 return -EFAULT;
247
248 if (copy_from_user(&kdata, data, copybytes))
249 return -EFAULT;
250
251 for (i = 0; i < tocopy; i++) {
252 effective.cap[i] = kdata[i].effective;
253 permitted.cap[i] = kdata[i].permitted;
254 inheritable.cap[i] = kdata[i].inheritable;
255 }
256 while (i < _KERNEL_CAPABILITY_U32S) {
257 effective.cap[i] = 0;
258 permitted.cap[i] = 0;
259 inheritable.cap[i] = 0;
260 i++;
261 }
262
263 effective.cap[CAP_LAST_U32] &= CAP_LAST_U32_VALID_MASK;
264 permitted.cap[CAP_LAST_U32] &= CAP_LAST_U32_VALID_MASK;
265 inheritable.cap[CAP_LAST_U32] &= CAP_LAST_U32_VALID_MASK;
266
267 new = prepare_creds();
268 if (!new)
269 return -ENOMEM;
270
271 ret = security_capset(new, current_cred(),
272 &effective, &inheritable, &permitted);
273 if (ret < 0)
274 goto error;
275
276 audit_log_capset(new, current_cred());
277
278 return commit_creds(new);
279
280error:
281 abort_creds(new);
282 return ret;
283}
284
285
286
287
288
289
290
291
292
293
294
295
296bool has_ns_capability(struct task_struct *t,
297 struct user_namespace *ns, int cap)
298{
299 int ret;
300
301 rcu_read_lock();
302 ret = security_capable(__task_cred(t), ns, cap);
303 rcu_read_unlock();
304
305 return (ret == 0);
306}
307
308
309
310
311
312
313
314
315
316
317
318bool has_capability(struct task_struct *t, int cap)
319{
320 return has_ns_capability(t, &init_user_ns, cap);
321}
322EXPORT_SYMBOL(has_capability);
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337bool has_ns_capability_noaudit(struct task_struct *t,
338 struct user_namespace *ns, int cap)
339{
340 int ret;
341
342 rcu_read_lock();
343 ret = security_capable_noaudit(__task_cred(t), ns, cap);
344 rcu_read_unlock();
345
346 return (ret == 0);
347}
348
349
350
351
352
353
354
355
356
357
358
359
360
361bool has_capability_noaudit(struct task_struct *t, int cap)
362{
363 return has_ns_capability_noaudit(t, &init_user_ns, cap);
364}
365
366static bool ns_capable_common(struct user_namespace *ns, int cap, bool audit)
367{
368 int capable;
369
370 if (unlikely(!cap_valid(cap))) {
371 pr_crit("capable() called with invalid cap=%u\n", cap);
372 BUG();
373 }
374
375 capable = audit ? security_capable(current_cred(), ns, cap) :
376 security_capable_noaudit(current_cred(), ns, cap);
377 if (capable == 0) {
378 current->flags |= PF_SUPERPRIV;
379 return true;
380 }
381 return false;
382}
383
384
385
386
387
388
389
390
391
392
393
394
395bool ns_capable(struct user_namespace *ns, int cap)
396{
397 return ns_capable_common(ns, cap, true);
398}
399EXPORT_SYMBOL(ns_capable);
400
401
402
403
404
405
406
407
408
409
410
411
412
413bool ns_capable_noaudit(struct user_namespace *ns, int cap)
414{
415 return ns_capable_common(ns, cap, false);
416}
417EXPORT_SYMBOL(ns_capable_noaudit);
418
419
420
421
422
423
424
425
426
427
428
429bool capable(int cap)
430{
431 return ns_capable(&init_user_ns, cap);
432}
433EXPORT_SYMBOL(capable);
434#endif
435
436
437
438
439
440
441
442
443
444
445
446
447
448bool file_ns_capable(const struct file *file, struct user_namespace *ns,
449 int cap)
450{
451 if (WARN_ON_ONCE(!cap_valid(cap)))
452 return false;
453
454 if (security_capable(file->f_cred, ns, cap) == 0)
455 return true;
456
457 return false;
458}
459EXPORT_SYMBOL(file_ns_capable);
460
461
462
463
464
465
466
467
468bool privileged_wrt_inode_uidgid(struct user_namespace *ns, const struct inode *inode)
469{
470 return kuid_has_mapping(ns, inode->i_uid) &&
471 kgid_has_mapping(ns, inode->i_gid);
472}
473
474
475
476
477
478
479
480
481
482
483bool capable_wrt_inode_uidgid(const struct inode *inode, int cap)
484{
485 struct user_namespace *ns = current_user_ns();
486
487 return ns_capable(ns, cap) && privileged_wrt_inode_uidgid(ns, inode);
488}
489EXPORT_SYMBOL(capable_wrt_inode_uidgid);
490
491
492
493
494
495
496
497
498
499bool ptracer_capable(struct task_struct *tsk, struct user_namespace *ns)
500{
501 int ret = 0;
502 const struct cred *cred;
503 rcu_read_lock();
504 cred = rcu_dereference(tsk->ptracer_cred);
505 if (cred)
506 ret = security_capable_noaudit(cred, ns, CAP_SYS_PTRACE);
507 rcu_read_unlock();
508 return (ret == 0);
509}
510