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