blob: 8283271f07685ebf43c8da1e5248f8e080a2f4fd [file] [log] [blame]
Andrew Morgane338d262008-02-04 22:29:42 -08001/* Common capabilities, needed by capability.o and root_plug.o
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 *
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation; either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 */
9
Randy.Dunlapc59ede72006-01-11 12:17:46 -080010#include <linux/capability.h>
Eric Paris3fc689e2008-11-11 21:48:18 +110011#include <linux/audit.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/module.h>
13#include <linux/init.h>
14#include <linux/kernel.h>
15#include <linux/security.h>
16#include <linux/file.h>
17#include <linux/mm.h>
18#include <linux/mman.h>
19#include <linux/pagemap.h>
20#include <linux/swap.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/skbuff.h>
22#include <linux/netlink.h>
23#include <linux/ptrace.h>
24#include <linux/xattr.h>
25#include <linux/hugetlb.h>
Serge E. Hallynb5376772007-10-16 23:31:36 -070026#include <linux/mount.h>
Serge E. Hallynb460cbc2007-10-18 23:39:52 -070027#include <linux/sched.h>
Andrew G. Morgan3898b1b2008-04-28 02:13:40 -070028#include <linux/prctl.h>
29#include <linux/securebits.h>
Andrew Morgan72c2d582007-10-18 03:05:59 -070030
Linus Torvalds1da177e2005-04-16 15:20:36 -070031int cap_netlink_send(struct sock *sk, struct sk_buff *skb)
32{
33 NETLINK_CB(skb).eff_cap = current->cap_effective;
34 return 0;
35}
36
Darrel Goeddelc7bdb542006-06-27 13:26:11 -070037int cap_netlink_recv(struct sk_buff *skb, int cap)
Linus Torvalds1da177e2005-04-16 15:20:36 -070038{
Darrel Goeddelc7bdb542006-06-27 13:26:11 -070039 if (!cap_raised(NETLINK_CB(skb).eff_cap, cap))
Linus Torvalds1da177e2005-04-16 15:20:36 -070040 return -EPERM;
41 return 0;
42}
43
44EXPORT_SYMBOL(cap_netlink_recv);
45
Andrew G. Morgana6dbb1e2008-01-21 17:18:30 -080046/*
47 * NOTE WELL: cap_capable() cannot be used like the kernel's capable()
48 * function. That is, it has the reverse semantics: cap_capable()
49 * returns 0 when a task has a capability, but the kernel's capable()
50 * returns 1 for this case.
51 */
Eric Paris06112162008-11-11 22:02:50 +110052int cap_capable(struct task_struct *tsk, int cap, int audit)
Linus Torvalds1da177e2005-04-16 15:20:36 -070053{
54 /* Derived from include/linux/sched.h:capable. */
55 if (cap_raised(tsk->cap_effective, cap))
56 return 0;
57 return -EPERM;
58}
59
60int cap_settime(struct timespec *ts, struct timezone *tz)
61{
62 if (!capable(CAP_SYS_TIME))
63 return -EPERM;
64 return 0;
65}
66
David Howells5cd9c582008-08-14 11:37:28 +010067int cap_ptrace_may_access(struct task_struct *child, unsigned int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -070068{
69 /* Derived from arch/i386/kernel/ptrace.c:sys_ptrace. */
David Howells5cd9c582008-08-14 11:37:28 +010070 if (cap_issubset(child->cap_permitted, current->cap_permitted))
71 return 0;
72 if (capable(CAP_SYS_PTRACE))
73 return 0;
74 return -EPERM;
75}
76
77int cap_ptrace_traceme(struct task_struct *parent)
78{
79 /* Derived from arch/i386/kernel/ptrace.c:sys_ptrace. */
80 if (cap_issubset(current->cap_permitted, parent->cap_permitted))
81 return 0;
82 if (has_capability(parent, CAP_SYS_PTRACE))
83 return 0;
84 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -070085}
86
87int cap_capget (struct task_struct *target, kernel_cap_t *effective,
88 kernel_cap_t *inheritable, kernel_cap_t *permitted)
89{
90 /* Derived from kernel/capability.c:sys_capget. */
Andrew Morgane338d262008-02-04 22:29:42 -080091 *effective = target->cap_effective;
92 *inheritable = target->cap_inheritable;
93 *permitted = target->cap_permitted;
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 return 0;
95}
96
Andrew Morgan72c2d582007-10-18 03:05:59 -070097#ifdef CONFIG_SECURITY_FILE_CAPABILITIES
98
99static inline int cap_block_setpcap(struct task_struct *target)
100{
101 /*
102 * No support for remote process capability manipulation with
103 * filesystem capability support.
104 */
105 return (target != current);
106}
107
108static inline int cap_inh_is_capped(void)
109{
110 /*
Andrew G. Morgana6dbb1e2008-01-21 17:18:30 -0800111 * Return 1 if changes to the inheritable set are limited
112 * to the old permitted set. That is, if the current task
113 * does *not* possess the CAP_SETPCAP capability.
Andrew Morgan72c2d582007-10-18 03:05:59 -0700114 */
Eric Paris06112162008-11-11 22:02:50 +1100115 return (cap_capable(current, CAP_SETPCAP, SECURITY_CAP_AUDIT) != 0);
Andrew Morgan72c2d582007-10-18 03:05:59 -0700116}
117
Andrew G. Morgan12097262008-07-04 09:59:59 -0700118static inline int cap_limit_ptraced_target(void) { return 1; }
119
Andrew Morgan72c2d582007-10-18 03:05:59 -0700120#else /* ie., ndef CONFIG_SECURITY_FILE_CAPABILITIES */
121
122static inline int cap_block_setpcap(struct task_struct *t) { return 0; }
123static inline int cap_inh_is_capped(void) { return 1; }
Andrew G. Morgan12097262008-07-04 09:59:59 -0700124static inline int cap_limit_ptraced_target(void)
125{
126 return !capable(CAP_SETPCAP);
127}
Andrew Morgan72c2d582007-10-18 03:05:59 -0700128
129#endif /* def CONFIG_SECURITY_FILE_CAPABILITIES */
130
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131int cap_capset_check (struct task_struct *target, kernel_cap_t *effective,
132 kernel_cap_t *inheritable, kernel_cap_t *permitted)
133{
Andrew Morgan72c2d582007-10-18 03:05:59 -0700134 if (cap_block_setpcap(target)) {
135 return -EPERM;
136 }
137 if (cap_inh_is_capped()
138 && !cap_issubset(*inheritable,
139 cap_combine(target->cap_inheritable,
140 current->cap_permitted))) {
141 /* incapable of using this inheritable set */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 return -EPERM;
143 }
Serge E. Hallyn3b7391d2008-02-04 22:29:45 -0800144 if (!cap_issubset(*inheritable,
145 cap_combine(target->cap_inheritable,
146 current->cap_bset))) {
147 /* no new pI capabilities outside bounding set */
148 return -EPERM;
149 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
151 /* verify restrictions on target's new Permitted set */
152 if (!cap_issubset (*permitted,
153 cap_combine (target->cap_permitted,
154 current->cap_permitted))) {
155 return -EPERM;
156 }
157
158 /* verify the _new_Effective_ is a subset of the _new_Permitted_ */
159 if (!cap_issubset (*effective, *permitted)) {
160 return -EPERM;
161 }
162
163 return 0;
164}
165
166void cap_capset_set (struct task_struct *target, kernel_cap_t *effective,
167 kernel_cap_t *inheritable, kernel_cap_t *permitted)
168{
169 target->cap_effective = *effective;
170 target->cap_inheritable = *inheritable;
171 target->cap_permitted = *permitted;
172}
173
Serge E. Hallynb5376772007-10-16 23:31:36 -0700174static inline void bprm_clear_caps(struct linux_binprm *bprm)
175{
Andrew G. Morgan5459c162008-07-23 21:28:24 -0700176 cap_clear(bprm->cap_post_exec_permitted);
Serge E. Hallynb5376772007-10-16 23:31:36 -0700177 bprm->cap_effective = false;
178}
179
180#ifdef CONFIG_SECURITY_FILE_CAPABILITIES
181
182int cap_inode_need_killpriv(struct dentry *dentry)
183{
184 struct inode *inode = dentry->d_inode;
185 int error;
186
187 if (!inode->i_op || !inode->i_op->getxattr)
188 return 0;
189
190 error = inode->i_op->getxattr(dentry, XATTR_NAME_CAPS, NULL, 0);
191 if (error <= 0)
192 return 0;
193 return 1;
194}
195
196int cap_inode_killpriv(struct dentry *dentry)
197{
198 struct inode *inode = dentry->d_inode;
199
200 if (!inode->i_op || !inode->i_op->removexattr)
201 return 0;
202
203 return inode->i_op->removexattr(dentry, XATTR_NAME_CAPS);
204}
205
Eric Parisc0b00442008-11-11 21:48:10 +1100206static inline int bprm_caps_from_vfs_caps(struct cpu_vfs_cap_data *caps,
207 struct linux_binprm *bprm)
Serge E. Hallynb5376772007-10-16 23:31:36 -0700208{
Eric Parisc0b00442008-11-11 21:48:10 +1100209 unsigned i;
210 int ret = 0;
211
212 if (caps->magic_etc & VFS_CAP_FLAGS_EFFECTIVE)
213 bprm->cap_effective = true;
214 else
215 bprm->cap_effective = false;
216
217 CAP_FOR_EACH_U32(i) {
218 __u32 permitted = caps->permitted.cap[i];
219 __u32 inheritable = caps->inheritable.cap[i];
220
221 /*
222 * pP' = (X & fP) | (pI & fI)
223 */
224 bprm->cap_post_exec_permitted.cap[i] =
225 (current->cap_bset.cap[i] & permitted) |
226 (current->cap_inheritable.cap[i] & inheritable);
227
228 if (permitted & ~bprm->cap_post_exec_permitted.cap[i]) {
229 /*
230 * insufficient to execute correctly
231 */
232 ret = -EPERM;
233 }
234 }
235
236 /*
237 * For legacy apps, with no internal support for recognizing they
238 * do not have enough capabilities, we return an error if they are
239 * missing some "forced" (aka file-permitted) capabilities.
240 */
241 return bprm->cap_effective ? ret : 0;
242}
243
244int get_vfs_caps_from_disk(const struct dentry *dentry, struct cpu_vfs_cap_data *cpu_caps)
245{
246 struct inode *inode = dentry->d_inode;
Serge E. Hallynb5376772007-10-16 23:31:36 -0700247 __u32 magic_etc;
Andrew Morgane338d262008-02-04 22:29:42 -0800248 unsigned tocopy, i;
Eric Parisc0b00442008-11-11 21:48:10 +1100249 int size;
250 struct vfs_cap_data caps;
251
252 memset(cpu_caps, 0, sizeof(struct cpu_vfs_cap_data));
253
254 if (!inode || !inode->i_op || !inode->i_op->getxattr)
255 return -ENODATA;
256
257 size = inode->i_op->getxattr((struct dentry *)dentry, XATTR_NAME_CAPS, &caps,
258 XATTR_CAPS_SZ);
259 if (size == -ENODATA || size == -EOPNOTSUPP) {
260 /* no data, that's ok */
261 return -ENODATA;
262 }
263 if (size < 0)
264 return size;
Serge E. Hallynb5376772007-10-16 23:31:36 -0700265
Andrew Morgane338d262008-02-04 22:29:42 -0800266 if (size < sizeof(magic_etc))
Serge E. Hallynb5376772007-10-16 23:31:36 -0700267 return -EINVAL;
268
Eric Parisc0b00442008-11-11 21:48:10 +1100269 cpu_caps->magic_etc = magic_etc = le32_to_cpu(caps.magic_etc);
Serge E. Hallynb5376772007-10-16 23:31:36 -0700270
271 switch ((magic_etc & VFS_CAP_REVISION_MASK)) {
Andrew Morgane338d262008-02-04 22:29:42 -0800272 case VFS_CAP_REVISION_1:
273 if (size != XATTR_CAPS_SZ_1)
274 return -EINVAL;
275 tocopy = VFS_CAP_U32_1;
276 break;
277 case VFS_CAP_REVISION_2:
278 if (size != XATTR_CAPS_SZ_2)
279 return -EINVAL;
280 tocopy = VFS_CAP_U32_2;
281 break;
Serge E. Hallynb5376772007-10-16 23:31:36 -0700282 default:
283 return -EINVAL;
284 }
Andrew Morgane338d262008-02-04 22:29:42 -0800285
Andrew G. Morgan5459c162008-07-23 21:28:24 -0700286 CAP_FOR_EACH_U32(i) {
Eric Parisc0b00442008-11-11 21:48:10 +1100287 if (i >= tocopy)
288 break;
289 cpu_caps->permitted.cap[i] = le32_to_cpu(caps.data[i].permitted);
290 cpu_caps->inheritable.cap[i] = le32_to_cpu(caps.data[i].inheritable);
Andrew Morgane338d262008-02-04 22:29:42 -0800291 }
Eric Parisc0b00442008-11-11 21:48:10 +1100292 return 0;
Serge E. Hallynb5376772007-10-16 23:31:36 -0700293}
294
295/* Locate any VFS capabilities: */
296static int get_file_caps(struct linux_binprm *bprm)
297{
298 struct dentry *dentry;
299 int rc = 0;
Eric Parisc0b00442008-11-11 21:48:10 +1100300 struct cpu_vfs_cap_data vcaps;
Serge E. Hallynb5376772007-10-16 23:31:36 -0700301
Serge Hallyn3318a382008-10-30 11:52:23 -0500302 bprm_clear_caps(bprm);
303
Serge E. Hallyn1f29fae2008-11-05 16:08:52 -0600304 if (!file_caps_enabled)
305 return 0;
306
Serge Hallyn3318a382008-10-30 11:52:23 -0500307 if (bprm->file->f_vfsmnt->mnt_flags & MNT_NOSUID)
Serge E. Hallynb5376772007-10-16 23:31:36 -0700308 return 0;
Serge E. Hallynb5376772007-10-16 23:31:36 -0700309
310 dentry = dget(bprm->file->f_dentry);
Serge E. Hallynb5376772007-10-16 23:31:36 -0700311
Eric Parisc0b00442008-11-11 21:48:10 +1100312 rc = get_vfs_caps_from_disk(dentry, &vcaps);
313 if (rc < 0) {
314 if (rc == -EINVAL)
315 printk(KERN_NOTICE "%s: get_vfs_caps_from_disk returned %d for %s\n",
316 __func__, rc, bprm->filename);
317 else if (rc == -ENODATA)
318 rc = 0;
Serge E. Hallynb5376772007-10-16 23:31:36 -0700319 goto out;
320 }
Serge E. Hallynb5376772007-10-16 23:31:36 -0700321
Eric Parisc0b00442008-11-11 21:48:10 +1100322 rc = bprm_caps_from_vfs_caps(&vcaps, bprm);
Serge E. Hallynb5376772007-10-16 23:31:36 -0700323
324out:
325 dput(dentry);
326 if (rc)
327 bprm_clear_caps(bprm);
328
329 return rc;
330}
331
332#else
333int cap_inode_need_killpriv(struct dentry *dentry)
334{
335 return 0;
336}
337
338int cap_inode_killpriv(struct dentry *dentry)
339{
340 return 0;
341}
342
343static inline int get_file_caps(struct linux_binprm *bprm)
344{
345 bprm_clear_caps(bprm);
346 return 0;
347}
348#endif
349
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350int cap_bprm_set_security (struct linux_binprm *bprm)
351{
Serge E. Hallynb5376772007-10-16 23:31:36 -0700352 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353
Serge E. Hallynb5376772007-10-16 23:31:36 -0700354 ret = get_file_caps(bprm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
Andrew G. Morgan5459c162008-07-23 21:28:24 -0700356 if (!issecure(SECURE_NOROOT)) {
357 /*
358 * To support inheritance of root-permissions and suid-root
359 * executables under compatibility mode, we override the
360 * capability sets for the file.
361 *
362 * If only the real uid is 0, we do not set the effective
363 * bit.
364 */
David Howellsb103c592008-11-14 10:39:11 +1100365 if (bprm->e_uid == 0 || current_uid() == 0) {
Andrew G. Morgan5459c162008-07-23 21:28:24 -0700366 /* pP' = (cap_bset & ~0) | (pI & ~0) */
367 bprm->cap_post_exec_permitted = cap_combine(
368 current->cap_bset, current->cap_inheritable
369 );
370 bprm->cap_effective = (bprm->e_uid == 0);
371 ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 }
Serge E. Hallynb5376772007-10-16 23:31:36 -0700374
375 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376}
377
378void cap_bprm_apply_creds (struct linux_binprm *bprm, int unsafe)
379{
Eric Paris3fc689e2008-11-11 21:48:18 +1100380 kernel_cap_t pP = current->cap_permitted;
381 kernel_cap_t pE = current->cap_effective;
David Howellsb103c592008-11-14 10:39:11 +1100382 uid_t uid;
383 gid_t gid;
Eric Paris3fc689e2008-11-11 21:48:18 +1100384
David Howellsb103c592008-11-14 10:39:11 +1100385 current_uid_gid(&uid, &gid);
386
387 if (bprm->e_uid != uid || bprm->e_gid != gid ||
Andrew G. Morgan5459c162008-07-23 21:28:24 -0700388 !cap_issubset(bprm->cap_post_exec_permitted,
389 current->cap_permitted)) {
Kawai, Hidehiro6c5d5232007-07-19 01:48:27 -0700390 set_dumpable(current->mm, suid_dumpable);
Serge E. Hallynb5376772007-10-16 23:31:36 -0700391 current->pdeath_signal = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
393 if (unsafe & ~LSM_UNSAFE_PTRACE_CAP) {
394 if (!capable(CAP_SETUID)) {
David Howellsb103c592008-11-14 10:39:11 +1100395 bprm->e_uid = uid;
396 bprm->e_gid = gid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 }
Andrew G. Morgan12097262008-07-04 09:59:59 -0700398 if (cap_limit_ptraced_target()) {
Andrew G. Morgan5459c162008-07-23 21:28:24 -0700399 bprm->cap_post_exec_permitted = cap_intersect(
400 bprm->cap_post_exec_permitted,
401 current->cap_permitted);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 }
403 }
404 }
405
406 current->suid = current->euid = current->fsuid = bprm->e_uid;
407 current->sgid = current->egid = current->fsgid = bprm->e_gid;
408
409 /* For init, we want to retain the capabilities set
410 * in the init_task struct. Thus we skip the usual
411 * capability rules */
Serge E. Hallynb460cbc2007-10-18 23:39:52 -0700412 if (!is_global_init(current)) {
Andrew G. Morgan5459c162008-07-23 21:28:24 -0700413 current->cap_permitted = bprm->cap_post_exec_permitted;
Andrew Morgane338d262008-02-04 22:29:42 -0800414 if (bprm->cap_effective)
Andrew G. Morgan5459c162008-07-23 21:28:24 -0700415 current->cap_effective = bprm->cap_post_exec_permitted;
Andrew Morgane338d262008-02-04 22:29:42 -0800416 else
417 cap_clear(current->cap_effective);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 }
419
Eric Paris3fc689e2008-11-11 21:48:18 +1100420 /*
421 * Audit candidate if current->cap_effective is set
422 *
423 * We do not bother to audit if 3 things are true:
424 * 1) cap_effective has all caps
425 * 2) we are root
426 * 3) root is supposed to have all caps (SECURE_NOROOT)
427 * Since this is just a normal root execing a process.
428 *
429 * Number 1 above might fail if you don't have a full bset, but I think
430 * that is interesting information to audit.
431 */
432 if (!cap_isclear(current->cap_effective)) {
433 if (!cap_issubset(CAP_FULL_SET, current->cap_effective) ||
434 (bprm->e_uid != 0) || (current->uid != 0) ||
435 issecure(SECURE_NOROOT))
436 audit_log_bprm_fcaps(bprm, &pP, &pE);
437 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438
Andrew G. Morgan3898b1b2008-04-28 02:13:40 -0700439 current->securebits &= ~issecure_mask(SECURE_KEEP_CAPS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440}
441
442int cap_bprm_secureexec (struct linux_binprm *bprm)
443{
David Howellsb103c592008-11-14 10:39:11 +1100444 if (current_uid() != 0) {
Serge E. Hallynb5376772007-10-16 23:31:36 -0700445 if (bprm->cap_effective)
446 return 1;
Andrew G. Morgan5459c162008-07-23 21:28:24 -0700447 if (!cap_isclear(bprm->cap_post_exec_permitted))
Serge E. Hallynb5376772007-10-16 23:31:36 -0700448 return 1;
449 }
450
David Howellsb103c592008-11-14 10:39:11 +1100451 return (current_euid() != current_uid() ||
452 current_egid() != current_gid());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453}
454
David Howells8f0cfa52008-04-29 00:59:41 -0700455int cap_inode_setxattr(struct dentry *dentry, const char *name,
456 const void *value, size_t size, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457{
Serge E. Hallynb5376772007-10-16 23:31:36 -0700458 if (!strcmp(name, XATTR_NAME_CAPS)) {
459 if (!capable(CAP_SETFCAP))
460 return -EPERM;
461 return 0;
462 } else if (!strncmp(name, XATTR_SECURITY_PREFIX,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 sizeof(XATTR_SECURITY_PREFIX) - 1) &&
464 !capable(CAP_SYS_ADMIN))
465 return -EPERM;
466 return 0;
467}
468
David Howells8f0cfa52008-04-29 00:59:41 -0700469int cap_inode_removexattr(struct dentry *dentry, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470{
Serge E. Hallynb5376772007-10-16 23:31:36 -0700471 if (!strcmp(name, XATTR_NAME_CAPS)) {
472 if (!capable(CAP_SETFCAP))
473 return -EPERM;
474 return 0;
475 } else if (!strncmp(name, XATTR_SECURITY_PREFIX,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 sizeof(XATTR_SECURITY_PREFIX) - 1) &&
477 !capable(CAP_SYS_ADMIN))
478 return -EPERM;
479 return 0;
480}
481
482/* moved from kernel/sys.c. */
483/*
484 * cap_emulate_setxuid() fixes the effective / permitted capabilities of
485 * a process after a call to setuid, setreuid, or setresuid.
486 *
487 * 1) When set*uiding _from_ one of {r,e,s}uid == 0 _to_ all of
488 * {r,e,s}uid != 0, the permitted and effective capabilities are
489 * cleared.
490 *
491 * 2) When set*uiding _from_ euid == 0 _to_ euid != 0, the effective
492 * capabilities of the process are cleared.
493 *
494 * 3) When set*uiding _from_ euid != 0 _to_ euid == 0, the effective
495 * capabilities are set to the permitted capabilities.
496 *
497 * fsuid is handled elsewhere. fsuid == 0 and {r,e,s}uid!= 0 should
498 * never happen.
499 *
500 * -astor
501 *
502 * cevans - New behaviour, Oct '99
503 * A process may, via prctl(), elect to keep its capabilities when it
504 * calls setuid() and switches away from uid==0. Both permitted and
505 * effective sets will be retained.
506 * Without this change, it was impossible for a daemon to drop only some
507 * of its privilege. The call to setuid(!=0) would drop all privileges!
508 * Keeping uid 0 is not an option because uid 0 owns too many vital
509 * files..
510 * Thanks to Olaf Kirch and Peter Benie for spotting this.
511 */
512static inline void cap_emulate_setxuid (int old_ruid, int old_euid,
513 int old_suid)
514{
David Howellsb103c592008-11-14 10:39:11 +1100515 uid_t euid = current_euid();
516
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 if ((old_ruid == 0 || old_euid == 0 || old_suid == 0) &&
David Howellsb103c592008-11-14 10:39:11 +1100518 (current_uid() != 0 && euid != 0 && current_suid() != 0) &&
Andrew G. Morgan3898b1b2008-04-28 02:13:40 -0700519 !issecure(SECURE_KEEP_CAPS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 cap_clear (current->cap_permitted);
521 cap_clear (current->cap_effective);
522 }
David Howellsb103c592008-11-14 10:39:11 +1100523 if (old_euid == 0 && euid != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 cap_clear (current->cap_effective);
525 }
David Howellsb103c592008-11-14 10:39:11 +1100526 if (old_euid != 0 && euid == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 current->cap_effective = current->cap_permitted;
528 }
529}
530
531int cap_task_post_setuid (uid_t old_ruid, uid_t old_euid, uid_t old_suid,
532 int flags)
533{
534 switch (flags) {
535 case LSM_SETID_RE:
536 case LSM_SETID_ID:
537 case LSM_SETID_RES:
538 /* Copied from kernel/sys.c:setreuid/setuid/setresuid. */
539 if (!issecure (SECURE_NO_SETUID_FIXUP)) {
540 cap_emulate_setxuid (old_ruid, old_euid, old_suid);
541 }
542 break;
543 case LSM_SETID_FS:
544 {
545 uid_t old_fsuid = old_ruid;
546
547 /* Copied from kernel/sys.c:setfsuid. */
548
549 /*
550 * FIXME - is fsuser used for all CAP_FS_MASK capabilities?
551 * if not, we might be a bit too harsh here.
552 */
553
554 if (!issecure (SECURE_NO_SETUID_FIXUP)) {
David Howellsb103c592008-11-14 10:39:11 +1100555 if (old_fsuid == 0 && current_fsuid() != 0) {
Andrew Morgane338d262008-02-04 22:29:42 -0800556 current->cap_effective =
557 cap_drop_fs_set(
558 current->cap_effective);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 }
David Howellsb103c592008-11-14 10:39:11 +1100560 if (old_fsuid != 0 && current_fsuid() == 0) {
Andrew Morgane338d262008-02-04 22:29:42 -0800561 current->cap_effective =
562 cap_raise_fs_set(
563 current->cap_effective,
564 current->cap_permitted);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 }
566 }
567 break;
568 }
569 default:
570 return -EINVAL;
571 }
572
573 return 0;
574}
575
Serge E. Hallynb5376772007-10-16 23:31:36 -0700576#ifdef CONFIG_SECURITY_FILE_CAPABILITIES
577/*
578 * Rationale: code calling task_setscheduler, task_setioprio, and
579 * task_setnice, assumes that
580 * . if capable(cap_sys_nice), then those actions should be allowed
581 * . if not capable(cap_sys_nice), but acting on your own processes,
582 * then those actions should be allowed
583 * This is insufficient now since you can call code without suid, but
584 * yet with increased caps.
585 * So we check for increased caps on the target process.
586 */
Serge E. Hallynde45e802008-09-26 22:27:47 -0400587static int cap_safe_nice(struct task_struct *p)
Serge E. Hallynb5376772007-10-16 23:31:36 -0700588{
589 if (!cap_issubset(p->cap_permitted, current->cap_permitted) &&
David Howells5cd9c582008-08-14 11:37:28 +0100590 !capable(CAP_SYS_NICE))
Serge E. Hallynb5376772007-10-16 23:31:36 -0700591 return -EPERM;
592 return 0;
593}
594
595int cap_task_setscheduler (struct task_struct *p, int policy,
596 struct sched_param *lp)
597{
598 return cap_safe_nice(p);
599}
600
601int cap_task_setioprio (struct task_struct *p, int ioprio)
602{
603 return cap_safe_nice(p);
604}
605
606int cap_task_setnice (struct task_struct *p, int nice)
607{
608 return cap_safe_nice(p);
609}
610
Serge E. Hallyn3b7391d2008-02-04 22:29:45 -0800611/*
612 * called from kernel/sys.c for prctl(PR_CABSET_DROP)
613 * done without task_capability_lock() because it introduces
614 * no new races - i.e. only another task doing capget() on
615 * this task could get inconsistent info. There can be no
616 * racing writer bc a task can only change its own caps.
617 */
Andrew G. Morgan3898b1b2008-04-28 02:13:40 -0700618static long cap_prctl_drop(unsigned long cap)
Serge E. Hallyn3b7391d2008-02-04 22:29:45 -0800619{
620 if (!capable(CAP_SETPCAP))
621 return -EPERM;
622 if (!cap_valid(cap))
623 return -EINVAL;
624 cap_lower(current->cap_bset, cap);
625 return 0;
626}
Andrew G. Morgan3898b1b2008-04-28 02:13:40 -0700627
Serge E. Hallynb5376772007-10-16 23:31:36 -0700628#else
629int cap_task_setscheduler (struct task_struct *p, int policy,
630 struct sched_param *lp)
631{
632 return 0;
633}
634int cap_task_setioprio (struct task_struct *p, int ioprio)
635{
636 return 0;
637}
638int cap_task_setnice (struct task_struct *p, int nice)
639{
640 return 0;
641}
Serge E. Hallynb5376772007-10-16 23:31:36 -0700642#endif
643
Andrew G. Morgan3898b1b2008-04-28 02:13:40 -0700644int cap_task_prctl(int option, unsigned long arg2, unsigned long arg3,
645 unsigned long arg4, unsigned long arg5, long *rc_p)
646{
647 long error = 0;
648
649 switch (option) {
650 case PR_CAPBSET_READ:
651 if (!cap_valid(arg2))
652 error = -EINVAL;
653 else
654 error = !!cap_raised(current->cap_bset, arg2);
655 break;
656#ifdef CONFIG_SECURITY_FILE_CAPABILITIES
657 case PR_CAPBSET_DROP:
658 error = cap_prctl_drop(arg2);
659 break;
660
661 /*
662 * The next four prctl's remain to assist with transitioning a
663 * system from legacy UID=0 based privilege (when filesystem
664 * capabilities are not in use) to a system using filesystem
665 * capabilities only - as the POSIX.1e draft intended.
666 *
667 * Note:
668 *
669 * PR_SET_SECUREBITS =
670 * issecure_mask(SECURE_KEEP_CAPS_LOCKED)
671 * | issecure_mask(SECURE_NOROOT)
672 * | issecure_mask(SECURE_NOROOT_LOCKED)
673 * | issecure_mask(SECURE_NO_SETUID_FIXUP)
674 * | issecure_mask(SECURE_NO_SETUID_FIXUP_LOCKED)
675 *
676 * will ensure that the current process and all of its
677 * children will be locked into a pure
678 * capability-based-privilege environment.
679 */
680 case PR_SET_SECUREBITS:
681 if ((((current->securebits & SECURE_ALL_LOCKS) >> 1)
682 & (current->securebits ^ arg2)) /*[1]*/
683 || ((current->securebits & SECURE_ALL_LOCKS
684 & ~arg2)) /*[2]*/
685 || (arg2 & ~(SECURE_ALL_LOCKS | SECURE_ALL_BITS)) /*[3]*/
Eric Paris06112162008-11-11 22:02:50 +1100686 || (cap_capable(current, CAP_SETPCAP, SECURITY_CAP_AUDIT) != 0)) { /*[4]*/
Andrew G. Morgan3898b1b2008-04-28 02:13:40 -0700687 /*
688 * [1] no changing of bits that are locked
689 * [2] no unlocking of locks
690 * [3] no setting of unsupported bits
691 * [4] doing anything requires privilege (go read about
692 * the "sendmail capabilities bug")
693 */
694 error = -EPERM; /* cannot change a locked bit */
695 } else {
696 current->securebits = arg2;
697 }
698 break;
699 case PR_GET_SECUREBITS:
700 error = current->securebits;
701 break;
702
703#endif /* def CONFIG_SECURITY_FILE_CAPABILITIES */
704
705 case PR_GET_KEEPCAPS:
706 if (issecure(SECURE_KEEP_CAPS))
707 error = 1;
708 break;
709 case PR_SET_KEEPCAPS:
710 if (arg2 > 1) /* Note, we rely on arg2 being unsigned here */
711 error = -EINVAL;
712 else if (issecure(SECURE_KEEP_CAPS_LOCKED))
713 error = -EPERM;
714 else if (arg2)
715 current->securebits |= issecure_mask(SECURE_KEEP_CAPS);
716 else
717 current->securebits &=
718 ~issecure_mask(SECURE_KEEP_CAPS);
719 break;
720
721 default:
722 /* No functionality available - continue with default */
723 return 0;
724 }
725
726 /* Functionality provided */
727 *rc_p = error;
728 return 1;
729}
730
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731void cap_task_reparent_to_init (struct task_struct *p)
732{
Andrew Morgane338d262008-02-04 22:29:42 -0800733 cap_set_init_eff(p->cap_effective);
734 cap_clear(p->cap_inheritable);
735 cap_set_full(p->cap_permitted);
Andrew G. Morgan3898b1b2008-04-28 02:13:40 -0700736 p->securebits = SECUREBITS_DEFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 return;
738}
739
740int cap_syslog (int type)
741{
742 if ((type != 3 && type != 10) && !capable(CAP_SYS_ADMIN))
743 return -EPERM;
744 return 0;
745}
746
Alan Cox34b4e4a2007-08-22 14:01:28 -0700747int cap_vm_enough_memory(struct mm_struct *mm, long pages)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748{
749 int cap_sys_admin = 0;
750
Eric Paris06112162008-11-11 22:02:50 +1100751 if (cap_capable(current, CAP_SYS_ADMIN, SECURITY_CAP_NOAUDIT) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 cap_sys_admin = 1;
Alan Cox34b4e4a2007-08-22 14:01:28 -0700753 return __vm_enough_memory(mm, pages, cap_sys_admin);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754}
755