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