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> |
Paul Gortmaker | 630d9c4 | 2011-11-16 23:57:37 -0500 | [diff] [blame] | 18 | #include <linux/export.h> |
David S. Miller | 4469690 | 2012-05-23 20:12:50 -0700 | [diff] [blame] | 19 | #include <linux/kernel.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | #include <linux/slab.h> |
| 21 | #include <linux/fs.h> |
| 22 | #include <linux/namei.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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> |
Mimi Zohar | 6146f0d | 2009-02-04 09:06:57 -0500 | [diff] [blame] | 27 | #include <linux/ima.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | #include <linux/syscalls.h> |
| 29 | #include <linux/mount.h> |
| 30 | #include <linux/audit.h> |
Randy Dunlap | 16f7e0f | 2006-01-11 12:17:46 -0800 | [diff] [blame] | 31 | #include <linux/capability.h> |
Trond Myklebust | 834f2a4 | 2005-10-18 14:20:16 -0700 | [diff] [blame] | 32 | #include <linux/file.h> |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 33 | #include <linux/fcntl.h> |
Serge E. Hallyn | 08ce5f1 | 2008-04-29 01:00:10 -0700 | [diff] [blame] | 34 | #include <linux/device_cgroup.h> |
Al Viro | 5ad4e53 | 2009-03-29 19:50:06 -0400 | [diff] [blame] | 35 | #include <linux/fs_struct.h> |
Linus Torvalds | e77819e | 2011-07-22 19:30:19 -0700 | [diff] [blame] | 36 | #include <linux/posix_acl.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | #include <asm/uaccess.h> |
| 38 | |
Eric Paris | e81e3f4 | 2009-12-04 15:47:36 -0500 | [diff] [blame] | 39 | #include "internal.h" |
Al Viro | c710536 | 2011-11-24 18:22:03 -0500 | [diff] [blame] | 40 | #include "mount.h" |
Eric Paris | e81e3f4 | 2009-12-04 15:47:36 -0500 | [diff] [blame] | 41 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | /* [Feb-1997 T. Schoebel-Theuer] |
| 43 | * Fundamental changes in the pathname lookup mechanisms (namei) |
| 44 | * were necessary because of omirr. The reason is that omirr needs |
| 45 | * to know the _real_ pathname, not the user-supplied one, in case |
| 46 | * of symlinks (and also when transname replacements occur). |
| 47 | * |
| 48 | * The new code replaces the old recursive symlink resolution with |
| 49 | * an iterative one (in case of non-nested symlink chains). It does |
| 50 | * this with calls to <fs>_follow_link(). |
| 51 | * As a side effect, dir_namei(), _namei() and follow_link() are now |
| 52 | * replaced with a single function lookup_dentry() that can handle all |
| 53 | * the special cases of the former code. |
| 54 | * |
| 55 | * With the new dcache, the pathname is stored at each inode, at least as |
| 56 | * long as the refcount of the inode is positive. As a side effect, the |
| 57 | * size of the dcache depends on the inode cache and thus is dynamic. |
| 58 | * |
| 59 | * [29-Apr-1998 C. Scott Ananian] Updated above description of symlink |
| 60 | * resolution to correspond with current state of the code. |
| 61 | * |
| 62 | * Note that the symlink resolution is not *completely* iterative. |
| 63 | * There is still a significant amount of tail- and mid- recursion in |
| 64 | * the algorithm. Also, note that <fs>_readlink() is not used in |
| 65 | * lookup_dentry(): lookup_dentry() on the result of <fs>_readlink() |
| 66 | * may return different results than <fs>_follow_link(). Many virtual |
| 67 | * filesystems (including /proc) exhibit this behavior. |
| 68 | */ |
| 69 | |
| 70 | /* [24-Feb-97 T. Schoebel-Theuer] Side effects caused by new implementation: |
| 71 | * New symlink semantics: when open() is called with flags O_CREAT | O_EXCL |
| 72 | * and the name already exists in form of a symlink, try to create the new |
| 73 | * name indicated by the symlink. The old code always complained that the |
| 74 | * name already exists, due to not following the symlink even if its target |
| 75 | * is nonexistent. The new semantics affects also mknod() and link() when |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 76 | * the name is a symlink pointing to a non-existent name. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | * |
| 78 | * I don't know which semantics is the right one, since I have no access |
| 79 | * to standards. But I found by trial that HP-UX 9.0 has the full "new" |
| 80 | * semantics implemented, while SunOS 4.1.1 and Solaris (SunOS 5.4) have the |
| 81 | * "old" one. Personally, I think the new semantics is much more logical. |
| 82 | * Note that "ln old new" where "new" is a symlink pointing to a non-existing |
| 83 | * file does succeed in both HP-UX and SunOs, but not in Solaris |
| 84 | * and in the old Linux semantics. |
| 85 | */ |
| 86 | |
| 87 | /* [16-Dec-97 Kevin Buhr] For security reasons, we change some symlink |
| 88 | * semantics. See the comments in "open_namei" and "do_link" below. |
| 89 | * |
| 90 | * [10-Sep-98 Alan Modra] Another symlink change. |
| 91 | */ |
| 92 | |
| 93 | /* [Feb-Apr 2000 AV] Complete rewrite. Rules for symlinks: |
| 94 | * inside the path - always follow. |
| 95 | * in the last component in creation/removal/renaming - never follow. |
| 96 | * if LOOKUP_FOLLOW passed - follow. |
| 97 | * if the pathname has trailing slashes - follow. |
| 98 | * otherwise - don't follow. |
| 99 | * (applied in that order). |
| 100 | * |
| 101 | * [Jun 2000 AV] Inconsistent behaviour of open() in case if flags==O_CREAT |
| 102 | * restored for 2.4. This is the last surviving part of old 4.2BSD bug. |
| 103 | * During the 2.4 we need to fix the userland stuff depending on it - |
| 104 | * hopefully we will be able to get rid of that wart in 2.5. So far only |
| 105 | * XEmacs seems to be relying on it... |
| 106 | */ |
| 107 | /* |
| 108 | * [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] | 109 | * 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] | 110 | * any extra contention... |
| 111 | */ |
| 112 | |
| 113 | /* In order to reduce some races, while at the same time doing additional |
| 114 | * checking and hopefully speeding things up, we copy filenames to the |
| 115 | * kernel data space before using them.. |
| 116 | * |
| 117 | * POSIX.1 2.4: an empty pathname is invalid (ENOENT). |
| 118 | * PATH_MAX includes the nul terminator --RR. |
| 119 | */ |
Andy Whitcroft | 1fa1e7f | 2011-11-02 09:44:39 +0100 | [diff] [blame] | 120 | static char *getname_flags(const char __user *filename, int flags, int *empty) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 121 | { |
Linus Torvalds | 3f9f0aa | 2012-04-28 14:38:32 -0700 | [diff] [blame] | 122 | char *result = __getname(), *err; |
| 123 | int len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | |
Linus Torvalds | 3f9f0aa | 2012-04-28 14:38:32 -0700 | [diff] [blame] | 125 | if (unlikely(!result)) |
Eric Paris | 4043cde | 2012-01-03 14:23:08 -0500 | [diff] [blame] | 126 | return ERR_PTR(-ENOMEM); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | |
Linus Torvalds | 3f9f0aa | 2012-04-28 14:38:32 -0700 | [diff] [blame] | 128 | len = strncpy_from_user(result, filename, PATH_MAX); |
| 129 | err = ERR_PTR(len); |
| 130 | if (unlikely(len < 0)) |
| 131 | goto error; |
| 132 | |
| 133 | /* The empty path is special. */ |
| 134 | if (unlikely(!len)) { |
| 135 | if (empty) |
Eric Paris | 4043cde | 2012-01-03 14:23:08 -0500 | [diff] [blame] | 136 | *empty = 1; |
Linus Torvalds | 3f9f0aa | 2012-04-28 14:38:32 -0700 | [diff] [blame] | 137 | err = ERR_PTR(-ENOENT); |
| 138 | if (!(flags & LOOKUP_EMPTY)) |
| 139 | goto error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 140 | } |
Linus Torvalds | 3f9f0aa | 2012-04-28 14:38:32 -0700 | [diff] [blame] | 141 | |
| 142 | err = ERR_PTR(-ENAMETOOLONG); |
| 143 | if (likely(len < PATH_MAX)) { |
| 144 | audit_getname(result); |
| 145 | return result; |
| 146 | } |
| 147 | |
| 148 | error: |
| 149 | __putname(result); |
| 150 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | } |
| 152 | |
Al Viro | f52e0c1 | 2011-03-14 18:56:51 -0400 | [diff] [blame] | 153 | char *getname(const char __user * filename) |
| 154 | { |
Linus Torvalds | f7493e5 | 2012-03-22 16:10:40 -0700 | [diff] [blame] | 155 | return getname_flags(filename, 0, NULL); |
Al Viro | f52e0c1 | 2011-03-14 18:56:51 -0400 | [diff] [blame] | 156 | } |
| 157 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 158 | #ifdef CONFIG_AUDITSYSCALL |
| 159 | void putname(const char *name) |
| 160 | { |
Al Viro | 5ac3a9c | 2006-07-16 06:38:45 -0400 | [diff] [blame] | 161 | if (unlikely(!audit_dummy_context())) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 162 | audit_putname(name); |
| 163 | else |
| 164 | __putname(name); |
| 165 | } |
| 166 | EXPORT_SYMBOL(putname); |
| 167 | #endif |
| 168 | |
Linus Torvalds | e77819e | 2011-07-22 19:30:19 -0700 | [diff] [blame] | 169 | static int check_acl(struct inode *inode, int mask) |
| 170 | { |
Linus Torvalds | 84635d6 | 2011-07-25 22:47:03 -0700 | [diff] [blame] | 171 | #ifdef CONFIG_FS_POSIX_ACL |
Linus Torvalds | e77819e | 2011-07-22 19:30:19 -0700 | [diff] [blame] | 172 | struct posix_acl *acl; |
| 173 | |
Linus Torvalds | e77819e | 2011-07-22 19:30:19 -0700 | [diff] [blame] | 174 | if (mask & MAY_NOT_BLOCK) { |
Al Viro | 3567866 | 2011-08-02 21:32:13 -0400 | [diff] [blame] | 175 | acl = get_cached_acl_rcu(inode, ACL_TYPE_ACCESS); |
| 176 | if (!acl) |
Linus Torvalds | e77819e | 2011-07-22 19:30:19 -0700 | [diff] [blame] | 177 | return -EAGAIN; |
Al Viro | 3567866 | 2011-08-02 21:32:13 -0400 | [diff] [blame] | 178 | /* no ->get_acl() calls in RCU mode... */ |
| 179 | if (acl == ACL_NOT_CACHED) |
| 180 | return -ECHILD; |
Ari Savolainen | 206b1d0 | 2011-08-06 19:43:07 +0300 | [diff] [blame] | 181 | return posix_acl_permission(inode, acl, mask & ~MAY_NOT_BLOCK); |
Linus Torvalds | e77819e | 2011-07-22 19:30:19 -0700 | [diff] [blame] | 182 | } |
| 183 | |
| 184 | acl = get_cached_acl(inode, ACL_TYPE_ACCESS); |
| 185 | |
| 186 | /* |
Christoph Hellwig | 4e34e71 | 2011-07-23 17:37:31 +0200 | [diff] [blame] | 187 | * A filesystem can force a ACL callback by just never filling the |
| 188 | * ACL cache. But normally you'd fill the cache either at inode |
| 189 | * instantiation time, or on the first ->get_acl call. |
Linus Torvalds | e77819e | 2011-07-22 19:30:19 -0700 | [diff] [blame] | 190 | * |
Christoph Hellwig | 4e34e71 | 2011-07-23 17:37:31 +0200 | [diff] [blame] | 191 | * If the filesystem doesn't have a get_acl() function at all, we'll |
| 192 | * just create the negative cache entry. |
Linus Torvalds | e77819e | 2011-07-22 19:30:19 -0700 | [diff] [blame] | 193 | */ |
| 194 | if (acl == ACL_NOT_CACHED) { |
Christoph Hellwig | 4e34e71 | 2011-07-23 17:37:31 +0200 | [diff] [blame] | 195 | if (inode->i_op->get_acl) { |
| 196 | acl = inode->i_op->get_acl(inode, ACL_TYPE_ACCESS); |
| 197 | if (IS_ERR(acl)) |
| 198 | return PTR_ERR(acl); |
| 199 | } else { |
| 200 | set_cached_acl(inode, ACL_TYPE_ACCESS, NULL); |
| 201 | return -EAGAIN; |
| 202 | } |
Linus Torvalds | e77819e | 2011-07-22 19:30:19 -0700 | [diff] [blame] | 203 | } |
| 204 | |
| 205 | if (acl) { |
| 206 | int error = posix_acl_permission(inode, acl, mask); |
| 207 | posix_acl_release(acl); |
| 208 | return error; |
| 209 | } |
Linus Torvalds | 84635d6 | 2011-07-25 22:47:03 -0700 | [diff] [blame] | 210 | #endif |
Linus Torvalds | e77819e | 2011-07-22 19:30:19 -0700 | [diff] [blame] | 211 | |
| 212 | return -EAGAIN; |
| 213 | } |
| 214 | |
Linus Torvalds | 5909ccaa | 2009-08-28 11:51:25 -0700 | [diff] [blame] | 215 | /* |
Andreas Gruenbacher | 948409c | 2011-10-23 23:13:33 +0530 | [diff] [blame] | 216 | * This does the basic permission checking |
Linus Torvalds | 5909ccaa | 2009-08-28 11:51:25 -0700 | [diff] [blame] | 217 | */ |
Al Viro | 7e40145 | 2011-06-20 19:12:17 -0400 | [diff] [blame] | 218 | static int acl_permission_check(struct inode *inode, int mask) |
Linus Torvalds | 5909ccaa | 2009-08-28 11:51:25 -0700 | [diff] [blame] | 219 | { |
Linus Torvalds | 26cf46b | 2011-05-13 11:51:01 -0700 | [diff] [blame] | 220 | unsigned int mode = inode->i_mode; |
Linus Torvalds | 5909ccaa | 2009-08-28 11:51:25 -0700 | [diff] [blame] | 221 | |
Eric W. Biederman | 8e96e3b | 2012-03-03 21:17:15 -0800 | [diff] [blame] | 222 | if (likely(uid_eq(current_fsuid(), inode->i_uid))) |
Linus Torvalds | 5909ccaa | 2009-08-28 11:51:25 -0700 | [diff] [blame] | 223 | mode >>= 6; |
| 224 | else { |
Linus Torvalds | e77819e | 2011-07-22 19:30:19 -0700 | [diff] [blame] | 225 | if (IS_POSIXACL(inode) && (mode & S_IRWXG)) { |
Al Viro | 7e40145 | 2011-06-20 19:12:17 -0400 | [diff] [blame] | 226 | int error = check_acl(inode, mask); |
Nick Piggin | b74c79e | 2011-01-07 17:49:58 +1100 | [diff] [blame] | 227 | if (error != -EAGAIN) |
| 228 | return error; |
Linus Torvalds | 5909ccaa | 2009-08-28 11:51:25 -0700 | [diff] [blame] | 229 | } |
| 230 | |
| 231 | if (in_group_p(inode->i_gid)) |
| 232 | mode >>= 3; |
| 233 | } |
| 234 | |
| 235 | /* |
| 236 | * If the DACs are ok we don't need any capability check. |
| 237 | */ |
Al Viro | 9c2c703 | 2011-06-20 19:06:22 -0400 | [diff] [blame] | 238 | if ((mask & ~mode & (MAY_READ | MAY_WRITE | MAY_EXEC)) == 0) |
Linus Torvalds | 5909ccaa | 2009-08-28 11:51:25 -0700 | [diff] [blame] | 239 | return 0; |
| 240 | return -EACCES; |
| 241 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 242 | |
| 243 | /** |
Nick Piggin | b74c79e | 2011-01-07 17:49:58 +1100 | [diff] [blame] | 244 | * generic_permission - check for access rights on a Posix-like filesystem |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 245 | * @inode: inode to check access rights for |
Andreas Gruenbacher | 8fd90c8 | 2011-10-23 23:13:30 +0530 | [diff] [blame] | 246 | * @mask: right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC, ...) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 247 | * |
| 248 | * Used to check for read/write/execute permissions on a file. |
| 249 | * We use "fsuid" for this, letting us set arbitrary permissions |
| 250 | * for filesystem access without changing the "normal" uids which |
Nick Piggin | b74c79e | 2011-01-07 17:49:58 +1100 | [diff] [blame] | 251 | * are used for other things. |
| 252 | * |
| 253 | * generic_permission is rcu-walk aware. It returns -ECHILD in case an rcu-walk |
| 254 | * request cannot be satisfied (eg. requires blocking or too much complexity). |
| 255 | * It would then be called again in ref-walk mode. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 256 | */ |
Al Viro | 2830ba7 | 2011-06-20 19:16:29 -0400 | [diff] [blame] | 257 | int generic_permission(struct inode *inode, int mask) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 258 | { |
Linus Torvalds | 5909ccaa | 2009-08-28 11:51:25 -0700 | [diff] [blame] | 259 | int ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 260 | |
| 261 | /* |
Andreas Gruenbacher | 948409c | 2011-10-23 23:13:33 +0530 | [diff] [blame] | 262 | * Do the basic permission checks. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 263 | */ |
Al Viro | 7e40145 | 2011-06-20 19:12:17 -0400 | [diff] [blame] | 264 | ret = acl_permission_check(inode, mask); |
Linus Torvalds | 5909ccaa | 2009-08-28 11:51:25 -0700 | [diff] [blame] | 265 | if (ret != -EACCES) |
| 266 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 267 | |
Al Viro | d594e7e | 2011-06-20 19:55:42 -0400 | [diff] [blame] | 268 | if (S_ISDIR(inode->i_mode)) { |
| 269 | /* DACs are overridable for directories */ |
Eric W. Biederman | 1a48e2a | 2011-11-14 16:24:06 -0800 | [diff] [blame] | 270 | if (inode_capable(inode, CAP_DAC_OVERRIDE)) |
Al Viro | d594e7e | 2011-06-20 19:55:42 -0400 | [diff] [blame] | 271 | return 0; |
| 272 | if (!(mask & MAY_WRITE)) |
Eric W. Biederman | 1a48e2a | 2011-11-14 16:24:06 -0800 | [diff] [blame] | 273 | if (inode_capable(inode, CAP_DAC_READ_SEARCH)) |
Al Viro | d594e7e | 2011-06-20 19:55:42 -0400 | [diff] [blame] | 274 | return 0; |
| 275 | return -EACCES; |
| 276 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 277 | /* |
| 278 | * Read/write DACs are always overridable. |
Al Viro | d594e7e | 2011-06-20 19:55:42 -0400 | [diff] [blame] | 279 | * Executable DACs are overridable when there is |
| 280 | * at least one exec bit set. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 281 | */ |
Al Viro | d594e7e | 2011-06-20 19:55:42 -0400 | [diff] [blame] | 282 | if (!(mask & MAY_EXEC) || (inode->i_mode & S_IXUGO)) |
Eric W. Biederman | 1a48e2a | 2011-11-14 16:24:06 -0800 | [diff] [blame] | 283 | if (inode_capable(inode, CAP_DAC_OVERRIDE)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 284 | return 0; |
| 285 | |
| 286 | /* |
| 287 | * Searching includes executable on directories, else just read. |
| 288 | */ |
Serge E. Hallyn | 7ea6600 | 2009-12-29 14:50:19 -0600 | [diff] [blame] | 289 | mask &= MAY_READ | MAY_WRITE | MAY_EXEC; |
Al Viro | d594e7e | 2011-06-20 19:55:42 -0400 | [diff] [blame] | 290 | if (mask == MAY_READ) |
Eric W. Biederman | 1a48e2a | 2011-11-14 16:24:06 -0800 | [diff] [blame] | 291 | if (inode_capable(inode, CAP_DAC_READ_SEARCH)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 292 | return 0; |
| 293 | |
| 294 | return -EACCES; |
| 295 | } |
| 296 | |
Linus Torvalds | 3ddcd05 | 2011-08-06 22:45:50 -0700 | [diff] [blame] | 297 | /* |
| 298 | * We _really_ want to just do "generic_permission()" without |
| 299 | * even looking at the inode->i_op values. So we keep a cache |
| 300 | * flag in inode->i_opflags, that says "this has not special |
| 301 | * permission function, use the fast case". |
| 302 | */ |
| 303 | static inline int do_inode_permission(struct inode *inode, int mask) |
| 304 | { |
| 305 | if (unlikely(!(inode->i_opflags & IOP_FASTPERM))) { |
| 306 | if (likely(inode->i_op->permission)) |
| 307 | return inode->i_op->permission(inode, mask); |
| 308 | |
| 309 | /* This gets set once for the inode lifetime */ |
| 310 | spin_lock(&inode->i_lock); |
| 311 | inode->i_opflags |= IOP_FASTPERM; |
| 312 | spin_unlock(&inode->i_lock); |
| 313 | } |
| 314 | return generic_permission(inode, mask); |
| 315 | } |
| 316 | |
Christoph Hellwig | cb23beb | 2008-10-24 09:59:29 +0200 | [diff] [blame] | 317 | /** |
David Howells | 0bdaea9 | 2012-06-25 12:55:46 +0100 | [diff] [blame] | 318 | * __inode_permission - Check for access rights to a given inode |
| 319 | * @inode: Inode to check permission on |
| 320 | * @mask: Right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC) |
Christoph Hellwig | cb23beb | 2008-10-24 09:59:29 +0200 | [diff] [blame] | 321 | * |
David Howells | 0bdaea9 | 2012-06-25 12:55:46 +0100 | [diff] [blame] | 322 | * Check for read/write/execute permissions on an inode. |
Andreas Gruenbacher | 948409c | 2011-10-23 23:13:33 +0530 | [diff] [blame] | 323 | * |
| 324 | * When checking for MAY_APPEND, MAY_WRITE must also be set in @mask. |
David Howells | 0bdaea9 | 2012-06-25 12:55:46 +0100 | [diff] [blame] | 325 | * |
| 326 | * This does not check for a read-only file system. You probably want |
| 327 | * inode_permission(). |
Christoph Hellwig | cb23beb | 2008-10-24 09:59:29 +0200 | [diff] [blame] | 328 | */ |
David Howells | 0bdaea9 | 2012-06-25 12:55:46 +0100 | [diff] [blame] | 329 | int __inode_permission(struct inode *inode, int mask) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 330 | { |
Al Viro | e6305c4 | 2008-07-15 21:03:57 -0400 | [diff] [blame] | 331 | int retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 332 | |
Linus Torvalds | 3ddcd05 | 2011-08-06 22:45:50 -0700 | [diff] [blame] | 333 | if (unlikely(mask & MAY_WRITE)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 334 | /* |
| 335 | * Nobody gets write access to an immutable file. |
| 336 | */ |
| 337 | if (IS_IMMUTABLE(inode)) |
| 338 | return -EACCES; |
| 339 | } |
| 340 | |
Linus Torvalds | 3ddcd05 | 2011-08-06 22:45:50 -0700 | [diff] [blame] | 341 | retval = do_inode_permission(inode, mask); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 342 | if (retval) |
| 343 | return retval; |
| 344 | |
Serge E. Hallyn | 08ce5f1 | 2008-04-29 01:00:10 -0700 | [diff] [blame] | 345 | retval = devcgroup_inode_permission(inode, mask); |
| 346 | if (retval) |
| 347 | return retval; |
| 348 | |
Eric Paris | d09ca73 | 2010-07-23 11:43:57 -0400 | [diff] [blame] | 349 | return security_inode_permission(inode, mask); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 350 | } |
| 351 | |
Al Viro | f4d6ff8 | 2011-06-19 13:14:21 -0400 | [diff] [blame] | 352 | /** |
David Howells | 0bdaea9 | 2012-06-25 12:55:46 +0100 | [diff] [blame] | 353 | * sb_permission - Check superblock-level permissions |
| 354 | * @sb: Superblock of inode to check permission on |
| 355 | * @mask: Right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC) |
| 356 | * |
| 357 | * Separate out file-system wide checks from inode-specific permission checks. |
| 358 | */ |
| 359 | static int sb_permission(struct super_block *sb, struct inode *inode, int mask) |
| 360 | { |
| 361 | if (unlikely(mask & MAY_WRITE)) { |
| 362 | umode_t mode = inode->i_mode; |
| 363 | |
| 364 | /* Nobody gets write access to a read-only fs. */ |
| 365 | if ((sb->s_flags & MS_RDONLY) && |
| 366 | (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode))) |
| 367 | return -EROFS; |
| 368 | } |
| 369 | return 0; |
| 370 | } |
| 371 | |
| 372 | /** |
| 373 | * inode_permission - Check for access rights to a given inode |
| 374 | * @inode: Inode to check permission on |
| 375 | * @mask: Right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC) |
| 376 | * |
| 377 | * Check for read/write/execute permissions on an inode. We use fs[ug]id for |
| 378 | * this, letting us set arbitrary permissions for filesystem access without |
| 379 | * changing the "normal" UIDs which are used for other things. |
| 380 | * |
| 381 | * When checking for MAY_APPEND, MAY_WRITE must also be set in @mask. |
| 382 | */ |
| 383 | int inode_permission(struct inode *inode, int mask) |
| 384 | { |
| 385 | int retval; |
| 386 | |
| 387 | retval = sb_permission(inode->i_sb, inode, mask); |
| 388 | if (retval) |
| 389 | return retval; |
| 390 | return __inode_permission(inode, mask); |
| 391 | } |
| 392 | |
| 393 | /** |
Jan Blunck | 5dd784d0 | 2008-02-14 19:34:38 -0800 | [diff] [blame] | 394 | * path_get - get a reference to a path |
| 395 | * @path: path to get the reference to |
| 396 | * |
| 397 | * Given a path increment the reference count to the dentry and the vfsmount. |
| 398 | */ |
| 399 | void path_get(struct path *path) |
| 400 | { |
| 401 | mntget(path->mnt); |
| 402 | dget(path->dentry); |
| 403 | } |
| 404 | EXPORT_SYMBOL(path_get); |
| 405 | |
| 406 | /** |
Jan Blunck | 1d957f9 | 2008-02-14 19:34:35 -0800 | [diff] [blame] | 407 | * path_put - put a reference to a path |
| 408 | * @path: path to put the reference to |
| 409 | * |
| 410 | * Given a path decrement the reference count to the dentry and the vfsmount. |
| 411 | */ |
| 412 | void path_put(struct path *path) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 413 | { |
Jan Blunck | 1d957f9 | 2008-02-14 19:34:35 -0800 | [diff] [blame] | 414 | dput(path->dentry); |
| 415 | mntput(path->mnt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 416 | } |
Jan Blunck | 1d957f9 | 2008-02-14 19:34:35 -0800 | [diff] [blame] | 417 | EXPORT_SYMBOL(path_put); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 418 | |
Al Viro | 19660af | 2011-03-25 10:32:48 -0400 | [diff] [blame] | 419 | /* |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 420 | * Path walking has 2 modes, rcu-walk and ref-walk (see |
Al Viro | 19660af | 2011-03-25 10:32:48 -0400 | [diff] [blame] | 421 | * Documentation/filesystems/path-lookup.txt). In situations when we can't |
| 422 | * continue in RCU mode, we attempt to drop out of rcu-walk mode and grab |
| 423 | * normal reference counts on dentries and vfsmounts to transition to rcu-walk |
| 424 | * mode. Refcounts are grabbed at the last known good point before rcu-walk |
| 425 | * got stuck, so ref-walk may continue from there. If this is not successful |
| 426 | * (eg. a seqcount has changed), then failure is returned and it's up to caller |
| 427 | * to restart the path walk from the beginning in ref-walk mode. |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 428 | */ |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 429 | |
| 430 | /** |
Al Viro | 19660af | 2011-03-25 10:32:48 -0400 | [diff] [blame] | 431 | * unlazy_walk - try to switch to ref-walk mode. |
| 432 | * @nd: nameidata pathwalk data |
| 433 | * @dentry: child of nd->path.dentry or NULL |
Randy Dunlap | 3919162 | 2011-01-08 19:36:21 -0800 | [diff] [blame] | 434 | * Returns: 0 on success, -ECHILD on failure |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 435 | * |
Al Viro | 19660af | 2011-03-25 10:32:48 -0400 | [diff] [blame] | 436 | * unlazy_walk attempts to legitimize the current nd->path, nd->root and dentry |
| 437 | * for ref-walk mode. @dentry must be a path found by a do_lookup call on |
| 438 | * @nd or NULL. Must be called from rcu-walk context. |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 439 | */ |
Al Viro | 19660af | 2011-03-25 10:32:48 -0400 | [diff] [blame] | 440 | static int unlazy_walk(struct nameidata *nd, struct dentry *dentry) |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 441 | { |
| 442 | struct fs_struct *fs = current->fs; |
| 443 | struct dentry *parent = nd->path.dentry; |
Al Viro | 5b6ca02 | 2011-03-09 23:04:47 -0500 | [diff] [blame] | 444 | int want_root = 0; |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 445 | |
| 446 | BUG_ON(!(nd->flags & LOOKUP_RCU)); |
Al Viro | 5b6ca02 | 2011-03-09 23:04:47 -0500 | [diff] [blame] | 447 | if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT)) { |
| 448 | want_root = 1; |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 449 | spin_lock(&fs->lock); |
| 450 | if (nd->root.mnt != fs->root.mnt || |
| 451 | nd->root.dentry != fs->root.dentry) |
| 452 | goto err_root; |
| 453 | } |
| 454 | spin_lock(&parent->d_lock); |
Al Viro | 19660af | 2011-03-25 10:32:48 -0400 | [diff] [blame] | 455 | if (!dentry) { |
| 456 | if (!__d_rcu_to_refcount(parent, nd->seq)) |
| 457 | goto err_parent; |
| 458 | BUG_ON(nd->inode != parent->d_inode); |
| 459 | } else { |
Al Viro | 94c0d4e | 2011-07-12 21:40:23 -0400 | [diff] [blame] | 460 | if (dentry->d_parent != parent) |
| 461 | goto err_parent; |
Al Viro | 19660af | 2011-03-25 10:32:48 -0400 | [diff] [blame] | 462 | spin_lock_nested(&dentry->d_lock, DENTRY_D_LOCK_NESTED); |
| 463 | if (!__d_rcu_to_refcount(dentry, nd->seq)) |
| 464 | goto err_child; |
| 465 | /* |
| 466 | * If the sequence check on the child dentry passed, then |
| 467 | * the child has not been removed from its parent. This |
| 468 | * means the parent dentry must be valid and able to take |
| 469 | * a reference at this point. |
| 470 | */ |
| 471 | BUG_ON(!IS_ROOT(dentry) && dentry->d_parent != parent); |
| 472 | BUG_ON(!parent->d_count); |
| 473 | parent->d_count++; |
| 474 | spin_unlock(&dentry->d_lock); |
| 475 | } |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 476 | spin_unlock(&parent->d_lock); |
Al Viro | 5b6ca02 | 2011-03-09 23:04:47 -0500 | [diff] [blame] | 477 | if (want_root) { |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 478 | path_get(&nd->root); |
| 479 | spin_unlock(&fs->lock); |
| 480 | } |
| 481 | mntget(nd->path.mnt); |
| 482 | |
| 483 | rcu_read_unlock(); |
Andi Kleen | 962830d | 2012-05-08 13:32:02 +0930 | [diff] [blame] | 484 | br_read_unlock(&vfsmount_lock); |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 485 | nd->flags &= ~LOOKUP_RCU; |
| 486 | return 0; |
Al Viro | 19660af | 2011-03-25 10:32:48 -0400 | [diff] [blame] | 487 | |
| 488 | err_child: |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 489 | spin_unlock(&dentry->d_lock); |
Al Viro | 19660af | 2011-03-25 10:32:48 -0400 | [diff] [blame] | 490 | err_parent: |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 491 | spin_unlock(&parent->d_lock); |
| 492 | err_root: |
Al Viro | 5b6ca02 | 2011-03-09 23:04:47 -0500 | [diff] [blame] | 493 | if (want_root) |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 494 | spin_unlock(&fs->lock); |
| 495 | return -ECHILD; |
| 496 | } |
| 497 | |
Al Viro | 4ce16ef3 | 2012-06-10 16:10:59 -0400 | [diff] [blame] | 498 | static inline int d_revalidate(struct dentry *dentry, unsigned int flags) |
Nick Piggin | 34286d6 | 2011-01-07 17:49:57 +1100 | [diff] [blame] | 499 | { |
Al Viro | 4ce16ef3 | 2012-06-10 16:10:59 -0400 | [diff] [blame] | 500 | return dentry->d_op->d_revalidate(dentry, flags); |
Nick Piggin | 34286d6 | 2011-01-07 17:49:57 +1100 | [diff] [blame] | 501 | } |
| 502 | |
Al Viro | 9f1fafe | 2011-03-25 11:00:12 -0400 | [diff] [blame] | 503 | /** |
| 504 | * complete_walk - successful completion of path walk |
| 505 | * @nd: pointer nameidata |
Jeff Layton | 39159de | 2009-12-07 12:01:50 -0500 | [diff] [blame] | 506 | * |
Al Viro | 9f1fafe | 2011-03-25 11:00:12 -0400 | [diff] [blame] | 507 | * If we had been in RCU mode, drop out of it and legitimize nd->path. |
| 508 | * Revalidate the final result, unless we'd already done that during |
| 509 | * the path walk or the filesystem doesn't ask for it. Return 0 on |
| 510 | * success, -error on failure. In case of failure caller does not |
| 511 | * need to drop nd->path. |
Jeff Layton | 39159de | 2009-12-07 12:01:50 -0500 | [diff] [blame] | 512 | */ |
Al Viro | 9f1fafe | 2011-03-25 11:00:12 -0400 | [diff] [blame] | 513 | static int complete_walk(struct nameidata *nd) |
Jeff Layton | 39159de | 2009-12-07 12:01:50 -0500 | [diff] [blame] | 514 | { |
Al Viro | 16c2cd7 | 2011-02-22 15:50:10 -0500 | [diff] [blame] | 515 | struct dentry *dentry = nd->path.dentry; |
Jeff Layton | 39159de | 2009-12-07 12:01:50 -0500 | [diff] [blame] | 516 | int status; |
Jeff Layton | 39159de | 2009-12-07 12:01:50 -0500 | [diff] [blame] | 517 | |
Al Viro | 9f1fafe | 2011-03-25 11:00:12 -0400 | [diff] [blame] | 518 | if (nd->flags & LOOKUP_RCU) { |
| 519 | nd->flags &= ~LOOKUP_RCU; |
| 520 | if (!(nd->flags & LOOKUP_ROOT)) |
| 521 | nd->root.mnt = NULL; |
| 522 | spin_lock(&dentry->d_lock); |
| 523 | if (unlikely(!__d_rcu_to_refcount(dentry, nd->seq))) { |
| 524 | spin_unlock(&dentry->d_lock); |
| 525 | rcu_read_unlock(); |
Andi Kleen | 962830d | 2012-05-08 13:32:02 +0930 | [diff] [blame] | 526 | br_read_unlock(&vfsmount_lock); |
Al Viro | 9f1fafe | 2011-03-25 11:00:12 -0400 | [diff] [blame] | 527 | return -ECHILD; |
| 528 | } |
| 529 | BUG_ON(nd->inode != dentry->d_inode); |
| 530 | spin_unlock(&dentry->d_lock); |
| 531 | mntget(nd->path.mnt); |
| 532 | rcu_read_unlock(); |
Andi Kleen | 962830d | 2012-05-08 13:32:02 +0930 | [diff] [blame] | 533 | br_read_unlock(&vfsmount_lock); |
Al Viro | 9f1fafe | 2011-03-25 11:00:12 -0400 | [diff] [blame] | 534 | } |
| 535 | |
Al Viro | 16c2cd7 | 2011-02-22 15:50:10 -0500 | [diff] [blame] | 536 | if (likely(!(nd->flags & LOOKUP_JUMPED))) |
Jeff Layton | 39159de | 2009-12-07 12:01:50 -0500 | [diff] [blame] | 537 | return 0; |
| 538 | |
Al Viro | 16c2cd7 | 2011-02-22 15:50:10 -0500 | [diff] [blame] | 539 | if (likely(!(dentry->d_flags & DCACHE_OP_REVALIDATE))) |
| 540 | return 0; |
| 541 | |
| 542 | if (likely(!(dentry->d_sb->s_type->fs_flags & FS_REVAL_DOT))) |
| 543 | return 0; |
| 544 | |
| 545 | /* Note: we do not d_invalidate() */ |
Al Viro | 4ce16ef3 | 2012-06-10 16:10:59 -0400 | [diff] [blame] | 546 | status = d_revalidate(dentry, nd->flags); |
Jeff Layton | 39159de | 2009-12-07 12:01:50 -0500 | [diff] [blame] | 547 | if (status > 0) |
| 548 | return 0; |
| 549 | |
Al Viro | 16c2cd7 | 2011-02-22 15:50:10 -0500 | [diff] [blame] | 550 | if (!status) |
Jeff Layton | 39159de | 2009-12-07 12:01:50 -0500 | [diff] [blame] | 551 | status = -ESTALE; |
Al Viro | 16c2cd7 | 2011-02-22 15:50:10 -0500 | [diff] [blame] | 552 | |
Al Viro | 9f1fafe | 2011-03-25 11:00:12 -0400 | [diff] [blame] | 553 | path_put(&nd->path); |
Jeff Layton | 39159de | 2009-12-07 12:01:50 -0500 | [diff] [blame] | 554 | return status; |
| 555 | } |
| 556 | |
Al Viro | 2a73787 | 2009-04-07 11:49:53 -0400 | [diff] [blame] | 557 | static __always_inline void set_root(struct nameidata *nd) |
| 558 | { |
Miklos Szeredi | f7ad3c6 | 2010-08-10 11:41:36 +0200 | [diff] [blame] | 559 | if (!nd->root.mnt) |
| 560 | get_fs_root(current->fs, &nd->root); |
Al Viro | 2a73787 | 2009-04-07 11:49:53 -0400 | [diff] [blame] | 561 | } |
| 562 | |
Al Viro | 6de88d7 | 2009-08-09 01:41:57 +0400 | [diff] [blame] | 563 | static int link_path_walk(const char *, struct nameidata *); |
| 564 | |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 565 | static __always_inline void set_root_rcu(struct nameidata *nd) |
| 566 | { |
| 567 | if (!nd->root.mnt) { |
| 568 | struct fs_struct *fs = current->fs; |
Nick Piggin | c28cc36 | 2011-01-07 17:49:53 +1100 | [diff] [blame] | 569 | unsigned seq; |
| 570 | |
| 571 | do { |
| 572 | seq = read_seqcount_begin(&fs->seq); |
| 573 | nd->root = fs->root; |
Tim Chen | c153001 | 2011-04-15 11:39:29 -0700 | [diff] [blame] | 574 | nd->seq = __read_seqcount_begin(&nd->root.dentry->d_seq); |
Nick Piggin | c28cc36 | 2011-01-07 17:49:53 +1100 | [diff] [blame] | 575 | } while (read_seqcount_retry(&fs->seq, seq)); |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 576 | } |
| 577 | } |
| 578 | |
Arjan van de Ven | f166235 | 2006-01-14 13:21:31 -0800 | [diff] [blame] | 579 | 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] | 580 | { |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 581 | int ret; |
| 582 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 583 | if (IS_ERR(link)) |
| 584 | goto fail; |
| 585 | |
| 586 | if (*link == '/') { |
Al Viro | 2a73787 | 2009-04-07 11:49:53 -0400 | [diff] [blame] | 587 | set_root(nd); |
Jan Blunck | 1d957f9 | 2008-02-14 19:34:35 -0800 | [diff] [blame] | 588 | path_put(&nd->path); |
Al Viro | 2a73787 | 2009-04-07 11:49:53 -0400 | [diff] [blame] | 589 | nd->path = nd->root; |
| 590 | path_get(&nd->root); |
Al Viro | 16c2cd7 | 2011-02-22 15:50:10 -0500 | [diff] [blame] | 591 | nd->flags |= LOOKUP_JUMPED; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 592 | } |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 593 | nd->inode = nd->path.dentry->d_inode; |
Christoph Hellwig | b4091d5 | 2008-11-05 15:07:21 +0100 | [diff] [blame] | 594 | |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 595 | ret = link_path_walk(link, nd); |
| 596 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 597 | fail: |
Jan Blunck | 1d957f9 | 2008-02-14 19:34:35 -0800 | [diff] [blame] | 598 | path_put(&nd->path); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 599 | return PTR_ERR(link); |
| 600 | } |
| 601 | |
Jan Blunck | 1d957f9 | 2008-02-14 19:34:35 -0800 | [diff] [blame] | 602 | static void path_put_conditional(struct path *path, struct nameidata *nd) |
Miklos Szeredi | 09dd17d | 2005-09-06 15:18:21 -0700 | [diff] [blame] | 603 | { |
| 604 | dput(path->dentry); |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 605 | if (path->mnt != nd->path.mnt) |
Miklos Szeredi | 09dd17d | 2005-09-06 15:18:21 -0700 | [diff] [blame] | 606 | mntput(path->mnt); |
| 607 | } |
| 608 | |
Nick Piggin | 7b9337a | 2011-01-14 08:42:43 +0000 | [diff] [blame] | 609 | static inline void path_to_nameidata(const struct path *path, |
| 610 | struct nameidata *nd) |
Miklos Szeredi | 09dd17d | 2005-09-06 15:18:21 -0700 | [diff] [blame] | 611 | { |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 612 | if (!(nd->flags & LOOKUP_RCU)) { |
| 613 | dput(nd->path.dentry); |
| 614 | if (nd->path.mnt != path->mnt) |
| 615 | mntput(nd->path.mnt); |
Huang Shijie | 9a22968 | 2010-04-02 17:37:13 +0800 | [diff] [blame] | 616 | } |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 617 | nd->path.mnt = path->mnt; |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 618 | nd->path.dentry = path->dentry; |
Miklos Szeredi | 09dd17d | 2005-09-06 15:18:21 -0700 | [diff] [blame] | 619 | } |
| 620 | |
Christoph Hellwig | b5fb63c1 | 2012-06-18 10:47:04 -0400 | [diff] [blame] | 621 | /* |
| 622 | * Helper to directly jump to a known parsed path from ->follow_link, |
| 623 | * caller must have taken a reference to path beforehand. |
| 624 | */ |
| 625 | void nd_jump_link(struct nameidata *nd, struct path *path) |
| 626 | { |
| 627 | path_put(&nd->path); |
| 628 | |
| 629 | nd->path = *path; |
| 630 | nd->inode = nd->path.dentry->d_inode; |
| 631 | nd->flags |= LOOKUP_JUMPED; |
| 632 | |
| 633 | BUG_ON(nd->inode->i_op->follow_link); |
| 634 | } |
| 635 | |
Al Viro | 574197e | 2011-03-14 22:20:34 -0400 | [diff] [blame] | 636 | static inline void put_link(struct nameidata *nd, struct path *link, void *cookie) |
| 637 | { |
| 638 | struct inode *inode = link->dentry->d_inode; |
Al Viro | 6d7b5aa | 2012-06-10 04:15:17 -0400 | [diff] [blame] | 639 | if (inode->i_op->put_link) |
Al Viro | 574197e | 2011-03-14 22:20:34 -0400 | [diff] [blame] | 640 | inode->i_op->put_link(link->dentry, nd, cookie); |
| 641 | path_put(link); |
| 642 | } |
| 643 | |
Al Viro | def4af3 | 2009-12-26 08:37:05 -0500 | [diff] [blame] | 644 | static __always_inline int |
Al Viro | 574197e | 2011-03-14 22:20:34 -0400 | [diff] [blame] | 645 | follow_link(struct path *link, struct nameidata *nd, void **p) |
Ian Kent | 051d381 | 2006-03-27 01:14:53 -0800 | [diff] [blame] | 646 | { |
Nick Piggin | 7b9337a | 2011-01-14 08:42:43 +0000 | [diff] [blame] | 647 | struct dentry *dentry = link->dentry; |
Al Viro | 6d7b5aa | 2012-06-10 04:15:17 -0400 | [diff] [blame] | 648 | int error; |
| 649 | char *s; |
Ian Kent | 051d381 | 2006-03-27 01:14:53 -0800 | [diff] [blame] | 650 | |
Al Viro | 844a391 | 2011-02-15 00:38:26 -0500 | [diff] [blame] | 651 | BUG_ON(nd->flags & LOOKUP_RCU); |
| 652 | |
Al Viro | 0e79458 | 2011-03-16 02:45:02 -0400 | [diff] [blame] | 653 | if (link->mnt == nd->path.mnt) |
| 654 | mntget(link->mnt); |
| 655 | |
Al Viro | 6d7b5aa | 2012-06-10 04:15:17 -0400 | [diff] [blame] | 656 | error = -ELOOP; |
| 657 | if (unlikely(current->total_link_count >= 40)) |
| 658 | goto out_put_nd_path; |
| 659 | |
Al Viro | 574197e | 2011-03-14 22:20:34 -0400 | [diff] [blame] | 660 | cond_resched(); |
| 661 | current->total_link_count++; |
| 662 | |
Al Viro | 68ac123 | 2012-03-15 08:21:57 -0400 | [diff] [blame] | 663 | touch_atime(link); |
Ian Kent | 051d381 | 2006-03-27 01:14:53 -0800 | [diff] [blame] | 664 | nd_set_link(nd, NULL); |
| 665 | |
Al Viro | 36f3b4f | 2011-02-22 21:24:38 -0500 | [diff] [blame] | 666 | error = security_inode_follow_link(link->dentry, nd); |
Al Viro | 6d7b5aa | 2012-06-10 04:15:17 -0400 | [diff] [blame] | 667 | if (error) |
| 668 | goto out_put_nd_path; |
Al Viro | 36f3b4f | 2011-02-22 21:24:38 -0500 | [diff] [blame] | 669 | |
Al Viro | 86acdca1 | 2009-12-22 23:45:11 -0500 | [diff] [blame] | 670 | nd->last_type = LAST_BIND; |
Al Viro | def4af3 | 2009-12-26 08:37:05 -0500 | [diff] [blame] | 671 | *p = dentry->d_inode->i_op->follow_link(dentry, nd); |
| 672 | error = PTR_ERR(*p); |
Al Viro | 6d7b5aa | 2012-06-10 04:15:17 -0400 | [diff] [blame] | 673 | if (IS_ERR(*p)) |
Christoph Hellwig | 408ef01 | 2012-06-18 10:47:03 -0400 | [diff] [blame] | 674 | goto out_put_nd_path; |
Al Viro | 6d7b5aa | 2012-06-10 04:15:17 -0400 | [diff] [blame] | 675 | |
| 676 | error = 0; |
| 677 | s = nd_get_link(nd); |
| 678 | if (s) { |
| 679 | error = __vfs_follow_link(nd, s); |
Christoph Hellwig | b5fb63c1 | 2012-06-18 10:47:04 -0400 | [diff] [blame] | 680 | if (unlikely(error)) |
| 681 | put_link(nd, link, *p); |
Ian Kent | 051d381 | 2006-03-27 01:14:53 -0800 | [diff] [blame] | 682 | } |
Al Viro | 6d7b5aa | 2012-06-10 04:15:17 -0400 | [diff] [blame] | 683 | |
| 684 | return error; |
| 685 | |
| 686 | out_put_nd_path: |
| 687 | path_put(&nd->path); |
Al Viro | 6d7b5aa | 2012-06-10 04:15:17 -0400 | [diff] [blame] | 688 | path_put(link); |
Ian Kent | 051d381 | 2006-03-27 01:14:53 -0800 | [diff] [blame] | 689 | return error; |
| 690 | } |
| 691 | |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 692 | static int follow_up_rcu(struct path *path) |
| 693 | { |
Al Viro | 0714a53 | 2011-11-24 22:19:58 -0500 | [diff] [blame] | 694 | struct mount *mnt = real_mount(path->mnt); |
| 695 | struct mount *parent; |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 696 | struct dentry *mountpoint; |
| 697 | |
Al Viro | 0714a53 | 2011-11-24 22:19:58 -0500 | [diff] [blame] | 698 | parent = mnt->mnt_parent; |
| 699 | if (&parent->mnt == path->mnt) |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 700 | return 0; |
Al Viro | a73324d | 2011-11-24 22:25:07 -0500 | [diff] [blame] | 701 | mountpoint = mnt->mnt_mountpoint; |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 702 | path->dentry = mountpoint; |
Al Viro | 0714a53 | 2011-11-24 22:19:58 -0500 | [diff] [blame] | 703 | path->mnt = &parent->mnt; |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 704 | return 1; |
| 705 | } |
| 706 | |
David Howells | f015f126 | 2012-06-25 12:55:28 +0100 | [diff] [blame] | 707 | /* |
| 708 | * follow_up - Find the mountpoint of path's vfsmount |
| 709 | * |
| 710 | * Given a path, find the mountpoint of its source file system. |
| 711 | * Replace @path with the path of the mountpoint in the parent mount. |
| 712 | * Up is towards /. |
| 713 | * |
| 714 | * Return 1 if we went up a level and 0 if we were already at the |
| 715 | * root. |
| 716 | */ |
Al Viro | bab77eb | 2009-04-18 03:26:48 -0400 | [diff] [blame] | 717 | int follow_up(struct path *path) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 718 | { |
Al Viro | 0714a53 | 2011-11-24 22:19:58 -0500 | [diff] [blame] | 719 | struct mount *mnt = real_mount(path->mnt); |
| 720 | struct mount *parent; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 721 | struct dentry *mountpoint; |
Nick Piggin | 99b7db7 | 2010-08-18 04:37:39 +1000 | [diff] [blame] | 722 | |
Andi Kleen | 962830d | 2012-05-08 13:32:02 +0930 | [diff] [blame] | 723 | br_read_lock(&vfsmount_lock); |
Al Viro | 0714a53 | 2011-11-24 22:19:58 -0500 | [diff] [blame] | 724 | parent = mnt->mnt_parent; |
Al Viro | 3c0a616 | 2012-07-18 17:32:50 +0400 | [diff] [blame^] | 725 | if (parent == mnt) { |
Andi Kleen | 962830d | 2012-05-08 13:32:02 +0930 | [diff] [blame] | 726 | br_read_unlock(&vfsmount_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 727 | return 0; |
| 728 | } |
Al Viro | 0714a53 | 2011-11-24 22:19:58 -0500 | [diff] [blame] | 729 | mntget(&parent->mnt); |
Al Viro | a73324d | 2011-11-24 22:25:07 -0500 | [diff] [blame] | 730 | mountpoint = dget(mnt->mnt_mountpoint); |
Andi Kleen | 962830d | 2012-05-08 13:32:02 +0930 | [diff] [blame] | 731 | br_read_unlock(&vfsmount_lock); |
Al Viro | bab77eb | 2009-04-18 03:26:48 -0400 | [diff] [blame] | 732 | dput(path->dentry); |
| 733 | path->dentry = mountpoint; |
| 734 | mntput(path->mnt); |
Al Viro | 0714a53 | 2011-11-24 22:19:58 -0500 | [diff] [blame] | 735 | path->mnt = &parent->mnt; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 736 | return 1; |
| 737 | } |
| 738 | |
Nick Piggin | b5c84bf | 2011-01-07 17:49:38 +1100 | [diff] [blame] | 739 | /* |
David Howells | 9875cf8 | 2011-01-14 18:45:21 +0000 | [diff] [blame] | 740 | * Perform an automount |
| 741 | * - return -EISDIR to tell follow_managed() to stop and return the path we |
| 742 | * were called with. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 743 | */ |
David Howells | 9875cf8 | 2011-01-14 18:45:21 +0000 | [diff] [blame] | 744 | static int follow_automount(struct path *path, unsigned flags, |
| 745 | bool *need_mntput) |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 746 | { |
David Howells | 9875cf8 | 2011-01-14 18:45:21 +0000 | [diff] [blame] | 747 | struct vfsmount *mnt; |
David Howells | ea5b778 | 2011-01-14 19:10:03 +0000 | [diff] [blame] | 748 | int err; |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 749 | |
David Howells | 9875cf8 | 2011-01-14 18:45:21 +0000 | [diff] [blame] | 750 | if (!path->dentry->d_op || !path->dentry->d_op->d_automount) |
| 751 | return -EREMOTE; |
Al Viro | 463ffb2 | 2005-06-06 13:36:05 -0700 | [diff] [blame] | 752 | |
Miklos Szeredi | 0ec26fd | 2011-09-05 18:06:26 +0200 | [diff] [blame] | 753 | /* We don't want to mount if someone's just doing a stat - |
| 754 | * unless they're stat'ing a directory and appended a '/' to |
| 755 | * the name. |
| 756 | * |
| 757 | * We do, however, want to mount if someone wants to open or |
| 758 | * create a file of any type under the mountpoint, wants to |
| 759 | * traverse through the mountpoint or wants to open the |
| 760 | * mounted directory. Also, autofs may mark negative dentries |
| 761 | * as being automount points. These will need the attentions |
| 762 | * of the daemon to instantiate them before they can be used. |
David Howells | 9875cf8 | 2011-01-14 18:45:21 +0000 | [diff] [blame] | 763 | */ |
Miklos Szeredi | 0ec26fd | 2011-09-05 18:06:26 +0200 | [diff] [blame] | 764 | if (!(flags & (LOOKUP_PARENT | LOOKUP_DIRECTORY | |
Linus Torvalds | d94c177 | 2011-09-26 17:44:55 -0700 | [diff] [blame] | 765 | LOOKUP_OPEN | LOOKUP_CREATE | LOOKUP_AUTOMOUNT)) && |
Miklos Szeredi | 0ec26fd | 2011-09-05 18:06:26 +0200 | [diff] [blame] | 766 | path->dentry->d_inode) |
| 767 | return -EISDIR; |
| 768 | |
David Howells | 9875cf8 | 2011-01-14 18:45:21 +0000 | [diff] [blame] | 769 | current->total_link_count++; |
| 770 | if (current->total_link_count >= 40) |
| 771 | return -ELOOP; |
| 772 | |
| 773 | mnt = path->dentry->d_op->d_automount(path); |
| 774 | if (IS_ERR(mnt)) { |
| 775 | /* |
| 776 | * The filesystem is allowed to return -EISDIR here to indicate |
| 777 | * it doesn't want to automount. For instance, autofs would do |
| 778 | * this so that its userspace daemon can mount on this dentry. |
| 779 | * |
| 780 | * However, we can only permit this if it's a terminal point in |
| 781 | * the path being looked up; if it wasn't then the remainder of |
| 782 | * the path is inaccessible and we should say so. |
| 783 | */ |
Al Viro | 49084c3 | 2011-06-25 21:59:52 -0400 | [diff] [blame] | 784 | if (PTR_ERR(mnt) == -EISDIR && (flags & LOOKUP_PARENT)) |
David Howells | 9875cf8 | 2011-01-14 18:45:21 +0000 | [diff] [blame] | 785 | return -EREMOTE; |
| 786 | return PTR_ERR(mnt); |
| 787 | } |
David Howells | ea5b778 | 2011-01-14 19:10:03 +0000 | [diff] [blame] | 788 | |
David Howells | 9875cf8 | 2011-01-14 18:45:21 +0000 | [diff] [blame] | 789 | if (!mnt) /* mount collision */ |
| 790 | return 0; |
| 791 | |
Al Viro | 8aef188 | 2011-06-16 15:10:06 +0100 | [diff] [blame] | 792 | if (!*need_mntput) { |
| 793 | /* lock_mount() may release path->mnt on error */ |
| 794 | mntget(path->mnt); |
| 795 | *need_mntput = true; |
| 796 | } |
Al Viro | 19a167a | 2011-01-17 01:35:23 -0500 | [diff] [blame] | 797 | err = finish_automount(mnt, path); |
David Howells | ea5b778 | 2011-01-14 19:10:03 +0000 | [diff] [blame] | 798 | |
David Howells | ea5b778 | 2011-01-14 19:10:03 +0000 | [diff] [blame] | 799 | switch (err) { |
| 800 | case -EBUSY: |
| 801 | /* Someone else made a mount here whilst we were busy */ |
Al Viro | 19a167a | 2011-01-17 01:35:23 -0500 | [diff] [blame] | 802 | return 0; |
David Howells | ea5b778 | 2011-01-14 19:10:03 +0000 | [diff] [blame] | 803 | case 0: |
Al Viro | 8aef188 | 2011-06-16 15:10:06 +0100 | [diff] [blame] | 804 | path_put(path); |
David Howells | ea5b778 | 2011-01-14 19:10:03 +0000 | [diff] [blame] | 805 | path->mnt = mnt; |
| 806 | path->dentry = dget(mnt->mnt_root); |
David Howells | ea5b778 | 2011-01-14 19:10:03 +0000 | [diff] [blame] | 807 | return 0; |
Al Viro | 19a167a | 2011-01-17 01:35:23 -0500 | [diff] [blame] | 808 | default: |
| 809 | return err; |
David Howells | ea5b778 | 2011-01-14 19:10:03 +0000 | [diff] [blame] | 810 | } |
Al Viro | 19a167a | 2011-01-17 01:35:23 -0500 | [diff] [blame] | 811 | |
David Howells | 9875cf8 | 2011-01-14 18:45:21 +0000 | [diff] [blame] | 812 | } |
| 813 | |
| 814 | /* |
| 815 | * Handle a dentry that is managed in some way. |
David Howells | cc53ce5 | 2011-01-14 18:45:26 +0000 | [diff] [blame] | 816 | * - Flagged for transit management (autofs) |
David Howells | 9875cf8 | 2011-01-14 18:45:21 +0000 | [diff] [blame] | 817 | * - Flagged as mountpoint |
| 818 | * - Flagged as automount point |
| 819 | * |
| 820 | * This may only be called in refwalk mode. |
| 821 | * |
| 822 | * Serialization is taken care of in namespace.c |
| 823 | */ |
| 824 | static int follow_managed(struct path *path, unsigned flags) |
| 825 | { |
Al Viro | 8aef188 | 2011-06-16 15:10:06 +0100 | [diff] [blame] | 826 | struct vfsmount *mnt = path->mnt; /* held by caller, must be left alone */ |
David Howells | 9875cf8 | 2011-01-14 18:45:21 +0000 | [diff] [blame] | 827 | unsigned managed; |
| 828 | bool need_mntput = false; |
Al Viro | 8aef188 | 2011-06-16 15:10:06 +0100 | [diff] [blame] | 829 | int ret = 0; |
David Howells | 9875cf8 | 2011-01-14 18:45:21 +0000 | [diff] [blame] | 830 | |
| 831 | /* Given that we're not holding a lock here, we retain the value in a |
| 832 | * local variable for each dentry as we look at it so that we don't see |
| 833 | * the components of that value change under us */ |
| 834 | while (managed = ACCESS_ONCE(path->dentry->d_flags), |
| 835 | managed &= DCACHE_MANAGED_DENTRY, |
| 836 | unlikely(managed != 0)) { |
David Howells | cc53ce5 | 2011-01-14 18:45:26 +0000 | [diff] [blame] | 837 | /* Allow the filesystem to manage the transit without i_mutex |
| 838 | * being held. */ |
| 839 | if (managed & DCACHE_MANAGE_TRANSIT) { |
| 840 | BUG_ON(!path->dentry->d_op); |
| 841 | BUG_ON(!path->dentry->d_op->d_manage); |
Al Viro | 1aed3e4 | 2011-03-18 09:09:02 -0400 | [diff] [blame] | 842 | ret = path->dentry->d_op->d_manage(path->dentry, false); |
David Howells | cc53ce5 | 2011-01-14 18:45:26 +0000 | [diff] [blame] | 843 | if (ret < 0) |
Al Viro | 8aef188 | 2011-06-16 15:10:06 +0100 | [diff] [blame] | 844 | break; |
David Howells | cc53ce5 | 2011-01-14 18:45:26 +0000 | [diff] [blame] | 845 | } |
| 846 | |
David Howells | 9875cf8 | 2011-01-14 18:45:21 +0000 | [diff] [blame] | 847 | /* Transit to a mounted filesystem. */ |
| 848 | if (managed & DCACHE_MOUNTED) { |
| 849 | struct vfsmount *mounted = lookup_mnt(path); |
| 850 | if (mounted) { |
| 851 | dput(path->dentry); |
| 852 | if (need_mntput) |
| 853 | mntput(path->mnt); |
| 854 | path->mnt = mounted; |
| 855 | path->dentry = dget(mounted->mnt_root); |
| 856 | need_mntput = true; |
| 857 | continue; |
| 858 | } |
| 859 | |
| 860 | /* Something is mounted on this dentry in another |
| 861 | * namespace and/or whatever was mounted there in this |
| 862 | * namespace got unmounted before we managed to get the |
| 863 | * vfsmount_lock */ |
| 864 | } |
| 865 | |
| 866 | /* Handle an automount point */ |
| 867 | if (managed & DCACHE_NEED_AUTOMOUNT) { |
| 868 | ret = follow_automount(path, flags, &need_mntput); |
| 869 | if (ret < 0) |
Al Viro | 8aef188 | 2011-06-16 15:10:06 +0100 | [diff] [blame] | 870 | break; |
David Howells | 9875cf8 | 2011-01-14 18:45:21 +0000 | [diff] [blame] | 871 | continue; |
| 872 | } |
| 873 | |
| 874 | /* We didn't change the current path point */ |
| 875 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 876 | } |
Al Viro | 8aef188 | 2011-06-16 15:10:06 +0100 | [diff] [blame] | 877 | |
| 878 | if (need_mntput && path->mnt == mnt) |
| 879 | mntput(path->mnt); |
| 880 | if (ret == -EISDIR) |
| 881 | ret = 0; |
Al Viro | a3fbbde | 2011-11-07 21:21:26 +0000 | [diff] [blame] | 882 | return ret < 0 ? ret : need_mntput; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 883 | } |
| 884 | |
David Howells | cc53ce5 | 2011-01-14 18:45:26 +0000 | [diff] [blame] | 885 | int follow_down_one(struct path *path) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 886 | { |
| 887 | struct vfsmount *mounted; |
| 888 | |
Al Viro | 1c755af | 2009-04-18 14:06:57 -0400 | [diff] [blame] | 889 | mounted = lookup_mnt(path); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 890 | if (mounted) { |
Al Viro | 9393bd0 | 2009-04-18 13:58:15 -0400 | [diff] [blame] | 891 | dput(path->dentry); |
| 892 | mntput(path->mnt); |
| 893 | path->mnt = mounted; |
| 894 | path->dentry = dget(mounted->mnt_root); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 895 | return 1; |
| 896 | } |
| 897 | return 0; |
| 898 | } |
| 899 | |
Ian Kent | 62a7375 | 2011-03-25 01:51:02 +0800 | [diff] [blame] | 900 | static inline bool managed_dentry_might_block(struct dentry *dentry) |
| 901 | { |
| 902 | return (dentry->d_flags & DCACHE_MANAGE_TRANSIT && |
| 903 | dentry->d_op->d_manage(dentry, true) < 0); |
| 904 | } |
| 905 | |
David Howells | 9875cf8 | 2011-01-14 18:45:21 +0000 | [diff] [blame] | 906 | /* |
Al Viro | 287548e | 2011-05-27 06:50:06 -0400 | [diff] [blame] | 907 | * Try to skip to top of mountpoint pile in rcuwalk mode. Fail if |
| 908 | * we meet a managed dentry that would need blocking. |
David Howells | 9875cf8 | 2011-01-14 18:45:21 +0000 | [diff] [blame] | 909 | */ |
| 910 | static bool __follow_mount_rcu(struct nameidata *nd, struct path *path, |
Al Viro | 287548e | 2011-05-27 06:50:06 -0400 | [diff] [blame] | 911 | struct inode **inode) |
David Howells | 9875cf8 | 2011-01-14 18:45:21 +0000 | [diff] [blame] | 912 | { |
Ian Kent | 62a7375 | 2011-03-25 01:51:02 +0800 | [diff] [blame] | 913 | for (;;) { |
Al Viro | c710536 | 2011-11-24 18:22:03 -0500 | [diff] [blame] | 914 | struct mount *mounted; |
Ian Kent | 62a7375 | 2011-03-25 01:51:02 +0800 | [diff] [blame] | 915 | /* |
| 916 | * Don't forget we might have a non-mountpoint managed dentry |
| 917 | * that wants to block transit. |
| 918 | */ |
Al Viro | 287548e | 2011-05-27 06:50:06 -0400 | [diff] [blame] | 919 | if (unlikely(managed_dentry_might_block(path->dentry))) |
David Howells | ab90911 | 2011-01-14 18:46:51 +0000 | [diff] [blame] | 920 | return false; |
Ian Kent | 62a7375 | 2011-03-25 01:51:02 +0800 | [diff] [blame] | 921 | |
| 922 | if (!d_mountpoint(path->dentry)) |
| 923 | break; |
| 924 | |
David Howells | 9875cf8 | 2011-01-14 18:45:21 +0000 | [diff] [blame] | 925 | mounted = __lookup_mnt(path->mnt, path->dentry, 1); |
| 926 | if (!mounted) |
| 927 | break; |
Al Viro | c710536 | 2011-11-24 18:22:03 -0500 | [diff] [blame] | 928 | path->mnt = &mounted->mnt; |
| 929 | path->dentry = mounted->mnt.mnt_root; |
Al Viro | a3fbbde | 2011-11-07 21:21:26 +0000 | [diff] [blame] | 930 | nd->flags |= LOOKUP_JUMPED; |
David Howells | 9875cf8 | 2011-01-14 18:45:21 +0000 | [diff] [blame] | 931 | nd->seq = read_seqcount_begin(&path->dentry->d_seq); |
Linus Torvalds | 5943026 | 2011-07-18 15:43:29 -0700 | [diff] [blame] | 932 | /* |
| 933 | * Update the inode too. We don't need to re-check the |
| 934 | * dentry sequence number here after this d_inode read, |
| 935 | * because a mount-point is always pinned. |
| 936 | */ |
| 937 | *inode = path->dentry->d_inode; |
David Howells | 9875cf8 | 2011-01-14 18:45:21 +0000 | [diff] [blame] | 938 | } |
David Howells | 9875cf8 | 2011-01-14 18:45:21 +0000 | [diff] [blame] | 939 | return true; |
| 940 | } |
| 941 | |
Al Viro | dea3937 | 2011-05-27 06:53:39 -0400 | [diff] [blame] | 942 | static void follow_mount_rcu(struct nameidata *nd) |
Al Viro | 287548e | 2011-05-27 06:50:06 -0400 | [diff] [blame] | 943 | { |
Al Viro | dea3937 | 2011-05-27 06:53:39 -0400 | [diff] [blame] | 944 | while (d_mountpoint(nd->path.dentry)) { |
Al Viro | c710536 | 2011-11-24 18:22:03 -0500 | [diff] [blame] | 945 | struct mount *mounted; |
Al Viro | dea3937 | 2011-05-27 06:53:39 -0400 | [diff] [blame] | 946 | mounted = __lookup_mnt(nd->path.mnt, nd->path.dentry, 1); |
Al Viro | 287548e | 2011-05-27 06:50:06 -0400 | [diff] [blame] | 947 | if (!mounted) |
| 948 | break; |
Al Viro | c710536 | 2011-11-24 18:22:03 -0500 | [diff] [blame] | 949 | nd->path.mnt = &mounted->mnt; |
| 950 | nd->path.dentry = mounted->mnt.mnt_root; |
Al Viro | dea3937 | 2011-05-27 06:53:39 -0400 | [diff] [blame] | 951 | nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq); |
Al Viro | 287548e | 2011-05-27 06:50:06 -0400 | [diff] [blame] | 952 | } |
| 953 | } |
| 954 | |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 955 | static int follow_dotdot_rcu(struct nameidata *nd) |
| 956 | { |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 957 | set_root_rcu(nd); |
| 958 | |
David Howells | 9875cf8 | 2011-01-14 18:45:21 +0000 | [diff] [blame] | 959 | while (1) { |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 960 | if (nd->path.dentry == nd->root.dentry && |
| 961 | nd->path.mnt == nd->root.mnt) { |
| 962 | break; |
| 963 | } |
| 964 | if (nd->path.dentry != nd->path.mnt->mnt_root) { |
| 965 | struct dentry *old = nd->path.dentry; |
| 966 | struct dentry *parent = old->d_parent; |
| 967 | unsigned seq; |
| 968 | |
| 969 | seq = read_seqcount_begin(&parent->d_seq); |
| 970 | if (read_seqcount_retry(&old->d_seq, nd->seq)) |
Al Viro | ef7562d | 2011-03-04 14:35:59 -0500 | [diff] [blame] | 971 | goto failed; |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 972 | nd->path.dentry = parent; |
| 973 | nd->seq = seq; |
| 974 | break; |
| 975 | } |
| 976 | if (!follow_up_rcu(&nd->path)) |
| 977 | break; |
| 978 | nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq); |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 979 | } |
Al Viro | dea3937 | 2011-05-27 06:53:39 -0400 | [diff] [blame] | 980 | follow_mount_rcu(nd); |
| 981 | nd->inode = nd->path.dentry->d_inode; |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 982 | return 0; |
Al Viro | ef7562d | 2011-03-04 14:35:59 -0500 | [diff] [blame] | 983 | |
| 984 | failed: |
| 985 | nd->flags &= ~LOOKUP_RCU; |
Al Viro | 5b6ca02 | 2011-03-09 23:04:47 -0500 | [diff] [blame] | 986 | if (!(nd->flags & LOOKUP_ROOT)) |
| 987 | nd->root.mnt = NULL; |
Al Viro | ef7562d | 2011-03-04 14:35:59 -0500 | [diff] [blame] | 988 | rcu_read_unlock(); |
Andi Kleen | 962830d | 2012-05-08 13:32:02 +0930 | [diff] [blame] | 989 | br_read_unlock(&vfsmount_lock); |
Al Viro | ef7562d | 2011-03-04 14:35:59 -0500 | [diff] [blame] | 990 | return -ECHILD; |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 991 | } |
| 992 | |
David Howells | 9875cf8 | 2011-01-14 18:45:21 +0000 | [diff] [blame] | 993 | /* |
David Howells | cc53ce5 | 2011-01-14 18:45:26 +0000 | [diff] [blame] | 994 | * Follow down to the covering mount currently visible to userspace. At each |
| 995 | * point, the filesystem owning that dentry may be queried as to whether the |
| 996 | * caller is permitted to proceed or not. |
David Howells | cc53ce5 | 2011-01-14 18:45:26 +0000 | [diff] [blame] | 997 | */ |
Al Viro | 7cc90cc | 2011-03-18 09:04:20 -0400 | [diff] [blame] | 998 | int follow_down(struct path *path) |
David Howells | cc53ce5 | 2011-01-14 18:45:26 +0000 | [diff] [blame] | 999 | { |
| 1000 | unsigned managed; |
| 1001 | int ret; |
| 1002 | |
| 1003 | while (managed = ACCESS_ONCE(path->dentry->d_flags), |
| 1004 | unlikely(managed & DCACHE_MANAGED_DENTRY)) { |
| 1005 | /* Allow the filesystem to manage the transit without i_mutex |
| 1006 | * being held. |
| 1007 | * |
| 1008 | * We indicate to the filesystem if someone is trying to mount |
| 1009 | * something here. This gives autofs the chance to deny anyone |
| 1010 | * other than its daemon the right to mount on its |
| 1011 | * superstructure. |
| 1012 | * |
| 1013 | * The filesystem may sleep at this point. |
| 1014 | */ |
| 1015 | if (managed & DCACHE_MANAGE_TRANSIT) { |
| 1016 | BUG_ON(!path->dentry->d_op); |
| 1017 | BUG_ON(!path->dentry->d_op->d_manage); |
David Howells | ab90911 | 2011-01-14 18:46:51 +0000 | [diff] [blame] | 1018 | ret = path->dentry->d_op->d_manage( |
Al Viro | 1aed3e4 | 2011-03-18 09:09:02 -0400 | [diff] [blame] | 1019 | path->dentry, false); |
David Howells | cc53ce5 | 2011-01-14 18:45:26 +0000 | [diff] [blame] | 1020 | if (ret < 0) |
| 1021 | return ret == -EISDIR ? 0 : ret; |
| 1022 | } |
| 1023 | |
| 1024 | /* Transit to a mounted filesystem. */ |
| 1025 | if (managed & DCACHE_MOUNTED) { |
| 1026 | struct vfsmount *mounted = lookup_mnt(path); |
| 1027 | if (!mounted) |
| 1028 | break; |
| 1029 | dput(path->dentry); |
| 1030 | mntput(path->mnt); |
| 1031 | path->mnt = mounted; |
| 1032 | path->dentry = dget(mounted->mnt_root); |
| 1033 | continue; |
| 1034 | } |
| 1035 | |
| 1036 | /* Don't handle automount points here */ |
| 1037 | break; |
| 1038 | } |
| 1039 | return 0; |
| 1040 | } |
| 1041 | |
| 1042 | /* |
David Howells | 9875cf8 | 2011-01-14 18:45:21 +0000 | [diff] [blame] | 1043 | * Skip to top of mountpoint pile in refwalk mode for follow_dotdot() |
| 1044 | */ |
| 1045 | static void follow_mount(struct path *path) |
| 1046 | { |
| 1047 | while (d_mountpoint(path->dentry)) { |
| 1048 | struct vfsmount *mounted = lookup_mnt(path); |
| 1049 | if (!mounted) |
| 1050 | break; |
| 1051 | dput(path->dentry); |
| 1052 | mntput(path->mnt); |
| 1053 | path->mnt = mounted; |
| 1054 | path->dentry = dget(mounted->mnt_root); |
| 1055 | } |
| 1056 | } |
| 1057 | |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1058 | static void follow_dotdot(struct nameidata *nd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1059 | { |
Al Viro | 2a73787 | 2009-04-07 11:49:53 -0400 | [diff] [blame] | 1060 | set_root(nd); |
Andreas Mohr | e518ddb | 2006-09-29 02:01:22 -0700 | [diff] [blame] | 1061 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1062 | while(1) { |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 1063 | struct dentry *old = nd->path.dentry; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1064 | |
Al Viro | 2a73787 | 2009-04-07 11:49:53 -0400 | [diff] [blame] | 1065 | if (nd->path.dentry == nd->root.dentry && |
| 1066 | nd->path.mnt == nd->root.mnt) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1067 | break; |
| 1068 | } |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 1069 | if (nd->path.dentry != nd->path.mnt->mnt_root) { |
Al Viro | 3088dd7 | 2010-01-30 15:47:29 -0500 | [diff] [blame] | 1070 | /* rare case of legitimate dget_parent()... */ |
| 1071 | nd->path.dentry = dget_parent(nd->path.dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1072 | dput(old); |
| 1073 | break; |
| 1074 | } |
Al Viro | 3088dd7 | 2010-01-30 15:47:29 -0500 | [diff] [blame] | 1075 | if (!follow_up(&nd->path)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1076 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1077 | } |
Al Viro | 79ed022 | 2009-04-18 13:59:41 -0400 | [diff] [blame] | 1078 | follow_mount(&nd->path); |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1079 | nd->inode = nd->path.dentry->d_inode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1080 | } |
| 1081 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1082 | /* |
Miklos Szeredi | bad6118 | 2012-03-26 12:54:24 +0200 | [diff] [blame] | 1083 | * This looks up the name in dcache, possibly revalidates the old dentry and |
| 1084 | * allocates a new one if not found or not valid. In the need_lookup argument |
| 1085 | * returns whether i_op->lookup is necessary. |
| 1086 | * |
| 1087 | * dir->d_inode->i_mutex must be held |
Nick Piggin | baa0389 | 2010-08-18 04:37:31 +1000 | [diff] [blame] | 1088 | */ |
Miklos Szeredi | bad6118 | 2012-03-26 12:54:24 +0200 | [diff] [blame] | 1089 | static struct dentry *lookup_dcache(struct qstr *name, struct dentry *dir, |
Al Viro | 201f956 | 2012-06-22 12:42:10 +0400 | [diff] [blame] | 1090 | unsigned int flags, bool *need_lookup) |
Nick Piggin | baa0389 | 2010-08-18 04:37:31 +1000 | [diff] [blame] | 1091 | { |
Nick Piggin | baa0389 | 2010-08-18 04:37:31 +1000 | [diff] [blame] | 1092 | struct dentry *dentry; |
Miklos Szeredi | bad6118 | 2012-03-26 12:54:24 +0200 | [diff] [blame] | 1093 | int error; |
Nick Piggin | baa0389 | 2010-08-18 04:37:31 +1000 | [diff] [blame] | 1094 | |
Miklos Szeredi | bad6118 | 2012-03-26 12:54:24 +0200 | [diff] [blame] | 1095 | *need_lookup = false; |
| 1096 | dentry = d_lookup(dir, name); |
| 1097 | if (dentry) { |
| 1098 | if (d_need_lookup(dentry)) { |
| 1099 | *need_lookup = true; |
| 1100 | } else if (dentry->d_flags & DCACHE_OP_REVALIDATE) { |
Al Viro | 201f956 | 2012-06-22 12:42:10 +0400 | [diff] [blame] | 1101 | error = d_revalidate(dentry, flags); |
Miklos Szeredi | bad6118 | 2012-03-26 12:54:24 +0200 | [diff] [blame] | 1102 | if (unlikely(error <= 0)) { |
| 1103 | if (error < 0) { |
| 1104 | dput(dentry); |
| 1105 | return ERR_PTR(error); |
| 1106 | } else if (!d_invalidate(dentry)) { |
| 1107 | dput(dentry); |
| 1108 | dentry = NULL; |
| 1109 | } |
| 1110 | } |
| 1111 | } |
| 1112 | } |
Nick Piggin | baa0389 | 2010-08-18 04:37:31 +1000 | [diff] [blame] | 1113 | |
Miklos Szeredi | bad6118 | 2012-03-26 12:54:24 +0200 | [diff] [blame] | 1114 | if (!dentry) { |
| 1115 | dentry = d_alloc(dir, name); |
| 1116 | if (unlikely(!dentry)) |
| 1117 | return ERR_PTR(-ENOMEM); |
Nick Piggin | baa0389 | 2010-08-18 04:37:31 +1000 | [diff] [blame] | 1118 | |
Miklos Szeredi | bad6118 | 2012-03-26 12:54:24 +0200 | [diff] [blame] | 1119 | *need_lookup = true; |
Nick Piggin | baa0389 | 2010-08-18 04:37:31 +1000 | [diff] [blame] | 1120 | } |
| 1121 | return dentry; |
| 1122 | } |
| 1123 | |
| 1124 | /* |
Miklos Szeredi | bad6118 | 2012-03-26 12:54:24 +0200 | [diff] [blame] | 1125 | * Call i_op->lookup on the dentry. The dentry must be negative but may be |
| 1126 | * hashed if it was pouplated with DCACHE_NEED_LOOKUP. |
| 1127 | * |
| 1128 | * dir->d_inode->i_mutex must be held |
Josef Bacik | 44396f4 | 2011-05-31 11:58:49 -0400 | [diff] [blame] | 1129 | */ |
Miklos Szeredi | bad6118 | 2012-03-26 12:54:24 +0200 | [diff] [blame] | 1130 | static struct dentry *lookup_real(struct inode *dir, struct dentry *dentry, |
Al Viro | 72bd866 | 2012-06-10 17:17:17 -0400 | [diff] [blame] | 1131 | unsigned int flags) |
Josef Bacik | 44396f4 | 2011-05-31 11:58:49 -0400 | [diff] [blame] | 1132 | { |
Josef Bacik | 44396f4 | 2011-05-31 11:58:49 -0400 | [diff] [blame] | 1133 | struct dentry *old; |
| 1134 | |
| 1135 | /* Don't create child dentry for a dead directory. */ |
Miklos Szeredi | bad6118 | 2012-03-26 12:54:24 +0200 | [diff] [blame] | 1136 | if (unlikely(IS_DEADDIR(dir))) { |
Miklos Szeredi | e188dc0 | 2012-02-03 14:25:18 +0100 | [diff] [blame] | 1137 | dput(dentry); |
Josef Bacik | 44396f4 | 2011-05-31 11:58:49 -0400 | [diff] [blame] | 1138 | return ERR_PTR(-ENOENT); |
Miklos Szeredi | e188dc0 | 2012-02-03 14:25:18 +0100 | [diff] [blame] | 1139 | } |
Josef Bacik | 44396f4 | 2011-05-31 11:58:49 -0400 | [diff] [blame] | 1140 | |
Al Viro | 72bd866 | 2012-06-10 17:17:17 -0400 | [diff] [blame] | 1141 | old = dir->i_op->lookup(dir, dentry, flags); |
Josef Bacik | 44396f4 | 2011-05-31 11:58:49 -0400 | [diff] [blame] | 1142 | if (unlikely(old)) { |
| 1143 | dput(dentry); |
| 1144 | dentry = old; |
| 1145 | } |
| 1146 | return dentry; |
| 1147 | } |
| 1148 | |
Al Viro | a325554 | 2012-03-30 14:41:51 -0400 | [diff] [blame] | 1149 | static struct dentry *__lookup_hash(struct qstr *name, |
Al Viro | 72bd866 | 2012-06-10 17:17:17 -0400 | [diff] [blame] | 1150 | struct dentry *base, unsigned int flags) |
Al Viro | a325554 | 2012-03-30 14:41:51 -0400 | [diff] [blame] | 1151 | { |
Miklos Szeredi | bad6118 | 2012-03-26 12:54:24 +0200 | [diff] [blame] | 1152 | bool need_lookup; |
Al Viro | a325554 | 2012-03-30 14:41:51 -0400 | [diff] [blame] | 1153 | struct dentry *dentry; |
| 1154 | |
Al Viro | 72bd866 | 2012-06-10 17:17:17 -0400 | [diff] [blame] | 1155 | dentry = lookup_dcache(name, base, flags, &need_lookup); |
Miklos Szeredi | bad6118 | 2012-03-26 12:54:24 +0200 | [diff] [blame] | 1156 | if (!need_lookup) |
| 1157 | return dentry; |
Al Viro | a325554 | 2012-03-30 14:41:51 -0400 | [diff] [blame] | 1158 | |
Al Viro | 72bd866 | 2012-06-10 17:17:17 -0400 | [diff] [blame] | 1159 | return lookup_real(base->d_inode, dentry, flags); |
Al Viro | a325554 | 2012-03-30 14:41:51 -0400 | [diff] [blame] | 1160 | } |
| 1161 | |
Josef Bacik | 44396f4 | 2011-05-31 11:58:49 -0400 | [diff] [blame] | 1162 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1163 | * It's more convoluted than I'd like it to be, but... it's still fairly |
| 1164 | * small and for now I'd prefer to have fast path as straight as possible. |
| 1165 | * It _is_ time-critical. |
| 1166 | */ |
Miklos Szeredi | 697f514 | 2012-05-21 17:30:05 +0200 | [diff] [blame] | 1167 | static int lookup_fast(struct nameidata *nd, struct qstr *name, |
| 1168 | struct path *path, struct inode **inode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1169 | { |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 1170 | struct vfsmount *mnt = nd->path.mnt; |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1171 | struct dentry *dentry, *parent = nd->path.dentry; |
Al Viro | 5a18fff | 2011-03-11 04:44:53 -0500 | [diff] [blame] | 1172 | int need_reval = 1; |
| 1173 | int status = 1; |
David Howells | 9875cf8 | 2011-01-14 18:45:21 +0000 | [diff] [blame] | 1174 | int err; |
| 1175 | |
Al Viro | 3cac260 | 2009-08-13 18:27:43 +0400 | [diff] [blame] | 1176 | /* |
Nick Piggin | b04f784 | 2010-08-18 04:37:34 +1000 | [diff] [blame] | 1177 | * Rename seqlock is not required here because in the off chance |
| 1178 | * of a false negative due to a concurrent rename, we're going to |
| 1179 | * do the non-racy lookup, below. |
| 1180 | */ |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1181 | if (nd->flags & LOOKUP_RCU) { |
| 1182 | unsigned seq; |
Linus Torvalds | 12f8ad4 | 2012-05-04 14:59:14 -0700 | [diff] [blame] | 1183 | dentry = __d_lookup_rcu(parent, name, &seq, nd->inode); |
Al Viro | 5a18fff | 2011-03-11 04:44:53 -0500 | [diff] [blame] | 1184 | if (!dentry) |
| 1185 | goto unlazy; |
| 1186 | |
Linus Torvalds | 12f8ad4 | 2012-05-04 14:59:14 -0700 | [diff] [blame] | 1187 | /* |
| 1188 | * This sequence count validates that the inode matches |
| 1189 | * the dentry name information from lookup. |
| 1190 | */ |
| 1191 | *inode = dentry->d_inode; |
| 1192 | if (read_seqcount_retry(&dentry->d_seq, seq)) |
| 1193 | return -ECHILD; |
| 1194 | |
| 1195 | /* |
| 1196 | * This sequence count validates that the parent had no |
| 1197 | * changes while we did the lookup of the dentry above. |
| 1198 | * |
| 1199 | * The memory barrier in read_seqcount_begin of child is |
| 1200 | * enough, we can use __read_seqcount_retry here. |
| 1201 | */ |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1202 | if (__read_seqcount_retry(&parent->d_seq, nd->seq)) |
| 1203 | return -ECHILD; |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1204 | nd->seq = seq; |
Al Viro | 5a18fff | 2011-03-11 04:44:53 -0500 | [diff] [blame] | 1205 | |
Miklos Szeredi | fa4ee15 | 2012-03-26 12:54:19 +0200 | [diff] [blame] | 1206 | if (unlikely(d_need_lookup(dentry))) |
| 1207 | goto unlazy; |
Al Viro | 2464308 | 2011-02-15 01:26:22 -0500 | [diff] [blame] | 1208 | if (unlikely(dentry->d_flags & DCACHE_OP_REVALIDATE)) { |
Al Viro | 4ce16ef3 | 2012-06-10 16:10:59 -0400 | [diff] [blame] | 1209 | status = d_revalidate(dentry, nd->flags); |
Al Viro | 5a18fff | 2011-03-11 04:44:53 -0500 | [diff] [blame] | 1210 | if (unlikely(status <= 0)) { |
| 1211 | if (status != -ECHILD) |
| 1212 | need_reval = 0; |
| 1213 | goto unlazy; |
| 1214 | } |
Al Viro | 2464308 | 2011-02-15 01:26:22 -0500 | [diff] [blame] | 1215 | } |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1216 | path->mnt = mnt; |
| 1217 | path->dentry = dentry; |
Al Viro | d6e9bd2 | 2011-05-27 07:03:15 -0400 | [diff] [blame] | 1218 | if (unlikely(!__follow_mount_rcu(nd, path, inode))) |
| 1219 | goto unlazy; |
| 1220 | if (unlikely(path->dentry->d_flags & DCACHE_NEED_AUTOMOUNT)) |
| 1221 | goto unlazy; |
| 1222 | return 0; |
Al Viro | 5a18fff | 2011-03-11 04:44:53 -0500 | [diff] [blame] | 1223 | unlazy: |
Al Viro | 19660af | 2011-03-25 10:32:48 -0400 | [diff] [blame] | 1224 | if (unlazy_walk(nd, dentry)) |
| 1225 | return -ECHILD; |
Al Viro | 5a18fff | 2011-03-11 04:44:53 -0500 | [diff] [blame] | 1226 | } else { |
| 1227 | dentry = __d_lookup(parent, name); |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1228 | } |
Al Viro | 5a18fff | 2011-03-11 04:44:53 -0500 | [diff] [blame] | 1229 | |
Al Viro | 81e6f52 | 2012-03-30 14:48:04 -0400 | [diff] [blame] | 1230 | if (unlikely(!dentry)) |
| 1231 | goto need_lookup; |
Al Viro | 5a18fff | 2011-03-11 04:44:53 -0500 | [diff] [blame] | 1232 | |
Al Viro | 81e6f52 | 2012-03-30 14:48:04 -0400 | [diff] [blame] | 1233 | if (unlikely(d_need_lookup(dentry))) { |
| 1234 | dput(dentry); |
| 1235 | goto need_lookup; |
Al Viro | 2464308 | 2011-02-15 01:26:22 -0500 | [diff] [blame] | 1236 | } |
Al Viro | 81e6f52 | 2012-03-30 14:48:04 -0400 | [diff] [blame] | 1237 | |
Al Viro | 5a18fff | 2011-03-11 04:44:53 -0500 | [diff] [blame] | 1238 | if (unlikely(dentry->d_flags & DCACHE_OP_REVALIDATE) && need_reval) |
Al Viro | 4ce16ef3 | 2012-06-10 16:10:59 -0400 | [diff] [blame] | 1239 | status = d_revalidate(dentry, nd->flags); |
Al Viro | 5a18fff | 2011-03-11 04:44:53 -0500 | [diff] [blame] | 1240 | if (unlikely(status <= 0)) { |
| 1241 | if (status < 0) { |
| 1242 | dput(dentry); |
| 1243 | return status; |
| 1244 | } |
| 1245 | if (!d_invalidate(dentry)) { |
| 1246 | dput(dentry); |
Al Viro | 81e6f52 | 2012-03-30 14:48:04 -0400 | [diff] [blame] | 1247 | goto need_lookup; |
Al Viro | 5a18fff | 2011-03-11 04:44:53 -0500 | [diff] [blame] | 1248 | } |
| 1249 | } |
Miklos Szeredi | 697f514 | 2012-05-21 17:30:05 +0200 | [diff] [blame] | 1250 | |
David Howells | 9875cf8 | 2011-01-14 18:45:21 +0000 | [diff] [blame] | 1251 | path->mnt = mnt; |
| 1252 | path->dentry = dentry; |
| 1253 | err = follow_managed(path, nd->flags); |
Ian Kent | 8931221 | 2011-01-18 12:06:10 +0800 | [diff] [blame] | 1254 | if (unlikely(err < 0)) { |
| 1255 | path_put_conditional(path, nd); |
David Howells | 9875cf8 | 2011-01-14 18:45:21 +0000 | [diff] [blame] | 1256 | return err; |
Ian Kent | 8931221 | 2011-01-18 12:06:10 +0800 | [diff] [blame] | 1257 | } |
Al Viro | a3fbbde | 2011-11-07 21:21:26 +0000 | [diff] [blame] | 1258 | if (err) |
| 1259 | nd->flags |= LOOKUP_JUMPED; |
David Howells | 9875cf8 | 2011-01-14 18:45:21 +0000 | [diff] [blame] | 1260 | *inode = path->dentry->d_inode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1261 | return 0; |
Al Viro | 81e6f52 | 2012-03-30 14:48:04 -0400 | [diff] [blame] | 1262 | |
| 1263 | need_lookup: |
Miklos Szeredi | 697f514 | 2012-05-21 17:30:05 +0200 | [diff] [blame] | 1264 | return 1; |
| 1265 | } |
| 1266 | |
| 1267 | /* Fast lookup failed, do it the slow way */ |
| 1268 | static int lookup_slow(struct nameidata *nd, struct qstr *name, |
| 1269 | struct path *path) |
| 1270 | { |
| 1271 | struct dentry *dentry, *parent; |
| 1272 | int err; |
| 1273 | |
| 1274 | parent = nd->path.dentry; |
Al Viro | 81e6f52 | 2012-03-30 14:48:04 -0400 | [diff] [blame] | 1275 | BUG_ON(nd->inode != parent->d_inode); |
| 1276 | |
| 1277 | mutex_lock(&parent->d_inode->i_mutex); |
Al Viro | 72bd866 | 2012-06-10 17:17:17 -0400 | [diff] [blame] | 1278 | dentry = __lookup_hash(name, parent, nd->flags); |
Al Viro | 81e6f52 | 2012-03-30 14:48:04 -0400 | [diff] [blame] | 1279 | mutex_unlock(&parent->d_inode->i_mutex); |
| 1280 | if (IS_ERR(dentry)) |
| 1281 | return PTR_ERR(dentry); |
Miklos Szeredi | 697f514 | 2012-05-21 17:30:05 +0200 | [diff] [blame] | 1282 | path->mnt = nd->path.mnt; |
| 1283 | path->dentry = dentry; |
| 1284 | err = follow_managed(path, nd->flags); |
| 1285 | if (unlikely(err < 0)) { |
| 1286 | path_put_conditional(path, nd); |
| 1287 | return err; |
| 1288 | } |
| 1289 | if (err) |
| 1290 | nd->flags |= LOOKUP_JUMPED; |
| 1291 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1292 | } |
| 1293 | |
Al Viro | 52094c8 | 2011-02-21 21:34:47 -0500 | [diff] [blame] | 1294 | static inline int may_lookup(struct nameidata *nd) |
| 1295 | { |
| 1296 | if (nd->flags & LOOKUP_RCU) { |
Al Viro | 4ad5abb | 2011-06-20 19:57:03 -0400 | [diff] [blame] | 1297 | int err = inode_permission(nd->inode, MAY_EXEC|MAY_NOT_BLOCK); |
Al Viro | 52094c8 | 2011-02-21 21:34:47 -0500 | [diff] [blame] | 1298 | if (err != -ECHILD) |
| 1299 | return err; |
Al Viro | 19660af | 2011-03-25 10:32:48 -0400 | [diff] [blame] | 1300 | if (unlazy_walk(nd, NULL)) |
Al Viro | 52094c8 | 2011-02-21 21:34:47 -0500 | [diff] [blame] | 1301 | return -ECHILD; |
| 1302 | } |
Al Viro | 4ad5abb | 2011-06-20 19:57:03 -0400 | [diff] [blame] | 1303 | return inode_permission(nd->inode, MAY_EXEC); |
Al Viro | 52094c8 | 2011-02-21 21:34:47 -0500 | [diff] [blame] | 1304 | } |
| 1305 | |
Al Viro | 9856fa1 | 2011-03-04 14:22:06 -0500 | [diff] [blame] | 1306 | static inline int handle_dots(struct nameidata *nd, int type) |
| 1307 | { |
| 1308 | if (type == LAST_DOTDOT) { |
| 1309 | if (nd->flags & LOOKUP_RCU) { |
| 1310 | if (follow_dotdot_rcu(nd)) |
| 1311 | return -ECHILD; |
| 1312 | } else |
| 1313 | follow_dotdot(nd); |
| 1314 | } |
| 1315 | return 0; |
| 1316 | } |
| 1317 | |
Al Viro | 951361f | 2011-03-04 14:44:37 -0500 | [diff] [blame] | 1318 | static void terminate_walk(struct nameidata *nd) |
| 1319 | { |
| 1320 | if (!(nd->flags & LOOKUP_RCU)) { |
| 1321 | path_put(&nd->path); |
| 1322 | } else { |
| 1323 | nd->flags &= ~LOOKUP_RCU; |
Al Viro | 5b6ca02 | 2011-03-09 23:04:47 -0500 | [diff] [blame] | 1324 | if (!(nd->flags & LOOKUP_ROOT)) |
| 1325 | nd->root.mnt = NULL; |
Al Viro | 951361f | 2011-03-04 14:44:37 -0500 | [diff] [blame] | 1326 | rcu_read_unlock(); |
Andi Kleen | 962830d | 2012-05-08 13:32:02 +0930 | [diff] [blame] | 1327 | br_read_unlock(&vfsmount_lock); |
Al Viro | 951361f | 2011-03-04 14:44:37 -0500 | [diff] [blame] | 1328 | } |
| 1329 | } |
| 1330 | |
Linus Torvalds | 3ddcd05 | 2011-08-06 22:45:50 -0700 | [diff] [blame] | 1331 | /* |
| 1332 | * Do we need to follow links? We _really_ want to be able |
| 1333 | * to do this check without having to look at inode->i_op, |
| 1334 | * so we keep a cache of "no, this doesn't need follow_link" |
| 1335 | * for the common case. |
| 1336 | */ |
Linus Torvalds | 7813b94 | 2011-08-07 09:53:20 -0700 | [diff] [blame] | 1337 | static inline int should_follow_link(struct inode *inode, int follow) |
Linus Torvalds | 3ddcd05 | 2011-08-06 22:45:50 -0700 | [diff] [blame] | 1338 | { |
| 1339 | if (unlikely(!(inode->i_opflags & IOP_NOFOLLOW))) { |
| 1340 | if (likely(inode->i_op->follow_link)) |
| 1341 | return follow; |
| 1342 | |
| 1343 | /* This gets set once for the inode lifetime */ |
| 1344 | spin_lock(&inode->i_lock); |
| 1345 | inode->i_opflags |= IOP_NOFOLLOW; |
| 1346 | spin_unlock(&inode->i_lock); |
| 1347 | } |
| 1348 | return 0; |
| 1349 | } |
| 1350 | |
Al Viro | ce57dfc | 2011-03-13 19:58:58 -0400 | [diff] [blame] | 1351 | static inline int walk_component(struct nameidata *nd, struct path *path, |
| 1352 | struct qstr *name, int type, int follow) |
| 1353 | { |
| 1354 | struct inode *inode; |
| 1355 | int err; |
| 1356 | /* |
| 1357 | * "." and ".." are special - ".." especially so because it has |
| 1358 | * to be able to know about the current root directory and |
| 1359 | * parent relationships. |
| 1360 | */ |
| 1361 | if (unlikely(type != LAST_NORM)) |
| 1362 | return handle_dots(nd, type); |
Miklos Szeredi | 697f514 | 2012-05-21 17:30:05 +0200 | [diff] [blame] | 1363 | err = lookup_fast(nd, name, path, &inode); |
Al Viro | ce57dfc | 2011-03-13 19:58:58 -0400 | [diff] [blame] | 1364 | if (unlikely(err)) { |
Miklos Szeredi | 697f514 | 2012-05-21 17:30:05 +0200 | [diff] [blame] | 1365 | if (err < 0) |
| 1366 | goto out_err; |
| 1367 | |
| 1368 | err = lookup_slow(nd, name, path); |
| 1369 | if (err < 0) |
| 1370 | goto out_err; |
| 1371 | |
| 1372 | inode = path->dentry->d_inode; |
Al Viro | ce57dfc | 2011-03-13 19:58:58 -0400 | [diff] [blame] | 1373 | } |
Miklos Szeredi | 697f514 | 2012-05-21 17:30:05 +0200 | [diff] [blame] | 1374 | err = -ENOENT; |
| 1375 | if (!inode) |
| 1376 | goto out_path_put; |
| 1377 | |
Linus Torvalds | 7813b94 | 2011-08-07 09:53:20 -0700 | [diff] [blame] | 1378 | if (should_follow_link(inode, follow)) { |
Al Viro | 19660af | 2011-03-25 10:32:48 -0400 | [diff] [blame] | 1379 | if (nd->flags & LOOKUP_RCU) { |
| 1380 | if (unlikely(unlazy_walk(nd, path->dentry))) { |
Miklos Szeredi | 697f514 | 2012-05-21 17:30:05 +0200 | [diff] [blame] | 1381 | err = -ECHILD; |
| 1382 | goto out_err; |
Al Viro | 19660af | 2011-03-25 10:32:48 -0400 | [diff] [blame] | 1383 | } |
| 1384 | } |
Al Viro | ce57dfc | 2011-03-13 19:58:58 -0400 | [diff] [blame] | 1385 | BUG_ON(inode != path->dentry->d_inode); |
| 1386 | return 1; |
| 1387 | } |
| 1388 | path_to_nameidata(path, nd); |
| 1389 | nd->inode = inode; |
| 1390 | return 0; |
Miklos Szeredi | 697f514 | 2012-05-21 17:30:05 +0200 | [diff] [blame] | 1391 | |
| 1392 | out_path_put: |
| 1393 | path_to_nameidata(path, nd); |
| 1394 | out_err: |
| 1395 | terminate_walk(nd); |
| 1396 | return err; |
Al Viro | ce57dfc | 2011-03-13 19:58:58 -0400 | [diff] [blame] | 1397 | } |
| 1398 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1399 | /* |
Al Viro | b356379 | 2011-03-14 21:54:55 -0400 | [diff] [blame] | 1400 | * This limits recursive symlink follows to 8, while |
| 1401 | * limiting consecutive symlinks to 40. |
| 1402 | * |
| 1403 | * Without that kind of total limit, nasty chains of consecutive |
| 1404 | * symlinks can cause almost arbitrarily long lookups. |
| 1405 | */ |
| 1406 | static inline int nested_symlink(struct path *path, struct nameidata *nd) |
| 1407 | { |
| 1408 | int res; |
| 1409 | |
Al Viro | b356379 | 2011-03-14 21:54:55 -0400 | [diff] [blame] | 1410 | if (unlikely(current->link_count >= MAX_NESTED_LINKS)) { |
| 1411 | path_put_conditional(path, nd); |
| 1412 | path_put(&nd->path); |
| 1413 | return -ELOOP; |
| 1414 | } |
Erez Zadok | 1a4022f | 2011-05-21 01:19:59 -0400 | [diff] [blame] | 1415 | BUG_ON(nd->depth >= MAX_NESTED_LINKS); |
Al Viro | b356379 | 2011-03-14 21:54:55 -0400 | [diff] [blame] | 1416 | |
| 1417 | nd->depth++; |
| 1418 | current->link_count++; |
| 1419 | |
| 1420 | do { |
| 1421 | struct path link = *path; |
| 1422 | void *cookie; |
Al Viro | 574197e | 2011-03-14 22:20:34 -0400 | [diff] [blame] | 1423 | |
| 1424 | res = follow_link(&link, nd, &cookie); |
Al Viro | 6d7b5aa | 2012-06-10 04:15:17 -0400 | [diff] [blame] | 1425 | if (res) |
| 1426 | break; |
| 1427 | res = walk_component(nd, path, &nd->last, |
| 1428 | nd->last_type, LOOKUP_FOLLOW); |
Al Viro | 574197e | 2011-03-14 22:20:34 -0400 | [diff] [blame] | 1429 | put_link(nd, &link, cookie); |
Al Viro | b356379 | 2011-03-14 21:54:55 -0400 | [diff] [blame] | 1430 | } while (res > 0); |
| 1431 | |
| 1432 | current->link_count--; |
| 1433 | nd->depth--; |
| 1434 | return res; |
| 1435 | } |
| 1436 | |
| 1437 | /* |
Linus Torvalds | 3ddcd05 | 2011-08-06 22:45:50 -0700 | [diff] [blame] | 1438 | * We really don't want to look at inode->i_op->lookup |
| 1439 | * when we don't have to. So we keep a cache bit in |
| 1440 | * the inode ->i_opflags field that says "yes, we can |
| 1441 | * do lookup on this inode". |
| 1442 | */ |
| 1443 | static inline int can_lookup(struct inode *inode) |
| 1444 | { |
| 1445 | if (likely(inode->i_opflags & IOP_LOOKUP)) |
| 1446 | return 1; |
| 1447 | if (likely(!inode->i_op->lookup)) |
| 1448 | return 0; |
| 1449 | |
| 1450 | /* We do this once for the lifetime of the inode */ |
| 1451 | spin_lock(&inode->i_lock); |
| 1452 | inode->i_opflags |= IOP_LOOKUP; |
| 1453 | spin_unlock(&inode->i_lock); |
| 1454 | return 1; |
| 1455 | } |
| 1456 | |
Linus Torvalds | bfcfaa7 | 2012-03-06 11:16:17 -0800 | [diff] [blame] | 1457 | /* |
| 1458 | * We can do the critical dentry name comparison and hashing |
| 1459 | * operations one word at a time, but we are limited to: |
| 1460 | * |
| 1461 | * - Architectures with fast unaligned word accesses. We could |
| 1462 | * do a "get_unaligned()" if this helps and is sufficiently |
| 1463 | * fast. |
| 1464 | * |
| 1465 | * - Little-endian machines (so that we can generate the mask |
| 1466 | * of low bytes efficiently). Again, we *could* do a byte |
| 1467 | * swapping load on big-endian architectures if that is not |
| 1468 | * expensive enough to make the optimization worthless. |
| 1469 | * |
| 1470 | * - non-CONFIG_DEBUG_PAGEALLOC configurations (so that we |
| 1471 | * do not trap on the (extremely unlikely) case of a page |
| 1472 | * crossing operation. |
| 1473 | * |
| 1474 | * - Furthermore, we need an efficient 64-bit compile for the |
| 1475 | * 64-bit case in order to generate the "number of bytes in |
| 1476 | * the final mask". Again, that could be replaced with a |
| 1477 | * efficient population count instruction or similar. |
| 1478 | */ |
| 1479 | #ifdef CONFIG_DCACHE_WORD_ACCESS |
| 1480 | |
Linus Torvalds | f68e556 | 2012-04-06 13:54:56 -0700 | [diff] [blame] | 1481 | #include <asm/word-at-a-time.h> |
Linus Torvalds | bfcfaa7 | 2012-03-06 11:16:17 -0800 | [diff] [blame] | 1482 | |
Linus Torvalds | f68e556 | 2012-04-06 13:54:56 -0700 | [diff] [blame] | 1483 | #ifdef CONFIG_64BIT |
Linus Torvalds | bfcfaa7 | 2012-03-06 11:16:17 -0800 | [diff] [blame] | 1484 | |
| 1485 | static inline unsigned int fold_hash(unsigned long hash) |
| 1486 | { |
| 1487 | hash += hash >> (8*sizeof(int)); |
| 1488 | return hash; |
| 1489 | } |
| 1490 | |
| 1491 | #else /* 32-bit case */ |
| 1492 | |
Linus Torvalds | bfcfaa7 | 2012-03-06 11:16:17 -0800 | [diff] [blame] | 1493 | #define fold_hash(x) (x) |
| 1494 | |
| 1495 | #endif |
| 1496 | |
| 1497 | unsigned int full_name_hash(const unsigned char *name, unsigned int len) |
| 1498 | { |
| 1499 | unsigned long a, mask; |
| 1500 | unsigned long hash = 0; |
| 1501 | |
| 1502 | for (;;) { |
Linus Torvalds | e419b4c | 2012-05-03 10:16:43 -0700 | [diff] [blame] | 1503 | a = load_unaligned_zeropad(name); |
Linus Torvalds | bfcfaa7 | 2012-03-06 11:16:17 -0800 | [diff] [blame] | 1504 | if (len < sizeof(unsigned long)) |
| 1505 | break; |
| 1506 | hash += a; |
Al Viro | f132c5b | 2012-03-22 21:59:52 +0000 | [diff] [blame] | 1507 | hash *= 9; |
Linus Torvalds | bfcfaa7 | 2012-03-06 11:16:17 -0800 | [diff] [blame] | 1508 | name += sizeof(unsigned long); |
| 1509 | len -= sizeof(unsigned long); |
| 1510 | if (!len) |
| 1511 | goto done; |
| 1512 | } |
| 1513 | mask = ~(~0ul << len*8); |
| 1514 | hash += mask & a; |
| 1515 | done: |
| 1516 | return fold_hash(hash); |
| 1517 | } |
| 1518 | EXPORT_SYMBOL(full_name_hash); |
| 1519 | |
Linus Torvalds | bfcfaa7 | 2012-03-06 11:16:17 -0800 | [diff] [blame] | 1520 | /* |
| 1521 | * Calculate the length and hash of the path component, and |
| 1522 | * return the length of the component; |
| 1523 | */ |
| 1524 | static inline unsigned long hash_name(const char *name, unsigned int *hashp) |
| 1525 | { |
Linus Torvalds | 36126f8 | 2012-05-26 10:43:17 -0700 | [diff] [blame] | 1526 | unsigned long a, b, adata, bdata, mask, hash, len; |
| 1527 | const struct word_at_a_time constants = WORD_AT_A_TIME_CONSTANTS; |
Linus Torvalds | bfcfaa7 | 2012-03-06 11:16:17 -0800 | [diff] [blame] | 1528 | |
| 1529 | hash = a = 0; |
| 1530 | len = -sizeof(unsigned long); |
| 1531 | do { |
| 1532 | hash = (hash + a) * 9; |
| 1533 | len += sizeof(unsigned long); |
Linus Torvalds | e419b4c | 2012-05-03 10:16:43 -0700 | [diff] [blame] | 1534 | a = load_unaligned_zeropad(name+len); |
Linus Torvalds | 36126f8 | 2012-05-26 10:43:17 -0700 | [diff] [blame] | 1535 | b = a ^ REPEAT_BYTE('/'); |
| 1536 | } while (!(has_zero(a, &adata, &constants) | has_zero(b, &bdata, &constants))); |
Linus Torvalds | bfcfaa7 | 2012-03-06 11:16:17 -0800 | [diff] [blame] | 1537 | |
Linus Torvalds | 36126f8 | 2012-05-26 10:43:17 -0700 | [diff] [blame] | 1538 | adata = prep_zero_mask(a, adata, &constants); |
| 1539 | bdata = prep_zero_mask(b, bdata, &constants); |
| 1540 | |
| 1541 | mask = create_zero_mask(adata | bdata); |
| 1542 | |
| 1543 | hash += a & zero_bytemask(mask); |
Linus Torvalds | bfcfaa7 | 2012-03-06 11:16:17 -0800 | [diff] [blame] | 1544 | *hashp = fold_hash(hash); |
| 1545 | |
Linus Torvalds | 36126f8 | 2012-05-26 10:43:17 -0700 | [diff] [blame] | 1546 | return len + find_zero(mask); |
Linus Torvalds | bfcfaa7 | 2012-03-06 11:16:17 -0800 | [diff] [blame] | 1547 | } |
| 1548 | |
| 1549 | #else |
| 1550 | |
Linus Torvalds | 0145acc | 2012-03-02 14:32:59 -0800 | [diff] [blame] | 1551 | unsigned int full_name_hash(const unsigned char *name, unsigned int len) |
| 1552 | { |
| 1553 | unsigned long hash = init_name_hash(); |
| 1554 | while (len--) |
| 1555 | hash = partial_name_hash(*name++, hash); |
| 1556 | return end_name_hash(hash); |
| 1557 | } |
Linus Torvalds | ae942ae | 2012-03-02 19:40:57 -0800 | [diff] [blame] | 1558 | EXPORT_SYMBOL(full_name_hash); |
Linus Torvalds | 0145acc | 2012-03-02 14:32:59 -0800 | [diff] [blame] | 1559 | |
Linus Torvalds | 3ddcd05 | 2011-08-06 22:45:50 -0700 | [diff] [blame] | 1560 | /* |
Linus Torvalds | 200e9ef | 2012-03-02 14:49:24 -0800 | [diff] [blame] | 1561 | * We know there's a real path component here of at least |
| 1562 | * one character. |
| 1563 | */ |
| 1564 | static inline unsigned long hash_name(const char *name, unsigned int *hashp) |
| 1565 | { |
| 1566 | unsigned long hash = init_name_hash(); |
| 1567 | unsigned long len = 0, c; |
| 1568 | |
| 1569 | c = (unsigned char)*name; |
| 1570 | do { |
| 1571 | len++; |
| 1572 | hash = partial_name_hash(c, hash); |
| 1573 | c = (unsigned char)name[len]; |
| 1574 | } while (c && c != '/'); |
| 1575 | *hashp = end_name_hash(hash); |
| 1576 | return len; |
| 1577 | } |
| 1578 | |
Linus Torvalds | bfcfaa7 | 2012-03-06 11:16:17 -0800 | [diff] [blame] | 1579 | #endif |
| 1580 | |
Linus Torvalds | 200e9ef | 2012-03-02 14:49:24 -0800 | [diff] [blame] | 1581 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1582 | * Name resolution. |
Prasanna Meda | ea3834d | 2005-04-29 16:00:17 +0100 | [diff] [blame] | 1583 | * This is the basic name resolution function, turning a pathname into |
| 1584 | * the final dentry. We expect 'base' to be positive and a directory. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1585 | * |
Prasanna Meda | ea3834d | 2005-04-29 16:00:17 +0100 | [diff] [blame] | 1586 | * Returns 0 and nd will have valid dentry and mnt on success. |
| 1587 | * Returns error and drops reference to input namei data on failure. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1588 | */ |
Al Viro | 6de88d7 | 2009-08-09 01:41:57 +0400 | [diff] [blame] | 1589 | static int link_path_walk(const char *name, struct nameidata *nd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1590 | { |
| 1591 | struct path next; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1592 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1593 | |
| 1594 | while (*name=='/') |
| 1595 | name++; |
| 1596 | if (!*name) |
Al Viro | 086e183 | 2011-02-22 20:56:27 -0500 | [diff] [blame] | 1597 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1598 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1599 | /* At this point we know we have a real path component. */ |
| 1600 | for(;;) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1601 | struct qstr this; |
Linus Torvalds | 200e9ef | 2012-03-02 14:49:24 -0800 | [diff] [blame] | 1602 | long len; |
Al Viro | fe479a5 | 2011-02-22 15:10:03 -0500 | [diff] [blame] | 1603 | int type; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1604 | |
Al Viro | 52094c8 | 2011-02-21 21:34:47 -0500 | [diff] [blame] | 1605 | err = may_lookup(nd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1606 | if (err) |
| 1607 | break; |
| 1608 | |
Linus Torvalds | 200e9ef | 2012-03-02 14:49:24 -0800 | [diff] [blame] | 1609 | len = hash_name(name, &this.hash); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1610 | this.name = name; |
Linus Torvalds | 200e9ef | 2012-03-02 14:49:24 -0800 | [diff] [blame] | 1611 | this.len = len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1612 | |
Al Viro | fe479a5 | 2011-02-22 15:10:03 -0500 | [diff] [blame] | 1613 | type = LAST_NORM; |
Linus Torvalds | 200e9ef | 2012-03-02 14:49:24 -0800 | [diff] [blame] | 1614 | if (name[0] == '.') switch (len) { |
Al Viro | fe479a5 | 2011-02-22 15:10:03 -0500 | [diff] [blame] | 1615 | case 2: |
Linus Torvalds | 200e9ef | 2012-03-02 14:49:24 -0800 | [diff] [blame] | 1616 | if (name[1] == '.') { |
Al Viro | fe479a5 | 2011-02-22 15:10:03 -0500 | [diff] [blame] | 1617 | type = LAST_DOTDOT; |
Al Viro | 16c2cd7 | 2011-02-22 15:50:10 -0500 | [diff] [blame] | 1618 | nd->flags |= LOOKUP_JUMPED; |
| 1619 | } |
Al Viro | fe479a5 | 2011-02-22 15:10:03 -0500 | [diff] [blame] | 1620 | break; |
| 1621 | case 1: |
| 1622 | type = LAST_DOT; |
| 1623 | } |
Al Viro | 5a202bc | 2011-03-08 14:17:44 -0500 | [diff] [blame] | 1624 | if (likely(type == LAST_NORM)) { |
| 1625 | struct dentry *parent = nd->path.dentry; |
Al Viro | 16c2cd7 | 2011-02-22 15:50:10 -0500 | [diff] [blame] | 1626 | nd->flags &= ~LOOKUP_JUMPED; |
Al Viro | 5a202bc | 2011-03-08 14:17:44 -0500 | [diff] [blame] | 1627 | if (unlikely(parent->d_flags & DCACHE_OP_HASH)) { |
| 1628 | err = parent->d_op->d_hash(parent, nd->inode, |
| 1629 | &this); |
| 1630 | if (err < 0) |
| 1631 | break; |
| 1632 | } |
| 1633 | } |
Al Viro | fe479a5 | 2011-02-22 15:10:03 -0500 | [diff] [blame] | 1634 | |
Linus Torvalds | 200e9ef | 2012-03-02 14:49:24 -0800 | [diff] [blame] | 1635 | if (!name[len]) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1636 | goto last_component; |
Linus Torvalds | 200e9ef | 2012-03-02 14:49:24 -0800 | [diff] [blame] | 1637 | /* |
| 1638 | * If it wasn't NUL, we know it was '/'. Skip that |
| 1639 | * slash, and continue until no more slashes. |
| 1640 | */ |
| 1641 | do { |
| 1642 | len++; |
| 1643 | } while (unlikely(name[len] == '/')); |
| 1644 | if (!name[len]) |
Al Viro | b356379 | 2011-03-14 21:54:55 -0400 | [diff] [blame] | 1645 | goto last_component; |
Linus Torvalds | 200e9ef | 2012-03-02 14:49:24 -0800 | [diff] [blame] | 1646 | name += len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1647 | |
Al Viro | ce57dfc | 2011-03-13 19:58:58 -0400 | [diff] [blame] | 1648 | err = walk_component(nd, &next, &this, type, LOOKUP_FOLLOW); |
| 1649 | if (err < 0) |
| 1650 | return err; |
Al Viro | fe479a5 | 2011-02-22 15:10:03 -0500 | [diff] [blame] | 1651 | |
Al Viro | ce57dfc | 2011-03-13 19:58:58 -0400 | [diff] [blame] | 1652 | if (err) { |
Al Viro | b356379 | 2011-03-14 21:54:55 -0400 | [diff] [blame] | 1653 | err = nested_symlink(&next, nd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1654 | if (err) |
Al Viro | a7472ba | 2011-03-04 14:39:30 -0500 | [diff] [blame] | 1655 | return err; |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1656 | } |
Linus Torvalds | 3ddcd05 | 2011-08-06 22:45:50 -0700 | [diff] [blame] | 1657 | if (can_lookup(nd->inode)) |
| 1658 | continue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1659 | err = -ENOTDIR; |
Linus Torvalds | 3ddcd05 | 2011-08-06 22:45:50 -0700 | [diff] [blame] | 1660 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1661 | /* here ends the main loop */ |
| 1662 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1663 | last_component: |
Al Viro | b356379 | 2011-03-14 21:54:55 -0400 | [diff] [blame] | 1664 | nd->last = this; |
| 1665 | nd->last_type = type; |
Al Viro | 086e183 | 2011-02-22 20:56:27 -0500 | [diff] [blame] | 1666 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1667 | } |
Al Viro | 951361f | 2011-03-04 14:44:37 -0500 | [diff] [blame] | 1668 | terminate_walk(nd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1669 | return err; |
| 1670 | } |
| 1671 | |
Al Viro | 70e9b35 | 2011-03-05 21:12:22 -0500 | [diff] [blame] | 1672 | static int path_init(int dfd, const char *name, unsigned int flags, |
| 1673 | struct nameidata *nd, struct file **fp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1674 | { |
Prasanna Meda | ea3834d | 2005-04-29 16:00:17 +0100 | [diff] [blame] | 1675 | int retval = 0; |
Ulrich Drepper | 170aa3d | 2006-02-04 23:28:02 -0800 | [diff] [blame] | 1676 | int fput_needed; |
| 1677 | struct file *file; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1678 | |
| 1679 | nd->last_type = LAST_ROOT; /* if there are only slashes... */ |
Al Viro | 16c2cd7 | 2011-02-22 15:50:10 -0500 | [diff] [blame] | 1680 | nd->flags = flags | LOOKUP_JUMPED; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1681 | nd->depth = 0; |
Al Viro | 5b6ca02 | 2011-03-09 23:04:47 -0500 | [diff] [blame] | 1682 | if (flags & LOOKUP_ROOT) { |
| 1683 | struct inode *inode = nd->root.dentry->d_inode; |
Al Viro | 73d049a | 2011-03-11 12:08:24 -0500 | [diff] [blame] | 1684 | if (*name) { |
| 1685 | if (!inode->i_op->lookup) |
| 1686 | return -ENOTDIR; |
| 1687 | retval = inode_permission(inode, MAY_EXEC); |
| 1688 | if (retval) |
| 1689 | return retval; |
| 1690 | } |
Al Viro | 5b6ca02 | 2011-03-09 23:04:47 -0500 | [diff] [blame] | 1691 | nd->path = nd->root; |
| 1692 | nd->inode = inode; |
| 1693 | if (flags & LOOKUP_RCU) { |
Andi Kleen | 962830d | 2012-05-08 13:32:02 +0930 | [diff] [blame] | 1694 | br_read_lock(&vfsmount_lock); |
Al Viro | 5b6ca02 | 2011-03-09 23:04:47 -0500 | [diff] [blame] | 1695 | rcu_read_lock(); |
| 1696 | nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq); |
| 1697 | } else { |
| 1698 | path_get(&nd->path); |
| 1699 | } |
| 1700 | return 0; |
| 1701 | } |
| 1702 | |
Al Viro | 2a73787 | 2009-04-07 11:49:53 -0400 | [diff] [blame] | 1703 | nd->root.mnt = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1704 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1705 | if (*name=='/') { |
Al Viro | e41f7d4 | 2011-02-22 14:02:58 -0500 | [diff] [blame] | 1706 | if (flags & LOOKUP_RCU) { |
Andi Kleen | 962830d | 2012-05-08 13:32:02 +0930 | [diff] [blame] | 1707 | br_read_lock(&vfsmount_lock); |
Al Viro | e41f7d4 | 2011-02-22 14:02:58 -0500 | [diff] [blame] | 1708 | rcu_read_lock(); |
| 1709 | set_root_rcu(nd); |
| 1710 | } else { |
| 1711 | set_root(nd); |
| 1712 | path_get(&nd->root); |
| 1713 | } |
Al Viro | 2a73787 | 2009-04-07 11:49:53 -0400 | [diff] [blame] | 1714 | nd->path = nd->root; |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 1715 | } else if (dfd == AT_FDCWD) { |
Al Viro | e41f7d4 | 2011-02-22 14:02:58 -0500 | [diff] [blame] | 1716 | if (flags & LOOKUP_RCU) { |
| 1717 | struct fs_struct *fs = current->fs; |
| 1718 | unsigned seq; |
| 1719 | |
Andi Kleen | 962830d | 2012-05-08 13:32:02 +0930 | [diff] [blame] | 1720 | br_read_lock(&vfsmount_lock); |
Al Viro | e41f7d4 | 2011-02-22 14:02:58 -0500 | [diff] [blame] | 1721 | rcu_read_lock(); |
| 1722 | |
| 1723 | do { |
| 1724 | seq = read_seqcount_begin(&fs->seq); |
| 1725 | nd->path = fs->pwd; |
| 1726 | nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq); |
| 1727 | } while (read_seqcount_retry(&fs->seq, seq)); |
| 1728 | } else { |
| 1729 | get_fs_pwd(current->fs, &nd->path); |
| 1730 | } |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 1731 | } else { |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 1732 | struct dentry *dentry; |
| 1733 | |
Al Viro | 1abf0c7 | 2011-03-13 03:51:11 -0400 | [diff] [blame] | 1734 | file = fget_raw_light(dfd, &fput_needed); |
Ulrich Drepper | 170aa3d | 2006-02-04 23:28:02 -0800 | [diff] [blame] | 1735 | retval = -EBADF; |
| 1736 | if (!file) |
Trond Myklebust | 6d09bb6 | 2006-06-04 02:51:37 -0700 | [diff] [blame] | 1737 | goto out_fail; |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 1738 | |
Josef "Jeff" Sipek | 0f7fc9e | 2006-12-08 02:36:35 -0800 | [diff] [blame] | 1739 | dentry = file->f_path.dentry; |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 1740 | |
Al Viro | f52e0c1 | 2011-03-14 18:56:51 -0400 | [diff] [blame] | 1741 | if (*name) { |
| 1742 | retval = -ENOTDIR; |
| 1743 | if (!S_ISDIR(dentry->d_inode->i_mode)) |
| 1744 | goto fput_fail; |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 1745 | |
Al Viro | 4ad5abb | 2011-06-20 19:57:03 -0400 | [diff] [blame] | 1746 | retval = inode_permission(dentry->d_inode, MAY_EXEC); |
Al Viro | f52e0c1 | 2011-03-14 18:56:51 -0400 | [diff] [blame] | 1747 | if (retval) |
| 1748 | goto fput_fail; |
| 1749 | } |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 1750 | |
Jan Blunck | 5dd784d0 | 2008-02-14 19:34:38 -0800 | [diff] [blame] | 1751 | nd->path = file->f_path; |
Al Viro | e41f7d4 | 2011-02-22 14:02:58 -0500 | [diff] [blame] | 1752 | if (flags & LOOKUP_RCU) { |
| 1753 | if (fput_needed) |
Al Viro | 70e9b35 | 2011-03-05 21:12:22 -0500 | [diff] [blame] | 1754 | *fp = file; |
Al Viro | e41f7d4 | 2011-02-22 14:02:58 -0500 | [diff] [blame] | 1755 | nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq); |
Andi Kleen | 962830d | 2012-05-08 13:32:02 +0930 | [diff] [blame] | 1756 | br_read_lock(&vfsmount_lock); |
Al Viro | e41f7d4 | 2011-02-22 14:02:58 -0500 | [diff] [blame] | 1757 | rcu_read_lock(); |
| 1758 | } else { |
| 1759 | path_get(&file->f_path); |
| 1760 | fput_light(file, fput_needed); |
| 1761 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1762 | } |
Al Viro | e41f7d4 | 2011-02-22 14:02:58 -0500 | [diff] [blame] | 1763 | |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1764 | nd->inode = nd->path.dentry->d_inode; |
Al Viro | 9b4a9b1 | 2009-04-07 11:44:16 -0400 | [diff] [blame] | 1765 | return 0; |
Ulrich Drepper | 170aa3d | 2006-02-04 23:28:02 -0800 | [diff] [blame] | 1766 | |
Trond Myklebust | 6d09bb6 | 2006-06-04 02:51:37 -0700 | [diff] [blame] | 1767 | fput_fail: |
Ulrich Drepper | 170aa3d | 2006-02-04 23:28:02 -0800 | [diff] [blame] | 1768 | fput_light(file, fput_needed); |
Al Viro | 9b4a9b1 | 2009-04-07 11:44:16 -0400 | [diff] [blame] | 1769 | out_fail: |
| 1770 | return retval; |
| 1771 | } |
| 1772 | |
Al Viro | bd92d7f | 2011-03-14 19:54:59 -0400 | [diff] [blame] | 1773 | static inline int lookup_last(struct nameidata *nd, struct path *path) |
| 1774 | { |
| 1775 | if (nd->last_type == LAST_NORM && nd->last.name[nd->last.len]) |
| 1776 | nd->flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY; |
| 1777 | |
| 1778 | nd->flags &= ~LOOKUP_PARENT; |
| 1779 | return walk_component(nd, path, &nd->last, nd->last_type, |
| 1780 | nd->flags & LOOKUP_FOLLOW); |
| 1781 | } |
| 1782 | |
Al Viro | 9b4a9b1 | 2009-04-07 11:44:16 -0400 | [diff] [blame] | 1783 | /* Returns 0 and nd will be valid on success; Retuns error, otherwise. */ |
Al Viro | ee0827c | 2011-02-21 23:38:09 -0500 | [diff] [blame] | 1784 | static int path_lookupat(int dfd, const char *name, |
Al Viro | 9b4a9b1 | 2009-04-07 11:44:16 -0400 | [diff] [blame] | 1785 | unsigned int flags, struct nameidata *nd) |
| 1786 | { |
Al Viro | 70e9b35 | 2011-03-05 21:12:22 -0500 | [diff] [blame] | 1787 | struct file *base = NULL; |
Al Viro | bd92d7f | 2011-03-14 19:54:59 -0400 | [diff] [blame] | 1788 | struct path path; |
| 1789 | int err; |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1790 | |
| 1791 | /* |
| 1792 | * Path walking is largely split up into 2 different synchronisation |
| 1793 | * schemes, rcu-walk and ref-walk (explained in |
| 1794 | * Documentation/filesystems/path-lookup.txt). These share much of the |
| 1795 | * path walk code, but some things particularly setup, cleanup, and |
| 1796 | * following mounts are sufficiently divergent that functions are |
| 1797 | * duplicated. Typically there is a function foo(), and its RCU |
| 1798 | * analogue, foo_rcu(). |
| 1799 | * |
| 1800 | * -ECHILD is the error number of choice (just to avoid clashes) that |
| 1801 | * is returned if some aspect of an rcu-walk fails. Such an error must |
| 1802 | * be handled by restarting a traditional ref-walk (which will always |
| 1803 | * be able to complete). |
| 1804 | */ |
Al Viro | bd92d7f | 2011-03-14 19:54:59 -0400 | [diff] [blame] | 1805 | err = path_init(dfd, name, flags | LOOKUP_PARENT, nd, &base); |
Al Viro | ee0827c | 2011-02-21 23:38:09 -0500 | [diff] [blame] | 1806 | |
Al Viro | bd92d7f | 2011-03-14 19:54:59 -0400 | [diff] [blame] | 1807 | if (unlikely(err)) |
| 1808 | return err; |
Al Viro | ee0827c | 2011-02-21 23:38:09 -0500 | [diff] [blame] | 1809 | |
| 1810 | current->total_link_count = 0; |
Al Viro | bd92d7f | 2011-03-14 19:54:59 -0400 | [diff] [blame] | 1811 | err = link_path_walk(name, nd); |
| 1812 | |
| 1813 | if (!err && !(flags & LOOKUP_PARENT)) { |
Al Viro | bd92d7f | 2011-03-14 19:54:59 -0400 | [diff] [blame] | 1814 | err = lookup_last(nd, &path); |
| 1815 | while (err > 0) { |
| 1816 | void *cookie; |
| 1817 | struct path link = path; |
Al Viro | bd92d7f | 2011-03-14 19:54:59 -0400 | [diff] [blame] | 1818 | nd->flags |= LOOKUP_PARENT; |
Al Viro | 574197e | 2011-03-14 22:20:34 -0400 | [diff] [blame] | 1819 | err = follow_link(&link, nd, &cookie); |
Al Viro | 6d7b5aa | 2012-06-10 04:15:17 -0400 | [diff] [blame] | 1820 | if (err) |
| 1821 | break; |
| 1822 | err = lookup_last(nd, &path); |
Al Viro | 574197e | 2011-03-14 22:20:34 -0400 | [diff] [blame] | 1823 | put_link(nd, &link, cookie); |
Al Viro | bd92d7f | 2011-03-14 19:54:59 -0400 | [diff] [blame] | 1824 | } |
| 1825 | } |
Al Viro | ee0827c | 2011-02-21 23:38:09 -0500 | [diff] [blame] | 1826 | |
Al Viro | 9f1fafe | 2011-03-25 11:00:12 -0400 | [diff] [blame] | 1827 | if (!err) |
| 1828 | err = complete_walk(nd); |
Al Viro | bd92d7f | 2011-03-14 19:54:59 -0400 | [diff] [blame] | 1829 | |
| 1830 | if (!err && nd->flags & LOOKUP_DIRECTORY) { |
| 1831 | if (!nd->inode->i_op->lookup) { |
| 1832 | path_put(&nd->path); |
Al Viro | bd23a53 | 2011-03-23 09:56:30 -0400 | [diff] [blame] | 1833 | err = -ENOTDIR; |
Al Viro | bd92d7f | 2011-03-14 19:54:59 -0400 | [diff] [blame] | 1834 | } |
| 1835 | } |
Al Viro | 16c2cd7 | 2011-02-22 15:50:10 -0500 | [diff] [blame] | 1836 | |
Al Viro | 70e9b35 | 2011-03-05 21:12:22 -0500 | [diff] [blame] | 1837 | if (base) |
| 1838 | fput(base); |
Al Viro | ee0827c | 2011-02-21 23:38:09 -0500 | [diff] [blame] | 1839 | |
Al Viro | 5b6ca02 | 2011-03-09 23:04:47 -0500 | [diff] [blame] | 1840 | if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT)) { |
Al Viro | 2a73787 | 2009-04-07 11:49:53 -0400 | [diff] [blame] | 1841 | path_put(&nd->root); |
| 1842 | nd->root.mnt = NULL; |
| 1843 | } |
Al Viro | bd92d7f | 2011-03-14 19:54:59 -0400 | [diff] [blame] | 1844 | return err; |
Al Viro | ee0827c | 2011-02-21 23:38:09 -0500 | [diff] [blame] | 1845 | } |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1846 | |
Al Viro | ee0827c | 2011-02-21 23:38:09 -0500 | [diff] [blame] | 1847 | static int do_path_lookup(int dfd, const char *name, |
| 1848 | unsigned int flags, struct nameidata *nd) |
| 1849 | { |
| 1850 | int retval = path_lookupat(dfd, name, flags | LOOKUP_RCU, nd); |
| 1851 | if (unlikely(retval == -ECHILD)) |
| 1852 | retval = path_lookupat(dfd, name, flags, nd); |
| 1853 | if (unlikely(retval == -ESTALE)) |
| 1854 | retval = path_lookupat(dfd, name, flags | LOOKUP_REVAL, nd); |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1855 | |
| 1856 | if (likely(!retval)) { |
| 1857 | if (unlikely(!audit_dummy_context())) { |
| 1858 | if (nd->path.dentry && nd->inode) |
| 1859 | audit_inode(name, nd->path.dentry); |
| 1860 | } |
| 1861 | } |
Al Viro | 9b4a9b1 | 2009-04-07 11:44:16 -0400 | [diff] [blame] | 1862 | return retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1863 | } |
| 1864 | |
Al Viro | 79714f7 | 2012-06-15 03:01:42 +0400 | [diff] [blame] | 1865 | /* does lookup, returns the object with parent locked */ |
| 1866 | struct dentry *kern_path_locked(const char *name, struct path *path) |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 1867 | { |
Al Viro | 79714f7 | 2012-06-15 03:01:42 +0400 | [diff] [blame] | 1868 | struct nameidata nd; |
| 1869 | struct dentry *d; |
| 1870 | int err = do_path_lookup(AT_FDCWD, name, LOOKUP_PARENT, &nd); |
| 1871 | if (err) |
| 1872 | return ERR_PTR(err); |
| 1873 | if (nd.last_type != LAST_NORM) { |
| 1874 | path_put(&nd.path); |
| 1875 | return ERR_PTR(-EINVAL); |
| 1876 | } |
| 1877 | mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT); |
Al Viro | 1e0ea00 | 2012-07-22 23:46:21 +0400 | [diff] [blame] | 1878 | d = __lookup_hash(&nd.last, nd.path.dentry, 0); |
Al Viro | 79714f7 | 2012-06-15 03:01:42 +0400 | [diff] [blame] | 1879 | if (IS_ERR(d)) { |
| 1880 | mutex_unlock(&nd.path.dentry->d_inode->i_mutex); |
| 1881 | path_put(&nd.path); |
| 1882 | return d; |
| 1883 | } |
| 1884 | *path = nd.path; |
| 1885 | return d; |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 1886 | } |
| 1887 | |
Al Viro | d181146 | 2008-08-02 00:49:18 -0400 | [diff] [blame] | 1888 | int kern_path(const char *name, unsigned int flags, struct path *path) |
| 1889 | { |
| 1890 | struct nameidata nd; |
| 1891 | int res = do_path_lookup(AT_FDCWD, name, flags, &nd); |
| 1892 | if (!res) |
| 1893 | *path = nd.path; |
| 1894 | return res; |
| 1895 | } |
| 1896 | |
Josef 'Jeff' Sipek | 16f1820 | 2007-07-19 01:48:18 -0700 | [diff] [blame] | 1897 | /** |
| 1898 | * vfs_path_lookup - lookup a file path relative to a dentry-vfsmount pair |
| 1899 | * @dentry: pointer to dentry of the base directory |
| 1900 | * @mnt: pointer to vfs mount of the base directory |
| 1901 | * @name: pointer to file name |
| 1902 | * @flags: lookup flags |
Al Viro | e0a0124 | 2011-06-27 17:00:37 -0400 | [diff] [blame] | 1903 | * @path: pointer to struct path to fill |
Josef 'Jeff' Sipek | 16f1820 | 2007-07-19 01:48:18 -0700 | [diff] [blame] | 1904 | */ |
| 1905 | int vfs_path_lookup(struct dentry *dentry, struct vfsmount *mnt, |
| 1906 | const char *name, unsigned int flags, |
Al Viro | e0a0124 | 2011-06-27 17:00:37 -0400 | [diff] [blame] | 1907 | struct path *path) |
Josef 'Jeff' Sipek | 16f1820 | 2007-07-19 01:48:18 -0700 | [diff] [blame] | 1908 | { |
Al Viro | e0a0124 | 2011-06-27 17:00:37 -0400 | [diff] [blame] | 1909 | struct nameidata nd; |
| 1910 | int err; |
| 1911 | nd.root.dentry = dentry; |
| 1912 | nd.root.mnt = mnt; |
| 1913 | BUG_ON(flags & LOOKUP_PARENT); |
Al Viro | 5b6ca02 | 2011-03-09 23:04:47 -0500 | [diff] [blame] | 1914 | /* the first argument of do_path_lookup() is ignored with LOOKUP_ROOT */ |
Al Viro | e0a0124 | 2011-06-27 17:00:37 -0400 | [diff] [blame] | 1915 | err = do_path_lookup(AT_FDCWD, name, flags | LOOKUP_ROOT, &nd); |
| 1916 | if (!err) |
| 1917 | *path = nd.path; |
| 1918 | return err; |
Josef 'Jeff' Sipek | 16f1820 | 2007-07-19 01:48:18 -0700 | [diff] [blame] | 1919 | } |
| 1920 | |
James Morris | 057f6c0 | 2007-04-26 00:12:05 -0700 | [diff] [blame] | 1921 | /* |
| 1922 | * Restricted form of lookup. Doesn't follow links, single-component only, |
| 1923 | * needs parent already locked. Doesn't follow mounts. |
| 1924 | * SMP-safe. |
| 1925 | */ |
Adrian Bunk | a244e16 | 2006-03-31 02:32:11 -0800 | [diff] [blame] | 1926 | static struct dentry *lookup_hash(struct nameidata *nd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1927 | { |
Al Viro | 72bd866 | 2012-06-10 17:17:17 -0400 | [diff] [blame] | 1928 | return __lookup_hash(&nd->last, nd->path.dentry, nd->flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1929 | } |
| 1930 | |
Christoph Hellwig | eead191 | 2007-10-16 23:25:38 -0700 | [diff] [blame] | 1931 | /** |
Randy Dunlap | a6b9191 | 2008-03-19 17:01:00 -0700 | [diff] [blame] | 1932 | * lookup_one_len - filesystem helper to lookup single pathname component |
Christoph Hellwig | eead191 | 2007-10-16 23:25:38 -0700 | [diff] [blame] | 1933 | * @name: pathname component to lookup |
| 1934 | * @base: base directory to lookup from |
| 1935 | * @len: maximum length @len should be interpreted to |
| 1936 | * |
Randy Dunlap | a6b9191 | 2008-03-19 17:01:00 -0700 | [diff] [blame] | 1937 | * Note that this routine is purely a helper for filesystem usage and should |
| 1938 | * 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] | 1939 | * nameidata argument is passed to the filesystem methods and a filesystem |
| 1940 | * using this helper needs to be prepared for that. |
| 1941 | */ |
James Morris | 057f6c0 | 2007-04-26 00:12:05 -0700 | [diff] [blame] | 1942 | struct dentry *lookup_one_len(const char *name, struct dentry *base, int len) |
| 1943 | { |
James Morris | 057f6c0 | 2007-04-26 00:12:05 -0700 | [diff] [blame] | 1944 | struct qstr this; |
Al Viro | 6a96ba5 | 2011-03-07 23:49:20 -0500 | [diff] [blame] | 1945 | unsigned int c; |
Miklos Szeredi | cda309d | 2012-03-26 12:54:21 +0200 | [diff] [blame] | 1946 | int err; |
James Morris | 057f6c0 | 2007-04-26 00:12:05 -0700 | [diff] [blame] | 1947 | |
David Woodhouse | 2f9092e | 2009-04-20 23:18:37 +0100 | [diff] [blame] | 1948 | WARN_ON_ONCE(!mutex_is_locked(&base->d_inode->i_mutex)); |
| 1949 | |
Al Viro | 6a96ba5 | 2011-03-07 23:49:20 -0500 | [diff] [blame] | 1950 | this.name = name; |
| 1951 | this.len = len; |
Linus Torvalds | 0145acc | 2012-03-02 14:32:59 -0800 | [diff] [blame] | 1952 | this.hash = full_name_hash(name, len); |
Al Viro | 6a96ba5 | 2011-03-07 23:49:20 -0500 | [diff] [blame] | 1953 | if (!len) |
| 1954 | return ERR_PTR(-EACCES); |
| 1955 | |
Al Viro | 6a96ba5 | 2011-03-07 23:49:20 -0500 | [diff] [blame] | 1956 | while (len--) { |
| 1957 | c = *(const unsigned char *)name++; |
| 1958 | if (c == '/' || c == '\0') |
| 1959 | return ERR_PTR(-EACCES); |
Al Viro | 6a96ba5 | 2011-03-07 23:49:20 -0500 | [diff] [blame] | 1960 | } |
Al Viro | 5a202bc | 2011-03-08 14:17:44 -0500 | [diff] [blame] | 1961 | /* |
| 1962 | * See if the low-level filesystem might want |
| 1963 | * to use its own hash.. |
| 1964 | */ |
| 1965 | if (base->d_flags & DCACHE_OP_HASH) { |
| 1966 | int err = base->d_op->d_hash(base, base->d_inode, &this); |
| 1967 | if (err < 0) |
| 1968 | return ERR_PTR(err); |
| 1969 | } |
Christoph Hellwig | eead191 | 2007-10-16 23:25:38 -0700 | [diff] [blame] | 1970 | |
Miklos Szeredi | cda309d | 2012-03-26 12:54:21 +0200 | [diff] [blame] | 1971 | err = inode_permission(base->d_inode, MAY_EXEC); |
| 1972 | if (err) |
| 1973 | return ERR_PTR(err); |
| 1974 | |
Al Viro | 72bd866 | 2012-06-10 17:17:17 -0400 | [diff] [blame] | 1975 | return __lookup_hash(&this, base, 0); |
James Morris | 057f6c0 | 2007-04-26 00:12:05 -0700 | [diff] [blame] | 1976 | } |
| 1977 | |
Andy Whitcroft | 1fa1e7f | 2011-11-02 09:44:39 +0100 | [diff] [blame] | 1978 | int user_path_at_empty(int dfd, const char __user *name, unsigned flags, |
| 1979 | struct path *path, int *empty) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1980 | { |
Al Viro | 2d8f303 | 2008-07-22 09:59:21 -0400 | [diff] [blame] | 1981 | struct nameidata nd; |
Andy Whitcroft | 1fa1e7f | 2011-11-02 09:44:39 +0100 | [diff] [blame] | 1982 | char *tmp = getname_flags(name, flags, empty); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1983 | int err = PTR_ERR(tmp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1984 | if (!IS_ERR(tmp)) { |
Al Viro | 2d8f303 | 2008-07-22 09:59:21 -0400 | [diff] [blame] | 1985 | |
| 1986 | BUG_ON(flags & LOOKUP_PARENT); |
| 1987 | |
| 1988 | err = do_path_lookup(dfd, tmp, flags, &nd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1989 | putname(tmp); |
Al Viro | 2d8f303 | 2008-07-22 09:59:21 -0400 | [diff] [blame] | 1990 | if (!err) |
| 1991 | *path = nd.path; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1992 | } |
| 1993 | return err; |
| 1994 | } |
| 1995 | |
Andy Whitcroft | 1fa1e7f | 2011-11-02 09:44:39 +0100 | [diff] [blame] | 1996 | int user_path_at(int dfd, const char __user *name, unsigned flags, |
| 1997 | struct path *path) |
| 1998 | { |
Linus Torvalds | f7493e5 | 2012-03-22 16:10:40 -0700 | [diff] [blame] | 1999 | return user_path_at_empty(dfd, name, flags, path, NULL); |
Andy Whitcroft | 1fa1e7f | 2011-11-02 09:44:39 +0100 | [diff] [blame] | 2000 | } |
| 2001 | |
Al Viro | 2ad94ae | 2008-07-21 09:32:51 -0400 | [diff] [blame] | 2002 | static int user_path_parent(int dfd, const char __user *path, |
| 2003 | struct nameidata *nd, char **name) |
| 2004 | { |
| 2005 | char *s = getname(path); |
| 2006 | int error; |
| 2007 | |
| 2008 | if (IS_ERR(s)) |
| 2009 | return PTR_ERR(s); |
| 2010 | |
| 2011 | error = do_path_lookup(dfd, s, LOOKUP_PARENT, nd); |
| 2012 | if (error) |
| 2013 | putname(s); |
| 2014 | else |
| 2015 | *name = s; |
| 2016 | |
| 2017 | return error; |
| 2018 | } |
| 2019 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2020 | /* |
| 2021 | * It's inline, so penalty for filesystems that don't use sticky bit is |
| 2022 | * minimal. |
| 2023 | */ |
| 2024 | static inline int check_sticky(struct inode *dir, struct inode *inode) |
| 2025 | { |
Eric W. Biederman | 8e96e3b | 2012-03-03 21:17:15 -0800 | [diff] [blame] | 2026 | kuid_t fsuid = current_fsuid(); |
David Howells | da9592e | 2008-11-14 10:39:05 +1100 | [diff] [blame] | 2027 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2028 | if (!(dir->i_mode & S_ISVTX)) |
| 2029 | return 0; |
Eric W. Biederman | 8e96e3b | 2012-03-03 21:17:15 -0800 | [diff] [blame] | 2030 | if (uid_eq(inode->i_uid, fsuid)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2031 | return 0; |
Eric W. Biederman | 8e96e3b | 2012-03-03 21:17:15 -0800 | [diff] [blame] | 2032 | if (uid_eq(dir->i_uid, fsuid)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2033 | return 0; |
Eric W. Biederman | 1a48e2a | 2011-11-14 16:24:06 -0800 | [diff] [blame] | 2034 | return !inode_capable(inode, CAP_FOWNER); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2035 | } |
| 2036 | |
| 2037 | /* |
| 2038 | * Check whether we can remove a link victim from directory dir, check |
| 2039 | * whether the type of victim is right. |
| 2040 | * 1. We can't do it if dir is read-only (done in permission()) |
| 2041 | * 2. We should have write and exec permissions on dir |
| 2042 | * 3. We can't remove anything from append-only dir |
| 2043 | * 4. We can't do anything with immutable dir (done in permission()) |
| 2044 | * 5. If the sticky bit on dir is set we should either |
| 2045 | * a. be owner of dir, or |
| 2046 | * b. be owner of victim, or |
| 2047 | * c. have CAP_FOWNER capability |
| 2048 | * 6. If the victim is append-only or immutable we can't do antyhing with |
| 2049 | * links pointing to it. |
| 2050 | * 7. If we were asked to remove a directory and victim isn't one - ENOTDIR. |
| 2051 | * 8. If we were asked to remove a non-directory and victim isn't one - EISDIR. |
| 2052 | * 9. We can't remove a root or mountpoint. |
| 2053 | * 10. We don't allow removal of NFS sillyrenamed files; it's handled by |
| 2054 | * nfs_async_unlink(). |
| 2055 | */ |
Arjan van de Ven | 858119e | 2006-01-14 13:20:43 -0800 | [diff] [blame] | 2056 | static int may_delete(struct inode *dir,struct dentry *victim,int isdir) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2057 | { |
| 2058 | int error; |
| 2059 | |
| 2060 | if (!victim->d_inode) |
| 2061 | return -ENOENT; |
| 2062 | |
| 2063 | BUG_ON(victim->d_parent->d_inode != dir); |
Al Viro | cccc6bb | 2009-12-25 05:07:33 -0500 | [diff] [blame] | 2064 | audit_inode_child(victim, dir); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2065 | |
Al Viro | f419a2e | 2008-07-22 00:07:17 -0400 | [diff] [blame] | 2066 | error = inode_permission(dir, MAY_WRITE | MAY_EXEC); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2067 | if (error) |
| 2068 | return error; |
| 2069 | if (IS_APPEND(dir)) |
| 2070 | return -EPERM; |
| 2071 | if (check_sticky(dir, victim->d_inode)||IS_APPEND(victim->d_inode)|| |
Hugh Dickins | f945454 | 2008-11-19 15:36:38 -0800 | [diff] [blame] | 2072 | IS_IMMUTABLE(victim->d_inode) || IS_SWAPFILE(victim->d_inode)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2073 | return -EPERM; |
| 2074 | if (isdir) { |
| 2075 | if (!S_ISDIR(victim->d_inode->i_mode)) |
| 2076 | return -ENOTDIR; |
| 2077 | if (IS_ROOT(victim)) |
| 2078 | return -EBUSY; |
| 2079 | } else if (S_ISDIR(victim->d_inode->i_mode)) |
| 2080 | return -EISDIR; |
| 2081 | if (IS_DEADDIR(dir)) |
| 2082 | return -ENOENT; |
| 2083 | if (victim->d_flags & DCACHE_NFSFS_RENAMED) |
| 2084 | return -EBUSY; |
| 2085 | return 0; |
| 2086 | } |
| 2087 | |
| 2088 | /* Check whether we can create an object with dentry child in directory |
| 2089 | * dir. |
| 2090 | * 1. We can't do it if child already exists (open has special treatment for |
| 2091 | * this case, but since we are inlined it's OK) |
| 2092 | * 2. We can't do it if dir is read-only (done in permission()) |
| 2093 | * 3. We should have write and exec permissions on dir |
| 2094 | * 4. We can't do it if dir is immutable (done in permission()) |
| 2095 | */ |
Miklos Szeredi | a95164d | 2008-07-30 15:08:48 +0200 | [diff] [blame] | 2096 | static inline int may_create(struct inode *dir, struct dentry *child) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2097 | { |
| 2098 | if (child->d_inode) |
| 2099 | return -EEXIST; |
| 2100 | if (IS_DEADDIR(dir)) |
| 2101 | return -ENOENT; |
Al Viro | f419a2e | 2008-07-22 00:07:17 -0400 | [diff] [blame] | 2102 | return inode_permission(dir, MAY_WRITE | MAY_EXEC); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2103 | } |
| 2104 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2105 | /* |
| 2106 | * p1 and p2 should be directories on the same fs. |
| 2107 | */ |
| 2108 | struct dentry *lock_rename(struct dentry *p1, struct dentry *p2) |
| 2109 | { |
| 2110 | struct dentry *p; |
| 2111 | |
| 2112 | if (p1 == p2) { |
Ingo Molnar | f2eace2 | 2006-07-03 00:25:05 -0700 | [diff] [blame] | 2113 | mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2114 | return NULL; |
| 2115 | } |
| 2116 | |
Arjan van de Ven | a11f3a0 | 2006-03-23 03:00:33 -0800 | [diff] [blame] | 2117 | mutex_lock(&p1->d_inode->i_sb->s_vfs_rename_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2118 | |
OGAWA Hirofumi | e2761a1 | 2008-10-16 07:50:28 +0900 | [diff] [blame] | 2119 | p = d_ancestor(p2, p1); |
| 2120 | if (p) { |
| 2121 | mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_PARENT); |
| 2122 | mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_CHILD); |
| 2123 | return p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2124 | } |
| 2125 | |
OGAWA Hirofumi | e2761a1 | 2008-10-16 07:50:28 +0900 | [diff] [blame] | 2126 | p = d_ancestor(p1, p2); |
| 2127 | if (p) { |
| 2128 | mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT); |
| 2129 | mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_CHILD); |
| 2130 | return p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2131 | } |
| 2132 | |
Ingo Molnar | f2eace2 | 2006-07-03 00:25:05 -0700 | [diff] [blame] | 2133 | mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT); |
| 2134 | mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_CHILD); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2135 | return NULL; |
| 2136 | } |
| 2137 | |
| 2138 | void unlock_rename(struct dentry *p1, struct dentry *p2) |
| 2139 | { |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 2140 | mutex_unlock(&p1->d_inode->i_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2141 | if (p1 != p2) { |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 2142 | mutex_unlock(&p2->d_inode->i_mutex); |
Arjan van de Ven | a11f3a0 | 2006-03-23 03:00:33 -0800 | [diff] [blame] | 2143 | mutex_unlock(&p1->d_inode->i_sb->s_vfs_rename_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2144 | } |
| 2145 | } |
| 2146 | |
Al Viro | 4acdaf2 | 2011-07-26 01:42:34 -0400 | [diff] [blame] | 2147 | int vfs_create(struct inode *dir, struct dentry *dentry, umode_t mode, |
Al Viro | 312b63f | 2012-06-10 18:09:36 -0400 | [diff] [blame] | 2148 | bool want_excl) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2149 | { |
Miklos Szeredi | a95164d | 2008-07-30 15:08:48 +0200 | [diff] [blame] | 2150 | int error = may_create(dir, dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2151 | if (error) |
| 2152 | return error; |
| 2153 | |
Al Viro | acfa438 | 2008-12-04 10:06:33 -0500 | [diff] [blame] | 2154 | if (!dir->i_op->create) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2155 | return -EACCES; /* shouldn't it be ENOSYS? */ |
| 2156 | mode &= S_IALLUGO; |
| 2157 | mode |= S_IFREG; |
| 2158 | error = security_inode_create(dir, dentry, mode); |
| 2159 | if (error) |
| 2160 | return error; |
Al Viro | 312b63f | 2012-06-10 18:09:36 -0400 | [diff] [blame] | 2161 | error = dir->i_op->create(dir, dentry, mode, want_excl); |
Stephen Smalley | a74574a | 2005-09-09 13:01:44 -0700 | [diff] [blame] | 2162 | if (!error) |
Amy Griffis | f38aa94 | 2005-11-03 15:57:06 +0000 | [diff] [blame] | 2163 | fsnotify_create(dir, dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2164 | return error; |
| 2165 | } |
| 2166 | |
Al Viro | 73d049a | 2011-03-11 12:08:24 -0500 | [diff] [blame] | 2167 | static int may_open(struct path *path, int acc_mode, int flag) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2168 | { |
Christoph Hellwig | 3fb6419 | 2008-10-24 09:58:10 +0200 | [diff] [blame] | 2169 | struct dentry *dentry = path->dentry; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2170 | struct inode *inode = dentry->d_inode; |
| 2171 | int error; |
| 2172 | |
Al Viro | bcda765 | 2011-03-13 16:42:14 -0400 | [diff] [blame] | 2173 | /* O_PATH? */ |
| 2174 | if (!acc_mode) |
| 2175 | return 0; |
| 2176 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2177 | if (!inode) |
| 2178 | return -ENOENT; |
| 2179 | |
Christoph Hellwig | c8fe8f3 | 2009-01-05 19:27:23 +0100 | [diff] [blame] | 2180 | switch (inode->i_mode & S_IFMT) { |
| 2181 | case S_IFLNK: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2182 | return -ELOOP; |
Christoph Hellwig | c8fe8f3 | 2009-01-05 19:27:23 +0100 | [diff] [blame] | 2183 | case S_IFDIR: |
| 2184 | if (acc_mode & MAY_WRITE) |
| 2185 | return -EISDIR; |
| 2186 | break; |
| 2187 | case S_IFBLK: |
| 2188 | case S_IFCHR: |
Christoph Hellwig | 3fb6419 | 2008-10-24 09:58:10 +0200 | [diff] [blame] | 2189 | if (path->mnt->mnt_flags & MNT_NODEV) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2190 | return -EACCES; |
Christoph Hellwig | c8fe8f3 | 2009-01-05 19:27:23 +0100 | [diff] [blame] | 2191 | /*FALLTHRU*/ |
| 2192 | case S_IFIFO: |
| 2193 | case S_IFSOCK: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2194 | flag &= ~O_TRUNC; |
Christoph Hellwig | c8fe8f3 | 2009-01-05 19:27:23 +0100 | [diff] [blame] | 2195 | break; |
Dave Hansen | 4a3fd21 | 2008-02-15 14:37:48 -0800 | [diff] [blame] | 2196 | } |
Dave Hansen | b41572e | 2007-10-16 23:31:14 -0700 | [diff] [blame] | 2197 | |
Christoph Hellwig | 3fb6419 | 2008-10-24 09:58:10 +0200 | [diff] [blame] | 2198 | error = inode_permission(inode, acc_mode); |
Dave Hansen | b41572e | 2007-10-16 23:31:14 -0700 | [diff] [blame] | 2199 | if (error) |
| 2200 | return error; |
Mimi Zohar | 6146f0d | 2009-02-04 09:06:57 -0500 | [diff] [blame] | 2201 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2202 | /* |
| 2203 | * An append-only file must be opened in append mode for writing. |
| 2204 | */ |
| 2205 | if (IS_APPEND(inode)) { |
Al Viro | 8737c93 | 2009-12-24 06:47:55 -0500 | [diff] [blame] | 2206 | if ((flag & O_ACCMODE) != O_RDONLY && !(flag & O_APPEND)) |
Al Viro | 7715b52 | 2009-12-16 03:54:00 -0500 | [diff] [blame] | 2207 | return -EPERM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2208 | if (flag & O_TRUNC) |
Al Viro | 7715b52 | 2009-12-16 03:54:00 -0500 | [diff] [blame] | 2209 | return -EPERM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2210 | } |
| 2211 | |
| 2212 | /* O_NOATIME can only be set by the owner or superuser */ |
Serge E. Hallyn | 2e14967 | 2011-03-23 16:43:26 -0700 | [diff] [blame] | 2213 | if (flag & O_NOATIME && !inode_owner_or_capable(inode)) |
Al Viro | 7715b52 | 2009-12-16 03:54:00 -0500 | [diff] [blame] | 2214 | return -EPERM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2215 | |
J. Bruce Fields | f3c7691e | 2011-09-21 10:58:13 -0400 | [diff] [blame] | 2216 | return 0; |
Al Viro | 7715b52 | 2009-12-16 03:54:00 -0500 | [diff] [blame] | 2217 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2218 | |
Jeff Layton | e1181ee | 2010-12-07 16:19:50 -0500 | [diff] [blame] | 2219 | static int handle_truncate(struct file *filp) |
Al Viro | 7715b52 | 2009-12-16 03:54:00 -0500 | [diff] [blame] | 2220 | { |
Jeff Layton | e1181ee | 2010-12-07 16:19:50 -0500 | [diff] [blame] | 2221 | struct path *path = &filp->f_path; |
Al Viro | 7715b52 | 2009-12-16 03:54:00 -0500 | [diff] [blame] | 2222 | struct inode *inode = path->dentry->d_inode; |
| 2223 | int error = get_write_access(inode); |
| 2224 | if (error) |
| 2225 | return error; |
| 2226 | /* |
| 2227 | * Refuse to truncate files with mandatory locks held on them. |
| 2228 | */ |
| 2229 | error = locks_verify_locked(inode); |
| 2230 | if (!error) |
Tetsuo Handa | ea0d3ab | 2010-06-02 13:24:43 +0900 | [diff] [blame] | 2231 | error = security_path_truncate(path); |
Al Viro | 7715b52 | 2009-12-16 03:54:00 -0500 | [diff] [blame] | 2232 | if (!error) { |
| 2233 | error = do_truncate(path->dentry, 0, |
| 2234 | ATTR_MTIME|ATTR_CTIME|ATTR_OPEN, |
Jeff Layton | e1181ee | 2010-12-07 16:19:50 -0500 | [diff] [blame] | 2235 | filp); |
Al Viro | 7715b52 | 2009-12-16 03:54:00 -0500 | [diff] [blame] | 2236 | } |
| 2237 | put_write_access(inode); |
Mimi Zohar | acd0c93 | 2009-09-04 13:08:46 -0400 | [diff] [blame] | 2238 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2239 | } |
| 2240 | |
Dave Hansen | d57999e | 2008-02-15 14:37:27 -0800 | [diff] [blame] | 2241 | static inline int open_to_namei_flags(int flag) |
| 2242 | { |
Al Viro | 8a5e929 | 2011-06-25 19:15:54 -0400 | [diff] [blame] | 2243 | if ((flag & O_ACCMODE) == 3) |
| 2244 | flag--; |
Dave Hansen | d57999e | 2008-02-15 14:37:27 -0800 | [diff] [blame] | 2245 | return flag; |
| 2246 | } |
| 2247 | |
Miklos Szeredi | d18e900 | 2012-06-05 15:10:17 +0200 | [diff] [blame] | 2248 | static int may_o_create(struct path *dir, struct dentry *dentry, umode_t mode) |
| 2249 | { |
| 2250 | int error = security_path_mknod(dir, dentry, mode, 0); |
| 2251 | if (error) |
| 2252 | return error; |
| 2253 | |
| 2254 | error = inode_permission(dir->dentry->d_inode, MAY_WRITE | MAY_EXEC); |
| 2255 | if (error) |
| 2256 | return error; |
| 2257 | |
| 2258 | return security_inode_create(dir->dentry->d_inode, dentry, mode); |
| 2259 | } |
| 2260 | |
David Howells | 1acf0af | 2012-06-14 16:13:46 +0100 | [diff] [blame] | 2261 | /* |
| 2262 | * Attempt to atomically look up, create and open a file from a negative |
| 2263 | * dentry. |
| 2264 | * |
| 2265 | * Returns 0 if successful. The file will have been created and attached to |
| 2266 | * @file by the filesystem calling finish_open(). |
| 2267 | * |
| 2268 | * Returns 1 if the file was looked up only or didn't need creating. The |
| 2269 | * caller will need to perform the open themselves. @path will have been |
| 2270 | * updated to point to the new dentry. This may be negative. |
| 2271 | * |
| 2272 | * Returns an error code otherwise. |
| 2273 | */ |
Al Viro | 2675a4e | 2012-06-22 12:41:10 +0400 | [diff] [blame] | 2274 | static int atomic_open(struct nameidata *nd, struct dentry *dentry, |
| 2275 | struct path *path, struct file *file, |
| 2276 | const struct open_flags *op, |
| 2277 | bool *want_write, bool need_lookup, |
| 2278 | int *opened) |
Miklos Szeredi | d18e900 | 2012-06-05 15:10:17 +0200 | [diff] [blame] | 2279 | { |
| 2280 | struct inode *dir = nd->path.dentry->d_inode; |
| 2281 | unsigned open_flag = open_to_namei_flags(op->open_flag); |
| 2282 | umode_t mode; |
| 2283 | int error; |
| 2284 | int acc_mode; |
Miklos Szeredi | d18e900 | 2012-06-05 15:10:17 +0200 | [diff] [blame] | 2285 | int create_error = 0; |
| 2286 | struct dentry *const DENTRY_NOT_SET = (void *) -1UL; |
| 2287 | |
| 2288 | BUG_ON(dentry->d_inode); |
| 2289 | |
| 2290 | /* Don't create child dentry for a dead directory. */ |
| 2291 | if (unlikely(IS_DEADDIR(dir))) { |
Al Viro | 2675a4e | 2012-06-22 12:41:10 +0400 | [diff] [blame] | 2292 | error = -ENOENT; |
Miklos Szeredi | d18e900 | 2012-06-05 15:10:17 +0200 | [diff] [blame] | 2293 | goto out; |
| 2294 | } |
| 2295 | |
| 2296 | mode = op->mode & S_IALLUGO; |
| 2297 | if ((open_flag & O_CREAT) && !IS_POSIXACL(dir)) |
| 2298 | mode &= ~current_umask(); |
| 2299 | |
| 2300 | if (open_flag & O_EXCL) { |
| 2301 | open_flag &= ~O_TRUNC; |
Al Viro | 4723768 | 2012-06-10 05:01:45 -0400 | [diff] [blame] | 2302 | *opened |= FILE_CREATED; |
Miklos Szeredi | d18e900 | 2012-06-05 15:10:17 +0200 | [diff] [blame] | 2303 | } |
| 2304 | |
| 2305 | /* |
| 2306 | * Checking write permission is tricky, bacuse we don't know if we are |
| 2307 | * going to actually need it: O_CREAT opens should work as long as the |
| 2308 | * file exists. But checking existence breaks atomicity. The trick is |
| 2309 | * to check access and if not granted clear O_CREAT from the flags. |
| 2310 | * |
| 2311 | * Another problem is returing the "right" error value (e.g. for an |
| 2312 | * O_EXCL open we want to return EEXIST not EROFS). |
| 2313 | */ |
| 2314 | if ((open_flag & (O_CREAT | O_TRUNC)) || |
| 2315 | (open_flag & O_ACCMODE) != O_RDONLY) { |
| 2316 | error = mnt_want_write(nd->path.mnt); |
| 2317 | if (!error) { |
Miklos Szeredi | 77d660a | 2012-06-05 15:10:30 +0200 | [diff] [blame] | 2318 | *want_write = true; |
Miklos Szeredi | d18e900 | 2012-06-05 15:10:17 +0200 | [diff] [blame] | 2319 | } else if (!(open_flag & O_CREAT)) { |
| 2320 | /* |
| 2321 | * No O_CREATE -> atomicity not a requirement -> fall |
| 2322 | * back to lookup + open |
| 2323 | */ |
| 2324 | goto no_open; |
| 2325 | } else if (open_flag & (O_EXCL | O_TRUNC)) { |
| 2326 | /* Fall back and fail with the right error */ |
| 2327 | create_error = error; |
| 2328 | goto no_open; |
| 2329 | } else { |
| 2330 | /* No side effects, safe to clear O_CREAT */ |
| 2331 | create_error = error; |
| 2332 | open_flag &= ~O_CREAT; |
| 2333 | } |
| 2334 | } |
| 2335 | |
| 2336 | if (open_flag & O_CREAT) { |
| 2337 | error = may_o_create(&nd->path, dentry, op->mode); |
| 2338 | if (error) { |
| 2339 | create_error = error; |
| 2340 | if (open_flag & O_EXCL) |
| 2341 | goto no_open; |
| 2342 | open_flag &= ~O_CREAT; |
| 2343 | } |
| 2344 | } |
| 2345 | |
| 2346 | if (nd->flags & LOOKUP_DIRECTORY) |
| 2347 | open_flag |= O_DIRECTORY; |
| 2348 | |
Al Viro | 30d9049 | 2012-06-22 12:40:19 +0400 | [diff] [blame] | 2349 | file->f_path.dentry = DENTRY_NOT_SET; |
| 2350 | file->f_path.mnt = nd->path.mnt; |
| 2351 | error = dir->i_op->atomic_open(dir, dentry, file, open_flag, mode, |
Al Viro | 4723768 | 2012-06-10 05:01:45 -0400 | [diff] [blame] | 2352 | opened); |
Al Viro | d958527 | 2012-06-22 12:39:14 +0400 | [diff] [blame] | 2353 | if (error < 0) { |
Al Viro | d958527 | 2012-06-22 12:39:14 +0400 | [diff] [blame] | 2354 | if (create_error && error == -ENOENT) |
| 2355 | error = create_error; |
Miklos Szeredi | d18e900 | 2012-06-05 15:10:17 +0200 | [diff] [blame] | 2356 | goto out; |
| 2357 | } |
| 2358 | |
| 2359 | acc_mode = op->acc_mode; |
Al Viro | 4723768 | 2012-06-10 05:01:45 -0400 | [diff] [blame] | 2360 | if (*opened & FILE_CREATED) { |
Miklos Szeredi | d18e900 | 2012-06-05 15:10:17 +0200 | [diff] [blame] | 2361 | fsnotify_create(dir, dentry); |
| 2362 | acc_mode = MAY_OPEN; |
| 2363 | } |
| 2364 | |
Al Viro | d958527 | 2012-06-22 12:39:14 +0400 | [diff] [blame] | 2365 | if (error) { /* returned 1, that is */ |
Al Viro | 30d9049 | 2012-06-22 12:40:19 +0400 | [diff] [blame] | 2366 | if (WARN_ON(file->f_path.dentry == DENTRY_NOT_SET)) { |
Al Viro | 2675a4e | 2012-06-22 12:41:10 +0400 | [diff] [blame] | 2367 | error = -EIO; |
Miklos Szeredi | d18e900 | 2012-06-05 15:10:17 +0200 | [diff] [blame] | 2368 | goto out; |
| 2369 | } |
Al Viro | 30d9049 | 2012-06-22 12:40:19 +0400 | [diff] [blame] | 2370 | if (file->f_path.dentry) { |
Miklos Szeredi | d18e900 | 2012-06-05 15:10:17 +0200 | [diff] [blame] | 2371 | dput(dentry); |
Al Viro | 30d9049 | 2012-06-22 12:40:19 +0400 | [diff] [blame] | 2372 | dentry = file->f_path.dentry; |
Miklos Szeredi | d18e900 | 2012-06-05 15:10:17 +0200 | [diff] [blame] | 2373 | } |
| 2374 | goto looked_up; |
| 2375 | } |
| 2376 | |
| 2377 | /* |
| 2378 | * We didn't have the inode before the open, so check open permission |
| 2379 | * here. |
| 2380 | */ |
Al Viro | 2675a4e | 2012-06-22 12:41:10 +0400 | [diff] [blame] | 2381 | error = may_open(&file->f_path, acc_mode, open_flag); |
| 2382 | if (error) |
| 2383 | fput(file); |
Miklos Szeredi | d18e900 | 2012-06-05 15:10:17 +0200 | [diff] [blame] | 2384 | |
| 2385 | out: |
| 2386 | dput(dentry); |
Al Viro | 2675a4e | 2012-06-22 12:41:10 +0400 | [diff] [blame] | 2387 | return error; |
Miklos Szeredi | d18e900 | 2012-06-05 15:10:17 +0200 | [diff] [blame] | 2388 | |
Miklos Szeredi | d18e900 | 2012-06-05 15:10:17 +0200 | [diff] [blame] | 2389 | no_open: |
| 2390 | if (need_lookup) { |
Al Viro | 72bd866 | 2012-06-10 17:17:17 -0400 | [diff] [blame] | 2391 | dentry = lookup_real(dir, dentry, nd->flags); |
Miklos Szeredi | d18e900 | 2012-06-05 15:10:17 +0200 | [diff] [blame] | 2392 | if (IS_ERR(dentry)) |
Al Viro | 2675a4e | 2012-06-22 12:41:10 +0400 | [diff] [blame] | 2393 | return PTR_ERR(dentry); |
Miklos Szeredi | d18e900 | 2012-06-05 15:10:17 +0200 | [diff] [blame] | 2394 | |
| 2395 | if (create_error) { |
| 2396 | int open_flag = op->open_flag; |
| 2397 | |
Al Viro | 2675a4e | 2012-06-22 12:41:10 +0400 | [diff] [blame] | 2398 | error = create_error; |
Miklos Szeredi | d18e900 | 2012-06-05 15:10:17 +0200 | [diff] [blame] | 2399 | if ((open_flag & O_EXCL)) { |
| 2400 | if (!dentry->d_inode) |
| 2401 | goto out; |
| 2402 | } else if (!dentry->d_inode) { |
| 2403 | goto out; |
| 2404 | } else if ((open_flag & O_TRUNC) && |
| 2405 | S_ISREG(dentry->d_inode->i_mode)) { |
| 2406 | goto out; |
| 2407 | } |
| 2408 | /* will fail later, go on to get the right error */ |
| 2409 | } |
| 2410 | } |
| 2411 | looked_up: |
| 2412 | path->dentry = dentry; |
| 2413 | path->mnt = nd->path.mnt; |
Al Viro | 2675a4e | 2012-06-22 12:41:10 +0400 | [diff] [blame] | 2414 | return 1; |
Miklos Szeredi | d18e900 | 2012-06-05 15:10:17 +0200 | [diff] [blame] | 2415 | } |
| 2416 | |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 2417 | /* |
David Howells | 1acf0af | 2012-06-14 16:13:46 +0100 | [diff] [blame] | 2418 | * Look up and maybe create and open the last component. |
Miklos Szeredi | d58ffd3 | 2012-06-05 15:10:15 +0200 | [diff] [blame] | 2419 | * |
| 2420 | * Must be called with i_mutex held on parent. |
| 2421 | * |
David Howells | 1acf0af | 2012-06-14 16:13:46 +0100 | [diff] [blame] | 2422 | * Returns 0 if the file was successfully atomically created (if necessary) and |
| 2423 | * opened. In this case the file will be returned attached to @file. |
| 2424 | * |
| 2425 | * Returns 1 if the file was not completely opened at this time, though lookups |
| 2426 | * and creations will have been performed and the dentry returned in @path will |
| 2427 | * be positive upon return if O_CREAT was specified. If O_CREAT wasn't |
| 2428 | * specified then a negative dentry may be returned. |
| 2429 | * |
| 2430 | * An error code is returned otherwise. |
| 2431 | * |
| 2432 | * FILE_CREATE will be set in @*opened if the dentry was created and will be |
| 2433 | * cleared otherwise prior to returning. |
Miklos Szeredi | d58ffd3 | 2012-06-05 15:10:15 +0200 | [diff] [blame] | 2434 | */ |
Al Viro | 2675a4e | 2012-06-22 12:41:10 +0400 | [diff] [blame] | 2435 | static int lookup_open(struct nameidata *nd, struct path *path, |
| 2436 | struct file *file, |
| 2437 | const struct open_flags *op, |
| 2438 | bool *want_write, int *opened) |
Miklos Szeredi | d58ffd3 | 2012-06-05 15:10:15 +0200 | [diff] [blame] | 2439 | { |
| 2440 | struct dentry *dir = nd->path.dentry; |
Miklos Szeredi | 54ef487 | 2012-06-05 15:10:16 +0200 | [diff] [blame] | 2441 | struct inode *dir_inode = dir->d_inode; |
Miklos Szeredi | d58ffd3 | 2012-06-05 15:10:15 +0200 | [diff] [blame] | 2442 | struct dentry *dentry; |
| 2443 | int error; |
Miklos Szeredi | 54ef487 | 2012-06-05 15:10:16 +0200 | [diff] [blame] | 2444 | bool need_lookup; |
Miklos Szeredi | d58ffd3 | 2012-06-05 15:10:15 +0200 | [diff] [blame] | 2445 | |
Al Viro | 4723768 | 2012-06-10 05:01:45 -0400 | [diff] [blame] | 2446 | *opened &= ~FILE_CREATED; |
Al Viro | 201f956 | 2012-06-22 12:42:10 +0400 | [diff] [blame] | 2447 | dentry = lookup_dcache(&nd->last, dir, nd->flags, &need_lookup); |
Miklos Szeredi | d58ffd3 | 2012-06-05 15:10:15 +0200 | [diff] [blame] | 2448 | if (IS_ERR(dentry)) |
Al Viro | 2675a4e | 2012-06-22 12:41:10 +0400 | [diff] [blame] | 2449 | return PTR_ERR(dentry); |
Miklos Szeredi | d58ffd3 | 2012-06-05 15:10:15 +0200 | [diff] [blame] | 2450 | |
Miklos Szeredi | d18e900 | 2012-06-05 15:10:17 +0200 | [diff] [blame] | 2451 | /* Cached positive dentry: will open in f_op->open */ |
| 2452 | if (!need_lookup && dentry->d_inode) |
| 2453 | goto out_no_open; |
| 2454 | |
| 2455 | if ((nd->flags & LOOKUP_OPEN) && dir_inode->i_op->atomic_open) { |
Al Viro | 30d9049 | 2012-06-22 12:40:19 +0400 | [diff] [blame] | 2456 | return atomic_open(nd, dentry, path, file, op, want_write, |
Al Viro | 4723768 | 2012-06-10 05:01:45 -0400 | [diff] [blame] | 2457 | need_lookup, opened); |
Miklos Szeredi | d18e900 | 2012-06-05 15:10:17 +0200 | [diff] [blame] | 2458 | } |
| 2459 | |
Miklos Szeredi | 54ef487 | 2012-06-05 15:10:16 +0200 | [diff] [blame] | 2460 | if (need_lookup) { |
| 2461 | BUG_ON(dentry->d_inode); |
| 2462 | |
Al Viro | 72bd866 | 2012-06-10 17:17:17 -0400 | [diff] [blame] | 2463 | dentry = lookup_real(dir_inode, dentry, nd->flags); |
Miklos Szeredi | 54ef487 | 2012-06-05 15:10:16 +0200 | [diff] [blame] | 2464 | if (IS_ERR(dentry)) |
Al Viro | 2675a4e | 2012-06-22 12:41:10 +0400 | [diff] [blame] | 2465 | return PTR_ERR(dentry); |
Miklos Szeredi | 54ef487 | 2012-06-05 15:10:16 +0200 | [diff] [blame] | 2466 | } |
| 2467 | |
Miklos Szeredi | d58ffd3 | 2012-06-05 15:10:15 +0200 | [diff] [blame] | 2468 | /* Negative dentry, just create the file */ |
| 2469 | if (!dentry->d_inode && (op->open_flag & O_CREAT)) { |
| 2470 | umode_t mode = op->mode; |
| 2471 | if (!IS_POSIXACL(dir->d_inode)) |
| 2472 | mode &= ~current_umask(); |
| 2473 | /* |
| 2474 | * This write is needed to ensure that a |
| 2475 | * rw->ro transition does not occur between |
| 2476 | * the time when the file is created and when |
| 2477 | * a permanent write count is taken through |
Miklos Szeredi | 015c3bb | 2012-06-05 15:10:27 +0200 | [diff] [blame] | 2478 | * the 'struct file' in finish_open(). |
Miklos Szeredi | d58ffd3 | 2012-06-05 15:10:15 +0200 | [diff] [blame] | 2479 | */ |
| 2480 | error = mnt_want_write(nd->path.mnt); |
| 2481 | if (error) |
| 2482 | goto out_dput; |
Miklos Szeredi | 77d660a | 2012-06-05 15:10:30 +0200 | [diff] [blame] | 2483 | *want_write = true; |
Al Viro | 4723768 | 2012-06-10 05:01:45 -0400 | [diff] [blame] | 2484 | *opened |= FILE_CREATED; |
Miklos Szeredi | d58ffd3 | 2012-06-05 15:10:15 +0200 | [diff] [blame] | 2485 | error = security_path_mknod(&nd->path, dentry, mode, 0); |
| 2486 | if (error) |
| 2487 | goto out_dput; |
Al Viro | 312b63f | 2012-06-10 18:09:36 -0400 | [diff] [blame] | 2488 | error = vfs_create(dir->d_inode, dentry, mode, |
| 2489 | nd->flags & LOOKUP_EXCL); |
Miklos Szeredi | d58ffd3 | 2012-06-05 15:10:15 +0200 | [diff] [blame] | 2490 | if (error) |
| 2491 | goto out_dput; |
| 2492 | } |
Miklos Szeredi | d18e900 | 2012-06-05 15:10:17 +0200 | [diff] [blame] | 2493 | out_no_open: |
Miklos Szeredi | d58ffd3 | 2012-06-05 15:10:15 +0200 | [diff] [blame] | 2494 | path->dentry = dentry; |
| 2495 | path->mnt = nd->path.mnt; |
Al Viro | 2675a4e | 2012-06-22 12:41:10 +0400 | [diff] [blame] | 2496 | return 1; |
Miklos Szeredi | d58ffd3 | 2012-06-05 15:10:15 +0200 | [diff] [blame] | 2497 | |
| 2498 | out_dput: |
| 2499 | dput(dentry); |
Al Viro | 2675a4e | 2012-06-22 12:41:10 +0400 | [diff] [blame] | 2500 | return error; |
Miklos Szeredi | d58ffd3 | 2012-06-05 15:10:15 +0200 | [diff] [blame] | 2501 | } |
| 2502 | |
| 2503 | /* |
Al Viro | fe2d35f | 2011-03-05 22:58:25 -0500 | [diff] [blame] | 2504 | * Handle the last step of open() |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 2505 | */ |
Al Viro | 2675a4e | 2012-06-22 12:41:10 +0400 | [diff] [blame] | 2506 | static int do_last(struct nameidata *nd, struct path *path, |
| 2507 | struct file *file, const struct open_flags *op, |
| 2508 | int *opened, const char *pathname) |
Al Viro | fb1cc55 | 2009-12-24 01:58:28 -0500 | [diff] [blame] | 2509 | { |
Al Viro | a1e2803 | 2009-12-24 02:12:06 -0500 | [diff] [blame] | 2510 | struct dentry *dir = nd->path.dentry; |
Al Viro | ca344a89 | 2011-03-09 00:36:45 -0500 | [diff] [blame] | 2511 | int open_flag = op->open_flag; |
Miklos Szeredi | 77d660a | 2012-06-05 15:10:30 +0200 | [diff] [blame] | 2512 | bool will_truncate = (open_flag & O_TRUNC) != 0; |
| 2513 | bool want_write = false; |
Al Viro | bcda765 | 2011-03-13 16:42:14 -0400 | [diff] [blame] | 2514 | int acc_mode = op->acc_mode; |
Miklos Szeredi | a1eb331 | 2012-05-21 17:30:07 +0200 | [diff] [blame] | 2515 | struct inode *inode; |
Miklos Szeredi | 77d660a | 2012-06-05 15:10:30 +0200 | [diff] [blame] | 2516 | bool symlink_ok = false; |
Miklos Szeredi | 16b1c1c | 2012-05-21 17:30:19 +0200 | [diff] [blame] | 2517 | struct path save_parent = { .dentry = NULL, .mnt = NULL }; |
| 2518 | bool retried = false; |
Al Viro | 16c2cd7 | 2011-02-22 15:50:10 -0500 | [diff] [blame] | 2519 | int error; |
Al Viro | fb1cc55 | 2009-12-24 01:58:28 -0500 | [diff] [blame] | 2520 | |
Al Viro | c3e380b | 2011-02-23 13:39:45 -0500 | [diff] [blame] | 2521 | nd->flags &= ~LOOKUP_PARENT; |
| 2522 | nd->flags |= op->intent; |
| 2523 | |
Al Viro | 1f36f77 | 2009-12-26 10:56:19 -0500 | [diff] [blame] | 2524 | switch (nd->last_type) { |
| 2525 | case LAST_DOTDOT: |
Neil Brown | 176306f | 2010-05-24 16:57:56 +1000 | [diff] [blame] | 2526 | case LAST_DOT: |
Al Viro | fe2d35f | 2011-03-05 22:58:25 -0500 | [diff] [blame] | 2527 | error = handle_dots(nd, nd->last_type); |
| 2528 | if (error) |
Al Viro | 2675a4e | 2012-06-22 12:41:10 +0400 | [diff] [blame] | 2529 | return error; |
Al Viro | 1f36f77 | 2009-12-26 10:56:19 -0500 | [diff] [blame] | 2530 | /* fallthrough */ |
Al Viro | 1f36f77 | 2009-12-26 10:56:19 -0500 | [diff] [blame] | 2531 | case LAST_ROOT: |
Al Viro | 9f1fafe | 2011-03-25 11:00:12 -0400 | [diff] [blame] | 2532 | error = complete_walk(nd); |
Al Viro | 16c2cd7 | 2011-02-22 15:50:10 -0500 | [diff] [blame] | 2533 | if (error) |
Al Viro | 2675a4e | 2012-06-22 12:41:10 +0400 | [diff] [blame] | 2534 | return error; |
Al Viro | fe2d35f | 2011-03-05 22:58:25 -0500 | [diff] [blame] | 2535 | audit_inode(pathname, nd->path.dentry); |
Al Viro | ca344a89 | 2011-03-09 00:36:45 -0500 | [diff] [blame] | 2536 | if (open_flag & O_CREAT) { |
Al Viro | fe2d35f | 2011-03-05 22:58:25 -0500 | [diff] [blame] | 2537 | error = -EISDIR; |
Al Viro | 2675a4e | 2012-06-22 12:41:10 +0400 | [diff] [blame] | 2538 | goto out; |
Al Viro | fe2d35f | 2011-03-05 22:58:25 -0500 | [diff] [blame] | 2539 | } |
Miklos Szeredi | e83db16 | 2012-06-05 15:10:29 +0200 | [diff] [blame] | 2540 | goto finish_open; |
Al Viro | 1f36f77 | 2009-12-26 10:56:19 -0500 | [diff] [blame] | 2541 | case LAST_BIND: |
Al Viro | 9f1fafe | 2011-03-25 11:00:12 -0400 | [diff] [blame] | 2542 | error = complete_walk(nd); |
Al Viro | 16c2cd7 | 2011-02-22 15:50:10 -0500 | [diff] [blame] | 2543 | if (error) |
Al Viro | 2675a4e | 2012-06-22 12:41:10 +0400 | [diff] [blame] | 2544 | return error; |
Al Viro | 1f36f77 | 2009-12-26 10:56:19 -0500 | [diff] [blame] | 2545 | audit_inode(pathname, dir); |
Miklos Szeredi | e83db16 | 2012-06-05 15:10:29 +0200 | [diff] [blame] | 2546 | goto finish_open; |
Al Viro | 1f36f77 | 2009-12-26 10:56:19 -0500 | [diff] [blame] | 2547 | } |
Al Viro | 67ee3ad | 2009-12-26 07:01:01 -0500 | [diff] [blame] | 2548 | |
Al Viro | ca344a89 | 2011-03-09 00:36:45 -0500 | [diff] [blame] | 2549 | if (!(open_flag & O_CREAT)) { |
Al Viro | fe2d35f | 2011-03-05 22:58:25 -0500 | [diff] [blame] | 2550 | if (nd->last.name[nd->last.len]) |
| 2551 | nd->flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY; |
Al Viro | bcda765 | 2011-03-13 16:42:14 -0400 | [diff] [blame] | 2552 | if (open_flag & O_PATH && !(nd->flags & LOOKUP_FOLLOW)) |
Miklos Szeredi | 77d660a | 2012-06-05 15:10:30 +0200 | [diff] [blame] | 2553 | symlink_ok = true; |
Al Viro | fe2d35f | 2011-03-05 22:58:25 -0500 | [diff] [blame] | 2554 | /* we _can_ be in RCU mode here */ |
Miklos Szeredi | a1eb331 | 2012-05-21 17:30:07 +0200 | [diff] [blame] | 2555 | error = lookup_fast(nd, &nd->last, path, &inode); |
Miklos Szeredi | 7157486 | 2012-06-05 15:10:14 +0200 | [diff] [blame] | 2556 | if (likely(!error)) |
| 2557 | goto finish_lookup; |
Miklos Szeredi | a1eb331 | 2012-05-21 17:30:07 +0200 | [diff] [blame] | 2558 | |
Miklos Szeredi | 7157486 | 2012-06-05 15:10:14 +0200 | [diff] [blame] | 2559 | if (error < 0) |
Al Viro | 2675a4e | 2012-06-22 12:41:10 +0400 | [diff] [blame] | 2560 | goto out; |
Miklos Szeredi | 37d7fff | 2012-06-05 15:10:12 +0200 | [diff] [blame] | 2561 | |
Miklos Szeredi | 7157486 | 2012-06-05 15:10:14 +0200 | [diff] [blame] | 2562 | BUG_ON(nd->inode != dir->d_inode); |
Miklos Szeredi | b6183df | 2012-06-05 15:10:13 +0200 | [diff] [blame] | 2563 | } else { |
| 2564 | /* create side of things */ |
| 2565 | /* |
| 2566 | * This will *only* deal with leaving RCU mode - LOOKUP_JUMPED |
| 2567 | * has been cleared when we got to the last component we are |
| 2568 | * about to look up |
| 2569 | */ |
| 2570 | error = complete_walk(nd); |
| 2571 | if (error) |
Al Viro | 2675a4e | 2012-06-22 12:41:10 +0400 | [diff] [blame] | 2572 | return error; |
Miklos Szeredi | b6183df | 2012-06-05 15:10:13 +0200 | [diff] [blame] | 2573 | |
| 2574 | audit_inode(pathname, dir); |
| 2575 | error = -EISDIR; |
| 2576 | /* trailing slashes? */ |
| 2577 | if (nd->last.name[nd->last.len]) |
Al Viro | 2675a4e | 2012-06-22 12:41:10 +0400 | [diff] [blame] | 2578 | goto out; |
Al Viro | fe2d35f | 2011-03-05 22:58:25 -0500 | [diff] [blame] | 2579 | } |
| 2580 | |
Miklos Szeredi | 16b1c1c | 2012-05-21 17:30:19 +0200 | [diff] [blame] | 2581 | retry_lookup: |
Al Viro | a1e2803 | 2009-12-24 02:12:06 -0500 | [diff] [blame] | 2582 | mutex_lock(&dir->d_inode->i_mutex); |
Al Viro | 2675a4e | 2012-06-22 12:41:10 +0400 | [diff] [blame] | 2583 | error = lookup_open(nd, path, file, op, &want_write, opened); |
Miklos Szeredi | d58ffd3 | 2012-06-05 15:10:15 +0200 | [diff] [blame] | 2584 | mutex_unlock(&dir->d_inode->i_mutex); |
Al Viro | a1e2803 | 2009-12-24 02:12:06 -0500 | [diff] [blame] | 2585 | |
Al Viro | 2675a4e | 2012-06-22 12:41:10 +0400 | [diff] [blame] | 2586 | if (error <= 0) { |
| 2587 | if (error) |
Miklos Szeredi | d18e900 | 2012-06-05 15:10:17 +0200 | [diff] [blame] | 2588 | goto out; |
| 2589 | |
Al Viro | 4723768 | 2012-06-10 05:01:45 -0400 | [diff] [blame] | 2590 | if ((*opened & FILE_CREATED) || |
Al Viro | 2675a4e | 2012-06-22 12:41:10 +0400 | [diff] [blame] | 2591 | !S_ISREG(file->f_path.dentry->d_inode->i_mode)) |
Miklos Szeredi | 77d660a | 2012-06-05 15:10:30 +0200 | [diff] [blame] | 2592 | will_truncate = false; |
Miklos Szeredi | d18e900 | 2012-06-05 15:10:17 +0200 | [diff] [blame] | 2593 | |
Al Viro | 2675a4e | 2012-06-22 12:41:10 +0400 | [diff] [blame] | 2594 | audit_inode(pathname, file->f_path.dentry); |
Miklos Szeredi | d18e900 | 2012-06-05 15:10:17 +0200 | [diff] [blame] | 2595 | goto opened; |
| 2596 | } |
Al Viro | fb1cc55 | 2009-12-24 01:58:28 -0500 | [diff] [blame] | 2597 | |
Al Viro | 4723768 | 2012-06-10 05:01:45 -0400 | [diff] [blame] | 2598 | if (*opened & FILE_CREATED) { |
Al Viro | 9b44f1b | 2011-03-09 00:17:27 -0500 | [diff] [blame] | 2599 | /* Don't check for write permission, don't truncate */ |
Al Viro | ca344a89 | 2011-03-09 00:36:45 -0500 | [diff] [blame] | 2600 | open_flag &= ~O_TRUNC; |
Miklos Szeredi | 77d660a | 2012-06-05 15:10:30 +0200 | [diff] [blame] | 2601 | will_truncate = false; |
Al Viro | bcda765 | 2011-03-13 16:42:14 -0400 | [diff] [blame] | 2602 | acc_mode = MAY_OPEN; |
Miklos Szeredi | d58ffd3 | 2012-06-05 15:10:15 +0200 | [diff] [blame] | 2603 | path_to_nameidata(path, nd); |
Miklos Szeredi | e83db16 | 2012-06-05 15:10:29 +0200 | [diff] [blame] | 2604 | goto finish_open_created; |
Al Viro | fb1cc55 | 2009-12-24 01:58:28 -0500 | [diff] [blame] | 2605 | } |
| 2606 | |
| 2607 | /* |
| 2608 | * It already exists. |
| 2609 | */ |
Al Viro | fb1cc55 | 2009-12-24 01:58:28 -0500 | [diff] [blame] | 2610 | audit_inode(pathname, path->dentry); |
| 2611 | |
Miklos Szeredi | d18e900 | 2012-06-05 15:10:17 +0200 | [diff] [blame] | 2612 | /* |
| 2613 | * If atomic_open() acquired write access it is dropped now due to |
| 2614 | * possible mount and symlink following (this might be optimized away if |
| 2615 | * necessary...) |
| 2616 | */ |
| 2617 | if (want_write) { |
| 2618 | mnt_drop_write(nd->path.mnt); |
Miklos Szeredi | 77d660a | 2012-06-05 15:10:30 +0200 | [diff] [blame] | 2619 | want_write = false; |
Miklos Szeredi | d18e900 | 2012-06-05 15:10:17 +0200 | [diff] [blame] | 2620 | } |
| 2621 | |
Al Viro | fb1cc55 | 2009-12-24 01:58:28 -0500 | [diff] [blame] | 2622 | error = -EEXIST; |
Al Viro | ca344a89 | 2011-03-09 00:36:45 -0500 | [diff] [blame] | 2623 | if (open_flag & O_EXCL) |
Al Viro | fb1cc55 | 2009-12-24 01:58:28 -0500 | [diff] [blame] | 2624 | goto exit_dput; |
| 2625 | |
David Howells | 9875cf8 | 2011-01-14 18:45:21 +0000 | [diff] [blame] | 2626 | error = follow_managed(path, nd->flags); |
| 2627 | if (error < 0) |
| 2628 | goto exit_dput; |
Al Viro | fb1cc55 | 2009-12-24 01:58:28 -0500 | [diff] [blame] | 2629 | |
Al Viro | a3fbbde | 2011-11-07 21:21:26 +0000 | [diff] [blame] | 2630 | if (error) |
| 2631 | nd->flags |= LOOKUP_JUMPED; |
| 2632 | |
Miklos Szeredi | decf340 | 2012-05-21 17:30:08 +0200 | [diff] [blame] | 2633 | BUG_ON(nd->flags & LOOKUP_RCU); |
| 2634 | inode = path->dentry->d_inode; |
Miklos Szeredi | 5f5daac | 2012-05-21 17:30:14 +0200 | [diff] [blame] | 2635 | finish_lookup: |
| 2636 | /* we _can_ be in RCU mode here */ |
Al Viro | fb1cc55 | 2009-12-24 01:58:28 -0500 | [diff] [blame] | 2637 | error = -ENOENT; |
Miklos Szeredi | 54c33e7 | 2012-05-21 17:30:10 +0200 | [diff] [blame] | 2638 | if (!inode) { |
| 2639 | path_to_nameidata(path, nd); |
Al Viro | 2675a4e | 2012-06-22 12:41:10 +0400 | [diff] [blame] | 2640 | goto out; |
Miklos Szeredi | 54c33e7 | 2012-05-21 17:30:10 +0200 | [diff] [blame] | 2641 | } |
Al Viro | 9e67f36 | 2009-12-26 07:04:50 -0500 | [diff] [blame] | 2642 | |
Miklos Szeredi | d45ea86 | 2012-05-21 17:30:09 +0200 | [diff] [blame] | 2643 | if (should_follow_link(inode, !symlink_ok)) { |
| 2644 | if (nd->flags & LOOKUP_RCU) { |
| 2645 | if (unlikely(unlazy_walk(nd, path->dentry))) { |
| 2646 | error = -ECHILD; |
Al Viro | 2675a4e | 2012-06-22 12:41:10 +0400 | [diff] [blame] | 2647 | goto out; |
Miklos Szeredi | d45ea86 | 2012-05-21 17:30:09 +0200 | [diff] [blame] | 2648 | } |
| 2649 | } |
| 2650 | BUG_ON(inode != path->dentry->d_inode); |
Al Viro | 2675a4e | 2012-06-22 12:41:10 +0400 | [diff] [blame] | 2651 | return 1; |
Miklos Szeredi | d45ea86 | 2012-05-21 17:30:09 +0200 | [diff] [blame] | 2652 | } |
Al Viro | fb1cc55 | 2009-12-24 01:58:28 -0500 | [diff] [blame] | 2653 | |
Miklos Szeredi | 16b1c1c | 2012-05-21 17:30:19 +0200 | [diff] [blame] | 2654 | if ((nd->flags & LOOKUP_RCU) || nd->path.mnt != path->mnt) { |
| 2655 | path_to_nameidata(path, nd); |
| 2656 | } else { |
| 2657 | save_parent.dentry = nd->path.dentry; |
| 2658 | save_parent.mnt = mntget(path->mnt); |
| 2659 | nd->path.dentry = path->dentry; |
| 2660 | |
| 2661 | } |
Miklos Szeredi | decf340 | 2012-05-21 17:30:08 +0200 | [diff] [blame] | 2662 | nd->inode = inode; |
Al Viro | a3fbbde | 2011-11-07 21:21:26 +0000 | [diff] [blame] | 2663 | /* Why this, you ask? _Now_ we might have grown LOOKUP_JUMPED... */ |
| 2664 | error = complete_walk(nd); |
Miklos Szeredi | 16b1c1c | 2012-05-21 17:30:19 +0200 | [diff] [blame] | 2665 | if (error) { |
| 2666 | path_put(&save_parent); |
Al Viro | 2675a4e | 2012-06-22 12:41:10 +0400 | [diff] [blame] | 2667 | return error; |
Miklos Szeredi | 16b1c1c | 2012-05-21 17:30:19 +0200 | [diff] [blame] | 2668 | } |
Al Viro | fb1cc55 | 2009-12-24 01:58:28 -0500 | [diff] [blame] | 2669 | error = -EISDIR; |
Miklos Szeredi | 050ac84 | 2012-05-21 17:30:12 +0200 | [diff] [blame] | 2670 | if ((open_flag & O_CREAT) && S_ISDIR(nd->inode->i_mode)) |
Al Viro | 2675a4e | 2012-06-22 12:41:10 +0400 | [diff] [blame] | 2671 | goto out; |
Miklos Szeredi | af2f554 | 2012-05-21 17:30:11 +0200 | [diff] [blame] | 2672 | error = -ENOTDIR; |
| 2673 | if ((nd->flags & LOOKUP_DIRECTORY) && !nd->inode->i_op->lookup) |
Al Viro | 2675a4e | 2012-06-22 12:41:10 +0400 | [diff] [blame] | 2674 | goto out; |
Miklos Szeredi | d7fdd7f | 2012-05-21 17:30:13 +0200 | [diff] [blame] | 2675 | audit_inode(pathname, nd->path.dentry); |
Miklos Szeredi | e83db16 | 2012-06-05 15:10:29 +0200 | [diff] [blame] | 2676 | finish_open: |
Al Viro | 6c0d46c | 2011-03-09 00:59:59 -0500 | [diff] [blame] | 2677 | if (!S_ISREG(nd->inode->i_mode)) |
Miklos Szeredi | 77d660a | 2012-06-05 15:10:30 +0200 | [diff] [blame] | 2678 | will_truncate = false; |
Al Viro | 6c0d46c | 2011-03-09 00:59:59 -0500 | [diff] [blame] | 2679 | |
Al Viro | 0f9d1a1 | 2011-03-09 00:13:14 -0500 | [diff] [blame] | 2680 | if (will_truncate) { |
| 2681 | error = mnt_want_write(nd->path.mnt); |
| 2682 | if (error) |
Al Viro | 2675a4e | 2012-06-22 12:41:10 +0400 | [diff] [blame] | 2683 | goto out; |
Miklos Szeredi | 77d660a | 2012-06-05 15:10:30 +0200 | [diff] [blame] | 2684 | want_write = true; |
Al Viro | 0f9d1a1 | 2011-03-09 00:13:14 -0500 | [diff] [blame] | 2685 | } |
Miklos Szeredi | e83db16 | 2012-06-05 15:10:29 +0200 | [diff] [blame] | 2686 | finish_open_created: |
Al Viro | bcda765 | 2011-03-13 16:42:14 -0400 | [diff] [blame] | 2687 | error = may_open(&nd->path, acc_mode, open_flag); |
Al Viro | ca344a89 | 2011-03-09 00:36:45 -0500 | [diff] [blame] | 2688 | if (error) |
Al Viro | 2675a4e | 2012-06-22 12:41:10 +0400 | [diff] [blame] | 2689 | goto out; |
Al Viro | 30d9049 | 2012-06-22 12:40:19 +0400 | [diff] [blame] | 2690 | file->f_path.mnt = nd->path.mnt; |
| 2691 | error = finish_open(file, nd->path.dentry, NULL, opened); |
| 2692 | if (error) { |
Al Viro | 30d9049 | 2012-06-22 12:40:19 +0400 | [diff] [blame] | 2693 | if (error == -EOPENSTALE) |
Miklos Szeredi | f60dc3d | 2012-06-05 15:10:31 +0200 | [diff] [blame] | 2694 | goto stale_open; |
Miklos Szeredi | 015c3bb | 2012-06-05 15:10:27 +0200 | [diff] [blame] | 2695 | goto out; |
Miklos Szeredi | f60dc3d | 2012-06-05 15:10:31 +0200 | [diff] [blame] | 2696 | } |
Miklos Szeredi | a8277b9 | 2012-06-05 15:10:32 +0200 | [diff] [blame] | 2697 | opened: |
Al Viro | 2675a4e | 2012-06-22 12:41:10 +0400 | [diff] [blame] | 2698 | error = open_check_o_direct(file); |
Miklos Szeredi | 015c3bb | 2012-06-05 15:10:27 +0200 | [diff] [blame] | 2699 | if (error) |
| 2700 | goto exit_fput; |
Al Viro | 2675a4e | 2012-06-22 12:41:10 +0400 | [diff] [blame] | 2701 | error = ima_file_check(file, op->acc_mode); |
Miklos Szeredi | aa4caad | 2012-06-05 15:10:28 +0200 | [diff] [blame] | 2702 | if (error) |
| 2703 | goto exit_fput; |
| 2704 | |
| 2705 | if (will_truncate) { |
Al Viro | 2675a4e | 2012-06-22 12:41:10 +0400 | [diff] [blame] | 2706 | error = handle_truncate(file); |
Miklos Szeredi | aa4caad | 2012-06-05 15:10:28 +0200 | [diff] [blame] | 2707 | if (error) |
| 2708 | goto exit_fput; |
Al Viro | 0f9d1a1 | 2011-03-09 00:13:14 -0500 | [diff] [blame] | 2709 | } |
Al Viro | ca344a89 | 2011-03-09 00:36:45 -0500 | [diff] [blame] | 2710 | out: |
| 2711 | if (want_write) |
Al Viro | 0f9d1a1 | 2011-03-09 00:13:14 -0500 | [diff] [blame] | 2712 | mnt_drop_write(nd->path.mnt); |
Miklos Szeredi | 16b1c1c | 2012-05-21 17:30:19 +0200 | [diff] [blame] | 2713 | path_put(&save_parent); |
Miklos Szeredi | e276ae6 | 2012-05-21 17:30:06 +0200 | [diff] [blame] | 2714 | terminate_walk(nd); |
Al Viro | 2675a4e | 2012-06-22 12:41:10 +0400 | [diff] [blame] | 2715 | return error; |
Al Viro | fb1cc55 | 2009-12-24 01:58:28 -0500 | [diff] [blame] | 2716 | |
Al Viro | fb1cc55 | 2009-12-24 01:58:28 -0500 | [diff] [blame] | 2717 | exit_dput: |
| 2718 | path_put_conditional(path, nd); |
Al Viro | ca344a89 | 2011-03-09 00:36:45 -0500 | [diff] [blame] | 2719 | goto out; |
Miklos Szeredi | 015c3bb | 2012-06-05 15:10:27 +0200 | [diff] [blame] | 2720 | exit_fput: |
Al Viro | 2675a4e | 2012-06-22 12:41:10 +0400 | [diff] [blame] | 2721 | fput(file); |
| 2722 | goto out; |
Miklos Szeredi | 015c3bb | 2012-06-05 15:10:27 +0200 | [diff] [blame] | 2723 | |
Miklos Szeredi | f60dc3d | 2012-06-05 15:10:31 +0200 | [diff] [blame] | 2724 | stale_open: |
| 2725 | /* If no saved parent or already retried then can't retry */ |
| 2726 | if (!save_parent.dentry || retried) |
| 2727 | goto out; |
| 2728 | |
| 2729 | BUG_ON(save_parent.dentry != dir); |
| 2730 | path_put(&nd->path); |
| 2731 | nd->path = save_parent; |
| 2732 | nd->inode = dir->d_inode; |
| 2733 | save_parent.mnt = NULL; |
| 2734 | save_parent.dentry = NULL; |
| 2735 | if (want_write) { |
| 2736 | mnt_drop_write(nd->path.mnt); |
| 2737 | want_write = false; |
| 2738 | } |
| 2739 | retried = true; |
| 2740 | goto retry_lookup; |
Al Viro | fb1cc55 | 2009-12-24 01:58:28 -0500 | [diff] [blame] | 2741 | } |
| 2742 | |
Al Viro | 13aab42 | 2011-02-23 17:54:08 -0500 | [diff] [blame] | 2743 | static struct file *path_openat(int dfd, const char *pathname, |
Al Viro | 73d049a | 2011-03-11 12:08:24 -0500 | [diff] [blame] | 2744 | struct nameidata *nd, const struct open_flags *op, int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2745 | { |
Al Viro | fe2d35f | 2011-03-05 22:58:25 -0500 | [diff] [blame] | 2746 | struct file *base = NULL; |
Al Viro | 30d9049 | 2012-06-22 12:40:19 +0400 | [diff] [blame] | 2747 | struct file *file; |
Al Viro | 9850c05 | 2010-01-13 15:01:15 -0500 | [diff] [blame] | 2748 | struct path path; |
Al Viro | 4723768 | 2012-06-10 05:01:45 -0400 | [diff] [blame] | 2749 | int opened = 0; |
Al Viro | 13aab42 | 2011-02-23 17:54:08 -0500 | [diff] [blame] | 2750 | int error; |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 2751 | |
Al Viro | 30d9049 | 2012-06-22 12:40:19 +0400 | [diff] [blame] | 2752 | file = get_empty_filp(); |
| 2753 | if (!file) |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 2754 | return ERR_PTR(-ENFILE); |
| 2755 | |
Al Viro | 30d9049 | 2012-06-22 12:40:19 +0400 | [diff] [blame] | 2756 | file->f_flags = op->open_flag; |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 2757 | |
Al Viro | 73d049a | 2011-03-11 12:08:24 -0500 | [diff] [blame] | 2758 | error = path_init(dfd, pathname, flags | LOOKUP_PARENT, nd, &base); |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 2759 | if (unlikely(error)) |
Al Viro | 2675a4e | 2012-06-22 12:41:10 +0400 | [diff] [blame] | 2760 | goto out; |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 2761 | |
Al Viro | fe2d35f | 2011-03-05 22:58:25 -0500 | [diff] [blame] | 2762 | current->total_link_count = 0; |
Al Viro | 73d049a | 2011-03-11 12:08:24 -0500 | [diff] [blame] | 2763 | error = link_path_walk(pathname, nd); |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 2764 | if (unlikely(error)) |
Al Viro | 2675a4e | 2012-06-22 12:41:10 +0400 | [diff] [blame] | 2765 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2766 | |
Al Viro | 2675a4e | 2012-06-22 12:41:10 +0400 | [diff] [blame] | 2767 | error = do_last(nd, &path, file, op, &opened, pathname); |
| 2768 | while (unlikely(error > 0)) { /* trailing symlink */ |
Nick Piggin | 7b9337a | 2011-01-14 08:42:43 +0000 | [diff] [blame] | 2769 | struct path link = path; |
Al Viro | def4af3 | 2009-12-26 08:37:05 -0500 | [diff] [blame] | 2770 | void *cookie; |
Al Viro | 574197e | 2011-03-14 22:20:34 -0400 | [diff] [blame] | 2771 | if (!(nd->flags & LOOKUP_FOLLOW)) { |
Al Viro | 73d049a | 2011-03-11 12:08:24 -0500 | [diff] [blame] | 2772 | path_put_conditional(&path, nd); |
| 2773 | path_put(&nd->path); |
Al Viro | 2675a4e | 2012-06-22 12:41:10 +0400 | [diff] [blame] | 2774 | error = -ELOOP; |
Al Viro | 40b3913 | 2011-03-09 16:22:18 -0500 | [diff] [blame] | 2775 | break; |
| 2776 | } |
Al Viro | 73d049a | 2011-03-11 12:08:24 -0500 | [diff] [blame] | 2777 | nd->flags |= LOOKUP_PARENT; |
| 2778 | nd->flags &= ~(LOOKUP_OPEN|LOOKUP_CREATE|LOOKUP_EXCL); |
Al Viro | 574197e | 2011-03-14 22:20:34 -0400 | [diff] [blame] | 2779 | error = follow_link(&link, nd, &cookie); |
Al Viro | c3e380b | 2011-02-23 13:39:45 -0500 | [diff] [blame] | 2780 | if (unlikely(error)) |
Al Viro | 2675a4e | 2012-06-22 12:41:10 +0400 | [diff] [blame] | 2781 | break; |
| 2782 | error = do_last(nd, &path, file, op, &opened, pathname); |
Al Viro | 574197e | 2011-03-14 22:20:34 -0400 | [diff] [blame] | 2783 | put_link(nd, &link, cookie); |
Al Viro | 806b681 | 2009-12-26 07:16:40 -0500 | [diff] [blame] | 2784 | } |
Al Viro | 10fa8e6 | 2009-12-26 07:09:49 -0500 | [diff] [blame] | 2785 | out: |
Al Viro | 73d049a | 2011-03-11 12:08:24 -0500 | [diff] [blame] | 2786 | if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT)) |
| 2787 | path_put(&nd->root); |
Al Viro | fe2d35f | 2011-03-05 22:58:25 -0500 | [diff] [blame] | 2788 | if (base) |
| 2789 | fput(base); |
Al Viro | 2675a4e | 2012-06-22 12:41:10 +0400 | [diff] [blame] | 2790 | if (!(opened & FILE_OPENED)) { |
| 2791 | BUG_ON(!error); |
Al Viro | 30d9049 | 2012-06-22 12:40:19 +0400 | [diff] [blame] | 2792 | put_filp(file); |
Miklos Szeredi | 015c3bb | 2012-06-05 15:10:27 +0200 | [diff] [blame] | 2793 | } |
Al Viro | 2675a4e | 2012-06-22 12:41:10 +0400 | [diff] [blame] | 2794 | if (unlikely(error)) { |
| 2795 | if (error == -EOPENSTALE) { |
| 2796 | if (flags & LOOKUP_RCU) |
| 2797 | error = -ECHILD; |
| 2798 | else |
| 2799 | error = -ESTALE; |
| 2800 | } |
| 2801 | file = ERR_PTR(error); |
| 2802 | } |
| 2803 | return file; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2804 | } |
| 2805 | |
Al Viro | 13aab42 | 2011-02-23 17:54:08 -0500 | [diff] [blame] | 2806 | struct file *do_filp_open(int dfd, const char *pathname, |
| 2807 | const struct open_flags *op, int flags) |
| 2808 | { |
Al Viro | 73d049a | 2011-03-11 12:08:24 -0500 | [diff] [blame] | 2809 | struct nameidata nd; |
Al Viro | 13aab42 | 2011-02-23 17:54:08 -0500 | [diff] [blame] | 2810 | struct file *filp; |
| 2811 | |
Al Viro | 73d049a | 2011-03-11 12:08:24 -0500 | [diff] [blame] | 2812 | filp = path_openat(dfd, pathname, &nd, op, flags | LOOKUP_RCU); |
Al Viro | 13aab42 | 2011-02-23 17:54:08 -0500 | [diff] [blame] | 2813 | if (unlikely(filp == ERR_PTR(-ECHILD))) |
Al Viro | 73d049a | 2011-03-11 12:08:24 -0500 | [diff] [blame] | 2814 | filp = path_openat(dfd, pathname, &nd, op, flags); |
Al Viro | 13aab42 | 2011-02-23 17:54:08 -0500 | [diff] [blame] | 2815 | if (unlikely(filp == ERR_PTR(-ESTALE))) |
Al Viro | 73d049a | 2011-03-11 12:08:24 -0500 | [diff] [blame] | 2816 | filp = path_openat(dfd, pathname, &nd, op, flags | LOOKUP_REVAL); |
Al Viro | 13aab42 | 2011-02-23 17:54:08 -0500 | [diff] [blame] | 2817 | return filp; |
| 2818 | } |
| 2819 | |
Al Viro | 73d049a | 2011-03-11 12:08:24 -0500 | [diff] [blame] | 2820 | struct file *do_file_open_root(struct dentry *dentry, struct vfsmount *mnt, |
| 2821 | const char *name, const struct open_flags *op, int flags) |
| 2822 | { |
| 2823 | struct nameidata nd; |
| 2824 | struct file *file; |
| 2825 | |
| 2826 | nd.root.mnt = mnt; |
| 2827 | nd.root.dentry = dentry; |
| 2828 | |
| 2829 | flags |= LOOKUP_ROOT; |
| 2830 | |
Al Viro | bcda765 | 2011-03-13 16:42:14 -0400 | [diff] [blame] | 2831 | if (dentry->d_inode->i_op->follow_link && op->intent & LOOKUP_OPEN) |
Al Viro | 73d049a | 2011-03-11 12:08:24 -0500 | [diff] [blame] | 2832 | return ERR_PTR(-ELOOP); |
| 2833 | |
| 2834 | file = path_openat(-1, name, &nd, op, flags | LOOKUP_RCU); |
| 2835 | if (unlikely(file == ERR_PTR(-ECHILD))) |
| 2836 | file = path_openat(-1, name, &nd, op, flags); |
| 2837 | if (unlikely(file == ERR_PTR(-ESTALE))) |
| 2838 | file = path_openat(-1, name, &nd, op, flags | LOOKUP_REVAL); |
| 2839 | return file; |
| 2840 | } |
| 2841 | |
Al Viro | ed75e95 | 2011-06-27 16:53:43 -0400 | [diff] [blame] | 2842 | struct dentry *kern_path_create(int dfd, const char *pathname, struct path *path, int is_dir) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2843 | { |
Christoph Hellwig | c663e5d | 2005-06-23 00:09:49 -0700 | [diff] [blame] | 2844 | struct dentry *dentry = ERR_PTR(-EEXIST); |
Al Viro | ed75e95 | 2011-06-27 16:53:43 -0400 | [diff] [blame] | 2845 | struct nameidata nd; |
| 2846 | int error = do_path_lookup(dfd, pathname, LOOKUP_PARENT, &nd); |
| 2847 | if (error) |
| 2848 | return ERR_PTR(error); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2849 | |
Christoph Hellwig | c663e5d | 2005-06-23 00:09:49 -0700 | [diff] [blame] | 2850 | /* |
| 2851 | * Yucky last component or no last component at all? |
| 2852 | * (foo/., foo/.., /////) |
| 2853 | */ |
Al Viro | ed75e95 | 2011-06-27 16:53:43 -0400 | [diff] [blame] | 2854 | if (nd.last_type != LAST_NORM) |
| 2855 | goto out; |
| 2856 | nd.flags &= ~LOOKUP_PARENT; |
| 2857 | nd.flags |= LOOKUP_CREATE | LOOKUP_EXCL; |
Christoph Hellwig | c663e5d | 2005-06-23 00:09:49 -0700 | [diff] [blame] | 2858 | |
| 2859 | /* |
| 2860 | * Do the final lookup. |
| 2861 | */ |
Al Viro | ed75e95 | 2011-06-27 16:53:43 -0400 | [diff] [blame] | 2862 | mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT); |
| 2863 | dentry = lookup_hash(&nd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2864 | if (IS_ERR(dentry)) |
| 2865 | goto fail; |
Christoph Hellwig | c663e5d | 2005-06-23 00:09:49 -0700 | [diff] [blame] | 2866 | |
Al Viro | e9baf6e | 2008-05-15 04:49:12 -0400 | [diff] [blame] | 2867 | if (dentry->d_inode) |
| 2868 | goto eexist; |
Christoph Hellwig | c663e5d | 2005-06-23 00:09:49 -0700 | [diff] [blame] | 2869 | /* |
| 2870 | * Special case - lookup gave negative, but... we had foo/bar/ |
| 2871 | * From the vfs_mknod() POV we just have a negative dentry - |
| 2872 | * all is fine. Let's be bastards - you had / on the end, you've |
| 2873 | * been asking for (non-existent) directory. -ENOENT for you. |
| 2874 | */ |
Al Viro | ed75e95 | 2011-06-27 16:53:43 -0400 | [diff] [blame] | 2875 | if (unlikely(!is_dir && nd.last.name[nd.last.len])) { |
Al Viro | e9baf6e | 2008-05-15 04:49:12 -0400 | [diff] [blame] | 2876 | dput(dentry); |
| 2877 | dentry = ERR_PTR(-ENOENT); |
Al Viro | ed75e95 | 2011-06-27 16:53:43 -0400 | [diff] [blame] | 2878 | goto fail; |
Al Viro | e9baf6e | 2008-05-15 04:49:12 -0400 | [diff] [blame] | 2879 | } |
Al Viro | ed75e95 | 2011-06-27 16:53:43 -0400 | [diff] [blame] | 2880 | *path = nd.path; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2881 | return dentry; |
Al Viro | e9baf6e | 2008-05-15 04:49:12 -0400 | [diff] [blame] | 2882 | eexist: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2883 | dput(dentry); |
Al Viro | e9baf6e | 2008-05-15 04:49:12 -0400 | [diff] [blame] | 2884 | dentry = ERR_PTR(-EEXIST); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2885 | fail: |
Al Viro | ed75e95 | 2011-06-27 16:53:43 -0400 | [diff] [blame] | 2886 | mutex_unlock(&nd.path.dentry->d_inode->i_mutex); |
| 2887 | out: |
| 2888 | path_put(&nd.path); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2889 | return dentry; |
| 2890 | } |
Al Viro | dae6ad8 | 2011-06-26 11:50:15 -0400 | [diff] [blame] | 2891 | EXPORT_SYMBOL(kern_path_create); |
| 2892 | |
| 2893 | struct dentry *user_path_create(int dfd, const char __user *pathname, struct path *path, int is_dir) |
| 2894 | { |
| 2895 | char *tmp = getname(pathname); |
| 2896 | struct dentry *res; |
| 2897 | if (IS_ERR(tmp)) |
| 2898 | return ERR_CAST(tmp); |
| 2899 | res = kern_path_create(dfd, tmp, path, is_dir); |
| 2900 | putname(tmp); |
| 2901 | return res; |
| 2902 | } |
| 2903 | EXPORT_SYMBOL(user_path_create); |
| 2904 | |
Al Viro | 1a67aaf | 2011-07-26 01:52:52 -0400 | [diff] [blame] | 2905 | int vfs_mknod(struct inode *dir, struct dentry *dentry, umode_t mode, dev_t dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2906 | { |
Miklos Szeredi | a95164d | 2008-07-30 15:08:48 +0200 | [diff] [blame] | 2907 | int error = may_create(dir, dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2908 | |
| 2909 | if (error) |
| 2910 | return error; |
| 2911 | |
Eric W. Biederman | 975d6b3 | 2011-11-13 12:16:43 -0800 | [diff] [blame] | 2912 | if ((S_ISCHR(mode) || S_ISBLK(mode)) && !capable(CAP_MKNOD)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2913 | return -EPERM; |
| 2914 | |
Al Viro | acfa438 | 2008-12-04 10:06:33 -0500 | [diff] [blame] | 2915 | if (!dir->i_op->mknod) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2916 | return -EPERM; |
| 2917 | |
Serge E. Hallyn | 08ce5f1 | 2008-04-29 01:00:10 -0700 | [diff] [blame] | 2918 | error = devcgroup_inode_mknod(mode, dev); |
| 2919 | if (error) |
| 2920 | return error; |
| 2921 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2922 | error = security_inode_mknod(dir, dentry, mode, dev); |
| 2923 | if (error) |
| 2924 | return error; |
| 2925 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2926 | error = dir->i_op->mknod(dir, dentry, mode, dev); |
Stephen Smalley | a74574a | 2005-09-09 13:01:44 -0700 | [diff] [blame] | 2927 | if (!error) |
Amy Griffis | f38aa94 | 2005-11-03 15:57:06 +0000 | [diff] [blame] | 2928 | fsnotify_create(dir, dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2929 | return error; |
| 2930 | } |
| 2931 | |
Al Viro | f69aac0 | 2011-07-26 04:31:40 -0400 | [diff] [blame] | 2932 | static int may_mknod(umode_t mode) |
Dave Hansen | 463c319 | 2008-02-15 14:37:57 -0800 | [diff] [blame] | 2933 | { |
| 2934 | switch (mode & S_IFMT) { |
| 2935 | case S_IFREG: |
| 2936 | case S_IFCHR: |
| 2937 | case S_IFBLK: |
| 2938 | case S_IFIFO: |
| 2939 | case S_IFSOCK: |
| 2940 | case 0: /* zero mode translates to S_IFREG */ |
| 2941 | return 0; |
| 2942 | case S_IFDIR: |
| 2943 | return -EPERM; |
| 2944 | default: |
| 2945 | return -EINVAL; |
| 2946 | } |
| 2947 | } |
| 2948 | |
Al Viro | 8208a22 | 2011-07-25 17:32:17 -0400 | [diff] [blame] | 2949 | SYSCALL_DEFINE4(mknodat, int, dfd, const char __user *, filename, umode_t, mode, |
Heiko Carstens | 2e4d092 | 2009-01-14 14:14:31 +0100 | [diff] [blame] | 2950 | unsigned, dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2951 | { |
Al Viro | 2ad94ae | 2008-07-21 09:32:51 -0400 | [diff] [blame] | 2952 | struct dentry *dentry; |
Al Viro | dae6ad8 | 2011-06-26 11:50:15 -0400 | [diff] [blame] | 2953 | struct path path; |
| 2954 | int error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2955 | |
| 2956 | if (S_ISDIR(mode)) |
| 2957 | return -EPERM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2958 | |
Al Viro | dae6ad8 | 2011-06-26 11:50:15 -0400 | [diff] [blame] | 2959 | dentry = user_path_create(dfd, filename, &path, 0); |
| 2960 | if (IS_ERR(dentry)) |
| 2961 | return PTR_ERR(dentry); |
Al Viro | 2ad94ae | 2008-07-21 09:32:51 -0400 | [diff] [blame] | 2962 | |
Al Viro | dae6ad8 | 2011-06-26 11:50:15 -0400 | [diff] [blame] | 2963 | if (!IS_POSIXACL(path.dentry->d_inode)) |
Al Viro | ce3b0f8 | 2009-03-29 19:08:22 -0400 | [diff] [blame] | 2964 | mode &= ~current_umask(); |
Dave Hansen | 463c319 | 2008-02-15 14:37:57 -0800 | [diff] [blame] | 2965 | error = may_mknod(mode); |
| 2966 | if (error) |
| 2967 | goto out_dput; |
Al Viro | dae6ad8 | 2011-06-26 11:50:15 -0400 | [diff] [blame] | 2968 | error = mnt_want_write(path.mnt); |
Dave Hansen | 463c319 | 2008-02-15 14:37:57 -0800 | [diff] [blame] | 2969 | if (error) |
| 2970 | goto out_dput; |
Al Viro | dae6ad8 | 2011-06-26 11:50:15 -0400 | [diff] [blame] | 2971 | error = security_path_mknod(&path, dentry, mode, dev); |
Kentaro Takeda | be6d3e5 | 2008-12-17 13:24:15 +0900 | [diff] [blame] | 2972 | if (error) |
| 2973 | goto out_drop_write; |
Dave Hansen | 463c319 | 2008-02-15 14:37:57 -0800 | [diff] [blame] | 2974 | switch (mode & S_IFMT) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2975 | case 0: case S_IFREG: |
Al Viro | 312b63f | 2012-06-10 18:09:36 -0400 | [diff] [blame] | 2976 | error = vfs_create(path.dentry->d_inode,dentry,mode,true); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2977 | break; |
| 2978 | case S_IFCHR: case S_IFBLK: |
Al Viro | dae6ad8 | 2011-06-26 11:50:15 -0400 | [diff] [blame] | 2979 | error = vfs_mknod(path.dentry->d_inode,dentry,mode, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2980 | new_decode_dev(dev)); |
| 2981 | break; |
| 2982 | case S_IFIFO: case S_IFSOCK: |
Al Viro | dae6ad8 | 2011-06-26 11:50:15 -0400 | [diff] [blame] | 2983 | error = vfs_mknod(path.dentry->d_inode,dentry,mode,0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2984 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2985 | } |
Kentaro Takeda | be6d3e5 | 2008-12-17 13:24:15 +0900 | [diff] [blame] | 2986 | out_drop_write: |
Al Viro | dae6ad8 | 2011-06-26 11:50:15 -0400 | [diff] [blame] | 2987 | mnt_drop_write(path.mnt); |
Dave Hansen | 463c319 | 2008-02-15 14:37:57 -0800 | [diff] [blame] | 2988 | out_dput: |
| 2989 | dput(dentry); |
Al Viro | dae6ad8 | 2011-06-26 11:50:15 -0400 | [diff] [blame] | 2990 | mutex_unlock(&path.dentry->d_inode->i_mutex); |
| 2991 | path_put(&path); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2992 | |
| 2993 | return error; |
| 2994 | } |
| 2995 | |
Al Viro | 8208a22 | 2011-07-25 17:32:17 -0400 | [diff] [blame] | 2996 | SYSCALL_DEFINE3(mknod, const char __user *, filename, umode_t, mode, unsigned, dev) |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 2997 | { |
| 2998 | return sys_mknodat(AT_FDCWD, filename, mode, dev); |
| 2999 | } |
| 3000 | |
Al Viro | 18bb1db | 2011-07-26 01:41:39 -0400 | [diff] [blame] | 3001 | int vfs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3002 | { |
Miklos Szeredi | a95164d | 2008-07-30 15:08:48 +0200 | [diff] [blame] | 3003 | int error = may_create(dir, dentry); |
Al Viro | 8de5277 | 2012-02-06 12:45:27 -0500 | [diff] [blame] | 3004 | unsigned max_links = dir->i_sb->s_max_links; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3005 | |
| 3006 | if (error) |
| 3007 | return error; |
| 3008 | |
Al Viro | acfa438 | 2008-12-04 10:06:33 -0500 | [diff] [blame] | 3009 | if (!dir->i_op->mkdir) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3010 | return -EPERM; |
| 3011 | |
| 3012 | mode &= (S_IRWXUGO|S_ISVTX); |
| 3013 | error = security_inode_mkdir(dir, dentry, mode); |
| 3014 | if (error) |
| 3015 | return error; |
| 3016 | |
Al Viro | 8de5277 | 2012-02-06 12:45:27 -0500 | [diff] [blame] | 3017 | if (max_links && dir->i_nlink >= max_links) |
| 3018 | return -EMLINK; |
| 3019 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3020 | error = dir->i_op->mkdir(dir, dentry, mode); |
Stephen Smalley | a74574a | 2005-09-09 13:01:44 -0700 | [diff] [blame] | 3021 | if (!error) |
Amy Griffis | f38aa94 | 2005-11-03 15:57:06 +0000 | [diff] [blame] | 3022 | fsnotify_mkdir(dir, dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3023 | return error; |
| 3024 | } |
| 3025 | |
Al Viro | a218d0f | 2011-11-21 14:59:34 -0500 | [diff] [blame] | 3026 | SYSCALL_DEFINE3(mkdirat, int, dfd, const char __user *, pathname, umode_t, mode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3027 | { |
Dave Hansen | 6902d92 | 2006-09-30 23:29:01 -0700 | [diff] [blame] | 3028 | struct dentry *dentry; |
Al Viro | dae6ad8 | 2011-06-26 11:50:15 -0400 | [diff] [blame] | 3029 | struct path path; |
| 3030 | int error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3031 | |
Al Viro | dae6ad8 | 2011-06-26 11:50:15 -0400 | [diff] [blame] | 3032 | dentry = user_path_create(dfd, pathname, &path, 1); |
Dave Hansen | 6902d92 | 2006-09-30 23:29:01 -0700 | [diff] [blame] | 3033 | if (IS_ERR(dentry)) |
Al Viro | dae6ad8 | 2011-06-26 11:50:15 -0400 | [diff] [blame] | 3034 | return PTR_ERR(dentry); |
Dave Hansen | 6902d92 | 2006-09-30 23:29:01 -0700 | [diff] [blame] | 3035 | |
Al Viro | dae6ad8 | 2011-06-26 11:50:15 -0400 | [diff] [blame] | 3036 | if (!IS_POSIXACL(path.dentry->d_inode)) |
Al Viro | ce3b0f8 | 2009-03-29 19:08:22 -0400 | [diff] [blame] | 3037 | mode &= ~current_umask(); |
Al Viro | dae6ad8 | 2011-06-26 11:50:15 -0400 | [diff] [blame] | 3038 | error = mnt_want_write(path.mnt); |
Dave Hansen | 463c319 | 2008-02-15 14:37:57 -0800 | [diff] [blame] | 3039 | if (error) |
| 3040 | goto out_dput; |
Al Viro | dae6ad8 | 2011-06-26 11:50:15 -0400 | [diff] [blame] | 3041 | error = security_path_mkdir(&path, dentry, mode); |
Kentaro Takeda | be6d3e5 | 2008-12-17 13:24:15 +0900 | [diff] [blame] | 3042 | if (error) |
| 3043 | goto out_drop_write; |
Al Viro | dae6ad8 | 2011-06-26 11:50:15 -0400 | [diff] [blame] | 3044 | error = vfs_mkdir(path.dentry->d_inode, dentry, mode); |
Kentaro Takeda | be6d3e5 | 2008-12-17 13:24:15 +0900 | [diff] [blame] | 3045 | out_drop_write: |
Al Viro | dae6ad8 | 2011-06-26 11:50:15 -0400 | [diff] [blame] | 3046 | mnt_drop_write(path.mnt); |
Dave Hansen | 463c319 | 2008-02-15 14:37:57 -0800 | [diff] [blame] | 3047 | out_dput: |
Dave Hansen | 6902d92 | 2006-09-30 23:29:01 -0700 | [diff] [blame] | 3048 | dput(dentry); |
Al Viro | dae6ad8 | 2011-06-26 11:50:15 -0400 | [diff] [blame] | 3049 | mutex_unlock(&path.dentry->d_inode->i_mutex); |
| 3050 | path_put(&path); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3051 | return error; |
| 3052 | } |
| 3053 | |
Al Viro | a218d0f | 2011-11-21 14:59:34 -0500 | [diff] [blame] | 3054 | SYSCALL_DEFINE2(mkdir, const char __user *, pathname, umode_t, mode) |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 3055 | { |
| 3056 | return sys_mkdirat(AT_FDCWD, pathname, mode); |
| 3057 | } |
| 3058 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3059 | /* |
Sage Weil | a71905f | 2011-05-24 13:06:08 -0700 | [diff] [blame] | 3060 | * The dentry_unhash() helper will try to drop the dentry early: we |
J. Bruce Fields | c0d0259 | 2012-02-15 11:48:40 -0500 | [diff] [blame] | 3061 | * should have a usage count of 1 if we're the only user of this |
Sage Weil | a71905f | 2011-05-24 13:06:08 -0700 | [diff] [blame] | 3062 | * dentry, and if that is true (possibly after pruning the dcache), |
| 3063 | * then we drop the dentry now. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3064 | * |
| 3065 | * A low-level filesystem can, if it choses, legally |
| 3066 | * do a |
| 3067 | * |
| 3068 | * if (!d_unhashed(dentry)) |
| 3069 | * return -EBUSY; |
| 3070 | * |
| 3071 | * if it cannot handle the case of removing a directory |
| 3072 | * that is still in use by something else.. |
| 3073 | */ |
| 3074 | void dentry_unhash(struct dentry *dentry) |
| 3075 | { |
Vasily Averin | dc16842 | 2006-12-06 20:37:07 -0800 | [diff] [blame] | 3076 | shrink_dcache_parent(dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3077 | spin_lock(&dentry->d_lock); |
Sage Weil | 64252c7 | 2011-05-24 13:06:05 -0700 | [diff] [blame] | 3078 | if (dentry->d_count == 1) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3079 | __d_drop(dentry); |
| 3080 | spin_unlock(&dentry->d_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3081 | } |
| 3082 | |
| 3083 | int vfs_rmdir(struct inode *dir, struct dentry *dentry) |
| 3084 | { |
| 3085 | int error = may_delete(dir, dentry, 1); |
| 3086 | |
| 3087 | if (error) |
| 3088 | return error; |
| 3089 | |
Al Viro | acfa438 | 2008-12-04 10:06:33 -0500 | [diff] [blame] | 3090 | if (!dir->i_op->rmdir) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3091 | return -EPERM; |
| 3092 | |
Al Viro | 1d2ef59 | 2011-09-14 18:55:41 +0100 | [diff] [blame] | 3093 | dget(dentry); |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 3094 | mutex_lock(&dentry->d_inode->i_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3095 | |
Sage Weil | 912dbc1 | 2011-05-24 13:06:11 -0700 | [diff] [blame] | 3096 | error = -EBUSY; |
| 3097 | if (d_mountpoint(dentry)) |
| 3098 | goto out; |
| 3099 | |
| 3100 | error = security_inode_rmdir(dir, dentry); |
| 3101 | if (error) |
| 3102 | goto out; |
| 3103 | |
Sage Weil | 3cebde2 | 2011-05-29 21:20:59 -0700 | [diff] [blame] | 3104 | shrink_dcache_parent(dentry); |
Sage Weil | 912dbc1 | 2011-05-24 13:06:11 -0700 | [diff] [blame] | 3105 | error = dir->i_op->rmdir(dir, dentry); |
| 3106 | if (error) |
| 3107 | goto out; |
| 3108 | |
| 3109 | dentry->d_inode->i_flags |= S_DEAD; |
| 3110 | dont_mount(dentry); |
| 3111 | |
| 3112 | out: |
| 3113 | mutex_unlock(&dentry->d_inode->i_mutex); |
Al Viro | 1d2ef59 | 2011-09-14 18:55:41 +0100 | [diff] [blame] | 3114 | dput(dentry); |
Sage Weil | 912dbc1 | 2011-05-24 13:06:11 -0700 | [diff] [blame] | 3115 | if (!error) |
| 3116 | d_delete(dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3117 | return error; |
| 3118 | } |
| 3119 | |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 3120 | static long do_rmdir(int dfd, const char __user *pathname) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3121 | { |
| 3122 | int error = 0; |
| 3123 | char * name; |
| 3124 | struct dentry *dentry; |
| 3125 | struct nameidata nd; |
| 3126 | |
Al Viro | 2ad94ae | 2008-07-21 09:32:51 -0400 | [diff] [blame] | 3127 | error = user_path_parent(dfd, pathname, &nd, &name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3128 | if (error) |
Al Viro | 2ad94ae | 2008-07-21 09:32:51 -0400 | [diff] [blame] | 3129 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3130 | |
| 3131 | switch(nd.last_type) { |
OGAWA Hirofumi | 0612d9f | 2008-10-16 07:50:29 +0900 | [diff] [blame] | 3132 | case LAST_DOTDOT: |
| 3133 | error = -ENOTEMPTY; |
| 3134 | goto exit1; |
| 3135 | case LAST_DOT: |
| 3136 | error = -EINVAL; |
| 3137 | goto exit1; |
| 3138 | case LAST_ROOT: |
| 3139 | error = -EBUSY; |
| 3140 | goto exit1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3141 | } |
OGAWA Hirofumi | 0612d9f | 2008-10-16 07:50:29 +0900 | [diff] [blame] | 3142 | |
| 3143 | nd.flags &= ~LOOKUP_PARENT; |
| 3144 | |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 3145 | 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] | 3146 | dentry = lookup_hash(&nd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3147 | error = PTR_ERR(dentry); |
Dave Hansen | 6902d92 | 2006-09-30 23:29:01 -0700 | [diff] [blame] | 3148 | if (IS_ERR(dentry)) |
| 3149 | goto exit2; |
Theodore Ts'o | e6bc45d | 2011-06-06 19:19:40 -0400 | [diff] [blame] | 3150 | if (!dentry->d_inode) { |
| 3151 | error = -ENOENT; |
| 3152 | goto exit3; |
| 3153 | } |
Dave Hansen | 0622753 | 2008-02-15 14:37:34 -0800 | [diff] [blame] | 3154 | error = mnt_want_write(nd.path.mnt); |
| 3155 | if (error) |
| 3156 | goto exit3; |
Kentaro Takeda | be6d3e5 | 2008-12-17 13:24:15 +0900 | [diff] [blame] | 3157 | error = security_path_rmdir(&nd.path, dentry); |
| 3158 | if (error) |
| 3159 | goto exit4; |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 3160 | error = vfs_rmdir(nd.path.dentry->d_inode, dentry); |
Kentaro Takeda | be6d3e5 | 2008-12-17 13:24:15 +0900 | [diff] [blame] | 3161 | exit4: |
Dave Hansen | 0622753 | 2008-02-15 14:37:34 -0800 | [diff] [blame] | 3162 | mnt_drop_write(nd.path.mnt); |
| 3163 | exit3: |
Dave Hansen | 6902d92 | 2006-09-30 23:29:01 -0700 | [diff] [blame] | 3164 | dput(dentry); |
| 3165 | exit2: |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 3166 | mutex_unlock(&nd.path.dentry->d_inode->i_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3167 | exit1: |
Jan Blunck | 1d957f9 | 2008-02-14 19:34:35 -0800 | [diff] [blame] | 3168 | path_put(&nd.path); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3169 | putname(name); |
| 3170 | return error; |
| 3171 | } |
| 3172 | |
Heiko Carstens | 3cdad42 | 2009-01-14 14:14:22 +0100 | [diff] [blame] | 3173 | SYSCALL_DEFINE1(rmdir, const char __user *, pathname) |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 3174 | { |
| 3175 | return do_rmdir(AT_FDCWD, pathname); |
| 3176 | } |
| 3177 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3178 | int vfs_unlink(struct inode *dir, struct dentry *dentry) |
| 3179 | { |
| 3180 | int error = may_delete(dir, dentry, 0); |
| 3181 | |
| 3182 | if (error) |
| 3183 | return error; |
| 3184 | |
Al Viro | acfa438 | 2008-12-04 10:06:33 -0500 | [diff] [blame] | 3185 | if (!dir->i_op->unlink) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3186 | return -EPERM; |
| 3187 | |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 3188 | mutex_lock(&dentry->d_inode->i_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3189 | if (d_mountpoint(dentry)) |
| 3190 | error = -EBUSY; |
| 3191 | else { |
| 3192 | error = security_inode_unlink(dir, dentry); |
Al Viro | bec1052 | 2010-03-03 14:12:08 -0500 | [diff] [blame] | 3193 | if (!error) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3194 | error = dir->i_op->unlink(dir, dentry); |
Al Viro | bec1052 | 2010-03-03 14:12:08 -0500 | [diff] [blame] | 3195 | if (!error) |
Al Viro | d83c49f | 2010-04-30 17:17:09 -0400 | [diff] [blame] | 3196 | dont_mount(dentry); |
Al Viro | bec1052 | 2010-03-03 14:12:08 -0500 | [diff] [blame] | 3197 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3198 | } |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 3199 | mutex_unlock(&dentry->d_inode->i_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3200 | |
| 3201 | /* We don't d_delete() NFS sillyrenamed files--they still exist. */ |
| 3202 | if (!error && !(dentry->d_flags & DCACHE_NFSFS_RENAMED)) { |
Jan Kara | ece9591 | 2008-02-06 01:37:13 -0800 | [diff] [blame] | 3203 | fsnotify_link_count(dentry->d_inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3204 | d_delete(dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3205 | } |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 3206 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3207 | return error; |
| 3208 | } |
| 3209 | |
| 3210 | /* |
| 3211 | * 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] | 3212 | * 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] | 3213 | * writeout happening, and we don't want to prevent access to the directory |
| 3214 | * while waiting on the I/O. |
| 3215 | */ |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 3216 | static long do_unlinkat(int dfd, const char __user *pathname) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3217 | { |
Al Viro | 2ad94ae | 2008-07-21 09:32:51 -0400 | [diff] [blame] | 3218 | int error; |
| 3219 | char *name; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3220 | struct dentry *dentry; |
| 3221 | struct nameidata nd; |
| 3222 | struct inode *inode = NULL; |
| 3223 | |
Al Viro | 2ad94ae | 2008-07-21 09:32:51 -0400 | [diff] [blame] | 3224 | error = user_path_parent(dfd, pathname, &nd, &name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3225 | if (error) |
Al Viro | 2ad94ae | 2008-07-21 09:32:51 -0400 | [diff] [blame] | 3226 | return error; |
| 3227 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3228 | error = -EISDIR; |
| 3229 | if (nd.last_type != LAST_NORM) |
| 3230 | goto exit1; |
OGAWA Hirofumi | 0612d9f | 2008-10-16 07:50:29 +0900 | [diff] [blame] | 3231 | |
| 3232 | nd.flags &= ~LOOKUP_PARENT; |
| 3233 | |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 3234 | 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] | 3235 | dentry = lookup_hash(&nd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3236 | error = PTR_ERR(dentry); |
| 3237 | if (!IS_ERR(dentry)) { |
| 3238 | /* Why not before? Because we want correct error value */ |
Török Edwin | 50338b8 | 2011-06-16 00:06:14 +0300 | [diff] [blame] | 3239 | if (nd.last.name[nd.last.len]) |
| 3240 | goto slashes; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3241 | inode = dentry->d_inode; |
Török Edwin | 50338b8 | 2011-06-16 00:06:14 +0300 | [diff] [blame] | 3242 | if (!inode) |
Theodore Ts'o | e6bc45d | 2011-06-06 19:19:40 -0400 | [diff] [blame] | 3243 | goto slashes; |
| 3244 | ihold(inode); |
Dave Hansen | 0622753 | 2008-02-15 14:37:34 -0800 | [diff] [blame] | 3245 | error = mnt_want_write(nd.path.mnt); |
| 3246 | if (error) |
| 3247 | goto exit2; |
Kentaro Takeda | be6d3e5 | 2008-12-17 13:24:15 +0900 | [diff] [blame] | 3248 | error = security_path_unlink(&nd.path, dentry); |
| 3249 | if (error) |
| 3250 | goto exit3; |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 3251 | error = vfs_unlink(nd.path.dentry->d_inode, dentry); |
Kentaro Takeda | be6d3e5 | 2008-12-17 13:24:15 +0900 | [diff] [blame] | 3252 | exit3: |
Dave Hansen | 0622753 | 2008-02-15 14:37:34 -0800 | [diff] [blame] | 3253 | mnt_drop_write(nd.path.mnt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3254 | exit2: |
| 3255 | dput(dentry); |
| 3256 | } |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 3257 | mutex_unlock(&nd.path.dentry->d_inode->i_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3258 | if (inode) |
| 3259 | iput(inode); /* truncate the inode here */ |
| 3260 | exit1: |
Jan Blunck | 1d957f9 | 2008-02-14 19:34:35 -0800 | [diff] [blame] | 3261 | path_put(&nd.path); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3262 | putname(name); |
| 3263 | return error; |
| 3264 | |
| 3265 | slashes: |
| 3266 | error = !dentry->d_inode ? -ENOENT : |
| 3267 | S_ISDIR(dentry->d_inode->i_mode) ? -EISDIR : -ENOTDIR; |
| 3268 | goto exit2; |
| 3269 | } |
| 3270 | |
Heiko Carstens | 2e4d092 | 2009-01-14 14:14:31 +0100 | [diff] [blame] | 3271 | SYSCALL_DEFINE3(unlinkat, int, dfd, const char __user *, pathname, int, flag) |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 3272 | { |
| 3273 | if ((flag & ~AT_REMOVEDIR) != 0) |
| 3274 | return -EINVAL; |
| 3275 | |
| 3276 | if (flag & AT_REMOVEDIR) |
| 3277 | return do_rmdir(dfd, pathname); |
| 3278 | |
| 3279 | return do_unlinkat(dfd, pathname); |
| 3280 | } |
| 3281 | |
Heiko Carstens | 3480b25 | 2009-01-14 14:14:16 +0100 | [diff] [blame] | 3282 | SYSCALL_DEFINE1(unlink, const char __user *, pathname) |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 3283 | { |
| 3284 | return do_unlinkat(AT_FDCWD, pathname); |
| 3285 | } |
| 3286 | |
Miklos Szeredi | db2e747 | 2008-06-24 16:50:16 +0200 | [diff] [blame] | 3287 | int vfs_symlink(struct inode *dir, struct dentry *dentry, const char *oldname) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3288 | { |
Miklos Szeredi | a95164d | 2008-07-30 15:08:48 +0200 | [diff] [blame] | 3289 | int error = may_create(dir, dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3290 | |
| 3291 | if (error) |
| 3292 | return error; |
| 3293 | |
Al Viro | acfa438 | 2008-12-04 10:06:33 -0500 | [diff] [blame] | 3294 | if (!dir->i_op->symlink) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3295 | return -EPERM; |
| 3296 | |
| 3297 | error = security_inode_symlink(dir, dentry, oldname); |
| 3298 | if (error) |
| 3299 | return error; |
| 3300 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3301 | error = dir->i_op->symlink(dir, dentry, oldname); |
Stephen Smalley | a74574a | 2005-09-09 13:01:44 -0700 | [diff] [blame] | 3302 | if (!error) |
Amy Griffis | f38aa94 | 2005-11-03 15:57:06 +0000 | [diff] [blame] | 3303 | fsnotify_create(dir, dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3304 | return error; |
| 3305 | } |
| 3306 | |
Heiko Carstens | 2e4d092 | 2009-01-14 14:14:31 +0100 | [diff] [blame] | 3307 | SYSCALL_DEFINE3(symlinkat, const char __user *, oldname, |
| 3308 | int, newdfd, const char __user *, newname) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3309 | { |
Al Viro | 2ad94ae | 2008-07-21 09:32:51 -0400 | [diff] [blame] | 3310 | int error; |
| 3311 | char *from; |
Dave Hansen | 6902d92 | 2006-09-30 23:29:01 -0700 | [diff] [blame] | 3312 | struct dentry *dentry; |
Al Viro | dae6ad8 | 2011-06-26 11:50:15 -0400 | [diff] [blame] | 3313 | struct path path; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3314 | |
| 3315 | from = getname(oldname); |
Al Viro | 2ad94ae | 2008-07-21 09:32:51 -0400 | [diff] [blame] | 3316 | if (IS_ERR(from)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3317 | return PTR_ERR(from); |
Al Viro | 2ad94ae | 2008-07-21 09:32:51 -0400 | [diff] [blame] | 3318 | |
Al Viro | dae6ad8 | 2011-06-26 11:50:15 -0400 | [diff] [blame] | 3319 | dentry = user_path_create(newdfd, newname, &path, 0); |
Dave Hansen | 6902d92 | 2006-09-30 23:29:01 -0700 | [diff] [blame] | 3320 | error = PTR_ERR(dentry); |
| 3321 | if (IS_ERR(dentry)) |
Al Viro | dae6ad8 | 2011-06-26 11:50:15 -0400 | [diff] [blame] | 3322 | goto out_putname; |
Dave Hansen | 6902d92 | 2006-09-30 23:29:01 -0700 | [diff] [blame] | 3323 | |
Al Viro | dae6ad8 | 2011-06-26 11:50:15 -0400 | [diff] [blame] | 3324 | error = mnt_want_write(path.mnt); |
Dave Hansen | 75c3f29 | 2008-02-15 14:37:45 -0800 | [diff] [blame] | 3325 | if (error) |
| 3326 | goto out_dput; |
Al Viro | dae6ad8 | 2011-06-26 11:50:15 -0400 | [diff] [blame] | 3327 | error = security_path_symlink(&path, dentry, from); |
Kentaro Takeda | be6d3e5 | 2008-12-17 13:24:15 +0900 | [diff] [blame] | 3328 | if (error) |
| 3329 | goto out_drop_write; |
Al Viro | dae6ad8 | 2011-06-26 11:50:15 -0400 | [diff] [blame] | 3330 | error = vfs_symlink(path.dentry->d_inode, dentry, from); |
Kentaro Takeda | be6d3e5 | 2008-12-17 13:24:15 +0900 | [diff] [blame] | 3331 | out_drop_write: |
Al Viro | dae6ad8 | 2011-06-26 11:50:15 -0400 | [diff] [blame] | 3332 | mnt_drop_write(path.mnt); |
Dave Hansen | 75c3f29 | 2008-02-15 14:37:45 -0800 | [diff] [blame] | 3333 | out_dput: |
Dave Hansen | 6902d92 | 2006-09-30 23:29:01 -0700 | [diff] [blame] | 3334 | dput(dentry); |
Al Viro | dae6ad8 | 2011-06-26 11:50:15 -0400 | [diff] [blame] | 3335 | mutex_unlock(&path.dentry->d_inode->i_mutex); |
| 3336 | path_put(&path); |
Dave Hansen | 6902d92 | 2006-09-30 23:29:01 -0700 | [diff] [blame] | 3337 | out_putname: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3338 | putname(from); |
| 3339 | return error; |
| 3340 | } |
| 3341 | |
Heiko Carstens | 3480b25 | 2009-01-14 14:14:16 +0100 | [diff] [blame] | 3342 | SYSCALL_DEFINE2(symlink, const char __user *, oldname, const char __user *, newname) |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 3343 | { |
| 3344 | return sys_symlinkat(oldname, AT_FDCWD, newname); |
| 3345 | } |
| 3346 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3347 | int vfs_link(struct dentry *old_dentry, struct inode *dir, struct dentry *new_dentry) |
| 3348 | { |
| 3349 | struct inode *inode = old_dentry->d_inode; |
Al Viro | 8de5277 | 2012-02-06 12:45:27 -0500 | [diff] [blame] | 3350 | unsigned max_links = dir->i_sb->s_max_links; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3351 | int error; |
| 3352 | |
| 3353 | if (!inode) |
| 3354 | return -ENOENT; |
| 3355 | |
Miklos Szeredi | a95164d | 2008-07-30 15:08:48 +0200 | [diff] [blame] | 3356 | error = may_create(dir, new_dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3357 | if (error) |
| 3358 | return error; |
| 3359 | |
| 3360 | if (dir->i_sb != inode->i_sb) |
| 3361 | return -EXDEV; |
| 3362 | |
| 3363 | /* |
| 3364 | * A link to an append-only or immutable file cannot be created. |
| 3365 | */ |
| 3366 | if (IS_APPEND(inode) || IS_IMMUTABLE(inode)) |
| 3367 | return -EPERM; |
Al Viro | acfa438 | 2008-12-04 10:06:33 -0500 | [diff] [blame] | 3368 | if (!dir->i_op->link) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3369 | return -EPERM; |
Tetsuo Handa | 7e79eed | 2008-06-24 16:50:15 +0200 | [diff] [blame] | 3370 | if (S_ISDIR(inode->i_mode)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3371 | return -EPERM; |
| 3372 | |
| 3373 | error = security_inode_link(old_dentry, dir, new_dentry); |
| 3374 | if (error) |
| 3375 | return error; |
| 3376 | |
Tetsuo Handa | 7e79eed | 2008-06-24 16:50:15 +0200 | [diff] [blame] | 3377 | mutex_lock(&inode->i_mutex); |
Aneesh Kumar K.V | aae8a97 | 2011-01-29 18:43:27 +0530 | [diff] [blame] | 3378 | /* Make sure we don't allow creating hardlink to an unlinked file */ |
| 3379 | if (inode->i_nlink == 0) |
| 3380 | error = -ENOENT; |
Al Viro | 8de5277 | 2012-02-06 12:45:27 -0500 | [diff] [blame] | 3381 | else if (max_links && inode->i_nlink >= max_links) |
| 3382 | error = -EMLINK; |
Aneesh Kumar K.V | aae8a97 | 2011-01-29 18:43:27 +0530 | [diff] [blame] | 3383 | else |
| 3384 | error = dir->i_op->link(old_dentry, dir, new_dentry); |
Tetsuo Handa | 7e79eed | 2008-06-24 16:50:15 +0200 | [diff] [blame] | 3385 | mutex_unlock(&inode->i_mutex); |
Stephen Smalley | e31e14e | 2005-09-09 13:01:45 -0700 | [diff] [blame] | 3386 | if (!error) |
Tetsuo Handa | 7e79eed | 2008-06-24 16:50:15 +0200 | [diff] [blame] | 3387 | fsnotify_link(dir, inode, new_dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3388 | return error; |
| 3389 | } |
| 3390 | |
| 3391 | /* |
| 3392 | * Hardlinks are often used in delicate situations. We avoid |
| 3393 | * security-related surprises by not following symlinks on the |
| 3394 | * newname. --KAB |
| 3395 | * |
| 3396 | * We don't follow them on the oldname either to be compatible |
| 3397 | * with linux 2.0, and to avoid hard-linking to directories |
| 3398 | * and other special files. --ADM |
| 3399 | */ |
Heiko Carstens | 2e4d092 | 2009-01-14 14:14:31 +0100 | [diff] [blame] | 3400 | SYSCALL_DEFINE5(linkat, int, olddfd, const char __user *, oldname, |
| 3401 | int, newdfd, const char __user *, newname, int, flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3402 | { |
| 3403 | struct dentry *new_dentry; |
Al Viro | dae6ad8 | 2011-06-26 11:50:15 -0400 | [diff] [blame] | 3404 | struct path old_path, new_path; |
Aneesh Kumar K.V | 11a7b37 | 2011-01-29 18:43:42 +0530 | [diff] [blame] | 3405 | int how = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3406 | int error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3407 | |
Aneesh Kumar K.V | 11a7b37 | 2011-01-29 18:43:42 +0530 | [diff] [blame] | 3408 | if ((flags & ~(AT_SYMLINK_FOLLOW | AT_EMPTY_PATH)) != 0) |
Ulrich Drepper | c04030e | 2006-02-24 13:04:21 -0800 | [diff] [blame] | 3409 | return -EINVAL; |
Aneesh Kumar K.V | 11a7b37 | 2011-01-29 18:43:42 +0530 | [diff] [blame] | 3410 | /* |
| 3411 | * To use null names we require CAP_DAC_READ_SEARCH |
| 3412 | * This ensures that not everyone will be able to create |
| 3413 | * handlink using the passed filedescriptor. |
| 3414 | */ |
| 3415 | if (flags & AT_EMPTY_PATH) { |
| 3416 | if (!capable(CAP_DAC_READ_SEARCH)) |
| 3417 | return -ENOENT; |
| 3418 | how = LOOKUP_EMPTY; |
| 3419 | } |
Ulrich Drepper | c04030e | 2006-02-24 13:04:21 -0800 | [diff] [blame] | 3420 | |
Aneesh Kumar K.V | 11a7b37 | 2011-01-29 18:43:42 +0530 | [diff] [blame] | 3421 | if (flags & AT_SYMLINK_FOLLOW) |
| 3422 | how |= LOOKUP_FOLLOW; |
| 3423 | |
| 3424 | error = user_path_at(olddfd, oldname, how, &old_path); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3425 | if (error) |
Al Viro | 2ad94ae | 2008-07-21 09:32:51 -0400 | [diff] [blame] | 3426 | return error; |
| 3427 | |
Al Viro | dae6ad8 | 2011-06-26 11:50:15 -0400 | [diff] [blame] | 3428 | new_dentry = user_path_create(newdfd, newname, &new_path, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3429 | error = PTR_ERR(new_dentry); |
Dave Hansen | 6902d92 | 2006-09-30 23:29:01 -0700 | [diff] [blame] | 3430 | if (IS_ERR(new_dentry)) |
Al Viro | dae6ad8 | 2011-06-26 11:50:15 -0400 | [diff] [blame] | 3431 | goto out; |
| 3432 | |
| 3433 | error = -EXDEV; |
| 3434 | if (old_path.mnt != new_path.mnt) |
| 3435 | goto out_dput; |
| 3436 | error = mnt_want_write(new_path.mnt); |
Dave Hansen | 75c3f29 | 2008-02-15 14:37:45 -0800 | [diff] [blame] | 3437 | if (error) |
| 3438 | goto out_dput; |
Al Viro | dae6ad8 | 2011-06-26 11:50:15 -0400 | [diff] [blame] | 3439 | error = security_path_link(old_path.dentry, &new_path, new_dentry); |
Kentaro Takeda | be6d3e5 | 2008-12-17 13:24:15 +0900 | [diff] [blame] | 3440 | if (error) |
| 3441 | goto out_drop_write; |
Al Viro | dae6ad8 | 2011-06-26 11:50:15 -0400 | [diff] [blame] | 3442 | error = vfs_link(old_path.dentry, new_path.dentry->d_inode, new_dentry); |
Kentaro Takeda | be6d3e5 | 2008-12-17 13:24:15 +0900 | [diff] [blame] | 3443 | out_drop_write: |
Al Viro | dae6ad8 | 2011-06-26 11:50:15 -0400 | [diff] [blame] | 3444 | mnt_drop_write(new_path.mnt); |
Dave Hansen | 75c3f29 | 2008-02-15 14:37:45 -0800 | [diff] [blame] | 3445 | out_dput: |
Dave Hansen | 6902d92 | 2006-09-30 23:29:01 -0700 | [diff] [blame] | 3446 | dput(new_dentry); |
Al Viro | dae6ad8 | 2011-06-26 11:50:15 -0400 | [diff] [blame] | 3447 | mutex_unlock(&new_path.dentry->d_inode->i_mutex); |
| 3448 | path_put(&new_path); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3449 | out: |
Al Viro | 2d8f303 | 2008-07-22 09:59:21 -0400 | [diff] [blame] | 3450 | path_put(&old_path); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3451 | |
| 3452 | return error; |
| 3453 | } |
| 3454 | |
Heiko Carstens | 3480b25 | 2009-01-14 14:14:16 +0100 | [diff] [blame] | 3455 | SYSCALL_DEFINE2(link, const char __user *, oldname, const char __user *, newname) |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 3456 | { |
Ulrich Drepper | c04030e | 2006-02-24 13:04:21 -0800 | [diff] [blame] | 3457 | return sys_linkat(AT_FDCWD, oldname, AT_FDCWD, newname, 0); |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 3458 | } |
| 3459 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3460 | /* |
| 3461 | * The worst of all namespace operations - renaming directory. "Perverted" |
| 3462 | * doesn't even start to describe it. Somebody in UCB had a heck of a trip... |
| 3463 | * Problems: |
| 3464 | * a) we can get into loop creation. Check is done in is_subdir(). |
| 3465 | * b) race potential - two innocent renames can create a loop together. |
| 3466 | * 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] | 3467 | * 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] | 3468 | * story. |
| 3469 | * 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] | 3470 | * 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] | 3471 | * whether the target exists). Solution: try to be smart with locking |
| 3472 | * 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] | 3473 | * 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] | 3474 | * move will be locked. Thus we can rank directories by the tree |
| 3475 | * (ancestors first) and rank all non-directories after them. |
| 3476 | * That works since everybody except rename does "lock parent, lookup, |
Arjan van de Ven | a11f3a0 | 2006-03-23 03:00:33 -0800 | [diff] [blame] | 3477 | * lock child" and rename is under ->s_vfs_rename_mutex. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3478 | * HOWEVER, it relies on the assumption that any object with ->lookup() |
| 3479 | * has no more than 1 dentry. If "hybrid" objects will ever appear, |
| 3480 | * we'd better make sure that there's no link(2) for them. |
Sage Weil | e4eaac0 | 2011-05-24 13:06:07 -0700 | [diff] [blame] | 3481 | * d) conversion from fhandle to dentry may come in the wrong moment - when |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 3482 | * 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] | 3483 | * in the fhandle_to_dentry code. [FIXME - current nfsfh.c relies on |
Adam Buchbinder | c41b20e | 2009-12-11 16:35:39 -0500 | [diff] [blame] | 3484 | * ->i_mutex on parents, which works but leads to some truly excessive |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3485 | * locking]. |
| 3486 | */ |
Adrian Bunk | 75c96f8 | 2005-05-05 16:16:09 -0700 | [diff] [blame] | 3487 | static int vfs_rename_dir(struct inode *old_dir, struct dentry *old_dentry, |
| 3488 | struct inode *new_dir, struct dentry *new_dentry) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3489 | { |
| 3490 | int error = 0; |
Sage Weil | 9055cba | 2011-05-24 13:06:12 -0700 | [diff] [blame] | 3491 | struct inode *target = new_dentry->d_inode; |
Al Viro | 8de5277 | 2012-02-06 12:45:27 -0500 | [diff] [blame] | 3492 | unsigned max_links = new_dir->i_sb->s_max_links; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3493 | |
| 3494 | /* |
| 3495 | * If we are going to change the parent - check write permissions, |
| 3496 | * we'll need to flip '..'. |
| 3497 | */ |
| 3498 | if (new_dir != old_dir) { |
Al Viro | f419a2e | 2008-07-22 00:07:17 -0400 | [diff] [blame] | 3499 | error = inode_permission(old_dentry->d_inode, MAY_WRITE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3500 | if (error) |
| 3501 | return error; |
| 3502 | } |
| 3503 | |
| 3504 | error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry); |
| 3505 | if (error) |
| 3506 | return error; |
| 3507 | |
Al Viro | 1d2ef59 | 2011-09-14 18:55:41 +0100 | [diff] [blame] | 3508 | dget(new_dentry); |
Al Viro | d83c49f | 2010-04-30 17:17:09 -0400 | [diff] [blame] | 3509 | if (target) |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 3510 | mutex_lock(&target->i_mutex); |
Sage Weil | 9055cba | 2011-05-24 13:06:12 -0700 | [diff] [blame] | 3511 | |
| 3512 | error = -EBUSY; |
| 3513 | if (d_mountpoint(old_dentry) || d_mountpoint(new_dentry)) |
| 3514 | goto out; |
| 3515 | |
Al Viro | 8de5277 | 2012-02-06 12:45:27 -0500 | [diff] [blame] | 3516 | error = -EMLINK; |
| 3517 | if (max_links && !target && new_dir != old_dir && |
| 3518 | new_dir->i_nlink >= max_links) |
| 3519 | goto out; |
| 3520 | |
Sage Weil | 3cebde2 | 2011-05-29 21:20:59 -0700 | [diff] [blame] | 3521 | if (target) |
| 3522 | shrink_dcache_parent(new_dentry); |
Sage Weil | 9055cba | 2011-05-24 13:06:12 -0700 | [diff] [blame] | 3523 | error = old_dir->i_op->rename(old_dir, old_dentry, new_dir, new_dentry); |
| 3524 | if (error) |
| 3525 | goto out; |
| 3526 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3527 | if (target) { |
Sage Weil | 9055cba | 2011-05-24 13:06:12 -0700 | [diff] [blame] | 3528 | target->i_flags |= S_DEAD; |
| 3529 | dont_mount(new_dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3530 | } |
Sage Weil | 9055cba | 2011-05-24 13:06:12 -0700 | [diff] [blame] | 3531 | out: |
| 3532 | if (target) |
| 3533 | mutex_unlock(&target->i_mutex); |
Al Viro | 1d2ef59 | 2011-09-14 18:55:41 +0100 | [diff] [blame] | 3534 | dput(new_dentry); |
Stephen Smalley | e31e14e | 2005-09-09 13:01:45 -0700 | [diff] [blame] | 3535 | if (!error) |
Mark Fasheh | 349457c | 2006-09-08 14:22:21 -0700 | [diff] [blame] | 3536 | if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE)) |
| 3537 | d_move(old_dentry,new_dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3538 | return error; |
| 3539 | } |
| 3540 | |
Adrian Bunk | 75c96f8 | 2005-05-05 16:16:09 -0700 | [diff] [blame] | 3541 | static int vfs_rename_other(struct inode *old_dir, struct dentry *old_dentry, |
| 3542 | struct inode *new_dir, struct dentry *new_dentry) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3543 | { |
Sage Weil | 51892bb | 2011-05-24 13:06:13 -0700 | [diff] [blame] | 3544 | struct inode *target = new_dentry->d_inode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3545 | int error; |
| 3546 | |
| 3547 | error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry); |
| 3548 | if (error) |
| 3549 | return error; |
| 3550 | |
| 3551 | dget(new_dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3552 | if (target) |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 3553 | mutex_lock(&target->i_mutex); |
Sage Weil | 51892bb | 2011-05-24 13:06:13 -0700 | [diff] [blame] | 3554 | |
| 3555 | error = -EBUSY; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3556 | if (d_mountpoint(old_dentry)||d_mountpoint(new_dentry)) |
Sage Weil | 51892bb | 2011-05-24 13:06:13 -0700 | [diff] [blame] | 3557 | goto out; |
| 3558 | |
| 3559 | error = old_dir->i_op->rename(old_dir, old_dentry, new_dir, new_dentry); |
| 3560 | if (error) |
| 3561 | goto out; |
| 3562 | |
| 3563 | if (target) |
| 3564 | dont_mount(new_dentry); |
| 3565 | if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE)) |
| 3566 | d_move(old_dentry, new_dentry); |
| 3567 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3568 | if (target) |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 3569 | mutex_unlock(&target->i_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3570 | dput(new_dentry); |
| 3571 | return error; |
| 3572 | } |
| 3573 | |
| 3574 | int vfs_rename(struct inode *old_dir, struct dentry *old_dentry, |
| 3575 | struct inode *new_dir, struct dentry *new_dentry) |
| 3576 | { |
| 3577 | int error; |
| 3578 | int is_dir = S_ISDIR(old_dentry->d_inode->i_mode); |
Eric Paris | 59b0df2 | 2010-02-08 12:53:52 -0500 | [diff] [blame] | 3579 | const unsigned char *old_name; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3580 | |
| 3581 | if (old_dentry->d_inode == new_dentry->d_inode) |
| 3582 | return 0; |
| 3583 | |
| 3584 | error = may_delete(old_dir, old_dentry, is_dir); |
| 3585 | if (error) |
| 3586 | return error; |
| 3587 | |
| 3588 | if (!new_dentry->d_inode) |
Miklos Szeredi | a95164d | 2008-07-30 15:08:48 +0200 | [diff] [blame] | 3589 | error = may_create(new_dir, new_dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3590 | else |
| 3591 | error = may_delete(new_dir, new_dentry, is_dir); |
| 3592 | if (error) |
| 3593 | return error; |
| 3594 | |
Al Viro | acfa438 | 2008-12-04 10:06:33 -0500 | [diff] [blame] | 3595 | if (!old_dir->i_op->rename) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3596 | return -EPERM; |
| 3597 | |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 3598 | old_name = fsnotify_oldname_init(old_dentry->d_name.name); |
| 3599 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3600 | if (is_dir) |
| 3601 | error = vfs_rename_dir(old_dir,old_dentry,new_dir,new_dentry); |
| 3602 | else |
| 3603 | error = vfs_rename_other(old_dir,old_dentry,new_dir,new_dentry); |
Al Viro | 123df29 | 2009-12-25 04:57:57 -0500 | [diff] [blame] | 3604 | if (!error) |
| 3605 | fsnotify_move(old_dir, new_dir, old_name, is_dir, |
Al Viro | 5a190ae | 2007-06-07 12:19:32 -0400 | [diff] [blame] | 3606 | new_dentry->d_inode, old_dentry); |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 3607 | fsnotify_oldname_free(old_name); |
| 3608 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3609 | return error; |
| 3610 | } |
| 3611 | |
Heiko Carstens | 2e4d092 | 2009-01-14 14:14:31 +0100 | [diff] [blame] | 3612 | SYSCALL_DEFINE4(renameat, int, olddfd, const char __user *, oldname, |
| 3613 | int, newdfd, const char __user *, newname) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3614 | { |
Al Viro | 2ad94ae | 2008-07-21 09:32:51 -0400 | [diff] [blame] | 3615 | struct dentry *old_dir, *new_dir; |
| 3616 | struct dentry *old_dentry, *new_dentry; |
| 3617 | struct dentry *trap; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3618 | struct nameidata oldnd, newnd; |
Al Viro | 2ad94ae | 2008-07-21 09:32:51 -0400 | [diff] [blame] | 3619 | char *from; |
| 3620 | char *to; |
| 3621 | int error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3622 | |
Al Viro | 2ad94ae | 2008-07-21 09:32:51 -0400 | [diff] [blame] | 3623 | error = user_path_parent(olddfd, oldname, &oldnd, &from); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3624 | if (error) |
| 3625 | goto exit; |
| 3626 | |
Al Viro | 2ad94ae | 2008-07-21 09:32:51 -0400 | [diff] [blame] | 3627 | error = user_path_parent(newdfd, newname, &newnd, &to); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3628 | if (error) |
| 3629 | goto exit1; |
| 3630 | |
| 3631 | error = -EXDEV; |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 3632 | if (oldnd.path.mnt != newnd.path.mnt) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3633 | goto exit2; |
| 3634 | |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 3635 | old_dir = oldnd.path.dentry; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3636 | error = -EBUSY; |
| 3637 | if (oldnd.last_type != LAST_NORM) |
| 3638 | goto exit2; |
| 3639 | |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 3640 | new_dir = newnd.path.dentry; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3641 | if (newnd.last_type != LAST_NORM) |
| 3642 | goto exit2; |
| 3643 | |
OGAWA Hirofumi | 0612d9f | 2008-10-16 07:50:29 +0900 | [diff] [blame] | 3644 | oldnd.flags &= ~LOOKUP_PARENT; |
| 3645 | newnd.flags &= ~LOOKUP_PARENT; |
OGAWA Hirofumi | 4e9ed2f | 2008-10-16 07:50:29 +0900 | [diff] [blame] | 3646 | newnd.flags |= LOOKUP_RENAME_TARGET; |
OGAWA Hirofumi | 0612d9f | 2008-10-16 07:50:29 +0900 | [diff] [blame] | 3647 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3648 | trap = lock_rename(new_dir, old_dir); |
| 3649 | |
Christoph Hellwig | 49705b7 | 2005-11-08 21:35:06 -0800 | [diff] [blame] | 3650 | old_dentry = lookup_hash(&oldnd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3651 | error = PTR_ERR(old_dentry); |
| 3652 | if (IS_ERR(old_dentry)) |
| 3653 | goto exit3; |
| 3654 | /* source must exist */ |
| 3655 | error = -ENOENT; |
| 3656 | if (!old_dentry->d_inode) |
| 3657 | goto exit4; |
| 3658 | /* unless the source is a directory trailing slashes give -ENOTDIR */ |
| 3659 | if (!S_ISDIR(old_dentry->d_inode->i_mode)) { |
| 3660 | error = -ENOTDIR; |
| 3661 | if (oldnd.last.name[oldnd.last.len]) |
| 3662 | goto exit4; |
| 3663 | if (newnd.last.name[newnd.last.len]) |
| 3664 | goto exit4; |
| 3665 | } |
| 3666 | /* source should not be ancestor of target */ |
| 3667 | error = -EINVAL; |
| 3668 | if (old_dentry == trap) |
| 3669 | goto exit4; |
Christoph Hellwig | 49705b7 | 2005-11-08 21:35:06 -0800 | [diff] [blame] | 3670 | new_dentry = lookup_hash(&newnd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3671 | error = PTR_ERR(new_dentry); |
| 3672 | if (IS_ERR(new_dentry)) |
| 3673 | goto exit4; |
| 3674 | /* target should not be an ancestor of source */ |
| 3675 | error = -ENOTEMPTY; |
| 3676 | if (new_dentry == trap) |
| 3677 | goto exit5; |
| 3678 | |
Dave Hansen | 9079b1e | 2008-02-15 14:37:49 -0800 | [diff] [blame] | 3679 | error = mnt_want_write(oldnd.path.mnt); |
| 3680 | if (error) |
| 3681 | goto exit5; |
Kentaro Takeda | be6d3e5 | 2008-12-17 13:24:15 +0900 | [diff] [blame] | 3682 | error = security_path_rename(&oldnd.path, old_dentry, |
| 3683 | &newnd.path, new_dentry); |
| 3684 | if (error) |
| 3685 | goto exit6; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3686 | error = vfs_rename(old_dir->d_inode, old_dentry, |
| 3687 | new_dir->d_inode, new_dentry); |
Kentaro Takeda | be6d3e5 | 2008-12-17 13:24:15 +0900 | [diff] [blame] | 3688 | exit6: |
Dave Hansen | 9079b1e | 2008-02-15 14:37:49 -0800 | [diff] [blame] | 3689 | mnt_drop_write(oldnd.path.mnt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3690 | exit5: |
| 3691 | dput(new_dentry); |
| 3692 | exit4: |
| 3693 | dput(old_dentry); |
| 3694 | exit3: |
| 3695 | unlock_rename(new_dir, old_dir); |
| 3696 | exit2: |
Jan Blunck | 1d957f9 | 2008-02-14 19:34:35 -0800 | [diff] [blame] | 3697 | path_put(&newnd.path); |
Al Viro | 2ad94ae | 2008-07-21 09:32:51 -0400 | [diff] [blame] | 3698 | putname(to); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3699 | exit1: |
Jan Blunck | 1d957f9 | 2008-02-14 19:34:35 -0800 | [diff] [blame] | 3700 | path_put(&oldnd.path); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3701 | putname(from); |
Al Viro | 2ad94ae | 2008-07-21 09:32:51 -0400 | [diff] [blame] | 3702 | exit: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3703 | return error; |
| 3704 | } |
| 3705 | |
Heiko Carstens | a26eab2 | 2009-01-14 14:14:17 +0100 | [diff] [blame] | 3706 | SYSCALL_DEFINE2(rename, const char __user *, oldname, const char __user *, newname) |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 3707 | { |
| 3708 | return sys_renameat(AT_FDCWD, oldname, AT_FDCWD, newname); |
| 3709 | } |
| 3710 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3711 | int vfs_readlink(struct dentry *dentry, char __user *buffer, int buflen, const char *link) |
| 3712 | { |
| 3713 | int len; |
| 3714 | |
| 3715 | len = PTR_ERR(link); |
| 3716 | if (IS_ERR(link)) |
| 3717 | goto out; |
| 3718 | |
| 3719 | len = strlen(link); |
| 3720 | if (len > (unsigned) buflen) |
| 3721 | len = buflen; |
| 3722 | if (copy_to_user(buffer, link, len)) |
| 3723 | len = -EFAULT; |
| 3724 | out: |
| 3725 | return len; |
| 3726 | } |
| 3727 | |
| 3728 | /* |
| 3729 | * A helper for ->readlink(). This should be used *ONLY* for symlinks that |
| 3730 | * have ->follow_link() touching nd only in nd_set_link(). Using (or not |
| 3731 | * using) it for any given inode is up to filesystem. |
| 3732 | */ |
| 3733 | int generic_readlink(struct dentry *dentry, char __user *buffer, int buflen) |
| 3734 | { |
| 3735 | struct nameidata nd; |
Linus Torvalds | cc314ee | 2005-08-19 18:02:56 -0700 | [diff] [blame] | 3736 | void *cookie; |
Marcin Slusarz | 694a176 | 2008-06-09 16:40:37 -0700 | [diff] [blame] | 3737 | int res; |
Linus Torvalds | cc314ee | 2005-08-19 18:02:56 -0700 | [diff] [blame] | 3738 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3739 | nd.depth = 0; |
Linus Torvalds | cc314ee | 2005-08-19 18:02:56 -0700 | [diff] [blame] | 3740 | cookie = dentry->d_inode->i_op->follow_link(dentry, &nd); |
Marcin Slusarz | 694a176 | 2008-06-09 16:40:37 -0700 | [diff] [blame] | 3741 | if (IS_ERR(cookie)) |
| 3742 | return PTR_ERR(cookie); |
| 3743 | |
| 3744 | res = vfs_readlink(dentry, buffer, buflen, nd_get_link(&nd)); |
| 3745 | if (dentry->d_inode->i_op->put_link) |
| 3746 | dentry->d_inode->i_op->put_link(dentry, &nd, cookie); |
| 3747 | return res; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3748 | } |
| 3749 | |
| 3750 | int vfs_follow_link(struct nameidata *nd, const char *link) |
| 3751 | { |
| 3752 | return __vfs_follow_link(nd, link); |
| 3753 | } |
| 3754 | |
| 3755 | /* get the link contents into pagecache */ |
| 3756 | static char *page_getlink(struct dentry * dentry, struct page **ppage) |
| 3757 | { |
Duane Griffin | ebd09ab | 2008-12-19 20:47:12 +0000 | [diff] [blame] | 3758 | char *kaddr; |
| 3759 | struct page *page; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3760 | struct address_space *mapping = dentry->d_inode->i_mapping; |
Pekka Enberg | 090d2b1 | 2006-06-23 02:05:08 -0700 | [diff] [blame] | 3761 | page = read_mapping_page(mapping, 0, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3762 | if (IS_ERR(page)) |
Nick Piggin | 6fe6900 | 2007-05-06 14:49:04 -0700 | [diff] [blame] | 3763 | return (char*)page; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3764 | *ppage = page; |
Duane Griffin | ebd09ab | 2008-12-19 20:47:12 +0000 | [diff] [blame] | 3765 | kaddr = kmap(page); |
| 3766 | nd_terminate_link(kaddr, dentry->d_inode->i_size, PAGE_SIZE - 1); |
| 3767 | return kaddr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3768 | } |
| 3769 | |
| 3770 | int page_readlink(struct dentry *dentry, char __user *buffer, int buflen) |
| 3771 | { |
| 3772 | struct page *page = NULL; |
| 3773 | char *s = page_getlink(dentry, &page); |
| 3774 | int res = vfs_readlink(dentry,buffer,buflen,s); |
| 3775 | if (page) { |
| 3776 | kunmap(page); |
| 3777 | page_cache_release(page); |
| 3778 | } |
| 3779 | return res; |
| 3780 | } |
| 3781 | |
Linus Torvalds | cc314ee | 2005-08-19 18:02:56 -0700 | [diff] [blame] | 3782 | void *page_follow_link_light(struct dentry *dentry, struct nameidata *nd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3783 | { |
Linus Torvalds | cc314ee | 2005-08-19 18:02:56 -0700 | [diff] [blame] | 3784 | struct page *page = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3785 | nd_set_link(nd, page_getlink(dentry, &page)); |
Linus Torvalds | cc314ee | 2005-08-19 18:02:56 -0700 | [diff] [blame] | 3786 | return page; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3787 | } |
| 3788 | |
Linus Torvalds | cc314ee | 2005-08-19 18:02:56 -0700 | [diff] [blame] | 3789 | void page_put_link(struct dentry *dentry, struct nameidata *nd, void *cookie) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3790 | { |
Linus Torvalds | cc314ee | 2005-08-19 18:02:56 -0700 | [diff] [blame] | 3791 | struct page *page = cookie; |
| 3792 | |
| 3793 | if (page) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3794 | kunmap(page); |
| 3795 | page_cache_release(page); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3796 | } |
| 3797 | } |
| 3798 | |
Nick Piggin | 54566b2 | 2009-01-04 12:00:53 -0800 | [diff] [blame] | 3799 | /* |
| 3800 | * The nofs argument instructs pagecache_write_begin to pass AOP_FLAG_NOFS |
| 3801 | */ |
| 3802 | int __page_symlink(struct inode *inode, const char *symname, int len, int nofs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3803 | { |
| 3804 | struct address_space *mapping = inode->i_mapping; |
Kirill Korotaev | 0adb25d | 2006-03-11 03:27:13 -0800 | [diff] [blame] | 3805 | struct page *page; |
Nick Piggin | afddba4 | 2007-10-16 01:25:01 -0700 | [diff] [blame] | 3806 | void *fsdata; |
Dmitriy Monakhov | beb497a | 2007-02-16 01:27:18 -0800 | [diff] [blame] | 3807 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3808 | char *kaddr; |
Nick Piggin | 54566b2 | 2009-01-04 12:00:53 -0800 | [diff] [blame] | 3809 | unsigned int flags = AOP_FLAG_UNINTERRUPTIBLE; |
| 3810 | if (nofs) |
| 3811 | flags |= AOP_FLAG_NOFS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3812 | |
NeilBrown | 7e53cac | 2006-03-25 03:07:57 -0800 | [diff] [blame] | 3813 | retry: |
Nick Piggin | afddba4 | 2007-10-16 01:25:01 -0700 | [diff] [blame] | 3814 | err = pagecache_write_begin(NULL, mapping, 0, len-1, |
Nick Piggin | 54566b2 | 2009-01-04 12:00:53 -0800 | [diff] [blame] | 3815 | flags, &page, &fsdata); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3816 | if (err) |
Nick Piggin | afddba4 | 2007-10-16 01:25:01 -0700 | [diff] [blame] | 3817 | goto fail; |
| 3818 | |
Cong Wang | e8e3c3d | 2011-11-25 23:14:27 +0800 | [diff] [blame] | 3819 | kaddr = kmap_atomic(page); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3820 | memcpy(kaddr, symname, len-1); |
Cong Wang | e8e3c3d | 2011-11-25 23:14:27 +0800 | [diff] [blame] | 3821 | kunmap_atomic(kaddr); |
Nick Piggin | afddba4 | 2007-10-16 01:25:01 -0700 | [diff] [blame] | 3822 | |
| 3823 | err = pagecache_write_end(NULL, mapping, 0, len-1, len-1, |
| 3824 | page, fsdata); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3825 | if (err < 0) |
| 3826 | goto fail; |
Nick Piggin | afddba4 | 2007-10-16 01:25:01 -0700 | [diff] [blame] | 3827 | if (err < len-1) |
| 3828 | goto retry; |
| 3829 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3830 | mark_inode_dirty(inode); |
| 3831 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3832 | fail: |
| 3833 | return err; |
| 3834 | } |
| 3835 | |
Kirill Korotaev | 0adb25d | 2006-03-11 03:27:13 -0800 | [diff] [blame] | 3836 | int page_symlink(struct inode *inode, const char *symname, int len) |
| 3837 | { |
| 3838 | return __page_symlink(inode, symname, len, |
Nick Piggin | 54566b2 | 2009-01-04 12:00:53 -0800 | [diff] [blame] | 3839 | !(mapping_gfp_mask(inode->i_mapping) & __GFP_FS)); |
Kirill Korotaev | 0adb25d | 2006-03-11 03:27:13 -0800 | [diff] [blame] | 3840 | } |
| 3841 | |
Arjan van de Ven | 92e1d5b | 2007-02-12 00:55:39 -0800 | [diff] [blame] | 3842 | const struct inode_operations page_symlink_inode_operations = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3843 | .readlink = generic_readlink, |
| 3844 | .follow_link = page_follow_link_light, |
| 3845 | .put_link = page_put_link, |
| 3846 | }; |
| 3847 | |
Al Viro | 2d8f303 | 2008-07-22 09:59:21 -0400 | [diff] [blame] | 3848 | EXPORT_SYMBOL(user_path_at); |
David Howells | cc53ce5 | 2011-01-14 18:45:26 +0000 | [diff] [blame] | 3849 | EXPORT_SYMBOL(follow_down_one); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3850 | EXPORT_SYMBOL(follow_down); |
| 3851 | EXPORT_SYMBOL(follow_up); |
| 3852 | EXPORT_SYMBOL(get_write_access); /* binfmt_aout */ |
| 3853 | EXPORT_SYMBOL(getname); |
| 3854 | EXPORT_SYMBOL(lock_rename); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3855 | EXPORT_SYMBOL(lookup_one_len); |
| 3856 | EXPORT_SYMBOL(page_follow_link_light); |
| 3857 | EXPORT_SYMBOL(page_put_link); |
| 3858 | EXPORT_SYMBOL(page_readlink); |
Kirill Korotaev | 0adb25d | 2006-03-11 03:27:13 -0800 | [diff] [blame] | 3859 | EXPORT_SYMBOL(__page_symlink); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3860 | EXPORT_SYMBOL(page_symlink); |
| 3861 | EXPORT_SYMBOL(page_symlink_inode_operations); |
Al Viro | d181146 | 2008-08-02 00:49:18 -0400 | [diff] [blame] | 3862 | EXPORT_SYMBOL(kern_path); |
Josef 'Jeff' Sipek | 16f1820 | 2007-07-19 01:48:18 -0700 | [diff] [blame] | 3863 | EXPORT_SYMBOL(vfs_path_lookup); |
Al Viro | f419a2e | 2008-07-22 00:07:17 -0400 | [diff] [blame] | 3864 | EXPORT_SYMBOL(inode_permission); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3865 | EXPORT_SYMBOL(unlock_rename); |
| 3866 | EXPORT_SYMBOL(vfs_create); |
| 3867 | EXPORT_SYMBOL(vfs_follow_link); |
| 3868 | EXPORT_SYMBOL(vfs_link); |
| 3869 | EXPORT_SYMBOL(vfs_mkdir); |
| 3870 | EXPORT_SYMBOL(vfs_mknod); |
| 3871 | EXPORT_SYMBOL(generic_permission); |
| 3872 | EXPORT_SYMBOL(vfs_readlink); |
| 3873 | EXPORT_SYMBOL(vfs_rename); |
| 3874 | EXPORT_SYMBOL(vfs_rmdir); |
| 3875 | EXPORT_SYMBOL(vfs_symlink); |
| 3876 | EXPORT_SYMBOL(vfs_unlink); |
| 3877 | EXPORT_SYMBOL(dentry_unhash); |
| 3878 | EXPORT_SYMBOL(generic_readlink); |