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