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