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