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> |
| 22 | #include <linux/quotaops.h> |
| 23 | #include <linux/pagemap.h> |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 24 | #include <linux/fsnotify.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | #include <linux/personality.h> |
| 26 | #include <linux/security.h> |
| 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> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | #include <asm/uaccess.h> |
| 35 | |
| 36 | #define ACC_MODE(x) ("\000\004\002\006"[(x)&O_ACCMODE]) |
| 37 | |
| 38 | /* [Feb-1997 T. Schoebel-Theuer] |
| 39 | * Fundamental changes in the pathname lookup mechanisms (namei) |
| 40 | * were necessary because of omirr. The reason is that omirr needs |
| 41 | * to know the _real_ pathname, not the user-supplied one, in case |
| 42 | * of symlinks (and also when transname replacements occur). |
| 43 | * |
| 44 | * The new code replaces the old recursive symlink resolution with |
| 45 | * an iterative one (in case of non-nested symlink chains). It does |
| 46 | * this with calls to <fs>_follow_link(). |
| 47 | * As a side effect, dir_namei(), _namei() and follow_link() are now |
| 48 | * replaced with a single function lookup_dentry() that can handle all |
| 49 | * the special cases of the former code. |
| 50 | * |
| 51 | * With the new dcache, the pathname is stored at each inode, at least as |
| 52 | * long as the refcount of the inode is positive. As a side effect, the |
| 53 | * size of the dcache depends on the inode cache and thus is dynamic. |
| 54 | * |
| 55 | * [29-Apr-1998 C. Scott Ananian] Updated above description of symlink |
| 56 | * resolution to correspond with current state of the code. |
| 57 | * |
| 58 | * Note that the symlink resolution is not *completely* iterative. |
| 59 | * There is still a significant amount of tail- and mid- recursion in |
| 60 | * the algorithm. Also, note that <fs>_readlink() is not used in |
| 61 | * lookup_dentry(): lookup_dentry() on the result of <fs>_readlink() |
| 62 | * may return different results than <fs>_follow_link(). Many virtual |
| 63 | * filesystems (including /proc) exhibit this behavior. |
| 64 | */ |
| 65 | |
| 66 | /* [24-Feb-97 T. Schoebel-Theuer] Side effects caused by new implementation: |
| 67 | * New symlink semantics: when open() is called with flags O_CREAT | O_EXCL |
| 68 | * and the name already exists in form of a symlink, try to create the new |
| 69 | * name indicated by the symlink. The old code always complained that the |
| 70 | * name already exists, due to not following the symlink even if its target |
| 71 | * is nonexistent. The new semantics affects also mknod() and link() when |
| 72 | * the name is a symlink pointing to a non-existant name. |
| 73 | * |
| 74 | * I don't know which semantics is the right one, since I have no access |
| 75 | * to standards. But I found by trial that HP-UX 9.0 has the full "new" |
| 76 | * semantics implemented, while SunOS 4.1.1 and Solaris (SunOS 5.4) have the |
| 77 | * "old" one. Personally, I think the new semantics is much more logical. |
| 78 | * Note that "ln old new" where "new" is a symlink pointing to a non-existing |
| 79 | * file does succeed in both HP-UX and SunOs, but not in Solaris |
| 80 | * and in the old Linux semantics. |
| 81 | */ |
| 82 | |
| 83 | /* [16-Dec-97 Kevin Buhr] For security reasons, we change some symlink |
| 84 | * semantics. See the comments in "open_namei" and "do_link" below. |
| 85 | * |
| 86 | * [10-Sep-98 Alan Modra] Another symlink change. |
| 87 | */ |
| 88 | |
| 89 | /* [Feb-Apr 2000 AV] Complete rewrite. Rules for symlinks: |
| 90 | * inside the path - always follow. |
| 91 | * in the last component in creation/removal/renaming - never follow. |
| 92 | * if LOOKUP_FOLLOW passed - follow. |
| 93 | * if the pathname has trailing slashes - follow. |
| 94 | * otherwise - don't follow. |
| 95 | * (applied in that order). |
| 96 | * |
| 97 | * [Jun 2000 AV] Inconsistent behaviour of open() in case if flags==O_CREAT |
| 98 | * restored for 2.4. This is the last surviving part of old 4.2BSD bug. |
| 99 | * During the 2.4 we need to fix the userland stuff depending on it - |
| 100 | * hopefully we will be able to get rid of that wart in 2.5. So far only |
| 101 | * XEmacs seems to be relying on it... |
| 102 | */ |
| 103 | /* |
| 104 | * [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] | 105 | * 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] | 106 | * any extra contention... |
| 107 | */ |
| 108 | |
Al Viro | a02f76c | 2008-02-23 15:14:28 +0000 | [diff] [blame] | 109 | static int __link_path_walk(const char *name, struct nameidata *nd); |
Josef 'Jeff' Sipek | c4a7808 | 2007-07-19 01:48:22 -0700 | [diff] [blame] | 110 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | /* In order to reduce some races, while at the same time doing additional |
| 112 | * checking and hopefully speeding things up, we copy filenames to the |
| 113 | * kernel data space before using them.. |
| 114 | * |
| 115 | * POSIX.1 2.4: an empty pathname is invalid (ENOENT). |
| 116 | * PATH_MAX includes the nul terminator --RR. |
| 117 | */ |
Arjan van de Ven | 858119e | 2006-01-14 13:20:43 -0800 | [diff] [blame] | 118 | static int do_getname(const char __user *filename, char *page) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | { |
| 120 | int retval; |
| 121 | unsigned long len = PATH_MAX; |
| 122 | |
| 123 | if (!segment_eq(get_fs(), KERNEL_DS)) { |
| 124 | if ((unsigned long) filename >= TASK_SIZE) |
| 125 | return -EFAULT; |
| 126 | if (TASK_SIZE - (unsigned long) filename < PATH_MAX) |
| 127 | len = TASK_SIZE - (unsigned long) filename; |
| 128 | } |
| 129 | |
| 130 | retval = strncpy_from_user(page, filename, len); |
| 131 | if (retval > 0) { |
| 132 | if (retval < len) |
| 133 | return 0; |
| 134 | return -ENAMETOOLONG; |
| 135 | } else if (!retval) |
| 136 | retval = -ENOENT; |
| 137 | return retval; |
| 138 | } |
| 139 | |
| 140 | char * getname(const char __user * filename) |
| 141 | { |
| 142 | char *tmp, *result; |
| 143 | |
| 144 | result = ERR_PTR(-ENOMEM); |
| 145 | tmp = __getname(); |
| 146 | if (tmp) { |
| 147 | int retval = do_getname(filename, tmp); |
| 148 | |
| 149 | result = tmp; |
| 150 | if (retval < 0) { |
| 151 | __putname(tmp); |
| 152 | result = ERR_PTR(retval); |
| 153 | } |
| 154 | } |
| 155 | audit_getname(result); |
| 156 | return result; |
| 157 | } |
| 158 | |
| 159 | #ifdef CONFIG_AUDITSYSCALL |
| 160 | void putname(const char *name) |
| 161 | { |
Al Viro | 5ac3a9c | 2006-07-16 06:38:45 -0400 | [diff] [blame] | 162 | if (unlikely(!audit_dummy_context())) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 | audit_putname(name); |
| 164 | else |
| 165 | __putname(name); |
| 166 | } |
| 167 | EXPORT_SYMBOL(putname); |
| 168 | #endif |
| 169 | |
| 170 | |
| 171 | /** |
| 172 | * generic_permission - check for access rights on a Posix-like filesystem |
| 173 | * @inode: inode to check access rights for |
| 174 | * @mask: right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC) |
| 175 | * @check_acl: optional callback to check for Posix ACLs |
| 176 | * |
| 177 | * Used to check for read/write/execute permissions on a file. |
| 178 | * We use "fsuid" for this, letting us set arbitrary permissions |
| 179 | * for filesystem access without changing the "normal" uids which |
| 180 | * are used for other things.. |
| 181 | */ |
| 182 | int generic_permission(struct inode *inode, int mask, |
| 183 | int (*check_acl)(struct inode *inode, int mask)) |
| 184 | { |
| 185 | umode_t mode = inode->i_mode; |
| 186 | |
Al Viro | e6305c4 | 2008-07-15 21:03:57 -0400 | [diff] [blame] | 187 | mask &= MAY_READ | MAY_WRITE | MAY_EXEC; |
| 188 | |
David Howells | da9592e | 2008-11-14 10:39:05 +1100 | [diff] [blame] | 189 | if (current_fsuid() == inode->i_uid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 190 | mode >>= 6; |
| 191 | else { |
| 192 | if (IS_POSIXACL(inode) && (mode & S_IRWXG) && check_acl) { |
| 193 | int error = check_acl(inode, mask); |
| 194 | if (error == -EACCES) |
| 195 | goto check_capabilities; |
| 196 | else if (error != -EAGAIN) |
| 197 | return error; |
| 198 | } |
| 199 | |
| 200 | if (in_group_p(inode->i_gid)) |
| 201 | mode >>= 3; |
| 202 | } |
| 203 | |
| 204 | /* |
| 205 | * If the DACs are ok we don't need any capability check. |
| 206 | */ |
Al Viro | e6305c4 | 2008-07-15 21:03:57 -0400 | [diff] [blame] | 207 | if ((mask & ~mode) == 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 208 | return 0; |
| 209 | |
| 210 | check_capabilities: |
| 211 | /* |
| 212 | * Read/write DACs are always overridable. |
| 213 | * Executable DACs are overridable if at least one exec bit is set. |
| 214 | */ |
Miklos Szeredi | f696a36 | 2008-07-31 13:41:58 +0200 | [diff] [blame] | 215 | if (!(mask & MAY_EXEC) || execute_ok(inode)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | if (capable(CAP_DAC_OVERRIDE)) |
| 217 | return 0; |
| 218 | |
| 219 | /* |
| 220 | * Searching includes executable on directories, else just read. |
| 221 | */ |
| 222 | if (mask == MAY_READ || (S_ISDIR(inode->i_mode) && !(mask & MAY_WRITE))) |
| 223 | if (capable(CAP_DAC_READ_SEARCH)) |
| 224 | return 0; |
| 225 | |
| 226 | return -EACCES; |
| 227 | } |
| 228 | |
Al Viro | f419a2e | 2008-07-22 00:07:17 -0400 | [diff] [blame] | 229 | int inode_permission(struct inode *inode, int mask) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 230 | { |
Al Viro | e6305c4 | 2008-07-15 21:03:57 -0400 | [diff] [blame] | 231 | int retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 232 | |
| 233 | if (mask & MAY_WRITE) { |
Miklos Szeredi | 22590e4 | 2007-10-16 23:27:08 -0700 | [diff] [blame] | 234 | umode_t mode = inode->i_mode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 235 | |
| 236 | /* |
| 237 | * Nobody gets write access to a read-only fs. |
| 238 | */ |
| 239 | if (IS_RDONLY(inode) && |
| 240 | (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode))) |
| 241 | return -EROFS; |
| 242 | |
| 243 | /* |
| 244 | * Nobody gets write access to an immutable file. |
| 245 | */ |
| 246 | if (IS_IMMUTABLE(inode)) |
| 247 | return -EACCES; |
| 248 | } |
| 249 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 250 | /* Ordinary permission routines do not understand MAY_APPEND. */ |
Miklos Szeredi | f696a36 | 2008-07-31 13:41:58 +0200 | [diff] [blame] | 251 | if (inode->i_op && inode->i_op->permission) |
Al Viro | b77b064 | 2008-07-17 09:37:02 -0400 | [diff] [blame] | 252 | retval = inode->i_op->permission(inode, mask); |
Miklos Szeredi | f696a36 | 2008-07-31 13:41:58 +0200 | [diff] [blame] | 253 | else |
Al Viro | e6305c4 | 2008-07-15 21:03:57 -0400 | [diff] [blame] | 254 | retval = generic_permission(inode, mask, NULL); |
Miklos Szeredi | f696a36 | 2008-07-31 13:41:58 +0200 | [diff] [blame] | 255 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 256 | if (retval) |
| 257 | return retval; |
| 258 | |
Serge E. Hallyn | 08ce5f1 | 2008-04-29 01:00:10 -0700 | [diff] [blame] | 259 | retval = devcgroup_inode_permission(inode, mask); |
| 260 | if (retval) |
| 261 | return retval; |
| 262 | |
Al Viro | e6305c4 | 2008-07-15 21:03:57 -0400 | [diff] [blame] | 263 | return security_inode_permission(inode, |
Stephen Smalley | f418b00 | 2008-07-28 13:32:38 -0400 | [diff] [blame] | 264 | mask & (MAY_READ|MAY_WRITE|MAY_EXEC|MAY_APPEND)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 265 | } |
| 266 | |
Christoph Hellwig | e4543ed | 2005-11-08 21:35:04 -0800 | [diff] [blame] | 267 | /** |
| 268 | * vfs_permission - check for access rights to a given path |
| 269 | * @nd: lookup result that describes the path |
| 270 | * @mask: right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC) |
| 271 | * |
| 272 | * Used to check for read/write/execute permissions on a path. |
| 273 | * We use "fsuid" for this, letting us set arbitrary permissions |
| 274 | * for filesystem access without changing the "normal" uids which |
| 275 | * are used for other things. |
| 276 | */ |
| 277 | int vfs_permission(struct nameidata *nd, int mask) |
| 278 | { |
Al Viro | f419a2e | 2008-07-22 00:07:17 -0400 | [diff] [blame] | 279 | return inode_permission(nd->path.dentry->d_inode, mask); |
Christoph Hellwig | e4543ed | 2005-11-08 21:35:04 -0800 | [diff] [blame] | 280 | } |
| 281 | |
Christoph Hellwig | 8c744fb | 2005-11-08 21:35:04 -0800 | [diff] [blame] | 282 | /** |
| 283 | * file_permission - check for additional access rights to a given file |
| 284 | * @file: file to check access rights for |
| 285 | * @mask: right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC) |
| 286 | * |
| 287 | * Used to check for read/write/execute permissions on an already opened |
| 288 | * file. |
| 289 | * |
| 290 | * Note: |
| 291 | * Do not use this function in new code. All access checks should |
| 292 | * be done using vfs_permission(). |
| 293 | */ |
| 294 | int file_permission(struct file *file, int mask) |
| 295 | { |
Al Viro | f419a2e | 2008-07-22 00:07:17 -0400 | [diff] [blame] | 296 | return inode_permission(file->f_path.dentry->d_inode, mask); |
Christoph Hellwig | 8c744fb | 2005-11-08 21:35:04 -0800 | [diff] [blame] | 297 | } |
| 298 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 299 | /* |
| 300 | * get_write_access() gets write permission for a file. |
| 301 | * put_write_access() releases this write permission. |
| 302 | * This is used for regular files. |
| 303 | * We cannot support write (and maybe mmap read-write shared) accesses and |
| 304 | * MAP_DENYWRITE mmappings simultaneously. The i_writecount field of an inode |
| 305 | * can have the following values: |
| 306 | * 0: no writers, no VM_DENYWRITE mappings |
| 307 | * < 0: (-i_writecount) vm_area_structs with VM_DENYWRITE set exist |
| 308 | * > 0: (i_writecount) users are writing to the file. |
| 309 | * |
| 310 | * Normally we operate on that counter with atomic_{inc,dec} and it's safe |
| 311 | * except for the cases where we don't hold i_writecount yet. Then we need to |
| 312 | * use {get,deny}_write_access() - these functions check the sign and refuse |
| 313 | * to do the change if sign is wrong. Exclusion between them is provided by |
| 314 | * the inode->i_lock spinlock. |
| 315 | */ |
| 316 | |
| 317 | int get_write_access(struct inode * inode) |
| 318 | { |
| 319 | spin_lock(&inode->i_lock); |
| 320 | if (atomic_read(&inode->i_writecount) < 0) { |
| 321 | spin_unlock(&inode->i_lock); |
| 322 | return -ETXTBSY; |
| 323 | } |
| 324 | atomic_inc(&inode->i_writecount); |
| 325 | spin_unlock(&inode->i_lock); |
| 326 | |
| 327 | return 0; |
| 328 | } |
| 329 | |
| 330 | int deny_write_access(struct file * file) |
| 331 | { |
Josef "Jeff" Sipek | 0f7fc9e | 2006-12-08 02:36:35 -0800 | [diff] [blame] | 332 | struct inode *inode = file->f_path.dentry->d_inode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 333 | |
| 334 | spin_lock(&inode->i_lock); |
| 335 | if (atomic_read(&inode->i_writecount) > 0) { |
| 336 | spin_unlock(&inode->i_lock); |
| 337 | return -ETXTBSY; |
| 338 | } |
| 339 | atomic_dec(&inode->i_writecount); |
| 340 | spin_unlock(&inode->i_lock); |
| 341 | |
| 342 | return 0; |
| 343 | } |
| 344 | |
Jan Blunck | 1d957f9 | 2008-02-14 19:34:35 -0800 | [diff] [blame] | 345 | /** |
Jan Blunck | 5dd784d | 2008-02-14 19:34:38 -0800 | [diff] [blame] | 346 | * path_get - get a reference to a path |
| 347 | * @path: path to get the reference to |
| 348 | * |
| 349 | * Given a path increment the reference count to the dentry and the vfsmount. |
| 350 | */ |
| 351 | void path_get(struct path *path) |
| 352 | { |
| 353 | mntget(path->mnt); |
| 354 | dget(path->dentry); |
| 355 | } |
| 356 | EXPORT_SYMBOL(path_get); |
| 357 | |
| 358 | /** |
Jan Blunck | 1d957f9 | 2008-02-14 19:34:35 -0800 | [diff] [blame] | 359 | * path_put - put a reference to a path |
| 360 | * @path: path to put the reference to |
| 361 | * |
| 362 | * Given a path decrement the reference count to the dentry and the vfsmount. |
| 363 | */ |
| 364 | void path_put(struct path *path) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 365 | { |
Jan Blunck | 1d957f9 | 2008-02-14 19:34:35 -0800 | [diff] [blame] | 366 | dput(path->dentry); |
| 367 | mntput(path->mnt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 368 | } |
Jan Blunck | 1d957f9 | 2008-02-14 19:34:35 -0800 | [diff] [blame] | 369 | EXPORT_SYMBOL(path_put); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 370 | |
Trond Myklebust | 834f2a4 | 2005-10-18 14:20:16 -0700 | [diff] [blame] | 371 | /** |
| 372 | * release_open_intent - free up open intent resources |
| 373 | * @nd: pointer to nameidata |
| 374 | */ |
| 375 | void release_open_intent(struct nameidata *nd) |
| 376 | { |
Josef "Jeff" Sipek | 0f7fc9e | 2006-12-08 02:36:35 -0800 | [diff] [blame] | 377 | if (nd->intent.open.file->f_path.dentry == NULL) |
Trond Myklebust | 834f2a4 | 2005-10-18 14:20:16 -0700 | [diff] [blame] | 378 | put_filp(nd->intent.open.file); |
| 379 | else |
| 380 | fput(nd->intent.open.file); |
| 381 | } |
| 382 | |
Ian Kent | bcdc5e0 | 2006-09-27 01:50:44 -0700 | [diff] [blame] | 383 | static inline struct dentry * |
| 384 | do_revalidate(struct dentry *dentry, struct nameidata *nd) |
| 385 | { |
| 386 | int status = dentry->d_op->d_revalidate(dentry, nd); |
| 387 | if (unlikely(status <= 0)) { |
| 388 | /* |
| 389 | * The dentry failed validation. |
| 390 | * If d_revalidate returned 0 attempt to invalidate |
| 391 | * the dentry otherwise d_revalidate is asking us |
| 392 | * to return a fail status. |
| 393 | */ |
| 394 | if (!status) { |
| 395 | if (!d_invalidate(dentry)) { |
| 396 | dput(dentry); |
| 397 | dentry = NULL; |
| 398 | } |
| 399 | } else { |
| 400 | dput(dentry); |
| 401 | dentry = ERR_PTR(status); |
| 402 | } |
| 403 | } |
| 404 | return dentry; |
| 405 | } |
| 406 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 407 | /* |
| 408 | * Internal lookup() using the new generic dcache. |
| 409 | * SMP-safe |
| 410 | */ |
| 411 | static struct dentry * cached_lookup(struct dentry * parent, struct qstr * name, struct nameidata *nd) |
| 412 | { |
| 413 | struct dentry * dentry = __d_lookup(parent, name); |
| 414 | |
| 415 | /* lockess __d_lookup may fail due to concurrent d_move() |
| 416 | * in some unrelated directory, so try with d_lookup |
| 417 | */ |
| 418 | if (!dentry) |
| 419 | dentry = d_lookup(parent, name); |
| 420 | |
Ian Kent | bcdc5e0 | 2006-09-27 01:50:44 -0700 | [diff] [blame] | 421 | if (dentry && dentry->d_op && dentry->d_op->d_revalidate) |
| 422 | dentry = do_revalidate(dentry, nd); |
| 423 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 424 | return dentry; |
| 425 | } |
| 426 | |
| 427 | /* |
| 428 | * Short-cut version of permission(), for calling by |
| 429 | * path_walk(), when dcache lock is held. Combines parts |
| 430 | * of permission() and generic_permission(), and tests ONLY for |
| 431 | * MAY_EXEC permission. |
| 432 | * |
| 433 | * If appropriate, check DAC only. If not appropriate, or |
| 434 | * short-cut DAC fails, then call permission() to do more |
| 435 | * complete permission check. |
| 436 | */ |
Al Viro | 672b16b | 2008-07-17 09:45:01 -0400 | [diff] [blame] | 437 | static int exec_permission_lite(struct inode *inode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 438 | { |
| 439 | umode_t mode = inode->i_mode; |
| 440 | |
| 441 | if (inode->i_op && inode->i_op->permission) |
| 442 | return -EAGAIN; |
| 443 | |
David Howells | da9592e | 2008-11-14 10:39:05 +1100 | [diff] [blame] | 444 | if (current_fsuid() == inode->i_uid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 445 | mode >>= 6; |
| 446 | else if (in_group_p(inode->i_gid)) |
| 447 | mode >>= 3; |
| 448 | |
| 449 | if (mode & MAY_EXEC) |
| 450 | goto ok; |
| 451 | |
| 452 | if ((inode->i_mode & S_IXUGO) && capable(CAP_DAC_OVERRIDE)) |
| 453 | goto ok; |
| 454 | |
| 455 | if (S_ISDIR(inode->i_mode) && capable(CAP_DAC_OVERRIDE)) |
| 456 | goto ok; |
| 457 | |
| 458 | if (S_ISDIR(inode->i_mode) && capable(CAP_DAC_READ_SEARCH)) |
| 459 | goto ok; |
| 460 | |
| 461 | return -EACCES; |
| 462 | ok: |
Al Viro | b77b064 | 2008-07-17 09:37:02 -0400 | [diff] [blame] | 463 | return security_inode_permission(inode, MAY_EXEC); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 464 | } |
| 465 | |
| 466 | /* |
| 467 | * This is called when everything else fails, and we actually have |
| 468 | * to go to the low-level filesystem to find out what we should do.. |
| 469 | * |
| 470 | * We get the directory semaphore, and after getting that we also |
| 471 | * make sure that nobody added the entry to the dcache in the meantime.. |
| 472 | * SMP-safe |
| 473 | */ |
| 474 | static struct dentry * real_lookup(struct dentry * parent, struct qstr * name, struct nameidata *nd) |
| 475 | { |
| 476 | struct dentry * result; |
| 477 | struct inode *dir = parent->d_inode; |
| 478 | |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 479 | mutex_lock(&dir->i_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 480 | /* |
| 481 | * First re-do the cached lookup just in case it was created |
| 482 | * while we waited for the directory semaphore.. |
| 483 | * |
| 484 | * FIXME! This could use version numbering or similar to |
| 485 | * avoid unnecessary cache lookups. |
| 486 | * |
| 487 | * The "dcache_lock" is purely to protect the RCU list walker |
| 488 | * from concurrent renames at this point (we mustn't get false |
| 489 | * negatives from the RCU list walk here, unlike the optimistic |
| 490 | * fast walk). |
| 491 | * |
| 492 | * so doing d_lookup() (with seqlock), instead of lockfree __d_lookup |
| 493 | */ |
| 494 | result = d_lookup(parent, name); |
| 495 | if (!result) { |
Miklos Szeredi | d70b67c | 2008-07-02 21:30:15 +0200 | [diff] [blame] | 496 | struct dentry *dentry; |
| 497 | |
| 498 | /* Don't create child dentry for a dead directory. */ |
| 499 | result = ERR_PTR(-ENOENT); |
| 500 | if (IS_DEADDIR(dir)) |
| 501 | goto out_unlock; |
| 502 | |
| 503 | dentry = d_alloc(parent, name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 504 | result = ERR_PTR(-ENOMEM); |
| 505 | if (dentry) { |
| 506 | result = dir->i_op->lookup(dir, dentry, nd); |
| 507 | if (result) |
| 508 | dput(dentry); |
| 509 | else |
| 510 | result = dentry; |
| 511 | } |
Miklos Szeredi | d70b67c | 2008-07-02 21:30:15 +0200 | [diff] [blame] | 512 | out_unlock: |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 513 | mutex_unlock(&dir->i_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 514 | return result; |
| 515 | } |
| 516 | |
| 517 | /* |
| 518 | * Uhhuh! Nasty case: the cache was re-populated while |
| 519 | * we waited on the semaphore. Need to revalidate. |
| 520 | */ |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 521 | mutex_unlock(&dir->i_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 522 | if (result->d_op && result->d_op->d_revalidate) { |
Ian Kent | bcdc5e0 | 2006-09-27 01:50:44 -0700 | [diff] [blame] | 523 | result = do_revalidate(result, nd); |
| 524 | if (!result) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 525 | result = ERR_PTR(-ENOENT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 526 | } |
| 527 | return result; |
| 528 | } |
| 529 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 530 | /* SMP-safe */ |
Al Viro | 7f2da1e | 2008-05-10 20:44:54 -0400 | [diff] [blame] | 531 | static __always_inline void |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 532 | walk_init_root(const char *name, struct nameidata *nd) |
| 533 | { |
Andreas Mohr | e518ddb | 2006-09-29 02:01:22 -0700 | [diff] [blame] | 534 | struct fs_struct *fs = current->fs; |
| 535 | |
| 536 | read_lock(&fs->lock); |
Jan Blunck | 6ac08c3 | 2008-02-14 19:34:38 -0800 | [diff] [blame] | 537 | nd->path = fs->root; |
| 538 | path_get(&fs->root); |
Andreas Mohr | e518ddb | 2006-09-29 02:01:22 -0700 | [diff] [blame] | 539 | read_unlock(&fs->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 540 | } |
| 541 | |
Al Viro | a02f76c | 2008-02-23 15:14:28 +0000 | [diff] [blame] | 542 | /* |
| 543 | * Wrapper to retry pathname resolution whenever the underlying |
| 544 | * file system returns an ESTALE. |
| 545 | * |
| 546 | * Retry the whole path once, forcing real lookup requests |
| 547 | * instead of relying on the dcache. |
| 548 | */ |
| 549 | static __always_inline int link_path_walk(const char *name, struct nameidata *nd) |
| 550 | { |
| 551 | struct path save = nd->path; |
| 552 | int result; |
| 553 | |
| 554 | /* make sure the stuff we saved doesn't go away */ |
Jan Blunck | c8e7f44 | 2008-06-09 16:40:35 -0700 | [diff] [blame] | 555 | path_get(&save); |
Al Viro | a02f76c | 2008-02-23 15:14:28 +0000 | [diff] [blame] | 556 | |
| 557 | result = __link_path_walk(name, nd); |
| 558 | if (result == -ESTALE) { |
| 559 | /* nd->path had been dropped */ |
| 560 | nd->path = save; |
Jan Blunck | c8e7f44 | 2008-06-09 16:40:35 -0700 | [diff] [blame] | 561 | path_get(&nd->path); |
Al Viro | a02f76c | 2008-02-23 15:14:28 +0000 | [diff] [blame] | 562 | nd->flags |= LOOKUP_REVAL; |
| 563 | result = __link_path_walk(name, nd); |
| 564 | } |
| 565 | |
| 566 | path_put(&save); |
| 567 | |
| 568 | return result; |
| 569 | } |
| 570 | |
Arjan van de Ven | f166235 | 2006-01-14 13:21:31 -0800 | [diff] [blame] | 571 | 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] | 572 | { |
| 573 | int res = 0; |
| 574 | char *name; |
| 575 | if (IS_ERR(link)) |
| 576 | goto fail; |
| 577 | |
| 578 | if (*link == '/') { |
Jan Blunck | 1d957f9 | 2008-02-14 19:34:35 -0800 | [diff] [blame] | 579 | path_put(&nd->path); |
Al Viro | 7f2da1e | 2008-05-10 20:44:54 -0400 | [diff] [blame] | 580 | walk_init_root(link, nd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 581 | } |
| 582 | res = link_path_walk(link, nd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 583 | if (nd->depth || res || nd->last_type!=LAST_NORM) |
| 584 | return res; |
| 585 | /* |
| 586 | * If it is an iterative symlinks resolution in open_namei() we |
| 587 | * have to copy the last component. And all that crap because of |
| 588 | * bloody create() on broken symlinks. Furrfu... |
| 589 | */ |
| 590 | name = __getname(); |
| 591 | if (unlikely(!name)) { |
Jan Blunck | 1d957f9 | 2008-02-14 19:34:35 -0800 | [diff] [blame] | 592 | path_put(&nd->path); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 593 | return -ENOMEM; |
| 594 | } |
| 595 | strcpy(name, nd->last.name); |
| 596 | nd->last.name = name; |
| 597 | return 0; |
| 598 | fail: |
Jan Blunck | 1d957f9 | 2008-02-14 19:34:35 -0800 | [diff] [blame] | 599 | path_put(&nd->path); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 600 | return PTR_ERR(link); |
| 601 | } |
| 602 | |
Jan Blunck | 1d957f9 | 2008-02-14 19:34:35 -0800 | [diff] [blame] | 603 | static void path_put_conditional(struct path *path, struct nameidata *nd) |
Miklos Szeredi | 09dd17d | 2005-09-06 15:18:21 -0700 | [diff] [blame] | 604 | { |
| 605 | dput(path->dentry); |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 606 | if (path->mnt != nd->path.mnt) |
Miklos Szeredi | 09dd17d | 2005-09-06 15:18:21 -0700 | [diff] [blame] | 607 | mntput(path->mnt); |
| 608 | } |
| 609 | |
| 610 | static inline void path_to_nameidata(struct path *path, struct nameidata *nd) |
| 611 | { |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 612 | dput(nd->path.dentry); |
| 613 | if (nd->path.mnt != path->mnt) |
| 614 | mntput(nd->path.mnt); |
| 615 | nd->path.mnt = path->mnt; |
| 616 | nd->path.dentry = path->dentry; |
Miklos Szeredi | 09dd17d | 2005-09-06 15:18:21 -0700 | [diff] [blame] | 617 | } |
| 618 | |
Ian Kent | 051d381 | 2006-03-27 01:14:53 -0800 | [diff] [blame] | 619 | static __always_inline int __do_follow_link(struct path *path, struct nameidata *nd) |
| 620 | { |
| 621 | int error; |
| 622 | void *cookie; |
| 623 | struct dentry *dentry = path->dentry; |
| 624 | |
| 625 | touch_atime(path->mnt, dentry); |
| 626 | nd_set_link(nd, NULL); |
| 627 | |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 628 | if (path->mnt != nd->path.mnt) { |
Ian Kent | 051d381 | 2006-03-27 01:14:53 -0800 | [diff] [blame] | 629 | path_to_nameidata(path, nd); |
| 630 | dget(dentry); |
| 631 | } |
| 632 | mntget(path->mnt); |
| 633 | cookie = dentry->d_inode->i_op->follow_link(dentry, nd); |
| 634 | error = PTR_ERR(cookie); |
| 635 | if (!IS_ERR(cookie)) { |
| 636 | char *s = nd_get_link(nd); |
| 637 | error = 0; |
| 638 | if (s) |
| 639 | error = __vfs_follow_link(nd, s); |
| 640 | if (dentry->d_inode->i_op->put_link) |
| 641 | dentry->d_inode->i_op->put_link(dentry, nd, cookie); |
| 642 | } |
Jan Blunck | 09da5916 | 2008-02-14 19:34:37 -0800 | [diff] [blame] | 643 | path_put(path); |
Ian Kent | 051d381 | 2006-03-27 01:14:53 -0800 | [diff] [blame] | 644 | |
| 645 | return error; |
| 646 | } |
| 647 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 648 | /* |
| 649 | * This limits recursive symlink follows to 8, while |
| 650 | * limiting consecutive symlinks to 40. |
| 651 | * |
| 652 | * Without that kind of total limit, nasty chains of consecutive |
| 653 | * symlinks can cause almost arbitrarily long lookups. |
| 654 | */ |
Al Viro | 90ebe56 | 2005-06-06 13:35:58 -0700 | [diff] [blame] | 655 | static inline int do_follow_link(struct path *path, struct nameidata *nd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 656 | { |
| 657 | int err = -ELOOP; |
| 658 | if (current->link_count >= MAX_NESTED_LINKS) |
| 659 | goto loop; |
| 660 | if (current->total_link_count >= 40) |
| 661 | goto loop; |
| 662 | BUG_ON(nd->depth >= MAX_NESTED_LINKS); |
| 663 | cond_resched(); |
Al Viro | 90ebe56 | 2005-06-06 13:35:58 -0700 | [diff] [blame] | 664 | err = security_inode_follow_link(path->dentry, nd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 665 | if (err) |
| 666 | goto loop; |
| 667 | current->link_count++; |
| 668 | current->total_link_count++; |
| 669 | nd->depth++; |
Al Viro | cd4e91d | 2005-06-06 13:36:03 -0700 | [diff] [blame] | 670 | err = __do_follow_link(path, nd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 671 | current->link_count--; |
| 672 | nd->depth--; |
| 673 | return err; |
| 674 | loop: |
Jan Blunck | 1d957f9 | 2008-02-14 19:34:35 -0800 | [diff] [blame] | 675 | path_put_conditional(path, nd); |
| 676 | path_put(&nd->path); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 677 | return err; |
| 678 | } |
| 679 | |
| 680 | int follow_up(struct vfsmount **mnt, struct dentry **dentry) |
| 681 | { |
| 682 | struct vfsmount *parent; |
| 683 | struct dentry *mountpoint; |
| 684 | spin_lock(&vfsmount_lock); |
| 685 | parent=(*mnt)->mnt_parent; |
| 686 | if (parent == *mnt) { |
| 687 | spin_unlock(&vfsmount_lock); |
| 688 | return 0; |
| 689 | } |
| 690 | mntget(parent); |
| 691 | mountpoint=dget((*mnt)->mnt_mountpoint); |
| 692 | spin_unlock(&vfsmount_lock); |
| 693 | dput(*dentry); |
| 694 | *dentry = mountpoint; |
| 695 | mntput(*mnt); |
| 696 | *mnt = parent; |
| 697 | return 1; |
| 698 | } |
| 699 | |
| 700 | /* no need for dcache_lock, as serialization is taken care in |
| 701 | * namespace.c |
| 702 | */ |
Al Viro | 463ffb2 | 2005-06-06 13:36:05 -0700 | [diff] [blame] | 703 | static int __follow_mount(struct path *path) |
| 704 | { |
| 705 | int res = 0; |
| 706 | while (d_mountpoint(path->dentry)) { |
| 707 | struct vfsmount *mounted = lookup_mnt(path->mnt, path->dentry); |
| 708 | if (!mounted) |
| 709 | break; |
| 710 | dput(path->dentry); |
| 711 | if (res) |
| 712 | mntput(path->mnt); |
| 713 | path->mnt = mounted; |
| 714 | path->dentry = dget(mounted->mnt_root); |
| 715 | res = 1; |
| 716 | } |
| 717 | return res; |
| 718 | } |
| 719 | |
Al Viro | 58c465e | 2005-06-06 13:36:13 -0700 | [diff] [blame] | 720 | static void follow_mount(struct vfsmount **mnt, struct dentry **dentry) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 721 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 722 | while (d_mountpoint(*dentry)) { |
| 723 | struct vfsmount *mounted = lookup_mnt(*mnt, *dentry); |
| 724 | if (!mounted) |
| 725 | break; |
Al Viro | 58c465e | 2005-06-06 13:36:13 -0700 | [diff] [blame] | 726 | dput(*dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 727 | mntput(*mnt); |
| 728 | *mnt = mounted; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 729 | *dentry = dget(mounted->mnt_root); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 730 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 731 | } |
| 732 | |
| 733 | /* no need for dcache_lock, as serialization is taken care in |
| 734 | * namespace.c |
| 735 | */ |
Al Viro | e13b210 | 2005-06-06 13:36:06 -0700 | [diff] [blame] | 736 | int follow_down(struct vfsmount **mnt, struct dentry **dentry) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 737 | { |
| 738 | struct vfsmount *mounted; |
| 739 | |
| 740 | mounted = lookup_mnt(*mnt, *dentry); |
| 741 | if (mounted) { |
Al Viro | e13b210 | 2005-06-06 13:36:06 -0700 | [diff] [blame] | 742 | dput(*dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 743 | mntput(*mnt); |
| 744 | *mnt = mounted; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 745 | *dentry = dget(mounted->mnt_root); |
| 746 | return 1; |
| 747 | } |
| 748 | return 0; |
| 749 | } |
| 750 | |
Arjan van de Ven | f166235 | 2006-01-14 13:21:31 -0800 | [diff] [blame] | 751 | static __always_inline void follow_dotdot(struct nameidata *nd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 752 | { |
Andreas Mohr | e518ddb | 2006-09-29 02:01:22 -0700 | [diff] [blame] | 753 | struct fs_struct *fs = current->fs; |
| 754 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 755 | while(1) { |
| 756 | struct vfsmount *parent; |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 757 | struct dentry *old = nd->path.dentry; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 758 | |
Andreas Mohr | e518ddb | 2006-09-29 02:01:22 -0700 | [diff] [blame] | 759 | read_lock(&fs->lock); |
Jan Blunck | 6ac08c3 | 2008-02-14 19:34:38 -0800 | [diff] [blame] | 760 | if (nd->path.dentry == fs->root.dentry && |
| 761 | nd->path.mnt == fs->root.mnt) { |
Andreas Mohr | e518ddb | 2006-09-29 02:01:22 -0700 | [diff] [blame] | 762 | read_unlock(&fs->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 763 | break; |
| 764 | } |
Andreas Mohr | e518ddb | 2006-09-29 02:01:22 -0700 | [diff] [blame] | 765 | read_unlock(&fs->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 766 | spin_lock(&dcache_lock); |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 767 | if (nd->path.dentry != nd->path.mnt->mnt_root) { |
| 768 | nd->path.dentry = dget(nd->path.dentry->d_parent); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 769 | spin_unlock(&dcache_lock); |
| 770 | dput(old); |
| 771 | break; |
| 772 | } |
| 773 | spin_unlock(&dcache_lock); |
| 774 | spin_lock(&vfsmount_lock); |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 775 | parent = nd->path.mnt->mnt_parent; |
| 776 | if (parent == nd->path.mnt) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 777 | spin_unlock(&vfsmount_lock); |
| 778 | break; |
| 779 | } |
| 780 | mntget(parent); |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 781 | nd->path.dentry = dget(nd->path.mnt->mnt_mountpoint); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 782 | spin_unlock(&vfsmount_lock); |
| 783 | dput(old); |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 784 | mntput(nd->path.mnt); |
| 785 | nd->path.mnt = parent; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 786 | } |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 787 | follow_mount(&nd->path.mnt, &nd->path.dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 788 | } |
| 789 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 790 | /* |
| 791 | * It's more convoluted than I'd like it to be, but... it's still fairly |
| 792 | * small and for now I'd prefer to have fast path as straight as possible. |
| 793 | * It _is_ time-critical. |
| 794 | */ |
| 795 | static int do_lookup(struct nameidata *nd, struct qstr *name, |
| 796 | struct path *path) |
| 797 | { |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 798 | struct vfsmount *mnt = nd->path.mnt; |
| 799 | struct dentry *dentry = __d_lookup(nd->path.dentry, name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 800 | |
| 801 | if (!dentry) |
| 802 | goto need_lookup; |
| 803 | if (dentry->d_op && dentry->d_op->d_revalidate) |
| 804 | goto need_revalidate; |
| 805 | done: |
| 806 | path->mnt = mnt; |
| 807 | path->dentry = dentry; |
Al Viro | 634ee70 | 2005-06-06 13:36:13 -0700 | [diff] [blame] | 808 | __follow_mount(path); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 809 | return 0; |
| 810 | |
| 811 | need_lookup: |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 812 | dentry = real_lookup(nd->path.dentry, name, nd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 813 | if (IS_ERR(dentry)) |
| 814 | goto fail; |
| 815 | goto done; |
| 816 | |
| 817 | need_revalidate: |
Ian Kent | bcdc5e0 | 2006-09-27 01:50:44 -0700 | [diff] [blame] | 818 | dentry = do_revalidate(dentry, nd); |
| 819 | if (!dentry) |
| 820 | goto need_lookup; |
| 821 | if (IS_ERR(dentry)) |
| 822 | goto fail; |
| 823 | goto done; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 824 | |
| 825 | fail: |
| 826 | return PTR_ERR(dentry); |
| 827 | } |
| 828 | |
| 829 | /* |
| 830 | * Name resolution. |
Prasanna Meda | ea3834d | 2005-04-29 16:00:17 +0100 | [diff] [blame] | 831 | * This is the basic name resolution function, turning a pathname into |
| 832 | * the final dentry. We expect 'base' to be positive and a directory. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 833 | * |
Prasanna Meda | ea3834d | 2005-04-29 16:00:17 +0100 | [diff] [blame] | 834 | * Returns 0 and nd will have valid dentry and mnt on success. |
| 835 | * Returns error and drops reference to input namei data on failure. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 836 | */ |
Harvey Harrison | fc9b52c | 2008-02-08 04:19:52 -0800 | [diff] [blame] | 837 | static int __link_path_walk(const char *name, struct nameidata *nd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 838 | { |
| 839 | struct path next; |
| 840 | struct inode *inode; |
| 841 | int err; |
| 842 | unsigned int lookup_flags = nd->flags; |
| 843 | |
| 844 | while (*name=='/') |
| 845 | name++; |
| 846 | if (!*name) |
| 847 | goto return_reval; |
| 848 | |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 849 | inode = nd->path.dentry->d_inode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 850 | if (nd->depth) |
Trond Myklebust | f55eab8 | 2006-02-04 23:28:01 -0800 | [diff] [blame] | 851 | lookup_flags = LOOKUP_FOLLOW | (nd->flags & LOOKUP_CONTINUE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 852 | |
| 853 | /* At this point we know we have a real path component. */ |
| 854 | for(;;) { |
| 855 | unsigned long hash; |
| 856 | struct qstr this; |
| 857 | unsigned int c; |
| 858 | |
Trond Myklebust | cdce5d6 | 2005-10-18 14:20:18 -0700 | [diff] [blame] | 859 | nd->flags |= LOOKUP_CONTINUE; |
Al Viro | 672b16b | 2008-07-17 09:45:01 -0400 | [diff] [blame] | 860 | err = exec_permission_lite(inode); |
Christoph Hellwig | e4543ed | 2005-11-08 21:35:04 -0800 | [diff] [blame] | 861 | if (err == -EAGAIN) |
| 862 | err = vfs_permission(nd, MAY_EXEC); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 863 | if (err) |
| 864 | break; |
| 865 | |
| 866 | this.name = name; |
| 867 | c = *(const unsigned char *)name; |
| 868 | |
| 869 | hash = init_name_hash(); |
| 870 | do { |
| 871 | name++; |
| 872 | hash = partial_name_hash(c, hash); |
| 873 | c = *(const unsigned char *)name; |
| 874 | } while (c && (c != '/')); |
| 875 | this.len = name - (const char *) this.name; |
| 876 | this.hash = end_name_hash(hash); |
| 877 | |
| 878 | /* remove trailing slashes? */ |
| 879 | if (!c) |
| 880 | goto last_component; |
| 881 | while (*++name == '/'); |
| 882 | if (!*name) |
| 883 | goto last_with_slashes; |
| 884 | |
| 885 | /* |
| 886 | * "." and ".." are special - ".." especially so because it has |
| 887 | * to be able to know about the current root directory and |
| 888 | * parent relationships. |
| 889 | */ |
| 890 | if (this.name[0] == '.') switch (this.len) { |
| 891 | default: |
| 892 | break; |
| 893 | case 2: |
| 894 | if (this.name[1] != '.') |
| 895 | break; |
Al Viro | 58c465e | 2005-06-06 13:36:13 -0700 | [diff] [blame] | 896 | follow_dotdot(nd); |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 897 | inode = nd->path.dentry->d_inode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 898 | /* fallthrough */ |
| 899 | case 1: |
| 900 | continue; |
| 901 | } |
| 902 | /* |
| 903 | * See if the low-level filesystem might want |
| 904 | * to use its own hash.. |
| 905 | */ |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 906 | if (nd->path.dentry->d_op && nd->path.dentry->d_op->d_hash) { |
| 907 | err = nd->path.dentry->d_op->d_hash(nd->path.dentry, |
| 908 | &this); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 909 | if (err < 0) |
| 910 | break; |
| 911 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 912 | /* This does the actual lookups.. */ |
| 913 | err = do_lookup(nd, &this, &next); |
| 914 | if (err) |
| 915 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 916 | |
| 917 | err = -ENOENT; |
| 918 | inode = next.dentry->d_inode; |
| 919 | if (!inode) |
| 920 | goto out_dput; |
| 921 | err = -ENOTDIR; |
| 922 | if (!inode->i_op) |
| 923 | goto out_dput; |
| 924 | |
| 925 | if (inode->i_op->follow_link) { |
Al Viro | 90ebe56 | 2005-06-06 13:35:58 -0700 | [diff] [blame] | 926 | err = do_follow_link(&next, nd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 927 | if (err) |
| 928 | goto return_err; |
| 929 | err = -ENOENT; |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 930 | inode = nd->path.dentry->d_inode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 931 | if (!inode) |
| 932 | break; |
| 933 | err = -ENOTDIR; |
| 934 | if (!inode->i_op) |
| 935 | break; |
Miklos Szeredi | 09dd17d | 2005-09-06 15:18:21 -0700 | [diff] [blame] | 936 | } else |
| 937 | path_to_nameidata(&next, nd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 938 | err = -ENOTDIR; |
| 939 | if (!inode->i_op->lookup) |
| 940 | break; |
| 941 | continue; |
| 942 | /* here ends the main loop */ |
| 943 | |
| 944 | last_with_slashes: |
| 945 | lookup_flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY; |
| 946 | last_component: |
Trond Myklebust | f55eab8 | 2006-02-04 23:28:01 -0800 | [diff] [blame] | 947 | /* Clear LOOKUP_CONTINUE iff it was previously unset */ |
| 948 | nd->flags &= lookup_flags | ~LOOKUP_CONTINUE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 949 | if (lookup_flags & LOOKUP_PARENT) |
| 950 | goto lookup_parent; |
| 951 | if (this.name[0] == '.') switch (this.len) { |
| 952 | default: |
| 953 | break; |
| 954 | case 2: |
| 955 | if (this.name[1] != '.') |
| 956 | break; |
Al Viro | 58c465e | 2005-06-06 13:36:13 -0700 | [diff] [blame] | 957 | follow_dotdot(nd); |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 958 | inode = nd->path.dentry->d_inode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 959 | /* fallthrough */ |
| 960 | case 1: |
| 961 | goto return_reval; |
| 962 | } |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 963 | if (nd->path.dentry->d_op && nd->path.dentry->d_op->d_hash) { |
| 964 | err = nd->path.dentry->d_op->d_hash(nd->path.dentry, |
| 965 | &this); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 966 | if (err < 0) |
| 967 | break; |
| 968 | } |
| 969 | err = do_lookup(nd, &this, &next); |
| 970 | if (err) |
| 971 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 972 | inode = next.dentry->d_inode; |
| 973 | if ((lookup_flags & LOOKUP_FOLLOW) |
| 974 | && inode && inode->i_op && inode->i_op->follow_link) { |
Al Viro | 90ebe56 | 2005-06-06 13:35:58 -0700 | [diff] [blame] | 975 | err = do_follow_link(&next, nd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 976 | if (err) |
| 977 | goto return_err; |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 978 | inode = nd->path.dentry->d_inode; |
Miklos Szeredi | 09dd17d | 2005-09-06 15:18:21 -0700 | [diff] [blame] | 979 | } else |
| 980 | path_to_nameidata(&next, nd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 981 | err = -ENOENT; |
| 982 | if (!inode) |
| 983 | break; |
| 984 | if (lookup_flags & LOOKUP_DIRECTORY) { |
| 985 | err = -ENOTDIR; |
| 986 | if (!inode->i_op || !inode->i_op->lookup) |
| 987 | break; |
| 988 | } |
| 989 | goto return_base; |
| 990 | lookup_parent: |
| 991 | nd->last = this; |
| 992 | nd->last_type = LAST_NORM; |
| 993 | if (this.name[0] != '.') |
| 994 | goto return_base; |
| 995 | if (this.len == 1) |
| 996 | nd->last_type = LAST_DOT; |
| 997 | else if (this.len == 2 && this.name[1] == '.') |
| 998 | nd->last_type = LAST_DOTDOT; |
| 999 | else |
| 1000 | goto return_base; |
| 1001 | return_reval: |
| 1002 | /* |
| 1003 | * We bypassed the ordinary revalidation routines. |
| 1004 | * We may need to check the cached dentry for staleness. |
| 1005 | */ |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 1006 | if (nd->path.dentry && nd->path.dentry->d_sb && |
| 1007 | (nd->path.dentry->d_sb->s_type->fs_flags & FS_REVAL_DOT)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1008 | err = -ESTALE; |
| 1009 | /* Note: we do not d_invalidate() */ |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 1010 | if (!nd->path.dentry->d_op->d_revalidate( |
| 1011 | nd->path.dentry, nd)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1012 | break; |
| 1013 | } |
| 1014 | return_base: |
| 1015 | return 0; |
| 1016 | out_dput: |
Jan Blunck | 1d957f9 | 2008-02-14 19:34:35 -0800 | [diff] [blame] | 1017 | path_put_conditional(&next, nd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1018 | break; |
| 1019 | } |
Jan Blunck | 1d957f9 | 2008-02-14 19:34:35 -0800 | [diff] [blame] | 1020 | path_put(&nd->path); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1021 | return_err: |
| 1022 | return err; |
| 1023 | } |
| 1024 | |
Harvey Harrison | fc9b52c | 2008-02-08 04:19:52 -0800 | [diff] [blame] | 1025 | static int path_walk(const char *name, struct nameidata *nd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1026 | { |
| 1027 | current->total_link_count = 0; |
| 1028 | return link_path_walk(name, nd); |
| 1029 | } |
| 1030 | |
Prasanna Meda | ea3834d | 2005-04-29 16:00:17 +0100 | [diff] [blame] | 1031 | /* Returns 0 and nd will be valid on success; Retuns error, otherwise. */ |
Harvey Harrison | fc9b52c | 2008-02-08 04:19:52 -0800 | [diff] [blame] | 1032 | static int do_path_lookup(int dfd, const char *name, |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 1033 | unsigned int flags, struct nameidata *nd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1034 | { |
Prasanna Meda | ea3834d | 2005-04-29 16:00:17 +0100 | [diff] [blame] | 1035 | int retval = 0; |
Ulrich Drepper | 170aa3d | 2006-02-04 23:28:02 -0800 | [diff] [blame] | 1036 | int fput_needed; |
| 1037 | struct file *file; |
Andreas Mohr | e518ddb | 2006-09-29 02:01:22 -0700 | [diff] [blame] | 1038 | struct fs_struct *fs = current->fs; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1039 | |
| 1040 | nd->last_type = LAST_ROOT; /* if there are only slashes... */ |
| 1041 | nd->flags = flags; |
| 1042 | nd->depth = 0; |
| 1043 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1044 | if (*name=='/') { |
Andreas Mohr | e518ddb | 2006-09-29 02:01:22 -0700 | [diff] [blame] | 1045 | read_lock(&fs->lock); |
Jan Blunck | 6ac08c3 | 2008-02-14 19:34:38 -0800 | [diff] [blame] | 1046 | nd->path = fs->root; |
| 1047 | path_get(&fs->root); |
Andreas Mohr | e518ddb | 2006-09-29 02:01:22 -0700 | [diff] [blame] | 1048 | read_unlock(&fs->lock); |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 1049 | } else if (dfd == AT_FDCWD) { |
Andreas Mohr | e518ddb | 2006-09-29 02:01:22 -0700 | [diff] [blame] | 1050 | read_lock(&fs->lock); |
Jan Blunck | 6ac08c3 | 2008-02-14 19:34:38 -0800 | [diff] [blame] | 1051 | nd->path = fs->pwd; |
| 1052 | path_get(&fs->pwd); |
Andreas Mohr | e518ddb | 2006-09-29 02:01:22 -0700 | [diff] [blame] | 1053 | read_unlock(&fs->lock); |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 1054 | } else { |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 1055 | struct dentry *dentry; |
| 1056 | |
| 1057 | file = fget_light(dfd, &fput_needed); |
Ulrich Drepper | 170aa3d | 2006-02-04 23:28:02 -0800 | [diff] [blame] | 1058 | retval = -EBADF; |
| 1059 | if (!file) |
Trond Myklebust | 6d09bb6 | 2006-06-04 02:51:37 -0700 | [diff] [blame] | 1060 | goto out_fail; |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 1061 | |
Josef "Jeff" Sipek | 0f7fc9e | 2006-12-08 02:36:35 -0800 | [diff] [blame] | 1062 | dentry = file->f_path.dentry; |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 1063 | |
Ulrich Drepper | 170aa3d | 2006-02-04 23:28:02 -0800 | [diff] [blame] | 1064 | retval = -ENOTDIR; |
| 1065 | if (!S_ISDIR(dentry->d_inode->i_mode)) |
Trond Myklebust | 6d09bb6 | 2006-06-04 02:51:37 -0700 | [diff] [blame] | 1066 | goto fput_fail; |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 1067 | |
| 1068 | retval = file_permission(file, MAY_EXEC); |
Ulrich Drepper | 170aa3d | 2006-02-04 23:28:02 -0800 | [diff] [blame] | 1069 | if (retval) |
Trond Myklebust | 6d09bb6 | 2006-06-04 02:51:37 -0700 | [diff] [blame] | 1070 | goto fput_fail; |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 1071 | |
Jan Blunck | 5dd784d | 2008-02-14 19:34:38 -0800 | [diff] [blame] | 1072 | nd->path = file->f_path; |
| 1073 | path_get(&file->f_path); |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 1074 | |
| 1075 | fput_light(file, fput_needed); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1076 | } |
Josef 'Jeff' Sipek | 2dfdd26 | 2007-05-09 02:33:41 -0700 | [diff] [blame] | 1077 | |
| 1078 | retval = path_walk(name, nd); |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 1079 | if (unlikely(!retval && !audit_dummy_context() && nd->path.dentry && |
| 1080 | nd->path.dentry->d_inode)) |
| 1081 | audit_inode(name, nd->path.dentry); |
Trond Myklebust | 6d09bb6 | 2006-06-04 02:51:37 -0700 | [diff] [blame] | 1082 | out_fail: |
Ulrich Drepper | 170aa3d | 2006-02-04 23:28:02 -0800 | [diff] [blame] | 1083 | return retval; |
| 1084 | |
Trond Myklebust | 6d09bb6 | 2006-06-04 02:51:37 -0700 | [diff] [blame] | 1085 | fput_fail: |
Ulrich Drepper | 170aa3d | 2006-02-04 23:28:02 -0800 | [diff] [blame] | 1086 | fput_light(file, fput_needed); |
Trond Myklebust | 6d09bb6 | 2006-06-04 02:51:37 -0700 | [diff] [blame] | 1087 | goto out_fail; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1088 | } |
| 1089 | |
Harvey Harrison | fc9b52c | 2008-02-08 04:19:52 -0800 | [diff] [blame] | 1090 | int path_lookup(const char *name, unsigned int flags, |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 1091 | struct nameidata *nd) |
| 1092 | { |
| 1093 | return do_path_lookup(AT_FDCWD, name, flags, nd); |
| 1094 | } |
| 1095 | |
Al Viro | d181146 | 2008-08-02 00:49:18 -0400 | [diff] [blame] | 1096 | int kern_path(const char *name, unsigned int flags, struct path *path) |
| 1097 | { |
| 1098 | struct nameidata nd; |
| 1099 | int res = do_path_lookup(AT_FDCWD, name, flags, &nd); |
| 1100 | if (!res) |
| 1101 | *path = nd.path; |
| 1102 | return res; |
| 1103 | } |
| 1104 | |
Josef 'Jeff' Sipek | 16f1820 | 2007-07-19 01:48:18 -0700 | [diff] [blame] | 1105 | /** |
| 1106 | * vfs_path_lookup - lookup a file path relative to a dentry-vfsmount pair |
| 1107 | * @dentry: pointer to dentry of the base directory |
| 1108 | * @mnt: pointer to vfs mount of the base directory |
| 1109 | * @name: pointer to file name |
| 1110 | * @flags: lookup flags |
| 1111 | * @nd: pointer to nameidata |
| 1112 | */ |
| 1113 | int vfs_path_lookup(struct dentry *dentry, struct vfsmount *mnt, |
| 1114 | const char *name, unsigned int flags, |
| 1115 | struct nameidata *nd) |
| 1116 | { |
| 1117 | int retval; |
| 1118 | |
| 1119 | /* same as do_path_lookup */ |
| 1120 | nd->last_type = LAST_ROOT; |
| 1121 | nd->flags = flags; |
| 1122 | nd->depth = 0; |
| 1123 | |
Jan Blunck | c8e7f44 | 2008-06-09 16:40:35 -0700 | [diff] [blame] | 1124 | nd->path.dentry = dentry; |
| 1125 | nd->path.mnt = mnt; |
| 1126 | path_get(&nd->path); |
Josef 'Jeff' Sipek | 16f1820 | 2007-07-19 01:48:18 -0700 | [diff] [blame] | 1127 | |
| 1128 | retval = path_walk(name, nd); |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 1129 | if (unlikely(!retval && !audit_dummy_context() && nd->path.dentry && |
| 1130 | nd->path.dentry->d_inode)) |
| 1131 | audit_inode(name, nd->path.dentry); |
Josef 'Jeff' Sipek | 16f1820 | 2007-07-19 01:48:18 -0700 | [diff] [blame] | 1132 | |
| 1133 | return retval; |
| 1134 | |
| 1135 | } |
| 1136 | |
Trond Myklebust | 834f2a4 | 2005-10-18 14:20:16 -0700 | [diff] [blame] | 1137 | /** |
| 1138 | * path_lookup_open - lookup a file path with open intent |
Martin Waitz | 7045f37 | 2006-02-01 03:06:57 -0800 | [diff] [blame] | 1139 | * @dfd: the directory to use as base, or AT_FDCWD |
Trond Myklebust | 834f2a4 | 2005-10-18 14:20:16 -0700 | [diff] [blame] | 1140 | * @name: pointer to file name |
| 1141 | * @lookup_flags: lookup intent flags |
| 1142 | * @nd: pointer to nameidata |
| 1143 | * @open_flags: open intent flags |
| 1144 | */ |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 1145 | int path_lookup_open(int dfd, const char *name, unsigned int lookup_flags, |
Trond Myklebust | 834f2a4 | 2005-10-18 14:20:16 -0700 | [diff] [blame] | 1146 | struct nameidata *nd, int open_flags) |
| 1147 | { |
Al Viro | 8737f3a | 2008-08-02 22:36:57 -0400 | [diff] [blame] | 1148 | struct file *filp = get_empty_filp(); |
| 1149 | int err; |
Trond Myklebust | 834f2a4 | 2005-10-18 14:20:16 -0700 | [diff] [blame] | 1150 | |
Al Viro | 8737f3a | 2008-08-02 22:36:57 -0400 | [diff] [blame] | 1151 | if (filp == NULL) |
| 1152 | return -ENFILE; |
| 1153 | nd->intent.open.file = filp; |
| 1154 | nd->intent.open.flags = open_flags; |
| 1155 | nd->intent.open.create_mode = 0; |
| 1156 | err = do_path_lookup(dfd, name, lookup_flags|LOOKUP_OPEN, nd); |
| 1157 | if (IS_ERR(nd->intent.open.file)) { |
| 1158 | if (err == 0) { |
| 1159 | err = PTR_ERR(nd->intent.open.file); |
| 1160 | path_put(&nd->path); |
| 1161 | } |
| 1162 | } else if (err != 0) |
| 1163 | release_open_intent(nd); |
| 1164 | return err; |
Trond Myklebust | 834f2a4 | 2005-10-18 14:20:16 -0700 | [diff] [blame] | 1165 | } |
| 1166 | |
Christoph Hellwig | eead191 | 2007-10-16 23:25:38 -0700 | [diff] [blame] | 1167 | static struct dentry *__lookup_hash(struct qstr *name, |
| 1168 | struct dentry *base, struct nameidata *nd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1169 | { |
James Morris | 057f6c0 | 2007-04-26 00:12:05 -0700 | [diff] [blame] | 1170 | struct dentry *dentry; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1171 | struct inode *inode; |
| 1172 | int err; |
| 1173 | |
| 1174 | inode = base->d_inode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1175 | |
| 1176 | /* |
| 1177 | * See if the low-level filesystem might want |
| 1178 | * to use its own hash.. |
| 1179 | */ |
| 1180 | if (base->d_op && base->d_op->d_hash) { |
| 1181 | err = base->d_op->d_hash(base, name); |
| 1182 | dentry = ERR_PTR(err); |
| 1183 | if (err < 0) |
| 1184 | goto out; |
| 1185 | } |
| 1186 | |
| 1187 | dentry = cached_lookup(base, name, nd); |
| 1188 | if (!dentry) { |
Miklos Szeredi | d70b67c | 2008-07-02 21:30:15 +0200 | [diff] [blame] | 1189 | struct dentry *new; |
| 1190 | |
| 1191 | /* Don't create child dentry for a dead directory. */ |
| 1192 | dentry = ERR_PTR(-ENOENT); |
| 1193 | if (IS_DEADDIR(inode)) |
| 1194 | goto out; |
| 1195 | |
| 1196 | new = d_alloc(base, name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1197 | dentry = ERR_PTR(-ENOMEM); |
| 1198 | if (!new) |
| 1199 | goto out; |
| 1200 | dentry = inode->i_op->lookup(inode, new, nd); |
| 1201 | if (!dentry) |
| 1202 | dentry = new; |
| 1203 | else |
| 1204 | dput(new); |
| 1205 | } |
| 1206 | out: |
| 1207 | return dentry; |
| 1208 | } |
| 1209 | |
James Morris | 057f6c0 | 2007-04-26 00:12:05 -0700 | [diff] [blame] | 1210 | /* |
| 1211 | * Restricted form of lookup. Doesn't follow links, single-component only, |
| 1212 | * needs parent already locked. Doesn't follow mounts. |
| 1213 | * SMP-safe. |
| 1214 | */ |
Adrian Bunk | a244e16 | 2006-03-31 02:32:11 -0800 | [diff] [blame] | 1215 | static struct dentry *lookup_hash(struct nameidata *nd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1216 | { |
Christoph Hellwig | eead191 | 2007-10-16 23:25:38 -0700 | [diff] [blame] | 1217 | int err; |
| 1218 | |
Al Viro | f419a2e | 2008-07-22 00:07:17 -0400 | [diff] [blame] | 1219 | err = inode_permission(nd->path.dentry->d_inode, MAY_EXEC); |
Christoph Hellwig | eead191 | 2007-10-16 23:25:38 -0700 | [diff] [blame] | 1220 | if (err) |
| 1221 | return ERR_PTR(err); |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 1222 | return __lookup_hash(&nd->last, nd->path.dentry, nd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1223 | } |
| 1224 | |
Christoph Hellwig | eead191 | 2007-10-16 23:25:38 -0700 | [diff] [blame] | 1225 | static int __lookup_one_len(const char *name, struct qstr *this, |
| 1226 | struct dentry *base, int len) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1227 | { |
| 1228 | unsigned long hash; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1229 | unsigned int c; |
| 1230 | |
James Morris | 057f6c0 | 2007-04-26 00:12:05 -0700 | [diff] [blame] | 1231 | this->name = name; |
| 1232 | this->len = len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1233 | if (!len) |
James Morris | 057f6c0 | 2007-04-26 00:12:05 -0700 | [diff] [blame] | 1234 | return -EACCES; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1235 | |
| 1236 | hash = init_name_hash(); |
| 1237 | while (len--) { |
| 1238 | c = *(const unsigned char *)name++; |
| 1239 | if (c == '/' || c == '\0') |
James Morris | 057f6c0 | 2007-04-26 00:12:05 -0700 | [diff] [blame] | 1240 | return -EACCES; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1241 | hash = partial_name_hash(c, hash); |
| 1242 | } |
James Morris | 057f6c0 | 2007-04-26 00:12:05 -0700 | [diff] [blame] | 1243 | this->hash = end_name_hash(hash); |
| 1244 | return 0; |
| 1245 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1246 | |
Christoph Hellwig | eead191 | 2007-10-16 23:25:38 -0700 | [diff] [blame] | 1247 | /** |
Randy Dunlap | a6b9191 | 2008-03-19 17:01:00 -0700 | [diff] [blame] | 1248 | * lookup_one_len - filesystem helper to lookup single pathname component |
Christoph Hellwig | eead191 | 2007-10-16 23:25:38 -0700 | [diff] [blame] | 1249 | * @name: pathname component to lookup |
| 1250 | * @base: base directory to lookup from |
| 1251 | * @len: maximum length @len should be interpreted to |
| 1252 | * |
Randy Dunlap | a6b9191 | 2008-03-19 17:01:00 -0700 | [diff] [blame] | 1253 | * Note that this routine is purely a helper for filesystem usage and should |
| 1254 | * 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] | 1255 | * nameidata argument is passed to the filesystem methods and a filesystem |
| 1256 | * using this helper needs to be prepared for that. |
| 1257 | */ |
James Morris | 057f6c0 | 2007-04-26 00:12:05 -0700 | [diff] [blame] | 1258 | struct dentry *lookup_one_len(const char *name, struct dentry *base, int len) |
| 1259 | { |
| 1260 | int err; |
| 1261 | struct qstr this; |
| 1262 | |
| 1263 | err = __lookup_one_len(name, &this, base, len); |
| 1264 | if (err) |
| 1265 | return ERR_PTR(err); |
Christoph Hellwig | eead191 | 2007-10-16 23:25:38 -0700 | [diff] [blame] | 1266 | |
Al Viro | f419a2e | 2008-07-22 00:07:17 -0400 | [diff] [blame] | 1267 | err = inode_permission(base->d_inode, MAY_EXEC); |
Christoph Hellwig | eead191 | 2007-10-16 23:25:38 -0700 | [diff] [blame] | 1268 | if (err) |
| 1269 | return ERR_PTR(err); |
Christoph Hellwig | 49705b7 | 2005-11-08 21:35:06 -0800 | [diff] [blame] | 1270 | return __lookup_hash(&this, base, NULL); |
James Morris | 057f6c0 | 2007-04-26 00:12:05 -0700 | [diff] [blame] | 1271 | } |
| 1272 | |
Christoph Hellwig | eead191 | 2007-10-16 23:25:38 -0700 | [diff] [blame] | 1273 | /** |
| 1274 | * lookup_one_noperm - bad hack for sysfs |
| 1275 | * @name: pathname component to lookup |
| 1276 | * @base: base directory to lookup from |
| 1277 | * |
| 1278 | * This is a variant of lookup_one_len that doesn't perform any permission |
| 1279 | * checks. It's a horrible hack to work around the braindead sysfs |
| 1280 | * architecture and should not be used anywhere else. |
| 1281 | * |
| 1282 | * DON'T USE THIS FUNCTION EVER, thanks. |
| 1283 | */ |
| 1284 | struct dentry *lookup_one_noperm(const char *name, struct dentry *base) |
James Morris | 057f6c0 | 2007-04-26 00:12:05 -0700 | [diff] [blame] | 1285 | { |
| 1286 | int err; |
| 1287 | struct qstr this; |
| 1288 | |
Christoph Hellwig | eead191 | 2007-10-16 23:25:38 -0700 | [diff] [blame] | 1289 | err = __lookup_one_len(name, &this, base, strlen(name)); |
James Morris | 057f6c0 | 2007-04-26 00:12:05 -0700 | [diff] [blame] | 1290 | if (err) |
| 1291 | return ERR_PTR(err); |
Christoph Hellwig | eead191 | 2007-10-16 23:25:38 -0700 | [diff] [blame] | 1292 | return __lookup_hash(&this, base, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1293 | } |
| 1294 | |
Al Viro | 2d8f303 | 2008-07-22 09:59:21 -0400 | [diff] [blame] | 1295 | int user_path_at(int dfd, const char __user *name, unsigned flags, |
| 1296 | struct path *path) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1297 | { |
Al Viro | 2d8f303 | 2008-07-22 09:59:21 -0400 | [diff] [blame] | 1298 | struct nameidata nd; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1299 | char *tmp = getname(name); |
| 1300 | int err = PTR_ERR(tmp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1301 | if (!IS_ERR(tmp)) { |
Al Viro | 2d8f303 | 2008-07-22 09:59:21 -0400 | [diff] [blame] | 1302 | |
| 1303 | BUG_ON(flags & LOOKUP_PARENT); |
| 1304 | |
| 1305 | err = do_path_lookup(dfd, tmp, flags, &nd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1306 | putname(tmp); |
Al Viro | 2d8f303 | 2008-07-22 09:59:21 -0400 | [diff] [blame] | 1307 | if (!err) |
| 1308 | *path = nd.path; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1309 | } |
| 1310 | return err; |
| 1311 | } |
| 1312 | |
Al Viro | 2ad94ae | 2008-07-21 09:32:51 -0400 | [diff] [blame] | 1313 | static int user_path_parent(int dfd, const char __user *path, |
| 1314 | struct nameidata *nd, char **name) |
| 1315 | { |
| 1316 | char *s = getname(path); |
| 1317 | int error; |
| 1318 | |
| 1319 | if (IS_ERR(s)) |
| 1320 | return PTR_ERR(s); |
| 1321 | |
| 1322 | error = do_path_lookup(dfd, s, LOOKUP_PARENT, nd); |
| 1323 | if (error) |
| 1324 | putname(s); |
| 1325 | else |
| 1326 | *name = s; |
| 1327 | |
| 1328 | return error; |
| 1329 | } |
| 1330 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1331 | /* |
| 1332 | * It's inline, so penalty for filesystems that don't use sticky bit is |
| 1333 | * minimal. |
| 1334 | */ |
| 1335 | static inline int check_sticky(struct inode *dir, struct inode *inode) |
| 1336 | { |
David Howells | da9592e | 2008-11-14 10:39:05 +1100 | [diff] [blame] | 1337 | uid_t fsuid = current_fsuid(); |
| 1338 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1339 | if (!(dir->i_mode & S_ISVTX)) |
| 1340 | return 0; |
David Howells | da9592e | 2008-11-14 10:39:05 +1100 | [diff] [blame] | 1341 | if (inode->i_uid == fsuid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1342 | return 0; |
David Howells | da9592e | 2008-11-14 10:39:05 +1100 | [diff] [blame] | 1343 | if (dir->i_uid == fsuid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1344 | return 0; |
| 1345 | return !capable(CAP_FOWNER); |
| 1346 | } |
| 1347 | |
| 1348 | /* |
| 1349 | * Check whether we can remove a link victim from directory dir, check |
| 1350 | * whether the type of victim is right. |
| 1351 | * 1. We can't do it if dir is read-only (done in permission()) |
| 1352 | * 2. We should have write and exec permissions on dir |
| 1353 | * 3. We can't remove anything from append-only dir |
| 1354 | * 4. We can't do anything with immutable dir (done in permission()) |
| 1355 | * 5. If the sticky bit on dir is set we should either |
| 1356 | * a. be owner of dir, or |
| 1357 | * b. be owner of victim, or |
| 1358 | * c. have CAP_FOWNER capability |
| 1359 | * 6. If the victim is append-only or immutable we can't do antyhing with |
| 1360 | * links pointing to it. |
| 1361 | * 7. If we were asked to remove a directory and victim isn't one - ENOTDIR. |
| 1362 | * 8. If we were asked to remove a non-directory and victim isn't one - EISDIR. |
| 1363 | * 9. We can't remove a root or mountpoint. |
| 1364 | * 10. We don't allow removal of NFS sillyrenamed files; it's handled by |
| 1365 | * nfs_async_unlink(). |
| 1366 | */ |
Arjan van de Ven | 858119e | 2006-01-14 13:20:43 -0800 | [diff] [blame] | 1367 | static int may_delete(struct inode *dir,struct dentry *victim,int isdir) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1368 | { |
| 1369 | int error; |
| 1370 | |
| 1371 | if (!victim->d_inode) |
| 1372 | return -ENOENT; |
| 1373 | |
| 1374 | BUG_ON(victim->d_parent->d_inode != dir); |
Al Viro | 5a190ae | 2007-06-07 12:19:32 -0400 | [diff] [blame] | 1375 | audit_inode_child(victim->d_name.name, victim, dir); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1376 | |
Al Viro | f419a2e | 2008-07-22 00:07:17 -0400 | [diff] [blame] | 1377 | error = inode_permission(dir, MAY_WRITE | MAY_EXEC); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1378 | if (error) |
| 1379 | return error; |
| 1380 | if (IS_APPEND(dir)) |
| 1381 | return -EPERM; |
| 1382 | if (check_sticky(dir, victim->d_inode)||IS_APPEND(victim->d_inode)|| |
Hugh Dickins | f945454 | 2008-11-19 15:36:38 -0800 | [diff] [blame] | 1383 | IS_IMMUTABLE(victim->d_inode) || IS_SWAPFILE(victim->d_inode)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1384 | return -EPERM; |
| 1385 | if (isdir) { |
| 1386 | if (!S_ISDIR(victim->d_inode->i_mode)) |
| 1387 | return -ENOTDIR; |
| 1388 | if (IS_ROOT(victim)) |
| 1389 | return -EBUSY; |
| 1390 | } else if (S_ISDIR(victim->d_inode->i_mode)) |
| 1391 | return -EISDIR; |
| 1392 | if (IS_DEADDIR(dir)) |
| 1393 | return -ENOENT; |
| 1394 | if (victim->d_flags & DCACHE_NFSFS_RENAMED) |
| 1395 | return -EBUSY; |
| 1396 | return 0; |
| 1397 | } |
| 1398 | |
| 1399 | /* Check whether we can create an object with dentry child in directory |
| 1400 | * dir. |
| 1401 | * 1. We can't do it if child already exists (open has special treatment for |
| 1402 | * this case, but since we are inlined it's OK) |
| 1403 | * 2. We can't do it if dir is read-only (done in permission()) |
| 1404 | * 3. We should have write and exec permissions on dir |
| 1405 | * 4. We can't do it if dir is immutable (done in permission()) |
| 1406 | */ |
Miklos Szeredi | a95164d | 2008-07-30 15:08:48 +0200 | [diff] [blame] | 1407 | static inline int may_create(struct inode *dir, struct dentry *child) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1408 | { |
| 1409 | if (child->d_inode) |
| 1410 | return -EEXIST; |
| 1411 | if (IS_DEADDIR(dir)) |
| 1412 | return -ENOENT; |
Al Viro | f419a2e | 2008-07-22 00:07:17 -0400 | [diff] [blame] | 1413 | return inode_permission(dir, MAY_WRITE | MAY_EXEC); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1414 | } |
| 1415 | |
| 1416 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1417 | * O_DIRECTORY translates into forcing a directory lookup. |
| 1418 | */ |
| 1419 | static inline int lookup_flags(unsigned int f) |
| 1420 | { |
| 1421 | unsigned long retval = LOOKUP_FOLLOW; |
| 1422 | |
| 1423 | if (f & O_NOFOLLOW) |
| 1424 | retval &= ~LOOKUP_FOLLOW; |
| 1425 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1426 | if (f & O_DIRECTORY) |
| 1427 | retval |= LOOKUP_DIRECTORY; |
| 1428 | |
| 1429 | return retval; |
| 1430 | } |
| 1431 | |
| 1432 | /* |
| 1433 | * p1 and p2 should be directories on the same fs. |
| 1434 | */ |
| 1435 | struct dentry *lock_rename(struct dentry *p1, struct dentry *p2) |
| 1436 | { |
| 1437 | struct dentry *p; |
| 1438 | |
| 1439 | if (p1 == p2) { |
Ingo Molnar | f2eace2 | 2006-07-03 00:25:05 -0700 | [diff] [blame] | 1440 | mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1441 | return NULL; |
| 1442 | } |
| 1443 | |
Arjan van de Ven | a11f3a0 | 2006-03-23 03:00:33 -0800 | [diff] [blame] | 1444 | mutex_lock(&p1->d_inode->i_sb->s_vfs_rename_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1445 | |
OGAWA Hirofumi | e2761a1 | 2008-10-16 07:50:28 +0900 | [diff] [blame] | 1446 | p = d_ancestor(p2, p1); |
| 1447 | if (p) { |
| 1448 | mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_PARENT); |
| 1449 | mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_CHILD); |
| 1450 | return p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1451 | } |
| 1452 | |
OGAWA Hirofumi | e2761a1 | 2008-10-16 07:50:28 +0900 | [diff] [blame] | 1453 | p = d_ancestor(p1, p2); |
| 1454 | if (p) { |
| 1455 | mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT); |
| 1456 | mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_CHILD); |
| 1457 | return p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1458 | } |
| 1459 | |
Ingo Molnar | f2eace2 | 2006-07-03 00:25:05 -0700 | [diff] [blame] | 1460 | mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT); |
| 1461 | mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_CHILD); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1462 | return NULL; |
| 1463 | } |
| 1464 | |
| 1465 | void unlock_rename(struct dentry *p1, struct dentry *p2) |
| 1466 | { |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 1467 | mutex_unlock(&p1->d_inode->i_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1468 | if (p1 != p2) { |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 1469 | mutex_unlock(&p2->d_inode->i_mutex); |
Arjan van de Ven | a11f3a0 | 2006-03-23 03:00:33 -0800 | [diff] [blame] | 1470 | mutex_unlock(&p1->d_inode->i_sb->s_vfs_rename_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1471 | } |
| 1472 | } |
| 1473 | |
| 1474 | int vfs_create(struct inode *dir, struct dentry *dentry, int mode, |
| 1475 | struct nameidata *nd) |
| 1476 | { |
Miklos Szeredi | a95164d | 2008-07-30 15:08:48 +0200 | [diff] [blame] | 1477 | int error = may_create(dir, dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1478 | |
| 1479 | if (error) |
| 1480 | return error; |
| 1481 | |
| 1482 | if (!dir->i_op || !dir->i_op->create) |
| 1483 | return -EACCES; /* shouldn't it be ENOSYS? */ |
| 1484 | mode &= S_IALLUGO; |
| 1485 | mode |= S_IFREG; |
| 1486 | error = security_inode_create(dir, dentry, mode); |
| 1487 | if (error) |
| 1488 | return error; |
| 1489 | DQUOT_INIT(dir); |
| 1490 | error = dir->i_op->create(dir, dentry, mode, nd); |
Stephen Smalley | a74574a | 2005-09-09 13:01:44 -0700 | [diff] [blame] | 1491 | if (!error) |
Amy Griffis | f38aa94 | 2005-11-03 15:57:06 +0000 | [diff] [blame] | 1492 | fsnotify_create(dir, dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1493 | return error; |
| 1494 | } |
| 1495 | |
| 1496 | int may_open(struct nameidata *nd, int acc_mode, int flag) |
| 1497 | { |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 1498 | struct dentry *dentry = nd->path.dentry; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1499 | struct inode *inode = dentry->d_inode; |
| 1500 | int error; |
| 1501 | |
| 1502 | if (!inode) |
| 1503 | return -ENOENT; |
| 1504 | |
| 1505 | if (S_ISLNK(inode->i_mode)) |
| 1506 | return -ELOOP; |
| 1507 | |
Linus Torvalds | 974a9f0 | 2008-01-12 14:06:34 -0800 | [diff] [blame] | 1508 | if (S_ISDIR(inode->i_mode) && (acc_mode & MAY_WRITE)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1509 | return -EISDIR; |
| 1510 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1511 | /* |
| 1512 | * FIFO's, sockets and device files are special: they don't |
| 1513 | * actually live on the filesystem itself, and as such you |
| 1514 | * can write to them even if the filesystem is read-only. |
| 1515 | */ |
| 1516 | if (S_ISFIFO(inode->i_mode) || S_ISSOCK(inode->i_mode)) { |
| 1517 | flag &= ~O_TRUNC; |
| 1518 | } else if (S_ISBLK(inode->i_mode) || S_ISCHR(inode->i_mode)) { |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 1519 | if (nd->path.mnt->mnt_flags & MNT_NODEV) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1520 | return -EACCES; |
| 1521 | |
| 1522 | flag &= ~O_TRUNC; |
Dave Hansen | 4a3fd21 | 2008-02-15 14:37:48 -0800 | [diff] [blame] | 1523 | } |
Dave Hansen | b41572e | 2007-10-16 23:31:14 -0700 | [diff] [blame] | 1524 | |
| 1525 | error = vfs_permission(nd, acc_mode); |
| 1526 | if (error) |
| 1527 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1528 | /* |
| 1529 | * An append-only file must be opened in append mode for writing. |
| 1530 | */ |
| 1531 | if (IS_APPEND(inode)) { |
| 1532 | if ((flag & FMODE_WRITE) && !(flag & O_APPEND)) |
| 1533 | return -EPERM; |
| 1534 | if (flag & O_TRUNC) |
| 1535 | return -EPERM; |
| 1536 | } |
| 1537 | |
| 1538 | /* O_NOATIME can only be set by the owner or superuser */ |
| 1539 | if (flag & O_NOATIME) |
Satyam Sharma | 3bd858a | 2007-07-17 15:00:08 +0530 | [diff] [blame] | 1540 | if (!is_owner_or_cap(inode)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1541 | return -EPERM; |
| 1542 | |
| 1543 | /* |
| 1544 | * Ensure there are no outstanding leases on the file. |
| 1545 | */ |
| 1546 | error = break_lease(inode, flag); |
| 1547 | if (error) |
| 1548 | return error; |
| 1549 | |
| 1550 | if (flag & O_TRUNC) { |
| 1551 | error = get_write_access(inode); |
| 1552 | if (error) |
| 1553 | return error; |
| 1554 | |
| 1555 | /* |
| 1556 | * Refuse to truncate files with mandatory locks held on them. |
| 1557 | */ |
| 1558 | error = locks_verify_locked(inode); |
| 1559 | if (!error) { |
| 1560 | DQUOT_INIT(inode); |
Miklos Szeredi | d139d7f | 2007-10-18 03:07:00 -0700 | [diff] [blame] | 1561 | |
| 1562 | error = do_truncate(dentry, 0, |
| 1563 | ATTR_MTIME|ATTR_CTIME|ATTR_OPEN, |
| 1564 | NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1565 | } |
| 1566 | put_write_access(inode); |
| 1567 | if (error) |
| 1568 | return error; |
| 1569 | } else |
| 1570 | if (flag & FMODE_WRITE) |
| 1571 | DQUOT_INIT(inode); |
| 1572 | |
| 1573 | return 0; |
| 1574 | } |
| 1575 | |
Dave Hansen | d57999e | 2008-02-15 14:37:27 -0800 | [diff] [blame] | 1576 | /* |
| 1577 | * Be careful about ever adding any more callers of this |
| 1578 | * function. Its flags must be in the namei format, not |
| 1579 | * what get passed to sys_open(). |
| 1580 | */ |
| 1581 | static int __open_namei_create(struct nameidata *nd, struct path *path, |
Dave Hansen | aab520e | 2006-09-30 23:29:02 -0700 | [diff] [blame] | 1582 | int flag, int mode) |
| 1583 | { |
| 1584 | int error; |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 1585 | struct dentry *dir = nd->path.dentry; |
Dave Hansen | aab520e | 2006-09-30 23:29:02 -0700 | [diff] [blame] | 1586 | |
| 1587 | if (!IS_POSIXACL(dir->d_inode)) |
| 1588 | mode &= ~current->fs->umask; |
| 1589 | error = vfs_create(dir->d_inode, path->dentry, mode, nd); |
| 1590 | mutex_unlock(&dir->d_inode->i_mutex); |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 1591 | dput(nd->path.dentry); |
| 1592 | nd->path.dentry = path->dentry; |
Dave Hansen | aab520e | 2006-09-30 23:29:02 -0700 | [diff] [blame] | 1593 | if (error) |
| 1594 | return error; |
| 1595 | /* Don't check for write permission, don't truncate */ |
| 1596 | return may_open(nd, 0, flag & ~O_TRUNC); |
| 1597 | } |
| 1598 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1599 | /* |
Dave Hansen | d57999e | 2008-02-15 14:37:27 -0800 | [diff] [blame] | 1600 | * Note that while the flag value (low two bits) for sys_open means: |
| 1601 | * 00 - read-only |
| 1602 | * 01 - write-only |
| 1603 | * 10 - read-write |
| 1604 | * 11 - special |
| 1605 | * it is changed into |
| 1606 | * 00 - no permissions needed |
| 1607 | * 01 - read-permission |
| 1608 | * 10 - write-permission |
| 1609 | * 11 - read-write |
| 1610 | * for the internal routines (ie open_namei()/follow_link() etc) |
| 1611 | * This is more logical, and also allows the 00 "no perm needed" |
| 1612 | * to be used for symlinks (where the permissions are checked |
| 1613 | * later). |
| 1614 | * |
| 1615 | */ |
| 1616 | static inline int open_to_namei_flags(int flag) |
| 1617 | { |
| 1618 | if ((flag+1) & O_ACCMODE) |
| 1619 | flag++; |
| 1620 | return flag; |
| 1621 | } |
| 1622 | |
Dave Hansen | 4a3fd21 | 2008-02-15 14:37:48 -0800 | [diff] [blame] | 1623 | static int open_will_write_to_fs(int flag, struct inode *inode) |
| 1624 | { |
| 1625 | /* |
| 1626 | * We'll never write to the fs underlying |
| 1627 | * a device file. |
| 1628 | */ |
| 1629 | if (special_file(inode->i_mode)) |
| 1630 | return 0; |
| 1631 | return (flag & O_TRUNC); |
| 1632 | } |
| 1633 | |
Dave Hansen | d57999e | 2008-02-15 14:37:27 -0800 | [diff] [blame] | 1634 | /* |
Dave Hansen | 4a3fd21 | 2008-02-15 14:37:48 -0800 | [diff] [blame] | 1635 | * Note that the low bits of the passed in "open_flag" |
| 1636 | * are not the same as in the local variable "flag". See |
| 1637 | * open_to_namei_flags() for more details. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1638 | */ |
Christoph Hellwig | a70e65d | 2008-02-15 14:37:28 -0800 | [diff] [blame] | 1639 | struct file *do_filp_open(int dfd, const char *pathname, |
| 1640 | int open_flag, int mode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1641 | { |
Dave Hansen | 4a3fd21 | 2008-02-15 14:37:48 -0800 | [diff] [blame] | 1642 | struct file *filp; |
Christoph Hellwig | a70e65d | 2008-02-15 14:37:28 -0800 | [diff] [blame] | 1643 | struct nameidata nd; |
Trond Myklebust | 834f2a4 | 2005-10-18 14:20:16 -0700 | [diff] [blame] | 1644 | int acc_mode, error; |
Al Viro | 4e7506e | 2005-06-06 13:36:00 -0700 | [diff] [blame] | 1645 | struct path path; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1646 | struct dentry *dir; |
| 1647 | int count = 0; |
Dave Hansen | 4a3fd21 | 2008-02-15 14:37:48 -0800 | [diff] [blame] | 1648 | int will_write; |
Dave Hansen | d57999e | 2008-02-15 14:37:27 -0800 | [diff] [blame] | 1649 | int flag = open_to_namei_flags(open_flag); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1650 | |
Al Viro | b77b064 | 2008-07-17 09:37:02 -0400 | [diff] [blame] | 1651 | acc_mode = MAY_OPEN | ACC_MODE(flag); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1652 | |
Trond Myklebust | 834f2a4 | 2005-10-18 14:20:16 -0700 | [diff] [blame] | 1653 | /* O_TRUNC implies we need access checks for write permissions */ |
| 1654 | if (flag & O_TRUNC) |
| 1655 | acc_mode |= MAY_WRITE; |
| 1656 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1657 | /* Allow the LSM permission hook to distinguish append |
| 1658 | access from general write access. */ |
| 1659 | if (flag & O_APPEND) |
| 1660 | acc_mode |= MAY_APPEND; |
| 1661 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1662 | /* |
| 1663 | * The simplest case - just a plain lookup. |
| 1664 | */ |
| 1665 | if (!(flag & O_CREAT)) { |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 1666 | error = path_lookup_open(dfd, pathname, lookup_flags(flag), |
Christoph Hellwig | a70e65d | 2008-02-15 14:37:28 -0800 | [diff] [blame] | 1667 | &nd, flag); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1668 | if (error) |
Christoph Hellwig | a70e65d | 2008-02-15 14:37:28 -0800 | [diff] [blame] | 1669 | return ERR_PTR(error); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1670 | goto ok; |
| 1671 | } |
| 1672 | |
| 1673 | /* |
| 1674 | * Create - we need to know the parent. |
| 1675 | */ |
Al Viro | 8737f3a | 2008-08-02 22:36:57 -0400 | [diff] [blame] | 1676 | error = do_path_lookup(dfd, pathname, LOOKUP_PARENT, &nd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1677 | if (error) |
Christoph Hellwig | a70e65d | 2008-02-15 14:37:28 -0800 | [diff] [blame] | 1678 | return ERR_PTR(error); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1679 | |
| 1680 | /* |
| 1681 | * We have the parent and last component. First of all, check |
| 1682 | * that we are not asked to creat(2) an obvious directory - that |
| 1683 | * will not do. |
| 1684 | */ |
| 1685 | error = -EISDIR; |
Christoph Hellwig | a70e65d | 2008-02-15 14:37:28 -0800 | [diff] [blame] | 1686 | if (nd.last_type != LAST_NORM || nd.last.name[nd.last.len]) |
Al Viro | 8737f3a | 2008-08-02 22:36:57 -0400 | [diff] [blame] | 1687 | goto exit_parent; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1688 | |
Al Viro | 8737f3a | 2008-08-02 22:36:57 -0400 | [diff] [blame] | 1689 | error = -ENFILE; |
| 1690 | filp = get_empty_filp(); |
| 1691 | if (filp == NULL) |
| 1692 | goto exit_parent; |
| 1693 | nd.intent.open.file = filp; |
| 1694 | nd.intent.open.flags = flag; |
| 1695 | nd.intent.open.create_mode = mode; |
Christoph Hellwig | a70e65d | 2008-02-15 14:37:28 -0800 | [diff] [blame] | 1696 | dir = nd.path.dentry; |
| 1697 | nd.flags &= ~LOOKUP_PARENT; |
Al Viro | 8737f3a | 2008-08-02 22:36:57 -0400 | [diff] [blame] | 1698 | nd.flags |= LOOKUP_CREATE | LOOKUP_OPEN; |
Al Viro | 3516586 | 2008-08-05 03:00:49 -0400 | [diff] [blame] | 1699 | if (flag & O_EXCL) |
| 1700 | nd.flags |= LOOKUP_EXCL; |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 1701 | mutex_lock(&dir->d_inode->i_mutex); |
Christoph Hellwig | a70e65d | 2008-02-15 14:37:28 -0800 | [diff] [blame] | 1702 | path.dentry = lookup_hash(&nd); |
| 1703 | path.mnt = nd.path.mnt; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1704 | |
| 1705 | do_last: |
Al Viro | 4e7506e | 2005-06-06 13:36:00 -0700 | [diff] [blame] | 1706 | error = PTR_ERR(path.dentry); |
| 1707 | if (IS_ERR(path.dentry)) { |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 1708 | mutex_unlock(&dir->d_inode->i_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1709 | goto exit; |
| 1710 | } |
| 1711 | |
Christoph Hellwig | a70e65d | 2008-02-15 14:37:28 -0800 | [diff] [blame] | 1712 | if (IS_ERR(nd.intent.open.file)) { |
Christoph Hellwig | a70e65d | 2008-02-15 14:37:28 -0800 | [diff] [blame] | 1713 | error = PTR_ERR(nd.intent.open.file); |
Dave Hansen | 4a3fd21 | 2008-02-15 14:37:48 -0800 | [diff] [blame] | 1714 | goto exit_mutex_unlock; |
Oleg Drokin | 4af4c52 | 2006-03-25 03:06:54 -0800 | [diff] [blame] | 1715 | } |
| 1716 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1717 | /* Negative dentry, just create the file */ |
Al Viro | 4e7506e | 2005-06-06 13:36:00 -0700 | [diff] [blame] | 1718 | if (!path.dentry->d_inode) { |
Dave Hansen | 4a3fd21 | 2008-02-15 14:37:48 -0800 | [diff] [blame] | 1719 | /* |
| 1720 | * This write is needed to ensure that a |
| 1721 | * ro->rw transition does not occur between |
| 1722 | * the time when the file is created and when |
| 1723 | * a permanent write count is taken through |
| 1724 | * the 'struct file' in nameidata_to_filp(). |
| 1725 | */ |
| 1726 | error = mnt_want_write(nd.path.mnt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1727 | if (error) |
Dave Hansen | 4a3fd21 | 2008-02-15 14:37:48 -0800 | [diff] [blame] | 1728 | goto exit_mutex_unlock; |
| 1729 | error = __open_namei_create(&nd, &path, flag, mode); |
| 1730 | if (error) { |
| 1731 | mnt_drop_write(nd.path.mnt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1732 | goto exit; |
Dave Hansen | 4a3fd21 | 2008-02-15 14:37:48 -0800 | [diff] [blame] | 1733 | } |
| 1734 | filp = nameidata_to_filp(&nd, open_flag); |
| 1735 | mnt_drop_write(nd.path.mnt); |
| 1736 | return filp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1737 | } |
| 1738 | |
| 1739 | /* |
| 1740 | * It already exists. |
| 1741 | */ |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 1742 | mutex_unlock(&dir->d_inode->i_mutex); |
Al Viro | 5a190ae | 2007-06-07 12:19:32 -0400 | [diff] [blame] | 1743 | audit_inode(pathname, path.dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1744 | |
| 1745 | error = -EEXIST; |
| 1746 | if (flag & O_EXCL) |
| 1747 | goto exit_dput; |
| 1748 | |
Al Viro | e13b210 | 2005-06-06 13:36:06 -0700 | [diff] [blame] | 1749 | if (__follow_mount(&path)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1750 | error = -ELOOP; |
Al Viro | ba7a4c1 | 2005-06-06 13:36:08 -0700 | [diff] [blame] | 1751 | if (flag & O_NOFOLLOW) |
| 1752 | goto exit_dput; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1753 | } |
Amy Griffis | 3e2efce | 2006-07-13 13:16:02 -0400 | [diff] [blame] | 1754 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1755 | error = -ENOENT; |
Al Viro | 4e7506e | 2005-06-06 13:36:00 -0700 | [diff] [blame] | 1756 | if (!path.dentry->d_inode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1757 | goto exit_dput; |
Al Viro | 4e7506e | 2005-06-06 13:36:00 -0700 | [diff] [blame] | 1758 | if (path.dentry->d_inode->i_op && path.dentry->d_inode->i_op->follow_link) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1759 | goto do_link; |
| 1760 | |
Christoph Hellwig | a70e65d | 2008-02-15 14:37:28 -0800 | [diff] [blame] | 1761 | path_to_nameidata(&path, &nd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1762 | error = -EISDIR; |
Al Viro | 4e7506e | 2005-06-06 13:36:00 -0700 | [diff] [blame] | 1763 | if (path.dentry->d_inode && S_ISDIR(path.dentry->d_inode->i_mode)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1764 | goto exit; |
| 1765 | ok: |
Dave Hansen | 4a3fd21 | 2008-02-15 14:37:48 -0800 | [diff] [blame] | 1766 | /* |
| 1767 | * Consider: |
| 1768 | * 1. may_open() truncates a file |
| 1769 | * 2. a rw->ro mount transition occurs |
| 1770 | * 3. nameidata_to_filp() fails due to |
| 1771 | * the ro mount. |
| 1772 | * That would be inconsistent, and should |
| 1773 | * be avoided. Taking this mnt write here |
| 1774 | * ensures that (2) can not occur. |
| 1775 | */ |
| 1776 | will_write = open_will_write_to_fs(flag, nd.path.dentry->d_inode); |
| 1777 | if (will_write) { |
| 1778 | error = mnt_want_write(nd.path.mnt); |
| 1779 | if (error) |
| 1780 | goto exit; |
| 1781 | } |
Christoph Hellwig | a70e65d | 2008-02-15 14:37:28 -0800 | [diff] [blame] | 1782 | error = may_open(&nd, acc_mode, flag); |
Dave Hansen | 4a3fd21 | 2008-02-15 14:37:48 -0800 | [diff] [blame] | 1783 | if (error) { |
| 1784 | if (will_write) |
| 1785 | mnt_drop_write(nd.path.mnt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1786 | goto exit; |
Dave Hansen | 4a3fd21 | 2008-02-15 14:37:48 -0800 | [diff] [blame] | 1787 | } |
| 1788 | filp = nameidata_to_filp(&nd, open_flag); |
| 1789 | /* |
| 1790 | * It is now safe to drop the mnt write |
| 1791 | * because the filp has had a write taken |
| 1792 | * on its behalf. |
| 1793 | */ |
| 1794 | if (will_write) |
| 1795 | mnt_drop_write(nd.path.mnt); |
| 1796 | return filp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1797 | |
Dave Hansen | 4a3fd21 | 2008-02-15 14:37:48 -0800 | [diff] [blame] | 1798 | exit_mutex_unlock: |
| 1799 | mutex_unlock(&dir->d_inode->i_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1800 | exit_dput: |
Christoph Hellwig | a70e65d | 2008-02-15 14:37:28 -0800 | [diff] [blame] | 1801 | path_put_conditional(&path, &nd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1802 | exit: |
Christoph Hellwig | a70e65d | 2008-02-15 14:37:28 -0800 | [diff] [blame] | 1803 | if (!IS_ERR(nd.intent.open.file)) |
| 1804 | release_open_intent(&nd); |
Al Viro | 8737f3a | 2008-08-02 22:36:57 -0400 | [diff] [blame] | 1805 | exit_parent: |
Christoph Hellwig | a70e65d | 2008-02-15 14:37:28 -0800 | [diff] [blame] | 1806 | path_put(&nd.path); |
| 1807 | return ERR_PTR(error); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1808 | |
| 1809 | do_link: |
| 1810 | error = -ELOOP; |
| 1811 | if (flag & O_NOFOLLOW) |
| 1812 | goto exit_dput; |
| 1813 | /* |
| 1814 | * This is subtle. Instead of calling do_follow_link() we do the |
| 1815 | * thing by hands. The reason is that this way we have zero link_count |
| 1816 | * and path_walk() (called from ->follow_link) honoring LOOKUP_PARENT. |
| 1817 | * After that we have the parent and last component, i.e. |
| 1818 | * we are in the same situation as after the first path_walk(). |
| 1819 | * Well, almost - if the last component is normal we get its copy |
| 1820 | * stored in nd->last.name and we will have to putname() it when we |
| 1821 | * are done. Procfs-like symlinks just set LAST_BIND. |
| 1822 | */ |
Christoph Hellwig | a70e65d | 2008-02-15 14:37:28 -0800 | [diff] [blame] | 1823 | nd.flags |= LOOKUP_PARENT; |
| 1824 | error = security_inode_follow_link(path.dentry, &nd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1825 | if (error) |
| 1826 | goto exit_dput; |
Christoph Hellwig | a70e65d | 2008-02-15 14:37:28 -0800 | [diff] [blame] | 1827 | error = __do_follow_link(&path, &nd); |
Kirill Korotaev | de45921 | 2006-07-14 00:23:49 -0700 | [diff] [blame] | 1828 | if (error) { |
| 1829 | /* Does someone understand code flow here? Or it is only |
| 1830 | * me so stupid? Anathema to whoever designed this non-sense |
| 1831 | * with "intent.open". |
| 1832 | */ |
Christoph Hellwig | a70e65d | 2008-02-15 14:37:28 -0800 | [diff] [blame] | 1833 | release_open_intent(&nd); |
| 1834 | return ERR_PTR(error); |
Kirill Korotaev | de45921 | 2006-07-14 00:23:49 -0700 | [diff] [blame] | 1835 | } |
Christoph Hellwig | a70e65d | 2008-02-15 14:37:28 -0800 | [diff] [blame] | 1836 | nd.flags &= ~LOOKUP_PARENT; |
| 1837 | if (nd.last_type == LAST_BIND) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1838 | goto ok; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1839 | error = -EISDIR; |
Christoph Hellwig | a70e65d | 2008-02-15 14:37:28 -0800 | [diff] [blame] | 1840 | if (nd.last_type != LAST_NORM) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1841 | goto exit; |
Christoph Hellwig | a70e65d | 2008-02-15 14:37:28 -0800 | [diff] [blame] | 1842 | if (nd.last.name[nd.last.len]) { |
| 1843 | __putname(nd.last.name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1844 | goto exit; |
| 1845 | } |
| 1846 | error = -ELOOP; |
| 1847 | if (count++==32) { |
Christoph Hellwig | a70e65d | 2008-02-15 14:37:28 -0800 | [diff] [blame] | 1848 | __putname(nd.last.name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1849 | goto exit; |
| 1850 | } |
Christoph Hellwig | a70e65d | 2008-02-15 14:37:28 -0800 | [diff] [blame] | 1851 | dir = nd.path.dentry; |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 1852 | mutex_lock(&dir->d_inode->i_mutex); |
Christoph Hellwig | a70e65d | 2008-02-15 14:37:28 -0800 | [diff] [blame] | 1853 | path.dentry = lookup_hash(&nd); |
| 1854 | path.mnt = nd.path.mnt; |
| 1855 | __putname(nd.last.name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1856 | goto do_last; |
| 1857 | } |
| 1858 | |
| 1859 | /** |
Christoph Hellwig | a70e65d | 2008-02-15 14:37:28 -0800 | [diff] [blame] | 1860 | * filp_open - open file and return file pointer |
| 1861 | * |
| 1862 | * @filename: path to open |
| 1863 | * @flags: open flags as per the open(2) second argument |
| 1864 | * @mode: mode for the new file if O_CREAT is set, else ignored |
| 1865 | * |
| 1866 | * This is the helper to open a file from kernelspace if you really |
| 1867 | * have to. But in generally you should not do this, so please move |
| 1868 | * along, nothing to see here.. |
| 1869 | */ |
| 1870 | struct file *filp_open(const char *filename, int flags, int mode) |
| 1871 | { |
| 1872 | return do_filp_open(AT_FDCWD, filename, flags, mode); |
| 1873 | } |
| 1874 | EXPORT_SYMBOL(filp_open); |
| 1875 | |
| 1876 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1877 | * lookup_create - lookup a dentry, creating it if it doesn't exist |
| 1878 | * @nd: nameidata info |
| 1879 | * @is_dir: directory flag |
| 1880 | * |
| 1881 | * Simple function to lookup and return a dentry and create it |
| 1882 | * if it doesn't exist. Is SMP-safe. |
Christoph Hellwig | c663e5d | 2005-06-23 00:09:49 -0700 | [diff] [blame] | 1883 | * |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 1884 | * Returns with nd->path.dentry->d_inode->i_mutex locked. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1885 | */ |
| 1886 | struct dentry *lookup_create(struct nameidata *nd, int is_dir) |
| 1887 | { |
Christoph Hellwig | c663e5d | 2005-06-23 00:09:49 -0700 | [diff] [blame] | 1888 | struct dentry *dentry = ERR_PTR(-EEXIST); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1889 | |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 1890 | 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] | 1891 | /* |
| 1892 | * Yucky last component or no last component at all? |
| 1893 | * (foo/., foo/.., /////) |
| 1894 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1895 | if (nd->last_type != LAST_NORM) |
| 1896 | goto fail; |
| 1897 | nd->flags &= ~LOOKUP_PARENT; |
Al Viro | 3516586 | 2008-08-05 03:00:49 -0400 | [diff] [blame] | 1898 | nd->flags |= LOOKUP_CREATE | LOOKUP_EXCL; |
ASANO Masahiro | a634904 | 2006-08-22 20:06:02 -0400 | [diff] [blame] | 1899 | nd->intent.open.flags = O_EXCL; |
Christoph Hellwig | c663e5d | 2005-06-23 00:09:49 -0700 | [diff] [blame] | 1900 | |
| 1901 | /* |
| 1902 | * Do the final lookup. |
| 1903 | */ |
Christoph Hellwig | 49705b7 | 2005-11-08 21:35:06 -0800 | [diff] [blame] | 1904 | dentry = lookup_hash(nd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1905 | if (IS_ERR(dentry)) |
| 1906 | goto fail; |
Christoph Hellwig | c663e5d | 2005-06-23 00:09:49 -0700 | [diff] [blame] | 1907 | |
Al Viro | e9baf6e | 2008-05-15 04:49:12 -0400 | [diff] [blame] | 1908 | if (dentry->d_inode) |
| 1909 | goto eexist; |
Christoph Hellwig | c663e5d | 2005-06-23 00:09:49 -0700 | [diff] [blame] | 1910 | /* |
| 1911 | * Special case - lookup gave negative, but... we had foo/bar/ |
| 1912 | * From the vfs_mknod() POV we just have a negative dentry - |
| 1913 | * all is fine. Let's be bastards - you had / on the end, you've |
| 1914 | * been asking for (non-existent) directory. -ENOENT for you. |
| 1915 | */ |
Al Viro | e9baf6e | 2008-05-15 04:49:12 -0400 | [diff] [blame] | 1916 | if (unlikely(!is_dir && nd->last.name[nd->last.len])) { |
| 1917 | dput(dentry); |
| 1918 | dentry = ERR_PTR(-ENOENT); |
| 1919 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1920 | return dentry; |
Al Viro | e9baf6e | 2008-05-15 04:49:12 -0400 | [diff] [blame] | 1921 | eexist: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1922 | dput(dentry); |
Al Viro | e9baf6e | 2008-05-15 04:49:12 -0400 | [diff] [blame] | 1923 | dentry = ERR_PTR(-EEXIST); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1924 | fail: |
| 1925 | return dentry; |
| 1926 | } |
Christoph Hellwig | f81a0bf | 2005-05-19 12:26:43 -0700 | [diff] [blame] | 1927 | EXPORT_SYMBOL_GPL(lookup_create); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1928 | |
| 1929 | int vfs_mknod(struct inode *dir, struct dentry *dentry, int mode, dev_t dev) |
| 1930 | { |
Miklos Szeredi | a95164d | 2008-07-30 15:08:48 +0200 | [diff] [blame] | 1931 | int error = may_create(dir, dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1932 | |
| 1933 | if (error) |
| 1934 | return error; |
| 1935 | |
| 1936 | if ((S_ISCHR(mode) || S_ISBLK(mode)) && !capable(CAP_MKNOD)) |
| 1937 | return -EPERM; |
| 1938 | |
| 1939 | if (!dir->i_op || !dir->i_op->mknod) |
| 1940 | return -EPERM; |
| 1941 | |
Serge E. Hallyn | 08ce5f1 | 2008-04-29 01:00:10 -0700 | [diff] [blame] | 1942 | error = devcgroup_inode_mknod(mode, dev); |
| 1943 | if (error) |
| 1944 | return error; |
| 1945 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1946 | error = security_inode_mknod(dir, dentry, mode, dev); |
| 1947 | if (error) |
| 1948 | return error; |
| 1949 | |
| 1950 | DQUOT_INIT(dir); |
| 1951 | error = dir->i_op->mknod(dir, dentry, mode, dev); |
Stephen Smalley | a74574a | 2005-09-09 13:01:44 -0700 | [diff] [blame] | 1952 | if (!error) |
Amy Griffis | f38aa94 | 2005-11-03 15:57:06 +0000 | [diff] [blame] | 1953 | fsnotify_create(dir, dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1954 | return error; |
| 1955 | } |
| 1956 | |
Dave Hansen | 463c319 | 2008-02-15 14:37:57 -0800 | [diff] [blame] | 1957 | static int may_mknod(mode_t mode) |
| 1958 | { |
| 1959 | switch (mode & S_IFMT) { |
| 1960 | case S_IFREG: |
| 1961 | case S_IFCHR: |
| 1962 | case S_IFBLK: |
| 1963 | case S_IFIFO: |
| 1964 | case S_IFSOCK: |
| 1965 | case 0: /* zero mode translates to S_IFREG */ |
| 1966 | return 0; |
| 1967 | case S_IFDIR: |
| 1968 | return -EPERM; |
| 1969 | default: |
| 1970 | return -EINVAL; |
| 1971 | } |
| 1972 | } |
| 1973 | |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 1974 | asmlinkage long sys_mknodat(int dfd, const char __user *filename, int mode, |
| 1975 | unsigned dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1976 | { |
Al Viro | 2ad94ae | 2008-07-21 09:32:51 -0400 | [diff] [blame] | 1977 | int error; |
| 1978 | char *tmp; |
| 1979 | struct dentry *dentry; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1980 | struct nameidata nd; |
| 1981 | |
| 1982 | if (S_ISDIR(mode)) |
| 1983 | return -EPERM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1984 | |
Al Viro | 2ad94ae | 2008-07-21 09:32:51 -0400 | [diff] [blame] | 1985 | error = user_path_parent(dfd, filename, &nd, &tmp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1986 | if (error) |
Al Viro | 2ad94ae | 2008-07-21 09:32:51 -0400 | [diff] [blame] | 1987 | return error; |
| 1988 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1989 | dentry = lookup_create(&nd, 0); |
Dave Hansen | 463c319 | 2008-02-15 14:37:57 -0800 | [diff] [blame] | 1990 | if (IS_ERR(dentry)) { |
| 1991 | error = PTR_ERR(dentry); |
| 1992 | goto out_unlock; |
| 1993 | } |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 1994 | if (!IS_POSIXACL(nd.path.dentry->d_inode)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1995 | mode &= ~current->fs->umask; |
Dave Hansen | 463c319 | 2008-02-15 14:37:57 -0800 | [diff] [blame] | 1996 | error = may_mknod(mode); |
| 1997 | if (error) |
| 1998 | goto out_dput; |
| 1999 | error = mnt_want_write(nd.path.mnt); |
| 2000 | if (error) |
| 2001 | goto out_dput; |
| 2002 | switch (mode & S_IFMT) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2003 | case 0: case S_IFREG: |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 2004 | error = vfs_create(nd.path.dentry->d_inode,dentry,mode,&nd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2005 | break; |
| 2006 | case S_IFCHR: case S_IFBLK: |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 2007 | error = vfs_mknod(nd.path.dentry->d_inode,dentry,mode, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2008 | new_decode_dev(dev)); |
| 2009 | break; |
| 2010 | case S_IFIFO: case S_IFSOCK: |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 2011 | error = vfs_mknod(nd.path.dentry->d_inode,dentry,mode,0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2012 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2013 | } |
Dave Hansen | 463c319 | 2008-02-15 14:37:57 -0800 | [diff] [blame] | 2014 | mnt_drop_write(nd.path.mnt); |
| 2015 | out_dput: |
| 2016 | dput(dentry); |
| 2017 | out_unlock: |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 2018 | mutex_unlock(&nd.path.dentry->d_inode->i_mutex); |
Jan Blunck | 1d957f9 | 2008-02-14 19:34:35 -0800 | [diff] [blame] | 2019 | path_put(&nd.path); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2020 | putname(tmp); |
| 2021 | |
| 2022 | return error; |
| 2023 | } |
| 2024 | |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 2025 | asmlinkage long sys_mknod(const char __user *filename, int mode, unsigned dev) |
| 2026 | { |
| 2027 | return sys_mknodat(AT_FDCWD, filename, mode, dev); |
| 2028 | } |
| 2029 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2030 | int vfs_mkdir(struct inode *dir, struct dentry *dentry, int mode) |
| 2031 | { |
Miklos Szeredi | a95164d | 2008-07-30 15:08:48 +0200 | [diff] [blame] | 2032 | int error = may_create(dir, dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2033 | |
| 2034 | if (error) |
| 2035 | return error; |
| 2036 | |
| 2037 | if (!dir->i_op || !dir->i_op->mkdir) |
| 2038 | return -EPERM; |
| 2039 | |
| 2040 | mode &= (S_IRWXUGO|S_ISVTX); |
| 2041 | error = security_inode_mkdir(dir, dentry, mode); |
| 2042 | if (error) |
| 2043 | return error; |
| 2044 | |
| 2045 | DQUOT_INIT(dir); |
| 2046 | error = dir->i_op->mkdir(dir, dentry, mode); |
Stephen Smalley | a74574a | 2005-09-09 13:01:44 -0700 | [diff] [blame] | 2047 | if (!error) |
Amy Griffis | f38aa94 | 2005-11-03 15:57:06 +0000 | [diff] [blame] | 2048 | fsnotify_mkdir(dir, dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2049 | return error; |
| 2050 | } |
| 2051 | |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 2052 | asmlinkage long sys_mkdirat(int dfd, const char __user *pathname, int mode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2053 | { |
| 2054 | int error = 0; |
| 2055 | char * tmp; |
Dave Hansen | 6902d92 | 2006-09-30 23:29:01 -0700 | [diff] [blame] | 2056 | struct dentry *dentry; |
| 2057 | struct nameidata nd; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2058 | |
Al Viro | 2ad94ae | 2008-07-21 09:32:51 -0400 | [diff] [blame] | 2059 | error = user_path_parent(dfd, pathname, &nd, &tmp); |
| 2060 | if (error) |
Dave Hansen | 6902d92 | 2006-09-30 23:29:01 -0700 | [diff] [blame] | 2061 | goto out_err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2062 | |
Dave Hansen | 6902d92 | 2006-09-30 23:29:01 -0700 | [diff] [blame] | 2063 | dentry = lookup_create(&nd, 1); |
| 2064 | error = PTR_ERR(dentry); |
| 2065 | if (IS_ERR(dentry)) |
| 2066 | goto out_unlock; |
| 2067 | |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 2068 | if (!IS_POSIXACL(nd.path.dentry->d_inode)) |
Dave Hansen | 6902d92 | 2006-09-30 23:29:01 -0700 | [diff] [blame] | 2069 | mode &= ~current->fs->umask; |
Dave Hansen | 463c319 | 2008-02-15 14:37:57 -0800 | [diff] [blame] | 2070 | error = mnt_want_write(nd.path.mnt); |
| 2071 | if (error) |
| 2072 | goto out_dput; |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 2073 | error = vfs_mkdir(nd.path.dentry->d_inode, dentry, mode); |
Dave Hansen | 463c319 | 2008-02-15 14:37:57 -0800 | [diff] [blame] | 2074 | mnt_drop_write(nd.path.mnt); |
| 2075 | out_dput: |
Dave Hansen | 6902d92 | 2006-09-30 23:29:01 -0700 | [diff] [blame] | 2076 | dput(dentry); |
| 2077 | out_unlock: |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 2078 | mutex_unlock(&nd.path.dentry->d_inode->i_mutex); |
Jan Blunck | 1d957f9 | 2008-02-14 19:34:35 -0800 | [diff] [blame] | 2079 | path_put(&nd.path); |
Dave Hansen | 6902d92 | 2006-09-30 23:29:01 -0700 | [diff] [blame] | 2080 | putname(tmp); |
| 2081 | out_err: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2082 | return error; |
| 2083 | } |
| 2084 | |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 2085 | asmlinkage long sys_mkdir(const char __user *pathname, int mode) |
| 2086 | { |
| 2087 | return sys_mkdirat(AT_FDCWD, pathname, mode); |
| 2088 | } |
| 2089 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2090 | /* |
| 2091 | * We try to drop the dentry early: we should have |
| 2092 | * a usage count of 2 if we're the only user of this |
| 2093 | * dentry, and if that is true (possibly after pruning |
| 2094 | * the dcache), then we drop the dentry now. |
| 2095 | * |
| 2096 | * A low-level filesystem can, if it choses, legally |
| 2097 | * do a |
| 2098 | * |
| 2099 | * if (!d_unhashed(dentry)) |
| 2100 | * return -EBUSY; |
| 2101 | * |
| 2102 | * if it cannot handle the case of removing a directory |
| 2103 | * that is still in use by something else.. |
| 2104 | */ |
| 2105 | void dentry_unhash(struct dentry *dentry) |
| 2106 | { |
| 2107 | dget(dentry); |
Vasily Averin | dc16842 | 2006-12-06 20:37:07 -0800 | [diff] [blame] | 2108 | shrink_dcache_parent(dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2109 | spin_lock(&dcache_lock); |
| 2110 | spin_lock(&dentry->d_lock); |
| 2111 | if (atomic_read(&dentry->d_count) == 2) |
| 2112 | __d_drop(dentry); |
| 2113 | spin_unlock(&dentry->d_lock); |
| 2114 | spin_unlock(&dcache_lock); |
| 2115 | } |
| 2116 | |
| 2117 | int vfs_rmdir(struct inode *dir, struct dentry *dentry) |
| 2118 | { |
| 2119 | int error = may_delete(dir, dentry, 1); |
| 2120 | |
| 2121 | if (error) |
| 2122 | return error; |
| 2123 | |
| 2124 | if (!dir->i_op || !dir->i_op->rmdir) |
| 2125 | return -EPERM; |
| 2126 | |
| 2127 | DQUOT_INIT(dir); |
| 2128 | |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 2129 | mutex_lock(&dentry->d_inode->i_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2130 | dentry_unhash(dentry); |
| 2131 | if (d_mountpoint(dentry)) |
| 2132 | error = -EBUSY; |
| 2133 | else { |
| 2134 | error = security_inode_rmdir(dir, dentry); |
| 2135 | if (!error) { |
| 2136 | error = dir->i_op->rmdir(dir, dentry); |
| 2137 | if (!error) |
| 2138 | dentry->d_inode->i_flags |= S_DEAD; |
| 2139 | } |
| 2140 | } |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 2141 | mutex_unlock(&dentry->d_inode->i_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2142 | if (!error) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2143 | d_delete(dentry); |
| 2144 | } |
| 2145 | dput(dentry); |
| 2146 | |
| 2147 | return error; |
| 2148 | } |
| 2149 | |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 2150 | static long do_rmdir(int dfd, const char __user *pathname) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2151 | { |
| 2152 | int error = 0; |
| 2153 | char * name; |
| 2154 | struct dentry *dentry; |
| 2155 | struct nameidata nd; |
| 2156 | |
Al Viro | 2ad94ae | 2008-07-21 09:32:51 -0400 | [diff] [blame] | 2157 | error = user_path_parent(dfd, pathname, &nd, &name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2158 | if (error) |
Al Viro | 2ad94ae | 2008-07-21 09:32:51 -0400 | [diff] [blame] | 2159 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2160 | |
| 2161 | switch(nd.last_type) { |
OGAWA Hirofumi | 0612d9f | 2008-10-16 07:50:29 +0900 | [diff] [blame] | 2162 | case LAST_DOTDOT: |
| 2163 | error = -ENOTEMPTY; |
| 2164 | goto exit1; |
| 2165 | case LAST_DOT: |
| 2166 | error = -EINVAL; |
| 2167 | goto exit1; |
| 2168 | case LAST_ROOT: |
| 2169 | error = -EBUSY; |
| 2170 | goto exit1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2171 | } |
OGAWA Hirofumi | 0612d9f | 2008-10-16 07:50:29 +0900 | [diff] [blame] | 2172 | |
| 2173 | nd.flags &= ~LOOKUP_PARENT; |
| 2174 | |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 2175 | 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] | 2176 | dentry = lookup_hash(&nd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2177 | error = PTR_ERR(dentry); |
Dave Hansen | 6902d92 | 2006-09-30 23:29:01 -0700 | [diff] [blame] | 2178 | if (IS_ERR(dentry)) |
| 2179 | goto exit2; |
Dave Hansen | 0622753 | 2008-02-15 14:37:34 -0800 | [diff] [blame] | 2180 | error = mnt_want_write(nd.path.mnt); |
| 2181 | if (error) |
| 2182 | goto exit3; |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 2183 | error = vfs_rmdir(nd.path.dentry->d_inode, dentry); |
Dave Hansen | 0622753 | 2008-02-15 14:37:34 -0800 | [diff] [blame] | 2184 | mnt_drop_write(nd.path.mnt); |
| 2185 | exit3: |
Dave Hansen | 6902d92 | 2006-09-30 23:29:01 -0700 | [diff] [blame] | 2186 | dput(dentry); |
| 2187 | exit2: |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 2188 | mutex_unlock(&nd.path.dentry->d_inode->i_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2189 | exit1: |
Jan Blunck | 1d957f9 | 2008-02-14 19:34:35 -0800 | [diff] [blame] | 2190 | path_put(&nd.path); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2191 | putname(name); |
| 2192 | return error; |
| 2193 | } |
| 2194 | |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 2195 | asmlinkage long sys_rmdir(const char __user *pathname) |
| 2196 | { |
| 2197 | return do_rmdir(AT_FDCWD, pathname); |
| 2198 | } |
| 2199 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2200 | int vfs_unlink(struct inode *dir, struct dentry *dentry) |
| 2201 | { |
| 2202 | int error = may_delete(dir, dentry, 0); |
| 2203 | |
| 2204 | if (error) |
| 2205 | return error; |
| 2206 | |
| 2207 | if (!dir->i_op || !dir->i_op->unlink) |
| 2208 | return -EPERM; |
| 2209 | |
| 2210 | DQUOT_INIT(dir); |
| 2211 | |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 2212 | mutex_lock(&dentry->d_inode->i_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2213 | if (d_mountpoint(dentry)) |
| 2214 | error = -EBUSY; |
| 2215 | else { |
| 2216 | error = security_inode_unlink(dir, dentry); |
| 2217 | if (!error) |
| 2218 | error = dir->i_op->unlink(dir, dentry); |
| 2219 | } |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 2220 | mutex_unlock(&dentry->d_inode->i_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2221 | |
| 2222 | /* We don't d_delete() NFS sillyrenamed files--they still exist. */ |
| 2223 | if (!error && !(dentry->d_flags & DCACHE_NFSFS_RENAMED)) { |
Jan Kara | ece9591 | 2008-02-06 01:37:13 -0800 | [diff] [blame] | 2224 | fsnotify_link_count(dentry->d_inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2225 | d_delete(dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2226 | } |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 2227 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2228 | return error; |
| 2229 | } |
| 2230 | |
| 2231 | /* |
| 2232 | * 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] | 2233 | * 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] | 2234 | * writeout happening, and we don't want to prevent access to the directory |
| 2235 | * while waiting on the I/O. |
| 2236 | */ |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 2237 | static long do_unlinkat(int dfd, const char __user *pathname) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2238 | { |
Al Viro | 2ad94ae | 2008-07-21 09:32:51 -0400 | [diff] [blame] | 2239 | int error; |
| 2240 | char *name; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2241 | struct dentry *dentry; |
| 2242 | struct nameidata nd; |
| 2243 | struct inode *inode = NULL; |
| 2244 | |
Al Viro | 2ad94ae | 2008-07-21 09:32:51 -0400 | [diff] [blame] | 2245 | error = user_path_parent(dfd, pathname, &nd, &name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2246 | if (error) |
Al Viro | 2ad94ae | 2008-07-21 09:32:51 -0400 | [diff] [blame] | 2247 | return error; |
| 2248 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2249 | error = -EISDIR; |
| 2250 | if (nd.last_type != LAST_NORM) |
| 2251 | goto exit1; |
OGAWA Hirofumi | 0612d9f | 2008-10-16 07:50:29 +0900 | [diff] [blame] | 2252 | |
| 2253 | nd.flags &= ~LOOKUP_PARENT; |
| 2254 | |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 2255 | 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] | 2256 | dentry = lookup_hash(&nd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2257 | error = PTR_ERR(dentry); |
| 2258 | if (!IS_ERR(dentry)) { |
| 2259 | /* Why not before? Because we want correct error value */ |
| 2260 | if (nd.last.name[nd.last.len]) |
| 2261 | goto slashes; |
| 2262 | inode = dentry->d_inode; |
| 2263 | if (inode) |
| 2264 | atomic_inc(&inode->i_count); |
Dave Hansen | 0622753 | 2008-02-15 14:37:34 -0800 | [diff] [blame] | 2265 | error = mnt_want_write(nd.path.mnt); |
| 2266 | if (error) |
| 2267 | goto exit2; |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 2268 | error = vfs_unlink(nd.path.dentry->d_inode, dentry); |
Dave Hansen | 0622753 | 2008-02-15 14:37:34 -0800 | [diff] [blame] | 2269 | mnt_drop_write(nd.path.mnt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2270 | exit2: |
| 2271 | dput(dentry); |
| 2272 | } |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 2273 | mutex_unlock(&nd.path.dentry->d_inode->i_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2274 | if (inode) |
| 2275 | iput(inode); /* truncate the inode here */ |
| 2276 | exit1: |
Jan Blunck | 1d957f9 | 2008-02-14 19:34:35 -0800 | [diff] [blame] | 2277 | path_put(&nd.path); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2278 | putname(name); |
| 2279 | return error; |
| 2280 | |
| 2281 | slashes: |
| 2282 | error = !dentry->d_inode ? -ENOENT : |
| 2283 | S_ISDIR(dentry->d_inode->i_mode) ? -EISDIR : -ENOTDIR; |
| 2284 | goto exit2; |
| 2285 | } |
| 2286 | |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 2287 | asmlinkage long sys_unlinkat(int dfd, const char __user *pathname, int flag) |
| 2288 | { |
| 2289 | if ((flag & ~AT_REMOVEDIR) != 0) |
| 2290 | return -EINVAL; |
| 2291 | |
| 2292 | if (flag & AT_REMOVEDIR) |
| 2293 | return do_rmdir(dfd, pathname); |
| 2294 | |
| 2295 | return do_unlinkat(dfd, pathname); |
| 2296 | } |
| 2297 | |
| 2298 | asmlinkage long sys_unlink(const char __user *pathname) |
| 2299 | { |
| 2300 | return do_unlinkat(AT_FDCWD, pathname); |
| 2301 | } |
| 2302 | |
Miklos Szeredi | db2e747 | 2008-06-24 16:50:16 +0200 | [diff] [blame] | 2303 | int vfs_symlink(struct inode *dir, struct dentry *dentry, const char *oldname) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2304 | { |
Miklos Szeredi | a95164d | 2008-07-30 15:08:48 +0200 | [diff] [blame] | 2305 | int error = may_create(dir, dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2306 | |
| 2307 | if (error) |
| 2308 | return error; |
| 2309 | |
| 2310 | if (!dir->i_op || !dir->i_op->symlink) |
| 2311 | return -EPERM; |
| 2312 | |
| 2313 | error = security_inode_symlink(dir, dentry, oldname); |
| 2314 | if (error) |
| 2315 | return error; |
| 2316 | |
| 2317 | DQUOT_INIT(dir); |
| 2318 | error = dir->i_op->symlink(dir, dentry, oldname); |
Stephen Smalley | a74574a | 2005-09-09 13:01:44 -0700 | [diff] [blame] | 2319 | if (!error) |
Amy Griffis | f38aa94 | 2005-11-03 15:57:06 +0000 | [diff] [blame] | 2320 | fsnotify_create(dir, dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2321 | return error; |
| 2322 | } |
| 2323 | |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 2324 | asmlinkage long sys_symlinkat(const char __user *oldname, |
| 2325 | int newdfd, const char __user *newname) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2326 | { |
Al Viro | 2ad94ae | 2008-07-21 09:32:51 -0400 | [diff] [blame] | 2327 | int error; |
| 2328 | char *from; |
| 2329 | char *to; |
Dave Hansen | 6902d92 | 2006-09-30 23:29:01 -0700 | [diff] [blame] | 2330 | struct dentry *dentry; |
| 2331 | struct nameidata nd; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2332 | |
| 2333 | from = getname(oldname); |
Al Viro | 2ad94ae | 2008-07-21 09:32:51 -0400 | [diff] [blame] | 2334 | if (IS_ERR(from)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2335 | return PTR_ERR(from); |
Al Viro | 2ad94ae | 2008-07-21 09:32:51 -0400 | [diff] [blame] | 2336 | |
| 2337 | error = user_path_parent(newdfd, newname, &nd, &to); |
| 2338 | if (error) |
Dave Hansen | 6902d92 | 2006-09-30 23:29:01 -0700 | [diff] [blame] | 2339 | goto out_putname; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2340 | |
Dave Hansen | 6902d92 | 2006-09-30 23:29:01 -0700 | [diff] [blame] | 2341 | dentry = lookup_create(&nd, 0); |
| 2342 | error = PTR_ERR(dentry); |
| 2343 | if (IS_ERR(dentry)) |
| 2344 | goto out_unlock; |
| 2345 | |
Dave Hansen | 75c3f29 | 2008-02-15 14:37:45 -0800 | [diff] [blame] | 2346 | error = mnt_want_write(nd.path.mnt); |
| 2347 | if (error) |
| 2348 | goto out_dput; |
Miklos Szeredi | db2e747 | 2008-06-24 16:50:16 +0200 | [diff] [blame] | 2349 | error = vfs_symlink(nd.path.dentry->d_inode, dentry, from); |
Dave Hansen | 75c3f29 | 2008-02-15 14:37:45 -0800 | [diff] [blame] | 2350 | mnt_drop_write(nd.path.mnt); |
| 2351 | out_dput: |
Dave Hansen | 6902d92 | 2006-09-30 23:29:01 -0700 | [diff] [blame] | 2352 | dput(dentry); |
| 2353 | out_unlock: |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 2354 | mutex_unlock(&nd.path.dentry->d_inode->i_mutex); |
Jan Blunck | 1d957f9 | 2008-02-14 19:34:35 -0800 | [diff] [blame] | 2355 | path_put(&nd.path); |
Dave Hansen | 6902d92 | 2006-09-30 23:29:01 -0700 | [diff] [blame] | 2356 | putname(to); |
| 2357 | out_putname: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2358 | putname(from); |
| 2359 | return error; |
| 2360 | } |
| 2361 | |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 2362 | asmlinkage long sys_symlink(const char __user *oldname, const char __user *newname) |
| 2363 | { |
| 2364 | return sys_symlinkat(oldname, AT_FDCWD, newname); |
| 2365 | } |
| 2366 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2367 | int vfs_link(struct dentry *old_dentry, struct inode *dir, struct dentry *new_dentry) |
| 2368 | { |
| 2369 | struct inode *inode = old_dentry->d_inode; |
| 2370 | int error; |
| 2371 | |
| 2372 | if (!inode) |
| 2373 | return -ENOENT; |
| 2374 | |
Miklos Szeredi | a95164d | 2008-07-30 15:08:48 +0200 | [diff] [blame] | 2375 | error = may_create(dir, new_dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2376 | if (error) |
| 2377 | return error; |
| 2378 | |
| 2379 | if (dir->i_sb != inode->i_sb) |
| 2380 | return -EXDEV; |
| 2381 | |
| 2382 | /* |
| 2383 | * A link to an append-only or immutable file cannot be created. |
| 2384 | */ |
| 2385 | if (IS_APPEND(inode) || IS_IMMUTABLE(inode)) |
| 2386 | return -EPERM; |
| 2387 | if (!dir->i_op || !dir->i_op->link) |
| 2388 | return -EPERM; |
Tetsuo Handa | 7e79eed | 2008-06-24 16:50:15 +0200 | [diff] [blame] | 2389 | if (S_ISDIR(inode->i_mode)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2390 | return -EPERM; |
| 2391 | |
| 2392 | error = security_inode_link(old_dentry, dir, new_dentry); |
| 2393 | if (error) |
| 2394 | return error; |
| 2395 | |
Tetsuo Handa | 7e79eed | 2008-06-24 16:50:15 +0200 | [diff] [blame] | 2396 | mutex_lock(&inode->i_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2397 | DQUOT_INIT(dir); |
| 2398 | error = dir->i_op->link(old_dentry, dir, new_dentry); |
Tetsuo Handa | 7e79eed | 2008-06-24 16:50:15 +0200 | [diff] [blame] | 2399 | mutex_unlock(&inode->i_mutex); |
Stephen Smalley | e31e14e | 2005-09-09 13:01:45 -0700 | [diff] [blame] | 2400 | if (!error) |
Tetsuo Handa | 7e79eed | 2008-06-24 16:50:15 +0200 | [diff] [blame] | 2401 | fsnotify_link(dir, inode, new_dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2402 | return error; |
| 2403 | } |
| 2404 | |
| 2405 | /* |
| 2406 | * Hardlinks are often used in delicate situations. We avoid |
| 2407 | * security-related surprises by not following symlinks on the |
| 2408 | * newname. --KAB |
| 2409 | * |
| 2410 | * We don't follow them on the oldname either to be compatible |
| 2411 | * with linux 2.0, and to avoid hard-linking to directories |
| 2412 | * and other special files. --ADM |
| 2413 | */ |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 2414 | asmlinkage long sys_linkat(int olddfd, const char __user *oldname, |
Ulrich Drepper | c04030e | 2006-02-24 13:04:21 -0800 | [diff] [blame] | 2415 | int newdfd, const char __user *newname, |
| 2416 | int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2417 | { |
| 2418 | struct dentry *new_dentry; |
Al Viro | 2d8f303 | 2008-07-22 09:59:21 -0400 | [diff] [blame] | 2419 | struct nameidata nd; |
| 2420 | struct path old_path; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2421 | int error; |
Al Viro | 2ad94ae | 2008-07-21 09:32:51 -0400 | [diff] [blame] | 2422 | char *to; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2423 | |
Ulrich Drepper | 45c9b11 | 2006-06-25 05:49:11 -0700 | [diff] [blame] | 2424 | if ((flags & ~AT_SYMLINK_FOLLOW) != 0) |
Ulrich Drepper | c04030e | 2006-02-24 13:04:21 -0800 | [diff] [blame] | 2425 | return -EINVAL; |
| 2426 | |
Al Viro | 2d8f303 | 2008-07-22 09:59:21 -0400 | [diff] [blame] | 2427 | error = user_path_at(olddfd, oldname, |
| 2428 | flags & AT_SYMLINK_FOLLOW ? LOOKUP_FOLLOW : 0, |
| 2429 | &old_path); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2430 | if (error) |
Al Viro | 2ad94ae | 2008-07-21 09:32:51 -0400 | [diff] [blame] | 2431 | return error; |
| 2432 | |
| 2433 | error = user_path_parent(newdfd, newname, &nd, &to); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2434 | if (error) |
| 2435 | goto out; |
| 2436 | error = -EXDEV; |
Al Viro | 2d8f303 | 2008-07-22 09:59:21 -0400 | [diff] [blame] | 2437 | if (old_path.mnt != nd.path.mnt) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2438 | goto out_release; |
| 2439 | new_dentry = lookup_create(&nd, 0); |
| 2440 | error = PTR_ERR(new_dentry); |
Dave Hansen | 6902d92 | 2006-09-30 23:29:01 -0700 | [diff] [blame] | 2441 | if (IS_ERR(new_dentry)) |
| 2442 | goto out_unlock; |
Dave Hansen | 75c3f29 | 2008-02-15 14:37:45 -0800 | [diff] [blame] | 2443 | error = mnt_want_write(nd.path.mnt); |
| 2444 | if (error) |
| 2445 | goto out_dput; |
Al Viro | 2d8f303 | 2008-07-22 09:59:21 -0400 | [diff] [blame] | 2446 | error = vfs_link(old_path.dentry, nd.path.dentry->d_inode, new_dentry); |
Dave Hansen | 75c3f29 | 2008-02-15 14:37:45 -0800 | [diff] [blame] | 2447 | mnt_drop_write(nd.path.mnt); |
| 2448 | out_dput: |
Dave Hansen | 6902d92 | 2006-09-30 23:29:01 -0700 | [diff] [blame] | 2449 | dput(new_dentry); |
| 2450 | out_unlock: |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 2451 | mutex_unlock(&nd.path.dentry->d_inode->i_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2452 | out_release: |
Jan Blunck | 1d957f9 | 2008-02-14 19:34:35 -0800 | [diff] [blame] | 2453 | path_put(&nd.path); |
Al Viro | 2ad94ae | 2008-07-21 09:32:51 -0400 | [diff] [blame] | 2454 | putname(to); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2455 | out: |
Al Viro | 2d8f303 | 2008-07-22 09:59:21 -0400 | [diff] [blame] | 2456 | path_put(&old_path); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2457 | |
| 2458 | return error; |
| 2459 | } |
| 2460 | |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 2461 | asmlinkage long sys_link(const char __user *oldname, const char __user *newname) |
| 2462 | { |
Ulrich Drepper | c04030e | 2006-02-24 13:04:21 -0800 | [diff] [blame] | 2463 | return sys_linkat(AT_FDCWD, oldname, AT_FDCWD, newname, 0); |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 2464 | } |
| 2465 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2466 | /* |
| 2467 | * The worst of all namespace operations - renaming directory. "Perverted" |
| 2468 | * doesn't even start to describe it. Somebody in UCB had a heck of a trip... |
| 2469 | * Problems: |
| 2470 | * a) we can get into loop creation. Check is done in is_subdir(). |
| 2471 | * b) race potential - two innocent renames can create a loop together. |
| 2472 | * 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] | 2473 | * 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] | 2474 | * story. |
| 2475 | * 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] | 2476 | * 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] | 2477 | * whether the target exists). Solution: try to be smart with locking |
| 2478 | * 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] | 2479 | * 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] | 2480 | * move will be locked. Thus we can rank directories by the tree |
| 2481 | * (ancestors first) and rank all non-directories after them. |
| 2482 | * That works since everybody except rename does "lock parent, lookup, |
Arjan van de Ven | a11f3a0 | 2006-03-23 03:00:33 -0800 | [diff] [blame] | 2483 | * lock child" and rename is under ->s_vfs_rename_mutex. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2484 | * HOWEVER, it relies on the assumption that any object with ->lookup() |
| 2485 | * has no more than 1 dentry. If "hybrid" objects will ever appear, |
| 2486 | * we'd better make sure that there's no link(2) for them. |
| 2487 | * d) some filesystems don't support opened-but-unlinked directories, |
| 2488 | * either because of layout or because they are not ready to deal with |
| 2489 | * all cases correctly. The latter will be fixed (taking this sort of |
| 2490 | * stuff into VFS), but the former is not going away. Solution: the same |
| 2491 | * trick as in rmdir(). |
| 2492 | * 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] | 2493 | * 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] | 2494 | * in the fhandle_to_dentry code. [FIXME - current nfsfh.c relies on |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 2495 | * ->i_mutex on parents, which works but leads to some truely excessive |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2496 | * locking]. |
| 2497 | */ |
Adrian Bunk | 75c96f8 | 2005-05-05 16:16:09 -0700 | [diff] [blame] | 2498 | static int vfs_rename_dir(struct inode *old_dir, struct dentry *old_dentry, |
| 2499 | struct inode *new_dir, struct dentry *new_dentry) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2500 | { |
| 2501 | int error = 0; |
| 2502 | struct inode *target; |
| 2503 | |
| 2504 | /* |
| 2505 | * If we are going to change the parent - check write permissions, |
| 2506 | * we'll need to flip '..'. |
| 2507 | */ |
| 2508 | if (new_dir != old_dir) { |
Al Viro | f419a2e | 2008-07-22 00:07:17 -0400 | [diff] [blame] | 2509 | error = inode_permission(old_dentry->d_inode, MAY_WRITE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2510 | if (error) |
| 2511 | return error; |
| 2512 | } |
| 2513 | |
| 2514 | error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry); |
| 2515 | if (error) |
| 2516 | return error; |
| 2517 | |
| 2518 | target = new_dentry->d_inode; |
| 2519 | if (target) { |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 2520 | mutex_lock(&target->i_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2521 | dentry_unhash(new_dentry); |
| 2522 | } |
| 2523 | if (d_mountpoint(old_dentry)||d_mountpoint(new_dentry)) |
| 2524 | error = -EBUSY; |
| 2525 | else |
| 2526 | error = old_dir->i_op->rename(old_dir, old_dentry, new_dir, new_dentry); |
| 2527 | if (target) { |
| 2528 | if (!error) |
| 2529 | target->i_flags |= S_DEAD; |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 2530 | mutex_unlock(&target->i_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2531 | if (d_unhashed(new_dentry)) |
| 2532 | d_rehash(new_dentry); |
| 2533 | dput(new_dentry); |
| 2534 | } |
Stephen Smalley | e31e14e | 2005-09-09 13:01:45 -0700 | [diff] [blame] | 2535 | if (!error) |
Mark Fasheh | 349457c | 2006-09-08 14:22:21 -0700 | [diff] [blame] | 2536 | if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE)) |
| 2537 | d_move(old_dentry,new_dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2538 | return error; |
| 2539 | } |
| 2540 | |
Adrian Bunk | 75c96f8 | 2005-05-05 16:16:09 -0700 | [diff] [blame] | 2541 | static int vfs_rename_other(struct inode *old_dir, struct dentry *old_dentry, |
| 2542 | struct inode *new_dir, struct dentry *new_dentry) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2543 | { |
| 2544 | struct inode *target; |
| 2545 | int error; |
| 2546 | |
| 2547 | error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry); |
| 2548 | if (error) |
| 2549 | return error; |
| 2550 | |
| 2551 | dget(new_dentry); |
| 2552 | target = new_dentry->d_inode; |
| 2553 | if (target) |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 2554 | mutex_lock(&target->i_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2555 | if (d_mountpoint(old_dentry)||d_mountpoint(new_dentry)) |
| 2556 | error = -EBUSY; |
| 2557 | else |
| 2558 | error = old_dir->i_op->rename(old_dir, old_dentry, new_dir, new_dentry); |
| 2559 | if (!error) { |
Mark Fasheh | 349457c | 2006-09-08 14:22:21 -0700 | [diff] [blame] | 2560 | 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] | 2561 | d_move(old_dentry, new_dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2562 | } |
| 2563 | if (target) |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 2564 | mutex_unlock(&target->i_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2565 | dput(new_dentry); |
| 2566 | return error; |
| 2567 | } |
| 2568 | |
| 2569 | int vfs_rename(struct inode *old_dir, struct dentry *old_dentry, |
| 2570 | struct inode *new_dir, struct dentry *new_dentry) |
| 2571 | { |
| 2572 | int error; |
| 2573 | int is_dir = S_ISDIR(old_dentry->d_inode->i_mode); |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 2574 | const char *old_name; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2575 | |
| 2576 | if (old_dentry->d_inode == new_dentry->d_inode) |
| 2577 | return 0; |
| 2578 | |
| 2579 | error = may_delete(old_dir, old_dentry, is_dir); |
| 2580 | if (error) |
| 2581 | return error; |
| 2582 | |
| 2583 | if (!new_dentry->d_inode) |
Miklos Szeredi | a95164d | 2008-07-30 15:08:48 +0200 | [diff] [blame] | 2584 | error = may_create(new_dir, new_dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2585 | else |
| 2586 | error = may_delete(new_dir, new_dentry, is_dir); |
| 2587 | if (error) |
| 2588 | return error; |
| 2589 | |
| 2590 | if (!old_dir->i_op || !old_dir->i_op->rename) |
| 2591 | return -EPERM; |
| 2592 | |
| 2593 | DQUOT_INIT(old_dir); |
| 2594 | DQUOT_INIT(new_dir); |
| 2595 | |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 2596 | old_name = fsnotify_oldname_init(old_dentry->d_name.name); |
| 2597 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2598 | if (is_dir) |
| 2599 | error = vfs_rename_dir(old_dir,old_dentry,new_dir,new_dentry); |
| 2600 | else |
| 2601 | error = vfs_rename_other(old_dir,old_dentry,new_dir,new_dentry); |
| 2602 | if (!error) { |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 2603 | const char *new_name = old_dentry->d_name.name; |
John McCutchan | 89204c4 | 2005-08-15 12:13:28 -0400 | [diff] [blame] | 2604 | fsnotify_move(old_dir, new_dir, old_name, new_name, is_dir, |
Al Viro | 5a190ae | 2007-06-07 12:19:32 -0400 | [diff] [blame] | 2605 | new_dentry->d_inode, old_dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2606 | } |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 2607 | fsnotify_oldname_free(old_name); |
| 2608 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2609 | return error; |
| 2610 | } |
| 2611 | |
Al Viro | 2ad94ae | 2008-07-21 09:32:51 -0400 | [diff] [blame] | 2612 | asmlinkage long sys_renameat(int olddfd, const char __user *oldname, |
| 2613 | int newdfd, const char __user *newname) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2614 | { |
Al Viro | 2ad94ae | 2008-07-21 09:32:51 -0400 | [diff] [blame] | 2615 | struct dentry *old_dir, *new_dir; |
| 2616 | struct dentry *old_dentry, *new_dentry; |
| 2617 | struct dentry *trap; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2618 | struct nameidata oldnd, newnd; |
Al Viro | 2ad94ae | 2008-07-21 09:32:51 -0400 | [diff] [blame] | 2619 | char *from; |
| 2620 | char *to; |
| 2621 | int error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2622 | |
Al Viro | 2ad94ae | 2008-07-21 09:32:51 -0400 | [diff] [blame] | 2623 | error = user_path_parent(olddfd, oldname, &oldnd, &from); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2624 | if (error) |
| 2625 | goto exit; |
| 2626 | |
Al Viro | 2ad94ae | 2008-07-21 09:32:51 -0400 | [diff] [blame] | 2627 | error = user_path_parent(newdfd, newname, &newnd, &to); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2628 | if (error) |
| 2629 | goto exit1; |
| 2630 | |
| 2631 | error = -EXDEV; |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 2632 | if (oldnd.path.mnt != newnd.path.mnt) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2633 | goto exit2; |
| 2634 | |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 2635 | old_dir = oldnd.path.dentry; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2636 | error = -EBUSY; |
| 2637 | if (oldnd.last_type != LAST_NORM) |
| 2638 | goto exit2; |
| 2639 | |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 2640 | new_dir = newnd.path.dentry; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2641 | if (newnd.last_type != LAST_NORM) |
| 2642 | goto exit2; |
| 2643 | |
OGAWA Hirofumi | 0612d9f | 2008-10-16 07:50:29 +0900 | [diff] [blame] | 2644 | oldnd.flags &= ~LOOKUP_PARENT; |
| 2645 | newnd.flags &= ~LOOKUP_PARENT; |
OGAWA Hirofumi | 4e9ed2f | 2008-10-16 07:50:29 +0900 | [diff] [blame] | 2646 | newnd.flags |= LOOKUP_RENAME_TARGET; |
OGAWA Hirofumi | 0612d9f | 2008-10-16 07:50:29 +0900 | [diff] [blame] | 2647 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2648 | trap = lock_rename(new_dir, old_dir); |
| 2649 | |
Christoph Hellwig | 49705b7 | 2005-11-08 21:35:06 -0800 | [diff] [blame] | 2650 | old_dentry = lookup_hash(&oldnd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2651 | error = PTR_ERR(old_dentry); |
| 2652 | if (IS_ERR(old_dentry)) |
| 2653 | goto exit3; |
| 2654 | /* source must exist */ |
| 2655 | error = -ENOENT; |
| 2656 | if (!old_dentry->d_inode) |
| 2657 | goto exit4; |
| 2658 | /* unless the source is a directory trailing slashes give -ENOTDIR */ |
| 2659 | if (!S_ISDIR(old_dentry->d_inode->i_mode)) { |
| 2660 | error = -ENOTDIR; |
| 2661 | if (oldnd.last.name[oldnd.last.len]) |
| 2662 | goto exit4; |
| 2663 | if (newnd.last.name[newnd.last.len]) |
| 2664 | goto exit4; |
| 2665 | } |
| 2666 | /* source should not be ancestor of target */ |
| 2667 | error = -EINVAL; |
| 2668 | if (old_dentry == trap) |
| 2669 | goto exit4; |
Christoph Hellwig | 49705b7 | 2005-11-08 21:35:06 -0800 | [diff] [blame] | 2670 | new_dentry = lookup_hash(&newnd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2671 | error = PTR_ERR(new_dentry); |
| 2672 | if (IS_ERR(new_dentry)) |
| 2673 | goto exit4; |
| 2674 | /* target should not be an ancestor of source */ |
| 2675 | error = -ENOTEMPTY; |
| 2676 | if (new_dentry == trap) |
| 2677 | goto exit5; |
| 2678 | |
Dave Hansen | 9079b1e | 2008-02-15 14:37:49 -0800 | [diff] [blame] | 2679 | error = mnt_want_write(oldnd.path.mnt); |
| 2680 | if (error) |
| 2681 | goto exit5; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2682 | error = vfs_rename(old_dir->d_inode, old_dentry, |
| 2683 | new_dir->d_inode, new_dentry); |
Dave Hansen | 9079b1e | 2008-02-15 14:37:49 -0800 | [diff] [blame] | 2684 | mnt_drop_write(oldnd.path.mnt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2685 | exit5: |
| 2686 | dput(new_dentry); |
| 2687 | exit4: |
| 2688 | dput(old_dentry); |
| 2689 | exit3: |
| 2690 | unlock_rename(new_dir, old_dir); |
| 2691 | exit2: |
Jan Blunck | 1d957f9 | 2008-02-14 19:34:35 -0800 | [diff] [blame] | 2692 | path_put(&newnd.path); |
Al Viro | 2ad94ae | 2008-07-21 09:32:51 -0400 | [diff] [blame] | 2693 | putname(to); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2694 | exit1: |
Jan Blunck | 1d957f9 | 2008-02-14 19:34:35 -0800 | [diff] [blame] | 2695 | path_put(&oldnd.path); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2696 | putname(from); |
Al Viro | 2ad94ae | 2008-07-21 09:32:51 -0400 | [diff] [blame] | 2697 | exit: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2698 | return error; |
| 2699 | } |
| 2700 | |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 2701 | asmlinkage long sys_rename(const char __user *oldname, const char __user *newname) |
| 2702 | { |
| 2703 | return sys_renameat(AT_FDCWD, oldname, AT_FDCWD, newname); |
| 2704 | } |
| 2705 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2706 | int vfs_readlink(struct dentry *dentry, char __user *buffer, int buflen, const char *link) |
| 2707 | { |
| 2708 | int len; |
| 2709 | |
| 2710 | len = PTR_ERR(link); |
| 2711 | if (IS_ERR(link)) |
| 2712 | goto out; |
| 2713 | |
| 2714 | len = strlen(link); |
| 2715 | if (len > (unsigned) buflen) |
| 2716 | len = buflen; |
| 2717 | if (copy_to_user(buffer, link, len)) |
| 2718 | len = -EFAULT; |
| 2719 | out: |
| 2720 | return len; |
| 2721 | } |
| 2722 | |
| 2723 | /* |
| 2724 | * A helper for ->readlink(). This should be used *ONLY* for symlinks that |
| 2725 | * have ->follow_link() touching nd only in nd_set_link(). Using (or not |
| 2726 | * using) it for any given inode is up to filesystem. |
| 2727 | */ |
| 2728 | int generic_readlink(struct dentry *dentry, char __user *buffer, int buflen) |
| 2729 | { |
| 2730 | struct nameidata nd; |
Linus Torvalds | cc314ee | 2005-08-19 18:02:56 -0700 | [diff] [blame] | 2731 | void *cookie; |
Marcin Slusarz | 694a176 | 2008-06-09 16:40:37 -0700 | [diff] [blame] | 2732 | int res; |
Linus Torvalds | cc314ee | 2005-08-19 18:02:56 -0700 | [diff] [blame] | 2733 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2734 | nd.depth = 0; |
Linus Torvalds | cc314ee | 2005-08-19 18:02:56 -0700 | [diff] [blame] | 2735 | cookie = dentry->d_inode->i_op->follow_link(dentry, &nd); |
Marcin Slusarz | 694a176 | 2008-06-09 16:40:37 -0700 | [diff] [blame] | 2736 | if (IS_ERR(cookie)) |
| 2737 | return PTR_ERR(cookie); |
| 2738 | |
| 2739 | res = vfs_readlink(dentry, buffer, buflen, nd_get_link(&nd)); |
| 2740 | if (dentry->d_inode->i_op->put_link) |
| 2741 | dentry->d_inode->i_op->put_link(dentry, &nd, cookie); |
| 2742 | return res; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2743 | } |
| 2744 | |
| 2745 | int vfs_follow_link(struct nameidata *nd, const char *link) |
| 2746 | { |
| 2747 | return __vfs_follow_link(nd, link); |
| 2748 | } |
| 2749 | |
| 2750 | /* get the link contents into pagecache */ |
| 2751 | static char *page_getlink(struct dentry * dentry, struct page **ppage) |
| 2752 | { |
| 2753 | struct page * page; |
| 2754 | struct address_space *mapping = dentry->d_inode->i_mapping; |
Pekka Enberg | 090d2b1 | 2006-06-23 02:05:08 -0700 | [diff] [blame] | 2755 | page = read_mapping_page(mapping, 0, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2756 | if (IS_ERR(page)) |
Nick Piggin | 6fe6900 | 2007-05-06 14:49:04 -0700 | [diff] [blame] | 2757 | return (char*)page; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2758 | *ppage = page; |
| 2759 | return kmap(page); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2760 | } |
| 2761 | |
| 2762 | int page_readlink(struct dentry *dentry, char __user *buffer, int buflen) |
| 2763 | { |
| 2764 | struct page *page = NULL; |
| 2765 | char *s = page_getlink(dentry, &page); |
| 2766 | int res = vfs_readlink(dentry,buffer,buflen,s); |
| 2767 | if (page) { |
| 2768 | kunmap(page); |
| 2769 | page_cache_release(page); |
| 2770 | } |
| 2771 | return res; |
| 2772 | } |
| 2773 | |
Linus Torvalds | cc314ee | 2005-08-19 18:02:56 -0700 | [diff] [blame] | 2774 | void *page_follow_link_light(struct dentry *dentry, struct nameidata *nd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2775 | { |
Linus Torvalds | cc314ee | 2005-08-19 18:02:56 -0700 | [diff] [blame] | 2776 | struct page *page = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2777 | nd_set_link(nd, page_getlink(dentry, &page)); |
Linus Torvalds | cc314ee | 2005-08-19 18:02:56 -0700 | [diff] [blame] | 2778 | return page; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2779 | } |
| 2780 | |
Linus Torvalds | cc314ee | 2005-08-19 18:02:56 -0700 | [diff] [blame] | 2781 | void page_put_link(struct dentry *dentry, struct nameidata *nd, void *cookie) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2782 | { |
Linus Torvalds | cc314ee | 2005-08-19 18:02:56 -0700 | [diff] [blame] | 2783 | struct page *page = cookie; |
| 2784 | |
| 2785 | if (page) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2786 | kunmap(page); |
| 2787 | page_cache_release(page); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2788 | } |
| 2789 | } |
| 2790 | |
Kirill Korotaev | 0adb25d | 2006-03-11 03:27:13 -0800 | [diff] [blame] | 2791 | int __page_symlink(struct inode *inode, const char *symname, int len, |
| 2792 | gfp_t gfp_mask) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2793 | { |
| 2794 | struct address_space *mapping = inode->i_mapping; |
Kirill Korotaev | 0adb25d | 2006-03-11 03:27:13 -0800 | [diff] [blame] | 2795 | struct page *page; |
Nick Piggin | afddba4 | 2007-10-16 01:25:01 -0700 | [diff] [blame] | 2796 | void *fsdata; |
Dmitriy Monakhov | beb497a | 2007-02-16 01:27:18 -0800 | [diff] [blame] | 2797 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2798 | char *kaddr; |
| 2799 | |
NeilBrown | 7e53cac | 2006-03-25 03:07:57 -0800 | [diff] [blame] | 2800 | retry: |
Nick Piggin | afddba4 | 2007-10-16 01:25:01 -0700 | [diff] [blame] | 2801 | err = pagecache_write_begin(NULL, mapping, 0, len-1, |
| 2802 | AOP_FLAG_UNINTERRUPTIBLE, &page, &fsdata); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2803 | if (err) |
Nick Piggin | afddba4 | 2007-10-16 01:25:01 -0700 | [diff] [blame] | 2804 | goto fail; |
| 2805 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2806 | kaddr = kmap_atomic(page, KM_USER0); |
| 2807 | memcpy(kaddr, symname, len-1); |
| 2808 | kunmap_atomic(kaddr, KM_USER0); |
Nick Piggin | afddba4 | 2007-10-16 01:25:01 -0700 | [diff] [blame] | 2809 | |
| 2810 | err = pagecache_write_end(NULL, mapping, 0, len-1, len-1, |
| 2811 | page, fsdata); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2812 | if (err < 0) |
| 2813 | goto fail; |
Nick Piggin | afddba4 | 2007-10-16 01:25:01 -0700 | [diff] [blame] | 2814 | if (err < len-1) |
| 2815 | goto retry; |
| 2816 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2817 | mark_inode_dirty(inode); |
| 2818 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2819 | fail: |
| 2820 | return err; |
| 2821 | } |
| 2822 | |
Kirill Korotaev | 0adb25d | 2006-03-11 03:27:13 -0800 | [diff] [blame] | 2823 | int page_symlink(struct inode *inode, const char *symname, int len) |
| 2824 | { |
| 2825 | return __page_symlink(inode, symname, len, |
| 2826 | mapping_gfp_mask(inode->i_mapping)); |
| 2827 | } |
| 2828 | |
Arjan van de Ven | 92e1d5b | 2007-02-12 00:55:39 -0800 | [diff] [blame] | 2829 | const struct inode_operations page_symlink_inode_operations = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2830 | .readlink = generic_readlink, |
| 2831 | .follow_link = page_follow_link_light, |
| 2832 | .put_link = page_put_link, |
| 2833 | }; |
| 2834 | |
Al Viro | 2d8f303 | 2008-07-22 09:59:21 -0400 | [diff] [blame] | 2835 | EXPORT_SYMBOL(user_path_at); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2836 | EXPORT_SYMBOL(follow_down); |
| 2837 | EXPORT_SYMBOL(follow_up); |
| 2838 | EXPORT_SYMBOL(get_write_access); /* binfmt_aout */ |
| 2839 | EXPORT_SYMBOL(getname); |
| 2840 | EXPORT_SYMBOL(lock_rename); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2841 | EXPORT_SYMBOL(lookup_one_len); |
| 2842 | EXPORT_SYMBOL(page_follow_link_light); |
| 2843 | EXPORT_SYMBOL(page_put_link); |
| 2844 | EXPORT_SYMBOL(page_readlink); |
Kirill Korotaev | 0adb25d | 2006-03-11 03:27:13 -0800 | [diff] [blame] | 2845 | EXPORT_SYMBOL(__page_symlink); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2846 | EXPORT_SYMBOL(page_symlink); |
| 2847 | EXPORT_SYMBOL(page_symlink_inode_operations); |
| 2848 | EXPORT_SYMBOL(path_lookup); |
Al Viro | d181146 | 2008-08-02 00:49:18 -0400 | [diff] [blame] | 2849 | EXPORT_SYMBOL(kern_path); |
Josef 'Jeff' Sipek | 16f1820 | 2007-07-19 01:48:18 -0700 | [diff] [blame] | 2850 | EXPORT_SYMBOL(vfs_path_lookup); |
Al Viro | f419a2e | 2008-07-22 00:07:17 -0400 | [diff] [blame] | 2851 | EXPORT_SYMBOL(inode_permission); |
Christoph Hellwig | e4543ed | 2005-11-08 21:35:04 -0800 | [diff] [blame] | 2852 | EXPORT_SYMBOL(vfs_permission); |
Christoph Hellwig | 8c744fb | 2005-11-08 21:35:04 -0800 | [diff] [blame] | 2853 | EXPORT_SYMBOL(file_permission); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2854 | EXPORT_SYMBOL(unlock_rename); |
| 2855 | EXPORT_SYMBOL(vfs_create); |
| 2856 | EXPORT_SYMBOL(vfs_follow_link); |
| 2857 | EXPORT_SYMBOL(vfs_link); |
| 2858 | EXPORT_SYMBOL(vfs_mkdir); |
| 2859 | EXPORT_SYMBOL(vfs_mknod); |
| 2860 | EXPORT_SYMBOL(generic_permission); |
| 2861 | EXPORT_SYMBOL(vfs_readlink); |
| 2862 | EXPORT_SYMBOL(vfs_rename); |
| 2863 | EXPORT_SYMBOL(vfs_rmdir); |
| 2864 | EXPORT_SYMBOL(vfs_symlink); |
| 2865 | EXPORT_SYMBOL(vfs_unlink); |
| 2866 | EXPORT_SYMBOL(dentry_unhash); |
| 2867 | EXPORT_SYMBOL(generic_readlink); |