Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * linux/fs/namei.c |
| 3 | * |
| 4 | * Copyright (C) 1991, 1992 Linus Torvalds |
| 5 | */ |
| 6 | |
| 7 | /* |
| 8 | * Some corrections by tytso. |
| 9 | */ |
| 10 | |
| 11 | /* [Feb 1997 T. Schoebel-Theuer] Complete rewrite of the pathname |
| 12 | * lookup logic. |
| 13 | */ |
| 14 | /* [Feb-Apr 2000, AV] Rewrite to the new namespace architecture. |
| 15 | */ |
| 16 | |
| 17 | #include <linux/init.h> |
| 18 | #include <linux/module.h> |
| 19 | #include <linux/slab.h> |
| 20 | #include <linux/fs.h> |
| 21 | #include <linux/namei.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | #include <linux/pagemap.h> |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 23 | #include <linux/fsnotify.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | #include <linux/personality.h> |
| 25 | #include <linux/security.h> |
Mimi Zohar | 6146f0d | 2009-02-04 09:06:57 -0500 | [diff] [blame] | 26 | #include <linux/ima.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | #include <linux/syscalls.h> |
| 28 | #include <linux/mount.h> |
| 29 | #include <linux/audit.h> |
Randy Dunlap | 16f7e0f | 2006-01-11 12:17:46 -0800 | [diff] [blame] | 30 | #include <linux/capability.h> |
Trond Myklebust | 834f2a4 | 2005-10-18 14:20:16 -0700 | [diff] [blame] | 31 | #include <linux/file.h> |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 32 | #include <linux/fcntl.h> |
Serge E. Hallyn | 08ce5f1 | 2008-04-29 01:00:10 -0700 | [diff] [blame] | 33 | #include <linux/device_cgroup.h> |
Al Viro | 5ad4e53 | 2009-03-29 19:50:06 -0400 | [diff] [blame] | 34 | #include <linux/fs_struct.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | #include <asm/uaccess.h> |
| 36 | |
Eric Paris | e81e3f4 | 2009-12-04 15:47:36 -0500 | [diff] [blame] | 37 | #include "internal.h" |
| 38 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | /* [Feb-1997 T. Schoebel-Theuer] |
| 40 | * Fundamental changes in the pathname lookup mechanisms (namei) |
| 41 | * were necessary because of omirr. The reason is that omirr needs |
| 42 | * to know the _real_ pathname, not the user-supplied one, in case |
| 43 | * of symlinks (and also when transname replacements occur). |
| 44 | * |
| 45 | * The new code replaces the old recursive symlink resolution with |
| 46 | * an iterative one (in case of non-nested symlink chains). It does |
| 47 | * this with calls to <fs>_follow_link(). |
| 48 | * As a side effect, dir_namei(), _namei() and follow_link() are now |
| 49 | * replaced with a single function lookup_dentry() that can handle all |
| 50 | * the special cases of the former code. |
| 51 | * |
| 52 | * With the new dcache, the pathname is stored at each inode, at least as |
| 53 | * long as the refcount of the inode is positive. As a side effect, the |
| 54 | * size of the dcache depends on the inode cache and thus is dynamic. |
| 55 | * |
| 56 | * [29-Apr-1998 C. Scott Ananian] Updated above description of symlink |
| 57 | * resolution to correspond with current state of the code. |
| 58 | * |
| 59 | * Note that the symlink resolution is not *completely* iterative. |
| 60 | * There is still a significant amount of tail- and mid- recursion in |
| 61 | * the algorithm. Also, note that <fs>_readlink() is not used in |
| 62 | * lookup_dentry(): lookup_dentry() on the result of <fs>_readlink() |
| 63 | * may return different results than <fs>_follow_link(). Many virtual |
| 64 | * filesystems (including /proc) exhibit this behavior. |
| 65 | */ |
| 66 | |
| 67 | /* [24-Feb-97 T. Schoebel-Theuer] Side effects caused by new implementation: |
| 68 | * New symlink semantics: when open() is called with flags O_CREAT | O_EXCL |
| 69 | * and the name already exists in form of a symlink, try to create the new |
| 70 | * name indicated by the symlink. The old code always complained that the |
| 71 | * name already exists, due to not following the symlink even if its target |
| 72 | * is nonexistent. The new semantics affects also mknod() and link() when |
| 73 | * the name is a symlink pointing to a non-existant name. |
| 74 | * |
| 75 | * I don't know which semantics is the right one, since I have no access |
| 76 | * to standards. But I found by trial that HP-UX 9.0 has the full "new" |
| 77 | * semantics implemented, while SunOS 4.1.1 and Solaris (SunOS 5.4) have the |
| 78 | * "old" one. Personally, I think the new semantics is much more logical. |
| 79 | * Note that "ln old new" where "new" is a symlink pointing to a non-existing |
| 80 | * file does succeed in both HP-UX and SunOs, but not in Solaris |
| 81 | * and in the old Linux semantics. |
| 82 | */ |
| 83 | |
| 84 | /* [16-Dec-97 Kevin Buhr] For security reasons, we change some symlink |
| 85 | * semantics. See the comments in "open_namei" and "do_link" below. |
| 86 | * |
| 87 | * [10-Sep-98 Alan Modra] Another symlink change. |
| 88 | */ |
| 89 | |
| 90 | /* [Feb-Apr 2000 AV] Complete rewrite. Rules for symlinks: |
| 91 | * inside the path - always follow. |
| 92 | * in the last component in creation/removal/renaming - never follow. |
| 93 | * if LOOKUP_FOLLOW passed - follow. |
| 94 | * if the pathname has trailing slashes - follow. |
| 95 | * otherwise - don't follow. |
| 96 | * (applied in that order). |
| 97 | * |
| 98 | * [Jun 2000 AV] Inconsistent behaviour of open() in case if flags==O_CREAT |
| 99 | * restored for 2.4. This is the last surviving part of old 4.2BSD bug. |
| 100 | * During the 2.4 we need to fix the userland stuff depending on it - |
| 101 | * hopefully we will be able to get rid of that wart in 2.5. So far only |
| 102 | * XEmacs seems to be relying on it... |
| 103 | */ |
| 104 | /* |
| 105 | * [Sep 2001 AV] Single-semaphore locking scheme (kudos to David Holland) |
Arjan van de Ven | a11f3a0 | 2006-03-23 03:00:33 -0800 | [diff] [blame] | 106 | * implemented. Let's see if raised priority of ->s_vfs_rename_mutex gives |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | * any extra contention... |
| 108 | */ |
| 109 | |
| 110 | /* In order to reduce some races, while at the same time doing additional |
| 111 | * checking and hopefully speeding things up, we copy filenames to the |
| 112 | * kernel data space before using them.. |
| 113 | * |
| 114 | * POSIX.1 2.4: an empty pathname is invalid (ENOENT). |
| 115 | * PATH_MAX includes the nul terminator --RR. |
| 116 | */ |
Arjan van de Ven | 858119e | 2006-01-14 13:20:43 -0800 | [diff] [blame] | 117 | static int do_getname(const char __user *filename, char *page) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | { |
| 119 | int retval; |
| 120 | unsigned long len = PATH_MAX; |
| 121 | |
| 122 | if (!segment_eq(get_fs(), KERNEL_DS)) { |
| 123 | if ((unsigned long) filename >= TASK_SIZE) |
| 124 | return -EFAULT; |
| 125 | if (TASK_SIZE - (unsigned long) filename < PATH_MAX) |
| 126 | len = TASK_SIZE - (unsigned long) filename; |
| 127 | } |
| 128 | |
| 129 | retval = strncpy_from_user(page, filename, len); |
| 130 | if (retval > 0) { |
| 131 | if (retval < len) |
| 132 | return 0; |
| 133 | return -ENAMETOOLONG; |
| 134 | } else if (!retval) |
| 135 | retval = -ENOENT; |
| 136 | return retval; |
| 137 | } |
| 138 | |
| 139 | char * getname(const char __user * filename) |
| 140 | { |
| 141 | char *tmp, *result; |
| 142 | |
| 143 | result = ERR_PTR(-ENOMEM); |
| 144 | tmp = __getname(); |
| 145 | if (tmp) { |
| 146 | int retval = do_getname(filename, tmp); |
| 147 | |
| 148 | result = tmp; |
| 149 | if (retval < 0) { |
| 150 | __putname(tmp); |
| 151 | result = ERR_PTR(retval); |
| 152 | } |
| 153 | } |
| 154 | audit_getname(result); |
| 155 | return result; |
| 156 | } |
| 157 | |
| 158 | #ifdef CONFIG_AUDITSYSCALL |
| 159 | void putname(const char *name) |
| 160 | { |
Al Viro | 5ac3a9c | 2006-07-16 06:38:45 -0400 | [diff] [blame] | 161 | if (unlikely(!audit_dummy_context())) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 162 | audit_putname(name); |
| 163 | else |
| 164 | __putname(name); |
| 165 | } |
| 166 | EXPORT_SYMBOL(putname); |
| 167 | #endif |
| 168 | |
Linus Torvalds | 5909ccaa | 2009-08-28 11:51:25 -0700 | [diff] [blame] | 169 | /* |
| 170 | * This does basic POSIX ACL permission checking |
| 171 | */ |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 172 | static inline int __acl_permission_check(struct inode *inode, int mask, |
| 173 | int (*check_acl)(struct inode *inode, int mask), int rcu) |
Linus Torvalds | 5909ccaa | 2009-08-28 11:51:25 -0700 | [diff] [blame] | 174 | { |
| 175 | umode_t mode = inode->i_mode; |
| 176 | |
| 177 | mask &= MAY_READ | MAY_WRITE | MAY_EXEC; |
| 178 | |
| 179 | if (current_fsuid() == inode->i_uid) |
| 180 | mode >>= 6; |
| 181 | else { |
| 182 | if (IS_POSIXACL(inode) && (mode & S_IRWXG) && check_acl) { |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 183 | if (rcu) { |
| 184 | return -ECHILD; |
| 185 | } else { |
| 186 | int error = check_acl(inode, mask); |
| 187 | if (error != -EAGAIN) |
| 188 | return error; |
| 189 | } |
Linus Torvalds | 5909ccaa | 2009-08-28 11:51:25 -0700 | [diff] [blame] | 190 | } |
| 191 | |
| 192 | if (in_group_p(inode->i_gid)) |
| 193 | mode >>= 3; |
| 194 | } |
| 195 | |
| 196 | /* |
| 197 | * If the DACs are ok we don't need any capability check. |
| 198 | */ |
| 199 | if ((mask & ~mode) == 0) |
| 200 | return 0; |
| 201 | return -EACCES; |
| 202 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 203 | |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 204 | static inline int acl_permission_check(struct inode *inode, int mask, |
| 205 | int (*check_acl)(struct inode *inode, int mask)) |
| 206 | { |
| 207 | return __acl_permission_check(inode, mask, check_acl, 0); |
| 208 | } |
| 209 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 210 | /** |
| 211 | * generic_permission - check for access rights on a Posix-like filesystem |
| 212 | * @inode: inode to check access rights for |
| 213 | * @mask: right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC) |
| 214 | * @check_acl: optional callback to check for Posix ACLs |
| 215 | * |
| 216 | * Used to check for read/write/execute permissions on a file. |
| 217 | * We use "fsuid" for this, letting us set arbitrary permissions |
| 218 | * for filesystem access without changing the "normal" uids which |
| 219 | * are used for other things.. |
| 220 | */ |
| 221 | int generic_permission(struct inode *inode, int mask, |
| 222 | int (*check_acl)(struct inode *inode, int mask)) |
| 223 | { |
Linus Torvalds | 5909ccaa | 2009-08-28 11:51:25 -0700 | [diff] [blame] | 224 | int ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 225 | |
| 226 | /* |
Linus Torvalds | 5909ccaa | 2009-08-28 11:51:25 -0700 | [diff] [blame] | 227 | * Do the basic POSIX ACL permission checks. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 228 | */ |
Linus Torvalds | 5909ccaa | 2009-08-28 11:51:25 -0700 | [diff] [blame] | 229 | ret = acl_permission_check(inode, mask, check_acl); |
| 230 | if (ret != -EACCES) |
| 231 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 232 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 233 | /* |
| 234 | * Read/write DACs are always overridable. |
| 235 | * Executable DACs are overridable if at least one exec bit is set. |
| 236 | */ |
Miklos Szeredi | f696a36 | 2008-07-31 13:41:58 +0200 | [diff] [blame] | 237 | if (!(mask & MAY_EXEC) || execute_ok(inode)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 238 | if (capable(CAP_DAC_OVERRIDE)) |
| 239 | return 0; |
| 240 | |
| 241 | /* |
| 242 | * Searching includes executable on directories, else just read. |
| 243 | */ |
Serge E. Hallyn | 7ea6600 | 2009-12-29 14:50:19 -0600 | [diff] [blame] | 244 | mask &= MAY_READ | MAY_WRITE | MAY_EXEC; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 245 | if (mask == MAY_READ || (S_ISDIR(inode->i_mode) && !(mask & MAY_WRITE))) |
| 246 | if (capable(CAP_DAC_READ_SEARCH)) |
| 247 | return 0; |
| 248 | |
| 249 | return -EACCES; |
| 250 | } |
| 251 | |
Christoph Hellwig | cb23beb | 2008-10-24 09:59:29 +0200 | [diff] [blame] | 252 | /** |
| 253 | * inode_permission - check for access rights to a given inode |
| 254 | * @inode: inode to check permission on |
| 255 | * @mask: right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC) |
| 256 | * |
| 257 | * Used to check for read/write/execute permissions on an inode. |
| 258 | * We use "fsuid" for this, letting us set arbitrary permissions |
| 259 | * for filesystem access without changing the "normal" uids which |
| 260 | * are used for other things. |
| 261 | */ |
Al Viro | f419a2e | 2008-07-22 00:07:17 -0400 | [diff] [blame] | 262 | int inode_permission(struct inode *inode, int mask) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 263 | { |
Al Viro | e6305c4 | 2008-07-15 21:03:57 -0400 | [diff] [blame] | 264 | int retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 265 | |
| 266 | if (mask & MAY_WRITE) { |
Miklos Szeredi | 22590e4 | 2007-10-16 23:27:08 -0700 | [diff] [blame] | 267 | umode_t mode = inode->i_mode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 268 | |
| 269 | /* |
| 270 | * Nobody gets write access to a read-only fs. |
| 271 | */ |
| 272 | if (IS_RDONLY(inode) && |
| 273 | (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode))) |
| 274 | return -EROFS; |
| 275 | |
| 276 | /* |
| 277 | * Nobody gets write access to an immutable file. |
| 278 | */ |
| 279 | if (IS_IMMUTABLE(inode)) |
| 280 | return -EACCES; |
| 281 | } |
| 282 | |
Al Viro | acfa438 | 2008-12-04 10:06:33 -0500 | [diff] [blame] | 283 | if (inode->i_op->permission) |
Al Viro | b77b064 | 2008-07-17 09:37:02 -0400 | [diff] [blame] | 284 | retval = inode->i_op->permission(inode, mask); |
Miklos Szeredi | f696a36 | 2008-07-31 13:41:58 +0200 | [diff] [blame] | 285 | else |
Linus Torvalds | 5909ccaa | 2009-08-28 11:51:25 -0700 | [diff] [blame] | 286 | retval = generic_permission(inode, mask, inode->i_op->check_acl); |
Miklos Szeredi | f696a36 | 2008-07-31 13:41:58 +0200 | [diff] [blame] | 287 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 288 | if (retval) |
| 289 | return retval; |
| 290 | |
Serge E. Hallyn | 08ce5f1 | 2008-04-29 01:00:10 -0700 | [diff] [blame] | 291 | retval = devcgroup_inode_permission(inode, mask); |
| 292 | if (retval) |
| 293 | return retval; |
| 294 | |
Eric Paris | d09ca73 | 2010-07-23 11:43:57 -0400 | [diff] [blame] | 295 | return security_inode_permission(inode, mask); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 296 | } |
| 297 | |
Christoph Hellwig | e4543ed | 2005-11-08 21:35:04 -0800 | [diff] [blame] | 298 | /** |
Christoph Hellwig | 8c744fb | 2005-11-08 21:35:04 -0800 | [diff] [blame] | 299 | * file_permission - check for additional access rights to a given file |
| 300 | * @file: file to check access rights for |
| 301 | * @mask: right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC) |
| 302 | * |
| 303 | * Used to check for read/write/execute permissions on an already opened |
| 304 | * file. |
| 305 | * |
| 306 | * Note: |
| 307 | * Do not use this function in new code. All access checks should |
Christoph Hellwig | cb23beb | 2008-10-24 09:59:29 +0200 | [diff] [blame] | 308 | * be done using inode_permission(). |
Christoph Hellwig | 8c744fb | 2005-11-08 21:35:04 -0800 | [diff] [blame] | 309 | */ |
| 310 | int file_permission(struct file *file, int mask) |
| 311 | { |
Al Viro | f419a2e | 2008-07-22 00:07:17 -0400 | [diff] [blame] | 312 | return inode_permission(file->f_path.dentry->d_inode, mask); |
Christoph Hellwig | 8c744fb | 2005-11-08 21:35:04 -0800 | [diff] [blame] | 313 | } |
| 314 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 315 | /* |
| 316 | * get_write_access() gets write permission for a file. |
| 317 | * put_write_access() releases this write permission. |
| 318 | * This is used for regular files. |
| 319 | * We cannot support write (and maybe mmap read-write shared) accesses and |
| 320 | * MAP_DENYWRITE mmappings simultaneously. The i_writecount field of an inode |
| 321 | * can have the following values: |
| 322 | * 0: no writers, no VM_DENYWRITE mappings |
| 323 | * < 0: (-i_writecount) vm_area_structs with VM_DENYWRITE set exist |
| 324 | * > 0: (i_writecount) users are writing to the file. |
| 325 | * |
| 326 | * Normally we operate on that counter with atomic_{inc,dec} and it's safe |
| 327 | * except for the cases where we don't hold i_writecount yet. Then we need to |
| 328 | * use {get,deny}_write_access() - these functions check the sign and refuse |
| 329 | * to do the change if sign is wrong. Exclusion between them is provided by |
| 330 | * the inode->i_lock spinlock. |
| 331 | */ |
| 332 | |
| 333 | int get_write_access(struct inode * inode) |
| 334 | { |
| 335 | spin_lock(&inode->i_lock); |
| 336 | if (atomic_read(&inode->i_writecount) < 0) { |
| 337 | spin_unlock(&inode->i_lock); |
| 338 | return -ETXTBSY; |
| 339 | } |
| 340 | atomic_inc(&inode->i_writecount); |
| 341 | spin_unlock(&inode->i_lock); |
| 342 | |
| 343 | return 0; |
| 344 | } |
| 345 | |
| 346 | int deny_write_access(struct file * file) |
| 347 | { |
Josef "Jeff" Sipek | 0f7fc9e | 2006-12-08 02:36:35 -0800 | [diff] [blame] | 348 | struct inode *inode = file->f_path.dentry->d_inode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 349 | |
| 350 | spin_lock(&inode->i_lock); |
| 351 | if (atomic_read(&inode->i_writecount) > 0) { |
| 352 | spin_unlock(&inode->i_lock); |
| 353 | return -ETXTBSY; |
| 354 | } |
| 355 | atomic_dec(&inode->i_writecount); |
| 356 | spin_unlock(&inode->i_lock); |
| 357 | |
| 358 | return 0; |
| 359 | } |
| 360 | |
Jan Blunck | 1d957f9 | 2008-02-14 19:34:35 -0800 | [diff] [blame] | 361 | /** |
Jan Blunck | 5dd784d0 | 2008-02-14 19:34:38 -0800 | [diff] [blame] | 362 | * path_get - get a reference to a path |
| 363 | * @path: path to get the reference to |
| 364 | * |
| 365 | * Given a path increment the reference count to the dentry and the vfsmount. |
| 366 | */ |
| 367 | void path_get(struct path *path) |
| 368 | { |
| 369 | mntget(path->mnt); |
| 370 | dget(path->dentry); |
| 371 | } |
| 372 | EXPORT_SYMBOL(path_get); |
| 373 | |
| 374 | /** |
Jan Blunck | 1d957f9 | 2008-02-14 19:34:35 -0800 | [diff] [blame] | 375 | * path_put - put a reference to a path |
| 376 | * @path: path to put the reference to |
| 377 | * |
| 378 | * Given a path decrement the reference count to the dentry and the vfsmount. |
| 379 | */ |
| 380 | void path_put(struct path *path) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 381 | { |
Jan Blunck | 1d957f9 | 2008-02-14 19:34:35 -0800 | [diff] [blame] | 382 | dput(path->dentry); |
| 383 | mntput(path->mnt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 384 | } |
Jan Blunck | 1d957f9 | 2008-02-14 19:34:35 -0800 | [diff] [blame] | 385 | EXPORT_SYMBOL(path_put); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 386 | |
Trond Myklebust | 834f2a4 | 2005-10-18 14:20:16 -0700 | [diff] [blame] | 387 | /** |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 388 | * nameidata_drop_rcu - drop this nameidata out of rcu-walk |
| 389 | * @nd: nameidata pathwalk data to drop |
| 390 | * @Returns: 0 on success, -ECHLID on failure |
| 391 | * |
| 392 | * Path walking has 2 modes, rcu-walk and ref-walk (see |
| 393 | * Documentation/filesystems/path-lookup.txt). __drop_rcu* functions attempt |
| 394 | * to drop out of rcu-walk mode and take normal reference counts on dentries |
| 395 | * and vfsmounts to transition to rcu-walk mode. __drop_rcu* functions take |
| 396 | * refcounts at the last known good point before rcu-walk got stuck, so |
| 397 | * ref-walk may continue from there. If this is not successful (eg. a seqcount |
| 398 | * has changed), then failure is returned and path walk restarts from the |
| 399 | * beginning in ref-walk mode. |
| 400 | * |
| 401 | * nameidata_drop_rcu attempts to drop the current nd->path and nd->root into |
| 402 | * ref-walk. Must be called from rcu-walk context. |
| 403 | */ |
| 404 | static int nameidata_drop_rcu(struct nameidata *nd) |
| 405 | { |
| 406 | struct fs_struct *fs = current->fs; |
| 407 | struct dentry *dentry = nd->path.dentry; |
| 408 | |
| 409 | BUG_ON(!(nd->flags & LOOKUP_RCU)); |
| 410 | if (nd->root.mnt) { |
| 411 | spin_lock(&fs->lock); |
| 412 | if (nd->root.mnt != fs->root.mnt || |
| 413 | nd->root.dentry != fs->root.dentry) |
| 414 | goto err_root; |
| 415 | } |
| 416 | spin_lock(&dentry->d_lock); |
| 417 | if (!__d_rcu_to_refcount(dentry, nd->seq)) |
| 418 | goto err; |
| 419 | BUG_ON(nd->inode != dentry->d_inode); |
| 420 | spin_unlock(&dentry->d_lock); |
| 421 | if (nd->root.mnt) { |
| 422 | path_get(&nd->root); |
| 423 | spin_unlock(&fs->lock); |
| 424 | } |
| 425 | mntget(nd->path.mnt); |
| 426 | |
| 427 | rcu_read_unlock(); |
| 428 | br_read_unlock(vfsmount_lock); |
| 429 | nd->flags &= ~LOOKUP_RCU; |
| 430 | return 0; |
| 431 | err: |
| 432 | spin_unlock(&dentry->d_lock); |
| 433 | err_root: |
| 434 | if (nd->root.mnt) |
| 435 | spin_unlock(&fs->lock); |
| 436 | return -ECHILD; |
| 437 | } |
| 438 | |
| 439 | /* Try to drop out of rcu-walk mode if we were in it, otherwise do nothing. */ |
| 440 | static inline int nameidata_drop_rcu_maybe(struct nameidata *nd) |
| 441 | { |
| 442 | if (nd->flags & LOOKUP_RCU) |
| 443 | return nameidata_drop_rcu(nd); |
| 444 | return 0; |
| 445 | } |
| 446 | |
| 447 | /** |
| 448 | * nameidata_dentry_drop_rcu - drop nameidata and dentry out of rcu-walk |
| 449 | * @nd: nameidata pathwalk data to drop |
| 450 | * @dentry: dentry to drop |
| 451 | * @Returns: 0 on success, -ECHLID on failure |
| 452 | * |
| 453 | * nameidata_dentry_drop_rcu attempts to drop the current nd->path and nd->root, |
| 454 | * and dentry into ref-walk. @dentry must be a path found by a do_lookup call on |
| 455 | * @nd. Must be called from rcu-walk context. |
| 456 | */ |
| 457 | static int nameidata_dentry_drop_rcu(struct nameidata *nd, struct dentry *dentry) |
| 458 | { |
| 459 | struct fs_struct *fs = current->fs; |
| 460 | struct dentry *parent = nd->path.dentry; |
| 461 | |
| 462 | BUG_ON(!(nd->flags & LOOKUP_RCU)); |
| 463 | if (nd->root.mnt) { |
| 464 | spin_lock(&fs->lock); |
| 465 | if (nd->root.mnt != fs->root.mnt || |
| 466 | nd->root.dentry != fs->root.dentry) |
| 467 | goto err_root; |
| 468 | } |
| 469 | spin_lock(&parent->d_lock); |
| 470 | spin_lock_nested(&dentry->d_lock, DENTRY_D_LOCK_NESTED); |
| 471 | if (!__d_rcu_to_refcount(dentry, nd->seq)) |
| 472 | goto err; |
| 473 | /* |
| 474 | * If the sequence check on the child dentry passed, then the child has |
| 475 | * not been removed from its parent. This means the parent dentry must |
| 476 | * be valid and able to take a reference at this point. |
| 477 | */ |
| 478 | BUG_ON(!IS_ROOT(dentry) && dentry->d_parent != parent); |
| 479 | BUG_ON(!parent->d_count); |
| 480 | parent->d_count++; |
| 481 | spin_unlock(&dentry->d_lock); |
| 482 | spin_unlock(&parent->d_lock); |
| 483 | if (nd->root.mnt) { |
| 484 | path_get(&nd->root); |
| 485 | spin_unlock(&fs->lock); |
| 486 | } |
| 487 | mntget(nd->path.mnt); |
| 488 | |
| 489 | rcu_read_unlock(); |
| 490 | br_read_unlock(vfsmount_lock); |
| 491 | nd->flags &= ~LOOKUP_RCU; |
| 492 | return 0; |
| 493 | err: |
| 494 | spin_unlock(&dentry->d_lock); |
| 495 | spin_unlock(&parent->d_lock); |
| 496 | err_root: |
| 497 | if (nd->root.mnt) |
| 498 | spin_unlock(&fs->lock); |
| 499 | return -ECHILD; |
| 500 | } |
| 501 | |
| 502 | /* Try to drop out of rcu-walk mode if we were in it, otherwise do nothing. */ |
| 503 | static inline int nameidata_dentry_drop_rcu_maybe(struct nameidata *nd, struct dentry *dentry) |
| 504 | { |
| 505 | if (nd->flags & LOOKUP_RCU) |
| 506 | return nameidata_dentry_drop_rcu(nd, dentry); |
| 507 | return 0; |
| 508 | } |
| 509 | |
| 510 | /** |
| 511 | * nameidata_drop_rcu_last - drop nameidata ending path walk out of rcu-walk |
| 512 | * @nd: nameidata pathwalk data to drop |
| 513 | * @Returns: 0 on success, -ECHLID on failure |
| 514 | * |
| 515 | * nameidata_drop_rcu_last attempts to drop the current nd->path into ref-walk. |
| 516 | * nd->path should be the final element of the lookup, so nd->root is discarded. |
| 517 | * Must be called from rcu-walk context. |
| 518 | */ |
| 519 | static int nameidata_drop_rcu_last(struct nameidata *nd) |
| 520 | { |
| 521 | struct dentry *dentry = nd->path.dentry; |
| 522 | |
| 523 | BUG_ON(!(nd->flags & LOOKUP_RCU)); |
| 524 | nd->flags &= ~LOOKUP_RCU; |
| 525 | nd->root.mnt = NULL; |
| 526 | spin_lock(&dentry->d_lock); |
| 527 | if (!__d_rcu_to_refcount(dentry, nd->seq)) |
| 528 | goto err_unlock; |
| 529 | BUG_ON(nd->inode != dentry->d_inode); |
| 530 | spin_unlock(&dentry->d_lock); |
| 531 | |
| 532 | mntget(nd->path.mnt); |
| 533 | |
| 534 | rcu_read_unlock(); |
| 535 | br_read_unlock(vfsmount_lock); |
| 536 | |
| 537 | return 0; |
| 538 | |
| 539 | err_unlock: |
| 540 | spin_unlock(&dentry->d_lock); |
| 541 | rcu_read_unlock(); |
| 542 | br_read_unlock(vfsmount_lock); |
| 543 | return -ECHILD; |
| 544 | } |
| 545 | |
| 546 | /* Try to drop out of rcu-walk mode if we were in it, otherwise do nothing. */ |
| 547 | static inline int nameidata_drop_rcu_last_maybe(struct nameidata *nd) |
| 548 | { |
| 549 | if (likely(nd->flags & LOOKUP_RCU)) |
| 550 | return nameidata_drop_rcu_last(nd); |
| 551 | return 0; |
| 552 | } |
| 553 | |
| 554 | /** |
Trond Myklebust | 834f2a4 | 2005-10-18 14:20:16 -0700 | [diff] [blame] | 555 | * release_open_intent - free up open intent resources |
| 556 | * @nd: pointer to nameidata |
| 557 | */ |
| 558 | void release_open_intent(struct nameidata *nd) |
| 559 | { |
Josef "Jeff" Sipek | 0f7fc9e | 2006-12-08 02:36:35 -0800 | [diff] [blame] | 560 | if (nd->intent.open.file->f_path.dentry == NULL) |
Trond Myklebust | 834f2a4 | 2005-10-18 14:20:16 -0700 | [diff] [blame] | 561 | put_filp(nd->intent.open.file); |
| 562 | else |
| 563 | fput(nd->intent.open.file); |
| 564 | } |
| 565 | |
Nick Piggin | 34286d6 | 2011-01-07 17:49:57 +1100 | [diff] [blame^] | 566 | static int d_revalidate(struct dentry *dentry, struct nameidata *nd) |
| 567 | { |
| 568 | int status; |
| 569 | |
| 570 | status = dentry->d_op->d_revalidate(dentry, nd); |
| 571 | if (status == -ECHILD) { |
| 572 | if (nameidata_dentry_drop_rcu(nd, dentry)) |
| 573 | return status; |
| 574 | status = dentry->d_op->d_revalidate(dentry, nd); |
| 575 | } |
| 576 | |
| 577 | return status; |
| 578 | } |
| 579 | |
Ian Kent | bcdc5e0 | 2006-09-27 01:50:44 -0700 | [diff] [blame] | 580 | static inline struct dentry * |
| 581 | do_revalidate(struct dentry *dentry, struct nameidata *nd) |
| 582 | { |
Nick Piggin | 34286d6 | 2011-01-07 17:49:57 +1100 | [diff] [blame^] | 583 | int status; |
| 584 | |
| 585 | status = d_revalidate(dentry, nd); |
Ian Kent | bcdc5e0 | 2006-09-27 01:50:44 -0700 | [diff] [blame] | 586 | if (unlikely(status <= 0)) { |
| 587 | /* |
| 588 | * The dentry failed validation. |
| 589 | * If d_revalidate returned 0 attempt to invalidate |
| 590 | * the dentry otherwise d_revalidate is asking us |
| 591 | * to return a fail status. |
| 592 | */ |
Nick Piggin | 34286d6 | 2011-01-07 17:49:57 +1100 | [diff] [blame^] | 593 | if (status < 0) { |
| 594 | /* If we're in rcu-walk, we don't have a ref */ |
| 595 | if (!(nd->flags & LOOKUP_RCU)) |
| 596 | dput(dentry); |
| 597 | dentry = ERR_PTR(status); |
| 598 | |
| 599 | } else { |
| 600 | /* Don't d_invalidate in rcu-walk mode */ |
| 601 | if (nameidata_dentry_drop_rcu_maybe(nd, dentry)) |
| 602 | return ERR_PTR(-ECHILD); |
Ian Kent | bcdc5e0 | 2006-09-27 01:50:44 -0700 | [diff] [blame] | 603 | if (!d_invalidate(dentry)) { |
| 604 | dput(dentry); |
| 605 | dentry = NULL; |
| 606 | } |
Ian Kent | bcdc5e0 | 2006-09-27 01:50:44 -0700 | [diff] [blame] | 607 | } |
| 608 | } |
| 609 | return dentry; |
| 610 | } |
| 611 | |
Nick Piggin | fb045ad | 2011-01-07 17:49:55 +1100 | [diff] [blame] | 612 | static inline int need_reval_dot(struct dentry *dentry) |
| 613 | { |
| 614 | if (likely(!(dentry->d_flags & DCACHE_OP_REVALIDATE))) |
| 615 | return 0; |
| 616 | |
| 617 | if (likely(!(dentry->d_sb->s_type->fs_flags & FS_REVAL_DOT))) |
| 618 | return 0; |
| 619 | |
| 620 | return 1; |
| 621 | } |
| 622 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 623 | /* |
Jeff Layton | 39159de | 2009-12-07 12:01:50 -0500 | [diff] [blame] | 624 | * force_reval_path - force revalidation of a dentry |
| 625 | * |
| 626 | * In some situations the path walking code will trust dentries without |
| 627 | * revalidating them. This causes problems for filesystems that depend on |
| 628 | * d_revalidate to handle file opens (e.g. NFSv4). When FS_REVAL_DOT is set |
| 629 | * (which indicates that it's possible for the dentry to go stale), force |
| 630 | * a d_revalidate call before proceeding. |
| 631 | * |
| 632 | * Returns 0 if the revalidation was successful. If the revalidation fails, |
| 633 | * either return the error returned by d_revalidate or -ESTALE if the |
| 634 | * revalidation it just returned 0. If d_revalidate returns 0, we attempt to |
| 635 | * invalidate the dentry. It's up to the caller to handle putting references |
| 636 | * to the path if necessary. |
| 637 | */ |
| 638 | static int |
| 639 | force_reval_path(struct path *path, struct nameidata *nd) |
| 640 | { |
| 641 | int status; |
| 642 | struct dentry *dentry = path->dentry; |
| 643 | |
| 644 | /* |
| 645 | * only check on filesystems where it's possible for the dentry to |
Nick Piggin | fb045ad | 2011-01-07 17:49:55 +1100 | [diff] [blame] | 646 | * become stale. |
Jeff Layton | 39159de | 2009-12-07 12:01:50 -0500 | [diff] [blame] | 647 | */ |
Nick Piggin | fb045ad | 2011-01-07 17:49:55 +1100 | [diff] [blame] | 648 | if (!need_reval_dot(dentry)) |
Jeff Layton | 39159de | 2009-12-07 12:01:50 -0500 | [diff] [blame] | 649 | return 0; |
| 650 | |
Nick Piggin | 34286d6 | 2011-01-07 17:49:57 +1100 | [diff] [blame^] | 651 | status = d_revalidate(dentry, nd); |
Jeff Layton | 39159de | 2009-12-07 12:01:50 -0500 | [diff] [blame] | 652 | if (status > 0) |
| 653 | return 0; |
| 654 | |
| 655 | if (!status) { |
| 656 | d_invalidate(dentry); |
| 657 | status = -ESTALE; |
| 658 | } |
| 659 | return status; |
| 660 | } |
| 661 | |
| 662 | /* |
Al Viro | b75b508 | 2009-12-16 01:01:38 -0500 | [diff] [blame] | 663 | * Short-cut version of permission(), for calling on directories |
| 664 | * during pathname resolution. Combines parts of permission() |
| 665 | * and generic_permission(), and tests ONLY for MAY_EXEC permission. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 666 | * |
| 667 | * If appropriate, check DAC only. If not appropriate, or |
Al Viro | b75b508 | 2009-12-16 01:01:38 -0500 | [diff] [blame] | 668 | * short-cut DAC fails, then call ->permission() to do more |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 669 | * complete permission check. |
| 670 | */ |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 671 | static inline int __exec_permission(struct inode *inode, int rcu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 672 | { |
Linus Torvalds | 5909ccaa | 2009-08-28 11:51:25 -0700 | [diff] [blame] | 673 | int ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 674 | |
Linus Torvalds | cb9179e | 2009-08-28 11:08:31 -0700 | [diff] [blame] | 675 | if (inode->i_op->permission) { |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 676 | if (rcu) |
| 677 | return -ECHILD; |
Linus Torvalds | 5909ccaa | 2009-08-28 11:51:25 -0700 | [diff] [blame] | 678 | ret = inode->i_op->permission(inode, MAY_EXEC); |
Linus Torvalds | cb9179e | 2009-08-28 11:08:31 -0700 | [diff] [blame] | 679 | if (!ret) |
| 680 | goto ok; |
| 681 | return ret; |
| 682 | } |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 683 | ret = __acl_permission_check(inode, MAY_EXEC, inode->i_op->check_acl, rcu); |
Linus Torvalds | 5909ccaa | 2009-08-28 11:51:25 -0700 | [diff] [blame] | 684 | if (!ret) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 685 | goto ok; |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 686 | if (rcu && ret == -ECHILD) |
| 687 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 688 | |
Linus Torvalds | f1ac9f6 | 2009-08-28 10:53:56 -0700 | [diff] [blame] | 689 | if (capable(CAP_DAC_OVERRIDE) || capable(CAP_DAC_READ_SEARCH)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 690 | goto ok; |
| 691 | |
Linus Torvalds | 5909ccaa | 2009-08-28 11:51:25 -0700 | [diff] [blame] | 692 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 693 | ok: |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 694 | return security_inode_exec_permission(inode, rcu); |
| 695 | } |
| 696 | |
| 697 | static int exec_permission(struct inode *inode) |
| 698 | { |
| 699 | return __exec_permission(inode, 0); |
| 700 | } |
| 701 | |
| 702 | static int exec_permission_rcu(struct inode *inode) |
| 703 | { |
| 704 | return __exec_permission(inode, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 705 | } |
| 706 | |
Al Viro | 2a73787 | 2009-04-07 11:49:53 -0400 | [diff] [blame] | 707 | static __always_inline void set_root(struct nameidata *nd) |
| 708 | { |
Miklos Szeredi | f7ad3c6 | 2010-08-10 11:41:36 +0200 | [diff] [blame] | 709 | if (!nd->root.mnt) |
| 710 | get_fs_root(current->fs, &nd->root); |
Al Viro | 2a73787 | 2009-04-07 11:49:53 -0400 | [diff] [blame] | 711 | } |
| 712 | |
Al Viro | 6de88d7 | 2009-08-09 01:41:57 +0400 | [diff] [blame] | 713 | static int link_path_walk(const char *, struct nameidata *); |
| 714 | |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 715 | static __always_inline void set_root_rcu(struct nameidata *nd) |
| 716 | { |
| 717 | if (!nd->root.mnt) { |
| 718 | struct fs_struct *fs = current->fs; |
Nick Piggin | c28cc36 | 2011-01-07 17:49:53 +1100 | [diff] [blame] | 719 | unsigned seq; |
| 720 | |
| 721 | do { |
| 722 | seq = read_seqcount_begin(&fs->seq); |
| 723 | nd->root = fs->root; |
| 724 | } while (read_seqcount_retry(&fs->seq, seq)); |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 725 | } |
| 726 | } |
| 727 | |
Arjan van de Ven | f166235 | 2006-01-14 13:21:31 -0800 | [diff] [blame] | 728 | static __always_inline int __vfs_follow_link(struct nameidata *nd, const char *link) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 729 | { |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 730 | int ret; |
| 731 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 732 | if (IS_ERR(link)) |
| 733 | goto fail; |
| 734 | |
| 735 | if (*link == '/') { |
Al Viro | 2a73787 | 2009-04-07 11:49:53 -0400 | [diff] [blame] | 736 | set_root(nd); |
Jan Blunck | 1d957f9 | 2008-02-14 19:34:35 -0800 | [diff] [blame] | 737 | path_put(&nd->path); |
Al Viro | 2a73787 | 2009-04-07 11:49:53 -0400 | [diff] [blame] | 738 | nd->path = nd->root; |
| 739 | path_get(&nd->root); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 740 | } |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 741 | nd->inode = nd->path.dentry->d_inode; |
Christoph Hellwig | b4091d5 | 2008-11-05 15:07:21 +0100 | [diff] [blame] | 742 | |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 743 | ret = link_path_walk(link, nd); |
| 744 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 745 | fail: |
Jan Blunck | 1d957f9 | 2008-02-14 19:34:35 -0800 | [diff] [blame] | 746 | path_put(&nd->path); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 747 | return PTR_ERR(link); |
| 748 | } |
| 749 | |
Jan Blunck | 1d957f9 | 2008-02-14 19:34:35 -0800 | [diff] [blame] | 750 | static void path_put_conditional(struct path *path, struct nameidata *nd) |
Miklos Szeredi | 09dd17d | 2005-09-06 15:18:21 -0700 | [diff] [blame] | 751 | { |
| 752 | dput(path->dentry); |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 753 | if (path->mnt != nd->path.mnt) |
Miklos Szeredi | 09dd17d | 2005-09-06 15:18:21 -0700 | [diff] [blame] | 754 | mntput(path->mnt); |
| 755 | } |
| 756 | |
| 757 | static inline void path_to_nameidata(struct path *path, struct nameidata *nd) |
| 758 | { |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 759 | if (!(nd->flags & LOOKUP_RCU)) { |
| 760 | dput(nd->path.dentry); |
| 761 | if (nd->path.mnt != path->mnt) |
| 762 | mntput(nd->path.mnt); |
Huang Shijie | 9a22968 | 2010-04-02 17:37:13 +0800 | [diff] [blame] | 763 | } |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 764 | nd->path.mnt = path->mnt; |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 765 | nd->path.dentry = path->dentry; |
Miklos Szeredi | 09dd17d | 2005-09-06 15:18:21 -0700 | [diff] [blame] | 766 | } |
| 767 | |
Al Viro | def4af3 | 2009-12-26 08:37:05 -0500 | [diff] [blame] | 768 | static __always_inline int |
| 769 | __do_follow_link(struct path *path, struct nameidata *nd, void **p) |
Ian Kent | 051d381 | 2006-03-27 01:14:53 -0800 | [diff] [blame] | 770 | { |
| 771 | int error; |
Ian Kent | 051d381 | 2006-03-27 01:14:53 -0800 | [diff] [blame] | 772 | struct dentry *dentry = path->dentry; |
| 773 | |
| 774 | touch_atime(path->mnt, dentry); |
| 775 | nd_set_link(nd, NULL); |
| 776 | |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 777 | if (path->mnt != nd->path.mnt) { |
Ian Kent | 051d381 | 2006-03-27 01:14:53 -0800 | [diff] [blame] | 778 | path_to_nameidata(path, nd); |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 779 | nd->inode = nd->path.dentry->d_inode; |
Ian Kent | 051d381 | 2006-03-27 01:14:53 -0800 | [diff] [blame] | 780 | dget(dentry); |
| 781 | } |
| 782 | mntget(path->mnt); |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 783 | |
Al Viro | 86acdca1 | 2009-12-22 23:45:11 -0500 | [diff] [blame] | 784 | nd->last_type = LAST_BIND; |
Al Viro | def4af3 | 2009-12-26 08:37:05 -0500 | [diff] [blame] | 785 | *p = dentry->d_inode->i_op->follow_link(dentry, nd); |
| 786 | error = PTR_ERR(*p); |
| 787 | if (!IS_ERR(*p)) { |
Ian Kent | 051d381 | 2006-03-27 01:14:53 -0800 | [diff] [blame] | 788 | char *s = nd_get_link(nd); |
| 789 | error = 0; |
| 790 | if (s) |
| 791 | error = __vfs_follow_link(nd, s); |
Jeff Layton | 39159de | 2009-12-07 12:01:50 -0500 | [diff] [blame] | 792 | else if (nd->last_type == LAST_BIND) { |
| 793 | error = force_reval_path(&nd->path, nd); |
| 794 | if (error) |
| 795 | path_put(&nd->path); |
| 796 | } |
Ian Kent | 051d381 | 2006-03-27 01:14:53 -0800 | [diff] [blame] | 797 | } |
Ian Kent | 051d381 | 2006-03-27 01:14:53 -0800 | [diff] [blame] | 798 | return error; |
| 799 | } |
| 800 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 801 | /* |
| 802 | * This limits recursive symlink follows to 8, while |
| 803 | * limiting consecutive symlinks to 40. |
| 804 | * |
| 805 | * Without that kind of total limit, nasty chains of consecutive |
| 806 | * symlinks can cause almost arbitrarily long lookups. |
| 807 | */ |
Al Viro | 90ebe56 | 2005-06-06 13:35:58 -0700 | [diff] [blame] | 808 | static inline int do_follow_link(struct path *path, struct nameidata *nd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 809 | { |
Al Viro | def4af3 | 2009-12-26 08:37:05 -0500 | [diff] [blame] | 810 | void *cookie; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 811 | int err = -ELOOP; |
| 812 | if (current->link_count >= MAX_NESTED_LINKS) |
| 813 | goto loop; |
| 814 | if (current->total_link_count >= 40) |
| 815 | goto loop; |
| 816 | BUG_ON(nd->depth >= MAX_NESTED_LINKS); |
| 817 | cond_resched(); |
Al Viro | 90ebe56 | 2005-06-06 13:35:58 -0700 | [diff] [blame] | 818 | err = security_inode_follow_link(path->dentry, nd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 819 | if (err) |
| 820 | goto loop; |
| 821 | current->link_count++; |
| 822 | current->total_link_count++; |
| 823 | nd->depth++; |
Al Viro | def4af3 | 2009-12-26 08:37:05 -0500 | [diff] [blame] | 824 | err = __do_follow_link(path, nd, &cookie); |
| 825 | if (!IS_ERR(cookie) && path->dentry->d_inode->i_op->put_link) |
| 826 | path->dentry->d_inode->i_op->put_link(path->dentry, nd, cookie); |
Al Viro | 258fa99 | 2009-08-09 01:32:02 +0400 | [diff] [blame] | 827 | path_put(path); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 828 | current->link_count--; |
| 829 | nd->depth--; |
| 830 | return err; |
| 831 | loop: |
Jan Blunck | 1d957f9 | 2008-02-14 19:34:35 -0800 | [diff] [blame] | 832 | path_put_conditional(path, nd); |
| 833 | path_put(&nd->path); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 834 | return err; |
| 835 | } |
| 836 | |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 837 | static int follow_up_rcu(struct path *path) |
| 838 | { |
| 839 | struct vfsmount *parent; |
| 840 | struct dentry *mountpoint; |
| 841 | |
| 842 | parent = path->mnt->mnt_parent; |
| 843 | if (parent == path->mnt) |
| 844 | return 0; |
| 845 | mountpoint = path->mnt->mnt_mountpoint; |
| 846 | path->dentry = mountpoint; |
| 847 | path->mnt = parent; |
| 848 | return 1; |
| 849 | } |
| 850 | |
Al Viro | bab77eb | 2009-04-18 03:26:48 -0400 | [diff] [blame] | 851 | int follow_up(struct path *path) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 852 | { |
| 853 | struct vfsmount *parent; |
| 854 | struct dentry *mountpoint; |
Nick Piggin | 99b7db7 | 2010-08-18 04:37:39 +1000 | [diff] [blame] | 855 | |
| 856 | br_read_lock(vfsmount_lock); |
Al Viro | bab77eb | 2009-04-18 03:26:48 -0400 | [diff] [blame] | 857 | parent = path->mnt->mnt_parent; |
| 858 | if (parent == path->mnt) { |
Nick Piggin | 99b7db7 | 2010-08-18 04:37:39 +1000 | [diff] [blame] | 859 | br_read_unlock(vfsmount_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 860 | return 0; |
| 861 | } |
| 862 | mntget(parent); |
Al Viro | bab77eb | 2009-04-18 03:26:48 -0400 | [diff] [blame] | 863 | mountpoint = dget(path->mnt->mnt_mountpoint); |
Nick Piggin | 99b7db7 | 2010-08-18 04:37:39 +1000 | [diff] [blame] | 864 | br_read_unlock(vfsmount_lock); |
Al Viro | bab77eb | 2009-04-18 03:26:48 -0400 | [diff] [blame] | 865 | dput(path->dentry); |
| 866 | path->dentry = mountpoint; |
| 867 | mntput(path->mnt); |
| 868 | path->mnt = parent; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 869 | return 1; |
| 870 | } |
| 871 | |
Nick Piggin | b5c84bf | 2011-01-07 17:49:38 +1100 | [diff] [blame] | 872 | /* |
| 873 | * serialization is taken care of in namespace.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 874 | */ |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 875 | static void __follow_mount_rcu(struct nameidata *nd, struct path *path, |
| 876 | struct inode **inode) |
| 877 | { |
| 878 | while (d_mountpoint(path->dentry)) { |
| 879 | struct vfsmount *mounted; |
| 880 | mounted = __lookup_mnt(path->mnt, path->dentry, 1); |
| 881 | if (!mounted) |
| 882 | return; |
| 883 | path->mnt = mounted; |
| 884 | path->dentry = mounted->mnt_root; |
| 885 | nd->seq = read_seqcount_begin(&path->dentry->d_seq); |
| 886 | *inode = path->dentry->d_inode; |
| 887 | } |
| 888 | } |
| 889 | |
Al Viro | 463ffb2 | 2005-06-06 13:36:05 -0700 | [diff] [blame] | 890 | static int __follow_mount(struct path *path) |
| 891 | { |
| 892 | int res = 0; |
| 893 | while (d_mountpoint(path->dentry)) { |
Al Viro | 1c755af | 2009-04-18 14:06:57 -0400 | [diff] [blame] | 894 | struct vfsmount *mounted = lookup_mnt(path); |
Al Viro | 463ffb2 | 2005-06-06 13:36:05 -0700 | [diff] [blame] | 895 | if (!mounted) |
| 896 | break; |
| 897 | dput(path->dentry); |
| 898 | if (res) |
| 899 | mntput(path->mnt); |
| 900 | path->mnt = mounted; |
| 901 | path->dentry = dget(mounted->mnt_root); |
| 902 | res = 1; |
| 903 | } |
| 904 | return res; |
| 905 | } |
| 906 | |
Al Viro | 79ed022 | 2009-04-18 13:59:41 -0400 | [diff] [blame] | 907 | static void follow_mount(struct path *path) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 908 | { |
Al Viro | 79ed022 | 2009-04-18 13:59:41 -0400 | [diff] [blame] | 909 | while (d_mountpoint(path->dentry)) { |
Al Viro | 1c755af | 2009-04-18 14:06:57 -0400 | [diff] [blame] | 910 | struct vfsmount *mounted = lookup_mnt(path); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 911 | if (!mounted) |
| 912 | break; |
Al Viro | 79ed022 | 2009-04-18 13:59:41 -0400 | [diff] [blame] | 913 | dput(path->dentry); |
| 914 | mntput(path->mnt); |
| 915 | path->mnt = mounted; |
| 916 | path->dentry = dget(mounted->mnt_root); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 917 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 918 | } |
| 919 | |
Al Viro | 9393bd0 | 2009-04-18 13:58:15 -0400 | [diff] [blame] | 920 | int follow_down(struct path *path) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 921 | { |
| 922 | struct vfsmount *mounted; |
| 923 | |
Al Viro | 1c755af | 2009-04-18 14:06:57 -0400 | [diff] [blame] | 924 | mounted = lookup_mnt(path); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 925 | if (mounted) { |
Al Viro | 9393bd0 | 2009-04-18 13:58:15 -0400 | [diff] [blame] | 926 | dput(path->dentry); |
| 927 | mntput(path->mnt); |
| 928 | path->mnt = mounted; |
| 929 | path->dentry = dget(mounted->mnt_root); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 930 | return 1; |
| 931 | } |
| 932 | return 0; |
| 933 | } |
| 934 | |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 935 | static int follow_dotdot_rcu(struct nameidata *nd) |
| 936 | { |
| 937 | struct inode *inode = nd->inode; |
| 938 | |
| 939 | set_root_rcu(nd); |
| 940 | |
| 941 | while(1) { |
| 942 | if (nd->path.dentry == nd->root.dentry && |
| 943 | nd->path.mnt == nd->root.mnt) { |
| 944 | break; |
| 945 | } |
| 946 | if (nd->path.dentry != nd->path.mnt->mnt_root) { |
| 947 | struct dentry *old = nd->path.dentry; |
| 948 | struct dentry *parent = old->d_parent; |
| 949 | unsigned seq; |
| 950 | |
| 951 | seq = read_seqcount_begin(&parent->d_seq); |
| 952 | if (read_seqcount_retry(&old->d_seq, nd->seq)) |
| 953 | return -ECHILD; |
| 954 | inode = parent->d_inode; |
| 955 | nd->path.dentry = parent; |
| 956 | nd->seq = seq; |
| 957 | break; |
| 958 | } |
| 959 | if (!follow_up_rcu(&nd->path)) |
| 960 | break; |
| 961 | nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq); |
| 962 | inode = nd->path.dentry->d_inode; |
| 963 | } |
| 964 | __follow_mount_rcu(nd, &nd->path, &inode); |
| 965 | nd->inode = inode; |
| 966 | |
| 967 | return 0; |
| 968 | } |
| 969 | |
| 970 | static void follow_dotdot(struct nameidata *nd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 971 | { |
Al Viro | 2a73787 | 2009-04-07 11:49:53 -0400 | [diff] [blame] | 972 | set_root(nd); |
Andreas Mohr | e518ddb | 2006-09-29 02:01:22 -0700 | [diff] [blame] | 973 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 974 | while(1) { |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 975 | struct dentry *old = nd->path.dentry; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 976 | |
Al Viro | 2a73787 | 2009-04-07 11:49:53 -0400 | [diff] [blame] | 977 | if (nd->path.dentry == nd->root.dentry && |
| 978 | nd->path.mnt == nd->root.mnt) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 979 | break; |
| 980 | } |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 981 | if (nd->path.dentry != nd->path.mnt->mnt_root) { |
Al Viro | 3088dd7 | 2010-01-30 15:47:29 -0500 | [diff] [blame] | 982 | /* rare case of legitimate dget_parent()... */ |
| 983 | nd->path.dentry = dget_parent(nd->path.dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 984 | dput(old); |
| 985 | break; |
| 986 | } |
Al Viro | 3088dd7 | 2010-01-30 15:47:29 -0500 | [diff] [blame] | 987 | if (!follow_up(&nd->path)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 988 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 989 | } |
Al Viro | 79ed022 | 2009-04-18 13:59:41 -0400 | [diff] [blame] | 990 | follow_mount(&nd->path); |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 991 | nd->inode = nd->path.dentry->d_inode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 992 | } |
| 993 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 994 | /* |
Nick Piggin | baa0389 | 2010-08-18 04:37:31 +1000 | [diff] [blame] | 995 | * Allocate a dentry with name and parent, and perform a parent |
| 996 | * directory ->lookup on it. Returns the new dentry, or ERR_PTR |
| 997 | * on error. parent->d_inode->i_mutex must be held. d_lookup must |
| 998 | * have verified that no child exists while under i_mutex. |
| 999 | */ |
| 1000 | static struct dentry *d_alloc_and_lookup(struct dentry *parent, |
| 1001 | struct qstr *name, struct nameidata *nd) |
| 1002 | { |
| 1003 | struct inode *inode = parent->d_inode; |
| 1004 | struct dentry *dentry; |
| 1005 | struct dentry *old; |
| 1006 | |
| 1007 | /* Don't create child dentry for a dead directory. */ |
| 1008 | if (unlikely(IS_DEADDIR(inode))) |
| 1009 | return ERR_PTR(-ENOENT); |
| 1010 | |
| 1011 | dentry = d_alloc(parent, name); |
| 1012 | if (unlikely(!dentry)) |
| 1013 | return ERR_PTR(-ENOMEM); |
| 1014 | |
| 1015 | old = inode->i_op->lookup(inode, dentry, nd); |
| 1016 | if (unlikely(old)) { |
| 1017 | dput(dentry); |
| 1018 | dentry = old; |
| 1019 | } |
| 1020 | return dentry; |
| 1021 | } |
| 1022 | |
| 1023 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1024 | * It's more convoluted than I'd like it to be, but... it's still fairly |
| 1025 | * small and for now I'd prefer to have fast path as straight as possible. |
| 1026 | * It _is_ time-critical. |
| 1027 | */ |
| 1028 | static int do_lookup(struct nameidata *nd, struct qstr *name, |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1029 | struct path *path, struct inode **inode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1030 | { |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 1031 | struct vfsmount *mnt = nd->path.mnt; |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1032 | struct dentry *dentry, *parent = nd->path.dentry; |
Al Viro | 6e6b1bd | 2009-08-13 23:38:37 +0400 | [diff] [blame] | 1033 | struct inode *dir; |
Al Viro | 3cac260 | 2009-08-13 18:27:43 +0400 | [diff] [blame] | 1034 | /* |
| 1035 | * See if the low-level filesystem might want |
| 1036 | * to use its own hash.. |
| 1037 | */ |
Nick Piggin | fb045ad | 2011-01-07 17:49:55 +1100 | [diff] [blame] | 1038 | if (unlikely(parent->d_flags & DCACHE_OP_HASH)) { |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1039 | int err = parent->d_op->d_hash(parent, nd->inode, name); |
Al Viro | 3cac260 | 2009-08-13 18:27:43 +0400 | [diff] [blame] | 1040 | if (err < 0) |
| 1041 | return err; |
| 1042 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1043 | |
Nick Piggin | b04f784 | 2010-08-18 04:37:34 +1000 | [diff] [blame] | 1044 | /* |
| 1045 | * Rename seqlock is not required here because in the off chance |
| 1046 | * of a false negative due to a concurrent rename, we're going to |
| 1047 | * do the non-racy lookup, below. |
| 1048 | */ |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1049 | if (nd->flags & LOOKUP_RCU) { |
| 1050 | unsigned seq; |
| 1051 | |
| 1052 | *inode = nd->inode; |
| 1053 | dentry = __d_lookup_rcu(parent, name, &seq, inode); |
| 1054 | if (!dentry) { |
| 1055 | if (nameidata_drop_rcu(nd)) |
| 1056 | return -ECHILD; |
| 1057 | goto need_lookup; |
| 1058 | } |
| 1059 | /* Memory barrier in read_seqcount_begin of child is enough */ |
| 1060 | if (__read_seqcount_retry(&parent->d_seq, nd->seq)) |
| 1061 | return -ECHILD; |
| 1062 | |
| 1063 | nd->seq = seq; |
Nick Piggin | 34286d6 | 2011-01-07 17:49:57 +1100 | [diff] [blame^] | 1064 | if (dentry->d_flags & DCACHE_OP_REVALIDATE) |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1065 | goto need_revalidate; |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1066 | path->mnt = mnt; |
| 1067 | path->dentry = dentry; |
| 1068 | __follow_mount_rcu(nd, path, inode); |
| 1069 | } else { |
| 1070 | dentry = __d_lookup(parent, name); |
| 1071 | if (!dentry) |
| 1072 | goto need_lookup; |
Nick Piggin | 2e2e88e | 2010-08-18 04:37:30 +1000 | [diff] [blame] | 1073 | found: |
Nick Piggin | fb045ad | 2011-01-07 17:49:55 +1100 | [diff] [blame] | 1074 | if (dentry->d_flags & DCACHE_OP_REVALIDATE) |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1075 | goto need_revalidate; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1076 | done: |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1077 | path->mnt = mnt; |
| 1078 | path->dentry = dentry; |
| 1079 | __follow_mount(path); |
| 1080 | *inode = path->dentry->d_inode; |
| 1081 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1082 | return 0; |
| 1083 | |
| 1084 | need_lookup: |
Al Viro | 6e6b1bd | 2009-08-13 23:38:37 +0400 | [diff] [blame] | 1085 | dir = parent->d_inode; |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1086 | BUG_ON(nd->inode != dir); |
Al Viro | 6e6b1bd | 2009-08-13 23:38:37 +0400 | [diff] [blame] | 1087 | |
| 1088 | mutex_lock(&dir->i_mutex); |
| 1089 | /* |
| 1090 | * First re-do the cached lookup just in case it was created |
Nick Piggin | b04f784 | 2010-08-18 04:37:34 +1000 | [diff] [blame] | 1091 | * while we waited for the directory semaphore, or the first |
| 1092 | * lookup failed due to an unrelated rename. |
Al Viro | 6e6b1bd | 2009-08-13 23:38:37 +0400 | [diff] [blame] | 1093 | * |
Nick Piggin | b04f784 | 2010-08-18 04:37:34 +1000 | [diff] [blame] | 1094 | * This could use version numbering or similar to avoid unnecessary |
| 1095 | * cache lookups, but then we'd have to do the first lookup in the |
| 1096 | * non-racy way. However in the common case here, everything should |
| 1097 | * be hot in cache, so would it be a big win? |
Al Viro | 6e6b1bd | 2009-08-13 23:38:37 +0400 | [diff] [blame] | 1098 | */ |
| 1099 | dentry = d_lookup(parent, name); |
Nick Piggin | baa0389 | 2010-08-18 04:37:31 +1000 | [diff] [blame] | 1100 | if (likely(!dentry)) { |
| 1101 | dentry = d_alloc_and_lookup(parent, name, nd); |
Al Viro | 6e6b1bd | 2009-08-13 23:38:37 +0400 | [diff] [blame] | 1102 | mutex_unlock(&dir->i_mutex); |
| 1103 | if (IS_ERR(dentry)) |
| 1104 | goto fail; |
| 1105 | goto done; |
| 1106 | } |
Al Viro | 6e6b1bd | 2009-08-13 23:38:37 +0400 | [diff] [blame] | 1107 | /* |
| 1108 | * Uhhuh! Nasty case: the cache was re-populated while |
| 1109 | * we waited on the semaphore. Need to revalidate. |
| 1110 | */ |
| 1111 | mutex_unlock(&dir->i_mutex); |
Nick Piggin | 2e2e88e | 2010-08-18 04:37:30 +1000 | [diff] [blame] | 1112 | goto found; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1113 | |
| 1114 | need_revalidate: |
Ian Kent | bcdc5e0 | 2006-09-27 01:50:44 -0700 | [diff] [blame] | 1115 | dentry = do_revalidate(dentry, nd); |
| 1116 | if (!dentry) |
| 1117 | goto need_lookup; |
| 1118 | if (IS_ERR(dentry)) |
| 1119 | goto fail; |
| 1120 | goto done; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1121 | |
| 1122 | fail: |
| 1123 | return PTR_ERR(dentry); |
| 1124 | } |
| 1125 | |
| 1126 | /* |
Al Viro | ac278a9 | 2010-02-16 18:09:36 +0000 | [diff] [blame] | 1127 | * This is a temporary kludge to deal with "automount" symlinks; proper |
| 1128 | * solution is to trigger them on follow_mount(), so that do_lookup() |
| 1129 | * would DTRT. To be killed before 2.6.34-final. |
| 1130 | */ |
| 1131 | static inline int follow_on_final(struct inode *inode, unsigned lookup_flags) |
| 1132 | { |
| 1133 | return inode && unlikely(inode->i_op->follow_link) && |
| 1134 | ((lookup_flags & LOOKUP_FOLLOW) || S_ISDIR(inode->i_mode)); |
| 1135 | } |
| 1136 | |
| 1137 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1138 | * Name resolution. |
Prasanna Meda | ea3834d | 2005-04-29 16:00:17 +0100 | [diff] [blame] | 1139 | * This is the basic name resolution function, turning a pathname into |
| 1140 | * the final dentry. We expect 'base' to be positive and a directory. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1141 | * |
Prasanna Meda | ea3834d | 2005-04-29 16:00:17 +0100 | [diff] [blame] | 1142 | * Returns 0 and nd will have valid dentry and mnt on success. |
| 1143 | * Returns error and drops reference to input namei data on failure. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1144 | */ |
Al Viro | 6de88d7 | 2009-08-09 01:41:57 +0400 | [diff] [blame] | 1145 | static int link_path_walk(const char *name, struct nameidata *nd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1146 | { |
| 1147 | struct path next; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1148 | int err; |
| 1149 | unsigned int lookup_flags = nd->flags; |
| 1150 | |
| 1151 | while (*name=='/') |
| 1152 | name++; |
| 1153 | if (!*name) |
| 1154 | goto return_reval; |
| 1155 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1156 | if (nd->depth) |
Trond Myklebust | f55eab8 | 2006-02-04 23:28:01 -0800 | [diff] [blame] | 1157 | lookup_flags = LOOKUP_FOLLOW | (nd->flags & LOOKUP_CONTINUE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1158 | |
| 1159 | /* At this point we know we have a real path component. */ |
| 1160 | for(;;) { |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1161 | struct inode *inode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1162 | unsigned long hash; |
| 1163 | struct qstr this; |
| 1164 | unsigned int c; |
| 1165 | |
Trond Myklebust | cdce5d6 | 2005-10-18 14:20:18 -0700 | [diff] [blame] | 1166 | nd->flags |= LOOKUP_CONTINUE; |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1167 | if (nd->flags & LOOKUP_RCU) { |
| 1168 | err = exec_permission_rcu(nd->inode); |
| 1169 | if (err == -ECHILD) { |
| 1170 | if (nameidata_drop_rcu(nd)) |
| 1171 | return -ECHILD; |
| 1172 | goto exec_again; |
| 1173 | } |
| 1174 | } else { |
| 1175 | exec_again: |
| 1176 | err = exec_permission(nd->inode); |
| 1177 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1178 | if (err) |
| 1179 | break; |
| 1180 | |
| 1181 | this.name = name; |
| 1182 | c = *(const unsigned char *)name; |
| 1183 | |
| 1184 | hash = init_name_hash(); |
| 1185 | do { |
| 1186 | name++; |
| 1187 | hash = partial_name_hash(c, hash); |
| 1188 | c = *(const unsigned char *)name; |
| 1189 | } while (c && (c != '/')); |
| 1190 | this.len = name - (const char *) this.name; |
| 1191 | this.hash = end_name_hash(hash); |
| 1192 | |
| 1193 | /* remove trailing slashes? */ |
| 1194 | if (!c) |
| 1195 | goto last_component; |
| 1196 | while (*++name == '/'); |
| 1197 | if (!*name) |
| 1198 | goto last_with_slashes; |
| 1199 | |
| 1200 | /* |
| 1201 | * "." and ".." are special - ".." especially so because it has |
| 1202 | * to be able to know about the current root directory and |
| 1203 | * parent relationships. |
| 1204 | */ |
| 1205 | if (this.name[0] == '.') switch (this.len) { |
| 1206 | default: |
| 1207 | break; |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1208 | case 2: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1209 | if (this.name[1] != '.') |
| 1210 | break; |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1211 | if (nd->flags & LOOKUP_RCU) { |
| 1212 | if (follow_dotdot_rcu(nd)) |
| 1213 | return -ECHILD; |
| 1214 | } else |
| 1215 | follow_dotdot(nd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1216 | /* fallthrough */ |
| 1217 | case 1: |
| 1218 | continue; |
| 1219 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1220 | /* This does the actual lookups.. */ |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1221 | err = do_lookup(nd, &this, &next, &inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1222 | if (err) |
| 1223 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1224 | err = -ENOENT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1225 | if (!inode) |
| 1226 | goto out_dput; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1227 | |
| 1228 | if (inode->i_op->follow_link) { |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1229 | /* We commonly drop rcu-walk here */ |
| 1230 | if (nameidata_dentry_drop_rcu_maybe(nd, next.dentry)) |
| 1231 | return -ECHILD; |
| 1232 | BUG_ON(inode != next.dentry->d_inode); |
Al Viro | 90ebe56 | 2005-06-06 13:35:58 -0700 | [diff] [blame] | 1233 | err = do_follow_link(&next, nd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1234 | if (err) |
| 1235 | goto return_err; |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1236 | nd->inode = nd->path.dentry->d_inode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1237 | err = -ENOENT; |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1238 | if (!nd->inode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1239 | break; |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1240 | } else { |
Miklos Szeredi | 09dd17d | 2005-09-06 15:18:21 -0700 | [diff] [blame] | 1241 | path_to_nameidata(&next, nd); |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1242 | nd->inode = inode; |
| 1243 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1244 | err = -ENOTDIR; |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1245 | if (!nd->inode->i_op->lookup) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1246 | break; |
| 1247 | continue; |
| 1248 | /* here ends the main loop */ |
| 1249 | |
| 1250 | last_with_slashes: |
| 1251 | lookup_flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY; |
| 1252 | last_component: |
Trond Myklebust | f55eab8 | 2006-02-04 23:28:01 -0800 | [diff] [blame] | 1253 | /* Clear LOOKUP_CONTINUE iff it was previously unset */ |
| 1254 | nd->flags &= lookup_flags | ~LOOKUP_CONTINUE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1255 | if (lookup_flags & LOOKUP_PARENT) |
| 1256 | goto lookup_parent; |
| 1257 | if (this.name[0] == '.') switch (this.len) { |
| 1258 | default: |
| 1259 | break; |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1260 | case 2: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1261 | if (this.name[1] != '.') |
| 1262 | break; |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1263 | if (nd->flags & LOOKUP_RCU) { |
| 1264 | if (follow_dotdot_rcu(nd)) |
| 1265 | return -ECHILD; |
| 1266 | } else |
| 1267 | follow_dotdot(nd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1268 | /* fallthrough */ |
| 1269 | case 1: |
| 1270 | goto return_reval; |
| 1271 | } |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1272 | err = do_lookup(nd, &this, &next, &inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1273 | if (err) |
| 1274 | break; |
Al Viro | ac278a9 | 2010-02-16 18:09:36 +0000 | [diff] [blame] | 1275 | if (follow_on_final(inode, lookup_flags)) { |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1276 | if (nameidata_dentry_drop_rcu_maybe(nd, next.dentry)) |
| 1277 | return -ECHILD; |
| 1278 | BUG_ON(inode != next.dentry->d_inode); |
Al Viro | 90ebe56 | 2005-06-06 13:35:58 -0700 | [diff] [blame] | 1279 | err = do_follow_link(&next, nd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1280 | if (err) |
| 1281 | goto return_err; |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1282 | nd->inode = nd->path.dentry->d_inode; |
| 1283 | } else { |
Miklos Szeredi | 09dd17d | 2005-09-06 15:18:21 -0700 | [diff] [blame] | 1284 | path_to_nameidata(&next, nd); |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1285 | nd->inode = inode; |
| 1286 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1287 | err = -ENOENT; |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1288 | if (!nd->inode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1289 | break; |
| 1290 | if (lookup_flags & LOOKUP_DIRECTORY) { |
| 1291 | err = -ENOTDIR; |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1292 | if (!nd->inode->i_op->lookup) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1293 | break; |
| 1294 | } |
| 1295 | goto return_base; |
| 1296 | lookup_parent: |
| 1297 | nd->last = this; |
| 1298 | nd->last_type = LAST_NORM; |
| 1299 | if (this.name[0] != '.') |
| 1300 | goto return_base; |
| 1301 | if (this.len == 1) |
| 1302 | nd->last_type = LAST_DOT; |
| 1303 | else if (this.len == 2 && this.name[1] == '.') |
| 1304 | nd->last_type = LAST_DOTDOT; |
| 1305 | else |
| 1306 | goto return_base; |
| 1307 | return_reval: |
| 1308 | /* |
| 1309 | * We bypassed the ordinary revalidation routines. |
| 1310 | * We may need to check the cached dentry for staleness. |
| 1311 | */ |
Nick Piggin | fb045ad | 2011-01-07 17:49:55 +1100 | [diff] [blame] | 1312 | if (need_reval_dot(nd->path.dentry)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1313 | /* Note: we do not d_invalidate() */ |
Nick Piggin | 34286d6 | 2011-01-07 17:49:57 +1100 | [diff] [blame^] | 1314 | err = d_revalidate(nd->path.dentry, nd); |
| 1315 | if (!err) |
| 1316 | err = -ESTALE; |
| 1317 | if (err < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1318 | break; |
| 1319 | } |
| 1320 | return_base: |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1321 | if (nameidata_drop_rcu_last_maybe(nd)) |
| 1322 | return -ECHILD; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1323 | return 0; |
| 1324 | out_dput: |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1325 | if (!(nd->flags & LOOKUP_RCU)) |
| 1326 | path_put_conditional(&next, nd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1327 | break; |
| 1328 | } |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1329 | if (!(nd->flags & LOOKUP_RCU)) |
| 1330 | path_put(&nd->path); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1331 | return_err: |
| 1332 | return err; |
| 1333 | } |
| 1334 | |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1335 | static inline int path_walk_rcu(const char *name, struct nameidata *nd) |
| 1336 | { |
| 1337 | current->total_link_count = 0; |
| 1338 | |
| 1339 | return link_path_walk(name, nd); |
| 1340 | } |
| 1341 | |
| 1342 | static inline int path_walk_simple(const char *name, struct nameidata *nd) |
| 1343 | { |
| 1344 | current->total_link_count = 0; |
| 1345 | |
| 1346 | return link_path_walk(name, nd); |
| 1347 | } |
| 1348 | |
Harvey Harrison | fc9b52c | 2008-02-08 04:19:52 -0800 | [diff] [blame] | 1349 | static int path_walk(const char *name, struct nameidata *nd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1350 | { |
Al Viro | 6de88d7 | 2009-08-09 01:41:57 +0400 | [diff] [blame] | 1351 | struct path save = nd->path; |
| 1352 | int result; |
| 1353 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1354 | current->total_link_count = 0; |
Al Viro | 6de88d7 | 2009-08-09 01:41:57 +0400 | [diff] [blame] | 1355 | |
| 1356 | /* make sure the stuff we saved doesn't go away */ |
| 1357 | path_get(&save); |
| 1358 | |
| 1359 | result = link_path_walk(name, nd); |
| 1360 | if (result == -ESTALE) { |
| 1361 | /* nd->path had been dropped */ |
| 1362 | current->total_link_count = 0; |
| 1363 | nd->path = save; |
| 1364 | path_get(&nd->path); |
| 1365 | nd->flags |= LOOKUP_REVAL; |
| 1366 | result = link_path_walk(name, nd); |
| 1367 | } |
| 1368 | |
| 1369 | path_put(&save); |
| 1370 | |
| 1371 | return result; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1372 | } |
| 1373 | |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1374 | static void path_finish_rcu(struct nameidata *nd) |
| 1375 | { |
| 1376 | if (nd->flags & LOOKUP_RCU) { |
| 1377 | /* RCU dangling. Cancel it. */ |
| 1378 | nd->flags &= ~LOOKUP_RCU; |
| 1379 | nd->root.mnt = NULL; |
| 1380 | rcu_read_unlock(); |
| 1381 | br_read_unlock(vfsmount_lock); |
| 1382 | } |
| 1383 | if (nd->file) |
| 1384 | fput(nd->file); |
| 1385 | } |
| 1386 | |
| 1387 | static int path_init_rcu(int dfd, const char *name, unsigned int flags, struct nameidata *nd) |
| 1388 | { |
| 1389 | int retval = 0; |
| 1390 | int fput_needed; |
| 1391 | struct file *file; |
| 1392 | |
| 1393 | nd->last_type = LAST_ROOT; /* if there are only slashes... */ |
| 1394 | nd->flags = flags | LOOKUP_RCU; |
| 1395 | nd->depth = 0; |
| 1396 | nd->root.mnt = NULL; |
| 1397 | nd->file = NULL; |
| 1398 | |
| 1399 | if (*name=='/') { |
| 1400 | struct fs_struct *fs = current->fs; |
Nick Piggin | c28cc36 | 2011-01-07 17:49:53 +1100 | [diff] [blame] | 1401 | unsigned seq; |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1402 | |
| 1403 | br_read_lock(vfsmount_lock); |
| 1404 | rcu_read_lock(); |
| 1405 | |
Nick Piggin | c28cc36 | 2011-01-07 17:49:53 +1100 | [diff] [blame] | 1406 | do { |
| 1407 | seq = read_seqcount_begin(&fs->seq); |
| 1408 | nd->root = fs->root; |
| 1409 | nd->path = nd->root; |
| 1410 | nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq); |
| 1411 | } while (read_seqcount_retry(&fs->seq, seq)); |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1412 | |
| 1413 | } else if (dfd == AT_FDCWD) { |
| 1414 | struct fs_struct *fs = current->fs; |
Nick Piggin | c28cc36 | 2011-01-07 17:49:53 +1100 | [diff] [blame] | 1415 | unsigned seq; |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1416 | |
| 1417 | br_read_lock(vfsmount_lock); |
| 1418 | rcu_read_lock(); |
| 1419 | |
Nick Piggin | c28cc36 | 2011-01-07 17:49:53 +1100 | [diff] [blame] | 1420 | do { |
| 1421 | seq = read_seqcount_begin(&fs->seq); |
| 1422 | nd->path = fs->pwd; |
| 1423 | nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq); |
| 1424 | } while (read_seqcount_retry(&fs->seq, seq)); |
| 1425 | |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1426 | } else { |
| 1427 | struct dentry *dentry; |
| 1428 | |
| 1429 | file = fget_light(dfd, &fput_needed); |
| 1430 | retval = -EBADF; |
| 1431 | if (!file) |
| 1432 | goto out_fail; |
| 1433 | |
| 1434 | dentry = file->f_path.dentry; |
| 1435 | |
| 1436 | retval = -ENOTDIR; |
| 1437 | if (!S_ISDIR(dentry->d_inode->i_mode)) |
| 1438 | goto fput_fail; |
| 1439 | |
| 1440 | retval = file_permission(file, MAY_EXEC); |
| 1441 | if (retval) |
| 1442 | goto fput_fail; |
| 1443 | |
| 1444 | nd->path = file->f_path; |
| 1445 | if (fput_needed) |
| 1446 | nd->file = file; |
| 1447 | |
Nick Piggin | c28cc36 | 2011-01-07 17:49:53 +1100 | [diff] [blame] | 1448 | nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq); |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1449 | br_read_lock(vfsmount_lock); |
| 1450 | rcu_read_lock(); |
| 1451 | } |
| 1452 | nd->inode = nd->path.dentry->d_inode; |
| 1453 | return 0; |
| 1454 | |
| 1455 | fput_fail: |
| 1456 | fput_light(file, fput_needed); |
| 1457 | out_fail: |
| 1458 | return retval; |
| 1459 | } |
| 1460 | |
Al Viro | 9b4a9b1 | 2009-04-07 11:44:16 -0400 | [diff] [blame] | 1461 | static int path_init(int dfd, const char *name, unsigned int flags, struct nameidata *nd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1462 | { |
Prasanna Meda | ea3834d | 2005-04-29 16:00:17 +0100 | [diff] [blame] | 1463 | int retval = 0; |
Ulrich Drepper | 170aa3d | 2006-02-04 23:28:02 -0800 | [diff] [blame] | 1464 | int fput_needed; |
| 1465 | struct file *file; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1466 | |
| 1467 | nd->last_type = LAST_ROOT; /* if there are only slashes... */ |
| 1468 | nd->flags = flags; |
| 1469 | nd->depth = 0; |
Al Viro | 2a73787 | 2009-04-07 11:49:53 -0400 | [diff] [blame] | 1470 | nd->root.mnt = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1471 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1472 | if (*name=='/') { |
Al Viro | 2a73787 | 2009-04-07 11:49:53 -0400 | [diff] [blame] | 1473 | set_root(nd); |
| 1474 | nd->path = nd->root; |
| 1475 | path_get(&nd->root); |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 1476 | } else if (dfd == AT_FDCWD) { |
Miklos Szeredi | f7ad3c6 | 2010-08-10 11:41:36 +0200 | [diff] [blame] | 1477 | get_fs_pwd(current->fs, &nd->path); |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 1478 | } else { |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 1479 | struct dentry *dentry; |
| 1480 | |
| 1481 | file = fget_light(dfd, &fput_needed); |
Ulrich Drepper | 170aa3d | 2006-02-04 23:28:02 -0800 | [diff] [blame] | 1482 | retval = -EBADF; |
| 1483 | if (!file) |
Trond Myklebust | 6d09bb6 | 2006-06-04 02:51:37 -0700 | [diff] [blame] | 1484 | goto out_fail; |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 1485 | |
Josef "Jeff" Sipek | 0f7fc9e | 2006-12-08 02:36:35 -0800 | [diff] [blame] | 1486 | dentry = file->f_path.dentry; |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 1487 | |
Ulrich Drepper | 170aa3d | 2006-02-04 23:28:02 -0800 | [diff] [blame] | 1488 | retval = -ENOTDIR; |
| 1489 | if (!S_ISDIR(dentry->d_inode->i_mode)) |
Trond Myklebust | 6d09bb6 | 2006-06-04 02:51:37 -0700 | [diff] [blame] | 1490 | goto fput_fail; |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 1491 | |
| 1492 | retval = file_permission(file, MAY_EXEC); |
Ulrich Drepper | 170aa3d | 2006-02-04 23:28:02 -0800 | [diff] [blame] | 1493 | if (retval) |
Trond Myklebust | 6d09bb6 | 2006-06-04 02:51:37 -0700 | [diff] [blame] | 1494 | goto fput_fail; |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 1495 | |
Jan Blunck | 5dd784d0 | 2008-02-14 19:34:38 -0800 | [diff] [blame] | 1496 | nd->path = file->f_path; |
| 1497 | path_get(&file->f_path); |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 1498 | |
| 1499 | fput_light(file, fput_needed); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1500 | } |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1501 | nd->inode = nd->path.dentry->d_inode; |
Al Viro | 9b4a9b1 | 2009-04-07 11:44:16 -0400 | [diff] [blame] | 1502 | return 0; |
Ulrich Drepper | 170aa3d | 2006-02-04 23:28:02 -0800 | [diff] [blame] | 1503 | |
Trond Myklebust | 6d09bb6 | 2006-06-04 02:51:37 -0700 | [diff] [blame] | 1504 | fput_fail: |
Ulrich Drepper | 170aa3d | 2006-02-04 23:28:02 -0800 | [diff] [blame] | 1505 | fput_light(file, fput_needed); |
Al Viro | 9b4a9b1 | 2009-04-07 11:44:16 -0400 | [diff] [blame] | 1506 | out_fail: |
| 1507 | return retval; |
| 1508 | } |
| 1509 | |
| 1510 | /* Returns 0 and nd will be valid on success; Retuns error, otherwise. */ |
| 1511 | static int do_path_lookup(int dfd, const char *name, |
| 1512 | unsigned int flags, struct nameidata *nd) |
| 1513 | { |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1514 | int retval; |
| 1515 | |
| 1516 | /* |
| 1517 | * Path walking is largely split up into 2 different synchronisation |
| 1518 | * schemes, rcu-walk and ref-walk (explained in |
| 1519 | * Documentation/filesystems/path-lookup.txt). These share much of the |
| 1520 | * path walk code, but some things particularly setup, cleanup, and |
| 1521 | * following mounts are sufficiently divergent that functions are |
| 1522 | * duplicated. Typically there is a function foo(), and its RCU |
| 1523 | * analogue, foo_rcu(). |
| 1524 | * |
| 1525 | * -ECHILD is the error number of choice (just to avoid clashes) that |
| 1526 | * is returned if some aspect of an rcu-walk fails. Such an error must |
| 1527 | * be handled by restarting a traditional ref-walk (which will always |
| 1528 | * be able to complete). |
| 1529 | */ |
| 1530 | retval = path_init_rcu(dfd, name, flags, nd); |
| 1531 | if (unlikely(retval)) |
| 1532 | return retval; |
| 1533 | retval = path_walk_rcu(name, nd); |
| 1534 | path_finish_rcu(nd); |
Al Viro | 2a73787 | 2009-04-07 11:49:53 -0400 | [diff] [blame] | 1535 | if (nd->root.mnt) { |
| 1536 | path_put(&nd->root); |
| 1537 | nd->root.mnt = NULL; |
| 1538 | } |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1539 | |
| 1540 | if (unlikely(retval == -ECHILD || retval == -ESTALE)) { |
| 1541 | /* slower, locked walk */ |
| 1542 | if (retval == -ESTALE) |
| 1543 | flags |= LOOKUP_REVAL; |
| 1544 | retval = path_init(dfd, name, flags, nd); |
| 1545 | if (unlikely(retval)) |
| 1546 | return retval; |
| 1547 | retval = path_walk(name, nd); |
| 1548 | if (nd->root.mnt) { |
| 1549 | path_put(&nd->root); |
| 1550 | nd->root.mnt = NULL; |
| 1551 | } |
| 1552 | } |
| 1553 | |
| 1554 | if (likely(!retval)) { |
| 1555 | if (unlikely(!audit_dummy_context())) { |
| 1556 | if (nd->path.dentry && nd->inode) |
| 1557 | audit_inode(name, nd->path.dentry); |
| 1558 | } |
| 1559 | } |
| 1560 | |
Al Viro | 9b4a9b1 | 2009-04-07 11:44:16 -0400 | [diff] [blame] | 1561 | return retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1562 | } |
| 1563 | |
Harvey Harrison | fc9b52c | 2008-02-08 04:19:52 -0800 | [diff] [blame] | 1564 | int path_lookup(const char *name, unsigned int flags, |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 1565 | struct nameidata *nd) |
| 1566 | { |
| 1567 | return do_path_lookup(AT_FDCWD, name, flags, nd); |
| 1568 | } |
| 1569 | |
Al Viro | d181146 | 2008-08-02 00:49:18 -0400 | [diff] [blame] | 1570 | int kern_path(const char *name, unsigned int flags, struct path *path) |
| 1571 | { |
| 1572 | struct nameidata nd; |
| 1573 | int res = do_path_lookup(AT_FDCWD, name, flags, &nd); |
| 1574 | if (!res) |
| 1575 | *path = nd.path; |
| 1576 | return res; |
| 1577 | } |
| 1578 | |
Josef 'Jeff' Sipek | 16f1820 | 2007-07-19 01:48:18 -0700 | [diff] [blame] | 1579 | /** |
| 1580 | * vfs_path_lookup - lookup a file path relative to a dentry-vfsmount pair |
| 1581 | * @dentry: pointer to dentry of the base directory |
| 1582 | * @mnt: pointer to vfs mount of the base directory |
| 1583 | * @name: pointer to file name |
| 1584 | * @flags: lookup flags |
| 1585 | * @nd: pointer to nameidata |
| 1586 | */ |
| 1587 | int vfs_path_lookup(struct dentry *dentry, struct vfsmount *mnt, |
| 1588 | const char *name, unsigned int flags, |
| 1589 | struct nameidata *nd) |
| 1590 | { |
| 1591 | int retval; |
| 1592 | |
| 1593 | /* same as do_path_lookup */ |
| 1594 | nd->last_type = LAST_ROOT; |
| 1595 | nd->flags = flags; |
| 1596 | nd->depth = 0; |
| 1597 | |
Jan Blunck | c8e7f44 | 2008-06-09 16:40:35 -0700 | [diff] [blame] | 1598 | nd->path.dentry = dentry; |
| 1599 | nd->path.mnt = mnt; |
| 1600 | path_get(&nd->path); |
Al Viro | 5b85711 | 2009-04-07 11:53:49 -0400 | [diff] [blame] | 1601 | nd->root = nd->path; |
| 1602 | path_get(&nd->root); |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1603 | nd->inode = nd->path.dentry->d_inode; |
Josef 'Jeff' Sipek | 16f1820 | 2007-07-19 01:48:18 -0700 | [diff] [blame] | 1604 | |
| 1605 | retval = path_walk(name, nd); |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 1606 | if (unlikely(!retval && !audit_dummy_context() && nd->path.dentry && |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1607 | nd->inode)) |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 1608 | audit_inode(name, nd->path.dentry); |
Josef 'Jeff' Sipek | 16f1820 | 2007-07-19 01:48:18 -0700 | [diff] [blame] | 1609 | |
Al Viro | 5b85711 | 2009-04-07 11:53:49 -0400 | [diff] [blame] | 1610 | path_put(&nd->root); |
| 1611 | nd->root.mnt = NULL; |
Josef 'Jeff' Sipek | 16f1820 | 2007-07-19 01:48:18 -0700 | [diff] [blame] | 1612 | |
Al Viro | 2a73787 | 2009-04-07 11:49:53 -0400 | [diff] [blame] | 1613 | return retval; |
Josef 'Jeff' Sipek | 16f1820 | 2007-07-19 01:48:18 -0700 | [diff] [blame] | 1614 | } |
| 1615 | |
Christoph Hellwig | eead191 | 2007-10-16 23:25:38 -0700 | [diff] [blame] | 1616 | static struct dentry *__lookup_hash(struct qstr *name, |
| 1617 | struct dentry *base, struct nameidata *nd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1618 | { |
Christoph Hellwig | 81fca44 | 2010-10-06 10:47:47 +0200 | [diff] [blame] | 1619 | struct inode *inode = base->d_inode; |
James Morris | 057f6c0 | 2007-04-26 00:12:05 -0700 | [diff] [blame] | 1620 | struct dentry *dentry; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1621 | int err; |
| 1622 | |
Christoph Hellwig | 81fca44 | 2010-10-06 10:47:47 +0200 | [diff] [blame] | 1623 | err = exec_permission(inode); |
| 1624 | if (err) |
| 1625 | return ERR_PTR(err); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1626 | |
| 1627 | /* |
| 1628 | * See if the low-level filesystem might want |
| 1629 | * to use its own hash.. |
| 1630 | */ |
Nick Piggin | fb045ad | 2011-01-07 17:49:55 +1100 | [diff] [blame] | 1631 | if (base->d_flags & DCACHE_OP_HASH) { |
Nick Piggin | b1e6a01 | 2011-01-07 17:49:28 +1100 | [diff] [blame] | 1632 | err = base->d_op->d_hash(base, inode, name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1633 | dentry = ERR_PTR(err); |
| 1634 | if (err < 0) |
| 1635 | goto out; |
| 1636 | } |
| 1637 | |
Nick Piggin | b04f784 | 2010-08-18 04:37:34 +1000 | [diff] [blame] | 1638 | /* |
| 1639 | * Don't bother with __d_lookup: callers are for creat as |
| 1640 | * well as unlink, so a lot of the time it would cost |
| 1641 | * a double lookup. |
Al Viro | 6e6b1bd | 2009-08-13 23:38:37 +0400 | [diff] [blame] | 1642 | */ |
Nick Piggin | b04f784 | 2010-08-18 04:37:34 +1000 | [diff] [blame] | 1643 | dentry = d_lookup(base, name); |
Al Viro | 6e6b1bd | 2009-08-13 23:38:37 +0400 | [diff] [blame] | 1644 | |
Nick Piggin | fb045ad | 2011-01-07 17:49:55 +1100 | [diff] [blame] | 1645 | if (dentry && (dentry->d_flags & DCACHE_OP_REVALIDATE)) |
Al Viro | 6e6b1bd | 2009-08-13 23:38:37 +0400 | [diff] [blame] | 1646 | dentry = do_revalidate(dentry, nd); |
| 1647 | |
Nick Piggin | baa0389 | 2010-08-18 04:37:31 +1000 | [diff] [blame] | 1648 | if (!dentry) |
| 1649 | dentry = d_alloc_and_lookup(base, name, nd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1650 | out: |
| 1651 | return dentry; |
| 1652 | } |
| 1653 | |
James Morris | 057f6c0 | 2007-04-26 00:12:05 -0700 | [diff] [blame] | 1654 | /* |
| 1655 | * Restricted form of lookup. Doesn't follow links, single-component only, |
| 1656 | * needs parent already locked. Doesn't follow mounts. |
| 1657 | * SMP-safe. |
| 1658 | */ |
Adrian Bunk | a244e16 | 2006-03-31 02:32:11 -0800 | [diff] [blame] | 1659 | static struct dentry *lookup_hash(struct nameidata *nd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1660 | { |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 1661 | return __lookup_hash(&nd->last, nd->path.dentry, nd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1662 | } |
| 1663 | |
Christoph Hellwig | eead191 | 2007-10-16 23:25:38 -0700 | [diff] [blame] | 1664 | static int __lookup_one_len(const char *name, struct qstr *this, |
| 1665 | struct dentry *base, int len) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1666 | { |
| 1667 | unsigned long hash; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1668 | unsigned int c; |
| 1669 | |
James Morris | 057f6c0 | 2007-04-26 00:12:05 -0700 | [diff] [blame] | 1670 | this->name = name; |
| 1671 | this->len = len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1672 | if (!len) |
James Morris | 057f6c0 | 2007-04-26 00:12:05 -0700 | [diff] [blame] | 1673 | return -EACCES; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1674 | |
| 1675 | hash = init_name_hash(); |
| 1676 | while (len--) { |
| 1677 | c = *(const unsigned char *)name++; |
| 1678 | if (c == '/' || c == '\0') |
James Morris | 057f6c0 | 2007-04-26 00:12:05 -0700 | [diff] [blame] | 1679 | return -EACCES; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1680 | hash = partial_name_hash(c, hash); |
| 1681 | } |
James Morris | 057f6c0 | 2007-04-26 00:12:05 -0700 | [diff] [blame] | 1682 | this->hash = end_name_hash(hash); |
| 1683 | return 0; |
| 1684 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1685 | |
Christoph Hellwig | eead191 | 2007-10-16 23:25:38 -0700 | [diff] [blame] | 1686 | /** |
Randy Dunlap | a6b9191 | 2008-03-19 17:01:00 -0700 | [diff] [blame] | 1687 | * lookup_one_len - filesystem helper to lookup single pathname component |
Christoph Hellwig | eead191 | 2007-10-16 23:25:38 -0700 | [diff] [blame] | 1688 | * @name: pathname component to lookup |
| 1689 | * @base: base directory to lookup from |
| 1690 | * @len: maximum length @len should be interpreted to |
| 1691 | * |
Randy Dunlap | a6b9191 | 2008-03-19 17:01:00 -0700 | [diff] [blame] | 1692 | * Note that this routine is purely a helper for filesystem usage and should |
| 1693 | * not be called by generic code. Also note that by using this function the |
Christoph Hellwig | eead191 | 2007-10-16 23:25:38 -0700 | [diff] [blame] | 1694 | * nameidata argument is passed to the filesystem methods and a filesystem |
| 1695 | * using this helper needs to be prepared for that. |
| 1696 | */ |
James Morris | 057f6c0 | 2007-04-26 00:12:05 -0700 | [diff] [blame] | 1697 | struct dentry *lookup_one_len(const char *name, struct dentry *base, int len) |
| 1698 | { |
| 1699 | int err; |
| 1700 | struct qstr this; |
| 1701 | |
David Woodhouse | 2f9092e | 2009-04-20 23:18:37 +0100 | [diff] [blame] | 1702 | WARN_ON_ONCE(!mutex_is_locked(&base->d_inode->i_mutex)); |
| 1703 | |
James Morris | 057f6c0 | 2007-04-26 00:12:05 -0700 | [diff] [blame] | 1704 | err = __lookup_one_len(name, &this, base, len); |
| 1705 | if (err) |
| 1706 | return ERR_PTR(err); |
Christoph Hellwig | eead191 | 2007-10-16 23:25:38 -0700 | [diff] [blame] | 1707 | |
Christoph Hellwig | 49705b7 | 2005-11-08 21:35:06 -0800 | [diff] [blame] | 1708 | return __lookup_hash(&this, base, NULL); |
James Morris | 057f6c0 | 2007-04-26 00:12:05 -0700 | [diff] [blame] | 1709 | } |
| 1710 | |
Al Viro | 2d8f303 | 2008-07-22 09:59:21 -0400 | [diff] [blame] | 1711 | int user_path_at(int dfd, const char __user *name, unsigned flags, |
| 1712 | struct path *path) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1713 | { |
Al Viro | 2d8f303 | 2008-07-22 09:59:21 -0400 | [diff] [blame] | 1714 | struct nameidata nd; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1715 | char *tmp = getname(name); |
| 1716 | int err = PTR_ERR(tmp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1717 | if (!IS_ERR(tmp)) { |
Al Viro | 2d8f303 | 2008-07-22 09:59:21 -0400 | [diff] [blame] | 1718 | |
| 1719 | BUG_ON(flags & LOOKUP_PARENT); |
| 1720 | |
| 1721 | err = do_path_lookup(dfd, tmp, flags, &nd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1722 | putname(tmp); |
Al Viro | 2d8f303 | 2008-07-22 09:59:21 -0400 | [diff] [blame] | 1723 | if (!err) |
| 1724 | *path = nd.path; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1725 | } |
| 1726 | return err; |
| 1727 | } |
| 1728 | |
Al Viro | 2ad94ae | 2008-07-21 09:32:51 -0400 | [diff] [blame] | 1729 | static int user_path_parent(int dfd, const char __user *path, |
| 1730 | struct nameidata *nd, char **name) |
| 1731 | { |
| 1732 | char *s = getname(path); |
| 1733 | int error; |
| 1734 | |
| 1735 | if (IS_ERR(s)) |
| 1736 | return PTR_ERR(s); |
| 1737 | |
| 1738 | error = do_path_lookup(dfd, s, LOOKUP_PARENT, nd); |
| 1739 | if (error) |
| 1740 | putname(s); |
| 1741 | else |
| 1742 | *name = s; |
| 1743 | |
| 1744 | return error; |
| 1745 | } |
| 1746 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1747 | /* |
| 1748 | * It's inline, so penalty for filesystems that don't use sticky bit is |
| 1749 | * minimal. |
| 1750 | */ |
| 1751 | static inline int check_sticky(struct inode *dir, struct inode *inode) |
| 1752 | { |
David Howells | da9592e | 2008-11-14 10:39:05 +1100 | [diff] [blame] | 1753 | uid_t fsuid = current_fsuid(); |
| 1754 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1755 | if (!(dir->i_mode & S_ISVTX)) |
| 1756 | return 0; |
David Howells | da9592e | 2008-11-14 10:39:05 +1100 | [diff] [blame] | 1757 | if (inode->i_uid == fsuid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1758 | return 0; |
David Howells | da9592e | 2008-11-14 10:39:05 +1100 | [diff] [blame] | 1759 | if (dir->i_uid == fsuid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1760 | return 0; |
| 1761 | return !capable(CAP_FOWNER); |
| 1762 | } |
| 1763 | |
| 1764 | /* |
| 1765 | * Check whether we can remove a link victim from directory dir, check |
| 1766 | * whether the type of victim is right. |
| 1767 | * 1. We can't do it if dir is read-only (done in permission()) |
| 1768 | * 2. We should have write and exec permissions on dir |
| 1769 | * 3. We can't remove anything from append-only dir |
| 1770 | * 4. We can't do anything with immutable dir (done in permission()) |
| 1771 | * 5. If the sticky bit on dir is set we should either |
| 1772 | * a. be owner of dir, or |
| 1773 | * b. be owner of victim, or |
| 1774 | * c. have CAP_FOWNER capability |
| 1775 | * 6. If the victim is append-only or immutable we can't do antyhing with |
| 1776 | * links pointing to it. |
| 1777 | * 7. If we were asked to remove a directory and victim isn't one - ENOTDIR. |
| 1778 | * 8. If we were asked to remove a non-directory and victim isn't one - EISDIR. |
| 1779 | * 9. We can't remove a root or mountpoint. |
| 1780 | * 10. We don't allow removal of NFS sillyrenamed files; it's handled by |
| 1781 | * nfs_async_unlink(). |
| 1782 | */ |
Arjan van de Ven | 858119e | 2006-01-14 13:20:43 -0800 | [diff] [blame] | 1783 | static int may_delete(struct inode *dir,struct dentry *victim,int isdir) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1784 | { |
| 1785 | int error; |
| 1786 | |
| 1787 | if (!victim->d_inode) |
| 1788 | return -ENOENT; |
| 1789 | |
| 1790 | BUG_ON(victim->d_parent->d_inode != dir); |
Al Viro | cccc6bb | 2009-12-25 05:07:33 -0500 | [diff] [blame] | 1791 | audit_inode_child(victim, dir); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1792 | |
Al Viro | f419a2e | 2008-07-22 00:07:17 -0400 | [diff] [blame] | 1793 | error = inode_permission(dir, MAY_WRITE | MAY_EXEC); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1794 | if (error) |
| 1795 | return error; |
| 1796 | if (IS_APPEND(dir)) |
| 1797 | return -EPERM; |
| 1798 | if (check_sticky(dir, victim->d_inode)||IS_APPEND(victim->d_inode)|| |
Hugh Dickins | f945454 | 2008-11-19 15:36:38 -0800 | [diff] [blame] | 1799 | IS_IMMUTABLE(victim->d_inode) || IS_SWAPFILE(victim->d_inode)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1800 | return -EPERM; |
| 1801 | if (isdir) { |
| 1802 | if (!S_ISDIR(victim->d_inode->i_mode)) |
| 1803 | return -ENOTDIR; |
| 1804 | if (IS_ROOT(victim)) |
| 1805 | return -EBUSY; |
| 1806 | } else if (S_ISDIR(victim->d_inode->i_mode)) |
| 1807 | return -EISDIR; |
| 1808 | if (IS_DEADDIR(dir)) |
| 1809 | return -ENOENT; |
| 1810 | if (victim->d_flags & DCACHE_NFSFS_RENAMED) |
| 1811 | return -EBUSY; |
| 1812 | return 0; |
| 1813 | } |
| 1814 | |
| 1815 | /* Check whether we can create an object with dentry child in directory |
| 1816 | * dir. |
| 1817 | * 1. We can't do it if child already exists (open has special treatment for |
| 1818 | * this case, but since we are inlined it's OK) |
| 1819 | * 2. We can't do it if dir is read-only (done in permission()) |
| 1820 | * 3. We should have write and exec permissions on dir |
| 1821 | * 4. We can't do it if dir is immutable (done in permission()) |
| 1822 | */ |
Miklos Szeredi | a95164d | 2008-07-30 15:08:48 +0200 | [diff] [blame] | 1823 | static inline int may_create(struct inode *dir, struct dentry *child) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1824 | { |
| 1825 | if (child->d_inode) |
| 1826 | return -EEXIST; |
| 1827 | if (IS_DEADDIR(dir)) |
| 1828 | return -ENOENT; |
Al Viro | f419a2e | 2008-07-22 00:07:17 -0400 | [diff] [blame] | 1829 | return inode_permission(dir, MAY_WRITE | MAY_EXEC); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1830 | } |
| 1831 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1832 | /* |
| 1833 | * p1 and p2 should be directories on the same fs. |
| 1834 | */ |
| 1835 | struct dentry *lock_rename(struct dentry *p1, struct dentry *p2) |
| 1836 | { |
| 1837 | struct dentry *p; |
| 1838 | |
| 1839 | if (p1 == p2) { |
Ingo Molnar | f2eace2 | 2006-07-03 00:25:05 -0700 | [diff] [blame] | 1840 | mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1841 | return NULL; |
| 1842 | } |
| 1843 | |
Arjan van de Ven | a11f3a0 | 2006-03-23 03:00:33 -0800 | [diff] [blame] | 1844 | mutex_lock(&p1->d_inode->i_sb->s_vfs_rename_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1845 | |
OGAWA Hirofumi | e2761a1 | 2008-10-16 07:50:28 +0900 | [diff] [blame] | 1846 | p = d_ancestor(p2, p1); |
| 1847 | if (p) { |
| 1848 | mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_PARENT); |
| 1849 | mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_CHILD); |
| 1850 | return p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1851 | } |
| 1852 | |
OGAWA Hirofumi | e2761a1 | 2008-10-16 07:50:28 +0900 | [diff] [blame] | 1853 | p = d_ancestor(p1, p2); |
| 1854 | if (p) { |
| 1855 | mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT); |
| 1856 | mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_CHILD); |
| 1857 | return p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1858 | } |
| 1859 | |
Ingo Molnar | f2eace2 | 2006-07-03 00:25:05 -0700 | [diff] [blame] | 1860 | mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT); |
| 1861 | mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_CHILD); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1862 | return NULL; |
| 1863 | } |
| 1864 | |
| 1865 | void unlock_rename(struct dentry *p1, struct dentry *p2) |
| 1866 | { |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 1867 | mutex_unlock(&p1->d_inode->i_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1868 | if (p1 != p2) { |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 1869 | mutex_unlock(&p2->d_inode->i_mutex); |
Arjan van de Ven | a11f3a0 | 2006-03-23 03:00:33 -0800 | [diff] [blame] | 1870 | mutex_unlock(&p1->d_inode->i_sb->s_vfs_rename_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1871 | } |
| 1872 | } |
| 1873 | |
| 1874 | int vfs_create(struct inode *dir, struct dentry *dentry, int mode, |
| 1875 | struct nameidata *nd) |
| 1876 | { |
Miklos Szeredi | a95164d | 2008-07-30 15:08:48 +0200 | [diff] [blame] | 1877 | int error = may_create(dir, dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1878 | |
| 1879 | if (error) |
| 1880 | return error; |
| 1881 | |
Al Viro | acfa438 | 2008-12-04 10:06:33 -0500 | [diff] [blame] | 1882 | if (!dir->i_op->create) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1883 | return -EACCES; /* shouldn't it be ENOSYS? */ |
| 1884 | mode &= S_IALLUGO; |
| 1885 | mode |= S_IFREG; |
| 1886 | error = security_inode_create(dir, dentry, mode); |
| 1887 | if (error) |
| 1888 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1889 | error = dir->i_op->create(dir, dentry, mode, nd); |
Stephen Smalley | a74574a | 2005-09-09 13:01:44 -0700 | [diff] [blame] | 1890 | if (!error) |
Amy Griffis | f38aa94 | 2005-11-03 15:57:06 +0000 | [diff] [blame] | 1891 | fsnotify_create(dir, dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1892 | return error; |
| 1893 | } |
| 1894 | |
Christoph Hellwig | 3fb6419 | 2008-10-24 09:58:10 +0200 | [diff] [blame] | 1895 | int may_open(struct path *path, int acc_mode, int flag) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1896 | { |
Christoph Hellwig | 3fb6419 | 2008-10-24 09:58:10 +0200 | [diff] [blame] | 1897 | struct dentry *dentry = path->dentry; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1898 | struct inode *inode = dentry->d_inode; |
| 1899 | int error; |
| 1900 | |
| 1901 | if (!inode) |
| 1902 | return -ENOENT; |
| 1903 | |
Christoph Hellwig | c8fe8f3 | 2009-01-05 19:27:23 +0100 | [diff] [blame] | 1904 | switch (inode->i_mode & S_IFMT) { |
| 1905 | case S_IFLNK: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1906 | return -ELOOP; |
Christoph Hellwig | c8fe8f3 | 2009-01-05 19:27:23 +0100 | [diff] [blame] | 1907 | case S_IFDIR: |
| 1908 | if (acc_mode & MAY_WRITE) |
| 1909 | return -EISDIR; |
| 1910 | break; |
| 1911 | case S_IFBLK: |
| 1912 | case S_IFCHR: |
Christoph Hellwig | 3fb6419 | 2008-10-24 09:58:10 +0200 | [diff] [blame] | 1913 | if (path->mnt->mnt_flags & MNT_NODEV) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1914 | return -EACCES; |
Christoph Hellwig | c8fe8f3 | 2009-01-05 19:27:23 +0100 | [diff] [blame] | 1915 | /*FALLTHRU*/ |
| 1916 | case S_IFIFO: |
| 1917 | case S_IFSOCK: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1918 | flag &= ~O_TRUNC; |
Christoph Hellwig | c8fe8f3 | 2009-01-05 19:27:23 +0100 | [diff] [blame] | 1919 | break; |
Dave Hansen | 4a3fd21 | 2008-02-15 14:37:48 -0800 | [diff] [blame] | 1920 | } |
Dave Hansen | b41572e | 2007-10-16 23:31:14 -0700 | [diff] [blame] | 1921 | |
Christoph Hellwig | 3fb6419 | 2008-10-24 09:58:10 +0200 | [diff] [blame] | 1922 | error = inode_permission(inode, acc_mode); |
Dave Hansen | b41572e | 2007-10-16 23:31:14 -0700 | [diff] [blame] | 1923 | if (error) |
| 1924 | return error; |
Mimi Zohar | 6146f0d | 2009-02-04 09:06:57 -0500 | [diff] [blame] | 1925 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1926 | /* |
| 1927 | * An append-only file must be opened in append mode for writing. |
| 1928 | */ |
| 1929 | if (IS_APPEND(inode)) { |
Al Viro | 8737c93 | 2009-12-24 06:47:55 -0500 | [diff] [blame] | 1930 | if ((flag & O_ACCMODE) != O_RDONLY && !(flag & O_APPEND)) |
Al Viro | 7715b52 | 2009-12-16 03:54:00 -0500 | [diff] [blame] | 1931 | return -EPERM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1932 | if (flag & O_TRUNC) |
Al Viro | 7715b52 | 2009-12-16 03:54:00 -0500 | [diff] [blame] | 1933 | return -EPERM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1934 | } |
| 1935 | |
| 1936 | /* O_NOATIME can only be set by the owner or superuser */ |
Al Viro | 7715b52 | 2009-12-16 03:54:00 -0500 | [diff] [blame] | 1937 | if (flag & O_NOATIME && !is_owner_or_cap(inode)) |
| 1938 | return -EPERM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1939 | |
| 1940 | /* |
| 1941 | * Ensure there are no outstanding leases on the file. |
| 1942 | */ |
Al Viro | b65a9cf | 2009-12-16 06:27:40 -0500 | [diff] [blame] | 1943 | return break_lease(inode, flag); |
Al Viro | 7715b52 | 2009-12-16 03:54:00 -0500 | [diff] [blame] | 1944 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1945 | |
Al Viro | 7715b52 | 2009-12-16 03:54:00 -0500 | [diff] [blame] | 1946 | static int handle_truncate(struct path *path) |
| 1947 | { |
| 1948 | struct inode *inode = path->dentry->d_inode; |
| 1949 | int error = get_write_access(inode); |
| 1950 | if (error) |
| 1951 | return error; |
| 1952 | /* |
| 1953 | * Refuse to truncate files with mandatory locks held on them. |
| 1954 | */ |
| 1955 | error = locks_verify_locked(inode); |
| 1956 | if (!error) |
Tetsuo Handa | ea0d3ab | 2010-06-02 13:24:43 +0900 | [diff] [blame] | 1957 | error = security_path_truncate(path); |
Al Viro | 7715b52 | 2009-12-16 03:54:00 -0500 | [diff] [blame] | 1958 | if (!error) { |
| 1959 | error = do_truncate(path->dentry, 0, |
| 1960 | ATTR_MTIME|ATTR_CTIME|ATTR_OPEN, |
| 1961 | NULL); |
| 1962 | } |
| 1963 | put_write_access(inode); |
Mimi Zohar | acd0c93 | 2009-09-04 13:08:46 -0400 | [diff] [blame] | 1964 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1965 | } |
| 1966 | |
Dave Hansen | d57999e | 2008-02-15 14:37:27 -0800 | [diff] [blame] | 1967 | /* |
| 1968 | * Be careful about ever adding any more callers of this |
| 1969 | * function. Its flags must be in the namei format, not |
| 1970 | * what get passed to sys_open(). |
| 1971 | */ |
| 1972 | static int __open_namei_create(struct nameidata *nd, struct path *path, |
Al Viro | 8737c93 | 2009-12-24 06:47:55 -0500 | [diff] [blame] | 1973 | int open_flag, int mode) |
Dave Hansen | aab520e | 2006-09-30 23:29:02 -0700 | [diff] [blame] | 1974 | { |
| 1975 | int error; |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 1976 | struct dentry *dir = nd->path.dentry; |
Dave Hansen | aab520e | 2006-09-30 23:29:02 -0700 | [diff] [blame] | 1977 | |
| 1978 | if (!IS_POSIXACL(dir->d_inode)) |
Al Viro | ce3b0f8 | 2009-03-29 19:08:22 -0400 | [diff] [blame] | 1979 | mode &= ~current_umask(); |
Kentaro Takeda | be6d3e5 | 2008-12-17 13:24:15 +0900 | [diff] [blame] | 1980 | error = security_path_mknod(&nd->path, path->dentry, mode, 0); |
| 1981 | if (error) |
| 1982 | goto out_unlock; |
Dave Hansen | aab520e | 2006-09-30 23:29:02 -0700 | [diff] [blame] | 1983 | error = vfs_create(dir->d_inode, path->dentry, mode, nd); |
Kentaro Takeda | be6d3e5 | 2008-12-17 13:24:15 +0900 | [diff] [blame] | 1984 | out_unlock: |
Dave Hansen | aab520e | 2006-09-30 23:29:02 -0700 | [diff] [blame] | 1985 | mutex_unlock(&dir->d_inode->i_mutex); |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 1986 | dput(nd->path.dentry); |
| 1987 | nd->path.dentry = path->dentry; |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1988 | |
Dave Hansen | aab520e | 2006-09-30 23:29:02 -0700 | [diff] [blame] | 1989 | if (error) |
| 1990 | return error; |
| 1991 | /* Don't check for write permission, don't truncate */ |
Al Viro | 8737c93 | 2009-12-24 06:47:55 -0500 | [diff] [blame] | 1992 | return may_open(&nd->path, 0, open_flag & ~O_TRUNC); |
Dave Hansen | aab520e | 2006-09-30 23:29:02 -0700 | [diff] [blame] | 1993 | } |
| 1994 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1995 | /* |
Dave Hansen | d57999e | 2008-02-15 14:37:27 -0800 | [diff] [blame] | 1996 | * Note that while the flag value (low two bits) for sys_open means: |
| 1997 | * 00 - read-only |
| 1998 | * 01 - write-only |
| 1999 | * 10 - read-write |
| 2000 | * 11 - special |
| 2001 | * it is changed into |
| 2002 | * 00 - no permissions needed |
| 2003 | * 01 - read-permission |
| 2004 | * 10 - write-permission |
| 2005 | * 11 - read-write |
| 2006 | * for the internal routines (ie open_namei()/follow_link() etc) |
| 2007 | * This is more logical, and also allows the 00 "no perm needed" |
| 2008 | * to be used for symlinks (where the permissions are checked |
| 2009 | * later). |
| 2010 | * |
| 2011 | */ |
| 2012 | static inline int open_to_namei_flags(int flag) |
| 2013 | { |
| 2014 | if ((flag+1) & O_ACCMODE) |
| 2015 | flag++; |
| 2016 | return flag; |
| 2017 | } |
| 2018 | |
Al Viro | 7715b52 | 2009-12-16 03:54:00 -0500 | [diff] [blame] | 2019 | static int open_will_truncate(int flag, struct inode *inode) |
Dave Hansen | 4a3fd21 | 2008-02-15 14:37:48 -0800 | [diff] [blame] | 2020 | { |
| 2021 | /* |
| 2022 | * We'll never write to the fs underlying |
| 2023 | * a device file. |
| 2024 | */ |
| 2025 | if (special_file(inode->i_mode)) |
| 2026 | return 0; |
| 2027 | return (flag & O_TRUNC); |
| 2028 | } |
| 2029 | |
Al Viro | 648fa86 | 2009-12-24 01:26:48 -0500 | [diff] [blame] | 2030 | static struct file *finish_open(struct nameidata *nd, |
Al Viro | 9a66179 | 2009-12-24 06:49:47 -0500 | [diff] [blame] | 2031 | int open_flag, int acc_mode) |
Al Viro | 648fa86 | 2009-12-24 01:26:48 -0500 | [diff] [blame] | 2032 | { |
| 2033 | struct file *filp; |
| 2034 | int will_truncate; |
| 2035 | int error; |
| 2036 | |
Al Viro | 9a66179 | 2009-12-24 06:49:47 -0500 | [diff] [blame] | 2037 | will_truncate = open_will_truncate(open_flag, nd->path.dentry->d_inode); |
Al Viro | 648fa86 | 2009-12-24 01:26:48 -0500 | [diff] [blame] | 2038 | if (will_truncate) { |
| 2039 | error = mnt_want_write(nd->path.mnt); |
| 2040 | if (error) |
| 2041 | goto exit; |
| 2042 | } |
| 2043 | error = may_open(&nd->path, acc_mode, open_flag); |
| 2044 | if (error) { |
| 2045 | if (will_truncate) |
| 2046 | mnt_drop_write(nd->path.mnt); |
| 2047 | goto exit; |
| 2048 | } |
| 2049 | filp = nameidata_to_filp(nd); |
| 2050 | if (!IS_ERR(filp)) { |
| 2051 | error = ima_file_check(filp, acc_mode); |
| 2052 | if (error) { |
| 2053 | fput(filp); |
| 2054 | filp = ERR_PTR(error); |
| 2055 | } |
| 2056 | } |
| 2057 | if (!IS_ERR(filp)) { |
Al Viro | 648fa86 | 2009-12-24 01:26:48 -0500 | [diff] [blame] | 2058 | if (will_truncate) { |
| 2059 | error = handle_truncate(&nd->path); |
| 2060 | if (error) { |
| 2061 | fput(filp); |
| 2062 | filp = ERR_PTR(error); |
| 2063 | } |
| 2064 | } |
| 2065 | } |
| 2066 | /* |
| 2067 | * It is now safe to drop the mnt write |
| 2068 | * because the filp has had a write taken |
| 2069 | * on its behalf. |
| 2070 | */ |
| 2071 | if (will_truncate) |
| 2072 | mnt_drop_write(nd->path.mnt); |
Al Viro | d893f1b | 2010-10-29 03:30:42 -0400 | [diff] [blame] | 2073 | path_put(&nd->path); |
Al Viro | 648fa86 | 2009-12-24 01:26:48 -0500 | [diff] [blame] | 2074 | return filp; |
| 2075 | |
| 2076 | exit: |
| 2077 | if (!IS_ERR(nd->intent.open.file)) |
| 2078 | release_open_intent(nd); |
| 2079 | path_put(&nd->path); |
| 2080 | return ERR_PTR(error); |
| 2081 | } |
| 2082 | |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 2083 | /* |
| 2084 | * Handle O_CREAT case for do_filp_open |
| 2085 | */ |
Al Viro | fb1cc55 | 2009-12-24 01:58:28 -0500 | [diff] [blame] | 2086 | static struct file *do_last(struct nameidata *nd, struct path *path, |
Al Viro | 5b369df | 2009-12-24 06:51:13 -0500 | [diff] [blame] | 2087 | int open_flag, int acc_mode, |
Al Viro | 3e297b6 | 2010-03-26 12:40:13 -0400 | [diff] [blame] | 2088 | int mode, const char *pathname) |
Al Viro | fb1cc55 | 2009-12-24 01:58:28 -0500 | [diff] [blame] | 2089 | { |
Al Viro | a1e2803 | 2009-12-24 02:12:06 -0500 | [diff] [blame] | 2090 | struct dentry *dir = nd->path.dentry; |
Al Viro | fb1cc55 | 2009-12-24 01:58:28 -0500 | [diff] [blame] | 2091 | struct file *filp; |
Al Viro | 1f36f77 | 2009-12-26 10:56:19 -0500 | [diff] [blame] | 2092 | int error = -EISDIR; |
Al Viro | fb1cc55 | 2009-12-24 01:58:28 -0500 | [diff] [blame] | 2093 | |
Al Viro | 1f36f77 | 2009-12-26 10:56:19 -0500 | [diff] [blame] | 2094 | switch (nd->last_type) { |
| 2095 | case LAST_DOTDOT: |
| 2096 | follow_dotdot(nd); |
| 2097 | dir = nd->path.dentry; |
Neil Brown | 176306f | 2010-05-24 16:57:56 +1000 | [diff] [blame] | 2098 | case LAST_DOT: |
Nick Piggin | fb045ad | 2011-01-07 17:49:55 +1100 | [diff] [blame] | 2099 | if (need_reval_dot(dir)) { |
Nick Piggin | 34286d6 | 2011-01-07 17:49:57 +1100 | [diff] [blame^] | 2100 | error = d_revalidate(nd->path.dentry, nd); |
| 2101 | if (!error) |
Al Viro | 1f36f77 | 2009-12-26 10:56:19 -0500 | [diff] [blame] | 2102 | error = -ESTALE; |
Nick Piggin | 34286d6 | 2011-01-07 17:49:57 +1100 | [diff] [blame^] | 2103 | if (error < 0) |
Al Viro | 1f36f77 | 2009-12-26 10:56:19 -0500 | [diff] [blame] | 2104 | goto exit; |
Al Viro | 1f36f77 | 2009-12-26 10:56:19 -0500 | [diff] [blame] | 2105 | } |
| 2106 | /* fallthrough */ |
Al Viro | 1f36f77 | 2009-12-26 10:56:19 -0500 | [diff] [blame] | 2107 | case LAST_ROOT: |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 2108 | goto exit; |
Al Viro | 1f36f77 | 2009-12-26 10:56:19 -0500 | [diff] [blame] | 2109 | case LAST_BIND: |
| 2110 | audit_inode(pathname, dir); |
Al Viro | 67ee3ad | 2009-12-26 07:01:01 -0500 | [diff] [blame] | 2111 | goto ok; |
Al Viro | 1f36f77 | 2009-12-26 10:56:19 -0500 | [diff] [blame] | 2112 | } |
Al Viro | 67ee3ad | 2009-12-26 07:01:01 -0500 | [diff] [blame] | 2113 | |
Al Viro | 1f36f77 | 2009-12-26 10:56:19 -0500 | [diff] [blame] | 2114 | /* trailing slashes? */ |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 2115 | if (nd->last.name[nd->last.len]) |
| 2116 | goto exit; |
Al Viro | a2c36b4 | 2009-12-24 03:39:50 -0500 | [diff] [blame] | 2117 | |
Al Viro | a1e2803 | 2009-12-24 02:12:06 -0500 | [diff] [blame] | 2118 | mutex_lock(&dir->d_inode->i_mutex); |
| 2119 | |
| 2120 | path->dentry = lookup_hash(nd); |
| 2121 | path->mnt = nd->path.mnt; |
| 2122 | |
Al Viro | fb1cc55 | 2009-12-24 01:58:28 -0500 | [diff] [blame] | 2123 | error = PTR_ERR(path->dentry); |
| 2124 | if (IS_ERR(path->dentry)) { |
| 2125 | mutex_unlock(&dir->d_inode->i_mutex); |
| 2126 | goto exit; |
| 2127 | } |
| 2128 | |
| 2129 | if (IS_ERR(nd->intent.open.file)) { |
| 2130 | error = PTR_ERR(nd->intent.open.file); |
| 2131 | goto exit_mutex_unlock; |
| 2132 | } |
| 2133 | |
| 2134 | /* Negative dentry, just create the file */ |
| 2135 | if (!path->dentry->d_inode) { |
| 2136 | /* |
| 2137 | * This write is needed to ensure that a |
| 2138 | * ro->rw transition does not occur between |
| 2139 | * the time when the file is created and when |
| 2140 | * a permanent write count is taken through |
| 2141 | * the 'struct file' in nameidata_to_filp(). |
| 2142 | */ |
| 2143 | error = mnt_want_write(nd->path.mnt); |
| 2144 | if (error) |
| 2145 | goto exit_mutex_unlock; |
| 2146 | error = __open_namei_create(nd, path, open_flag, mode); |
| 2147 | if (error) { |
| 2148 | mnt_drop_write(nd->path.mnt); |
| 2149 | goto exit; |
| 2150 | } |
| 2151 | filp = nameidata_to_filp(nd); |
| 2152 | mnt_drop_write(nd->path.mnt); |
Al Viro | d893f1b | 2010-10-29 03:30:42 -0400 | [diff] [blame] | 2153 | path_put(&nd->path); |
Al Viro | fb1cc55 | 2009-12-24 01:58:28 -0500 | [diff] [blame] | 2154 | if (!IS_ERR(filp)) { |
| 2155 | error = ima_file_check(filp, acc_mode); |
| 2156 | if (error) { |
| 2157 | fput(filp); |
| 2158 | filp = ERR_PTR(error); |
| 2159 | } |
| 2160 | } |
| 2161 | return filp; |
| 2162 | } |
| 2163 | |
| 2164 | /* |
| 2165 | * It already exists. |
| 2166 | */ |
| 2167 | mutex_unlock(&dir->d_inode->i_mutex); |
| 2168 | audit_inode(pathname, path->dentry); |
| 2169 | |
| 2170 | error = -EEXIST; |
Al Viro | 5b369df | 2009-12-24 06:51:13 -0500 | [diff] [blame] | 2171 | if (open_flag & O_EXCL) |
Al Viro | fb1cc55 | 2009-12-24 01:58:28 -0500 | [diff] [blame] | 2172 | goto exit_dput; |
| 2173 | |
| 2174 | if (__follow_mount(path)) { |
| 2175 | error = -ELOOP; |
Al Viro | 5b369df | 2009-12-24 06:51:13 -0500 | [diff] [blame] | 2176 | if (open_flag & O_NOFOLLOW) |
Al Viro | fb1cc55 | 2009-12-24 01:58:28 -0500 | [diff] [blame] | 2177 | goto exit_dput; |
| 2178 | } |
| 2179 | |
| 2180 | error = -ENOENT; |
| 2181 | if (!path->dentry->d_inode) |
| 2182 | goto exit_dput; |
Al Viro | 9e67f36 | 2009-12-26 07:04:50 -0500 | [diff] [blame] | 2183 | |
| 2184 | if (path->dentry->d_inode->i_op->follow_link) |
Al Viro | fb1cc55 | 2009-12-24 01:58:28 -0500 | [diff] [blame] | 2185 | return NULL; |
Al Viro | fb1cc55 | 2009-12-24 01:58:28 -0500 | [diff] [blame] | 2186 | |
| 2187 | path_to_nameidata(path, nd); |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 2188 | nd->inode = path->dentry->d_inode; |
Al Viro | fb1cc55 | 2009-12-24 01:58:28 -0500 | [diff] [blame] | 2189 | error = -EISDIR; |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 2190 | if (S_ISDIR(nd->inode->i_mode)) |
Al Viro | fb1cc55 | 2009-12-24 01:58:28 -0500 | [diff] [blame] | 2191 | goto exit; |
Al Viro | 67ee3ad | 2009-12-26 07:01:01 -0500 | [diff] [blame] | 2192 | ok: |
Al Viro | 9a66179 | 2009-12-24 06:49:47 -0500 | [diff] [blame] | 2193 | filp = finish_open(nd, open_flag, acc_mode); |
Al Viro | fb1cc55 | 2009-12-24 01:58:28 -0500 | [diff] [blame] | 2194 | return filp; |
| 2195 | |
| 2196 | exit_mutex_unlock: |
| 2197 | mutex_unlock(&dir->d_inode->i_mutex); |
| 2198 | exit_dput: |
| 2199 | path_put_conditional(path, nd); |
| 2200 | exit: |
| 2201 | if (!IS_ERR(nd->intent.open.file)) |
| 2202 | release_open_intent(nd); |
Al Viro | fb1cc55 | 2009-12-24 01:58:28 -0500 | [diff] [blame] | 2203 | path_put(&nd->path); |
| 2204 | return ERR_PTR(error); |
| 2205 | } |
| 2206 | |
Dave Hansen | d57999e | 2008-02-15 14:37:27 -0800 | [diff] [blame] | 2207 | /* |
Dave Hansen | 4a3fd21 | 2008-02-15 14:37:48 -0800 | [diff] [blame] | 2208 | * Note that the low bits of the passed in "open_flag" |
| 2209 | * are not the same as in the local variable "flag". See |
| 2210 | * open_to_namei_flags() for more details. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2211 | */ |
Christoph Hellwig | a70e65d | 2008-02-15 14:37:28 -0800 | [diff] [blame] | 2212 | struct file *do_filp_open(int dfd, const char *pathname, |
Al Viro | 6e8341a | 2009-04-06 11:16:22 -0400 | [diff] [blame] | 2213 | int open_flag, int mode, int acc_mode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2214 | { |
Dave Hansen | 4a3fd21 | 2008-02-15 14:37:48 -0800 | [diff] [blame] | 2215 | struct file *filp; |
Christoph Hellwig | a70e65d | 2008-02-15 14:37:28 -0800 | [diff] [blame] | 2216 | struct nameidata nd; |
Al Viro | 6e8341a | 2009-04-06 11:16:22 -0400 | [diff] [blame] | 2217 | int error; |
Al Viro | 9850c05 | 2010-01-13 15:01:15 -0500 | [diff] [blame] | 2218 | struct path path; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2219 | int count = 0; |
Dave Hansen | d57999e | 2008-02-15 14:37:27 -0800 | [diff] [blame] | 2220 | int flag = open_to_namei_flags(open_flag); |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 2221 | int flags; |
Al Viro | 1f36f77 | 2009-12-26 10:56:19 -0500 | [diff] [blame] | 2222 | |
| 2223 | if (!(open_flag & O_CREAT)) |
| 2224 | mode = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2225 | |
Lino Sanfilippo | b1085ba | 2010-11-05 17:05:27 +0100 | [diff] [blame] | 2226 | /* Must never be set by userspace */ |
| 2227 | open_flag &= ~FMODE_NONOTIFY; |
| 2228 | |
Christoph Hellwig | 6b2f3d1 | 2009-10-27 11:05:28 +0100 | [diff] [blame] | 2229 | /* |
| 2230 | * O_SYNC is implemented as __O_SYNC|O_DSYNC. As many places only |
| 2231 | * check for O_DSYNC if the need any syncing at all we enforce it's |
| 2232 | * always set instead of having to deal with possibly weird behaviour |
| 2233 | * for malicious applications setting only __O_SYNC. |
| 2234 | */ |
| 2235 | if (open_flag & __O_SYNC) |
| 2236 | open_flag |= O_DSYNC; |
| 2237 | |
Al Viro | 6e8341a | 2009-04-06 11:16:22 -0400 | [diff] [blame] | 2238 | if (!acc_mode) |
Al Viro | 6d12552 | 2009-12-24 06:58:56 -0500 | [diff] [blame] | 2239 | acc_mode = MAY_OPEN | ACC_MODE(open_flag); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2240 | |
Trond Myklebust | 834f2a4 | 2005-10-18 14:20:16 -0700 | [diff] [blame] | 2241 | /* O_TRUNC implies we need access checks for write permissions */ |
Al Viro | 4296e2c | 2009-12-24 07:15:41 -0500 | [diff] [blame] | 2242 | if (open_flag & O_TRUNC) |
Trond Myklebust | 834f2a4 | 2005-10-18 14:20:16 -0700 | [diff] [blame] | 2243 | acc_mode |= MAY_WRITE; |
| 2244 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2245 | /* Allow the LSM permission hook to distinguish append |
| 2246 | access from general write access. */ |
Al Viro | 4296e2c | 2009-12-24 07:15:41 -0500 | [diff] [blame] | 2247 | if (open_flag & O_APPEND) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2248 | acc_mode |= MAY_APPEND; |
| 2249 | |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 2250 | flags = LOOKUP_OPEN; |
| 2251 | if (open_flag & O_CREAT) { |
| 2252 | flags |= LOOKUP_CREATE; |
| 2253 | if (open_flag & O_EXCL) |
| 2254 | flags |= LOOKUP_EXCL; |
J. R. Okajima | 654f562 | 2009-06-18 23:30:15 +0900 | [diff] [blame] | 2255 | } |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 2256 | if (open_flag & O_DIRECTORY) |
| 2257 | flags |= LOOKUP_DIRECTORY; |
| 2258 | if (!(open_flag & O_NOFOLLOW)) |
| 2259 | flags |= LOOKUP_FOLLOW; |
| 2260 | |
| 2261 | filp = get_empty_filp(); |
| 2262 | if (!filp) |
| 2263 | return ERR_PTR(-ENFILE); |
| 2264 | |
| 2265 | filp->f_flags = open_flag; |
| 2266 | nd.intent.open.file = filp; |
| 2267 | nd.intent.open.flags = flag; |
| 2268 | nd.intent.open.create_mode = mode; |
| 2269 | |
| 2270 | if (open_flag & O_CREAT) |
| 2271 | goto creat; |
| 2272 | |
| 2273 | /* !O_CREAT, simple open */ |
| 2274 | error = do_path_lookup(dfd, pathname, flags, &nd); |
| 2275 | if (unlikely(error)) |
| 2276 | goto out_filp; |
| 2277 | error = -ELOOP; |
| 2278 | if (!(nd.flags & LOOKUP_FOLLOW)) { |
| 2279 | if (nd.inode->i_op->follow_link) |
| 2280 | goto out_path; |
| 2281 | } |
| 2282 | error = -ENOTDIR; |
| 2283 | if (nd.flags & LOOKUP_DIRECTORY) { |
| 2284 | if (!nd.inode->i_op->lookup) |
| 2285 | goto out_path; |
| 2286 | } |
| 2287 | audit_inode(pathname, nd.path.dentry); |
| 2288 | filp = finish_open(&nd, open_flag, acc_mode); |
| 2289 | return filp; |
| 2290 | |
| 2291 | creat: |
| 2292 | /* OK, have to create the file. Find the parent. */ |
| 2293 | error = path_init_rcu(dfd, pathname, |
| 2294 | LOOKUP_PARENT | (flags & LOOKUP_REVAL), &nd); |
| 2295 | if (error) |
| 2296 | goto out_filp; |
| 2297 | error = path_walk_rcu(pathname, &nd); |
| 2298 | path_finish_rcu(&nd); |
| 2299 | if (unlikely(error == -ECHILD || error == -ESTALE)) { |
| 2300 | /* slower, locked walk */ |
| 2301 | if (error == -ESTALE) { |
| 2302 | reval: |
| 2303 | flags |= LOOKUP_REVAL; |
| 2304 | } |
| 2305 | error = path_init(dfd, pathname, |
| 2306 | LOOKUP_PARENT | (flags & LOOKUP_REVAL), &nd); |
| 2307 | if (error) |
| 2308 | goto out_filp; |
| 2309 | |
| 2310 | error = path_walk_simple(pathname, &nd); |
| 2311 | } |
| 2312 | if (unlikely(error)) |
| 2313 | goto out_filp; |
| 2314 | if (unlikely(!audit_dummy_context())) |
Al Viro | 9b4a9b1 | 2009-04-07 11:44:16 -0400 | [diff] [blame] | 2315 | audit_inode(pathname, nd.path.dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2316 | |
| 2317 | /* |
Al Viro | a2c36b4 | 2009-12-24 03:39:50 -0500 | [diff] [blame] | 2318 | * We have the parent and last component. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2319 | */ |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 2320 | nd.flags = flags; |
Al Viro | 3e297b6 | 2010-03-26 12:40:13 -0400 | [diff] [blame] | 2321 | filp = do_last(&nd, &path, open_flag, acc_mode, mode, pathname); |
Al Viro | 806b681 | 2009-12-26 07:16:40 -0500 | [diff] [blame] | 2322 | while (unlikely(!filp)) { /* trailing symlink */ |
Al Viro | def4af3 | 2009-12-26 08:37:05 -0500 | [diff] [blame] | 2323 | struct path holder; |
Al Viro | def4af3 | 2009-12-26 08:37:05 -0500 | [diff] [blame] | 2324 | void *cookie; |
Al Viro | 806b681 | 2009-12-26 07:16:40 -0500 | [diff] [blame] | 2325 | error = -ELOOP; |
Al Viro | 1f36f77 | 2009-12-26 10:56:19 -0500 | [diff] [blame] | 2326 | /* S_ISDIR part is a temporary automount kludge */ |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 2327 | if (!(nd.flags & LOOKUP_FOLLOW) && !S_ISDIR(nd.inode->i_mode)) |
Al Viro | 1f36f77 | 2009-12-26 10:56:19 -0500 | [diff] [blame] | 2328 | goto exit_dput; |
| 2329 | if (count++ == 32) |
Al Viro | 806b681 | 2009-12-26 07:16:40 -0500 | [diff] [blame] | 2330 | goto exit_dput; |
| 2331 | /* |
| 2332 | * This is subtle. Instead of calling do_follow_link() we do |
| 2333 | * the thing by hands. The reason is that this way we have zero |
| 2334 | * link_count and path_walk() (called from ->follow_link) |
| 2335 | * honoring LOOKUP_PARENT. After that we have the parent and |
| 2336 | * last component, i.e. we are in the same situation as after |
| 2337 | * the first path_walk(). Well, almost - if the last component |
| 2338 | * is normal we get its copy stored in nd->last.name and we will |
| 2339 | * have to putname() it when we are done. Procfs-like symlinks |
| 2340 | * just set LAST_BIND. |
| 2341 | */ |
| 2342 | nd.flags |= LOOKUP_PARENT; |
| 2343 | error = security_inode_follow_link(path.dentry, &nd); |
| 2344 | if (error) |
| 2345 | goto exit_dput; |
Al Viro | def4af3 | 2009-12-26 08:37:05 -0500 | [diff] [blame] | 2346 | error = __do_follow_link(&path, &nd, &cookie); |
| 2347 | if (unlikely(error)) { |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 2348 | if (!IS_ERR(cookie) && nd.inode->i_op->put_link) |
| 2349 | nd.inode->i_op->put_link(path.dentry, &nd, cookie); |
Al Viro | 806b681 | 2009-12-26 07:16:40 -0500 | [diff] [blame] | 2350 | /* nd.path had been dropped */ |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 2351 | nd.path = path; |
| 2352 | goto out_path; |
Al Viro | 806b681 | 2009-12-26 07:16:40 -0500 | [diff] [blame] | 2353 | } |
Al Viro | def4af3 | 2009-12-26 08:37:05 -0500 | [diff] [blame] | 2354 | holder = path; |
Al Viro | 806b681 | 2009-12-26 07:16:40 -0500 | [diff] [blame] | 2355 | nd.flags &= ~LOOKUP_PARENT; |
Al Viro | 3e297b6 | 2010-03-26 12:40:13 -0400 | [diff] [blame] | 2356 | filp = do_last(&nd, &path, open_flag, acc_mode, mode, pathname); |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 2357 | if (nd.inode->i_op->put_link) |
| 2358 | nd.inode->i_op->put_link(holder.dentry, &nd, cookie); |
Al Viro | def4af3 | 2009-12-26 08:37:05 -0500 | [diff] [blame] | 2359 | path_put(&holder); |
Al Viro | 806b681 | 2009-12-26 07:16:40 -0500 | [diff] [blame] | 2360 | } |
Al Viro | 10fa8e6 | 2009-12-26 07:09:49 -0500 | [diff] [blame] | 2361 | out: |
Al Viro | 2a73787 | 2009-04-07 11:49:53 -0400 | [diff] [blame] | 2362 | if (nd.root.mnt) |
| 2363 | path_put(&nd.root); |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 2364 | if (filp == ERR_PTR(-ESTALE) && !(flags & LOOKUP_REVAL)) |
Al Viro | 10fa8e6 | 2009-12-26 07:09:49 -0500 | [diff] [blame] | 2365 | goto reval; |
Al Viro | 10fa8e6 | 2009-12-26 07:09:49 -0500 | [diff] [blame] | 2366 | return filp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2367 | |
Al Viro | 806b681 | 2009-12-26 07:16:40 -0500 | [diff] [blame] | 2368 | exit_dput: |
| 2369 | path_put_conditional(&path, &nd); |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 2370 | out_path: |
| 2371 | path_put(&nd.path); |
| 2372 | out_filp: |
Al Viro | 806b681 | 2009-12-26 07:16:40 -0500 | [diff] [blame] | 2373 | if (!IS_ERR(nd.intent.open.file)) |
Christoph Hellwig | a70e65d | 2008-02-15 14:37:28 -0800 | [diff] [blame] | 2374 | release_open_intent(&nd); |
Al Viro | 806b681 | 2009-12-26 07:16:40 -0500 | [diff] [blame] | 2375 | filp = ERR_PTR(error); |
Al Viro | 10fa8e6 | 2009-12-26 07:09:49 -0500 | [diff] [blame] | 2376 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2377 | } |
| 2378 | |
| 2379 | /** |
Christoph Hellwig | a70e65d | 2008-02-15 14:37:28 -0800 | [diff] [blame] | 2380 | * filp_open - open file and return file pointer |
| 2381 | * |
| 2382 | * @filename: path to open |
| 2383 | * @flags: open flags as per the open(2) second argument |
| 2384 | * @mode: mode for the new file if O_CREAT is set, else ignored |
| 2385 | * |
| 2386 | * This is the helper to open a file from kernelspace if you really |
| 2387 | * have to. But in generally you should not do this, so please move |
| 2388 | * along, nothing to see here.. |
| 2389 | */ |
| 2390 | struct file *filp_open(const char *filename, int flags, int mode) |
| 2391 | { |
Al Viro | 6e8341a | 2009-04-06 11:16:22 -0400 | [diff] [blame] | 2392 | return do_filp_open(AT_FDCWD, filename, flags, mode, 0); |
Christoph Hellwig | a70e65d | 2008-02-15 14:37:28 -0800 | [diff] [blame] | 2393 | } |
| 2394 | EXPORT_SYMBOL(filp_open); |
| 2395 | |
| 2396 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2397 | * lookup_create - lookup a dentry, creating it if it doesn't exist |
| 2398 | * @nd: nameidata info |
| 2399 | * @is_dir: directory flag |
| 2400 | * |
| 2401 | * Simple function to lookup and return a dentry and create it |
| 2402 | * if it doesn't exist. Is SMP-safe. |
Christoph Hellwig | c663e5d | 2005-06-23 00:09:49 -0700 | [diff] [blame] | 2403 | * |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 2404 | * Returns with nd->path.dentry->d_inode->i_mutex locked. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2405 | */ |
| 2406 | struct dentry *lookup_create(struct nameidata *nd, int is_dir) |
| 2407 | { |
Christoph Hellwig | c663e5d | 2005-06-23 00:09:49 -0700 | [diff] [blame] | 2408 | struct dentry *dentry = ERR_PTR(-EEXIST); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2409 | |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 2410 | mutex_lock_nested(&nd->path.dentry->d_inode->i_mutex, I_MUTEX_PARENT); |
Christoph Hellwig | c663e5d | 2005-06-23 00:09:49 -0700 | [diff] [blame] | 2411 | /* |
| 2412 | * Yucky last component or no last component at all? |
| 2413 | * (foo/., foo/.., /////) |
| 2414 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2415 | if (nd->last_type != LAST_NORM) |
| 2416 | goto fail; |
| 2417 | nd->flags &= ~LOOKUP_PARENT; |
Al Viro | 3516586 | 2008-08-05 03:00:49 -0400 | [diff] [blame] | 2418 | nd->flags |= LOOKUP_CREATE | LOOKUP_EXCL; |
ASANO Masahiro | a634904 | 2006-08-22 20:06:02 -0400 | [diff] [blame] | 2419 | nd->intent.open.flags = O_EXCL; |
Christoph Hellwig | c663e5d | 2005-06-23 00:09:49 -0700 | [diff] [blame] | 2420 | |
| 2421 | /* |
| 2422 | * Do the final lookup. |
| 2423 | */ |
Christoph Hellwig | 49705b7 | 2005-11-08 21:35:06 -0800 | [diff] [blame] | 2424 | dentry = lookup_hash(nd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2425 | if (IS_ERR(dentry)) |
| 2426 | goto fail; |
Christoph Hellwig | c663e5d | 2005-06-23 00:09:49 -0700 | [diff] [blame] | 2427 | |
Al Viro | e9baf6e | 2008-05-15 04:49:12 -0400 | [diff] [blame] | 2428 | if (dentry->d_inode) |
| 2429 | goto eexist; |
Christoph Hellwig | c663e5d | 2005-06-23 00:09:49 -0700 | [diff] [blame] | 2430 | /* |
| 2431 | * Special case - lookup gave negative, but... we had foo/bar/ |
| 2432 | * From the vfs_mknod() POV we just have a negative dentry - |
| 2433 | * all is fine. Let's be bastards - you had / on the end, you've |
| 2434 | * been asking for (non-existent) directory. -ENOENT for you. |
| 2435 | */ |
Al Viro | e9baf6e | 2008-05-15 04:49:12 -0400 | [diff] [blame] | 2436 | if (unlikely(!is_dir && nd->last.name[nd->last.len])) { |
| 2437 | dput(dentry); |
| 2438 | dentry = ERR_PTR(-ENOENT); |
| 2439 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2440 | return dentry; |
Al Viro | e9baf6e | 2008-05-15 04:49:12 -0400 | [diff] [blame] | 2441 | eexist: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2442 | dput(dentry); |
Al Viro | e9baf6e | 2008-05-15 04:49:12 -0400 | [diff] [blame] | 2443 | dentry = ERR_PTR(-EEXIST); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2444 | fail: |
| 2445 | return dentry; |
| 2446 | } |
Christoph Hellwig | f81a0bf | 2005-05-19 12:26:43 -0700 | [diff] [blame] | 2447 | EXPORT_SYMBOL_GPL(lookup_create); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2448 | |
| 2449 | int vfs_mknod(struct inode *dir, struct dentry *dentry, int mode, dev_t dev) |
| 2450 | { |
Miklos Szeredi | a95164d | 2008-07-30 15:08:48 +0200 | [diff] [blame] | 2451 | int error = may_create(dir, dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2452 | |
| 2453 | if (error) |
| 2454 | return error; |
| 2455 | |
| 2456 | if ((S_ISCHR(mode) || S_ISBLK(mode)) && !capable(CAP_MKNOD)) |
| 2457 | return -EPERM; |
| 2458 | |
Al Viro | acfa438 | 2008-12-04 10:06:33 -0500 | [diff] [blame] | 2459 | if (!dir->i_op->mknod) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2460 | return -EPERM; |
| 2461 | |
Serge E. Hallyn | 08ce5f1 | 2008-04-29 01:00:10 -0700 | [diff] [blame] | 2462 | error = devcgroup_inode_mknod(mode, dev); |
| 2463 | if (error) |
| 2464 | return error; |
| 2465 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2466 | error = security_inode_mknod(dir, dentry, mode, dev); |
| 2467 | if (error) |
| 2468 | return error; |
| 2469 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2470 | error = dir->i_op->mknod(dir, dentry, mode, dev); |
Stephen Smalley | a74574a | 2005-09-09 13:01:44 -0700 | [diff] [blame] | 2471 | if (!error) |
Amy Griffis | f38aa94 | 2005-11-03 15:57:06 +0000 | [diff] [blame] | 2472 | fsnotify_create(dir, dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2473 | return error; |
| 2474 | } |
| 2475 | |
Dave Hansen | 463c319 | 2008-02-15 14:37:57 -0800 | [diff] [blame] | 2476 | static int may_mknod(mode_t mode) |
| 2477 | { |
| 2478 | switch (mode & S_IFMT) { |
| 2479 | case S_IFREG: |
| 2480 | case S_IFCHR: |
| 2481 | case S_IFBLK: |
| 2482 | case S_IFIFO: |
| 2483 | case S_IFSOCK: |
| 2484 | case 0: /* zero mode translates to S_IFREG */ |
| 2485 | return 0; |
| 2486 | case S_IFDIR: |
| 2487 | return -EPERM; |
| 2488 | default: |
| 2489 | return -EINVAL; |
| 2490 | } |
| 2491 | } |
| 2492 | |
Heiko Carstens | 2e4d092 | 2009-01-14 14:14:31 +0100 | [diff] [blame] | 2493 | SYSCALL_DEFINE4(mknodat, int, dfd, const char __user *, filename, int, mode, |
| 2494 | unsigned, dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2495 | { |
Al Viro | 2ad94ae | 2008-07-21 09:32:51 -0400 | [diff] [blame] | 2496 | int error; |
| 2497 | char *tmp; |
| 2498 | struct dentry *dentry; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2499 | struct nameidata nd; |
| 2500 | |
| 2501 | if (S_ISDIR(mode)) |
| 2502 | return -EPERM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2503 | |
Al Viro | 2ad94ae | 2008-07-21 09:32:51 -0400 | [diff] [blame] | 2504 | error = user_path_parent(dfd, filename, &nd, &tmp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2505 | if (error) |
Al Viro | 2ad94ae | 2008-07-21 09:32:51 -0400 | [diff] [blame] | 2506 | return error; |
| 2507 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2508 | dentry = lookup_create(&nd, 0); |
Dave Hansen | 463c319 | 2008-02-15 14:37:57 -0800 | [diff] [blame] | 2509 | if (IS_ERR(dentry)) { |
| 2510 | error = PTR_ERR(dentry); |
| 2511 | goto out_unlock; |
| 2512 | } |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 2513 | if (!IS_POSIXACL(nd.path.dentry->d_inode)) |
Al Viro | ce3b0f8 | 2009-03-29 19:08:22 -0400 | [diff] [blame] | 2514 | mode &= ~current_umask(); |
Dave Hansen | 463c319 | 2008-02-15 14:37:57 -0800 | [diff] [blame] | 2515 | error = may_mknod(mode); |
| 2516 | if (error) |
| 2517 | goto out_dput; |
| 2518 | error = mnt_want_write(nd.path.mnt); |
| 2519 | if (error) |
| 2520 | goto out_dput; |
Kentaro Takeda | be6d3e5 | 2008-12-17 13:24:15 +0900 | [diff] [blame] | 2521 | error = security_path_mknod(&nd.path, dentry, mode, dev); |
| 2522 | if (error) |
| 2523 | goto out_drop_write; |
Dave Hansen | 463c319 | 2008-02-15 14:37:57 -0800 | [diff] [blame] | 2524 | switch (mode & S_IFMT) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2525 | case 0: case S_IFREG: |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 2526 | error = vfs_create(nd.path.dentry->d_inode,dentry,mode,&nd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2527 | break; |
| 2528 | case S_IFCHR: case S_IFBLK: |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 2529 | error = vfs_mknod(nd.path.dentry->d_inode,dentry,mode, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2530 | new_decode_dev(dev)); |
| 2531 | break; |
| 2532 | case S_IFIFO: case S_IFSOCK: |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 2533 | error = vfs_mknod(nd.path.dentry->d_inode,dentry,mode,0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2534 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2535 | } |
Kentaro Takeda | be6d3e5 | 2008-12-17 13:24:15 +0900 | [diff] [blame] | 2536 | out_drop_write: |
Dave Hansen | 463c319 | 2008-02-15 14:37:57 -0800 | [diff] [blame] | 2537 | mnt_drop_write(nd.path.mnt); |
| 2538 | out_dput: |
| 2539 | dput(dentry); |
| 2540 | out_unlock: |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 2541 | mutex_unlock(&nd.path.dentry->d_inode->i_mutex); |
Jan Blunck | 1d957f9 | 2008-02-14 19:34:35 -0800 | [diff] [blame] | 2542 | path_put(&nd.path); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2543 | putname(tmp); |
| 2544 | |
| 2545 | return error; |
| 2546 | } |
| 2547 | |
Heiko Carstens | 3480b25 | 2009-01-14 14:14:16 +0100 | [diff] [blame] | 2548 | SYSCALL_DEFINE3(mknod, const char __user *, filename, int, mode, unsigned, dev) |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 2549 | { |
| 2550 | return sys_mknodat(AT_FDCWD, filename, mode, dev); |
| 2551 | } |
| 2552 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2553 | int vfs_mkdir(struct inode *dir, struct dentry *dentry, int mode) |
| 2554 | { |
Miklos Szeredi | a95164d | 2008-07-30 15:08:48 +0200 | [diff] [blame] | 2555 | int error = may_create(dir, dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2556 | |
| 2557 | if (error) |
| 2558 | return error; |
| 2559 | |
Al Viro | acfa438 | 2008-12-04 10:06:33 -0500 | [diff] [blame] | 2560 | if (!dir->i_op->mkdir) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2561 | return -EPERM; |
| 2562 | |
| 2563 | mode &= (S_IRWXUGO|S_ISVTX); |
| 2564 | error = security_inode_mkdir(dir, dentry, mode); |
| 2565 | if (error) |
| 2566 | return error; |
| 2567 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2568 | error = dir->i_op->mkdir(dir, dentry, mode); |
Stephen Smalley | a74574a | 2005-09-09 13:01:44 -0700 | [diff] [blame] | 2569 | if (!error) |
Amy Griffis | f38aa94 | 2005-11-03 15:57:06 +0000 | [diff] [blame] | 2570 | fsnotify_mkdir(dir, dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2571 | return error; |
| 2572 | } |
| 2573 | |
Heiko Carstens | 2e4d092 | 2009-01-14 14:14:31 +0100 | [diff] [blame] | 2574 | SYSCALL_DEFINE3(mkdirat, int, dfd, const char __user *, pathname, int, mode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2575 | { |
| 2576 | int error = 0; |
| 2577 | char * tmp; |
Dave Hansen | 6902d92 | 2006-09-30 23:29:01 -0700 | [diff] [blame] | 2578 | struct dentry *dentry; |
| 2579 | struct nameidata nd; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2580 | |
Al Viro | 2ad94ae | 2008-07-21 09:32:51 -0400 | [diff] [blame] | 2581 | error = user_path_parent(dfd, pathname, &nd, &tmp); |
| 2582 | if (error) |
Dave Hansen | 6902d92 | 2006-09-30 23:29:01 -0700 | [diff] [blame] | 2583 | goto out_err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2584 | |
Dave Hansen | 6902d92 | 2006-09-30 23:29:01 -0700 | [diff] [blame] | 2585 | dentry = lookup_create(&nd, 1); |
| 2586 | error = PTR_ERR(dentry); |
| 2587 | if (IS_ERR(dentry)) |
| 2588 | goto out_unlock; |
| 2589 | |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 2590 | if (!IS_POSIXACL(nd.path.dentry->d_inode)) |
Al Viro | ce3b0f8 | 2009-03-29 19:08:22 -0400 | [diff] [blame] | 2591 | mode &= ~current_umask(); |
Dave Hansen | 463c319 | 2008-02-15 14:37:57 -0800 | [diff] [blame] | 2592 | error = mnt_want_write(nd.path.mnt); |
| 2593 | if (error) |
| 2594 | goto out_dput; |
Kentaro Takeda | be6d3e5 | 2008-12-17 13:24:15 +0900 | [diff] [blame] | 2595 | error = security_path_mkdir(&nd.path, dentry, mode); |
| 2596 | if (error) |
| 2597 | goto out_drop_write; |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 2598 | error = vfs_mkdir(nd.path.dentry->d_inode, dentry, mode); |
Kentaro Takeda | be6d3e5 | 2008-12-17 13:24:15 +0900 | [diff] [blame] | 2599 | out_drop_write: |
Dave Hansen | 463c319 | 2008-02-15 14:37:57 -0800 | [diff] [blame] | 2600 | mnt_drop_write(nd.path.mnt); |
| 2601 | out_dput: |
Dave Hansen | 6902d92 | 2006-09-30 23:29:01 -0700 | [diff] [blame] | 2602 | dput(dentry); |
| 2603 | out_unlock: |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 2604 | mutex_unlock(&nd.path.dentry->d_inode->i_mutex); |
Jan Blunck | 1d957f9 | 2008-02-14 19:34:35 -0800 | [diff] [blame] | 2605 | path_put(&nd.path); |
Dave Hansen | 6902d92 | 2006-09-30 23:29:01 -0700 | [diff] [blame] | 2606 | putname(tmp); |
| 2607 | out_err: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2608 | return error; |
| 2609 | } |
| 2610 | |
Heiko Carstens | 3cdad42 | 2009-01-14 14:14:22 +0100 | [diff] [blame] | 2611 | SYSCALL_DEFINE2(mkdir, const char __user *, pathname, int, mode) |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 2612 | { |
| 2613 | return sys_mkdirat(AT_FDCWD, pathname, mode); |
| 2614 | } |
| 2615 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2616 | /* |
| 2617 | * We try to drop the dentry early: we should have |
| 2618 | * a usage count of 2 if we're the only user of this |
| 2619 | * dentry, and if that is true (possibly after pruning |
| 2620 | * the dcache), then we drop the dentry now. |
| 2621 | * |
| 2622 | * A low-level filesystem can, if it choses, legally |
| 2623 | * do a |
| 2624 | * |
| 2625 | * if (!d_unhashed(dentry)) |
| 2626 | * return -EBUSY; |
| 2627 | * |
| 2628 | * if it cannot handle the case of removing a directory |
| 2629 | * that is still in use by something else.. |
| 2630 | */ |
| 2631 | void dentry_unhash(struct dentry *dentry) |
| 2632 | { |
| 2633 | dget(dentry); |
Vasily Averin | dc16842 | 2006-12-06 20:37:07 -0800 | [diff] [blame] | 2634 | shrink_dcache_parent(dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2635 | spin_lock(&dentry->d_lock); |
Nick Piggin | b7ab39f | 2011-01-07 17:49:32 +1100 | [diff] [blame] | 2636 | if (dentry->d_count == 2) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2637 | __d_drop(dentry); |
| 2638 | spin_unlock(&dentry->d_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2639 | } |
| 2640 | |
| 2641 | int vfs_rmdir(struct inode *dir, struct dentry *dentry) |
| 2642 | { |
| 2643 | int error = may_delete(dir, dentry, 1); |
| 2644 | |
| 2645 | if (error) |
| 2646 | return error; |
| 2647 | |
Al Viro | acfa438 | 2008-12-04 10:06:33 -0500 | [diff] [blame] | 2648 | if (!dir->i_op->rmdir) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2649 | return -EPERM; |
| 2650 | |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 2651 | mutex_lock(&dentry->d_inode->i_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2652 | dentry_unhash(dentry); |
| 2653 | if (d_mountpoint(dentry)) |
| 2654 | error = -EBUSY; |
| 2655 | else { |
| 2656 | error = security_inode_rmdir(dir, dentry); |
| 2657 | if (!error) { |
| 2658 | error = dir->i_op->rmdir(dir, dentry); |
Al Viro | d83c49f | 2010-04-30 17:17:09 -0400 | [diff] [blame] | 2659 | if (!error) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2660 | dentry->d_inode->i_flags |= S_DEAD; |
Al Viro | d83c49f | 2010-04-30 17:17:09 -0400 | [diff] [blame] | 2661 | dont_mount(dentry); |
| 2662 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2663 | } |
| 2664 | } |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 2665 | mutex_unlock(&dentry->d_inode->i_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2666 | if (!error) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2667 | d_delete(dentry); |
| 2668 | } |
| 2669 | dput(dentry); |
| 2670 | |
| 2671 | return error; |
| 2672 | } |
| 2673 | |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 2674 | static long do_rmdir(int dfd, const char __user *pathname) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2675 | { |
| 2676 | int error = 0; |
| 2677 | char * name; |
| 2678 | struct dentry *dentry; |
| 2679 | struct nameidata nd; |
| 2680 | |
Al Viro | 2ad94ae | 2008-07-21 09:32:51 -0400 | [diff] [blame] | 2681 | error = user_path_parent(dfd, pathname, &nd, &name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2682 | if (error) |
Al Viro | 2ad94ae | 2008-07-21 09:32:51 -0400 | [diff] [blame] | 2683 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2684 | |
| 2685 | switch(nd.last_type) { |
OGAWA Hirofumi | 0612d9f | 2008-10-16 07:50:29 +0900 | [diff] [blame] | 2686 | case LAST_DOTDOT: |
| 2687 | error = -ENOTEMPTY; |
| 2688 | goto exit1; |
| 2689 | case LAST_DOT: |
| 2690 | error = -EINVAL; |
| 2691 | goto exit1; |
| 2692 | case LAST_ROOT: |
| 2693 | error = -EBUSY; |
| 2694 | goto exit1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2695 | } |
OGAWA Hirofumi | 0612d9f | 2008-10-16 07:50:29 +0900 | [diff] [blame] | 2696 | |
| 2697 | nd.flags &= ~LOOKUP_PARENT; |
| 2698 | |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 2699 | mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT); |
Christoph Hellwig | 49705b7 | 2005-11-08 21:35:06 -0800 | [diff] [blame] | 2700 | dentry = lookup_hash(&nd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2701 | error = PTR_ERR(dentry); |
Dave Hansen | 6902d92 | 2006-09-30 23:29:01 -0700 | [diff] [blame] | 2702 | if (IS_ERR(dentry)) |
| 2703 | goto exit2; |
Dave Hansen | 0622753 | 2008-02-15 14:37:34 -0800 | [diff] [blame] | 2704 | error = mnt_want_write(nd.path.mnt); |
| 2705 | if (error) |
| 2706 | goto exit3; |
Kentaro Takeda | be6d3e5 | 2008-12-17 13:24:15 +0900 | [diff] [blame] | 2707 | error = security_path_rmdir(&nd.path, dentry); |
| 2708 | if (error) |
| 2709 | goto exit4; |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 2710 | error = vfs_rmdir(nd.path.dentry->d_inode, dentry); |
Kentaro Takeda | be6d3e5 | 2008-12-17 13:24:15 +0900 | [diff] [blame] | 2711 | exit4: |
Dave Hansen | 0622753 | 2008-02-15 14:37:34 -0800 | [diff] [blame] | 2712 | mnt_drop_write(nd.path.mnt); |
| 2713 | exit3: |
Dave Hansen | 6902d92 | 2006-09-30 23:29:01 -0700 | [diff] [blame] | 2714 | dput(dentry); |
| 2715 | exit2: |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 2716 | mutex_unlock(&nd.path.dentry->d_inode->i_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2717 | exit1: |
Jan Blunck | 1d957f9 | 2008-02-14 19:34:35 -0800 | [diff] [blame] | 2718 | path_put(&nd.path); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2719 | putname(name); |
| 2720 | return error; |
| 2721 | } |
| 2722 | |
Heiko Carstens | 3cdad42 | 2009-01-14 14:14:22 +0100 | [diff] [blame] | 2723 | SYSCALL_DEFINE1(rmdir, const char __user *, pathname) |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 2724 | { |
| 2725 | return do_rmdir(AT_FDCWD, pathname); |
| 2726 | } |
| 2727 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2728 | int vfs_unlink(struct inode *dir, struct dentry *dentry) |
| 2729 | { |
| 2730 | int error = may_delete(dir, dentry, 0); |
| 2731 | |
| 2732 | if (error) |
| 2733 | return error; |
| 2734 | |
Al Viro | acfa438 | 2008-12-04 10:06:33 -0500 | [diff] [blame] | 2735 | if (!dir->i_op->unlink) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2736 | return -EPERM; |
| 2737 | |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 2738 | mutex_lock(&dentry->d_inode->i_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2739 | if (d_mountpoint(dentry)) |
| 2740 | error = -EBUSY; |
| 2741 | else { |
| 2742 | error = security_inode_unlink(dir, dentry); |
Al Viro | bec1052 | 2010-03-03 14:12:08 -0500 | [diff] [blame] | 2743 | if (!error) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2744 | error = dir->i_op->unlink(dir, dentry); |
Al Viro | bec1052 | 2010-03-03 14:12:08 -0500 | [diff] [blame] | 2745 | if (!error) |
Al Viro | d83c49f | 2010-04-30 17:17:09 -0400 | [diff] [blame] | 2746 | dont_mount(dentry); |
Al Viro | bec1052 | 2010-03-03 14:12:08 -0500 | [diff] [blame] | 2747 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2748 | } |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 2749 | mutex_unlock(&dentry->d_inode->i_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2750 | |
| 2751 | /* We don't d_delete() NFS sillyrenamed files--they still exist. */ |
| 2752 | if (!error && !(dentry->d_flags & DCACHE_NFSFS_RENAMED)) { |
Jan Kara | ece9591 | 2008-02-06 01:37:13 -0800 | [diff] [blame] | 2753 | fsnotify_link_count(dentry->d_inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2754 | d_delete(dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2755 | } |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 2756 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2757 | return error; |
| 2758 | } |
| 2759 | |
| 2760 | /* |
| 2761 | * Make sure that the actual truncation of the file will occur outside its |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 2762 | * directory's i_mutex. Truncate can take a long time if there is a lot of |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2763 | * writeout happening, and we don't want to prevent access to the directory |
| 2764 | * while waiting on the I/O. |
| 2765 | */ |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 2766 | static long do_unlinkat(int dfd, const char __user *pathname) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2767 | { |
Al Viro | 2ad94ae | 2008-07-21 09:32:51 -0400 | [diff] [blame] | 2768 | int error; |
| 2769 | char *name; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2770 | struct dentry *dentry; |
| 2771 | struct nameidata nd; |
| 2772 | struct inode *inode = NULL; |
| 2773 | |
Al Viro | 2ad94ae | 2008-07-21 09:32:51 -0400 | [diff] [blame] | 2774 | error = user_path_parent(dfd, pathname, &nd, &name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2775 | if (error) |
Al Viro | 2ad94ae | 2008-07-21 09:32:51 -0400 | [diff] [blame] | 2776 | return error; |
| 2777 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2778 | error = -EISDIR; |
| 2779 | if (nd.last_type != LAST_NORM) |
| 2780 | goto exit1; |
OGAWA Hirofumi | 0612d9f | 2008-10-16 07:50:29 +0900 | [diff] [blame] | 2781 | |
| 2782 | nd.flags &= ~LOOKUP_PARENT; |
| 2783 | |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 2784 | mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT); |
Christoph Hellwig | 49705b7 | 2005-11-08 21:35:06 -0800 | [diff] [blame] | 2785 | dentry = lookup_hash(&nd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2786 | error = PTR_ERR(dentry); |
| 2787 | if (!IS_ERR(dentry)) { |
| 2788 | /* Why not before? Because we want correct error value */ |
| 2789 | if (nd.last.name[nd.last.len]) |
| 2790 | goto slashes; |
| 2791 | inode = dentry->d_inode; |
| 2792 | if (inode) |
Al Viro | 7de9c6ee | 2010-10-23 11:11:40 -0400 | [diff] [blame] | 2793 | ihold(inode); |
Dave Hansen | 0622753 | 2008-02-15 14:37:34 -0800 | [diff] [blame] | 2794 | error = mnt_want_write(nd.path.mnt); |
| 2795 | if (error) |
| 2796 | goto exit2; |
Kentaro Takeda | be6d3e5 | 2008-12-17 13:24:15 +0900 | [diff] [blame] | 2797 | error = security_path_unlink(&nd.path, dentry); |
| 2798 | if (error) |
| 2799 | goto exit3; |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 2800 | error = vfs_unlink(nd.path.dentry->d_inode, dentry); |
Kentaro Takeda | be6d3e5 | 2008-12-17 13:24:15 +0900 | [diff] [blame] | 2801 | exit3: |
Dave Hansen | 0622753 | 2008-02-15 14:37:34 -0800 | [diff] [blame] | 2802 | mnt_drop_write(nd.path.mnt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2803 | exit2: |
| 2804 | dput(dentry); |
| 2805 | } |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 2806 | mutex_unlock(&nd.path.dentry->d_inode->i_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2807 | if (inode) |
| 2808 | iput(inode); /* truncate the inode here */ |
| 2809 | exit1: |
Jan Blunck | 1d957f9 | 2008-02-14 19:34:35 -0800 | [diff] [blame] | 2810 | path_put(&nd.path); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2811 | putname(name); |
| 2812 | return error; |
| 2813 | |
| 2814 | slashes: |
| 2815 | error = !dentry->d_inode ? -ENOENT : |
| 2816 | S_ISDIR(dentry->d_inode->i_mode) ? -EISDIR : -ENOTDIR; |
| 2817 | goto exit2; |
| 2818 | } |
| 2819 | |
Heiko Carstens | 2e4d092 | 2009-01-14 14:14:31 +0100 | [diff] [blame] | 2820 | SYSCALL_DEFINE3(unlinkat, int, dfd, const char __user *, pathname, int, flag) |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 2821 | { |
| 2822 | if ((flag & ~AT_REMOVEDIR) != 0) |
| 2823 | return -EINVAL; |
| 2824 | |
| 2825 | if (flag & AT_REMOVEDIR) |
| 2826 | return do_rmdir(dfd, pathname); |
| 2827 | |
| 2828 | return do_unlinkat(dfd, pathname); |
| 2829 | } |
| 2830 | |
Heiko Carstens | 3480b25 | 2009-01-14 14:14:16 +0100 | [diff] [blame] | 2831 | SYSCALL_DEFINE1(unlink, const char __user *, pathname) |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 2832 | { |
| 2833 | return do_unlinkat(AT_FDCWD, pathname); |
| 2834 | } |
| 2835 | |
Miklos Szeredi | db2e747 | 2008-06-24 16:50:16 +0200 | [diff] [blame] | 2836 | int vfs_symlink(struct inode *dir, struct dentry *dentry, const char *oldname) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2837 | { |
Miklos Szeredi | a95164d | 2008-07-30 15:08:48 +0200 | [diff] [blame] | 2838 | int error = may_create(dir, dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2839 | |
| 2840 | if (error) |
| 2841 | return error; |
| 2842 | |
Al Viro | acfa438 | 2008-12-04 10:06:33 -0500 | [diff] [blame] | 2843 | if (!dir->i_op->symlink) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2844 | return -EPERM; |
| 2845 | |
| 2846 | error = security_inode_symlink(dir, dentry, oldname); |
| 2847 | if (error) |
| 2848 | return error; |
| 2849 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2850 | error = dir->i_op->symlink(dir, dentry, oldname); |
Stephen Smalley | a74574a | 2005-09-09 13:01:44 -0700 | [diff] [blame] | 2851 | if (!error) |
Amy Griffis | f38aa94 | 2005-11-03 15:57:06 +0000 | [diff] [blame] | 2852 | fsnotify_create(dir, dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2853 | return error; |
| 2854 | } |
| 2855 | |
Heiko Carstens | 2e4d092 | 2009-01-14 14:14:31 +0100 | [diff] [blame] | 2856 | SYSCALL_DEFINE3(symlinkat, const char __user *, oldname, |
| 2857 | int, newdfd, const char __user *, newname) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2858 | { |
Al Viro | 2ad94ae | 2008-07-21 09:32:51 -0400 | [diff] [blame] | 2859 | int error; |
| 2860 | char *from; |
| 2861 | char *to; |
Dave Hansen | 6902d92 | 2006-09-30 23:29:01 -0700 | [diff] [blame] | 2862 | struct dentry *dentry; |
| 2863 | struct nameidata nd; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2864 | |
| 2865 | from = getname(oldname); |
Al Viro | 2ad94ae | 2008-07-21 09:32:51 -0400 | [diff] [blame] | 2866 | if (IS_ERR(from)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2867 | return PTR_ERR(from); |
Al Viro | 2ad94ae | 2008-07-21 09:32:51 -0400 | [diff] [blame] | 2868 | |
| 2869 | error = user_path_parent(newdfd, newname, &nd, &to); |
| 2870 | if (error) |
Dave Hansen | 6902d92 | 2006-09-30 23:29:01 -0700 | [diff] [blame] | 2871 | goto out_putname; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2872 | |
Dave Hansen | 6902d92 | 2006-09-30 23:29:01 -0700 | [diff] [blame] | 2873 | dentry = lookup_create(&nd, 0); |
| 2874 | error = PTR_ERR(dentry); |
| 2875 | if (IS_ERR(dentry)) |
| 2876 | goto out_unlock; |
| 2877 | |
Dave Hansen | 75c3f29 | 2008-02-15 14:37:45 -0800 | [diff] [blame] | 2878 | error = mnt_want_write(nd.path.mnt); |
| 2879 | if (error) |
| 2880 | goto out_dput; |
Kentaro Takeda | be6d3e5 | 2008-12-17 13:24:15 +0900 | [diff] [blame] | 2881 | error = security_path_symlink(&nd.path, dentry, from); |
| 2882 | if (error) |
| 2883 | goto out_drop_write; |
Miklos Szeredi | db2e747 | 2008-06-24 16:50:16 +0200 | [diff] [blame] | 2884 | error = vfs_symlink(nd.path.dentry->d_inode, dentry, from); |
Kentaro Takeda | be6d3e5 | 2008-12-17 13:24:15 +0900 | [diff] [blame] | 2885 | out_drop_write: |
Dave Hansen | 75c3f29 | 2008-02-15 14:37:45 -0800 | [diff] [blame] | 2886 | mnt_drop_write(nd.path.mnt); |
| 2887 | out_dput: |
Dave Hansen | 6902d92 | 2006-09-30 23:29:01 -0700 | [diff] [blame] | 2888 | dput(dentry); |
| 2889 | out_unlock: |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 2890 | mutex_unlock(&nd.path.dentry->d_inode->i_mutex); |
Jan Blunck | 1d957f9 | 2008-02-14 19:34:35 -0800 | [diff] [blame] | 2891 | path_put(&nd.path); |
Dave Hansen | 6902d92 | 2006-09-30 23:29:01 -0700 | [diff] [blame] | 2892 | putname(to); |
| 2893 | out_putname: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2894 | putname(from); |
| 2895 | return error; |
| 2896 | } |
| 2897 | |
Heiko Carstens | 3480b25 | 2009-01-14 14:14:16 +0100 | [diff] [blame] | 2898 | SYSCALL_DEFINE2(symlink, const char __user *, oldname, const char __user *, newname) |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 2899 | { |
| 2900 | return sys_symlinkat(oldname, AT_FDCWD, newname); |
| 2901 | } |
| 2902 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2903 | int vfs_link(struct dentry *old_dentry, struct inode *dir, struct dentry *new_dentry) |
| 2904 | { |
| 2905 | struct inode *inode = old_dentry->d_inode; |
| 2906 | int error; |
| 2907 | |
| 2908 | if (!inode) |
| 2909 | return -ENOENT; |
| 2910 | |
Miklos Szeredi | a95164d | 2008-07-30 15:08:48 +0200 | [diff] [blame] | 2911 | error = may_create(dir, new_dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2912 | if (error) |
| 2913 | return error; |
| 2914 | |
| 2915 | if (dir->i_sb != inode->i_sb) |
| 2916 | return -EXDEV; |
| 2917 | |
| 2918 | /* |
| 2919 | * A link to an append-only or immutable file cannot be created. |
| 2920 | */ |
| 2921 | if (IS_APPEND(inode) || IS_IMMUTABLE(inode)) |
| 2922 | return -EPERM; |
Al Viro | acfa438 | 2008-12-04 10:06:33 -0500 | [diff] [blame] | 2923 | if (!dir->i_op->link) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2924 | return -EPERM; |
Tetsuo Handa | 7e79eed | 2008-06-24 16:50:15 +0200 | [diff] [blame] | 2925 | if (S_ISDIR(inode->i_mode)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2926 | return -EPERM; |
| 2927 | |
| 2928 | error = security_inode_link(old_dentry, dir, new_dentry); |
| 2929 | if (error) |
| 2930 | return error; |
| 2931 | |
Tetsuo Handa | 7e79eed | 2008-06-24 16:50:15 +0200 | [diff] [blame] | 2932 | mutex_lock(&inode->i_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2933 | error = dir->i_op->link(old_dentry, dir, new_dentry); |
Tetsuo Handa | 7e79eed | 2008-06-24 16:50:15 +0200 | [diff] [blame] | 2934 | mutex_unlock(&inode->i_mutex); |
Stephen Smalley | e31e14e | 2005-09-09 13:01:45 -0700 | [diff] [blame] | 2935 | if (!error) |
Tetsuo Handa | 7e79eed | 2008-06-24 16:50:15 +0200 | [diff] [blame] | 2936 | fsnotify_link(dir, inode, new_dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2937 | return error; |
| 2938 | } |
| 2939 | |
| 2940 | /* |
| 2941 | * Hardlinks are often used in delicate situations. We avoid |
| 2942 | * security-related surprises by not following symlinks on the |
| 2943 | * newname. --KAB |
| 2944 | * |
| 2945 | * We don't follow them on the oldname either to be compatible |
| 2946 | * with linux 2.0, and to avoid hard-linking to directories |
| 2947 | * and other special files. --ADM |
| 2948 | */ |
Heiko Carstens | 2e4d092 | 2009-01-14 14:14:31 +0100 | [diff] [blame] | 2949 | SYSCALL_DEFINE5(linkat, int, olddfd, const char __user *, oldname, |
| 2950 | int, newdfd, const char __user *, newname, int, flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2951 | { |
| 2952 | struct dentry *new_dentry; |
Al Viro | 2d8f303 | 2008-07-22 09:59:21 -0400 | [diff] [blame] | 2953 | struct nameidata nd; |
| 2954 | struct path old_path; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2955 | int error; |
Al Viro | 2ad94ae | 2008-07-21 09:32:51 -0400 | [diff] [blame] | 2956 | char *to; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2957 | |
Ulrich Drepper | 45c9b11a | 2006-06-25 05:49:11 -0700 | [diff] [blame] | 2958 | if ((flags & ~AT_SYMLINK_FOLLOW) != 0) |
Ulrich Drepper | c04030e | 2006-02-24 13:04:21 -0800 | [diff] [blame] | 2959 | return -EINVAL; |
| 2960 | |
Al Viro | 2d8f303 | 2008-07-22 09:59:21 -0400 | [diff] [blame] | 2961 | error = user_path_at(olddfd, oldname, |
| 2962 | flags & AT_SYMLINK_FOLLOW ? LOOKUP_FOLLOW : 0, |
| 2963 | &old_path); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2964 | if (error) |
Al Viro | 2ad94ae | 2008-07-21 09:32:51 -0400 | [diff] [blame] | 2965 | return error; |
| 2966 | |
| 2967 | error = user_path_parent(newdfd, newname, &nd, &to); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2968 | if (error) |
| 2969 | goto out; |
| 2970 | error = -EXDEV; |
Al Viro | 2d8f303 | 2008-07-22 09:59:21 -0400 | [diff] [blame] | 2971 | if (old_path.mnt != nd.path.mnt) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2972 | goto out_release; |
| 2973 | new_dentry = lookup_create(&nd, 0); |
| 2974 | error = PTR_ERR(new_dentry); |
Dave Hansen | 6902d92 | 2006-09-30 23:29:01 -0700 | [diff] [blame] | 2975 | if (IS_ERR(new_dentry)) |
| 2976 | goto out_unlock; |
Dave Hansen | 75c3f29 | 2008-02-15 14:37:45 -0800 | [diff] [blame] | 2977 | error = mnt_want_write(nd.path.mnt); |
| 2978 | if (error) |
| 2979 | goto out_dput; |
Kentaro Takeda | be6d3e5 | 2008-12-17 13:24:15 +0900 | [diff] [blame] | 2980 | error = security_path_link(old_path.dentry, &nd.path, new_dentry); |
| 2981 | if (error) |
| 2982 | goto out_drop_write; |
Al Viro | 2d8f303 | 2008-07-22 09:59:21 -0400 | [diff] [blame] | 2983 | error = vfs_link(old_path.dentry, nd.path.dentry->d_inode, new_dentry); |
Kentaro Takeda | be6d3e5 | 2008-12-17 13:24:15 +0900 | [diff] [blame] | 2984 | out_drop_write: |
Dave Hansen | 75c3f29 | 2008-02-15 14:37:45 -0800 | [diff] [blame] | 2985 | mnt_drop_write(nd.path.mnt); |
| 2986 | out_dput: |
Dave Hansen | 6902d92 | 2006-09-30 23:29:01 -0700 | [diff] [blame] | 2987 | dput(new_dentry); |
| 2988 | out_unlock: |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 2989 | mutex_unlock(&nd.path.dentry->d_inode->i_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2990 | out_release: |
Jan Blunck | 1d957f9 | 2008-02-14 19:34:35 -0800 | [diff] [blame] | 2991 | path_put(&nd.path); |
Al Viro | 2ad94ae | 2008-07-21 09:32:51 -0400 | [diff] [blame] | 2992 | putname(to); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2993 | out: |
Al Viro | 2d8f303 | 2008-07-22 09:59:21 -0400 | [diff] [blame] | 2994 | path_put(&old_path); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2995 | |
| 2996 | return error; |
| 2997 | } |
| 2998 | |
Heiko Carstens | 3480b25 | 2009-01-14 14:14:16 +0100 | [diff] [blame] | 2999 | SYSCALL_DEFINE2(link, const char __user *, oldname, const char __user *, newname) |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 3000 | { |
Ulrich Drepper | c04030e | 2006-02-24 13:04:21 -0800 | [diff] [blame] | 3001 | return sys_linkat(AT_FDCWD, oldname, AT_FDCWD, newname, 0); |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 3002 | } |
| 3003 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3004 | /* |
| 3005 | * The worst of all namespace operations - renaming directory. "Perverted" |
| 3006 | * doesn't even start to describe it. Somebody in UCB had a heck of a trip... |
| 3007 | * Problems: |
| 3008 | * a) we can get into loop creation. Check is done in is_subdir(). |
| 3009 | * b) race potential - two innocent renames can create a loop together. |
| 3010 | * That's where 4.4 screws up. Current fix: serialization on |
Arjan van de Ven | a11f3a0 | 2006-03-23 03:00:33 -0800 | [diff] [blame] | 3011 | * sb->s_vfs_rename_mutex. We might be more accurate, but that's another |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3012 | * story. |
| 3013 | * c) we have to lock _three_ objects - parents and victim (if it exists). |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 3014 | * And that - after we got ->i_mutex on parents (until then we don't know |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3015 | * whether the target exists). Solution: try to be smart with locking |
| 3016 | * order for inodes. We rely on the fact that tree topology may change |
Arjan van de Ven | a11f3a0 | 2006-03-23 03:00:33 -0800 | [diff] [blame] | 3017 | * only under ->s_vfs_rename_mutex _and_ that parent of the object we |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3018 | * move will be locked. Thus we can rank directories by the tree |
| 3019 | * (ancestors first) and rank all non-directories after them. |
| 3020 | * That works since everybody except rename does "lock parent, lookup, |
Arjan van de Ven | a11f3a0 | 2006-03-23 03:00:33 -0800 | [diff] [blame] | 3021 | * lock child" and rename is under ->s_vfs_rename_mutex. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3022 | * HOWEVER, it relies on the assumption that any object with ->lookup() |
| 3023 | * has no more than 1 dentry. If "hybrid" objects will ever appear, |
| 3024 | * we'd better make sure that there's no link(2) for them. |
| 3025 | * d) some filesystems don't support opened-but-unlinked directories, |
| 3026 | * either because of layout or because they are not ready to deal with |
| 3027 | * all cases correctly. The latter will be fixed (taking this sort of |
| 3028 | * stuff into VFS), but the former is not going away. Solution: the same |
| 3029 | * trick as in rmdir(). |
| 3030 | * e) conversion from fhandle to dentry may come in the wrong moment - when |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 3031 | * we are removing the target. Solution: we will have to grab ->i_mutex |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3032 | * in the fhandle_to_dentry code. [FIXME - current nfsfh.c relies on |
Adam Buchbinder | c41b20e | 2009-12-11 16:35:39 -0500 | [diff] [blame] | 3033 | * ->i_mutex on parents, which works but leads to some truly excessive |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3034 | * locking]. |
| 3035 | */ |
Adrian Bunk | 75c96f8 | 2005-05-05 16:16:09 -0700 | [diff] [blame] | 3036 | static int vfs_rename_dir(struct inode *old_dir, struct dentry *old_dentry, |
| 3037 | struct inode *new_dir, struct dentry *new_dentry) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3038 | { |
| 3039 | int error = 0; |
| 3040 | struct inode *target; |
| 3041 | |
| 3042 | /* |
| 3043 | * If we are going to change the parent - check write permissions, |
| 3044 | * we'll need to flip '..'. |
| 3045 | */ |
| 3046 | if (new_dir != old_dir) { |
Al Viro | f419a2e | 2008-07-22 00:07:17 -0400 | [diff] [blame] | 3047 | error = inode_permission(old_dentry->d_inode, MAY_WRITE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3048 | if (error) |
| 3049 | return error; |
| 3050 | } |
| 3051 | |
| 3052 | error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry); |
| 3053 | if (error) |
| 3054 | return error; |
| 3055 | |
| 3056 | target = new_dentry->d_inode; |
Al Viro | d83c49f | 2010-04-30 17:17:09 -0400 | [diff] [blame] | 3057 | if (target) |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 3058 | mutex_lock(&target->i_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3059 | if (d_mountpoint(old_dentry)||d_mountpoint(new_dentry)) |
| 3060 | error = -EBUSY; |
Al Viro | d83c49f | 2010-04-30 17:17:09 -0400 | [diff] [blame] | 3061 | else { |
| 3062 | if (target) |
| 3063 | dentry_unhash(new_dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3064 | error = old_dir->i_op->rename(old_dir, old_dentry, new_dir, new_dentry); |
Al Viro | d83c49f | 2010-04-30 17:17:09 -0400 | [diff] [blame] | 3065 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3066 | if (target) { |
Al Viro | d83c49f | 2010-04-30 17:17:09 -0400 | [diff] [blame] | 3067 | if (!error) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3068 | target->i_flags |= S_DEAD; |
Al Viro | d83c49f | 2010-04-30 17:17:09 -0400 | [diff] [blame] | 3069 | dont_mount(new_dentry); |
| 3070 | } |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 3071 | mutex_unlock(&target->i_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3072 | if (d_unhashed(new_dentry)) |
| 3073 | d_rehash(new_dentry); |
| 3074 | dput(new_dentry); |
| 3075 | } |
Stephen Smalley | e31e14e | 2005-09-09 13:01:45 -0700 | [diff] [blame] | 3076 | if (!error) |
Mark Fasheh | 349457c | 2006-09-08 14:22:21 -0700 | [diff] [blame] | 3077 | if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE)) |
| 3078 | d_move(old_dentry,new_dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3079 | return error; |
| 3080 | } |
| 3081 | |
Adrian Bunk | 75c96f8 | 2005-05-05 16:16:09 -0700 | [diff] [blame] | 3082 | static int vfs_rename_other(struct inode *old_dir, struct dentry *old_dentry, |
| 3083 | struct inode *new_dir, struct dentry *new_dentry) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3084 | { |
| 3085 | struct inode *target; |
| 3086 | int error; |
| 3087 | |
| 3088 | error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry); |
| 3089 | if (error) |
| 3090 | return error; |
| 3091 | |
| 3092 | dget(new_dentry); |
| 3093 | target = new_dentry->d_inode; |
| 3094 | if (target) |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 3095 | mutex_lock(&target->i_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3096 | if (d_mountpoint(old_dentry)||d_mountpoint(new_dentry)) |
| 3097 | error = -EBUSY; |
| 3098 | else |
| 3099 | error = old_dir->i_op->rename(old_dir, old_dentry, new_dir, new_dentry); |
| 3100 | if (!error) { |
Al Viro | bec1052 | 2010-03-03 14:12:08 -0500 | [diff] [blame] | 3101 | if (target) |
Al Viro | d83c49f | 2010-04-30 17:17:09 -0400 | [diff] [blame] | 3102 | dont_mount(new_dentry); |
Mark Fasheh | 349457c | 2006-09-08 14:22:21 -0700 | [diff] [blame] | 3103 | if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3104 | d_move(old_dentry, new_dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3105 | } |
| 3106 | if (target) |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 3107 | mutex_unlock(&target->i_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3108 | dput(new_dentry); |
| 3109 | return error; |
| 3110 | } |
| 3111 | |
| 3112 | int vfs_rename(struct inode *old_dir, struct dentry *old_dentry, |
| 3113 | struct inode *new_dir, struct dentry *new_dentry) |
| 3114 | { |
| 3115 | int error; |
| 3116 | int is_dir = S_ISDIR(old_dentry->d_inode->i_mode); |
Eric Paris | 59b0df2 | 2010-02-08 12:53:52 -0500 | [diff] [blame] | 3117 | const unsigned char *old_name; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3118 | |
| 3119 | if (old_dentry->d_inode == new_dentry->d_inode) |
| 3120 | return 0; |
| 3121 | |
| 3122 | error = may_delete(old_dir, old_dentry, is_dir); |
| 3123 | if (error) |
| 3124 | return error; |
| 3125 | |
| 3126 | if (!new_dentry->d_inode) |
Miklos Szeredi | a95164d | 2008-07-30 15:08:48 +0200 | [diff] [blame] | 3127 | error = may_create(new_dir, new_dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3128 | else |
| 3129 | error = may_delete(new_dir, new_dentry, is_dir); |
| 3130 | if (error) |
| 3131 | return error; |
| 3132 | |
Al Viro | acfa438 | 2008-12-04 10:06:33 -0500 | [diff] [blame] | 3133 | if (!old_dir->i_op->rename) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3134 | return -EPERM; |
| 3135 | |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 3136 | old_name = fsnotify_oldname_init(old_dentry->d_name.name); |
| 3137 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3138 | if (is_dir) |
| 3139 | error = vfs_rename_dir(old_dir,old_dentry,new_dir,new_dentry); |
| 3140 | else |
| 3141 | error = vfs_rename_other(old_dir,old_dentry,new_dir,new_dentry); |
Al Viro | 123df29 | 2009-12-25 04:57:57 -0500 | [diff] [blame] | 3142 | if (!error) |
| 3143 | fsnotify_move(old_dir, new_dir, old_name, is_dir, |
Al Viro | 5a190ae | 2007-06-07 12:19:32 -0400 | [diff] [blame] | 3144 | new_dentry->d_inode, old_dentry); |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 3145 | fsnotify_oldname_free(old_name); |
| 3146 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3147 | return error; |
| 3148 | } |
| 3149 | |
Heiko Carstens | 2e4d092 | 2009-01-14 14:14:31 +0100 | [diff] [blame] | 3150 | SYSCALL_DEFINE4(renameat, int, olddfd, const char __user *, oldname, |
| 3151 | int, newdfd, const char __user *, newname) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3152 | { |
Al Viro | 2ad94ae | 2008-07-21 09:32:51 -0400 | [diff] [blame] | 3153 | struct dentry *old_dir, *new_dir; |
| 3154 | struct dentry *old_dentry, *new_dentry; |
| 3155 | struct dentry *trap; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3156 | struct nameidata oldnd, newnd; |
Al Viro | 2ad94ae | 2008-07-21 09:32:51 -0400 | [diff] [blame] | 3157 | char *from; |
| 3158 | char *to; |
| 3159 | int error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3160 | |
Al Viro | 2ad94ae | 2008-07-21 09:32:51 -0400 | [diff] [blame] | 3161 | error = user_path_parent(olddfd, oldname, &oldnd, &from); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3162 | if (error) |
| 3163 | goto exit; |
| 3164 | |
Al Viro | 2ad94ae | 2008-07-21 09:32:51 -0400 | [diff] [blame] | 3165 | error = user_path_parent(newdfd, newname, &newnd, &to); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3166 | if (error) |
| 3167 | goto exit1; |
| 3168 | |
| 3169 | error = -EXDEV; |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 3170 | if (oldnd.path.mnt != newnd.path.mnt) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3171 | goto exit2; |
| 3172 | |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 3173 | old_dir = oldnd.path.dentry; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3174 | error = -EBUSY; |
| 3175 | if (oldnd.last_type != LAST_NORM) |
| 3176 | goto exit2; |
| 3177 | |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 3178 | new_dir = newnd.path.dentry; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3179 | if (newnd.last_type != LAST_NORM) |
| 3180 | goto exit2; |
| 3181 | |
OGAWA Hirofumi | 0612d9f | 2008-10-16 07:50:29 +0900 | [diff] [blame] | 3182 | oldnd.flags &= ~LOOKUP_PARENT; |
| 3183 | newnd.flags &= ~LOOKUP_PARENT; |
OGAWA Hirofumi | 4e9ed2f | 2008-10-16 07:50:29 +0900 | [diff] [blame] | 3184 | newnd.flags |= LOOKUP_RENAME_TARGET; |
OGAWA Hirofumi | 0612d9f | 2008-10-16 07:50:29 +0900 | [diff] [blame] | 3185 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3186 | trap = lock_rename(new_dir, old_dir); |
| 3187 | |
Christoph Hellwig | 49705b7 | 2005-11-08 21:35:06 -0800 | [diff] [blame] | 3188 | old_dentry = lookup_hash(&oldnd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3189 | error = PTR_ERR(old_dentry); |
| 3190 | if (IS_ERR(old_dentry)) |
| 3191 | goto exit3; |
| 3192 | /* source must exist */ |
| 3193 | error = -ENOENT; |
| 3194 | if (!old_dentry->d_inode) |
| 3195 | goto exit4; |
| 3196 | /* unless the source is a directory trailing slashes give -ENOTDIR */ |
| 3197 | if (!S_ISDIR(old_dentry->d_inode->i_mode)) { |
| 3198 | error = -ENOTDIR; |
| 3199 | if (oldnd.last.name[oldnd.last.len]) |
| 3200 | goto exit4; |
| 3201 | if (newnd.last.name[newnd.last.len]) |
| 3202 | goto exit4; |
| 3203 | } |
| 3204 | /* source should not be ancestor of target */ |
| 3205 | error = -EINVAL; |
| 3206 | if (old_dentry == trap) |
| 3207 | goto exit4; |
Christoph Hellwig | 49705b7 | 2005-11-08 21:35:06 -0800 | [diff] [blame] | 3208 | new_dentry = lookup_hash(&newnd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3209 | error = PTR_ERR(new_dentry); |
| 3210 | if (IS_ERR(new_dentry)) |
| 3211 | goto exit4; |
| 3212 | /* target should not be an ancestor of source */ |
| 3213 | error = -ENOTEMPTY; |
| 3214 | if (new_dentry == trap) |
| 3215 | goto exit5; |
| 3216 | |
Dave Hansen | 9079b1e | 2008-02-15 14:37:49 -0800 | [diff] [blame] | 3217 | error = mnt_want_write(oldnd.path.mnt); |
| 3218 | if (error) |
| 3219 | goto exit5; |
Kentaro Takeda | be6d3e5 | 2008-12-17 13:24:15 +0900 | [diff] [blame] | 3220 | error = security_path_rename(&oldnd.path, old_dentry, |
| 3221 | &newnd.path, new_dentry); |
| 3222 | if (error) |
| 3223 | goto exit6; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3224 | error = vfs_rename(old_dir->d_inode, old_dentry, |
| 3225 | new_dir->d_inode, new_dentry); |
Kentaro Takeda | be6d3e5 | 2008-12-17 13:24:15 +0900 | [diff] [blame] | 3226 | exit6: |
Dave Hansen | 9079b1e | 2008-02-15 14:37:49 -0800 | [diff] [blame] | 3227 | mnt_drop_write(oldnd.path.mnt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3228 | exit5: |
| 3229 | dput(new_dentry); |
| 3230 | exit4: |
| 3231 | dput(old_dentry); |
| 3232 | exit3: |
| 3233 | unlock_rename(new_dir, old_dir); |
| 3234 | exit2: |
Jan Blunck | 1d957f9 | 2008-02-14 19:34:35 -0800 | [diff] [blame] | 3235 | path_put(&newnd.path); |
Al Viro | 2ad94ae | 2008-07-21 09:32:51 -0400 | [diff] [blame] | 3236 | putname(to); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3237 | exit1: |
Jan Blunck | 1d957f9 | 2008-02-14 19:34:35 -0800 | [diff] [blame] | 3238 | path_put(&oldnd.path); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3239 | putname(from); |
Al Viro | 2ad94ae | 2008-07-21 09:32:51 -0400 | [diff] [blame] | 3240 | exit: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3241 | return error; |
| 3242 | } |
| 3243 | |
Heiko Carstens | a26eab2 | 2009-01-14 14:14:17 +0100 | [diff] [blame] | 3244 | SYSCALL_DEFINE2(rename, const char __user *, oldname, const char __user *, newname) |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 3245 | { |
| 3246 | return sys_renameat(AT_FDCWD, oldname, AT_FDCWD, newname); |
| 3247 | } |
| 3248 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3249 | int vfs_readlink(struct dentry *dentry, char __user *buffer, int buflen, const char *link) |
| 3250 | { |
| 3251 | int len; |
| 3252 | |
| 3253 | len = PTR_ERR(link); |
| 3254 | if (IS_ERR(link)) |
| 3255 | goto out; |
| 3256 | |
| 3257 | len = strlen(link); |
| 3258 | if (len > (unsigned) buflen) |
| 3259 | len = buflen; |
| 3260 | if (copy_to_user(buffer, link, len)) |
| 3261 | len = -EFAULT; |
| 3262 | out: |
| 3263 | return len; |
| 3264 | } |
| 3265 | |
| 3266 | /* |
| 3267 | * A helper for ->readlink(). This should be used *ONLY* for symlinks that |
| 3268 | * have ->follow_link() touching nd only in nd_set_link(). Using (or not |
| 3269 | * using) it for any given inode is up to filesystem. |
| 3270 | */ |
| 3271 | int generic_readlink(struct dentry *dentry, char __user *buffer, int buflen) |
| 3272 | { |
| 3273 | struct nameidata nd; |
Linus Torvalds | cc314ee | 2005-08-19 18:02:56 -0700 | [diff] [blame] | 3274 | void *cookie; |
Marcin Slusarz | 694a176 | 2008-06-09 16:40:37 -0700 | [diff] [blame] | 3275 | int res; |
Linus Torvalds | cc314ee | 2005-08-19 18:02:56 -0700 | [diff] [blame] | 3276 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3277 | nd.depth = 0; |
Linus Torvalds | cc314ee | 2005-08-19 18:02:56 -0700 | [diff] [blame] | 3278 | cookie = dentry->d_inode->i_op->follow_link(dentry, &nd); |
Marcin Slusarz | 694a176 | 2008-06-09 16:40:37 -0700 | [diff] [blame] | 3279 | if (IS_ERR(cookie)) |
| 3280 | return PTR_ERR(cookie); |
| 3281 | |
| 3282 | res = vfs_readlink(dentry, buffer, buflen, nd_get_link(&nd)); |
| 3283 | if (dentry->d_inode->i_op->put_link) |
| 3284 | dentry->d_inode->i_op->put_link(dentry, &nd, cookie); |
| 3285 | return res; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3286 | } |
| 3287 | |
| 3288 | int vfs_follow_link(struct nameidata *nd, const char *link) |
| 3289 | { |
| 3290 | return __vfs_follow_link(nd, link); |
| 3291 | } |
| 3292 | |
| 3293 | /* get the link contents into pagecache */ |
| 3294 | static char *page_getlink(struct dentry * dentry, struct page **ppage) |
| 3295 | { |
Duane Griffin | ebd09ab | 2008-12-19 20:47:12 +0000 | [diff] [blame] | 3296 | char *kaddr; |
| 3297 | struct page *page; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3298 | struct address_space *mapping = dentry->d_inode->i_mapping; |
Pekka Enberg | 090d2b1 | 2006-06-23 02:05:08 -0700 | [diff] [blame] | 3299 | page = read_mapping_page(mapping, 0, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3300 | if (IS_ERR(page)) |
Nick Piggin | 6fe6900 | 2007-05-06 14:49:04 -0700 | [diff] [blame] | 3301 | return (char*)page; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3302 | *ppage = page; |
Duane Griffin | ebd09ab | 2008-12-19 20:47:12 +0000 | [diff] [blame] | 3303 | kaddr = kmap(page); |
| 3304 | nd_terminate_link(kaddr, dentry->d_inode->i_size, PAGE_SIZE - 1); |
| 3305 | return kaddr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3306 | } |
| 3307 | |
| 3308 | int page_readlink(struct dentry *dentry, char __user *buffer, int buflen) |
| 3309 | { |
| 3310 | struct page *page = NULL; |
| 3311 | char *s = page_getlink(dentry, &page); |
| 3312 | int res = vfs_readlink(dentry,buffer,buflen,s); |
| 3313 | if (page) { |
| 3314 | kunmap(page); |
| 3315 | page_cache_release(page); |
| 3316 | } |
| 3317 | return res; |
| 3318 | } |
| 3319 | |
Linus Torvalds | cc314ee | 2005-08-19 18:02:56 -0700 | [diff] [blame] | 3320 | void *page_follow_link_light(struct dentry *dentry, struct nameidata *nd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3321 | { |
Linus Torvalds | cc314ee | 2005-08-19 18:02:56 -0700 | [diff] [blame] | 3322 | struct page *page = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3323 | nd_set_link(nd, page_getlink(dentry, &page)); |
Linus Torvalds | cc314ee | 2005-08-19 18:02:56 -0700 | [diff] [blame] | 3324 | return page; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3325 | } |
| 3326 | |
Linus Torvalds | cc314ee | 2005-08-19 18:02:56 -0700 | [diff] [blame] | 3327 | void page_put_link(struct dentry *dentry, struct nameidata *nd, void *cookie) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3328 | { |
Linus Torvalds | cc314ee | 2005-08-19 18:02:56 -0700 | [diff] [blame] | 3329 | struct page *page = cookie; |
| 3330 | |
| 3331 | if (page) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3332 | kunmap(page); |
| 3333 | page_cache_release(page); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3334 | } |
| 3335 | } |
| 3336 | |
Nick Piggin | 54566b2 | 2009-01-04 12:00:53 -0800 | [diff] [blame] | 3337 | /* |
| 3338 | * The nofs argument instructs pagecache_write_begin to pass AOP_FLAG_NOFS |
| 3339 | */ |
| 3340 | int __page_symlink(struct inode *inode, const char *symname, int len, int nofs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3341 | { |
| 3342 | struct address_space *mapping = inode->i_mapping; |
Kirill Korotaev | 0adb25d | 2006-03-11 03:27:13 -0800 | [diff] [blame] | 3343 | struct page *page; |
Nick Piggin | afddba4 | 2007-10-16 01:25:01 -0700 | [diff] [blame] | 3344 | void *fsdata; |
Dmitriy Monakhov | beb497a | 2007-02-16 01:27:18 -0800 | [diff] [blame] | 3345 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3346 | char *kaddr; |
Nick Piggin | 54566b2 | 2009-01-04 12:00:53 -0800 | [diff] [blame] | 3347 | unsigned int flags = AOP_FLAG_UNINTERRUPTIBLE; |
| 3348 | if (nofs) |
| 3349 | flags |= AOP_FLAG_NOFS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3350 | |
NeilBrown | 7e53cac | 2006-03-25 03:07:57 -0800 | [diff] [blame] | 3351 | retry: |
Nick Piggin | afddba4 | 2007-10-16 01:25:01 -0700 | [diff] [blame] | 3352 | err = pagecache_write_begin(NULL, mapping, 0, len-1, |
Nick Piggin | 54566b2 | 2009-01-04 12:00:53 -0800 | [diff] [blame] | 3353 | flags, &page, &fsdata); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3354 | if (err) |
Nick Piggin | afddba4 | 2007-10-16 01:25:01 -0700 | [diff] [blame] | 3355 | goto fail; |
| 3356 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3357 | kaddr = kmap_atomic(page, KM_USER0); |
| 3358 | memcpy(kaddr, symname, len-1); |
| 3359 | kunmap_atomic(kaddr, KM_USER0); |
Nick Piggin | afddba4 | 2007-10-16 01:25:01 -0700 | [diff] [blame] | 3360 | |
| 3361 | err = pagecache_write_end(NULL, mapping, 0, len-1, len-1, |
| 3362 | page, fsdata); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3363 | if (err < 0) |
| 3364 | goto fail; |
Nick Piggin | afddba4 | 2007-10-16 01:25:01 -0700 | [diff] [blame] | 3365 | if (err < len-1) |
| 3366 | goto retry; |
| 3367 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3368 | mark_inode_dirty(inode); |
| 3369 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3370 | fail: |
| 3371 | return err; |
| 3372 | } |
| 3373 | |
Kirill Korotaev | 0adb25d | 2006-03-11 03:27:13 -0800 | [diff] [blame] | 3374 | int page_symlink(struct inode *inode, const char *symname, int len) |
| 3375 | { |
| 3376 | return __page_symlink(inode, symname, len, |
Nick Piggin | 54566b2 | 2009-01-04 12:00:53 -0800 | [diff] [blame] | 3377 | !(mapping_gfp_mask(inode->i_mapping) & __GFP_FS)); |
Kirill Korotaev | 0adb25d | 2006-03-11 03:27:13 -0800 | [diff] [blame] | 3378 | } |
| 3379 | |
Arjan van de Ven | 92e1d5b | 2007-02-12 00:55:39 -0800 | [diff] [blame] | 3380 | const struct inode_operations page_symlink_inode_operations = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3381 | .readlink = generic_readlink, |
| 3382 | .follow_link = page_follow_link_light, |
| 3383 | .put_link = page_put_link, |
| 3384 | }; |
| 3385 | |
Al Viro | 2d8f303 | 2008-07-22 09:59:21 -0400 | [diff] [blame] | 3386 | EXPORT_SYMBOL(user_path_at); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3387 | EXPORT_SYMBOL(follow_down); |
| 3388 | EXPORT_SYMBOL(follow_up); |
| 3389 | EXPORT_SYMBOL(get_write_access); /* binfmt_aout */ |
| 3390 | EXPORT_SYMBOL(getname); |
| 3391 | EXPORT_SYMBOL(lock_rename); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3392 | EXPORT_SYMBOL(lookup_one_len); |
| 3393 | EXPORT_SYMBOL(page_follow_link_light); |
| 3394 | EXPORT_SYMBOL(page_put_link); |
| 3395 | EXPORT_SYMBOL(page_readlink); |
Kirill Korotaev | 0adb25d | 2006-03-11 03:27:13 -0800 | [diff] [blame] | 3396 | EXPORT_SYMBOL(__page_symlink); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3397 | EXPORT_SYMBOL(page_symlink); |
| 3398 | EXPORT_SYMBOL(page_symlink_inode_operations); |
| 3399 | EXPORT_SYMBOL(path_lookup); |
Al Viro | d181146 | 2008-08-02 00:49:18 -0400 | [diff] [blame] | 3400 | EXPORT_SYMBOL(kern_path); |
Josef 'Jeff' Sipek | 16f1820 | 2007-07-19 01:48:18 -0700 | [diff] [blame] | 3401 | EXPORT_SYMBOL(vfs_path_lookup); |
Al Viro | f419a2e | 2008-07-22 00:07:17 -0400 | [diff] [blame] | 3402 | EXPORT_SYMBOL(inode_permission); |
Christoph Hellwig | 8c744fb | 2005-11-08 21:35:04 -0800 | [diff] [blame] | 3403 | EXPORT_SYMBOL(file_permission); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3404 | EXPORT_SYMBOL(unlock_rename); |
| 3405 | EXPORT_SYMBOL(vfs_create); |
| 3406 | EXPORT_SYMBOL(vfs_follow_link); |
| 3407 | EXPORT_SYMBOL(vfs_link); |
| 3408 | EXPORT_SYMBOL(vfs_mkdir); |
| 3409 | EXPORT_SYMBOL(vfs_mknod); |
| 3410 | EXPORT_SYMBOL(generic_permission); |
| 3411 | EXPORT_SYMBOL(vfs_readlink); |
| 3412 | EXPORT_SYMBOL(vfs_rename); |
| 3413 | EXPORT_SYMBOL(vfs_rmdir); |
| 3414 | EXPORT_SYMBOL(vfs_symlink); |
| 3415 | EXPORT_SYMBOL(vfs_unlink); |
| 3416 | EXPORT_SYMBOL(dentry_unhash); |
| 3417 | EXPORT_SYMBOL(generic_readlink); |