Merge remote-tracking branch 'kernel-2.6.32/develop' into develop-2.6.36
[firefly-linux-kernel-4.4.55.git] / security / commoncap.c
1 /* Common capabilities, needed by capability.o.
2  *
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
10 #include <linux/capability.h>
11 #include <linux/audit.h>
12 #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>
21 #include <linux/skbuff.h>
22 #include <linux/netlink.h>
23 #include <linux/ptrace.h>
24 #include <linux/xattr.h>
25 #include <linux/hugetlb.h>
26 #include <linux/mount.h>
27 #include <linux/sched.h>
28 #include <linux/prctl.h>
29 #include <linux/securebits.h>
30 #include <linux/syslog.h>
31
32 #ifdef CONFIG_ANDROID_PARANOID_NETWORK
33 #include <linux/android_aid.h>
34 #endif
35
36 /*
37  * If a non-root user executes a setuid-root binary in
38  * !secure(SECURE_NOROOT) mode, then we raise capabilities.
39  * However if fE is also set, then the intent is for only
40  * the file capabilities to be applied, and the setuid-root
41  * bit is left on either to change the uid (plausible) or
42  * to get full privilege on a kernel without file capabilities
43  * support.  So in that case we do not raise capabilities.
44  *
45  * Warn if that happens, once per boot.
46  */
47 static void warn_setuid_and_fcaps_mixed(const char *fname)
48 {
49         static int warned;
50         if (!warned) {
51                 printk(KERN_INFO "warning: `%s' has both setuid-root and"
52                         " effective capabilities. Therefore not raising all"
53                         " capabilities.\n", fname);
54                 warned = 1;
55         }
56 }
57
58 int cap_netlink_send(struct sock *sk, struct sk_buff *skb)
59 {
60         NETLINK_CB(skb).eff_cap = current_cap();
61         return 0;
62 }
63
64 int cap_netlink_recv(struct sk_buff *skb, int cap)
65 {
66         if (!cap_raised(NETLINK_CB(skb).eff_cap, cap))
67                 return -EPERM;
68         return 0;
69 }
70 EXPORT_SYMBOL(cap_netlink_recv);
71
72 /**
73  * cap_capable - Determine whether a task has a particular effective capability
74  * @tsk: The task to query
75  * @cred: The credentials to use
76  * @cap: The capability to check for
77  * @audit: Whether to write an audit message or not
78  *
79  * Determine whether the nominated task has the specified capability amongst
80  * its effective set, returning 0 if it does, -ve if it does not.
81  *
82  * NOTE WELL: cap_has_capability() cannot be used like the kernel's capable()
83  * and has_capability() functions.  That is, it has the reverse semantics:
84  * cap_has_capability() returns 0 when a task has a capability, but the
85  * kernel's capable() and has_capability() returns 1 for this case.
86  */
87 int cap_capable(struct task_struct *tsk, const struct cred *cred, int cap,
88                 int audit)
89 {
90 #ifdef CONFIG_ANDROID_PARANOID_NETWORK
91         if (cap == CAP_NET_RAW && in_egroup_p(AID_NET_RAW))
92                 return 0;
93         if (cap == CAP_NET_ADMIN && in_egroup_p(AID_NET_ADMIN))
94                 return 0;
95 #endif
96         return cap_raised(cred->cap_effective, cap) ? 0 : -EPERM;
97 }
98
99 /**
100  * cap_settime - Determine whether the current process may set the system clock
101  * @ts: The time to set
102  * @tz: The timezone to set
103  *
104  * Determine whether the current process may set the system clock and timezone
105  * information, returning 0 if permission granted, -ve if denied.
106  */
107 int cap_settime(struct timespec *ts, struct timezone *tz)
108 {
109         if (!capable(CAP_SYS_TIME))
110                 return -EPERM;
111         return 0;
112 }
113
114 /**
115  * cap_ptrace_access_check - Determine whether the current process may access
116  *                         another
117  * @child: The process to be accessed
118  * @mode: The mode of attachment.
119  *
120  * Determine whether a process may access another, returning 0 if permission
121  * granted, -ve if denied.
122  */
123 int cap_ptrace_access_check(struct task_struct *child, unsigned int mode)
124 {
125         int ret = 0;
126
127         rcu_read_lock();
128         if (!cap_issubset(__task_cred(child)->cap_permitted,
129                           current_cred()->cap_permitted) &&
130             !capable(CAP_SYS_PTRACE))
131                 ret = -EPERM;
132         rcu_read_unlock();
133         return ret;
134 }
135
136 /**
137  * cap_ptrace_traceme - Determine whether another process may trace the current
138  * @parent: The task proposed to be the tracer
139  *
140  * Determine whether the nominated task is permitted to trace the current
141  * process, returning 0 if permission is granted, -ve if denied.
142  */
143 int cap_ptrace_traceme(struct task_struct *parent)
144 {
145         int ret = 0;
146
147         rcu_read_lock();
148         if (!cap_issubset(current_cred()->cap_permitted,
149                           __task_cred(parent)->cap_permitted) &&
150             !has_capability(parent, CAP_SYS_PTRACE))
151                 ret = -EPERM;
152         rcu_read_unlock();
153         return ret;
154 }
155
156 /**
157  * cap_capget - Retrieve a task's capability sets
158  * @target: The task from which to retrieve the capability sets
159  * @effective: The place to record the effective set
160  * @inheritable: The place to record the inheritable set
161  * @permitted: The place to record the permitted set
162  *
163  * This function retrieves the capabilities of the nominated task and returns
164  * them to the caller.
165  */
166 int cap_capget(struct task_struct *target, kernel_cap_t *effective,
167                kernel_cap_t *inheritable, kernel_cap_t *permitted)
168 {
169         const struct cred *cred;
170
171         /* Derived from kernel/capability.c:sys_capget. */
172         rcu_read_lock();
173         cred = __task_cred(target);
174         *effective   = cred->cap_effective;
175         *inheritable = cred->cap_inheritable;
176         *permitted   = cred->cap_permitted;
177         rcu_read_unlock();
178         return 0;
179 }
180
181 /*
182  * Determine whether the inheritable capabilities are limited to the old
183  * permitted set.  Returns 1 if they are limited, 0 if they are not.
184  */
185 static inline int cap_inh_is_capped(void)
186 {
187
188         /* they are so limited unless the current task has the CAP_SETPCAP
189          * capability
190          */
191         if (cap_capable(current, current_cred(), CAP_SETPCAP,
192                         SECURITY_CAP_AUDIT) == 0)
193                 return 0;
194         return 1;
195 }
196
197 /**
198  * cap_capset - Validate and apply proposed changes to current's capabilities
199  * @new: The proposed new credentials; alterations should be made here
200  * @old: The current task's current credentials
201  * @effective: A pointer to the proposed new effective capabilities set
202  * @inheritable: A pointer to the proposed new inheritable capabilities set
203  * @permitted: A pointer to the proposed new permitted capabilities set
204  *
205  * This function validates and applies a proposed mass change to the current
206  * process's capability sets.  The changes are made to the proposed new
207  * credentials, and assuming no error, will be committed by the caller of LSM.
208  */
209 int cap_capset(struct cred *new,
210                const struct cred *old,
211                const kernel_cap_t *effective,
212                const kernel_cap_t *inheritable,
213                const kernel_cap_t *permitted)
214 {
215         if (cap_inh_is_capped() &&
216             !cap_issubset(*inheritable,
217                           cap_combine(old->cap_inheritable,
218                                       old->cap_permitted)))
219                 /* incapable of using this inheritable set */
220                 return -EPERM;
221
222         if (!cap_issubset(*inheritable,
223                           cap_combine(old->cap_inheritable,
224                                       old->cap_bset)))
225                 /* no new pI capabilities outside bounding set */
226                 return -EPERM;
227
228         /* verify restrictions on target's new Permitted set */
229         if (!cap_issubset(*permitted, old->cap_permitted))
230                 return -EPERM;
231
232         /* verify the _new_Effective_ is a subset of the _new_Permitted_ */
233         if (!cap_issubset(*effective, *permitted))
234                 return -EPERM;
235
236         new->cap_effective   = *effective;
237         new->cap_inheritable = *inheritable;
238         new->cap_permitted   = *permitted;
239         return 0;
240 }
241
242 /*
243  * Clear proposed capability sets for execve().
244  */
245 static inline void bprm_clear_caps(struct linux_binprm *bprm)
246 {
247         cap_clear(bprm->cred->cap_permitted);
248         bprm->cap_effective = false;
249 }
250
251 /**
252  * cap_inode_need_killpriv - Determine if inode change affects privileges
253  * @dentry: The inode/dentry in being changed with change marked ATTR_KILL_PRIV
254  *
255  * Determine if an inode having a change applied that's marked ATTR_KILL_PRIV
256  * affects the security markings on that inode, and if it is, should
257  * inode_killpriv() be invoked or the change rejected?
258  *
259  * Returns 0 if granted; +ve if granted, but inode_killpriv() is required; and
260  * -ve to deny the change.
261  */
262 int cap_inode_need_killpriv(struct dentry *dentry)
263 {
264         struct inode *inode = dentry->d_inode;
265         int error;
266
267         if (!inode->i_op->getxattr)
268                return 0;
269
270         error = inode->i_op->getxattr(dentry, XATTR_NAME_CAPS, NULL, 0);
271         if (error <= 0)
272                 return 0;
273         return 1;
274 }
275
276 /**
277  * cap_inode_killpriv - Erase the security markings on an inode
278  * @dentry: The inode/dentry to alter
279  *
280  * Erase the privilege-enhancing security markings on an inode.
281  *
282  * Returns 0 if successful, -ve on error.
283  */
284 int cap_inode_killpriv(struct dentry *dentry)
285 {
286         struct inode *inode = dentry->d_inode;
287
288         if (!inode->i_op->removexattr)
289                return 0;
290
291         return inode->i_op->removexattr(dentry, XATTR_NAME_CAPS);
292 }
293
294 /*
295  * Calculate the new process capability sets from the capability sets attached
296  * to a file.
297  */
298 static inline int bprm_caps_from_vfs_caps(struct cpu_vfs_cap_data *caps,
299                                           struct linux_binprm *bprm,
300                                           bool *effective)
301 {
302         struct cred *new = bprm->cred;
303         unsigned i;
304         int ret = 0;
305
306         if (caps->magic_etc & VFS_CAP_FLAGS_EFFECTIVE)
307                 *effective = true;
308
309         CAP_FOR_EACH_U32(i) {
310                 __u32 permitted = caps->permitted.cap[i];
311                 __u32 inheritable = caps->inheritable.cap[i];
312
313                 /*
314                  * pP' = (X & fP) | (pI & fI)
315                  */
316                 new->cap_permitted.cap[i] =
317                         (new->cap_bset.cap[i] & permitted) |
318                         (new->cap_inheritable.cap[i] & inheritable);
319
320                 if (permitted & ~new->cap_permitted.cap[i])
321                         /* insufficient to execute correctly */
322                         ret = -EPERM;
323         }
324
325         /*
326          * For legacy apps, with no internal support for recognizing they
327          * do not have enough capabilities, we return an error if they are
328          * missing some "forced" (aka file-permitted) capabilities.
329          */
330         return *effective ? ret : 0;
331 }
332
333 /*
334  * Extract the on-exec-apply capability sets for an executable file.
335  */
336 int get_vfs_caps_from_disk(const struct dentry *dentry, struct cpu_vfs_cap_data *cpu_caps)
337 {
338         struct inode *inode = dentry->d_inode;
339         __u32 magic_etc;
340         unsigned tocopy, i;
341         int size;
342         struct vfs_cap_data caps;
343
344         memset(cpu_caps, 0, sizeof(struct cpu_vfs_cap_data));
345
346         if (!inode || !inode->i_op->getxattr)
347                 return -ENODATA;
348
349         size = inode->i_op->getxattr((struct dentry *)dentry, XATTR_NAME_CAPS, &caps,
350                                    XATTR_CAPS_SZ);
351         if (size == -ENODATA || size == -EOPNOTSUPP)
352                 /* no data, that's ok */
353                 return -ENODATA;
354         if (size < 0)
355                 return size;
356
357         if (size < sizeof(magic_etc))
358                 return -EINVAL;
359
360         cpu_caps->magic_etc = magic_etc = le32_to_cpu(caps.magic_etc);
361
362         switch (magic_etc & VFS_CAP_REVISION_MASK) {
363         case VFS_CAP_REVISION_1:
364                 if (size != XATTR_CAPS_SZ_1)
365                         return -EINVAL;
366                 tocopy = VFS_CAP_U32_1;
367                 break;
368         case VFS_CAP_REVISION_2:
369                 if (size != XATTR_CAPS_SZ_2)
370                         return -EINVAL;
371                 tocopy = VFS_CAP_U32_2;
372                 break;
373         default:
374                 return -EINVAL;
375         }
376
377         CAP_FOR_EACH_U32(i) {
378                 if (i >= tocopy)
379                         break;
380                 cpu_caps->permitted.cap[i] = le32_to_cpu(caps.data[i].permitted);
381                 cpu_caps->inheritable.cap[i] = le32_to_cpu(caps.data[i].inheritable);
382         }
383
384         return 0;
385 }
386
387 /*
388  * Attempt to get the on-exec apply capability sets for an executable file from
389  * its xattrs and, if present, apply them to the proposed credentials being
390  * constructed by execve().
391  */
392 static int get_file_caps(struct linux_binprm *bprm, bool *effective)
393 {
394         struct dentry *dentry;
395         int rc = 0;
396         struct cpu_vfs_cap_data vcaps;
397
398         bprm_clear_caps(bprm);
399
400         if (!file_caps_enabled)
401                 return 0;
402
403         if (bprm->file->f_vfsmnt->mnt_flags & MNT_NOSUID)
404                 return 0;
405
406         dentry = dget(bprm->file->f_dentry);
407
408         rc = get_vfs_caps_from_disk(dentry, &vcaps);
409         if (rc < 0) {
410                 if (rc == -EINVAL)
411                         printk(KERN_NOTICE "%s: get_vfs_caps_from_disk returned %d for %s\n",
412                                 __func__, rc, bprm->filename);
413                 else if (rc == -ENODATA)
414                         rc = 0;
415                 goto out;
416         }
417
418         rc = bprm_caps_from_vfs_caps(&vcaps, bprm, effective);
419         if (rc == -EINVAL)
420                 printk(KERN_NOTICE "%s: cap_from_disk returned %d for %s\n",
421                        __func__, rc, bprm->filename);
422
423 out:
424         dput(dentry);
425         if (rc)
426                 bprm_clear_caps(bprm);
427
428         return rc;
429 }
430
431 /**
432  * cap_bprm_set_creds - Set up the proposed credentials for execve().
433  * @bprm: The execution parameters, including the proposed creds
434  *
435  * Set up the proposed credentials for a new execution context being
436  * constructed by execve().  The proposed creds in @bprm->cred is altered,
437  * which won't take effect immediately.  Returns 0 if successful, -ve on error.
438  */
439 int cap_bprm_set_creds(struct linux_binprm *bprm)
440 {
441         const struct cred *old = current_cred();
442         struct cred *new = bprm->cred;
443         bool effective;
444         int ret;
445
446         effective = false;
447         ret = get_file_caps(bprm, &effective);
448         if (ret < 0)
449                 return ret;
450
451         if (!issecure(SECURE_NOROOT)) {
452                 /*
453                  * If the legacy file capability is set, then don't set privs
454                  * for a setuid root binary run by a non-root user.  Do set it
455                  * for a root user just to cause least surprise to an admin.
456                  */
457                 if (effective && new->uid != 0 && new->euid == 0) {
458                         warn_setuid_and_fcaps_mixed(bprm->filename);
459                         goto skip;
460                 }
461                 /*
462                  * To support inheritance of root-permissions and suid-root
463                  * executables under compatibility mode, we override the
464                  * capability sets for the file.
465                  *
466                  * If only the real uid is 0, we do not set the effective bit.
467                  */
468                 if (new->euid == 0 || new->uid == 0) {
469                         /* pP' = (cap_bset & ~0) | (pI & ~0) */
470                         new->cap_permitted = cap_combine(old->cap_bset,
471                                                          old->cap_inheritable);
472                 }
473                 if (new->euid == 0)
474                         effective = true;
475         }
476 skip:
477
478         /* Don't let someone trace a set[ug]id/setpcap binary with the revised
479          * credentials unless they have the appropriate permit
480          */
481         if ((new->euid != old->uid ||
482              new->egid != old->gid ||
483              !cap_issubset(new->cap_permitted, old->cap_permitted)) &&
484             bprm->unsafe & ~LSM_UNSAFE_PTRACE_CAP) {
485                 /* downgrade; they get no more than they had, and maybe less */
486                 if (!capable(CAP_SETUID)) {
487                         new->euid = new->uid;
488                         new->egid = new->gid;
489                 }
490                 new->cap_permitted = cap_intersect(new->cap_permitted,
491                                                    old->cap_permitted);
492         }
493
494         new->suid = new->fsuid = new->euid;
495         new->sgid = new->fsgid = new->egid;
496
497         /* For init, we want to retain the capabilities set in the initial
498          * task.  Thus we skip the usual capability rules
499          */
500         if (!is_global_init(current)) {
501                 if (effective)
502                         new->cap_effective = new->cap_permitted;
503                 else
504                         cap_clear(new->cap_effective);
505         }
506         bprm->cap_effective = effective;
507
508         /*
509          * Audit candidate if current->cap_effective is set
510          *
511          * We do not bother to audit if 3 things are true:
512          *   1) cap_effective has all caps
513          *   2) we are root
514          *   3) root is supposed to have all caps (SECURE_NOROOT)
515          * Since this is just a normal root execing a process.
516          *
517          * Number 1 above might fail if you don't have a full bset, but I think
518          * that is interesting information to audit.
519          */
520         if (!cap_isclear(new->cap_effective)) {
521                 if (!cap_issubset(CAP_FULL_SET, new->cap_effective) ||
522                     new->euid != 0 || new->uid != 0 ||
523                     issecure(SECURE_NOROOT)) {
524                         ret = audit_log_bprm_fcaps(bprm, new, old);
525                         if (ret < 0)
526                                 return ret;
527                 }
528         }
529
530         new->securebits &= ~issecure_mask(SECURE_KEEP_CAPS);
531         return 0;
532 }
533
534 /**
535  * cap_bprm_secureexec - Determine whether a secure execution is required
536  * @bprm: The execution parameters
537  *
538  * Determine whether a secure execution is required, return 1 if it is, and 0
539  * if it is not.
540  *
541  * The credentials have been committed by this point, and so are no longer
542  * available through @bprm->cred.
543  */
544 int cap_bprm_secureexec(struct linux_binprm *bprm)
545 {
546         const struct cred *cred = current_cred();
547
548         if (cred->uid != 0) {
549                 if (bprm->cap_effective)
550                         return 1;
551                 if (!cap_isclear(cred->cap_permitted))
552                         return 1;
553         }
554
555         return (cred->euid != cred->uid ||
556                 cred->egid != cred->gid);
557 }
558
559 /**
560  * cap_inode_setxattr - Determine whether an xattr may be altered
561  * @dentry: The inode/dentry being altered
562  * @name: The name of the xattr to be changed
563  * @value: The value that the xattr will be changed to
564  * @size: The size of value
565  * @flags: The replacement flag
566  *
567  * Determine whether an xattr may be altered or set on an inode, returning 0 if
568  * permission is granted, -ve if denied.
569  *
570  * This is used to make sure security xattrs don't get updated or set by those
571  * who aren't privileged to do so.
572  */
573 int cap_inode_setxattr(struct dentry *dentry, const char *name,
574                        const void *value, size_t size, int flags)
575 {
576         if (!strcmp(name, XATTR_NAME_CAPS)) {
577                 if (!capable(CAP_SETFCAP))
578                         return -EPERM;
579                 return 0;
580         }
581
582         if (!strncmp(name, XATTR_SECURITY_PREFIX,
583                      sizeof(XATTR_SECURITY_PREFIX) - 1) &&
584             !capable(CAP_SYS_ADMIN))
585                 return -EPERM;
586         return 0;
587 }
588
589 /**
590  * cap_inode_removexattr - Determine whether an xattr may be removed
591  * @dentry: The inode/dentry being altered
592  * @name: The name of the xattr to be changed
593  *
594  * Determine whether an xattr may be removed from an inode, returning 0 if
595  * permission is granted, -ve if denied.
596  *
597  * This is used to make sure security xattrs don't get removed by those who
598  * aren't privileged to remove them.
599  */
600 int cap_inode_removexattr(struct dentry *dentry, const char *name)
601 {
602         if (!strcmp(name, XATTR_NAME_CAPS)) {
603                 if (!capable(CAP_SETFCAP))
604                         return -EPERM;
605                 return 0;
606         }
607
608         if (!strncmp(name, XATTR_SECURITY_PREFIX,
609                      sizeof(XATTR_SECURITY_PREFIX) - 1) &&
610             !capable(CAP_SYS_ADMIN))
611                 return -EPERM;
612         return 0;
613 }
614
615 /*
616  * cap_emulate_setxuid() fixes the effective / permitted capabilities of
617  * a process after a call to setuid, setreuid, or setresuid.
618  *
619  *  1) When set*uiding _from_ one of {r,e,s}uid == 0 _to_ all of
620  *  {r,e,s}uid != 0, the permitted and effective capabilities are
621  *  cleared.
622  *
623  *  2) When set*uiding _from_ euid == 0 _to_ euid != 0, the effective
624  *  capabilities of the process are cleared.
625  *
626  *  3) When set*uiding _from_ euid != 0 _to_ euid == 0, the effective
627  *  capabilities are set to the permitted capabilities.
628  *
629  *  fsuid is handled elsewhere. fsuid == 0 and {r,e,s}uid!= 0 should
630  *  never happen.
631  *
632  *  -astor
633  *
634  * cevans - New behaviour, Oct '99
635  * A process may, via prctl(), elect to keep its capabilities when it
636  * calls setuid() and switches away from uid==0. Both permitted and
637  * effective sets will be retained.
638  * Without this change, it was impossible for a daemon to drop only some
639  * of its privilege. The call to setuid(!=0) would drop all privileges!
640  * Keeping uid 0 is not an option because uid 0 owns too many vital
641  * files..
642  * Thanks to Olaf Kirch and Peter Benie for spotting this.
643  */
644 static inline void cap_emulate_setxuid(struct cred *new, const struct cred *old)
645 {
646         if ((old->uid == 0 || old->euid == 0 || old->suid == 0) &&
647             (new->uid != 0 && new->euid != 0 && new->suid != 0) &&
648             !issecure(SECURE_KEEP_CAPS)) {
649                 cap_clear(new->cap_permitted);
650                 cap_clear(new->cap_effective);
651         }
652         if (old->euid == 0 && new->euid != 0)
653                 cap_clear(new->cap_effective);
654         if (old->euid != 0 && new->euid == 0)
655                 new->cap_effective = new->cap_permitted;
656 }
657
658 /**
659  * cap_task_fix_setuid - Fix up the results of setuid() call
660  * @new: The proposed credentials
661  * @old: The current task's current credentials
662  * @flags: Indications of what has changed
663  *
664  * Fix up the results of setuid() call before the credential changes are
665  * actually applied, returning 0 to grant the changes, -ve to deny them.
666  */
667 int cap_task_fix_setuid(struct cred *new, const struct cred *old, int flags)
668 {
669         switch (flags) {
670         case LSM_SETID_RE:
671         case LSM_SETID_ID:
672         case LSM_SETID_RES:
673                 /* juggle the capabilities to follow [RES]UID changes unless
674                  * otherwise suppressed */
675                 if (!issecure(SECURE_NO_SETUID_FIXUP))
676                         cap_emulate_setxuid(new, old);
677                 break;
678
679         case LSM_SETID_FS:
680                 /* juggle the capabilties to follow FSUID changes, unless
681                  * otherwise suppressed
682                  *
683                  * FIXME - is fsuser used for all CAP_FS_MASK capabilities?
684                  *          if not, we might be a bit too harsh here.
685                  */
686                 if (!issecure(SECURE_NO_SETUID_FIXUP)) {
687                         if (old->fsuid == 0 && new->fsuid != 0)
688                                 new->cap_effective =
689                                         cap_drop_fs_set(new->cap_effective);
690
691                         if (old->fsuid != 0 && new->fsuid == 0)
692                                 new->cap_effective =
693                                         cap_raise_fs_set(new->cap_effective,
694                                                          new->cap_permitted);
695                 }
696                 break;
697
698         default:
699                 return -EINVAL;
700         }
701
702         return 0;
703 }
704
705 /*
706  * Rationale: code calling task_setscheduler, task_setioprio, and
707  * task_setnice, assumes that
708  *   . if capable(cap_sys_nice), then those actions should be allowed
709  *   . if not capable(cap_sys_nice), but acting on your own processes,
710  *      then those actions should be allowed
711  * This is insufficient now since you can call code without suid, but
712  * yet with increased caps.
713  * So we check for increased caps on the target process.
714  */
715 static int cap_safe_nice(struct task_struct *p)
716 {
717         int is_subset;
718
719         rcu_read_lock();
720         is_subset = cap_issubset(__task_cred(p)->cap_permitted,
721                                  current_cred()->cap_permitted);
722         rcu_read_unlock();
723
724         if (!is_subset && !capable(CAP_SYS_NICE))
725                 return -EPERM;
726         return 0;
727 }
728
729 /**
730  * cap_task_setscheduler - Detemine if scheduler policy change is permitted
731  * @p: The task to affect
732  * @policy: The policy to effect
733  * @lp: The parameters to the scheduling policy
734  *
735  * Detemine if the requested scheduler policy change is permitted for the
736  * specified task, returning 0 if permission is granted, -ve if denied.
737  */
738 int cap_task_setscheduler(struct task_struct *p, int policy,
739                            struct sched_param *lp)
740 {
741         return cap_safe_nice(p);
742 }
743
744 /**
745  * cap_task_ioprio - Detemine if I/O priority change is permitted
746  * @p: The task to affect
747  * @ioprio: The I/O priority to set
748  *
749  * Detemine if the requested I/O priority change is permitted for the specified
750  * task, returning 0 if permission is granted, -ve if denied.
751  */
752 int cap_task_setioprio(struct task_struct *p, int ioprio)
753 {
754         return cap_safe_nice(p);
755 }
756
757 /**
758  * cap_task_ioprio - Detemine if task priority change is permitted
759  * @p: The task to affect
760  * @nice: The nice value to set
761  *
762  * Detemine if the requested task priority change is permitted for the
763  * specified task, returning 0 if permission is granted, -ve if denied.
764  */
765 int cap_task_setnice(struct task_struct *p, int nice)
766 {
767         return cap_safe_nice(p);
768 }
769
770 /*
771  * Implement PR_CAPBSET_DROP.  Attempt to remove the specified capability from
772  * the current task's bounding set.  Returns 0 on success, -ve on error.
773  */
774 static long cap_prctl_drop(struct cred *new, unsigned long cap)
775 {
776         if (!capable(CAP_SETPCAP))
777                 return -EPERM;
778         if (!cap_valid(cap))
779                 return -EINVAL;
780
781         cap_lower(new->cap_bset, cap);
782         return 0;
783 }
784
785 /**
786  * cap_task_prctl - Implement process control functions for this security module
787  * @option: The process control function requested
788  * @arg2, @arg3, @arg4, @arg5: The argument data for this function
789  *
790  * Allow process control functions (sys_prctl()) to alter capabilities; may
791  * also deny access to other functions not otherwise implemented here.
792  *
793  * Returns 0 or +ve on success, -ENOSYS if this function is not implemented
794  * here, other -ve on error.  If -ENOSYS is returned, sys_prctl() and other LSM
795  * modules will consider performing the function.
796  */
797 int cap_task_prctl(int option, unsigned long arg2, unsigned long arg3,
798                    unsigned long arg4, unsigned long arg5)
799 {
800         struct cred *new;
801         long error = 0;
802
803         new = prepare_creds();
804         if (!new)
805                 return -ENOMEM;
806
807         switch (option) {
808         case PR_CAPBSET_READ:
809                 error = -EINVAL;
810                 if (!cap_valid(arg2))
811                         goto error;
812                 error = !!cap_raised(new->cap_bset, arg2);
813                 goto no_change;
814
815         case PR_CAPBSET_DROP:
816                 error = cap_prctl_drop(new, arg2);
817                 if (error < 0)
818                         goto error;
819                 goto changed;
820
821         /*
822          * The next four prctl's remain to assist with transitioning a
823          * system from legacy UID=0 based privilege (when filesystem
824          * capabilities are not in use) to a system using filesystem
825          * capabilities only - as the POSIX.1e draft intended.
826          *
827          * Note:
828          *
829          *  PR_SET_SECUREBITS =
830          *      issecure_mask(SECURE_KEEP_CAPS_LOCKED)
831          *    | issecure_mask(SECURE_NOROOT)
832          *    | issecure_mask(SECURE_NOROOT_LOCKED)
833          *    | issecure_mask(SECURE_NO_SETUID_FIXUP)
834          *    | issecure_mask(SECURE_NO_SETUID_FIXUP_LOCKED)
835          *
836          * will ensure that the current process and all of its
837          * children will be locked into a pure
838          * capability-based-privilege environment.
839          */
840         case PR_SET_SECUREBITS:
841                 error = -EPERM;
842                 if ((((new->securebits & SECURE_ALL_LOCKS) >> 1)
843                      & (new->securebits ^ arg2))                        /*[1]*/
844                     || ((new->securebits & SECURE_ALL_LOCKS & ~arg2))   /*[2]*/
845                     || (arg2 & ~(SECURE_ALL_LOCKS | SECURE_ALL_BITS))   /*[3]*/
846                     || (cap_capable(current, current_cred(), CAP_SETPCAP,
847                                     SECURITY_CAP_AUDIT) != 0)           /*[4]*/
848                         /*
849                          * [1] no changing of bits that are locked
850                          * [2] no unlocking of locks
851                          * [3] no setting of unsupported bits
852                          * [4] doing anything requires privilege (go read about
853                          *     the "sendmail capabilities bug")
854                          */
855                     )
856                         /* cannot change a locked bit */
857                         goto error;
858                 new->securebits = arg2;
859                 goto changed;
860
861         case PR_GET_SECUREBITS:
862                 error = new->securebits;
863                 goto no_change;
864
865         case PR_GET_KEEPCAPS:
866                 if (issecure(SECURE_KEEP_CAPS))
867                         error = 1;
868                 goto no_change;
869
870         case PR_SET_KEEPCAPS:
871                 error = -EINVAL;
872                 if (arg2 > 1) /* Note, we rely on arg2 being unsigned here */
873                         goto error;
874                 error = -EPERM;
875                 if (issecure(SECURE_KEEP_CAPS_LOCKED))
876                         goto error;
877                 if (arg2)
878                         new->securebits |= issecure_mask(SECURE_KEEP_CAPS);
879                 else
880                         new->securebits &= ~issecure_mask(SECURE_KEEP_CAPS);
881                 goto changed;
882
883         default:
884                 /* No functionality available - continue with default */
885                 error = -ENOSYS;
886                 goto error;
887         }
888
889         /* Functionality provided */
890 changed:
891         return commit_creds(new);
892
893 no_change:
894 error:
895         abort_creds(new);
896         return error;
897 }
898
899 /**
900  * cap_syslog - Determine whether syslog function is permitted
901  * @type: Function requested
902  * @from_file: Whether this request came from an open file (i.e. /proc)
903  *
904  * Determine whether the current process is permitted to use a particular
905  * syslog function, returning 0 if permission is granted, -ve if not.
906  */
907 int cap_syslog(int type, bool from_file)
908 {
909         if (type != SYSLOG_ACTION_OPEN && from_file)
910                 return 0;
911         if ((type != SYSLOG_ACTION_READ_ALL &&
912              type != SYSLOG_ACTION_SIZE_BUFFER) && !capable(CAP_SYS_ADMIN))
913                 return -EPERM;
914         return 0;
915 }
916
917 /**
918  * cap_vm_enough_memory - Determine whether a new virtual mapping is permitted
919  * @mm: The VM space in which the new mapping is to be made
920  * @pages: The size of the mapping
921  *
922  * Determine whether the allocation of a new virtual mapping by the current
923  * task is permitted, returning 0 if permission is granted, -ve if not.
924  */
925 int cap_vm_enough_memory(struct mm_struct *mm, long pages)
926 {
927         int cap_sys_admin = 0;
928
929         if (cap_capable(current, current_cred(), CAP_SYS_ADMIN,
930                         SECURITY_CAP_NOAUDIT) == 0)
931                 cap_sys_admin = 1;
932         return __vm_enough_memory(mm, pages, cap_sys_admin);
933 }
934
935 /*
936  * cap_file_mmap - check if able to map given addr
937  * @file: unused
938  * @reqprot: unused
939  * @prot: unused
940  * @flags: unused
941  * @addr: address attempting to be mapped
942  * @addr_only: unused
943  *
944  * If the process is attempting to map memory below dac_mmap_min_addr they need
945  * CAP_SYS_RAWIO.  The other parameters to this function are unused by the
946  * capability security module.  Returns 0 if this mapping should be allowed
947  * -EPERM if not.
948  */
949 int cap_file_mmap(struct file *file, unsigned long reqprot,
950                   unsigned long prot, unsigned long flags,
951                   unsigned long addr, unsigned long addr_only)
952 {
953         int ret = 0;
954
955         if (addr < dac_mmap_min_addr) {
956                 ret = cap_capable(current, current_cred(), CAP_SYS_RAWIO,
957                                   SECURITY_CAP_AUDIT);
958                 /* set PF_SUPERPRIV if it turns out we allow the low mmap */
959                 if (ret == 0)
960                         current->flags |= PF_SUPERPRIV;
961         }
962         return ret;
963 }