Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * linux/fs/namei.c |
| 3 | * |
| 4 | * Copyright (C) 1991, 1992 Linus Torvalds |
| 5 | */ |
| 6 | |
| 7 | /* |
| 8 | * Some corrections by tytso. |
| 9 | */ |
| 10 | |
| 11 | /* [Feb 1997 T. Schoebel-Theuer] Complete rewrite of the pathname |
| 12 | * lookup logic. |
| 13 | */ |
| 14 | /* [Feb-Apr 2000, AV] Rewrite to the new namespace architecture. |
| 15 | */ |
| 16 | |
| 17 | #include <linux/init.h> |
Paul Gortmaker | 630d9c4 | 2011-11-16 23:57:37 -0500 | [diff] [blame] | 18 | #include <linux/export.h> |
David S. Miller | 4469690 | 2012-05-23 20:12:50 -0700 | [diff] [blame] | 19 | #include <linux/kernel.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | #include <linux/slab.h> |
| 21 | #include <linux/fs.h> |
| 22 | #include <linux/namei.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | #include <linux/pagemap.h> |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 24 | #include <linux/fsnotify.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | #include <linux/personality.h> |
| 26 | #include <linux/security.h> |
Mimi Zohar | 6146f0d | 2009-02-04 09:06:57 -0500 | [diff] [blame] | 27 | #include <linux/ima.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | #include <linux/syscalls.h> |
| 29 | #include <linux/mount.h> |
| 30 | #include <linux/audit.h> |
Randy Dunlap | 16f7e0f | 2006-01-11 12:17:46 -0800 | [diff] [blame] | 31 | #include <linux/capability.h> |
Trond Myklebust | 834f2a4 | 2005-10-18 14:20:16 -0700 | [diff] [blame] | 32 | #include <linux/file.h> |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 33 | #include <linux/fcntl.h> |
Serge E. Hallyn | 08ce5f1 | 2008-04-29 01:00:10 -0700 | [diff] [blame] | 34 | #include <linux/device_cgroup.h> |
Al Viro | 5ad4e53 | 2009-03-29 19:50:06 -0400 | [diff] [blame] | 35 | #include <linux/fs_struct.h> |
Linus Torvalds | e77819e | 2011-07-22 19:30:19 -0700 | [diff] [blame] | 36 | #include <linux/posix_acl.h> |
Linus Torvalds | 99d263d | 2014-09-13 11:30:10 -0700 | [diff] [blame] | 37 | #include <linux/hash.h> |
George Spelvin | 2a18da7a | 2016-05-23 07:43:58 -0400 | [diff] [blame] | 38 | #include <linux/bitops.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | #include <asm/uaccess.h> |
| 40 | |
Eric Paris | e81e3f4 | 2009-12-04 15:47:36 -0500 | [diff] [blame] | 41 | #include "internal.h" |
Al Viro | c710536 | 2011-11-24 18:22:03 -0500 | [diff] [blame] | 42 | #include "mount.h" |
Eric Paris | e81e3f4 | 2009-12-04 15:47:36 -0500 | [diff] [blame] | 43 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | /* [Feb-1997 T. Schoebel-Theuer] |
| 45 | * Fundamental changes in the pathname lookup mechanisms (namei) |
| 46 | * were necessary because of omirr. The reason is that omirr needs |
| 47 | * to know the _real_ pathname, not the user-supplied one, in case |
| 48 | * of symlinks (and also when transname replacements occur). |
| 49 | * |
| 50 | * The new code replaces the old recursive symlink resolution with |
| 51 | * an iterative one (in case of non-nested symlink chains). It does |
| 52 | * this with calls to <fs>_follow_link(). |
| 53 | * As a side effect, dir_namei(), _namei() and follow_link() are now |
| 54 | * replaced with a single function lookup_dentry() that can handle all |
| 55 | * the special cases of the former code. |
| 56 | * |
| 57 | * With the new dcache, the pathname is stored at each inode, at least as |
| 58 | * long as the refcount of the inode is positive. As a side effect, the |
| 59 | * size of the dcache depends on the inode cache and thus is dynamic. |
| 60 | * |
| 61 | * [29-Apr-1998 C. Scott Ananian] Updated above description of symlink |
| 62 | * resolution to correspond with current state of the code. |
| 63 | * |
| 64 | * Note that the symlink resolution is not *completely* iterative. |
| 65 | * There is still a significant amount of tail- and mid- recursion in |
| 66 | * the algorithm. Also, note that <fs>_readlink() is not used in |
| 67 | * lookup_dentry(): lookup_dentry() on the result of <fs>_readlink() |
| 68 | * may return different results than <fs>_follow_link(). Many virtual |
| 69 | * filesystems (including /proc) exhibit this behavior. |
| 70 | */ |
| 71 | |
| 72 | /* [24-Feb-97 T. Schoebel-Theuer] Side effects caused by new implementation: |
| 73 | * New symlink semantics: when open() is called with flags O_CREAT | O_EXCL |
| 74 | * and the name already exists in form of a symlink, try to create the new |
| 75 | * name indicated by the symlink. The old code always complained that the |
| 76 | * name already exists, due to not following the symlink even if its target |
| 77 | * is nonexistent. The new semantics affects also mknod() and link() when |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 78 | * the name is a symlink pointing to a non-existent name. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | * |
| 80 | * I don't know which semantics is the right one, since I have no access |
| 81 | * to standards. But I found by trial that HP-UX 9.0 has the full "new" |
| 82 | * semantics implemented, while SunOS 4.1.1 and Solaris (SunOS 5.4) have the |
| 83 | * "old" one. Personally, I think the new semantics is much more logical. |
| 84 | * Note that "ln old new" where "new" is a symlink pointing to a non-existing |
| 85 | * file does succeed in both HP-UX and SunOs, but not in Solaris |
| 86 | * and in the old Linux semantics. |
| 87 | */ |
| 88 | |
| 89 | /* [16-Dec-97 Kevin Buhr] For security reasons, we change some symlink |
| 90 | * semantics. See the comments in "open_namei" and "do_link" below. |
| 91 | * |
| 92 | * [10-Sep-98 Alan Modra] Another symlink change. |
| 93 | */ |
| 94 | |
| 95 | /* [Feb-Apr 2000 AV] Complete rewrite. Rules for symlinks: |
| 96 | * inside the path - always follow. |
| 97 | * in the last component in creation/removal/renaming - never follow. |
| 98 | * if LOOKUP_FOLLOW passed - follow. |
| 99 | * if the pathname has trailing slashes - follow. |
| 100 | * otherwise - don't follow. |
| 101 | * (applied in that order). |
| 102 | * |
| 103 | * [Jun 2000 AV] Inconsistent behaviour of open() in case if flags==O_CREAT |
| 104 | * restored for 2.4. This is the last surviving part of old 4.2BSD bug. |
| 105 | * During the 2.4 we need to fix the userland stuff depending on it - |
| 106 | * hopefully we will be able to get rid of that wart in 2.5. So far only |
| 107 | * XEmacs seems to be relying on it... |
| 108 | */ |
| 109 | /* |
| 110 | * [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] | 111 | * 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] | 112 | * any extra contention... |
| 113 | */ |
| 114 | |
| 115 | /* In order to reduce some races, while at the same time doing additional |
| 116 | * checking and hopefully speeding things up, we copy filenames to the |
| 117 | * kernel data space before using them.. |
| 118 | * |
| 119 | * POSIX.1 2.4: an empty pathname is invalid (ENOENT). |
| 120 | * PATH_MAX includes the nul terminator --RR. |
| 121 | */ |
Jeff Layton | 91a27b2 | 2012-10-10 15:25:28 -0400 | [diff] [blame] | 122 | |
Al Viro | fd2f7cb | 2015-02-22 20:07:13 -0500 | [diff] [blame] | 123 | #define EMBEDDED_NAME_MAX (PATH_MAX - offsetof(struct filename, iname)) |
Jeff Layton | 7950e38 | 2012-10-10 16:43:13 -0400 | [diff] [blame] | 124 | |
David Drysdale | 51f39a1 | 2014-12-12 16:57:29 -0800 | [diff] [blame] | 125 | struct filename * |
Jeff Layton | 91a27b2 | 2012-10-10 15:25:28 -0400 | [diff] [blame] | 126 | getname_flags(const char __user *filename, int flags, int *empty) |
| 127 | { |
Al Viro | 94b5d26 | 2015-02-22 19:38:03 -0500 | [diff] [blame] | 128 | struct filename *result; |
Jeff Layton | 7950e38 | 2012-10-10 16:43:13 -0400 | [diff] [blame] | 129 | char *kname; |
Al Viro | 94b5d26 | 2015-02-22 19:38:03 -0500 | [diff] [blame] | 130 | int len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | |
Jeff Layton | 7ac8626 | 2012-10-10 15:25:28 -0400 | [diff] [blame] | 132 | result = audit_reusename(filename); |
| 133 | if (result) |
| 134 | return result; |
| 135 | |
Jeff Layton | 7950e38 | 2012-10-10 16:43:13 -0400 | [diff] [blame] | 136 | result = __getname(); |
Linus Torvalds | 3f9f0aa | 2012-04-28 14:38:32 -0700 | [diff] [blame] | 137 | if (unlikely(!result)) |
Eric Paris | 4043cde | 2012-01-03 14:23:08 -0500 | [diff] [blame] | 138 | return ERR_PTR(-ENOMEM); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 139 | |
Jeff Layton | 7950e38 | 2012-10-10 16:43:13 -0400 | [diff] [blame] | 140 | /* |
| 141 | * First, try to embed the struct filename inside the names_cache |
| 142 | * allocation |
| 143 | */ |
Al Viro | fd2f7cb | 2015-02-22 20:07:13 -0500 | [diff] [blame] | 144 | kname = (char *)result->iname; |
Jeff Layton | 91a27b2 | 2012-10-10 15:25:28 -0400 | [diff] [blame] | 145 | result->name = kname; |
Jeff Layton | 7950e38 | 2012-10-10 16:43:13 -0400 | [diff] [blame] | 146 | |
Al Viro | 94b5d26 | 2015-02-22 19:38:03 -0500 | [diff] [blame] | 147 | len = strncpy_from_user(kname, filename, EMBEDDED_NAME_MAX); |
Jeff Layton | 91a27b2 | 2012-10-10 15:25:28 -0400 | [diff] [blame] | 148 | if (unlikely(len < 0)) { |
Al Viro | 94b5d26 | 2015-02-22 19:38:03 -0500 | [diff] [blame] | 149 | __putname(result); |
| 150 | return ERR_PTR(len); |
Jeff Layton | 91a27b2 | 2012-10-10 15:25:28 -0400 | [diff] [blame] | 151 | } |
Linus Torvalds | 3f9f0aa | 2012-04-28 14:38:32 -0700 | [diff] [blame] | 152 | |
Jeff Layton | 7950e38 | 2012-10-10 16:43:13 -0400 | [diff] [blame] | 153 | /* |
| 154 | * Uh-oh. We have a name that's approaching PATH_MAX. Allocate a |
| 155 | * separate struct filename so we can dedicate the entire |
| 156 | * names_cache allocation for the pathname, and re-do the copy from |
| 157 | * userland. |
| 158 | */ |
Al Viro | 94b5d26 | 2015-02-22 19:38:03 -0500 | [diff] [blame] | 159 | if (unlikely(len == EMBEDDED_NAME_MAX)) { |
Al Viro | fd2f7cb | 2015-02-22 20:07:13 -0500 | [diff] [blame] | 160 | const size_t size = offsetof(struct filename, iname[1]); |
Jeff Layton | 7950e38 | 2012-10-10 16:43:13 -0400 | [diff] [blame] | 161 | kname = (char *)result; |
| 162 | |
Al Viro | fd2f7cb | 2015-02-22 20:07:13 -0500 | [diff] [blame] | 163 | /* |
| 164 | * size is chosen that way we to guarantee that |
| 165 | * result->iname[0] is within the same object and that |
| 166 | * kname can't be equal to result->iname, no matter what. |
| 167 | */ |
| 168 | result = kzalloc(size, GFP_KERNEL); |
Al Viro | 94b5d26 | 2015-02-22 19:38:03 -0500 | [diff] [blame] | 169 | if (unlikely(!result)) { |
| 170 | __putname(kname); |
| 171 | return ERR_PTR(-ENOMEM); |
Jeff Layton | 7950e38 | 2012-10-10 16:43:13 -0400 | [diff] [blame] | 172 | } |
| 173 | result->name = kname; |
Al Viro | 94b5d26 | 2015-02-22 19:38:03 -0500 | [diff] [blame] | 174 | len = strncpy_from_user(kname, filename, PATH_MAX); |
| 175 | if (unlikely(len < 0)) { |
| 176 | __putname(kname); |
| 177 | kfree(result); |
| 178 | return ERR_PTR(len); |
| 179 | } |
| 180 | if (unlikely(len == PATH_MAX)) { |
| 181 | __putname(kname); |
| 182 | kfree(result); |
| 183 | return ERR_PTR(-ENAMETOOLONG); |
| 184 | } |
Jeff Layton | 7950e38 | 2012-10-10 16:43:13 -0400 | [diff] [blame] | 185 | } |
| 186 | |
Al Viro | 94b5d26 | 2015-02-22 19:38:03 -0500 | [diff] [blame] | 187 | result->refcnt = 1; |
Linus Torvalds | 3f9f0aa | 2012-04-28 14:38:32 -0700 | [diff] [blame] | 188 | /* The empty path is special. */ |
| 189 | if (unlikely(!len)) { |
| 190 | if (empty) |
Eric Paris | 4043cde | 2012-01-03 14:23:08 -0500 | [diff] [blame] | 191 | *empty = 1; |
Al Viro | 94b5d26 | 2015-02-22 19:38:03 -0500 | [diff] [blame] | 192 | if (!(flags & LOOKUP_EMPTY)) { |
| 193 | putname(result); |
| 194 | return ERR_PTR(-ENOENT); |
| 195 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 196 | } |
Linus Torvalds | 3f9f0aa | 2012-04-28 14:38:32 -0700 | [diff] [blame] | 197 | |
Jeff Layton | 7950e38 | 2012-10-10 16:43:13 -0400 | [diff] [blame] | 198 | result->uptr = filename; |
Linus Torvalds | c4ad8f9 | 2014-02-05 12:54:53 -0800 | [diff] [blame] | 199 | result->aname = NULL; |
Jeff Layton | 7950e38 | 2012-10-10 16:43:13 -0400 | [diff] [blame] | 200 | audit_getname(result); |
| 201 | return result; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 202 | } |
| 203 | |
Jeff Layton | 91a27b2 | 2012-10-10 15:25:28 -0400 | [diff] [blame] | 204 | struct filename * |
| 205 | getname(const char __user * filename) |
Al Viro | f52e0c1 | 2011-03-14 18:56:51 -0400 | [diff] [blame] | 206 | { |
Linus Torvalds | f7493e5 | 2012-03-22 16:10:40 -0700 | [diff] [blame] | 207 | return getname_flags(filename, 0, NULL); |
Al Viro | f52e0c1 | 2011-03-14 18:56:51 -0400 | [diff] [blame] | 208 | } |
| 209 | |
Linus Torvalds | c4ad8f9 | 2014-02-05 12:54:53 -0800 | [diff] [blame] | 210 | struct filename * |
| 211 | getname_kernel(const char * filename) |
| 212 | { |
| 213 | struct filename *result; |
Paul Moore | 0851854 | 2015-01-21 23:59:56 -0500 | [diff] [blame] | 214 | int len = strlen(filename) + 1; |
Linus Torvalds | c4ad8f9 | 2014-02-05 12:54:53 -0800 | [diff] [blame] | 215 | |
| 216 | result = __getname(); |
| 217 | if (unlikely(!result)) |
| 218 | return ERR_PTR(-ENOMEM); |
| 219 | |
Paul Moore | 0851854 | 2015-01-21 23:59:56 -0500 | [diff] [blame] | 220 | if (len <= EMBEDDED_NAME_MAX) { |
Al Viro | fd2f7cb | 2015-02-22 20:07:13 -0500 | [diff] [blame] | 221 | result->name = (char *)result->iname; |
Paul Moore | 0851854 | 2015-01-21 23:59:56 -0500 | [diff] [blame] | 222 | } else if (len <= PATH_MAX) { |
| 223 | struct filename *tmp; |
| 224 | |
| 225 | tmp = kmalloc(sizeof(*tmp), GFP_KERNEL); |
| 226 | if (unlikely(!tmp)) { |
| 227 | __putname(result); |
| 228 | return ERR_PTR(-ENOMEM); |
| 229 | } |
| 230 | tmp->name = (char *)result; |
Paul Moore | 0851854 | 2015-01-21 23:59:56 -0500 | [diff] [blame] | 231 | result = tmp; |
| 232 | } else { |
| 233 | __putname(result); |
| 234 | return ERR_PTR(-ENAMETOOLONG); |
| 235 | } |
| 236 | memcpy((char *)result->name, filename, len); |
Linus Torvalds | c4ad8f9 | 2014-02-05 12:54:53 -0800 | [diff] [blame] | 237 | result->uptr = NULL; |
| 238 | result->aname = NULL; |
Paul Moore | 55422d0 | 2015-01-22 00:00:23 -0500 | [diff] [blame] | 239 | result->refcnt = 1; |
Paul Moore | fd3522f | 2015-01-22 00:00:10 -0500 | [diff] [blame] | 240 | audit_getname(result); |
Linus Torvalds | c4ad8f9 | 2014-02-05 12:54:53 -0800 | [diff] [blame] | 241 | |
Linus Torvalds | c4ad8f9 | 2014-02-05 12:54:53 -0800 | [diff] [blame] | 242 | return result; |
| 243 | } |
| 244 | |
Jeff Layton | 91a27b2 | 2012-10-10 15:25:28 -0400 | [diff] [blame] | 245 | void putname(struct filename *name) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 246 | { |
Paul Moore | 55422d0 | 2015-01-22 00:00:23 -0500 | [diff] [blame] | 247 | BUG_ON(name->refcnt <= 0); |
| 248 | |
| 249 | if (--name->refcnt > 0) |
| 250 | return; |
| 251 | |
Al Viro | fd2f7cb | 2015-02-22 20:07:13 -0500 | [diff] [blame] | 252 | if (name->name != name->iname) { |
Paul Moore | 55422d0 | 2015-01-22 00:00:23 -0500 | [diff] [blame] | 253 | __putname(name->name); |
| 254 | kfree(name); |
| 255 | } else |
| 256 | __putname(name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 257 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 258 | |
Linus Torvalds | e77819e | 2011-07-22 19:30:19 -0700 | [diff] [blame] | 259 | static int check_acl(struct inode *inode, int mask) |
| 260 | { |
Linus Torvalds | 84635d6 | 2011-07-25 22:47:03 -0700 | [diff] [blame] | 261 | #ifdef CONFIG_FS_POSIX_ACL |
Linus Torvalds | e77819e | 2011-07-22 19:30:19 -0700 | [diff] [blame] | 262 | struct posix_acl *acl; |
| 263 | |
Linus Torvalds | e77819e | 2011-07-22 19:30:19 -0700 | [diff] [blame] | 264 | if (mask & MAY_NOT_BLOCK) { |
Al Viro | 3567866 | 2011-08-02 21:32:13 -0400 | [diff] [blame] | 265 | acl = get_cached_acl_rcu(inode, ACL_TYPE_ACCESS); |
| 266 | if (!acl) |
Linus Torvalds | e77819e | 2011-07-22 19:30:19 -0700 | [diff] [blame] | 267 | return -EAGAIN; |
Al Viro | 3567866 | 2011-08-02 21:32:13 -0400 | [diff] [blame] | 268 | /* no ->get_acl() calls in RCU mode... */ |
Andreas Gruenbacher | b8a7a3a | 2016-03-24 14:38:37 +0100 | [diff] [blame] | 269 | if (is_uncached_acl(acl)) |
Al Viro | 3567866 | 2011-08-02 21:32:13 -0400 | [diff] [blame] | 270 | return -ECHILD; |
Ari Savolainen | 206b1d0 | 2011-08-06 19:43:07 +0300 | [diff] [blame] | 271 | return posix_acl_permission(inode, acl, mask & ~MAY_NOT_BLOCK); |
Linus Torvalds | e77819e | 2011-07-22 19:30:19 -0700 | [diff] [blame] | 272 | } |
| 273 | |
Christoph Hellwig | 2982baa | 2013-12-20 05:16:38 -0800 | [diff] [blame] | 274 | acl = get_acl(inode, ACL_TYPE_ACCESS); |
| 275 | if (IS_ERR(acl)) |
| 276 | return PTR_ERR(acl); |
Linus Torvalds | e77819e | 2011-07-22 19:30:19 -0700 | [diff] [blame] | 277 | if (acl) { |
| 278 | int error = posix_acl_permission(inode, acl, mask); |
| 279 | posix_acl_release(acl); |
| 280 | return error; |
| 281 | } |
Linus Torvalds | 84635d6 | 2011-07-25 22:47:03 -0700 | [diff] [blame] | 282 | #endif |
Linus Torvalds | e77819e | 2011-07-22 19:30:19 -0700 | [diff] [blame] | 283 | |
| 284 | return -EAGAIN; |
| 285 | } |
| 286 | |
Linus Torvalds | 5909ccaa | 2009-08-28 11:51:25 -0700 | [diff] [blame] | 287 | /* |
Andreas Gruenbacher | 948409c | 2011-10-23 23:13:33 +0530 | [diff] [blame] | 288 | * This does the basic permission checking |
Linus Torvalds | 5909ccaa | 2009-08-28 11:51:25 -0700 | [diff] [blame] | 289 | */ |
Al Viro | 7e40145 | 2011-06-20 19:12:17 -0400 | [diff] [blame] | 290 | static int acl_permission_check(struct inode *inode, int mask) |
Linus Torvalds | 5909ccaa | 2009-08-28 11:51:25 -0700 | [diff] [blame] | 291 | { |
Linus Torvalds | 26cf46b | 2011-05-13 11:51:01 -0700 | [diff] [blame] | 292 | unsigned int mode = inode->i_mode; |
Linus Torvalds | 5909ccaa | 2009-08-28 11:51:25 -0700 | [diff] [blame] | 293 | |
Eric W. Biederman | 8e96e3b | 2012-03-03 21:17:15 -0800 | [diff] [blame] | 294 | if (likely(uid_eq(current_fsuid(), inode->i_uid))) |
Linus Torvalds | 5909ccaa | 2009-08-28 11:51:25 -0700 | [diff] [blame] | 295 | mode >>= 6; |
| 296 | else { |
Linus Torvalds | e77819e | 2011-07-22 19:30:19 -0700 | [diff] [blame] | 297 | if (IS_POSIXACL(inode) && (mode & S_IRWXG)) { |
Al Viro | 7e40145 | 2011-06-20 19:12:17 -0400 | [diff] [blame] | 298 | int error = check_acl(inode, mask); |
Nick Piggin | b74c79e | 2011-01-07 17:49:58 +1100 | [diff] [blame] | 299 | if (error != -EAGAIN) |
| 300 | return error; |
Linus Torvalds | 5909ccaa | 2009-08-28 11:51:25 -0700 | [diff] [blame] | 301 | } |
| 302 | |
| 303 | if (in_group_p(inode->i_gid)) |
| 304 | mode >>= 3; |
| 305 | } |
| 306 | |
| 307 | /* |
| 308 | * If the DACs are ok we don't need any capability check. |
| 309 | */ |
Al Viro | 9c2c703 | 2011-06-20 19:06:22 -0400 | [diff] [blame] | 310 | if ((mask & ~mode & (MAY_READ | MAY_WRITE | MAY_EXEC)) == 0) |
Linus Torvalds | 5909ccaa | 2009-08-28 11:51:25 -0700 | [diff] [blame] | 311 | return 0; |
| 312 | return -EACCES; |
| 313 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 314 | |
| 315 | /** |
Nick Piggin | b74c79e | 2011-01-07 17:49:58 +1100 | [diff] [blame] | 316 | * generic_permission - check for access rights on a Posix-like filesystem |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 317 | * @inode: inode to check access rights for |
Andreas Gruenbacher | 8fd90c8 | 2011-10-23 23:13:30 +0530 | [diff] [blame] | 318 | * @mask: right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC, ...) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 319 | * |
| 320 | * Used to check for read/write/execute permissions on a file. |
| 321 | * We use "fsuid" for this, letting us set arbitrary permissions |
| 322 | * for filesystem access without changing the "normal" uids which |
Nick Piggin | b74c79e | 2011-01-07 17:49:58 +1100 | [diff] [blame] | 323 | * are used for other things. |
| 324 | * |
| 325 | * generic_permission is rcu-walk aware. It returns -ECHILD in case an rcu-walk |
| 326 | * request cannot be satisfied (eg. requires blocking or too much complexity). |
| 327 | * It would then be called again in ref-walk mode. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 328 | */ |
Al Viro | 2830ba7 | 2011-06-20 19:16:29 -0400 | [diff] [blame] | 329 | int generic_permission(struct inode *inode, int mask) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 330 | { |
Linus Torvalds | 5909ccaa | 2009-08-28 11:51:25 -0700 | [diff] [blame] | 331 | int ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 332 | |
| 333 | /* |
Andreas Gruenbacher | 948409c | 2011-10-23 23:13:33 +0530 | [diff] [blame] | 334 | * Do the basic permission checks. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 335 | */ |
Al Viro | 7e40145 | 2011-06-20 19:12:17 -0400 | [diff] [blame] | 336 | ret = acl_permission_check(inode, mask); |
Linus Torvalds | 5909ccaa | 2009-08-28 11:51:25 -0700 | [diff] [blame] | 337 | if (ret != -EACCES) |
| 338 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 339 | |
Al Viro | d594e7e | 2011-06-20 19:55:42 -0400 | [diff] [blame] | 340 | if (S_ISDIR(inode->i_mode)) { |
| 341 | /* DACs are overridable for directories */ |
Andy Lutomirski | 23adbe1 | 2014-06-10 12:45:42 -0700 | [diff] [blame] | 342 | if (capable_wrt_inode_uidgid(inode, CAP_DAC_OVERRIDE)) |
Al Viro | d594e7e | 2011-06-20 19:55:42 -0400 | [diff] [blame] | 343 | return 0; |
| 344 | if (!(mask & MAY_WRITE)) |
Andy Lutomirski | 23adbe1 | 2014-06-10 12:45:42 -0700 | [diff] [blame] | 345 | if (capable_wrt_inode_uidgid(inode, |
| 346 | CAP_DAC_READ_SEARCH)) |
Al Viro | d594e7e | 2011-06-20 19:55:42 -0400 | [diff] [blame] | 347 | return 0; |
| 348 | return -EACCES; |
| 349 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 350 | /* |
| 351 | * Read/write DACs are always overridable. |
Al Viro | d594e7e | 2011-06-20 19:55:42 -0400 | [diff] [blame] | 352 | * Executable DACs are overridable when there is |
| 353 | * at least one exec bit set. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 354 | */ |
Al Viro | d594e7e | 2011-06-20 19:55:42 -0400 | [diff] [blame] | 355 | if (!(mask & MAY_EXEC) || (inode->i_mode & S_IXUGO)) |
Andy Lutomirski | 23adbe1 | 2014-06-10 12:45:42 -0700 | [diff] [blame] | 356 | if (capable_wrt_inode_uidgid(inode, CAP_DAC_OVERRIDE)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 357 | return 0; |
| 358 | |
| 359 | /* |
| 360 | * Searching includes executable on directories, else just read. |
| 361 | */ |
Serge E. Hallyn | 7ea6600 | 2009-12-29 14:50:19 -0600 | [diff] [blame] | 362 | mask &= MAY_READ | MAY_WRITE | MAY_EXEC; |
Al Viro | d594e7e | 2011-06-20 19:55:42 -0400 | [diff] [blame] | 363 | if (mask == MAY_READ) |
Andy Lutomirski | 23adbe1 | 2014-06-10 12:45:42 -0700 | [diff] [blame] | 364 | if (capable_wrt_inode_uidgid(inode, CAP_DAC_READ_SEARCH)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 365 | return 0; |
| 366 | |
| 367 | return -EACCES; |
| 368 | } |
Al Viro | 4d35950 | 2014-03-14 12:20:17 -0400 | [diff] [blame] | 369 | EXPORT_SYMBOL(generic_permission); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 370 | |
Linus Torvalds | 3ddcd05 | 2011-08-06 22:45:50 -0700 | [diff] [blame] | 371 | /* |
| 372 | * We _really_ want to just do "generic_permission()" without |
| 373 | * even looking at the inode->i_op values. So we keep a cache |
| 374 | * flag in inode->i_opflags, that says "this has not special |
| 375 | * permission function, use the fast case". |
| 376 | */ |
| 377 | static inline int do_inode_permission(struct inode *inode, int mask) |
| 378 | { |
| 379 | if (unlikely(!(inode->i_opflags & IOP_FASTPERM))) { |
| 380 | if (likely(inode->i_op->permission)) |
| 381 | return inode->i_op->permission(inode, mask); |
| 382 | |
| 383 | /* This gets set once for the inode lifetime */ |
| 384 | spin_lock(&inode->i_lock); |
| 385 | inode->i_opflags |= IOP_FASTPERM; |
| 386 | spin_unlock(&inode->i_lock); |
| 387 | } |
| 388 | return generic_permission(inode, mask); |
| 389 | } |
| 390 | |
Christoph Hellwig | cb23beb | 2008-10-24 09:59:29 +0200 | [diff] [blame] | 391 | /** |
David Howells | 0bdaea9 | 2012-06-25 12:55:46 +0100 | [diff] [blame] | 392 | * __inode_permission - Check for access rights to a given inode |
| 393 | * @inode: Inode to check permission on |
| 394 | * @mask: Right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC) |
Christoph Hellwig | cb23beb | 2008-10-24 09:59:29 +0200 | [diff] [blame] | 395 | * |
David Howells | 0bdaea9 | 2012-06-25 12:55:46 +0100 | [diff] [blame] | 396 | * Check for read/write/execute permissions on an inode. |
Andreas Gruenbacher | 948409c | 2011-10-23 23:13:33 +0530 | [diff] [blame] | 397 | * |
| 398 | * When checking for MAY_APPEND, MAY_WRITE must also be set in @mask. |
David Howells | 0bdaea9 | 2012-06-25 12:55:46 +0100 | [diff] [blame] | 399 | * |
| 400 | * This does not check for a read-only file system. You probably want |
| 401 | * inode_permission(). |
Christoph Hellwig | cb23beb | 2008-10-24 09:59:29 +0200 | [diff] [blame] | 402 | */ |
David Howells | 0bdaea9 | 2012-06-25 12:55:46 +0100 | [diff] [blame] | 403 | int __inode_permission(struct inode *inode, int mask) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 404 | { |
Al Viro | e6305c4 | 2008-07-15 21:03:57 -0400 | [diff] [blame] | 405 | int retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 406 | |
Linus Torvalds | 3ddcd05 | 2011-08-06 22:45:50 -0700 | [diff] [blame] | 407 | if (unlikely(mask & MAY_WRITE)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 408 | /* |
| 409 | * Nobody gets write access to an immutable file. |
| 410 | */ |
| 411 | if (IS_IMMUTABLE(inode)) |
| 412 | return -EACCES; |
| 413 | } |
| 414 | |
Linus Torvalds | 3ddcd05 | 2011-08-06 22:45:50 -0700 | [diff] [blame] | 415 | retval = do_inode_permission(inode, mask); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 416 | if (retval) |
| 417 | return retval; |
| 418 | |
Serge E. Hallyn | 08ce5f1 | 2008-04-29 01:00:10 -0700 | [diff] [blame] | 419 | retval = devcgroup_inode_permission(inode, mask); |
| 420 | if (retval) |
| 421 | return retval; |
| 422 | |
Eric Paris | d09ca73 | 2010-07-23 11:43:57 -0400 | [diff] [blame] | 423 | return security_inode_permission(inode, mask); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 424 | } |
Miklos Szeredi | bd5d085 | 2014-10-24 00:14:35 +0200 | [diff] [blame] | 425 | EXPORT_SYMBOL(__inode_permission); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 426 | |
Al Viro | f4d6ff8 | 2011-06-19 13:14:21 -0400 | [diff] [blame] | 427 | /** |
David Howells | 0bdaea9 | 2012-06-25 12:55:46 +0100 | [diff] [blame] | 428 | * sb_permission - Check superblock-level permissions |
| 429 | * @sb: Superblock of inode to check permission on |
Randy Dunlap | 5585263 | 2012-08-18 17:39:25 -0700 | [diff] [blame] | 430 | * @inode: Inode to check permission on |
David Howells | 0bdaea9 | 2012-06-25 12:55:46 +0100 | [diff] [blame] | 431 | * @mask: Right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC) |
| 432 | * |
| 433 | * Separate out file-system wide checks from inode-specific permission checks. |
| 434 | */ |
| 435 | static int sb_permission(struct super_block *sb, struct inode *inode, int mask) |
| 436 | { |
| 437 | if (unlikely(mask & MAY_WRITE)) { |
| 438 | umode_t mode = inode->i_mode; |
| 439 | |
| 440 | /* Nobody gets write access to a read-only fs. */ |
| 441 | if ((sb->s_flags & MS_RDONLY) && |
| 442 | (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode))) |
| 443 | return -EROFS; |
| 444 | } |
| 445 | return 0; |
| 446 | } |
| 447 | |
| 448 | /** |
| 449 | * inode_permission - Check for access rights to a given inode |
| 450 | * @inode: Inode to check permission on |
| 451 | * @mask: Right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC) |
| 452 | * |
| 453 | * Check for read/write/execute permissions on an inode. We use fs[ug]id for |
| 454 | * this, letting us set arbitrary permissions for filesystem access without |
| 455 | * changing the "normal" UIDs which are used for other things. |
| 456 | * |
| 457 | * When checking for MAY_APPEND, MAY_WRITE must also be set in @mask. |
| 458 | */ |
| 459 | int inode_permission(struct inode *inode, int mask) |
| 460 | { |
| 461 | int retval; |
| 462 | |
| 463 | retval = sb_permission(inode->i_sb, inode, mask); |
| 464 | if (retval) |
| 465 | return retval; |
| 466 | return __inode_permission(inode, mask); |
| 467 | } |
Al Viro | 4d35950 | 2014-03-14 12:20:17 -0400 | [diff] [blame] | 468 | EXPORT_SYMBOL(inode_permission); |
David Howells | 0bdaea9 | 2012-06-25 12:55:46 +0100 | [diff] [blame] | 469 | |
| 470 | /** |
Jan Blunck | 5dd784d0 | 2008-02-14 19:34:38 -0800 | [diff] [blame] | 471 | * path_get - get a reference to a path |
| 472 | * @path: path to get the reference to |
| 473 | * |
| 474 | * Given a path increment the reference count to the dentry and the vfsmount. |
| 475 | */ |
Al Viro | dcf787f | 2013-03-01 23:51:07 -0500 | [diff] [blame] | 476 | void path_get(const struct path *path) |
Jan Blunck | 5dd784d0 | 2008-02-14 19:34:38 -0800 | [diff] [blame] | 477 | { |
| 478 | mntget(path->mnt); |
| 479 | dget(path->dentry); |
| 480 | } |
| 481 | EXPORT_SYMBOL(path_get); |
| 482 | |
| 483 | /** |
Jan Blunck | 1d957f9 | 2008-02-14 19:34:35 -0800 | [diff] [blame] | 484 | * path_put - put a reference to a path |
| 485 | * @path: path to put the reference to |
| 486 | * |
| 487 | * Given a path decrement the reference count to the dentry and the vfsmount. |
| 488 | */ |
Al Viro | dcf787f | 2013-03-01 23:51:07 -0500 | [diff] [blame] | 489 | void path_put(const struct path *path) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 490 | { |
Jan Blunck | 1d957f9 | 2008-02-14 19:34:35 -0800 | [diff] [blame] | 491 | dput(path->dentry); |
| 492 | mntput(path->mnt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 493 | } |
Jan Blunck | 1d957f9 | 2008-02-14 19:34:35 -0800 | [diff] [blame] | 494 | EXPORT_SYMBOL(path_put); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 495 | |
Al Viro | 894bc8c | 2015-05-02 07:16:16 -0400 | [diff] [blame] | 496 | #define EMBEDDED_LEVELS 2 |
Al Viro | 1f55a6e | 2014-11-01 19:30:41 -0400 | [diff] [blame] | 497 | struct nameidata { |
| 498 | struct path path; |
Al Viro | 1cf2665 | 2015-05-06 16:01:56 -0400 | [diff] [blame] | 499 | struct qstr last; |
Al Viro | 1f55a6e | 2014-11-01 19:30:41 -0400 | [diff] [blame] | 500 | struct path root; |
| 501 | struct inode *inode; /* path.dentry.d_inode */ |
| 502 | unsigned int flags; |
Al Viro | 9883d18 | 2015-05-13 07:28:08 -0400 | [diff] [blame] | 503 | unsigned seq, m_seq; |
Al Viro | 1f55a6e | 2014-11-01 19:30:41 -0400 | [diff] [blame] | 504 | int last_type; |
| 505 | unsigned depth; |
NeilBrown | 756daf2 | 2015-03-23 13:37:38 +1100 | [diff] [blame] | 506 | int total_link_count; |
Al Viro | 697fc6c | 2015-05-02 19:38:35 -0400 | [diff] [blame] | 507 | struct saved { |
| 508 | struct path link; |
Al Viro | fceef39 | 2015-12-29 15:58:39 -0500 | [diff] [blame] | 509 | struct delayed_call done; |
Al Viro | 697fc6c | 2015-05-02 19:38:35 -0400 | [diff] [blame] | 510 | const char *name; |
Al Viro | 0450b2d | 2015-05-08 13:23:53 -0400 | [diff] [blame] | 511 | unsigned seq; |
Al Viro | 894bc8c | 2015-05-02 07:16:16 -0400 | [diff] [blame] | 512 | } *stack, internal[EMBEDDED_LEVELS]; |
Al Viro | 9883d18 | 2015-05-13 07:28:08 -0400 | [diff] [blame] | 513 | struct filename *name; |
| 514 | struct nameidata *saved; |
Al Viro | fceef39 | 2015-12-29 15:58:39 -0500 | [diff] [blame] | 515 | struct inode *link_inode; |
Al Viro | 9883d18 | 2015-05-13 07:28:08 -0400 | [diff] [blame] | 516 | unsigned root_seq; |
| 517 | int dfd; |
Al Viro | 1f55a6e | 2014-11-01 19:30:41 -0400 | [diff] [blame] | 518 | }; |
| 519 | |
Al Viro | 9883d18 | 2015-05-13 07:28:08 -0400 | [diff] [blame] | 520 | static void set_nameidata(struct nameidata *p, int dfd, struct filename *name) |
Al Viro | 894bc8c | 2015-05-02 07:16:16 -0400 | [diff] [blame] | 521 | { |
NeilBrown | 756daf2 | 2015-03-23 13:37:38 +1100 | [diff] [blame] | 522 | struct nameidata *old = current->nameidata; |
| 523 | p->stack = p->internal; |
Al Viro | c8a53ee | 2015-05-12 18:43:07 -0400 | [diff] [blame] | 524 | p->dfd = dfd; |
| 525 | p->name = name; |
NeilBrown | 756daf2 | 2015-03-23 13:37:38 +1100 | [diff] [blame] | 526 | p->total_link_count = old ? old->total_link_count : 0; |
Al Viro | 9883d18 | 2015-05-13 07:28:08 -0400 | [diff] [blame] | 527 | p->saved = old; |
NeilBrown | 756daf2 | 2015-03-23 13:37:38 +1100 | [diff] [blame] | 528 | current->nameidata = p; |
Al Viro | 894bc8c | 2015-05-02 07:16:16 -0400 | [diff] [blame] | 529 | } |
| 530 | |
Al Viro | 9883d18 | 2015-05-13 07:28:08 -0400 | [diff] [blame] | 531 | static void restore_nameidata(void) |
Al Viro | 894bc8c | 2015-05-02 07:16:16 -0400 | [diff] [blame] | 532 | { |
Al Viro | 9883d18 | 2015-05-13 07:28:08 -0400 | [diff] [blame] | 533 | struct nameidata *now = current->nameidata, *old = now->saved; |
NeilBrown | 756daf2 | 2015-03-23 13:37:38 +1100 | [diff] [blame] | 534 | |
| 535 | current->nameidata = old; |
| 536 | if (old) |
| 537 | old->total_link_count = now->total_link_count; |
Al Viro | e1a63bb | 2015-12-05 21:06:33 -0500 | [diff] [blame] | 538 | if (now->stack != now->internal) |
NeilBrown | 756daf2 | 2015-03-23 13:37:38 +1100 | [diff] [blame] | 539 | kfree(now->stack); |
Al Viro | 894bc8c | 2015-05-02 07:16:16 -0400 | [diff] [blame] | 540 | } |
| 541 | |
| 542 | static int __nd_alloc_stack(struct nameidata *nd) |
| 543 | { |
Al Viro | bc40aee | 2015-05-09 13:04:24 -0400 | [diff] [blame] | 544 | struct saved *p; |
| 545 | |
| 546 | if (nd->flags & LOOKUP_RCU) { |
| 547 | p= kmalloc(MAXSYMLINKS * sizeof(struct saved), |
| 548 | GFP_ATOMIC); |
| 549 | if (unlikely(!p)) |
| 550 | return -ECHILD; |
| 551 | } else { |
| 552 | p= kmalloc(MAXSYMLINKS * sizeof(struct saved), |
Al Viro | 894bc8c | 2015-05-02 07:16:16 -0400 | [diff] [blame] | 553 | GFP_KERNEL); |
Al Viro | bc40aee | 2015-05-09 13:04:24 -0400 | [diff] [blame] | 554 | if (unlikely(!p)) |
| 555 | return -ENOMEM; |
| 556 | } |
Al Viro | 894bc8c | 2015-05-02 07:16:16 -0400 | [diff] [blame] | 557 | memcpy(p, nd->internal, sizeof(nd->internal)); |
| 558 | nd->stack = p; |
| 559 | return 0; |
| 560 | } |
| 561 | |
Eric W. Biederman | 397d425 | 2015-08-15 20:27:13 -0500 | [diff] [blame] | 562 | /** |
| 563 | * path_connected - Verify that a path->dentry is below path->mnt.mnt_root |
| 564 | * @path: nameidate to verify |
| 565 | * |
| 566 | * Rename can sometimes move a file or directory outside of a bind |
| 567 | * mount, path_connected allows those cases to be detected. |
| 568 | */ |
| 569 | static bool path_connected(const struct path *path) |
| 570 | { |
| 571 | struct vfsmount *mnt = path->mnt; |
| 572 | |
| 573 | /* Only bind mounts can have disconnected paths */ |
| 574 | if (mnt->mnt_root == mnt->mnt_sb->s_root) |
| 575 | return true; |
| 576 | |
| 577 | return is_subdir(path->dentry, mnt->mnt_root); |
| 578 | } |
| 579 | |
Al Viro | 894bc8c | 2015-05-02 07:16:16 -0400 | [diff] [blame] | 580 | static inline int nd_alloc_stack(struct nameidata *nd) |
| 581 | { |
Al Viro | da4e0be | 2015-05-03 20:52:15 -0400 | [diff] [blame] | 582 | if (likely(nd->depth != EMBEDDED_LEVELS)) |
Al Viro | 894bc8c | 2015-05-02 07:16:16 -0400 | [diff] [blame] | 583 | return 0; |
| 584 | if (likely(nd->stack != nd->internal)) |
| 585 | return 0; |
| 586 | return __nd_alloc_stack(nd); |
| 587 | } |
| 588 | |
Al Viro | 7973387 | 2015-05-09 12:55:43 -0400 | [diff] [blame] | 589 | static void drop_links(struct nameidata *nd) |
| 590 | { |
| 591 | int i = nd->depth; |
| 592 | while (i--) { |
| 593 | struct saved *last = nd->stack + i; |
Al Viro | fceef39 | 2015-12-29 15:58:39 -0500 | [diff] [blame] | 594 | do_delayed_call(&last->done); |
| 595 | clear_delayed_call(&last->done); |
Al Viro | 7973387 | 2015-05-09 12:55:43 -0400 | [diff] [blame] | 596 | } |
| 597 | } |
| 598 | |
| 599 | static void terminate_walk(struct nameidata *nd) |
| 600 | { |
| 601 | drop_links(nd); |
| 602 | if (!(nd->flags & LOOKUP_RCU)) { |
| 603 | int i; |
| 604 | path_put(&nd->path); |
| 605 | for (i = 0; i < nd->depth; i++) |
| 606 | path_put(&nd->stack[i].link); |
Al Viro | 102b8af | 2015-05-12 17:35:52 -0400 | [diff] [blame] | 607 | if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT)) { |
| 608 | path_put(&nd->root); |
| 609 | nd->root.mnt = NULL; |
| 610 | } |
Al Viro | 7973387 | 2015-05-09 12:55:43 -0400 | [diff] [blame] | 611 | } else { |
| 612 | nd->flags &= ~LOOKUP_RCU; |
| 613 | if (!(nd->flags & LOOKUP_ROOT)) |
| 614 | nd->root.mnt = NULL; |
| 615 | rcu_read_unlock(); |
| 616 | } |
| 617 | nd->depth = 0; |
| 618 | } |
| 619 | |
| 620 | /* path_put is needed afterwards regardless of success or failure */ |
| 621 | static bool legitimize_path(struct nameidata *nd, |
| 622 | struct path *path, unsigned seq) |
| 623 | { |
| 624 | int res = __legitimize_mnt(path->mnt, nd->m_seq); |
| 625 | if (unlikely(res)) { |
| 626 | if (res > 0) |
| 627 | path->mnt = NULL; |
| 628 | path->dentry = NULL; |
| 629 | return false; |
| 630 | } |
| 631 | if (unlikely(!lockref_get_not_dead(&path->dentry->d_lockref))) { |
| 632 | path->dentry = NULL; |
| 633 | return false; |
| 634 | } |
| 635 | return !read_seqcount_retry(&path->dentry->d_seq, seq); |
| 636 | } |
| 637 | |
| 638 | static bool legitimize_links(struct nameidata *nd) |
| 639 | { |
| 640 | int i; |
| 641 | for (i = 0; i < nd->depth; i++) { |
| 642 | struct saved *last = nd->stack + i; |
| 643 | if (unlikely(!legitimize_path(nd, &last->link, last->seq))) { |
| 644 | drop_links(nd); |
| 645 | nd->depth = i + 1; |
| 646 | return false; |
| 647 | } |
| 648 | } |
| 649 | return true; |
| 650 | } |
| 651 | |
Al Viro | 19660af | 2011-03-25 10:32:48 -0400 | [diff] [blame] | 652 | /* |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 653 | * Path walking has 2 modes, rcu-walk and ref-walk (see |
Al Viro | 19660af | 2011-03-25 10:32:48 -0400 | [diff] [blame] | 654 | * Documentation/filesystems/path-lookup.txt). In situations when we can't |
| 655 | * continue in RCU mode, we attempt to drop out of rcu-walk mode and grab |
Mike Marshall | 57e3715 | 2015-11-30 11:11:59 -0500 | [diff] [blame] | 656 | * normal reference counts on dentries and vfsmounts to transition to ref-walk |
Al Viro | 19660af | 2011-03-25 10:32:48 -0400 | [diff] [blame] | 657 | * mode. Refcounts are grabbed at the last known good point before rcu-walk |
| 658 | * got stuck, so ref-walk may continue from there. If this is not successful |
| 659 | * (eg. a seqcount has changed), then failure is returned and it's up to caller |
| 660 | * to restart the path walk from the beginning in ref-walk mode. |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 661 | */ |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 662 | |
| 663 | /** |
Al Viro | 19660af | 2011-03-25 10:32:48 -0400 | [diff] [blame] | 664 | * unlazy_walk - try to switch to ref-walk mode. |
| 665 | * @nd: nameidata pathwalk data |
| 666 | * @dentry: child of nd->path.dentry or NULL |
Al Viro | 6e9918b | 2015-05-05 09:26:05 -0400 | [diff] [blame] | 667 | * @seq: seq number to check dentry against |
Randy Dunlap | 3919162 | 2011-01-08 19:36:21 -0800 | [diff] [blame] | 668 | * Returns: 0 on success, -ECHILD on failure |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 669 | * |
Al Viro | 19660af | 2011-03-25 10:32:48 -0400 | [diff] [blame] | 670 | * unlazy_walk attempts to legitimize the current nd->path, nd->root and dentry |
| 671 | * for ref-walk mode. @dentry must be a path found by a do_lookup call on |
| 672 | * @nd or NULL. Must be called from rcu-walk context. |
Al Viro | 7973387 | 2015-05-09 12:55:43 -0400 | [diff] [blame] | 673 | * Nothing should touch nameidata between unlazy_walk() failure and |
| 674 | * terminate_walk(). |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 675 | */ |
Al Viro | 6e9918b | 2015-05-05 09:26:05 -0400 | [diff] [blame] | 676 | static int unlazy_walk(struct nameidata *nd, struct dentry *dentry, unsigned seq) |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 677 | { |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 678 | struct dentry *parent = nd->path.dentry; |
| 679 | |
| 680 | BUG_ON(!(nd->flags & LOOKUP_RCU)); |
Linus Torvalds | e5c832d | 2013-09-08 18:13:49 -0700 | [diff] [blame] | 681 | |
Linus Torvalds | e5c832d | 2013-09-08 18:13:49 -0700 | [diff] [blame] | 682 | nd->flags &= ~LOOKUP_RCU; |
Al Viro | 7973387 | 2015-05-09 12:55:43 -0400 | [diff] [blame] | 683 | if (unlikely(!legitimize_links(nd))) |
| 684 | goto out2; |
| 685 | if (unlikely(!legitimize_mnt(nd->path.mnt, nd->m_seq))) |
| 686 | goto out2; |
| 687 | if (unlikely(!lockref_get_not_dead(&parent->d_lockref))) |
| 688 | goto out1; |
Al Viro | 48a066e | 2013-09-29 22:06:07 -0400 | [diff] [blame] | 689 | |
Linus Torvalds | 1557008 | 2013-09-02 11:38:06 -0700 | [diff] [blame] | 690 | /* |
| 691 | * For a negative lookup, the lookup sequence point is the parents |
| 692 | * sequence point, and it only needs to revalidate the parent dentry. |
| 693 | * |
| 694 | * For a positive lookup, we need to move both the parent and the |
| 695 | * dentry from the RCU domain to be properly refcounted. And the |
| 696 | * sequence number in the dentry validates *both* dentry counters, |
| 697 | * since we checked the sequence number of the parent after we got |
| 698 | * the child sequence number. So we know the parent must still |
| 699 | * be valid if the child sequence number is still valid. |
| 700 | */ |
Al Viro | 19660af | 2011-03-25 10:32:48 -0400 | [diff] [blame] | 701 | if (!dentry) { |
Linus Torvalds | e5c832d | 2013-09-08 18:13:49 -0700 | [diff] [blame] | 702 | if (read_seqcount_retry(&parent->d_seq, nd->seq)) |
| 703 | goto out; |
Al Viro | 19660af | 2011-03-25 10:32:48 -0400 | [diff] [blame] | 704 | BUG_ON(nd->inode != parent->d_inode); |
| 705 | } else { |
Linus Torvalds | e5c832d | 2013-09-08 18:13:49 -0700 | [diff] [blame] | 706 | if (!lockref_get_not_dead(&dentry->d_lockref)) |
| 707 | goto out; |
Al Viro | 6e9918b | 2015-05-05 09:26:05 -0400 | [diff] [blame] | 708 | if (read_seqcount_retry(&dentry->d_seq, seq)) |
Linus Torvalds | e5c832d | 2013-09-08 18:13:49 -0700 | [diff] [blame] | 709 | goto drop_dentry; |
Al Viro | 19660af | 2011-03-25 10:32:48 -0400 | [diff] [blame] | 710 | } |
Linus Torvalds | e5c832d | 2013-09-08 18:13:49 -0700 | [diff] [blame] | 711 | |
| 712 | /* |
| 713 | * Sequence counts matched. Now make sure that the root is |
| 714 | * still valid and get it if required. |
| 715 | */ |
| 716 | if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT)) { |
Al Viro | 5a8d87e | 2015-05-12 00:10:18 -0400 | [diff] [blame] | 717 | if (unlikely(!legitimize_path(nd, &nd->root, nd->root_seq))) { |
| 718 | rcu_read_unlock(); |
| 719 | dput(dentry); |
| 720 | return -ECHILD; |
Al Viro | 7973387 | 2015-05-09 12:55:43 -0400 | [diff] [blame] | 721 | } |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 722 | } |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 723 | |
Al Viro | 8b61e74 | 2013-11-08 12:45:01 -0500 | [diff] [blame] | 724 | rcu_read_unlock(); |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 725 | return 0; |
Al Viro | 19660af | 2011-03-25 10:32:48 -0400 | [diff] [blame] | 726 | |
Linus Torvalds | e5c832d | 2013-09-08 18:13:49 -0700 | [diff] [blame] | 727 | drop_dentry: |
Al Viro | 8b61e74 | 2013-11-08 12:45:01 -0500 | [diff] [blame] | 728 | rcu_read_unlock(); |
Linus Torvalds | 1557008 | 2013-09-02 11:38:06 -0700 | [diff] [blame] | 729 | dput(dentry); |
Linus Torvalds | d0d2727 | 2013-09-10 12:17:49 -0700 | [diff] [blame] | 730 | goto drop_root_mnt; |
Al Viro | 7973387 | 2015-05-09 12:55:43 -0400 | [diff] [blame] | 731 | out2: |
| 732 | nd->path.mnt = NULL; |
| 733 | out1: |
| 734 | nd->path.dentry = NULL; |
Linus Torvalds | e5c832d | 2013-09-08 18:13:49 -0700 | [diff] [blame] | 735 | out: |
Al Viro | 8b61e74 | 2013-11-08 12:45:01 -0500 | [diff] [blame] | 736 | rcu_read_unlock(); |
Linus Torvalds | d0d2727 | 2013-09-10 12:17:49 -0700 | [diff] [blame] | 737 | drop_root_mnt: |
| 738 | if (!(nd->flags & LOOKUP_ROOT)) |
| 739 | nd->root.mnt = NULL; |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 740 | return -ECHILD; |
| 741 | } |
| 742 | |
Al Viro | 7973387 | 2015-05-09 12:55:43 -0400 | [diff] [blame] | 743 | static int unlazy_link(struct nameidata *nd, struct path *link, unsigned seq) |
| 744 | { |
| 745 | if (unlikely(!legitimize_path(nd, link, seq))) { |
| 746 | drop_links(nd); |
| 747 | nd->depth = 0; |
| 748 | nd->flags &= ~LOOKUP_RCU; |
| 749 | nd->path.mnt = NULL; |
| 750 | nd->path.dentry = NULL; |
| 751 | if (!(nd->flags & LOOKUP_ROOT)) |
| 752 | nd->root.mnt = NULL; |
| 753 | rcu_read_unlock(); |
| 754 | } else if (likely(unlazy_walk(nd, NULL, 0)) == 0) { |
| 755 | return 0; |
| 756 | } |
| 757 | path_put(link); |
| 758 | return -ECHILD; |
| 759 | } |
| 760 | |
Al Viro | 4ce16ef3 | 2012-06-10 16:10:59 -0400 | [diff] [blame] | 761 | static inline int d_revalidate(struct dentry *dentry, unsigned int flags) |
Nick Piggin | 34286d6 | 2011-01-07 17:49:57 +1100 | [diff] [blame] | 762 | { |
Al Viro | 4ce16ef3 | 2012-06-10 16:10:59 -0400 | [diff] [blame] | 763 | return dentry->d_op->d_revalidate(dentry, flags); |
Nick Piggin | 34286d6 | 2011-01-07 17:49:57 +1100 | [diff] [blame] | 764 | } |
| 765 | |
Al Viro | 9f1fafe | 2011-03-25 11:00:12 -0400 | [diff] [blame] | 766 | /** |
| 767 | * complete_walk - successful completion of path walk |
| 768 | * @nd: pointer nameidata |
Jeff Layton | 39159de | 2009-12-07 12:01:50 -0500 | [diff] [blame] | 769 | * |
Al Viro | 9f1fafe | 2011-03-25 11:00:12 -0400 | [diff] [blame] | 770 | * If we had been in RCU mode, drop out of it and legitimize nd->path. |
| 771 | * Revalidate the final result, unless we'd already done that during |
| 772 | * the path walk or the filesystem doesn't ask for it. Return 0 on |
| 773 | * success, -error on failure. In case of failure caller does not |
| 774 | * need to drop nd->path. |
Jeff Layton | 39159de | 2009-12-07 12:01:50 -0500 | [diff] [blame] | 775 | */ |
Al Viro | 9f1fafe | 2011-03-25 11:00:12 -0400 | [diff] [blame] | 776 | static int complete_walk(struct nameidata *nd) |
Jeff Layton | 39159de | 2009-12-07 12:01:50 -0500 | [diff] [blame] | 777 | { |
Al Viro | 16c2cd7 | 2011-02-22 15:50:10 -0500 | [diff] [blame] | 778 | struct dentry *dentry = nd->path.dentry; |
Jeff Layton | 39159de | 2009-12-07 12:01:50 -0500 | [diff] [blame] | 779 | int status; |
Jeff Layton | 39159de | 2009-12-07 12:01:50 -0500 | [diff] [blame] | 780 | |
Al Viro | 9f1fafe | 2011-03-25 11:00:12 -0400 | [diff] [blame] | 781 | if (nd->flags & LOOKUP_RCU) { |
Al Viro | 9f1fafe | 2011-03-25 11:00:12 -0400 | [diff] [blame] | 782 | if (!(nd->flags & LOOKUP_ROOT)) |
| 783 | nd->root.mnt = NULL; |
Al Viro | 6e9918b | 2015-05-05 09:26:05 -0400 | [diff] [blame] | 784 | if (unlikely(unlazy_walk(nd, NULL, 0))) |
Al Viro | 48a066e | 2013-09-29 22:06:07 -0400 | [diff] [blame] | 785 | return -ECHILD; |
Al Viro | 9f1fafe | 2011-03-25 11:00:12 -0400 | [diff] [blame] | 786 | } |
| 787 | |
Al Viro | 16c2cd7 | 2011-02-22 15:50:10 -0500 | [diff] [blame] | 788 | if (likely(!(nd->flags & LOOKUP_JUMPED))) |
Jeff Layton | 39159de | 2009-12-07 12:01:50 -0500 | [diff] [blame] | 789 | return 0; |
| 790 | |
Jeff Layton | ecf3d1f | 2013-02-20 11:19:05 -0500 | [diff] [blame] | 791 | if (likely(!(dentry->d_flags & DCACHE_OP_WEAK_REVALIDATE))) |
Al Viro | 16c2cd7 | 2011-02-22 15:50:10 -0500 | [diff] [blame] | 792 | return 0; |
| 793 | |
Jeff Layton | ecf3d1f | 2013-02-20 11:19:05 -0500 | [diff] [blame] | 794 | status = dentry->d_op->d_weak_revalidate(dentry, nd->flags); |
Jeff Layton | 39159de | 2009-12-07 12:01:50 -0500 | [diff] [blame] | 795 | if (status > 0) |
| 796 | return 0; |
| 797 | |
Al Viro | 16c2cd7 | 2011-02-22 15:50:10 -0500 | [diff] [blame] | 798 | if (!status) |
Jeff Layton | 39159de | 2009-12-07 12:01:50 -0500 | [diff] [blame] | 799 | status = -ESTALE; |
Al Viro | 16c2cd7 | 2011-02-22 15:50:10 -0500 | [diff] [blame] | 800 | |
Jeff Layton | 39159de | 2009-12-07 12:01:50 -0500 | [diff] [blame] | 801 | return status; |
| 802 | } |
| 803 | |
Al Viro | 18d8c86 | 2015-05-12 16:32:34 -0400 | [diff] [blame] | 804 | static void set_root(struct nameidata *nd) |
Al Viro | 2a73787 | 2009-04-07 11:49:53 -0400 | [diff] [blame] | 805 | { |
Al Viro | 7bd8837 | 2014-09-13 21:55:46 -0400 | [diff] [blame] | 806 | struct fs_struct *fs = current->fs; |
Nick Piggin | c28cc36 | 2011-01-07 17:49:53 +1100 | [diff] [blame] | 807 | |
Al Viro | 9e6697e | 2015-12-05 20:07:21 -0500 | [diff] [blame] | 808 | if (nd->flags & LOOKUP_RCU) { |
| 809 | unsigned seq; |
| 810 | |
| 811 | do { |
| 812 | seq = read_seqcount_begin(&fs->seq); |
| 813 | nd->root = fs->root; |
| 814 | nd->root_seq = __read_seqcount_begin(&nd->root.dentry->d_seq); |
| 815 | } while (read_seqcount_retry(&fs->seq, seq)); |
| 816 | } else { |
| 817 | get_fs_root(fs, &nd->root); |
| 818 | } |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 819 | } |
| 820 | |
Jan Blunck | 1d957f9 | 2008-02-14 19:34:35 -0800 | [diff] [blame] | 821 | static void path_put_conditional(struct path *path, struct nameidata *nd) |
Miklos Szeredi | 09dd17d | 2005-09-06 15:18:21 -0700 | [diff] [blame] | 822 | { |
| 823 | dput(path->dentry); |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 824 | if (path->mnt != nd->path.mnt) |
Miklos Szeredi | 09dd17d | 2005-09-06 15:18:21 -0700 | [diff] [blame] | 825 | mntput(path->mnt); |
| 826 | } |
| 827 | |
Nick Piggin | 7b9337a | 2011-01-14 08:42:43 +0000 | [diff] [blame] | 828 | static inline void path_to_nameidata(const struct path *path, |
| 829 | struct nameidata *nd) |
Miklos Szeredi | 09dd17d | 2005-09-06 15:18:21 -0700 | [diff] [blame] | 830 | { |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 831 | if (!(nd->flags & LOOKUP_RCU)) { |
| 832 | dput(nd->path.dentry); |
| 833 | if (nd->path.mnt != path->mnt) |
| 834 | mntput(nd->path.mnt); |
Huang Shijie | 9a22968 | 2010-04-02 17:37:13 +0800 | [diff] [blame] | 835 | } |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 836 | nd->path.mnt = path->mnt; |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 837 | nd->path.dentry = path->dentry; |
Miklos Szeredi | 09dd17d | 2005-09-06 15:18:21 -0700 | [diff] [blame] | 838 | } |
| 839 | |
Al Viro | 248fb5b | 2015-12-05 20:51:58 -0500 | [diff] [blame] | 840 | static int nd_jump_root(struct nameidata *nd) |
| 841 | { |
| 842 | if (nd->flags & LOOKUP_RCU) { |
| 843 | struct dentry *d; |
| 844 | nd->path = nd->root; |
| 845 | d = nd->path.dentry; |
| 846 | nd->inode = d->d_inode; |
| 847 | nd->seq = nd->root_seq; |
| 848 | if (unlikely(read_seqcount_retry(&d->d_seq, nd->seq))) |
| 849 | return -ECHILD; |
| 850 | } else { |
| 851 | path_put(&nd->path); |
| 852 | nd->path = nd->root; |
| 853 | path_get(&nd->path); |
| 854 | nd->inode = nd->path.dentry->d_inode; |
| 855 | } |
| 856 | nd->flags |= LOOKUP_JUMPED; |
| 857 | return 0; |
| 858 | } |
| 859 | |
Christoph Hellwig | b5fb63c1 | 2012-06-18 10:47:04 -0400 | [diff] [blame] | 860 | /* |
Al Viro | 6b25539 | 2015-11-17 10:20:54 -0500 | [diff] [blame] | 861 | * Helper to directly jump to a known parsed path from ->get_link, |
Christoph Hellwig | b5fb63c1 | 2012-06-18 10:47:04 -0400 | [diff] [blame] | 862 | * caller must have taken a reference to path beforehand. |
| 863 | */ |
Al Viro | 6e77137 | 2015-05-02 13:37:52 -0400 | [diff] [blame] | 864 | void nd_jump_link(struct path *path) |
Christoph Hellwig | b5fb63c1 | 2012-06-18 10:47:04 -0400 | [diff] [blame] | 865 | { |
Al Viro | 6e77137 | 2015-05-02 13:37:52 -0400 | [diff] [blame] | 866 | struct nameidata *nd = current->nameidata; |
Christoph Hellwig | b5fb63c1 | 2012-06-18 10:47:04 -0400 | [diff] [blame] | 867 | path_put(&nd->path); |
| 868 | |
| 869 | nd->path = *path; |
| 870 | nd->inode = nd->path.dentry->d_inode; |
| 871 | nd->flags |= LOOKUP_JUMPED; |
Christoph Hellwig | b5fb63c1 | 2012-06-18 10:47:04 -0400 | [diff] [blame] | 872 | } |
| 873 | |
Al Viro | b9ff442 | 2015-05-02 20:19:23 -0400 | [diff] [blame] | 874 | static inline void put_link(struct nameidata *nd) |
Al Viro | 574197e | 2011-03-14 22:20:34 -0400 | [diff] [blame] | 875 | { |
Al Viro | 21c3003 | 2015-05-03 21:06:24 -0400 | [diff] [blame] | 876 | struct saved *last = nd->stack + --nd->depth; |
Al Viro | fceef39 | 2015-12-29 15:58:39 -0500 | [diff] [blame] | 877 | do_delayed_call(&last->done); |
Al Viro | 6548fae | 2015-05-07 20:32:22 -0400 | [diff] [blame] | 878 | if (!(nd->flags & LOOKUP_RCU)) |
| 879 | path_put(&last->link); |
Al Viro | 574197e | 2011-03-14 22:20:34 -0400 | [diff] [blame] | 880 | } |
| 881 | |
Linus Torvalds | 561ec64 | 2012-10-26 10:05:07 -0700 | [diff] [blame] | 882 | int sysctl_protected_symlinks __read_mostly = 0; |
| 883 | int sysctl_protected_hardlinks __read_mostly = 0; |
Kees Cook | 800179c | 2012-07-25 17:29:07 -0700 | [diff] [blame] | 884 | |
| 885 | /** |
| 886 | * may_follow_link - Check symlink following for unsafe situations |
Randy Dunlap | 5585263 | 2012-08-18 17:39:25 -0700 | [diff] [blame] | 887 | * @nd: nameidata pathwalk data |
Kees Cook | 800179c | 2012-07-25 17:29:07 -0700 | [diff] [blame] | 888 | * |
| 889 | * In the case of the sysctl_protected_symlinks sysctl being enabled, |
| 890 | * CAP_DAC_OVERRIDE needs to be specifically ignored if the symlink is |
| 891 | * in a sticky world-writable directory. This is to protect privileged |
| 892 | * processes from failing races against path names that may change out |
| 893 | * from under them by way of other users creating malicious symlinks. |
| 894 | * It will permit symlinks to be followed only when outside a sticky |
| 895 | * world-writable directory, or when the uid of the symlink and follower |
| 896 | * match, or when the directory owner matches the symlink's owner. |
| 897 | * |
| 898 | * Returns 0 if following the symlink is allowed, -ve on error. |
| 899 | */ |
Al Viro | fec2fa2 | 2015-05-06 15:58:18 -0400 | [diff] [blame] | 900 | static inline int may_follow_link(struct nameidata *nd) |
Kees Cook | 800179c | 2012-07-25 17:29:07 -0700 | [diff] [blame] | 901 | { |
| 902 | const struct inode *inode; |
| 903 | const struct inode *parent; |
| 904 | |
| 905 | if (!sysctl_protected_symlinks) |
| 906 | return 0; |
| 907 | |
| 908 | /* Allowed if owner and follower match. */ |
Al Viro | fceef39 | 2015-12-29 15:58:39 -0500 | [diff] [blame] | 909 | inode = nd->link_inode; |
Eric W. Biederman | 81abe27 | 2012-08-03 09:38:08 -0700 | [diff] [blame] | 910 | if (uid_eq(current_cred()->fsuid, inode->i_uid)) |
Kees Cook | 800179c | 2012-07-25 17:29:07 -0700 | [diff] [blame] | 911 | return 0; |
| 912 | |
| 913 | /* Allowed if parent directory not sticky and world-writable. */ |
Al Viro | aa65fa3 | 2015-08-04 23:23:50 -0400 | [diff] [blame] | 914 | parent = nd->inode; |
Kees Cook | 800179c | 2012-07-25 17:29:07 -0700 | [diff] [blame] | 915 | if ((parent->i_mode & (S_ISVTX|S_IWOTH)) != (S_ISVTX|S_IWOTH)) |
| 916 | return 0; |
| 917 | |
| 918 | /* Allowed if parent directory and link owner match. */ |
Eric W. Biederman | 81abe27 | 2012-08-03 09:38:08 -0700 | [diff] [blame] | 919 | if (uid_eq(parent->i_uid, inode->i_uid)) |
Kees Cook | 800179c | 2012-07-25 17:29:07 -0700 | [diff] [blame] | 920 | return 0; |
| 921 | |
Al Viro | 31956502 | 2015-05-07 20:37:40 -0400 | [diff] [blame] | 922 | if (nd->flags & LOOKUP_RCU) |
| 923 | return -ECHILD; |
| 924 | |
Al Viro | 1cf2665 | 2015-05-06 16:01:56 -0400 | [diff] [blame] | 925 | audit_log_link_denied("follow_link", &nd->stack[0].link); |
Kees Cook | 800179c | 2012-07-25 17:29:07 -0700 | [diff] [blame] | 926 | return -EACCES; |
| 927 | } |
| 928 | |
| 929 | /** |
| 930 | * safe_hardlink_source - Check for safe hardlink conditions |
| 931 | * @inode: the source inode to hardlink from |
| 932 | * |
| 933 | * Return false if at least one of the following conditions: |
| 934 | * - inode is not a regular file |
| 935 | * - inode is setuid |
| 936 | * - inode is setgid and group-exec |
| 937 | * - access failure for read and write |
| 938 | * |
| 939 | * Otherwise returns true. |
| 940 | */ |
| 941 | static bool safe_hardlink_source(struct inode *inode) |
| 942 | { |
| 943 | umode_t mode = inode->i_mode; |
| 944 | |
| 945 | /* Special files should not get pinned to the filesystem. */ |
| 946 | if (!S_ISREG(mode)) |
| 947 | return false; |
| 948 | |
| 949 | /* Setuid files should not get pinned to the filesystem. */ |
| 950 | if (mode & S_ISUID) |
| 951 | return false; |
| 952 | |
| 953 | /* Executable setgid files should not get pinned to the filesystem. */ |
| 954 | if ((mode & (S_ISGID | S_IXGRP)) == (S_ISGID | S_IXGRP)) |
| 955 | return false; |
| 956 | |
| 957 | /* Hardlinking to unreadable or unwritable sources is dangerous. */ |
| 958 | if (inode_permission(inode, MAY_READ | MAY_WRITE)) |
| 959 | return false; |
| 960 | |
| 961 | return true; |
| 962 | } |
| 963 | |
| 964 | /** |
| 965 | * may_linkat - Check permissions for creating a hardlink |
| 966 | * @link: the source to hardlink from |
| 967 | * |
| 968 | * Block hardlink when all of: |
| 969 | * - sysctl_protected_hardlinks enabled |
| 970 | * - fsuid does not match inode |
| 971 | * - hardlink source is unsafe (see safe_hardlink_source() above) |
Dirk Steinmetz | f2ca379 | 2015-10-20 16:09:19 +0200 | [diff] [blame] | 972 | * - not CAP_FOWNER in a namespace with the inode owner uid mapped |
Kees Cook | 800179c | 2012-07-25 17:29:07 -0700 | [diff] [blame] | 973 | * |
| 974 | * Returns 0 if successful, -ve on error. |
| 975 | */ |
| 976 | static int may_linkat(struct path *link) |
| 977 | { |
Kees Cook | 800179c | 2012-07-25 17:29:07 -0700 | [diff] [blame] | 978 | struct inode *inode; |
| 979 | |
| 980 | if (!sysctl_protected_hardlinks) |
| 981 | return 0; |
| 982 | |
Kees Cook | 800179c | 2012-07-25 17:29:07 -0700 | [diff] [blame] | 983 | inode = link->dentry->d_inode; |
| 984 | |
| 985 | /* Source inode owner (or CAP_FOWNER) can hardlink all they like, |
| 986 | * otherwise, it must be a safe source. |
| 987 | */ |
Dirk Steinmetz | f2ca379 | 2015-10-20 16:09:19 +0200 | [diff] [blame] | 988 | if (inode_owner_or_capable(inode) || safe_hardlink_source(inode)) |
Kees Cook | 800179c | 2012-07-25 17:29:07 -0700 | [diff] [blame] | 989 | return 0; |
| 990 | |
Kees Cook | a51d9ea | 2012-07-25 17:29:08 -0700 | [diff] [blame] | 991 | audit_log_link_denied("linkat", link); |
Kees Cook | 800179c | 2012-07-25 17:29:07 -0700 | [diff] [blame] | 992 | return -EPERM; |
| 993 | } |
| 994 | |
Al Viro | 3b2e7f7 | 2015-04-19 00:53:50 -0400 | [diff] [blame] | 995 | static __always_inline |
| 996 | const char *get_link(struct nameidata *nd) |
Ian Kent | 051d381 | 2006-03-27 01:14:53 -0800 | [diff] [blame] | 997 | { |
Al Viro | ab10492 | 2015-05-10 11:50:01 -0400 | [diff] [blame] | 998 | struct saved *last = nd->stack + nd->depth - 1; |
Al Viro | 1cf2665 | 2015-05-06 16:01:56 -0400 | [diff] [blame] | 999 | struct dentry *dentry = last->link.dentry; |
Al Viro | fceef39 | 2015-12-29 15:58:39 -0500 | [diff] [blame] | 1000 | struct inode *inode = nd->link_inode; |
Al Viro | 6d7b5aa | 2012-06-10 04:15:17 -0400 | [diff] [blame] | 1001 | int error; |
Al Viro | 0a959df | 2015-04-18 18:23:41 -0400 | [diff] [blame] | 1002 | const char *res; |
Ian Kent | 051d381 | 2006-03-27 01:14:53 -0800 | [diff] [blame] | 1003 | |
NeilBrown | 8fa9dd2 | 2015-03-23 13:37:40 +1100 | [diff] [blame] | 1004 | if (!(nd->flags & LOOKUP_RCU)) { |
| 1005 | touch_atime(&last->link); |
| 1006 | cond_resched(); |
| 1007 | } else if (atime_needs_update(&last->link, inode)) { |
| 1008 | if (unlikely(unlazy_walk(nd, NULL, 0))) |
| 1009 | return ERR_PTR(-ECHILD); |
| 1010 | touch_atime(&last->link); |
| 1011 | } |
| 1012 | |
NeilBrown | bda0be7 | 2015-03-23 13:37:39 +1100 | [diff] [blame] | 1013 | error = security_inode_follow_link(dentry, inode, |
| 1014 | nd->flags & LOOKUP_RCU); |
| 1015 | if (unlikely(error)) |
Al Viro | 6920a44 | 2015-05-10 10:43:46 -0400 | [diff] [blame] | 1016 | return ERR_PTR(error); |
Al Viro | 36f3b4f | 2011-02-22 21:24:38 -0500 | [diff] [blame] | 1017 | |
Al Viro | 86acdca1 | 2009-12-22 23:45:11 -0500 | [diff] [blame] | 1018 | nd->last_type = LAST_BIND; |
Al Viro | d4dee48 | 2015-04-30 20:08:02 -0400 | [diff] [blame] | 1019 | res = inode->i_link; |
| 1020 | if (!res) { |
Al Viro | fceef39 | 2015-12-29 15:58:39 -0500 | [diff] [blame] | 1021 | const char * (*get)(struct dentry *, struct inode *, |
| 1022 | struct delayed_call *); |
| 1023 | get = inode->i_op->get_link; |
Al Viro | 8c1b456 | 2015-05-09 18:15:21 -0400 | [diff] [blame] | 1024 | if (nd->flags & LOOKUP_RCU) { |
Al Viro | fceef39 | 2015-12-29 15:58:39 -0500 | [diff] [blame] | 1025 | res = get(NULL, inode, &last->done); |
Al Viro | 6b25539 | 2015-11-17 10:20:54 -0500 | [diff] [blame] | 1026 | if (res == ERR_PTR(-ECHILD)) { |
| 1027 | if (unlikely(unlazy_walk(nd, NULL, 0))) |
| 1028 | return ERR_PTR(-ECHILD); |
Al Viro | fceef39 | 2015-12-29 15:58:39 -0500 | [diff] [blame] | 1029 | res = get(dentry, inode, &last->done); |
Al Viro | 6b25539 | 2015-11-17 10:20:54 -0500 | [diff] [blame] | 1030 | } |
| 1031 | } else { |
Al Viro | fceef39 | 2015-12-29 15:58:39 -0500 | [diff] [blame] | 1032 | res = get(dentry, inode, &last->done); |
Al Viro | 8c1b456 | 2015-05-09 18:15:21 -0400 | [diff] [blame] | 1033 | } |
Al Viro | fceef39 | 2015-12-29 15:58:39 -0500 | [diff] [blame] | 1034 | if (IS_ERR_OR_NULL(res)) |
Al Viro | fab51e8 | 2015-05-10 11:01:00 -0400 | [diff] [blame] | 1035 | return res; |
Ian Kent | 051d381 | 2006-03-27 01:14:53 -0800 | [diff] [blame] | 1036 | } |
Al Viro | fab51e8 | 2015-05-10 11:01:00 -0400 | [diff] [blame] | 1037 | if (*res == '/') { |
Al Viro | 9e6697e | 2015-12-05 20:07:21 -0500 | [diff] [blame] | 1038 | if (!nd->root.mnt) |
| 1039 | set_root(nd); |
Al Viro | 248fb5b | 2015-12-05 20:51:58 -0500 | [diff] [blame] | 1040 | if (unlikely(nd_jump_root(nd))) |
| 1041 | return ERR_PTR(-ECHILD); |
Al Viro | fab51e8 | 2015-05-10 11:01:00 -0400 | [diff] [blame] | 1042 | while (unlikely(*++res == '/')) |
| 1043 | ; |
| 1044 | } |
| 1045 | if (!*res) |
| 1046 | res = NULL; |
Al Viro | 0a959df | 2015-04-18 18:23:41 -0400 | [diff] [blame] | 1047 | return res; |
| 1048 | } |
Al Viro | 6d7b5aa | 2012-06-10 04:15:17 -0400 | [diff] [blame] | 1049 | |
David Howells | f015f126 | 2012-06-25 12:55:28 +0100 | [diff] [blame] | 1050 | /* |
| 1051 | * follow_up - Find the mountpoint of path's vfsmount |
| 1052 | * |
| 1053 | * Given a path, find the mountpoint of its source file system. |
| 1054 | * Replace @path with the path of the mountpoint in the parent mount. |
| 1055 | * Up is towards /. |
| 1056 | * |
| 1057 | * Return 1 if we went up a level and 0 if we were already at the |
| 1058 | * root. |
| 1059 | */ |
Al Viro | bab77eb | 2009-04-18 03:26:48 -0400 | [diff] [blame] | 1060 | int follow_up(struct path *path) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1061 | { |
Al Viro | 0714a53 | 2011-11-24 22:19:58 -0500 | [diff] [blame] | 1062 | struct mount *mnt = real_mount(path->mnt); |
| 1063 | struct mount *parent; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1064 | struct dentry *mountpoint; |
Nick Piggin | 99b7db7 | 2010-08-18 04:37:39 +1000 | [diff] [blame] | 1065 | |
Al Viro | 48a066e | 2013-09-29 22:06:07 -0400 | [diff] [blame] | 1066 | read_seqlock_excl(&mount_lock); |
Al Viro | 0714a53 | 2011-11-24 22:19:58 -0500 | [diff] [blame] | 1067 | parent = mnt->mnt_parent; |
Al Viro | 3c0a616 | 2012-07-18 17:32:50 +0400 | [diff] [blame] | 1068 | if (parent == mnt) { |
Al Viro | 48a066e | 2013-09-29 22:06:07 -0400 | [diff] [blame] | 1069 | read_sequnlock_excl(&mount_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1070 | return 0; |
| 1071 | } |
Al Viro | 0714a53 | 2011-11-24 22:19:58 -0500 | [diff] [blame] | 1072 | mntget(&parent->mnt); |
Al Viro | a73324d | 2011-11-24 22:25:07 -0500 | [diff] [blame] | 1073 | mountpoint = dget(mnt->mnt_mountpoint); |
Al Viro | 48a066e | 2013-09-29 22:06:07 -0400 | [diff] [blame] | 1074 | read_sequnlock_excl(&mount_lock); |
Al Viro | bab77eb | 2009-04-18 03:26:48 -0400 | [diff] [blame] | 1075 | dput(path->dentry); |
| 1076 | path->dentry = mountpoint; |
| 1077 | mntput(path->mnt); |
Al Viro | 0714a53 | 2011-11-24 22:19:58 -0500 | [diff] [blame] | 1078 | path->mnt = &parent->mnt; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1079 | return 1; |
| 1080 | } |
Al Viro | 4d35950 | 2014-03-14 12:20:17 -0400 | [diff] [blame] | 1081 | EXPORT_SYMBOL(follow_up); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1082 | |
Nick Piggin | b5c84bf | 2011-01-07 17:49:38 +1100 | [diff] [blame] | 1083 | /* |
David Howells | 9875cf8 | 2011-01-14 18:45:21 +0000 | [diff] [blame] | 1084 | * Perform an automount |
| 1085 | * - return -EISDIR to tell follow_managed() to stop and return the path we |
| 1086 | * were called with. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1087 | */ |
NeilBrown | 756daf2 | 2015-03-23 13:37:38 +1100 | [diff] [blame] | 1088 | static int follow_automount(struct path *path, struct nameidata *nd, |
David Howells | 9875cf8 | 2011-01-14 18:45:21 +0000 | [diff] [blame] | 1089 | bool *need_mntput) |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1090 | { |
David Howells | 9875cf8 | 2011-01-14 18:45:21 +0000 | [diff] [blame] | 1091 | struct vfsmount *mnt; |
David Howells | ea5b778 | 2011-01-14 19:10:03 +0000 | [diff] [blame] | 1092 | int err; |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1093 | |
David Howells | 9875cf8 | 2011-01-14 18:45:21 +0000 | [diff] [blame] | 1094 | if (!path->dentry->d_op || !path->dentry->d_op->d_automount) |
| 1095 | return -EREMOTE; |
Al Viro | 463ffb2 | 2005-06-06 13:36:05 -0700 | [diff] [blame] | 1096 | |
Miklos Szeredi | 0ec26fd | 2011-09-05 18:06:26 +0200 | [diff] [blame] | 1097 | /* We don't want to mount if someone's just doing a stat - |
| 1098 | * unless they're stat'ing a directory and appended a '/' to |
| 1099 | * the name. |
| 1100 | * |
| 1101 | * We do, however, want to mount if someone wants to open or |
| 1102 | * create a file of any type under the mountpoint, wants to |
| 1103 | * traverse through the mountpoint or wants to open the |
| 1104 | * mounted directory. Also, autofs may mark negative dentries |
| 1105 | * as being automount points. These will need the attentions |
| 1106 | * of the daemon to instantiate them before they can be used. |
David Howells | 9875cf8 | 2011-01-14 18:45:21 +0000 | [diff] [blame] | 1107 | */ |
NeilBrown | 756daf2 | 2015-03-23 13:37:38 +1100 | [diff] [blame] | 1108 | if (!(nd->flags & (LOOKUP_PARENT | LOOKUP_DIRECTORY | |
| 1109 | LOOKUP_OPEN | LOOKUP_CREATE | LOOKUP_AUTOMOUNT)) && |
Miklos Szeredi | 0ec26fd | 2011-09-05 18:06:26 +0200 | [diff] [blame] | 1110 | path->dentry->d_inode) |
| 1111 | return -EISDIR; |
| 1112 | |
NeilBrown | 756daf2 | 2015-03-23 13:37:38 +1100 | [diff] [blame] | 1113 | nd->total_link_count++; |
| 1114 | if (nd->total_link_count >= 40) |
David Howells | 9875cf8 | 2011-01-14 18:45:21 +0000 | [diff] [blame] | 1115 | return -ELOOP; |
| 1116 | |
| 1117 | mnt = path->dentry->d_op->d_automount(path); |
| 1118 | if (IS_ERR(mnt)) { |
| 1119 | /* |
| 1120 | * The filesystem is allowed to return -EISDIR here to indicate |
| 1121 | * it doesn't want to automount. For instance, autofs would do |
| 1122 | * this so that its userspace daemon can mount on this dentry. |
| 1123 | * |
| 1124 | * However, we can only permit this if it's a terminal point in |
| 1125 | * the path being looked up; if it wasn't then the remainder of |
| 1126 | * the path is inaccessible and we should say so. |
| 1127 | */ |
NeilBrown | 756daf2 | 2015-03-23 13:37:38 +1100 | [diff] [blame] | 1128 | if (PTR_ERR(mnt) == -EISDIR && (nd->flags & LOOKUP_PARENT)) |
David Howells | 9875cf8 | 2011-01-14 18:45:21 +0000 | [diff] [blame] | 1129 | return -EREMOTE; |
| 1130 | return PTR_ERR(mnt); |
| 1131 | } |
David Howells | ea5b778 | 2011-01-14 19:10:03 +0000 | [diff] [blame] | 1132 | |
David Howells | 9875cf8 | 2011-01-14 18:45:21 +0000 | [diff] [blame] | 1133 | if (!mnt) /* mount collision */ |
| 1134 | return 0; |
| 1135 | |
Al Viro | 8aef188 | 2011-06-16 15:10:06 +0100 | [diff] [blame] | 1136 | if (!*need_mntput) { |
| 1137 | /* lock_mount() may release path->mnt on error */ |
| 1138 | mntget(path->mnt); |
| 1139 | *need_mntput = true; |
| 1140 | } |
Al Viro | 19a167a | 2011-01-17 01:35:23 -0500 | [diff] [blame] | 1141 | err = finish_automount(mnt, path); |
David Howells | ea5b778 | 2011-01-14 19:10:03 +0000 | [diff] [blame] | 1142 | |
David Howells | ea5b778 | 2011-01-14 19:10:03 +0000 | [diff] [blame] | 1143 | switch (err) { |
| 1144 | case -EBUSY: |
| 1145 | /* Someone else made a mount here whilst we were busy */ |
Al Viro | 19a167a | 2011-01-17 01:35:23 -0500 | [diff] [blame] | 1146 | return 0; |
David Howells | ea5b778 | 2011-01-14 19:10:03 +0000 | [diff] [blame] | 1147 | case 0: |
Al Viro | 8aef188 | 2011-06-16 15:10:06 +0100 | [diff] [blame] | 1148 | path_put(path); |
David Howells | ea5b778 | 2011-01-14 19:10:03 +0000 | [diff] [blame] | 1149 | path->mnt = mnt; |
| 1150 | path->dentry = dget(mnt->mnt_root); |
David Howells | ea5b778 | 2011-01-14 19:10:03 +0000 | [diff] [blame] | 1151 | return 0; |
Al Viro | 19a167a | 2011-01-17 01:35:23 -0500 | [diff] [blame] | 1152 | default: |
| 1153 | return err; |
David Howells | ea5b778 | 2011-01-14 19:10:03 +0000 | [diff] [blame] | 1154 | } |
Al Viro | 19a167a | 2011-01-17 01:35:23 -0500 | [diff] [blame] | 1155 | |
David Howells | 9875cf8 | 2011-01-14 18:45:21 +0000 | [diff] [blame] | 1156 | } |
| 1157 | |
| 1158 | /* |
| 1159 | * Handle a dentry that is managed in some way. |
David Howells | cc53ce5 | 2011-01-14 18:45:26 +0000 | [diff] [blame] | 1160 | * - Flagged for transit management (autofs) |
David Howells | 9875cf8 | 2011-01-14 18:45:21 +0000 | [diff] [blame] | 1161 | * - Flagged as mountpoint |
| 1162 | * - Flagged as automount point |
| 1163 | * |
| 1164 | * This may only be called in refwalk mode. |
| 1165 | * |
| 1166 | * Serialization is taken care of in namespace.c |
| 1167 | */ |
NeilBrown | 756daf2 | 2015-03-23 13:37:38 +1100 | [diff] [blame] | 1168 | static int follow_managed(struct path *path, struct nameidata *nd) |
David Howells | 9875cf8 | 2011-01-14 18:45:21 +0000 | [diff] [blame] | 1169 | { |
Al Viro | 8aef188 | 2011-06-16 15:10:06 +0100 | [diff] [blame] | 1170 | struct vfsmount *mnt = path->mnt; /* held by caller, must be left alone */ |
David Howells | 9875cf8 | 2011-01-14 18:45:21 +0000 | [diff] [blame] | 1171 | unsigned managed; |
| 1172 | bool need_mntput = false; |
Al Viro | 8aef188 | 2011-06-16 15:10:06 +0100 | [diff] [blame] | 1173 | int ret = 0; |
David Howells | 9875cf8 | 2011-01-14 18:45:21 +0000 | [diff] [blame] | 1174 | |
| 1175 | /* Given that we're not holding a lock here, we retain the value in a |
| 1176 | * local variable for each dentry as we look at it so that we don't see |
| 1177 | * the components of that value change under us */ |
| 1178 | while (managed = ACCESS_ONCE(path->dentry->d_flags), |
| 1179 | managed &= DCACHE_MANAGED_DENTRY, |
| 1180 | unlikely(managed != 0)) { |
David Howells | cc53ce5 | 2011-01-14 18:45:26 +0000 | [diff] [blame] | 1181 | /* Allow the filesystem to manage the transit without i_mutex |
| 1182 | * being held. */ |
| 1183 | if (managed & DCACHE_MANAGE_TRANSIT) { |
| 1184 | BUG_ON(!path->dentry->d_op); |
| 1185 | BUG_ON(!path->dentry->d_op->d_manage); |
Al Viro | 1aed3e4 | 2011-03-18 09:09:02 -0400 | [diff] [blame] | 1186 | ret = path->dentry->d_op->d_manage(path->dentry, false); |
David Howells | cc53ce5 | 2011-01-14 18:45:26 +0000 | [diff] [blame] | 1187 | if (ret < 0) |
Al Viro | 8aef188 | 2011-06-16 15:10:06 +0100 | [diff] [blame] | 1188 | break; |
David Howells | cc53ce5 | 2011-01-14 18:45:26 +0000 | [diff] [blame] | 1189 | } |
| 1190 | |
David Howells | 9875cf8 | 2011-01-14 18:45:21 +0000 | [diff] [blame] | 1191 | /* Transit to a mounted filesystem. */ |
| 1192 | if (managed & DCACHE_MOUNTED) { |
| 1193 | struct vfsmount *mounted = lookup_mnt(path); |
| 1194 | if (mounted) { |
| 1195 | dput(path->dentry); |
| 1196 | if (need_mntput) |
| 1197 | mntput(path->mnt); |
| 1198 | path->mnt = mounted; |
| 1199 | path->dentry = dget(mounted->mnt_root); |
| 1200 | need_mntput = true; |
| 1201 | continue; |
| 1202 | } |
| 1203 | |
| 1204 | /* Something is mounted on this dentry in another |
| 1205 | * namespace and/or whatever was mounted there in this |
Al Viro | 48a066e | 2013-09-29 22:06:07 -0400 | [diff] [blame] | 1206 | * namespace got unmounted before lookup_mnt() could |
| 1207 | * get it */ |
David Howells | 9875cf8 | 2011-01-14 18:45:21 +0000 | [diff] [blame] | 1208 | } |
| 1209 | |
| 1210 | /* Handle an automount point */ |
| 1211 | if (managed & DCACHE_NEED_AUTOMOUNT) { |
NeilBrown | 756daf2 | 2015-03-23 13:37:38 +1100 | [diff] [blame] | 1212 | ret = follow_automount(path, nd, &need_mntput); |
David Howells | 9875cf8 | 2011-01-14 18:45:21 +0000 | [diff] [blame] | 1213 | if (ret < 0) |
Al Viro | 8aef188 | 2011-06-16 15:10:06 +0100 | [diff] [blame] | 1214 | break; |
David Howells | 9875cf8 | 2011-01-14 18:45:21 +0000 | [diff] [blame] | 1215 | continue; |
| 1216 | } |
| 1217 | |
| 1218 | /* We didn't change the current path point */ |
| 1219 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1220 | } |
Al Viro | 8aef188 | 2011-06-16 15:10:06 +0100 | [diff] [blame] | 1221 | |
| 1222 | if (need_mntput && path->mnt == mnt) |
| 1223 | mntput(path->mnt); |
Al Viro | e9742b5 | 2016-03-05 22:04:59 -0500 | [diff] [blame] | 1224 | if (ret == -EISDIR || !ret) |
| 1225 | ret = 1; |
Al Viro | 8402752 | 2015-04-22 10:30:08 -0400 | [diff] [blame] | 1226 | if (need_mntput) |
| 1227 | nd->flags |= LOOKUP_JUMPED; |
| 1228 | if (unlikely(ret < 0)) |
| 1229 | path_put_conditional(path, nd); |
| 1230 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1231 | } |
| 1232 | |
David Howells | cc53ce5 | 2011-01-14 18:45:26 +0000 | [diff] [blame] | 1233 | int follow_down_one(struct path *path) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1234 | { |
| 1235 | struct vfsmount *mounted; |
| 1236 | |
Al Viro | 1c755af | 2009-04-18 14:06:57 -0400 | [diff] [blame] | 1237 | mounted = lookup_mnt(path); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1238 | if (mounted) { |
Al Viro | 9393bd0 | 2009-04-18 13:58:15 -0400 | [diff] [blame] | 1239 | dput(path->dentry); |
| 1240 | mntput(path->mnt); |
| 1241 | path->mnt = mounted; |
| 1242 | path->dentry = dget(mounted->mnt_root); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1243 | return 1; |
| 1244 | } |
| 1245 | return 0; |
| 1246 | } |
Al Viro | 4d35950 | 2014-03-14 12:20:17 -0400 | [diff] [blame] | 1247 | EXPORT_SYMBOL(follow_down_one); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1248 | |
NeilBrown | b8faf03 | 2014-08-04 17:06:29 +1000 | [diff] [blame] | 1249 | static inline int managed_dentry_rcu(struct dentry *dentry) |
Ian Kent | 62a7375 | 2011-03-25 01:51:02 +0800 | [diff] [blame] | 1250 | { |
NeilBrown | b8faf03 | 2014-08-04 17:06:29 +1000 | [diff] [blame] | 1251 | return (dentry->d_flags & DCACHE_MANAGE_TRANSIT) ? |
| 1252 | dentry->d_op->d_manage(dentry, true) : 0; |
Ian Kent | 62a7375 | 2011-03-25 01:51:02 +0800 | [diff] [blame] | 1253 | } |
| 1254 | |
David Howells | 9875cf8 | 2011-01-14 18:45:21 +0000 | [diff] [blame] | 1255 | /* |
Al Viro | 287548e | 2011-05-27 06:50:06 -0400 | [diff] [blame] | 1256 | * Try to skip to top of mountpoint pile in rcuwalk mode. Fail if |
| 1257 | * we meet a managed dentry that would need blocking. |
David Howells | 9875cf8 | 2011-01-14 18:45:21 +0000 | [diff] [blame] | 1258 | */ |
| 1259 | static bool __follow_mount_rcu(struct nameidata *nd, struct path *path, |
Al Viro | 254cf58 | 2015-05-05 09:40:46 -0400 | [diff] [blame] | 1260 | struct inode **inode, unsigned *seqp) |
David Howells | 9875cf8 | 2011-01-14 18:45:21 +0000 | [diff] [blame] | 1261 | { |
Ian Kent | 62a7375 | 2011-03-25 01:51:02 +0800 | [diff] [blame] | 1262 | for (;;) { |
Al Viro | c710536 | 2011-11-24 18:22:03 -0500 | [diff] [blame] | 1263 | struct mount *mounted; |
Ian Kent | 62a7375 | 2011-03-25 01:51:02 +0800 | [diff] [blame] | 1264 | /* |
| 1265 | * Don't forget we might have a non-mountpoint managed dentry |
| 1266 | * that wants to block transit. |
| 1267 | */ |
NeilBrown | b8faf03 | 2014-08-04 17:06:29 +1000 | [diff] [blame] | 1268 | switch (managed_dentry_rcu(path->dentry)) { |
| 1269 | case -ECHILD: |
| 1270 | default: |
David Howells | ab90911 | 2011-01-14 18:46:51 +0000 | [diff] [blame] | 1271 | return false; |
NeilBrown | b8faf03 | 2014-08-04 17:06:29 +1000 | [diff] [blame] | 1272 | case -EISDIR: |
| 1273 | return true; |
| 1274 | case 0: |
| 1275 | break; |
| 1276 | } |
Ian Kent | 62a7375 | 2011-03-25 01:51:02 +0800 | [diff] [blame] | 1277 | |
| 1278 | if (!d_mountpoint(path->dentry)) |
NeilBrown | b8faf03 | 2014-08-04 17:06:29 +1000 | [diff] [blame] | 1279 | return !(path->dentry->d_flags & DCACHE_NEED_AUTOMOUNT); |
Ian Kent | 62a7375 | 2011-03-25 01:51:02 +0800 | [diff] [blame] | 1280 | |
Al Viro | 474279d | 2013-10-01 16:11:26 -0400 | [diff] [blame] | 1281 | mounted = __lookup_mnt(path->mnt, path->dentry); |
David Howells | 9875cf8 | 2011-01-14 18:45:21 +0000 | [diff] [blame] | 1282 | if (!mounted) |
| 1283 | break; |
Al Viro | c710536 | 2011-11-24 18:22:03 -0500 | [diff] [blame] | 1284 | path->mnt = &mounted->mnt; |
| 1285 | path->dentry = mounted->mnt.mnt_root; |
Al Viro | a3fbbde | 2011-11-07 21:21:26 +0000 | [diff] [blame] | 1286 | nd->flags |= LOOKUP_JUMPED; |
Al Viro | 254cf58 | 2015-05-05 09:40:46 -0400 | [diff] [blame] | 1287 | *seqp = read_seqcount_begin(&path->dentry->d_seq); |
Linus Torvalds | 5943026 | 2011-07-18 15:43:29 -0700 | [diff] [blame] | 1288 | /* |
| 1289 | * Update the inode too. We don't need to re-check the |
| 1290 | * dentry sequence number here after this d_inode read, |
| 1291 | * because a mount-point is always pinned. |
| 1292 | */ |
| 1293 | *inode = path->dentry->d_inode; |
David Howells | 9875cf8 | 2011-01-14 18:45:21 +0000 | [diff] [blame] | 1294 | } |
Al Viro | f5be3e2912 | 2014-09-13 21:50:45 -0400 | [diff] [blame] | 1295 | return !read_seqretry(&mount_lock, nd->m_seq) && |
NeilBrown | b8faf03 | 2014-08-04 17:06:29 +1000 | [diff] [blame] | 1296 | !(path->dentry->d_flags & DCACHE_NEED_AUTOMOUNT); |
Al Viro | 287548e | 2011-05-27 06:50:06 -0400 | [diff] [blame] | 1297 | } |
| 1298 | |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1299 | static int follow_dotdot_rcu(struct nameidata *nd) |
| 1300 | { |
Al Viro | 4023bfc | 2014-09-13 21:59:43 -0400 | [diff] [blame] | 1301 | struct inode *inode = nd->inode; |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1302 | |
David Howells | 9875cf8 | 2011-01-14 18:45:21 +0000 | [diff] [blame] | 1303 | while (1) { |
Al Viro | aed434a | 2015-05-12 12:22:47 -0400 | [diff] [blame] | 1304 | if (path_equal(&nd->path, &nd->root)) |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1305 | break; |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1306 | if (nd->path.dentry != nd->path.mnt->mnt_root) { |
| 1307 | struct dentry *old = nd->path.dentry; |
| 1308 | struct dentry *parent = old->d_parent; |
| 1309 | unsigned seq; |
| 1310 | |
Al Viro | 4023bfc | 2014-09-13 21:59:43 -0400 | [diff] [blame] | 1311 | inode = parent->d_inode; |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1312 | seq = read_seqcount_begin(&parent->d_seq); |
Al Viro | aed434a | 2015-05-12 12:22:47 -0400 | [diff] [blame] | 1313 | if (unlikely(read_seqcount_retry(&old->d_seq, nd->seq))) |
| 1314 | return -ECHILD; |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1315 | nd->path.dentry = parent; |
| 1316 | nd->seq = seq; |
Eric W. Biederman | 397d425 | 2015-08-15 20:27:13 -0500 | [diff] [blame] | 1317 | if (unlikely(!path_connected(&nd->path))) |
| 1318 | return -ENOENT; |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1319 | break; |
Al Viro | aed434a | 2015-05-12 12:22:47 -0400 | [diff] [blame] | 1320 | } else { |
| 1321 | struct mount *mnt = real_mount(nd->path.mnt); |
| 1322 | struct mount *mparent = mnt->mnt_parent; |
| 1323 | struct dentry *mountpoint = mnt->mnt_mountpoint; |
| 1324 | struct inode *inode2 = mountpoint->d_inode; |
| 1325 | unsigned seq = read_seqcount_begin(&mountpoint->d_seq); |
| 1326 | if (unlikely(read_seqretry(&mount_lock, nd->m_seq))) |
| 1327 | return -ECHILD; |
| 1328 | if (&mparent->mnt == nd->path.mnt) |
| 1329 | break; |
| 1330 | /* we know that mountpoint was pinned */ |
| 1331 | nd->path.dentry = mountpoint; |
| 1332 | nd->path.mnt = &mparent->mnt; |
| 1333 | inode = inode2; |
| 1334 | nd->seq = seq; |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1335 | } |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1336 | } |
Al Viro | aed434a | 2015-05-12 12:22:47 -0400 | [diff] [blame] | 1337 | while (unlikely(d_mountpoint(nd->path.dentry))) { |
Al Viro | b37199e | 2014-03-20 15:18:22 -0400 | [diff] [blame] | 1338 | struct mount *mounted; |
| 1339 | mounted = __lookup_mnt(nd->path.mnt, nd->path.dentry); |
Al Viro | aed434a | 2015-05-12 12:22:47 -0400 | [diff] [blame] | 1340 | if (unlikely(read_seqretry(&mount_lock, nd->m_seq))) |
| 1341 | return -ECHILD; |
Al Viro | b37199e | 2014-03-20 15:18:22 -0400 | [diff] [blame] | 1342 | if (!mounted) |
| 1343 | break; |
| 1344 | nd->path.mnt = &mounted->mnt; |
| 1345 | nd->path.dentry = mounted->mnt.mnt_root; |
Al Viro | 4023bfc | 2014-09-13 21:59:43 -0400 | [diff] [blame] | 1346 | inode = nd->path.dentry->d_inode; |
Al Viro | b37199e | 2014-03-20 15:18:22 -0400 | [diff] [blame] | 1347 | nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq); |
Al Viro | b37199e | 2014-03-20 15:18:22 -0400 | [diff] [blame] | 1348 | } |
Al Viro | 4023bfc | 2014-09-13 21:59:43 -0400 | [diff] [blame] | 1349 | nd->inode = inode; |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1350 | return 0; |
| 1351 | } |
| 1352 | |
David Howells | 9875cf8 | 2011-01-14 18:45:21 +0000 | [diff] [blame] | 1353 | /* |
David Howells | cc53ce5 | 2011-01-14 18:45:26 +0000 | [diff] [blame] | 1354 | * Follow down to the covering mount currently visible to userspace. At each |
| 1355 | * point, the filesystem owning that dentry may be queried as to whether the |
| 1356 | * caller is permitted to proceed or not. |
David Howells | cc53ce5 | 2011-01-14 18:45:26 +0000 | [diff] [blame] | 1357 | */ |
Al Viro | 7cc90cc | 2011-03-18 09:04:20 -0400 | [diff] [blame] | 1358 | int follow_down(struct path *path) |
David Howells | cc53ce5 | 2011-01-14 18:45:26 +0000 | [diff] [blame] | 1359 | { |
| 1360 | unsigned managed; |
| 1361 | int ret; |
| 1362 | |
| 1363 | while (managed = ACCESS_ONCE(path->dentry->d_flags), |
| 1364 | unlikely(managed & DCACHE_MANAGED_DENTRY)) { |
| 1365 | /* Allow the filesystem to manage the transit without i_mutex |
| 1366 | * being held. |
| 1367 | * |
| 1368 | * We indicate to the filesystem if someone is trying to mount |
| 1369 | * something here. This gives autofs the chance to deny anyone |
| 1370 | * other than its daemon the right to mount on its |
| 1371 | * superstructure. |
| 1372 | * |
| 1373 | * The filesystem may sleep at this point. |
| 1374 | */ |
| 1375 | if (managed & DCACHE_MANAGE_TRANSIT) { |
| 1376 | BUG_ON(!path->dentry->d_op); |
| 1377 | BUG_ON(!path->dentry->d_op->d_manage); |
David Howells | ab90911 | 2011-01-14 18:46:51 +0000 | [diff] [blame] | 1378 | ret = path->dentry->d_op->d_manage( |
Al Viro | 1aed3e4 | 2011-03-18 09:09:02 -0400 | [diff] [blame] | 1379 | path->dentry, false); |
David Howells | cc53ce5 | 2011-01-14 18:45:26 +0000 | [diff] [blame] | 1380 | if (ret < 0) |
| 1381 | return ret == -EISDIR ? 0 : ret; |
| 1382 | } |
| 1383 | |
| 1384 | /* Transit to a mounted filesystem. */ |
| 1385 | if (managed & DCACHE_MOUNTED) { |
| 1386 | struct vfsmount *mounted = lookup_mnt(path); |
| 1387 | if (!mounted) |
| 1388 | break; |
| 1389 | dput(path->dentry); |
| 1390 | mntput(path->mnt); |
| 1391 | path->mnt = mounted; |
| 1392 | path->dentry = dget(mounted->mnt_root); |
| 1393 | continue; |
| 1394 | } |
| 1395 | |
| 1396 | /* Don't handle automount points here */ |
| 1397 | break; |
| 1398 | } |
| 1399 | return 0; |
| 1400 | } |
Al Viro | 4d35950 | 2014-03-14 12:20:17 -0400 | [diff] [blame] | 1401 | EXPORT_SYMBOL(follow_down); |
David Howells | cc53ce5 | 2011-01-14 18:45:26 +0000 | [diff] [blame] | 1402 | |
| 1403 | /* |
David Howells | 9875cf8 | 2011-01-14 18:45:21 +0000 | [diff] [blame] | 1404 | * Skip to top of mountpoint pile in refwalk mode for follow_dotdot() |
| 1405 | */ |
| 1406 | static void follow_mount(struct path *path) |
| 1407 | { |
| 1408 | while (d_mountpoint(path->dentry)) { |
| 1409 | struct vfsmount *mounted = lookup_mnt(path); |
| 1410 | if (!mounted) |
| 1411 | break; |
| 1412 | dput(path->dentry); |
| 1413 | mntput(path->mnt); |
| 1414 | path->mnt = mounted; |
| 1415 | path->dentry = dget(mounted->mnt_root); |
| 1416 | } |
| 1417 | } |
| 1418 | |
Eric W. Biederman | 397d425 | 2015-08-15 20:27:13 -0500 | [diff] [blame] | 1419 | static int follow_dotdot(struct nameidata *nd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1420 | { |
| 1421 | while(1) { |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 1422 | struct dentry *old = nd->path.dentry; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1423 | |
Al Viro | 2a73787 | 2009-04-07 11:49:53 -0400 | [diff] [blame] | 1424 | if (nd->path.dentry == nd->root.dentry && |
| 1425 | nd->path.mnt == nd->root.mnt) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1426 | break; |
| 1427 | } |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 1428 | if (nd->path.dentry != nd->path.mnt->mnt_root) { |
Al Viro | 3088dd7 | 2010-01-30 15:47:29 -0500 | [diff] [blame] | 1429 | /* rare case of legitimate dget_parent()... */ |
| 1430 | nd->path.dentry = dget_parent(nd->path.dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1431 | dput(old); |
Eric W. Biederman | 397d425 | 2015-08-15 20:27:13 -0500 | [diff] [blame] | 1432 | if (unlikely(!path_connected(&nd->path))) |
| 1433 | return -ENOENT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1434 | break; |
| 1435 | } |
Al Viro | 3088dd7 | 2010-01-30 15:47:29 -0500 | [diff] [blame] | 1436 | if (!follow_up(&nd->path)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1437 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1438 | } |
Al Viro | 79ed022 | 2009-04-18 13:59:41 -0400 | [diff] [blame] | 1439 | follow_mount(&nd->path); |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1440 | nd->inode = nd->path.dentry->d_inode; |
Eric W. Biederman | 397d425 | 2015-08-15 20:27:13 -0500 | [diff] [blame] | 1441 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1442 | } |
| 1443 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1444 | /* |
Miklos Szeredi | bad6118 | 2012-03-26 12:54:24 +0200 | [diff] [blame] | 1445 | * This looks up the name in dcache, possibly revalidates the old dentry and |
| 1446 | * allocates a new one if not found or not valid. In the need_lookup argument |
| 1447 | * returns whether i_op->lookup is necessary. |
Nick Piggin | baa0389 | 2010-08-18 04:37:31 +1000 | [diff] [blame] | 1448 | */ |
Al Viro | e3c1392 | 2016-03-06 14:03:27 -0500 | [diff] [blame] | 1449 | static struct dentry *lookup_dcache(const struct qstr *name, |
| 1450 | struct dentry *dir, |
Al Viro | 6c51e51 | 2016-03-05 20:09:32 -0500 | [diff] [blame] | 1451 | unsigned int flags) |
Nick Piggin | baa0389 | 2010-08-18 04:37:31 +1000 | [diff] [blame] | 1452 | { |
Nick Piggin | baa0389 | 2010-08-18 04:37:31 +1000 | [diff] [blame] | 1453 | struct dentry *dentry; |
Miklos Szeredi | bad6118 | 2012-03-26 12:54:24 +0200 | [diff] [blame] | 1454 | int error; |
Nick Piggin | baa0389 | 2010-08-18 04:37:31 +1000 | [diff] [blame] | 1455 | |
Miklos Szeredi | bad6118 | 2012-03-26 12:54:24 +0200 | [diff] [blame] | 1456 | dentry = d_lookup(dir, name); |
| 1457 | if (dentry) { |
Jeff Layton | 39e3c95 | 2012-11-28 11:30:53 -0500 | [diff] [blame] | 1458 | if (dentry->d_flags & DCACHE_OP_REVALIDATE) { |
Al Viro | 201f956 | 2012-06-22 12:42:10 +0400 | [diff] [blame] | 1459 | error = d_revalidate(dentry, flags); |
Miklos Szeredi | bad6118 | 2012-03-26 12:54:24 +0200 | [diff] [blame] | 1460 | if (unlikely(error <= 0)) { |
Al Viro | 74ff0ff | 2016-03-05 22:37:46 -0500 | [diff] [blame] | 1461 | if (!error) |
Eric W. Biederman | 5542aa2 | 2014-02-13 09:46:25 -0800 | [diff] [blame] | 1462 | d_invalidate(dentry); |
Al Viro | 74ff0ff | 2016-03-05 22:37:46 -0500 | [diff] [blame] | 1463 | dput(dentry); |
| 1464 | return ERR_PTR(error); |
Miklos Szeredi | bad6118 | 2012-03-26 12:54:24 +0200 | [diff] [blame] | 1465 | } |
| 1466 | } |
| 1467 | } |
Nick Piggin | baa0389 | 2010-08-18 04:37:31 +1000 | [diff] [blame] | 1468 | return dentry; |
| 1469 | } |
| 1470 | |
| 1471 | /* |
J. Bruce Fields | 13a2c3b | 2013-10-23 16:09:16 -0400 | [diff] [blame] | 1472 | * Call i_op->lookup on the dentry. The dentry must be negative and |
| 1473 | * unhashed. |
Miklos Szeredi | bad6118 | 2012-03-26 12:54:24 +0200 | [diff] [blame] | 1474 | * |
| 1475 | * dir->d_inode->i_mutex must be held |
Josef Bacik | 44396f4 | 2011-05-31 11:58:49 -0400 | [diff] [blame] | 1476 | */ |
Miklos Szeredi | bad6118 | 2012-03-26 12:54:24 +0200 | [diff] [blame] | 1477 | static struct dentry *lookup_real(struct inode *dir, struct dentry *dentry, |
Al Viro | 72bd866 | 2012-06-10 17:17:17 -0400 | [diff] [blame] | 1478 | unsigned int flags) |
Josef Bacik | 44396f4 | 2011-05-31 11:58:49 -0400 | [diff] [blame] | 1479 | { |
Josef Bacik | 44396f4 | 2011-05-31 11:58:49 -0400 | [diff] [blame] | 1480 | struct dentry *old; |
| 1481 | |
| 1482 | /* Don't create child dentry for a dead directory. */ |
Miklos Szeredi | bad6118 | 2012-03-26 12:54:24 +0200 | [diff] [blame] | 1483 | if (unlikely(IS_DEADDIR(dir))) { |
Miklos Szeredi | e188dc0 | 2012-02-03 14:25:18 +0100 | [diff] [blame] | 1484 | dput(dentry); |
Josef Bacik | 44396f4 | 2011-05-31 11:58:49 -0400 | [diff] [blame] | 1485 | return ERR_PTR(-ENOENT); |
Miklos Szeredi | e188dc0 | 2012-02-03 14:25:18 +0100 | [diff] [blame] | 1486 | } |
Josef Bacik | 44396f4 | 2011-05-31 11:58:49 -0400 | [diff] [blame] | 1487 | |
Al Viro | 72bd866 | 2012-06-10 17:17:17 -0400 | [diff] [blame] | 1488 | old = dir->i_op->lookup(dir, dentry, flags); |
Josef Bacik | 44396f4 | 2011-05-31 11:58:49 -0400 | [diff] [blame] | 1489 | if (unlikely(old)) { |
| 1490 | dput(dentry); |
| 1491 | dentry = old; |
| 1492 | } |
| 1493 | return dentry; |
| 1494 | } |
| 1495 | |
Al Viro | e3c1392 | 2016-03-06 14:03:27 -0500 | [diff] [blame] | 1496 | static struct dentry *__lookup_hash(const struct qstr *name, |
Al Viro | 72bd866 | 2012-06-10 17:17:17 -0400 | [diff] [blame] | 1497 | struct dentry *base, unsigned int flags) |
Al Viro | a325554 | 2012-03-30 14:41:51 -0400 | [diff] [blame] | 1498 | { |
Al Viro | 6c51e51 | 2016-03-05 20:09:32 -0500 | [diff] [blame] | 1499 | struct dentry *dentry = lookup_dcache(name, base, flags); |
Al Viro | a325554 | 2012-03-30 14:41:51 -0400 | [diff] [blame] | 1500 | |
Al Viro | 6c51e51 | 2016-03-05 20:09:32 -0500 | [diff] [blame] | 1501 | if (dentry) |
Miklos Szeredi | bad6118 | 2012-03-26 12:54:24 +0200 | [diff] [blame] | 1502 | return dentry; |
Al Viro | a325554 | 2012-03-30 14:41:51 -0400 | [diff] [blame] | 1503 | |
Al Viro | 6c51e51 | 2016-03-05 20:09:32 -0500 | [diff] [blame] | 1504 | dentry = d_alloc(base, name); |
| 1505 | if (unlikely(!dentry)) |
| 1506 | return ERR_PTR(-ENOMEM); |
| 1507 | |
Al Viro | 72bd866 | 2012-06-10 17:17:17 -0400 | [diff] [blame] | 1508 | return lookup_real(base->d_inode, dentry, flags); |
Al Viro | a325554 | 2012-03-30 14:41:51 -0400 | [diff] [blame] | 1509 | } |
| 1510 | |
Al Viro | e97cdc8 | 2013-01-24 18:16:00 -0500 | [diff] [blame] | 1511 | static int lookup_fast(struct nameidata *nd, |
Al Viro | 254cf58 | 2015-05-05 09:40:46 -0400 | [diff] [blame] | 1512 | struct path *path, struct inode **inode, |
| 1513 | unsigned *seqp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1514 | { |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 1515 | struct vfsmount *mnt = nd->path.mnt; |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1516 | struct dentry *dentry, *parent = nd->path.dentry; |
Al Viro | 5a18fff | 2011-03-11 04:44:53 -0500 | [diff] [blame] | 1517 | int status = 1; |
David Howells | 9875cf8 | 2011-01-14 18:45:21 +0000 | [diff] [blame] | 1518 | int err; |
| 1519 | |
Al Viro | 3cac260 | 2009-08-13 18:27:43 +0400 | [diff] [blame] | 1520 | /* |
Nick Piggin | b04f784 | 2010-08-18 04:37:34 +1000 | [diff] [blame] | 1521 | * Rename seqlock is not required here because in the off chance |
Al Viro | 5d0f49c | 2016-03-05 21:32:53 -0500 | [diff] [blame] | 1522 | * of a false negative due to a concurrent rename, the caller is |
| 1523 | * going to fall back to non-racy lookup. |
Nick Piggin | b04f784 | 2010-08-18 04:37:34 +1000 | [diff] [blame] | 1524 | */ |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1525 | if (nd->flags & LOOKUP_RCU) { |
| 1526 | unsigned seq; |
Al Viro | 766c4cb | 2015-05-07 19:24:57 -0400 | [diff] [blame] | 1527 | bool negative; |
Linus Torvalds | da53be1 | 2013-05-21 15:22:44 -0700 | [diff] [blame] | 1528 | dentry = __d_lookup_rcu(parent, &nd->last, &seq); |
Al Viro | 5d0f49c | 2016-03-05 21:32:53 -0500 | [diff] [blame] | 1529 | if (unlikely(!dentry)) { |
| 1530 | if (unlazy_walk(nd, NULL, 0)) |
| 1531 | return -ECHILD; |
Al Viro | e9742b5 | 2016-03-05 22:04:59 -0500 | [diff] [blame] | 1532 | return 0; |
Al Viro | 5d0f49c | 2016-03-05 21:32:53 -0500 | [diff] [blame] | 1533 | } |
Al Viro | 5a18fff | 2011-03-11 04:44:53 -0500 | [diff] [blame] | 1534 | |
Linus Torvalds | 12f8ad4 | 2012-05-04 14:59:14 -0700 | [diff] [blame] | 1535 | /* |
| 1536 | * This sequence count validates that the inode matches |
| 1537 | * the dentry name information from lookup. |
| 1538 | */ |
David Howells | 63afdfc | 2015-05-06 15:59:00 +0100 | [diff] [blame] | 1539 | *inode = d_backing_inode(dentry); |
Al Viro | 766c4cb | 2015-05-07 19:24:57 -0400 | [diff] [blame] | 1540 | negative = d_is_negative(dentry); |
Al Viro | 5d0f49c | 2016-03-05 21:32:53 -0500 | [diff] [blame] | 1541 | if (unlikely(read_seqcount_retry(&dentry->d_seq, seq))) |
Linus Torvalds | 12f8ad4 | 2012-05-04 14:59:14 -0700 | [diff] [blame] | 1542 | return -ECHILD; |
| 1543 | |
| 1544 | /* |
| 1545 | * This sequence count validates that the parent had no |
| 1546 | * changes while we did the lookup of the dentry above. |
| 1547 | * |
| 1548 | * The memory barrier in read_seqcount_begin of child is |
| 1549 | * enough, we can use __read_seqcount_retry here. |
| 1550 | */ |
Al Viro | 5d0f49c | 2016-03-05 21:32:53 -0500 | [diff] [blame] | 1551 | if (unlikely(__read_seqcount_retry(&parent->d_seq, nd->seq))) |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1552 | return -ECHILD; |
Al Viro | 5a18fff | 2011-03-11 04:44:53 -0500 | [diff] [blame] | 1553 | |
Al Viro | 254cf58 | 2015-05-05 09:40:46 -0400 | [diff] [blame] | 1554 | *seqp = seq; |
Al Viro | 5d0f49c | 2016-03-05 21:32:53 -0500 | [diff] [blame] | 1555 | if (unlikely(dentry->d_flags & DCACHE_OP_REVALIDATE)) |
Al Viro | 4ce16ef3 | 2012-06-10 16:10:59 -0400 | [diff] [blame] | 1556 | status = d_revalidate(dentry, nd->flags); |
Al Viro | 5d0f49c | 2016-03-05 21:32:53 -0500 | [diff] [blame] | 1557 | if (unlikely(status <= 0)) { |
| 1558 | if (unlazy_walk(nd, dentry, seq)) |
| 1559 | return -ECHILD; |
| 1560 | if (status == -ECHILD) |
| 1561 | status = d_revalidate(dentry, nd->flags); |
| 1562 | } else { |
| 1563 | /* |
| 1564 | * Note: do negative dentry check after revalidation in |
| 1565 | * case that drops it. |
| 1566 | */ |
| 1567 | if (unlikely(negative)) |
| 1568 | return -ENOENT; |
| 1569 | path->mnt = mnt; |
| 1570 | path->dentry = dentry; |
| 1571 | if (likely(__follow_mount_rcu(nd, path, inode, seqp))) |
Al Viro | e9742b5 | 2016-03-05 22:04:59 -0500 | [diff] [blame] | 1572 | return 1; |
Al Viro | 5d0f49c | 2016-03-05 21:32:53 -0500 | [diff] [blame] | 1573 | if (unlazy_walk(nd, dentry, seq)) |
| 1574 | return -ECHILD; |
Al Viro | 2464308 | 2011-02-15 01:26:22 -0500 | [diff] [blame] | 1575 | } |
Al Viro | 5a18fff | 2011-03-11 04:44:53 -0500 | [diff] [blame] | 1576 | } else { |
Al Viro | e97cdc8 | 2013-01-24 18:16:00 -0500 | [diff] [blame] | 1577 | dentry = __d_lookup(parent, &nd->last); |
Al Viro | 5d0f49c | 2016-03-05 21:32:53 -0500 | [diff] [blame] | 1578 | if (unlikely(!dentry)) |
Al Viro | e9742b5 | 2016-03-05 22:04:59 -0500 | [diff] [blame] | 1579 | return 0; |
Al Viro | 5d0f49c | 2016-03-05 21:32:53 -0500 | [diff] [blame] | 1580 | if (unlikely(dentry->d_flags & DCACHE_OP_REVALIDATE)) |
| 1581 | status = d_revalidate(dentry, nd->flags); |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1582 | } |
Al Viro | 5a18fff | 2011-03-11 04:44:53 -0500 | [diff] [blame] | 1583 | if (unlikely(status <= 0)) { |
Al Viro | e9742b5 | 2016-03-05 22:04:59 -0500 | [diff] [blame] | 1584 | if (!status) |
Al Viro | 5d0f49c | 2016-03-05 21:32:53 -0500 | [diff] [blame] | 1585 | d_invalidate(dentry); |
Eric W. Biederman | 5542aa2 | 2014-02-13 09:46:25 -0800 | [diff] [blame] | 1586 | dput(dentry); |
Al Viro | 5d0f49c | 2016-03-05 21:32:53 -0500 | [diff] [blame] | 1587 | return status; |
Al Viro | 5a18fff | 2011-03-11 04:44:53 -0500 | [diff] [blame] | 1588 | } |
Al Viro | 766c4cb | 2015-05-07 19:24:57 -0400 | [diff] [blame] | 1589 | if (unlikely(d_is_negative(dentry))) { |
| 1590 | dput(dentry); |
| 1591 | return -ENOENT; |
| 1592 | } |
Al Viro | 5d0f49c | 2016-03-05 21:32:53 -0500 | [diff] [blame] | 1593 | |
David Howells | 9875cf8 | 2011-01-14 18:45:21 +0000 | [diff] [blame] | 1594 | path->mnt = mnt; |
| 1595 | path->dentry = dentry; |
NeilBrown | 756daf2 | 2015-03-23 13:37:38 +1100 | [diff] [blame] | 1596 | err = follow_managed(path, nd); |
Al Viro | e9742b5 | 2016-03-05 22:04:59 -0500 | [diff] [blame] | 1597 | if (likely(err > 0)) |
David Howells | 63afdfc | 2015-05-06 15:59:00 +0100 | [diff] [blame] | 1598 | *inode = d_backing_inode(path->dentry); |
Al Viro | 8402752 | 2015-04-22 10:30:08 -0400 | [diff] [blame] | 1599 | return err; |
Miklos Szeredi | 697f514 | 2012-05-21 17:30:05 +0200 | [diff] [blame] | 1600 | } |
| 1601 | |
| 1602 | /* Fast lookup failed, do it the slow way */ |
Al Viro | e3c1392 | 2016-03-06 14:03:27 -0500 | [diff] [blame] | 1603 | static struct dentry *lookup_slow(const struct qstr *name, |
| 1604 | struct dentry *dir, |
| 1605 | unsigned int flags) |
Miklos Szeredi | 697f514 | 2012-05-21 17:30:05 +0200 | [diff] [blame] | 1606 | { |
Al Viro | 94bdd65 | 2016-04-15 02:42:04 -0400 | [diff] [blame] | 1607 | struct dentry *dentry = ERR_PTR(-ENOENT), *old; |
Al Viro | 1936386 | 2016-04-14 19:33:34 -0400 | [diff] [blame] | 1608 | struct inode *inode = dir->d_inode; |
Al Viro | d9171b9 | 2016-04-15 03:33:13 -0400 | [diff] [blame] | 1609 | DECLARE_WAIT_QUEUE_HEAD_ONSTACK(wq); |
Al Viro | 1936386 | 2016-04-14 19:33:34 -0400 | [diff] [blame] | 1610 | |
Al Viro | 9902af7 | 2016-04-15 15:08:36 -0400 | [diff] [blame] | 1611 | inode_lock_shared(inode); |
Al Viro | 1936386 | 2016-04-14 19:33:34 -0400 | [diff] [blame] | 1612 | /* Don't go there if it's already dead */ |
Al Viro | 94bdd65 | 2016-04-15 02:42:04 -0400 | [diff] [blame] | 1613 | if (unlikely(IS_DEADDIR(inode))) |
| 1614 | goto out; |
| 1615 | again: |
Al Viro | d9171b9 | 2016-04-15 03:33:13 -0400 | [diff] [blame] | 1616 | dentry = d_alloc_parallel(dir, name, &wq); |
Al Viro | 94bdd65 | 2016-04-15 02:42:04 -0400 | [diff] [blame] | 1617 | if (IS_ERR(dentry)) |
| 1618 | goto out; |
| 1619 | if (unlikely(!d_in_lookup(dentry))) { |
Al Viro | 949a852 | 2016-03-06 14:20:52 -0500 | [diff] [blame] | 1620 | if ((dentry->d_flags & DCACHE_OP_REVALIDATE) && |
| 1621 | !(flags & LOOKUP_NO_REVAL)) { |
| 1622 | int error = d_revalidate(dentry, flags); |
| 1623 | if (unlikely(error <= 0)) { |
Al Viro | 94bdd65 | 2016-04-15 02:42:04 -0400 | [diff] [blame] | 1624 | if (!error) { |
Al Viro | 949a852 | 2016-03-06 14:20:52 -0500 | [diff] [blame] | 1625 | d_invalidate(dentry); |
Al Viro | 94bdd65 | 2016-04-15 02:42:04 -0400 | [diff] [blame] | 1626 | dput(dentry); |
| 1627 | goto again; |
| 1628 | } |
Al Viro | 949a852 | 2016-03-06 14:20:52 -0500 | [diff] [blame] | 1629 | dput(dentry); |
| 1630 | dentry = ERR_PTR(error); |
| 1631 | } |
| 1632 | } |
Al Viro | 94bdd65 | 2016-04-15 02:42:04 -0400 | [diff] [blame] | 1633 | } else { |
| 1634 | old = inode->i_op->lookup(inode, dentry, flags); |
| 1635 | d_lookup_done(dentry); |
| 1636 | if (unlikely(old)) { |
| 1637 | dput(dentry); |
| 1638 | dentry = old; |
Al Viro | 949a852 | 2016-03-06 14:20:52 -0500 | [diff] [blame] | 1639 | } |
| 1640 | } |
Al Viro | 94bdd65 | 2016-04-15 02:42:04 -0400 | [diff] [blame] | 1641 | out: |
Al Viro | 9902af7 | 2016-04-15 15:08:36 -0400 | [diff] [blame] | 1642 | inode_unlock_shared(inode); |
Al Viro | e3c1392 | 2016-03-06 14:03:27 -0500 | [diff] [blame] | 1643 | return dentry; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1644 | } |
| 1645 | |
Al Viro | 52094c8 | 2011-02-21 21:34:47 -0500 | [diff] [blame] | 1646 | static inline int may_lookup(struct nameidata *nd) |
| 1647 | { |
| 1648 | if (nd->flags & LOOKUP_RCU) { |
Al Viro | 4ad5abb | 2011-06-20 19:57:03 -0400 | [diff] [blame] | 1649 | int err = inode_permission(nd->inode, MAY_EXEC|MAY_NOT_BLOCK); |
Al Viro | 52094c8 | 2011-02-21 21:34:47 -0500 | [diff] [blame] | 1650 | if (err != -ECHILD) |
| 1651 | return err; |
Al Viro | 6e9918b | 2015-05-05 09:26:05 -0400 | [diff] [blame] | 1652 | if (unlazy_walk(nd, NULL, 0)) |
Al Viro | 52094c8 | 2011-02-21 21:34:47 -0500 | [diff] [blame] | 1653 | return -ECHILD; |
| 1654 | } |
Al Viro | 4ad5abb | 2011-06-20 19:57:03 -0400 | [diff] [blame] | 1655 | return inode_permission(nd->inode, MAY_EXEC); |
Al Viro | 52094c8 | 2011-02-21 21:34:47 -0500 | [diff] [blame] | 1656 | } |
| 1657 | |
Al Viro | 9856fa1 | 2011-03-04 14:22:06 -0500 | [diff] [blame] | 1658 | static inline int handle_dots(struct nameidata *nd, int type) |
| 1659 | { |
| 1660 | if (type == LAST_DOTDOT) { |
Al Viro | 9e6697e | 2015-12-05 20:07:21 -0500 | [diff] [blame] | 1661 | if (!nd->root.mnt) |
| 1662 | set_root(nd); |
Al Viro | 9856fa1 | 2011-03-04 14:22:06 -0500 | [diff] [blame] | 1663 | if (nd->flags & LOOKUP_RCU) { |
Al Viro | 70291ae | 2015-05-04 07:53:00 -0400 | [diff] [blame] | 1664 | return follow_dotdot_rcu(nd); |
Al Viro | 9856fa1 | 2011-03-04 14:22:06 -0500 | [diff] [blame] | 1665 | } else |
Eric W. Biederman | 397d425 | 2015-08-15 20:27:13 -0500 | [diff] [blame] | 1666 | return follow_dotdot(nd); |
Al Viro | 9856fa1 | 2011-03-04 14:22:06 -0500 | [diff] [blame] | 1667 | } |
| 1668 | return 0; |
| 1669 | } |
| 1670 | |
Al Viro | 181548c | 2015-05-07 19:54:34 -0400 | [diff] [blame] | 1671 | static int pick_link(struct nameidata *nd, struct path *link, |
| 1672 | struct inode *inode, unsigned seq) |
Al Viro | d63ff28 | 2015-05-04 18:13:23 -0400 | [diff] [blame] | 1673 | { |
Al Viro | 626de99 | 2015-05-04 18:26:59 -0400 | [diff] [blame] | 1674 | int error; |
Al Viro | 1cf2665 | 2015-05-06 16:01:56 -0400 | [diff] [blame] | 1675 | struct saved *last; |
NeilBrown | 756daf2 | 2015-03-23 13:37:38 +1100 | [diff] [blame] | 1676 | if (unlikely(nd->total_link_count++ >= MAXSYMLINKS)) { |
Al Viro | 626de99 | 2015-05-04 18:26:59 -0400 | [diff] [blame] | 1677 | path_to_nameidata(link, nd); |
| 1678 | return -ELOOP; |
| 1679 | } |
Al Viro | bc40aee | 2015-05-09 13:04:24 -0400 | [diff] [blame] | 1680 | if (!(nd->flags & LOOKUP_RCU)) { |
Al Viro | 7973387 | 2015-05-09 12:55:43 -0400 | [diff] [blame] | 1681 | if (link->mnt == nd->path.mnt) |
| 1682 | mntget(link->mnt); |
Al Viro | d63ff28 | 2015-05-04 18:13:23 -0400 | [diff] [blame] | 1683 | } |
Al Viro | 626de99 | 2015-05-04 18:26:59 -0400 | [diff] [blame] | 1684 | error = nd_alloc_stack(nd); |
| 1685 | if (unlikely(error)) { |
Al Viro | bc40aee | 2015-05-09 13:04:24 -0400 | [diff] [blame] | 1686 | if (error == -ECHILD) { |
| 1687 | if (unlikely(unlazy_link(nd, link, seq))) |
| 1688 | return -ECHILD; |
| 1689 | error = nd_alloc_stack(nd); |
| 1690 | } |
| 1691 | if (error) { |
| 1692 | path_put(link); |
| 1693 | return error; |
| 1694 | } |
Al Viro | 626de99 | 2015-05-04 18:26:59 -0400 | [diff] [blame] | 1695 | } |
| 1696 | |
Al Viro | ab10492 | 2015-05-10 11:50:01 -0400 | [diff] [blame] | 1697 | last = nd->stack + nd->depth++; |
Al Viro | 1cf2665 | 2015-05-06 16:01:56 -0400 | [diff] [blame] | 1698 | last->link = *link; |
Al Viro | fceef39 | 2015-12-29 15:58:39 -0500 | [diff] [blame] | 1699 | clear_delayed_call(&last->done); |
| 1700 | nd->link_inode = inode; |
Al Viro | 0450b2d | 2015-05-08 13:23:53 -0400 | [diff] [blame] | 1701 | last->seq = seq; |
Al Viro | d63ff28 | 2015-05-04 18:13:23 -0400 | [diff] [blame] | 1702 | return 1; |
| 1703 | } |
| 1704 | |
Linus Torvalds | 3ddcd05 | 2011-08-06 22:45:50 -0700 | [diff] [blame] | 1705 | /* |
| 1706 | * Do we need to follow links? We _really_ want to be able |
| 1707 | * to do this check without having to look at inode->i_op, |
| 1708 | * so we keep a cache of "no, this doesn't need follow_link" |
| 1709 | * for the common case. |
| 1710 | */ |
Al Viro | 254cf58 | 2015-05-05 09:40:46 -0400 | [diff] [blame] | 1711 | static inline int should_follow_link(struct nameidata *nd, struct path *link, |
Al Viro | 181548c | 2015-05-07 19:54:34 -0400 | [diff] [blame] | 1712 | int follow, |
| 1713 | struct inode *inode, unsigned seq) |
Linus Torvalds | 3ddcd05 | 2011-08-06 22:45:50 -0700 | [diff] [blame] | 1714 | { |
Al Viro | d63ff28 | 2015-05-04 18:13:23 -0400 | [diff] [blame] | 1715 | if (likely(!d_is_symlink(link->dentry))) |
| 1716 | return 0; |
| 1717 | if (!follow) |
| 1718 | return 0; |
Al Viro | a7f7754 | 2016-02-27 19:31:01 -0500 | [diff] [blame] | 1719 | /* make sure that d_is_symlink above matches inode */ |
| 1720 | if (nd->flags & LOOKUP_RCU) { |
| 1721 | if (read_seqcount_retry(&link->dentry->d_seq, seq)) |
| 1722 | return -ECHILD; |
| 1723 | } |
Al Viro | 181548c | 2015-05-07 19:54:34 -0400 | [diff] [blame] | 1724 | return pick_link(nd, link, inode, seq); |
Linus Torvalds | 3ddcd05 | 2011-08-06 22:45:50 -0700 | [diff] [blame] | 1725 | } |
| 1726 | |
Al Viro | 4693a54 | 2015-05-04 17:47:11 -0400 | [diff] [blame] | 1727 | enum {WALK_GET = 1, WALK_PUT = 2}; |
| 1728 | |
| 1729 | static int walk_component(struct nameidata *nd, int flags) |
Al Viro | ce57dfc | 2011-03-13 19:58:58 -0400 | [diff] [blame] | 1730 | { |
Al Viro | caa8563 | 2015-04-22 17:52:47 -0400 | [diff] [blame] | 1731 | struct path path; |
Al Viro | ce57dfc | 2011-03-13 19:58:58 -0400 | [diff] [blame] | 1732 | struct inode *inode; |
Al Viro | 254cf58 | 2015-05-05 09:40:46 -0400 | [diff] [blame] | 1733 | unsigned seq; |
Al Viro | ce57dfc | 2011-03-13 19:58:58 -0400 | [diff] [blame] | 1734 | int err; |
| 1735 | /* |
| 1736 | * "." and ".." are special - ".." especially so because it has |
| 1737 | * to be able to know about the current root directory and |
| 1738 | * parent relationships. |
| 1739 | */ |
Al Viro | 4693a54 | 2015-05-04 17:47:11 -0400 | [diff] [blame] | 1740 | if (unlikely(nd->last_type != LAST_NORM)) { |
| 1741 | err = handle_dots(nd, nd->last_type); |
| 1742 | if (flags & WALK_PUT) |
| 1743 | put_link(nd); |
| 1744 | return err; |
| 1745 | } |
Al Viro | 254cf58 | 2015-05-05 09:40:46 -0400 | [diff] [blame] | 1746 | err = lookup_fast(nd, &path, &inode, &seq); |
Al Viro | e9742b5 | 2016-03-05 22:04:59 -0500 | [diff] [blame] | 1747 | if (unlikely(err <= 0)) { |
Miklos Szeredi | 697f514 | 2012-05-21 17:30:05 +0200 | [diff] [blame] | 1748 | if (err < 0) |
Al Viro | f0a9ba7 | 2015-05-04 07:59:30 -0400 | [diff] [blame] | 1749 | return err; |
Al Viro | e3c1392 | 2016-03-06 14:03:27 -0500 | [diff] [blame] | 1750 | path.dentry = lookup_slow(&nd->last, nd->path.dentry, |
| 1751 | nd->flags); |
| 1752 | if (IS_ERR(path.dentry)) |
| 1753 | return PTR_ERR(path.dentry); |
Al Viro | 7500c38 | 2016-03-31 00:23:05 -0400 | [diff] [blame] | 1754 | |
Al Viro | e3c1392 | 2016-03-06 14:03:27 -0500 | [diff] [blame] | 1755 | path.mnt = nd->path.mnt; |
| 1756 | err = follow_managed(&path, nd); |
| 1757 | if (unlikely(err < 0)) |
Al Viro | f0a9ba7 | 2015-05-04 07:59:30 -0400 | [diff] [blame] | 1758 | return err; |
Miklos Szeredi | 697f514 | 2012-05-21 17:30:05 +0200 | [diff] [blame] | 1759 | |
Al Viro | 7500c38 | 2016-03-31 00:23:05 -0400 | [diff] [blame] | 1760 | if (unlikely(d_is_negative(path.dentry))) { |
| 1761 | path_to_nameidata(&path, nd); |
| 1762 | return -ENOENT; |
| 1763 | } |
| 1764 | |
Al Viro | 254cf58 | 2015-05-05 09:40:46 -0400 | [diff] [blame] | 1765 | seq = 0; /* we are already out of RCU mode */ |
Al Viro | d456564 | 2016-02-27 19:23:16 -0500 | [diff] [blame] | 1766 | inode = d_backing_inode(path.dentry); |
Al Viro | ce57dfc | 2011-03-13 19:58:58 -0400 | [diff] [blame] | 1767 | } |
Miklos Szeredi | 697f514 | 2012-05-21 17:30:05 +0200 | [diff] [blame] | 1768 | |
Al Viro | 4693a54 | 2015-05-04 17:47:11 -0400 | [diff] [blame] | 1769 | if (flags & WALK_PUT) |
| 1770 | put_link(nd); |
Al Viro | 181548c | 2015-05-07 19:54:34 -0400 | [diff] [blame] | 1771 | err = should_follow_link(nd, &path, flags & WALK_GET, inode, seq); |
Al Viro | d63ff28 | 2015-05-04 18:13:23 -0400 | [diff] [blame] | 1772 | if (unlikely(err)) |
| 1773 | return err; |
Al Viro | caa8563 | 2015-04-22 17:52:47 -0400 | [diff] [blame] | 1774 | path_to_nameidata(&path, nd); |
Al Viro | ce57dfc | 2011-03-13 19:58:58 -0400 | [diff] [blame] | 1775 | nd->inode = inode; |
Al Viro | 254cf58 | 2015-05-05 09:40:46 -0400 | [diff] [blame] | 1776 | nd->seq = seq; |
Al Viro | ce57dfc | 2011-03-13 19:58:58 -0400 | [diff] [blame] | 1777 | return 0; |
| 1778 | } |
| 1779 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1780 | /* |
Linus Torvalds | bfcfaa7 | 2012-03-06 11:16:17 -0800 | [diff] [blame] | 1781 | * We can do the critical dentry name comparison and hashing |
| 1782 | * operations one word at a time, but we are limited to: |
| 1783 | * |
| 1784 | * - Architectures with fast unaligned word accesses. We could |
| 1785 | * do a "get_unaligned()" if this helps and is sufficiently |
| 1786 | * fast. |
| 1787 | * |
Linus Torvalds | bfcfaa7 | 2012-03-06 11:16:17 -0800 | [diff] [blame] | 1788 | * - non-CONFIG_DEBUG_PAGEALLOC configurations (so that we |
| 1789 | * do not trap on the (extremely unlikely) case of a page |
| 1790 | * crossing operation. |
| 1791 | * |
| 1792 | * - Furthermore, we need an efficient 64-bit compile for the |
| 1793 | * 64-bit case in order to generate the "number of bytes in |
| 1794 | * the final mask". Again, that could be replaced with a |
| 1795 | * efficient population count instruction or similar. |
| 1796 | */ |
| 1797 | #ifdef CONFIG_DCACHE_WORD_ACCESS |
| 1798 | |
Linus Torvalds | f68e556 | 2012-04-06 13:54:56 -0700 | [diff] [blame] | 1799 | #include <asm/word-at-a-time.h> |
Linus Torvalds | bfcfaa7 | 2012-03-06 11:16:17 -0800 | [diff] [blame] | 1800 | |
George Spelvin | 468a942 | 2016-05-26 22:11:51 -0400 | [diff] [blame] | 1801 | #ifdef HASH_MIX |
Linus Torvalds | bfcfaa7 | 2012-03-06 11:16:17 -0800 | [diff] [blame] | 1802 | |
George Spelvin | 468a942 | 2016-05-26 22:11:51 -0400 | [diff] [blame] | 1803 | /* Architecture provides HASH_MIX and fold_hash() in <asm/hash.h> */ |
| 1804 | |
| 1805 | #elif defined(CONFIG_64BIT) |
George Spelvin | 2a18da7a | 2016-05-23 07:43:58 -0400 | [diff] [blame] | 1806 | /* |
| 1807 | * Register pressure in the mixing function is an issue, particularly |
| 1808 | * on 32-bit x86, but almost any function requires one state value and |
| 1809 | * one temporary. Instead, use a function designed for two state values |
| 1810 | * and no temporaries. |
| 1811 | * |
| 1812 | * This function cannot create a collision in only two iterations, so |
| 1813 | * we have two iterations to achieve avalanche. In those two iterations, |
| 1814 | * we have six layers of mixing, which is enough to spread one bit's |
| 1815 | * influence out to 2^6 = 64 state bits. |
| 1816 | * |
| 1817 | * Rotate constants are scored by considering either 64 one-bit input |
| 1818 | * deltas or 64*63/2 = 2016 two-bit input deltas, and finding the |
| 1819 | * probability of that delta causing a change to each of the 128 output |
| 1820 | * bits, using a sample of random initial states. |
| 1821 | * |
| 1822 | * The Shannon entropy of the computed probabilities is then summed |
| 1823 | * to produce a score. Ideally, any input change has a 50% chance of |
| 1824 | * toggling any given output bit. |
| 1825 | * |
| 1826 | * Mixing scores (in bits) for (12,45): |
| 1827 | * Input delta: 1-bit 2-bit |
| 1828 | * 1 round: 713.3 42542.6 |
| 1829 | * 2 rounds: 2753.7 140389.8 |
| 1830 | * 3 rounds: 5954.1 233458.2 |
| 1831 | * 4 rounds: 7862.6 256672.2 |
| 1832 | * Perfect: 8192 258048 |
| 1833 | * (64*128) (64*63/2 * 128) |
| 1834 | */ |
| 1835 | #define HASH_MIX(x, y, a) \ |
| 1836 | ( x ^= (a), \ |
| 1837 | y ^= x, x = rol64(x,12),\ |
| 1838 | x += y, y = rol64(y,45),\ |
| 1839 | y *= 9 ) |
Linus Torvalds | bfcfaa7 | 2012-03-06 11:16:17 -0800 | [diff] [blame] | 1840 | |
George Spelvin | 0fed3ac | 2016-05-02 06:31:01 -0400 | [diff] [blame] | 1841 | /* |
George Spelvin | 2a18da7a | 2016-05-23 07:43:58 -0400 | [diff] [blame] | 1842 | * Fold two longs into one 32-bit hash value. This must be fast, but |
| 1843 | * latency isn't quite as critical, as there is a fair bit of additional |
| 1844 | * work done before the hash value is used. |
George Spelvin | 0fed3ac | 2016-05-02 06:31:01 -0400 | [diff] [blame] | 1845 | */ |
George Spelvin | 2a18da7a | 2016-05-23 07:43:58 -0400 | [diff] [blame] | 1846 | static inline unsigned int fold_hash(unsigned long x, unsigned long y) |
George Spelvin | 0fed3ac | 2016-05-02 06:31:01 -0400 | [diff] [blame] | 1847 | { |
George Spelvin | 2a18da7a | 2016-05-23 07:43:58 -0400 | [diff] [blame] | 1848 | y ^= x * GOLDEN_RATIO_64; |
| 1849 | y *= GOLDEN_RATIO_64; |
| 1850 | return y >> 32; |
George Spelvin | 0fed3ac | 2016-05-02 06:31:01 -0400 | [diff] [blame] | 1851 | } |
| 1852 | |
Linus Torvalds | bfcfaa7 | 2012-03-06 11:16:17 -0800 | [diff] [blame] | 1853 | #else /* 32-bit case */ |
| 1854 | |
George Spelvin | 2a18da7a | 2016-05-23 07:43:58 -0400 | [diff] [blame] | 1855 | /* |
| 1856 | * Mixing scores (in bits) for (7,20): |
| 1857 | * Input delta: 1-bit 2-bit |
| 1858 | * 1 round: 330.3 9201.6 |
| 1859 | * 2 rounds: 1246.4 25475.4 |
| 1860 | * 3 rounds: 1907.1 31295.1 |
| 1861 | * 4 rounds: 2042.3 31718.6 |
| 1862 | * Perfect: 2048 31744 |
| 1863 | * (32*64) (32*31/2 * 64) |
| 1864 | */ |
| 1865 | #define HASH_MIX(x, y, a) \ |
| 1866 | ( x ^= (a), \ |
| 1867 | y ^= x, x = rol32(x, 7),\ |
| 1868 | x += y, y = rol32(y,20),\ |
| 1869 | y *= 9 ) |
Linus Torvalds | bfcfaa7 | 2012-03-06 11:16:17 -0800 | [diff] [blame] | 1870 | |
George Spelvin | 2a18da7a | 2016-05-23 07:43:58 -0400 | [diff] [blame] | 1871 | static inline unsigned int fold_hash(unsigned long x, unsigned long y) |
George Spelvin | 0fed3ac | 2016-05-02 06:31:01 -0400 | [diff] [blame] | 1872 | { |
George Spelvin | 2a18da7a | 2016-05-23 07:43:58 -0400 | [diff] [blame] | 1873 | /* Use arch-optimized multiply if one exists */ |
| 1874 | return __hash_32(y ^ __hash_32(x)); |
George Spelvin | 0fed3ac | 2016-05-02 06:31:01 -0400 | [diff] [blame] | 1875 | } |
| 1876 | |
Linus Torvalds | bfcfaa7 | 2012-03-06 11:16:17 -0800 | [diff] [blame] | 1877 | #endif |
| 1878 | |
George Spelvin | 2a18da7a | 2016-05-23 07:43:58 -0400 | [diff] [blame] | 1879 | /* |
| 1880 | * Return the hash of a string of known length. This is carfully |
| 1881 | * designed to match hash_name(), which is the more critical function. |
| 1882 | * In particular, we must end by hashing a final word containing 0..7 |
| 1883 | * payload bytes, to match the way that hash_name() iterates until it |
| 1884 | * finds the delimiter after the name. |
| 1885 | */ |
George Spelvin | fcfd2fb | 2016-05-20 08:41:37 -0400 | [diff] [blame] | 1886 | unsigned int full_name_hash(const char *name, unsigned int len) |
Linus Torvalds | bfcfaa7 | 2012-03-06 11:16:17 -0800 | [diff] [blame] | 1887 | { |
George Spelvin | 2a18da7a | 2016-05-23 07:43:58 -0400 | [diff] [blame] | 1888 | unsigned long a, x = 0, y = 0; |
Linus Torvalds | bfcfaa7 | 2012-03-06 11:16:17 -0800 | [diff] [blame] | 1889 | |
| 1890 | for (;;) { |
George Spelvin | fcfd2fb | 2016-05-20 08:41:37 -0400 | [diff] [blame] | 1891 | if (!len) |
| 1892 | goto done; |
Linus Torvalds | e419b4c | 2012-05-03 10:16:43 -0700 | [diff] [blame] | 1893 | a = load_unaligned_zeropad(name); |
Linus Torvalds | bfcfaa7 | 2012-03-06 11:16:17 -0800 | [diff] [blame] | 1894 | if (len < sizeof(unsigned long)) |
| 1895 | break; |
George Spelvin | 2a18da7a | 2016-05-23 07:43:58 -0400 | [diff] [blame] | 1896 | HASH_MIX(x, y, a); |
Linus Torvalds | bfcfaa7 | 2012-03-06 11:16:17 -0800 | [diff] [blame] | 1897 | name += sizeof(unsigned long); |
| 1898 | len -= sizeof(unsigned long); |
Linus Torvalds | bfcfaa7 | 2012-03-06 11:16:17 -0800 | [diff] [blame] | 1899 | } |
George Spelvin | 2a18da7a | 2016-05-23 07:43:58 -0400 | [diff] [blame] | 1900 | x ^= a & bytemask_from_count(len); |
Linus Torvalds | bfcfaa7 | 2012-03-06 11:16:17 -0800 | [diff] [blame] | 1901 | done: |
George Spelvin | 2a18da7a | 2016-05-23 07:43:58 -0400 | [diff] [blame] | 1902 | return fold_hash(x, y); |
Linus Torvalds | bfcfaa7 | 2012-03-06 11:16:17 -0800 | [diff] [blame] | 1903 | } |
| 1904 | EXPORT_SYMBOL(full_name_hash); |
| 1905 | |
George Spelvin | fcfd2fb | 2016-05-20 08:41:37 -0400 | [diff] [blame] | 1906 | /* Return the "hash_len" (hash and length) of a null-terminated string */ |
| 1907 | u64 hashlen_string(const char *name) |
| 1908 | { |
George Spelvin | 2a18da7a | 2016-05-23 07:43:58 -0400 | [diff] [blame] | 1909 | unsigned long a = 0, x = 0, y = 0, adata, mask, len; |
George Spelvin | fcfd2fb | 2016-05-20 08:41:37 -0400 | [diff] [blame] | 1910 | const struct word_at_a_time constants = WORD_AT_A_TIME_CONSTANTS; |
| 1911 | |
George Spelvin | fcfd2fb | 2016-05-20 08:41:37 -0400 | [diff] [blame] | 1912 | len = -sizeof(unsigned long); |
| 1913 | do { |
George Spelvin | 2a18da7a | 2016-05-23 07:43:58 -0400 | [diff] [blame] | 1914 | HASH_MIX(x, y, a); |
George Spelvin | fcfd2fb | 2016-05-20 08:41:37 -0400 | [diff] [blame] | 1915 | len += sizeof(unsigned long); |
| 1916 | a = load_unaligned_zeropad(name+len); |
| 1917 | } while (!has_zero(a, &adata, &constants)); |
| 1918 | |
| 1919 | adata = prep_zero_mask(a, adata, &constants); |
| 1920 | mask = create_zero_mask(adata); |
George Spelvin | 2a18da7a | 2016-05-23 07:43:58 -0400 | [diff] [blame] | 1921 | x ^= a & zero_bytemask(mask); |
George Spelvin | fcfd2fb | 2016-05-20 08:41:37 -0400 | [diff] [blame] | 1922 | |
George Spelvin | 2a18da7a | 2016-05-23 07:43:58 -0400 | [diff] [blame] | 1923 | return hashlen_create(fold_hash(x, y), len + find_zero(mask)); |
George Spelvin | fcfd2fb | 2016-05-20 08:41:37 -0400 | [diff] [blame] | 1924 | } |
| 1925 | EXPORT_SYMBOL(hashlen_string); |
| 1926 | |
Linus Torvalds | bfcfaa7 | 2012-03-06 11:16:17 -0800 | [diff] [blame] | 1927 | /* |
| 1928 | * Calculate the length and hash of the path component, and |
Linus Torvalds | d6bb3e9 | 2014-09-15 10:51:07 -0700 | [diff] [blame] | 1929 | * return the "hash_len" as the result. |
Linus Torvalds | bfcfaa7 | 2012-03-06 11:16:17 -0800 | [diff] [blame] | 1930 | */ |
Linus Torvalds | d6bb3e9 | 2014-09-15 10:51:07 -0700 | [diff] [blame] | 1931 | static inline u64 hash_name(const char *name) |
Linus Torvalds | bfcfaa7 | 2012-03-06 11:16:17 -0800 | [diff] [blame] | 1932 | { |
George Spelvin | 2a18da7a | 2016-05-23 07:43:58 -0400 | [diff] [blame] | 1933 | unsigned long a = 0, b, x = 0, y = 0, adata, bdata, mask, len; |
Linus Torvalds | 36126f8 | 2012-05-26 10:43:17 -0700 | [diff] [blame] | 1934 | const struct word_at_a_time constants = WORD_AT_A_TIME_CONSTANTS; |
Linus Torvalds | bfcfaa7 | 2012-03-06 11:16:17 -0800 | [diff] [blame] | 1935 | |
Linus Torvalds | bfcfaa7 | 2012-03-06 11:16:17 -0800 | [diff] [blame] | 1936 | len = -sizeof(unsigned long); |
| 1937 | do { |
George Spelvin | 2a18da7a | 2016-05-23 07:43:58 -0400 | [diff] [blame] | 1938 | HASH_MIX(x, y, a); |
Linus Torvalds | bfcfaa7 | 2012-03-06 11:16:17 -0800 | [diff] [blame] | 1939 | len += sizeof(unsigned long); |
Linus Torvalds | e419b4c | 2012-05-03 10:16:43 -0700 | [diff] [blame] | 1940 | a = load_unaligned_zeropad(name+len); |
Linus Torvalds | 36126f8 | 2012-05-26 10:43:17 -0700 | [diff] [blame] | 1941 | b = a ^ REPEAT_BYTE('/'); |
| 1942 | } while (!(has_zero(a, &adata, &constants) | has_zero(b, &bdata, &constants))); |
Linus Torvalds | bfcfaa7 | 2012-03-06 11:16:17 -0800 | [diff] [blame] | 1943 | |
Linus Torvalds | 36126f8 | 2012-05-26 10:43:17 -0700 | [diff] [blame] | 1944 | adata = prep_zero_mask(a, adata, &constants); |
| 1945 | bdata = prep_zero_mask(b, bdata, &constants); |
Linus Torvalds | 36126f8 | 2012-05-26 10:43:17 -0700 | [diff] [blame] | 1946 | mask = create_zero_mask(adata | bdata); |
George Spelvin | 2a18da7a | 2016-05-23 07:43:58 -0400 | [diff] [blame] | 1947 | x ^= a & zero_bytemask(mask); |
Linus Torvalds | 36126f8 | 2012-05-26 10:43:17 -0700 | [diff] [blame] | 1948 | |
George Spelvin | 2a18da7a | 2016-05-23 07:43:58 -0400 | [diff] [blame] | 1949 | return hashlen_create(fold_hash(x, y), len + find_zero(mask)); |
Linus Torvalds | bfcfaa7 | 2012-03-06 11:16:17 -0800 | [diff] [blame] | 1950 | } |
| 1951 | |
George Spelvin | 2a18da7a | 2016-05-23 07:43:58 -0400 | [diff] [blame] | 1952 | #else /* !CONFIG_DCACHE_WORD_ACCESS: Slow, byte-at-a-time version */ |
Linus Torvalds | bfcfaa7 | 2012-03-06 11:16:17 -0800 | [diff] [blame] | 1953 | |
George Spelvin | fcfd2fb | 2016-05-20 08:41:37 -0400 | [diff] [blame] | 1954 | /* Return the hash of a string of known length */ |
| 1955 | unsigned int full_name_hash(const char *name, unsigned int len) |
Linus Torvalds | 0145acc | 2012-03-02 14:32:59 -0800 | [diff] [blame] | 1956 | { |
| 1957 | unsigned long hash = init_name_hash(); |
| 1958 | while (len--) |
George Spelvin | fcfd2fb | 2016-05-20 08:41:37 -0400 | [diff] [blame] | 1959 | hash = partial_name_hash((unsigned char)*name++, hash); |
Linus Torvalds | 0145acc | 2012-03-02 14:32:59 -0800 | [diff] [blame] | 1960 | return end_name_hash(hash); |
| 1961 | } |
Linus Torvalds | ae942ae | 2012-03-02 19:40:57 -0800 | [diff] [blame] | 1962 | EXPORT_SYMBOL(full_name_hash); |
Linus Torvalds | 0145acc | 2012-03-02 14:32:59 -0800 | [diff] [blame] | 1963 | |
George Spelvin | fcfd2fb | 2016-05-20 08:41:37 -0400 | [diff] [blame] | 1964 | /* Return the "hash_len" (hash and length) of a null-terminated string */ |
George Spelvin | f2a031b | 2016-05-29 01:26:41 -0400 | [diff] [blame] | 1965 | u64 hashlen_string(const char *name) |
George Spelvin | fcfd2fb | 2016-05-20 08:41:37 -0400 | [diff] [blame] | 1966 | { |
| 1967 | unsigned long hash = init_name_hash(); |
| 1968 | unsigned long len = 0, c; |
| 1969 | |
| 1970 | c = (unsigned char)*name; |
George Spelvin | e0ab7af | 2016-05-29 08:05:56 -0400 | [diff] [blame] | 1971 | while (c) { |
George Spelvin | fcfd2fb | 2016-05-20 08:41:37 -0400 | [diff] [blame] | 1972 | len++; |
| 1973 | hash = partial_name_hash(c, hash); |
| 1974 | c = (unsigned char)name[len]; |
George Spelvin | e0ab7af | 2016-05-29 08:05:56 -0400 | [diff] [blame] | 1975 | } |
George Spelvin | fcfd2fb | 2016-05-20 08:41:37 -0400 | [diff] [blame] | 1976 | return hashlen_create(end_name_hash(hash), len); |
| 1977 | } |
George Spelvin | f2a031b | 2016-05-29 01:26:41 -0400 | [diff] [blame] | 1978 | EXPORT_SYMBOL(hashlen_string); |
George Spelvin | fcfd2fb | 2016-05-20 08:41:37 -0400 | [diff] [blame] | 1979 | |
Linus Torvalds | 3ddcd05 | 2011-08-06 22:45:50 -0700 | [diff] [blame] | 1980 | /* |
Linus Torvalds | 200e9ef | 2012-03-02 14:49:24 -0800 | [diff] [blame] | 1981 | * We know there's a real path component here of at least |
| 1982 | * one character. |
| 1983 | */ |
Linus Torvalds | d6bb3e9 | 2014-09-15 10:51:07 -0700 | [diff] [blame] | 1984 | static inline u64 hash_name(const char *name) |
Linus Torvalds | 200e9ef | 2012-03-02 14:49:24 -0800 | [diff] [blame] | 1985 | { |
| 1986 | unsigned long hash = init_name_hash(); |
| 1987 | unsigned long len = 0, c; |
| 1988 | |
| 1989 | c = (unsigned char)*name; |
| 1990 | do { |
| 1991 | len++; |
| 1992 | hash = partial_name_hash(c, hash); |
| 1993 | c = (unsigned char)name[len]; |
| 1994 | } while (c && c != '/'); |
Linus Torvalds | d6bb3e9 | 2014-09-15 10:51:07 -0700 | [diff] [blame] | 1995 | return hashlen_create(end_name_hash(hash), len); |
Linus Torvalds | 200e9ef | 2012-03-02 14:49:24 -0800 | [diff] [blame] | 1996 | } |
| 1997 | |
Linus Torvalds | bfcfaa7 | 2012-03-06 11:16:17 -0800 | [diff] [blame] | 1998 | #endif |
| 1999 | |
Linus Torvalds | 200e9ef | 2012-03-02 14:49:24 -0800 | [diff] [blame] | 2000 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2001 | * Name resolution. |
Prasanna Meda | ea3834d | 2005-04-29 16:00:17 +0100 | [diff] [blame] | 2002 | * This is the basic name resolution function, turning a pathname into |
| 2003 | * the final dentry. We expect 'base' to be positive and a directory. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2004 | * |
Prasanna Meda | ea3834d | 2005-04-29 16:00:17 +0100 | [diff] [blame] | 2005 | * Returns 0 and nd will have valid dentry and mnt on success. |
| 2006 | * Returns error and drops reference to input namei data on failure. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2007 | */ |
Al Viro | 6de88d7 | 2009-08-09 01:41:57 +0400 | [diff] [blame] | 2008 | static int link_path_walk(const char *name, struct nameidata *nd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2009 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2010 | int err; |
Al Viro | 32cd746 | 2015-04-18 20:30:49 -0400 | [diff] [blame] | 2011 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2012 | while (*name=='/') |
| 2013 | name++; |
| 2014 | if (!*name) |
Al Viro | 9e18f10 | 2015-04-18 20:44:34 -0400 | [diff] [blame] | 2015 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2016 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2017 | /* At this point we know we have a real path component. */ |
| 2018 | for(;;) { |
Linus Torvalds | d6bb3e9 | 2014-09-15 10:51:07 -0700 | [diff] [blame] | 2019 | u64 hash_len; |
Al Viro | fe479a5 | 2011-02-22 15:10:03 -0500 | [diff] [blame] | 2020 | int type; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2021 | |
Al Viro | 52094c8 | 2011-02-21 21:34:47 -0500 | [diff] [blame] | 2022 | err = may_lookup(nd); |
George Spelvin | 2a18da7a | 2016-05-23 07:43:58 -0400 | [diff] [blame] | 2023 | if (err) |
Al Viro | 3595e23 | 2015-05-09 16:54:45 -0400 | [diff] [blame] | 2024 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2025 | |
Linus Torvalds | d6bb3e9 | 2014-09-15 10:51:07 -0700 | [diff] [blame] | 2026 | hash_len = hash_name(name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2027 | |
Al Viro | fe479a5 | 2011-02-22 15:10:03 -0500 | [diff] [blame] | 2028 | type = LAST_NORM; |
Linus Torvalds | d6bb3e9 | 2014-09-15 10:51:07 -0700 | [diff] [blame] | 2029 | if (name[0] == '.') switch (hashlen_len(hash_len)) { |
Al Viro | fe479a5 | 2011-02-22 15:10:03 -0500 | [diff] [blame] | 2030 | case 2: |
Linus Torvalds | 200e9ef | 2012-03-02 14:49:24 -0800 | [diff] [blame] | 2031 | if (name[1] == '.') { |
Al Viro | fe479a5 | 2011-02-22 15:10:03 -0500 | [diff] [blame] | 2032 | type = LAST_DOTDOT; |
Al Viro | 16c2cd7 | 2011-02-22 15:50:10 -0500 | [diff] [blame] | 2033 | nd->flags |= LOOKUP_JUMPED; |
| 2034 | } |
Al Viro | fe479a5 | 2011-02-22 15:10:03 -0500 | [diff] [blame] | 2035 | break; |
| 2036 | case 1: |
| 2037 | type = LAST_DOT; |
| 2038 | } |
Al Viro | 5a202bc | 2011-03-08 14:17:44 -0500 | [diff] [blame] | 2039 | if (likely(type == LAST_NORM)) { |
| 2040 | struct dentry *parent = nd->path.dentry; |
Al Viro | 16c2cd7 | 2011-02-22 15:50:10 -0500 | [diff] [blame] | 2041 | nd->flags &= ~LOOKUP_JUMPED; |
Al Viro | 5a202bc | 2011-03-08 14:17:44 -0500 | [diff] [blame] | 2042 | if (unlikely(parent->d_flags & DCACHE_OP_HASH)) { |
James Hogan | a060dc5 | 2014-09-16 13:07:35 +0100 | [diff] [blame] | 2043 | struct qstr this = { { .hash_len = hash_len }, .name = name }; |
Linus Torvalds | da53be1 | 2013-05-21 15:22:44 -0700 | [diff] [blame] | 2044 | err = parent->d_op->d_hash(parent, &this); |
Al Viro | 5a202bc | 2011-03-08 14:17:44 -0500 | [diff] [blame] | 2045 | if (err < 0) |
Al Viro | 3595e23 | 2015-05-09 16:54:45 -0400 | [diff] [blame] | 2046 | return err; |
Linus Torvalds | d6bb3e9 | 2014-09-15 10:51:07 -0700 | [diff] [blame] | 2047 | hash_len = this.hash_len; |
| 2048 | name = this.name; |
Al Viro | 5a202bc | 2011-03-08 14:17:44 -0500 | [diff] [blame] | 2049 | } |
| 2050 | } |
Al Viro | fe479a5 | 2011-02-22 15:10:03 -0500 | [diff] [blame] | 2051 | |
Linus Torvalds | d6bb3e9 | 2014-09-15 10:51:07 -0700 | [diff] [blame] | 2052 | nd->last.hash_len = hash_len; |
| 2053 | nd->last.name = name; |
Al Viro | 5f4a6a6 | 2013-01-24 18:04:22 -0500 | [diff] [blame] | 2054 | nd->last_type = type; |
| 2055 | |
Linus Torvalds | d6bb3e9 | 2014-09-15 10:51:07 -0700 | [diff] [blame] | 2056 | name += hashlen_len(hash_len); |
| 2057 | if (!*name) |
Al Viro | bdf6cbf | 2015-04-18 20:21:40 -0400 | [diff] [blame] | 2058 | goto OK; |
Linus Torvalds | 200e9ef | 2012-03-02 14:49:24 -0800 | [diff] [blame] | 2059 | /* |
| 2060 | * If it wasn't NUL, we know it was '/'. Skip that |
| 2061 | * slash, and continue until no more slashes. |
| 2062 | */ |
| 2063 | do { |
Linus Torvalds | d6bb3e9 | 2014-09-15 10:51:07 -0700 | [diff] [blame] | 2064 | name++; |
| 2065 | } while (unlikely(*name == '/')); |
Al Viro | 8620c23 | 2015-05-04 08:58:35 -0400 | [diff] [blame] | 2066 | if (unlikely(!*name)) { |
| 2067 | OK: |
Al Viro | 368ee9b | 2015-05-08 17:19:59 -0400 | [diff] [blame] | 2068 | /* pathname body, done */ |
Al Viro | 8620c23 | 2015-05-04 08:58:35 -0400 | [diff] [blame] | 2069 | if (!nd->depth) |
| 2070 | return 0; |
| 2071 | name = nd->stack[nd->depth - 1].name; |
Al Viro | 368ee9b | 2015-05-08 17:19:59 -0400 | [diff] [blame] | 2072 | /* trailing symlink, done */ |
Al Viro | 8620c23 | 2015-05-04 08:58:35 -0400 | [diff] [blame] | 2073 | if (!name) |
| 2074 | return 0; |
| 2075 | /* last component of nested symlink */ |
Al Viro | 4693a54 | 2015-05-04 17:47:11 -0400 | [diff] [blame] | 2076 | err = walk_component(nd, WALK_GET | WALK_PUT); |
Al Viro | 8620c23 | 2015-05-04 08:58:35 -0400 | [diff] [blame] | 2077 | } else { |
Al Viro | 4693a54 | 2015-05-04 17:47:11 -0400 | [diff] [blame] | 2078 | err = walk_component(nd, WALK_GET); |
Al Viro | 8620c23 | 2015-05-04 08:58:35 -0400 | [diff] [blame] | 2079 | } |
Al Viro | ce57dfc | 2011-03-13 19:58:58 -0400 | [diff] [blame] | 2080 | if (err < 0) |
Al Viro | 3595e23 | 2015-05-09 16:54:45 -0400 | [diff] [blame] | 2081 | return err; |
Al Viro | fe479a5 | 2011-02-22 15:10:03 -0500 | [diff] [blame] | 2082 | |
Al Viro | ce57dfc | 2011-03-13 19:58:58 -0400 | [diff] [blame] | 2083 | if (err) { |
Al Viro | 626de99 | 2015-05-04 18:26:59 -0400 | [diff] [blame] | 2084 | const char *s = get_link(nd); |
Al Viro | 5a46027 | 2015-04-17 23:44:45 -0400 | [diff] [blame] | 2085 | |
Viresh Kumar | a1c8368 | 2015-08-12 15:59:44 +0530 | [diff] [blame] | 2086 | if (IS_ERR(s)) |
Al Viro | 3595e23 | 2015-05-09 16:54:45 -0400 | [diff] [blame] | 2087 | return PTR_ERR(s); |
Al Viro | d40bcc0 | 2015-04-18 20:03:03 -0400 | [diff] [blame] | 2088 | err = 0; |
| 2089 | if (unlikely(!s)) { |
| 2090 | /* jumped */ |
Al Viro | b9ff442 | 2015-05-02 20:19:23 -0400 | [diff] [blame] | 2091 | put_link(nd); |
Al Viro | d40bcc0 | 2015-04-18 20:03:03 -0400 | [diff] [blame] | 2092 | } else { |
Al Viro | fab51e8 | 2015-05-10 11:01:00 -0400 | [diff] [blame] | 2093 | nd->stack[nd->depth - 1].name = name; |
| 2094 | name = s; |
| 2095 | continue; |
Al Viro | d40bcc0 | 2015-04-18 20:03:03 -0400 | [diff] [blame] | 2096 | } |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 2097 | } |
Al Viro | 97242f9 | 2015-08-01 19:59:28 -0400 | [diff] [blame] | 2098 | if (unlikely(!d_can_lookup(nd->path.dentry))) { |
| 2099 | if (nd->flags & LOOKUP_RCU) { |
| 2100 | if (unlazy_walk(nd, NULL, 0)) |
| 2101 | return -ECHILD; |
| 2102 | } |
Al Viro | 3595e23 | 2015-05-09 16:54:45 -0400 | [diff] [blame] | 2103 | return -ENOTDIR; |
Al Viro | 97242f9 | 2015-08-01 19:59:28 -0400 | [diff] [blame] | 2104 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2105 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2106 | } |
| 2107 | |
Al Viro | c8a53ee | 2015-05-12 18:43:07 -0400 | [diff] [blame] | 2108 | static const char *path_init(struct nameidata *nd, unsigned flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2109 | { |
Prasanna Meda | ea3834d | 2005-04-29 16:00:17 +0100 | [diff] [blame] | 2110 | int retval = 0; |
Al Viro | c8a53ee | 2015-05-12 18:43:07 -0400 | [diff] [blame] | 2111 | const char *s = nd->name->name; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2112 | |
| 2113 | nd->last_type = LAST_ROOT; /* if there are only slashes... */ |
Al Viro | 980f3ea | 2014-11-20 14:20:24 -0500 | [diff] [blame] | 2114 | nd->flags = flags | LOOKUP_JUMPED | LOOKUP_PARENT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2115 | nd->depth = 0; |
Al Viro | 5b6ca02 | 2011-03-09 23:04:47 -0500 | [diff] [blame] | 2116 | if (flags & LOOKUP_ROOT) { |
David Howells | b18825a | 2013-09-12 19:22:53 +0100 | [diff] [blame] | 2117 | struct dentry *root = nd->root.dentry; |
| 2118 | struct inode *inode = root->d_inode; |
Al Viro | fd2f7cb | 2015-02-22 20:07:13 -0500 | [diff] [blame] | 2119 | if (*s) { |
Miklos Szeredi | 44b1d53 | 2014-04-01 17:08:41 +0200 | [diff] [blame] | 2120 | if (!d_can_lookup(root)) |
Al Viro | 368ee9b | 2015-05-08 17:19:59 -0400 | [diff] [blame] | 2121 | return ERR_PTR(-ENOTDIR); |
Al Viro | 73d049a | 2011-03-11 12:08:24 -0500 | [diff] [blame] | 2122 | retval = inode_permission(inode, MAY_EXEC); |
| 2123 | if (retval) |
Al Viro | 368ee9b | 2015-05-08 17:19:59 -0400 | [diff] [blame] | 2124 | return ERR_PTR(retval); |
Al Viro | 73d049a | 2011-03-11 12:08:24 -0500 | [diff] [blame] | 2125 | } |
Al Viro | 5b6ca02 | 2011-03-09 23:04:47 -0500 | [diff] [blame] | 2126 | nd->path = nd->root; |
| 2127 | nd->inode = inode; |
| 2128 | if (flags & LOOKUP_RCU) { |
Al Viro | 8b61e74 | 2013-11-08 12:45:01 -0500 | [diff] [blame] | 2129 | rcu_read_lock(); |
Al Viro | 5b6ca02 | 2011-03-09 23:04:47 -0500 | [diff] [blame] | 2130 | nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq); |
Al Viro | 8f47a016 | 2015-05-09 19:02:01 -0400 | [diff] [blame] | 2131 | nd->root_seq = nd->seq; |
Al Viro | 48a066e | 2013-09-29 22:06:07 -0400 | [diff] [blame] | 2132 | nd->m_seq = read_seqbegin(&mount_lock); |
Al Viro | 5b6ca02 | 2011-03-09 23:04:47 -0500 | [diff] [blame] | 2133 | } else { |
| 2134 | path_get(&nd->path); |
| 2135 | } |
Al Viro | 368ee9b | 2015-05-08 17:19:59 -0400 | [diff] [blame] | 2136 | return s; |
Al Viro | 5b6ca02 | 2011-03-09 23:04:47 -0500 | [diff] [blame] | 2137 | } |
| 2138 | |
Al Viro | 2a73787 | 2009-04-07 11:49:53 -0400 | [diff] [blame] | 2139 | nd->root.mnt = NULL; |
Al Viro | 248fb5b | 2015-12-05 20:51:58 -0500 | [diff] [blame] | 2140 | nd->path.mnt = NULL; |
| 2141 | nd->path.dentry = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2142 | |
Al Viro | 48a066e | 2013-09-29 22:06:07 -0400 | [diff] [blame] | 2143 | nd->m_seq = read_seqbegin(&mount_lock); |
Al Viro | fd2f7cb | 2015-02-22 20:07:13 -0500 | [diff] [blame] | 2144 | if (*s == '/') { |
Al Viro | 9e6697e | 2015-12-05 20:07:21 -0500 | [diff] [blame] | 2145 | if (flags & LOOKUP_RCU) |
Al Viro | 8b61e74 | 2013-11-08 12:45:01 -0500 | [diff] [blame] | 2146 | rcu_read_lock(); |
Al Viro | 9e6697e | 2015-12-05 20:07:21 -0500 | [diff] [blame] | 2147 | set_root(nd); |
Al Viro | 248fb5b | 2015-12-05 20:51:58 -0500 | [diff] [blame] | 2148 | if (likely(!nd_jump_root(nd))) |
Al Viro | ef55d91 | 2015-12-05 20:25:06 -0500 | [diff] [blame] | 2149 | return s; |
Al Viro | 248fb5b | 2015-12-05 20:51:58 -0500 | [diff] [blame] | 2150 | nd->root.mnt = NULL; |
Al Viro | ef55d91 | 2015-12-05 20:25:06 -0500 | [diff] [blame] | 2151 | rcu_read_unlock(); |
| 2152 | return ERR_PTR(-ECHILD); |
Al Viro | c8a53ee | 2015-05-12 18:43:07 -0400 | [diff] [blame] | 2153 | } else if (nd->dfd == AT_FDCWD) { |
Al Viro | e41f7d4 | 2011-02-22 14:02:58 -0500 | [diff] [blame] | 2154 | if (flags & LOOKUP_RCU) { |
| 2155 | struct fs_struct *fs = current->fs; |
| 2156 | unsigned seq; |
| 2157 | |
Al Viro | 8b61e74 | 2013-11-08 12:45:01 -0500 | [diff] [blame] | 2158 | rcu_read_lock(); |
Al Viro | e41f7d4 | 2011-02-22 14:02:58 -0500 | [diff] [blame] | 2159 | |
| 2160 | do { |
| 2161 | seq = read_seqcount_begin(&fs->seq); |
| 2162 | nd->path = fs->pwd; |
Al Viro | ef55d91 | 2015-12-05 20:25:06 -0500 | [diff] [blame] | 2163 | nd->inode = nd->path.dentry->d_inode; |
Al Viro | e41f7d4 | 2011-02-22 14:02:58 -0500 | [diff] [blame] | 2164 | nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq); |
| 2165 | } while (read_seqcount_retry(&fs->seq, seq)); |
| 2166 | } else { |
| 2167 | get_fs_pwd(current->fs, &nd->path); |
Al Viro | ef55d91 | 2015-12-05 20:25:06 -0500 | [diff] [blame] | 2168 | nd->inode = nd->path.dentry->d_inode; |
Al Viro | e41f7d4 | 2011-02-22 14:02:58 -0500 | [diff] [blame] | 2169 | } |
Al Viro | ef55d91 | 2015-12-05 20:25:06 -0500 | [diff] [blame] | 2170 | return s; |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 2171 | } else { |
Jeff Layton | 582aa64 | 2012-12-11 08:56:16 -0500 | [diff] [blame] | 2172 | /* Caller must check execute permissions on the starting path component */ |
Al Viro | c8a53ee | 2015-05-12 18:43:07 -0400 | [diff] [blame] | 2173 | struct fd f = fdget_raw(nd->dfd); |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 2174 | struct dentry *dentry; |
| 2175 | |
Al Viro | 2903ff0 | 2012-08-28 12:52:22 -0400 | [diff] [blame] | 2176 | if (!f.file) |
Al Viro | 368ee9b | 2015-05-08 17:19:59 -0400 | [diff] [blame] | 2177 | return ERR_PTR(-EBADF); |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 2178 | |
Al Viro | 2903ff0 | 2012-08-28 12:52:22 -0400 | [diff] [blame] | 2179 | dentry = f.file->f_path.dentry; |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 2180 | |
Al Viro | fd2f7cb | 2015-02-22 20:07:13 -0500 | [diff] [blame] | 2181 | if (*s) { |
Miklos Szeredi | 44b1d53 | 2014-04-01 17:08:41 +0200 | [diff] [blame] | 2182 | if (!d_can_lookup(dentry)) { |
Al Viro | 2903ff0 | 2012-08-28 12:52:22 -0400 | [diff] [blame] | 2183 | fdput(f); |
Al Viro | 368ee9b | 2015-05-08 17:19:59 -0400 | [diff] [blame] | 2184 | return ERR_PTR(-ENOTDIR); |
Al Viro | 2903ff0 | 2012-08-28 12:52:22 -0400 | [diff] [blame] | 2185 | } |
Al Viro | f52e0c1 | 2011-03-14 18:56:51 -0400 | [diff] [blame] | 2186 | } |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 2187 | |
Al Viro | 2903ff0 | 2012-08-28 12:52:22 -0400 | [diff] [blame] | 2188 | nd->path = f.file->f_path; |
Al Viro | e41f7d4 | 2011-02-22 14:02:58 -0500 | [diff] [blame] | 2189 | if (flags & LOOKUP_RCU) { |
Al Viro | 8b61e74 | 2013-11-08 12:45:01 -0500 | [diff] [blame] | 2190 | rcu_read_lock(); |
Al Viro | 34a26b9 | 2015-05-11 08:05:05 -0400 | [diff] [blame] | 2191 | nd->inode = nd->path.dentry->d_inode; |
| 2192 | nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq); |
Al Viro | e41f7d4 | 2011-02-22 14:02:58 -0500 | [diff] [blame] | 2193 | } else { |
Al Viro | 2903ff0 | 2012-08-28 12:52:22 -0400 | [diff] [blame] | 2194 | path_get(&nd->path); |
Al Viro | 34a26b9 | 2015-05-11 08:05:05 -0400 | [diff] [blame] | 2195 | nd->inode = nd->path.dentry->d_inode; |
Al Viro | e41f7d4 | 2011-02-22 14:02:58 -0500 | [diff] [blame] | 2196 | } |
Al Viro | 34a26b9 | 2015-05-11 08:05:05 -0400 | [diff] [blame] | 2197 | fdput(f); |
Al Viro | 368ee9b | 2015-05-08 17:19:59 -0400 | [diff] [blame] | 2198 | return s; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2199 | } |
Al Viro | 9b4a9b1 | 2009-04-07 11:44:16 -0400 | [diff] [blame] | 2200 | } |
| 2201 | |
Al Viro | 3bdba28 | 2015-05-08 17:37:07 -0400 | [diff] [blame] | 2202 | static const char *trailing_symlink(struct nameidata *nd) |
Al Viro | 95fa25d | 2015-04-22 13:46:57 -0400 | [diff] [blame] | 2203 | { |
| 2204 | const char *s; |
Al Viro | fec2fa2 | 2015-05-06 15:58:18 -0400 | [diff] [blame] | 2205 | int error = may_follow_link(nd); |
Al Viro | deb106c | 2015-05-08 18:05:21 -0400 | [diff] [blame] | 2206 | if (unlikely(error)) |
Al Viro | 3bdba28 | 2015-05-08 17:37:07 -0400 | [diff] [blame] | 2207 | return ERR_PTR(error); |
Al Viro | 95fa25d | 2015-04-22 13:46:57 -0400 | [diff] [blame] | 2208 | nd->flags |= LOOKUP_PARENT; |
Al Viro | fab51e8 | 2015-05-10 11:01:00 -0400 | [diff] [blame] | 2209 | nd->stack[0].name = NULL; |
Al Viro | 3b2e7f7 | 2015-04-19 00:53:50 -0400 | [diff] [blame] | 2210 | s = get_link(nd); |
Al Viro | deb106c | 2015-05-08 18:05:21 -0400 | [diff] [blame] | 2211 | return s ? s : ""; |
Al Viro | 95fa25d | 2015-04-22 13:46:57 -0400 | [diff] [blame] | 2212 | } |
| 2213 | |
Al Viro | caa8563 | 2015-04-22 17:52:47 -0400 | [diff] [blame] | 2214 | static inline int lookup_last(struct nameidata *nd) |
Al Viro | bd92d7f | 2011-03-14 19:54:59 -0400 | [diff] [blame] | 2215 | { |
| 2216 | if (nd->last_type == LAST_NORM && nd->last.name[nd->last.len]) |
| 2217 | nd->flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY; |
| 2218 | |
| 2219 | nd->flags &= ~LOOKUP_PARENT; |
Al Viro | deb106c | 2015-05-08 18:05:21 -0400 | [diff] [blame] | 2220 | return walk_component(nd, |
Al Viro | 4693a54 | 2015-05-04 17:47:11 -0400 | [diff] [blame] | 2221 | nd->flags & LOOKUP_FOLLOW |
| 2222 | ? nd->depth |
| 2223 | ? WALK_PUT | WALK_GET |
| 2224 | : WALK_GET |
| 2225 | : 0); |
Al Viro | bd92d7f | 2011-03-14 19:54:59 -0400 | [diff] [blame] | 2226 | } |
| 2227 | |
Al Viro | 9b4a9b1 | 2009-04-07 11:44:16 -0400 | [diff] [blame] | 2228 | /* Returns 0 and nd will be valid on success; Retuns error, otherwise. */ |
Al Viro | c8a53ee | 2015-05-12 18:43:07 -0400 | [diff] [blame] | 2229 | static int path_lookupat(struct nameidata *nd, unsigned flags, struct path *path) |
Al Viro | 9b4a9b1 | 2009-04-07 11:44:16 -0400 | [diff] [blame] | 2230 | { |
Al Viro | c8a53ee | 2015-05-12 18:43:07 -0400 | [diff] [blame] | 2231 | const char *s = path_init(nd, flags); |
Al Viro | bd92d7f | 2011-03-14 19:54:59 -0400 | [diff] [blame] | 2232 | int err; |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 2233 | |
Al Viro | 368ee9b | 2015-05-08 17:19:59 -0400 | [diff] [blame] | 2234 | if (IS_ERR(s)) |
| 2235 | return PTR_ERR(s); |
Al Viro | 3bdba28 | 2015-05-08 17:37:07 -0400 | [diff] [blame] | 2236 | while (!(err = link_path_walk(s, nd)) |
| 2237 | && ((err = lookup_last(nd)) > 0)) { |
| 2238 | s = trailing_symlink(nd); |
| 2239 | if (IS_ERR(s)) { |
| 2240 | err = PTR_ERR(s); |
| 2241 | break; |
Al Viro | bd92d7f | 2011-03-14 19:54:59 -0400 | [diff] [blame] | 2242 | } |
| 2243 | } |
Al Viro | 9f1fafe | 2011-03-25 11:00:12 -0400 | [diff] [blame] | 2244 | if (!err) |
| 2245 | err = complete_walk(nd); |
Al Viro | bd92d7f | 2011-03-14 19:54:59 -0400 | [diff] [blame] | 2246 | |
Al Viro | deb106c | 2015-05-08 18:05:21 -0400 | [diff] [blame] | 2247 | if (!err && nd->flags & LOOKUP_DIRECTORY) |
| 2248 | if (!d_can_lookup(nd->path.dentry)) |
Al Viro | bd23a53 | 2011-03-23 09:56:30 -0400 | [diff] [blame] | 2249 | err = -ENOTDIR; |
Al Viro | 625b6d1 | 2015-05-12 16:36:12 -0400 | [diff] [blame] | 2250 | if (!err) { |
| 2251 | *path = nd->path; |
| 2252 | nd->path.mnt = NULL; |
| 2253 | nd->path.dentry = NULL; |
| 2254 | } |
| 2255 | terminate_walk(nd); |
Al Viro | bd92d7f | 2011-03-14 19:54:59 -0400 | [diff] [blame] | 2256 | return err; |
Al Viro | ee0827c | 2011-02-21 23:38:09 -0500 | [diff] [blame] | 2257 | } |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 2258 | |
Al Viro | 625b6d1 | 2015-05-12 16:36:12 -0400 | [diff] [blame] | 2259 | static int filename_lookup(int dfd, struct filename *name, unsigned flags, |
Al Viro | 9ad1aaa | 2015-05-12 16:44:39 -0400 | [diff] [blame] | 2260 | struct path *path, struct path *root) |
Jeff Layton | 873f1ee | 2012-10-10 15:25:29 -0400 | [diff] [blame] | 2261 | { |
Al Viro | 894bc8c | 2015-05-02 07:16:16 -0400 | [diff] [blame] | 2262 | int retval; |
Al Viro | 9883d18 | 2015-05-13 07:28:08 -0400 | [diff] [blame] | 2263 | struct nameidata nd; |
Al Viro | abc9f5b | 2015-05-12 16:53:42 -0400 | [diff] [blame] | 2264 | if (IS_ERR(name)) |
| 2265 | return PTR_ERR(name); |
Al Viro | 9ad1aaa | 2015-05-12 16:44:39 -0400 | [diff] [blame] | 2266 | if (unlikely(root)) { |
| 2267 | nd.root = *root; |
| 2268 | flags |= LOOKUP_ROOT; |
| 2269 | } |
Al Viro | 9883d18 | 2015-05-13 07:28:08 -0400 | [diff] [blame] | 2270 | set_nameidata(&nd, dfd, name); |
Al Viro | c8a53ee | 2015-05-12 18:43:07 -0400 | [diff] [blame] | 2271 | retval = path_lookupat(&nd, flags | LOOKUP_RCU, path); |
Jeff Layton | 873f1ee | 2012-10-10 15:25:29 -0400 | [diff] [blame] | 2272 | if (unlikely(retval == -ECHILD)) |
Al Viro | c8a53ee | 2015-05-12 18:43:07 -0400 | [diff] [blame] | 2273 | retval = path_lookupat(&nd, flags, path); |
Jeff Layton | 873f1ee | 2012-10-10 15:25:29 -0400 | [diff] [blame] | 2274 | if (unlikely(retval == -ESTALE)) |
Al Viro | c8a53ee | 2015-05-12 18:43:07 -0400 | [diff] [blame] | 2275 | retval = path_lookupat(&nd, flags | LOOKUP_REVAL, path); |
Jeff Layton | 873f1ee | 2012-10-10 15:25:29 -0400 | [diff] [blame] | 2276 | |
| 2277 | if (likely(!retval)) |
Al Viro | 625b6d1 | 2015-05-12 16:36:12 -0400 | [diff] [blame] | 2278 | audit_inode(name, path->dentry, flags & LOOKUP_PARENT); |
Al Viro | 9883d18 | 2015-05-13 07:28:08 -0400 | [diff] [blame] | 2279 | restore_nameidata(); |
Al Viro | e4bd1c1 | 2015-05-12 16:40:39 -0400 | [diff] [blame] | 2280 | putname(name); |
Jeff Layton | 873f1ee | 2012-10-10 15:25:29 -0400 | [diff] [blame] | 2281 | return retval; |
| 2282 | } |
| 2283 | |
Al Viro | 8bcb77f | 2015-05-08 16:59:20 -0400 | [diff] [blame] | 2284 | /* Returns 0 and nd will be valid on success; Retuns error, otherwise. */ |
Al Viro | c8a53ee | 2015-05-12 18:43:07 -0400 | [diff] [blame] | 2285 | static int path_parentat(struct nameidata *nd, unsigned flags, |
Al Viro | 391172c | 2015-05-09 11:19:16 -0400 | [diff] [blame] | 2286 | struct path *parent) |
Al Viro | 8bcb77f | 2015-05-08 16:59:20 -0400 | [diff] [blame] | 2287 | { |
Al Viro | c8a53ee | 2015-05-12 18:43:07 -0400 | [diff] [blame] | 2288 | const char *s = path_init(nd, flags); |
Al Viro | 368ee9b | 2015-05-08 17:19:59 -0400 | [diff] [blame] | 2289 | int err; |
| 2290 | if (IS_ERR(s)) |
| 2291 | return PTR_ERR(s); |
| 2292 | err = link_path_walk(s, nd); |
Al Viro | 8bcb77f | 2015-05-08 16:59:20 -0400 | [diff] [blame] | 2293 | if (!err) |
| 2294 | err = complete_walk(nd); |
Al Viro | 391172c | 2015-05-09 11:19:16 -0400 | [diff] [blame] | 2295 | if (!err) { |
| 2296 | *parent = nd->path; |
| 2297 | nd->path.mnt = NULL; |
| 2298 | nd->path.dentry = NULL; |
| 2299 | } |
| 2300 | terminate_walk(nd); |
Al Viro | 8bcb77f | 2015-05-08 16:59:20 -0400 | [diff] [blame] | 2301 | return err; |
| 2302 | } |
| 2303 | |
Al Viro | 5c31b6c | 2015-05-12 17:32:54 -0400 | [diff] [blame] | 2304 | static struct filename *filename_parentat(int dfd, struct filename *name, |
Al Viro | 391172c | 2015-05-09 11:19:16 -0400 | [diff] [blame] | 2305 | unsigned int flags, struct path *parent, |
| 2306 | struct qstr *last, int *type) |
Al Viro | 8bcb77f | 2015-05-08 16:59:20 -0400 | [diff] [blame] | 2307 | { |
| 2308 | int retval; |
Al Viro | 9883d18 | 2015-05-13 07:28:08 -0400 | [diff] [blame] | 2309 | struct nameidata nd; |
Al Viro | 8bcb77f | 2015-05-08 16:59:20 -0400 | [diff] [blame] | 2310 | |
Al Viro | 5c31b6c | 2015-05-12 17:32:54 -0400 | [diff] [blame] | 2311 | if (IS_ERR(name)) |
| 2312 | return name; |
Al Viro | 9883d18 | 2015-05-13 07:28:08 -0400 | [diff] [blame] | 2313 | set_nameidata(&nd, dfd, name); |
Al Viro | c8a53ee | 2015-05-12 18:43:07 -0400 | [diff] [blame] | 2314 | retval = path_parentat(&nd, flags | LOOKUP_RCU, parent); |
Al Viro | 8bcb77f | 2015-05-08 16:59:20 -0400 | [diff] [blame] | 2315 | if (unlikely(retval == -ECHILD)) |
Al Viro | c8a53ee | 2015-05-12 18:43:07 -0400 | [diff] [blame] | 2316 | retval = path_parentat(&nd, flags, parent); |
Al Viro | 8bcb77f | 2015-05-08 16:59:20 -0400 | [diff] [blame] | 2317 | if (unlikely(retval == -ESTALE)) |
Al Viro | c8a53ee | 2015-05-12 18:43:07 -0400 | [diff] [blame] | 2318 | retval = path_parentat(&nd, flags | LOOKUP_REVAL, parent); |
Al Viro | 391172c | 2015-05-09 11:19:16 -0400 | [diff] [blame] | 2319 | if (likely(!retval)) { |
| 2320 | *last = nd.last; |
| 2321 | *type = nd.last_type; |
| 2322 | audit_inode(name, parent->dentry, LOOKUP_PARENT); |
Al Viro | 5c31b6c | 2015-05-12 17:32:54 -0400 | [diff] [blame] | 2323 | } else { |
| 2324 | putname(name); |
| 2325 | name = ERR_PTR(retval); |
Al Viro | 391172c | 2015-05-09 11:19:16 -0400 | [diff] [blame] | 2326 | } |
Al Viro | 9883d18 | 2015-05-13 07:28:08 -0400 | [diff] [blame] | 2327 | restore_nameidata(); |
Al Viro | 5c31b6c | 2015-05-12 17:32:54 -0400 | [diff] [blame] | 2328 | return name; |
Al Viro | 8bcb77f | 2015-05-08 16:59:20 -0400 | [diff] [blame] | 2329 | } |
| 2330 | |
Al Viro | 79714f7 | 2012-06-15 03:01:42 +0400 | [diff] [blame] | 2331 | /* does lookup, returns the object with parent locked */ |
| 2332 | struct dentry *kern_path_locked(const char *name, struct path *path) |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 2333 | { |
Al Viro | 5c31b6c | 2015-05-12 17:32:54 -0400 | [diff] [blame] | 2334 | struct filename *filename; |
| 2335 | struct dentry *d; |
Al Viro | 391172c | 2015-05-09 11:19:16 -0400 | [diff] [blame] | 2336 | struct qstr last; |
| 2337 | int type; |
Paul Moore | 5168910 | 2015-01-22 00:00:03 -0500 | [diff] [blame] | 2338 | |
Al Viro | 5c31b6c | 2015-05-12 17:32:54 -0400 | [diff] [blame] | 2339 | filename = filename_parentat(AT_FDCWD, getname_kernel(name), 0, path, |
| 2340 | &last, &type); |
Paul Moore | 5168910 | 2015-01-22 00:00:03 -0500 | [diff] [blame] | 2341 | if (IS_ERR(filename)) |
| 2342 | return ERR_CAST(filename); |
Al Viro | 5c31b6c | 2015-05-12 17:32:54 -0400 | [diff] [blame] | 2343 | if (unlikely(type != LAST_NORM)) { |
Al Viro | 391172c | 2015-05-09 11:19:16 -0400 | [diff] [blame] | 2344 | path_put(path); |
Al Viro | 5c31b6c | 2015-05-12 17:32:54 -0400 | [diff] [blame] | 2345 | putname(filename); |
| 2346 | return ERR_PTR(-EINVAL); |
Al Viro | 79714f7 | 2012-06-15 03:01:42 +0400 | [diff] [blame] | 2347 | } |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 2348 | inode_lock_nested(path->dentry->d_inode, I_MUTEX_PARENT); |
Al Viro | 391172c | 2015-05-09 11:19:16 -0400 | [diff] [blame] | 2349 | d = __lookup_hash(&last, path->dentry, 0); |
Al Viro | 79714f7 | 2012-06-15 03:01:42 +0400 | [diff] [blame] | 2350 | if (IS_ERR(d)) { |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 2351 | inode_unlock(path->dentry->d_inode); |
Al Viro | 391172c | 2015-05-09 11:19:16 -0400 | [diff] [blame] | 2352 | path_put(path); |
Al Viro | 79714f7 | 2012-06-15 03:01:42 +0400 | [diff] [blame] | 2353 | } |
Paul Moore | 5168910 | 2015-01-22 00:00:03 -0500 | [diff] [blame] | 2354 | putname(filename); |
Al Viro | 79714f7 | 2012-06-15 03:01:42 +0400 | [diff] [blame] | 2355 | return d; |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 2356 | } |
| 2357 | |
Al Viro | d181146 | 2008-08-02 00:49:18 -0400 | [diff] [blame] | 2358 | int kern_path(const char *name, unsigned int flags, struct path *path) |
| 2359 | { |
Al Viro | abc9f5b | 2015-05-12 16:53:42 -0400 | [diff] [blame] | 2360 | return filename_lookup(AT_FDCWD, getname_kernel(name), |
| 2361 | flags, path, NULL); |
Al Viro | d181146 | 2008-08-02 00:49:18 -0400 | [diff] [blame] | 2362 | } |
Al Viro | 4d35950 | 2014-03-14 12:20:17 -0400 | [diff] [blame] | 2363 | EXPORT_SYMBOL(kern_path); |
Al Viro | d181146 | 2008-08-02 00:49:18 -0400 | [diff] [blame] | 2364 | |
Josef 'Jeff' Sipek | 16f1820 | 2007-07-19 01:48:18 -0700 | [diff] [blame] | 2365 | /** |
| 2366 | * vfs_path_lookup - lookup a file path relative to a dentry-vfsmount pair |
| 2367 | * @dentry: pointer to dentry of the base directory |
| 2368 | * @mnt: pointer to vfs mount of the base directory |
| 2369 | * @name: pointer to file name |
| 2370 | * @flags: lookup flags |
Al Viro | e0a0124 | 2011-06-27 17:00:37 -0400 | [diff] [blame] | 2371 | * @path: pointer to struct path to fill |
Josef 'Jeff' Sipek | 16f1820 | 2007-07-19 01:48:18 -0700 | [diff] [blame] | 2372 | */ |
| 2373 | int vfs_path_lookup(struct dentry *dentry, struct vfsmount *mnt, |
| 2374 | const char *name, unsigned int flags, |
Al Viro | e0a0124 | 2011-06-27 17:00:37 -0400 | [diff] [blame] | 2375 | struct path *path) |
Josef 'Jeff' Sipek | 16f1820 | 2007-07-19 01:48:18 -0700 | [diff] [blame] | 2376 | { |
Al Viro | 9ad1aaa | 2015-05-12 16:44:39 -0400 | [diff] [blame] | 2377 | struct path root = {.mnt = mnt, .dentry = dentry}; |
Al Viro | 9ad1aaa | 2015-05-12 16:44:39 -0400 | [diff] [blame] | 2378 | /* the first argument of filename_lookup() is ignored with root */ |
Al Viro | abc9f5b | 2015-05-12 16:53:42 -0400 | [diff] [blame] | 2379 | return filename_lookup(AT_FDCWD, getname_kernel(name), |
| 2380 | flags , path, &root); |
Josef 'Jeff' Sipek | 16f1820 | 2007-07-19 01:48:18 -0700 | [diff] [blame] | 2381 | } |
Al Viro | 4d35950 | 2014-03-14 12:20:17 -0400 | [diff] [blame] | 2382 | EXPORT_SYMBOL(vfs_path_lookup); |
Josef 'Jeff' Sipek | 16f1820 | 2007-07-19 01:48:18 -0700 | [diff] [blame] | 2383 | |
Christoph Hellwig | eead191 | 2007-10-16 23:25:38 -0700 | [diff] [blame] | 2384 | /** |
Miklos Szeredi | 3c9fe8c | 2016-05-11 01:16:37 +0200 | [diff] [blame] | 2385 | * lookup_hash - lookup single pathname component on already hashed name |
| 2386 | * @name: name and hash to lookup |
| 2387 | * @base: base directory to lookup from |
| 2388 | * |
| 2389 | * The name must have been verified and hashed (see lookup_one_len()). Using |
| 2390 | * this after just full_name_hash() is unsafe. |
| 2391 | * |
| 2392 | * This function also doesn't check for search permission on base directory. |
| 2393 | * |
| 2394 | * Use lookup_one_len_unlocked() instead, unless you really know what you are |
| 2395 | * doing. |
| 2396 | * |
| 2397 | * Do not hold i_mutex; this helper takes i_mutex if necessary. |
| 2398 | */ |
| 2399 | struct dentry *lookup_hash(const struct qstr *name, struct dentry *base) |
| 2400 | { |
| 2401 | struct dentry *ret; |
| 2402 | |
| 2403 | ret = lookup_dcache(name, base, 0); |
| 2404 | if (!ret) |
| 2405 | ret = lookup_slow(name, base, 0); |
| 2406 | |
| 2407 | return ret; |
| 2408 | } |
| 2409 | EXPORT_SYMBOL(lookup_hash); |
| 2410 | |
| 2411 | /** |
Randy Dunlap | a6b9191 | 2008-03-19 17:01:00 -0700 | [diff] [blame] | 2412 | * lookup_one_len - filesystem helper to lookup single pathname component |
Christoph Hellwig | eead191 | 2007-10-16 23:25:38 -0700 | [diff] [blame] | 2413 | * @name: pathname component to lookup |
| 2414 | * @base: base directory to lookup from |
| 2415 | * @len: maximum length @len should be interpreted to |
| 2416 | * |
Randy Dunlap | a6b9191 | 2008-03-19 17:01:00 -0700 | [diff] [blame] | 2417 | * Note that this routine is purely a helper for filesystem usage and should |
Al Viro | 9e7543e | 2015-02-23 02:49:48 -0500 | [diff] [blame] | 2418 | * not be called by generic code. |
NeilBrown | bbddca8 | 2016-01-07 16:08:20 -0500 | [diff] [blame] | 2419 | * |
| 2420 | * The caller must hold base->i_mutex. |
Christoph Hellwig | eead191 | 2007-10-16 23:25:38 -0700 | [diff] [blame] | 2421 | */ |
James Morris | 057f6c0 | 2007-04-26 00:12:05 -0700 | [diff] [blame] | 2422 | struct dentry *lookup_one_len(const char *name, struct dentry *base, int len) |
| 2423 | { |
James Morris | 057f6c0 | 2007-04-26 00:12:05 -0700 | [diff] [blame] | 2424 | struct qstr this; |
Al Viro | 6a96ba5 | 2011-03-07 23:49:20 -0500 | [diff] [blame] | 2425 | unsigned int c; |
Miklos Szeredi | cda309d | 2012-03-26 12:54:21 +0200 | [diff] [blame] | 2426 | int err; |
James Morris | 057f6c0 | 2007-04-26 00:12:05 -0700 | [diff] [blame] | 2427 | |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 2428 | WARN_ON_ONCE(!inode_is_locked(base->d_inode)); |
David Woodhouse | 2f9092e | 2009-04-20 23:18:37 +0100 | [diff] [blame] | 2429 | |
Al Viro | 6a96ba5 | 2011-03-07 23:49:20 -0500 | [diff] [blame] | 2430 | this.name = name; |
| 2431 | this.len = len; |
Linus Torvalds | 0145acc | 2012-03-02 14:32:59 -0800 | [diff] [blame] | 2432 | this.hash = full_name_hash(name, len); |
Al Viro | 6a96ba5 | 2011-03-07 23:49:20 -0500 | [diff] [blame] | 2433 | if (!len) |
| 2434 | return ERR_PTR(-EACCES); |
| 2435 | |
Al Viro | 21d8a15 | 2012-11-29 22:17:21 -0500 | [diff] [blame] | 2436 | if (unlikely(name[0] == '.')) { |
| 2437 | if (len < 2 || (len == 2 && name[1] == '.')) |
| 2438 | return ERR_PTR(-EACCES); |
| 2439 | } |
| 2440 | |
Al Viro | 6a96ba5 | 2011-03-07 23:49:20 -0500 | [diff] [blame] | 2441 | while (len--) { |
| 2442 | c = *(const unsigned char *)name++; |
| 2443 | if (c == '/' || c == '\0') |
| 2444 | return ERR_PTR(-EACCES); |
Al Viro | 6a96ba5 | 2011-03-07 23:49:20 -0500 | [diff] [blame] | 2445 | } |
Al Viro | 5a202bc | 2011-03-08 14:17:44 -0500 | [diff] [blame] | 2446 | /* |
| 2447 | * See if the low-level filesystem might want |
| 2448 | * to use its own hash.. |
| 2449 | */ |
| 2450 | if (base->d_flags & DCACHE_OP_HASH) { |
Linus Torvalds | da53be1 | 2013-05-21 15:22:44 -0700 | [diff] [blame] | 2451 | int err = base->d_op->d_hash(base, &this); |
Al Viro | 5a202bc | 2011-03-08 14:17:44 -0500 | [diff] [blame] | 2452 | if (err < 0) |
| 2453 | return ERR_PTR(err); |
| 2454 | } |
Christoph Hellwig | eead191 | 2007-10-16 23:25:38 -0700 | [diff] [blame] | 2455 | |
Miklos Szeredi | cda309d | 2012-03-26 12:54:21 +0200 | [diff] [blame] | 2456 | err = inode_permission(base->d_inode, MAY_EXEC); |
| 2457 | if (err) |
| 2458 | return ERR_PTR(err); |
| 2459 | |
Al Viro | 72bd866 | 2012-06-10 17:17:17 -0400 | [diff] [blame] | 2460 | return __lookup_hash(&this, base, 0); |
James Morris | 057f6c0 | 2007-04-26 00:12:05 -0700 | [diff] [blame] | 2461 | } |
Al Viro | 4d35950 | 2014-03-14 12:20:17 -0400 | [diff] [blame] | 2462 | EXPORT_SYMBOL(lookup_one_len); |
James Morris | 057f6c0 | 2007-04-26 00:12:05 -0700 | [diff] [blame] | 2463 | |
NeilBrown | bbddca8 | 2016-01-07 16:08:20 -0500 | [diff] [blame] | 2464 | /** |
| 2465 | * lookup_one_len_unlocked - filesystem helper to lookup single pathname component |
| 2466 | * @name: pathname component to lookup |
| 2467 | * @base: base directory to lookup from |
| 2468 | * @len: maximum length @len should be interpreted to |
| 2469 | * |
| 2470 | * Note that this routine is purely a helper for filesystem usage and should |
| 2471 | * not be called by generic code. |
| 2472 | * |
| 2473 | * Unlike lookup_one_len, it should be called without the parent |
| 2474 | * i_mutex held, and will take the i_mutex itself if necessary. |
| 2475 | */ |
| 2476 | struct dentry *lookup_one_len_unlocked(const char *name, |
| 2477 | struct dentry *base, int len) |
| 2478 | { |
| 2479 | struct qstr this; |
| 2480 | unsigned int c; |
| 2481 | int err; |
NeilBrown | bbddca8 | 2016-01-07 16:08:20 -0500 | [diff] [blame] | 2482 | |
| 2483 | this.name = name; |
| 2484 | this.len = len; |
| 2485 | this.hash = full_name_hash(name, len); |
| 2486 | if (!len) |
| 2487 | return ERR_PTR(-EACCES); |
| 2488 | |
| 2489 | if (unlikely(name[0] == '.')) { |
| 2490 | if (len < 2 || (len == 2 && name[1] == '.')) |
| 2491 | return ERR_PTR(-EACCES); |
| 2492 | } |
| 2493 | |
| 2494 | while (len--) { |
| 2495 | c = *(const unsigned char *)name++; |
| 2496 | if (c == '/' || c == '\0') |
| 2497 | return ERR_PTR(-EACCES); |
| 2498 | } |
| 2499 | /* |
| 2500 | * See if the low-level filesystem might want |
| 2501 | * to use its own hash.. |
| 2502 | */ |
| 2503 | if (base->d_flags & DCACHE_OP_HASH) { |
| 2504 | int err = base->d_op->d_hash(base, &this); |
| 2505 | if (err < 0) |
| 2506 | return ERR_PTR(err); |
| 2507 | } |
| 2508 | |
| 2509 | err = inode_permission(base->d_inode, MAY_EXEC); |
| 2510 | if (err) |
| 2511 | return ERR_PTR(err); |
| 2512 | |
Miklos Szeredi | 3c9fe8c | 2016-05-11 01:16:37 +0200 | [diff] [blame] | 2513 | return lookup_hash(&this, base); |
NeilBrown | bbddca8 | 2016-01-07 16:08:20 -0500 | [diff] [blame] | 2514 | } |
| 2515 | EXPORT_SYMBOL(lookup_one_len_unlocked); |
| 2516 | |
Andy Whitcroft | 1fa1e7f | 2011-11-02 09:44:39 +0100 | [diff] [blame] | 2517 | int user_path_at_empty(int dfd, const char __user *name, unsigned flags, |
| 2518 | struct path *path, int *empty) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2519 | { |
Al Viro | abc9f5b | 2015-05-12 16:53:42 -0400 | [diff] [blame] | 2520 | return filename_lookup(dfd, getname_flags(name, flags, empty), |
| 2521 | flags, path, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2522 | } |
Al Viro | b853a16 | 2015-05-13 09:12:02 -0400 | [diff] [blame] | 2523 | EXPORT_SYMBOL(user_path_at_empty); |
Andy Whitcroft | 1fa1e7f | 2011-11-02 09:44:39 +0100 | [diff] [blame] | 2524 | |
Jeff Layton | 873f1ee | 2012-10-10 15:25:29 -0400 | [diff] [blame] | 2525 | /* |
| 2526 | * NB: most callers don't do anything directly with the reference to the |
| 2527 | * to struct filename, but the nd->last pointer points into the name string |
| 2528 | * allocated by getname. So we must hold the reference to it until all |
| 2529 | * path-walking is complete. |
| 2530 | */ |
Al Viro | a2ec4a2 | 2015-05-13 06:57:49 -0400 | [diff] [blame] | 2531 | static inline struct filename * |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 2532 | user_path_parent(int dfd, const char __user *path, |
| 2533 | struct path *parent, |
| 2534 | struct qstr *last, |
| 2535 | int *type, |
Jeff Layton | 9e790bd | 2012-12-11 12:10:09 -0500 | [diff] [blame] | 2536 | unsigned int flags) |
Al Viro | 2ad94ae | 2008-07-21 09:32:51 -0400 | [diff] [blame] | 2537 | { |
Jeff Layton | 9e790bd | 2012-12-11 12:10:09 -0500 | [diff] [blame] | 2538 | /* only LOOKUP_REVAL is allowed in extra flags */ |
Al Viro | 5c31b6c | 2015-05-12 17:32:54 -0400 | [diff] [blame] | 2539 | return filename_parentat(dfd, getname(path), flags & LOOKUP_REVAL, |
| 2540 | parent, last, type); |
Al Viro | 2ad94ae | 2008-07-21 09:32:51 -0400 | [diff] [blame] | 2541 | } |
| 2542 | |
Jeff Layton | 8033426 | 2013-07-26 06:23:25 -0400 | [diff] [blame] | 2543 | /** |
Al Viro | 197df04 | 2013-09-08 14:03:27 -0400 | [diff] [blame] | 2544 | * mountpoint_last - look up last component for umount |
Jeff Layton | 8033426 | 2013-07-26 06:23:25 -0400 | [diff] [blame] | 2545 | * @nd: pathwalk nameidata - currently pointing at parent directory of "last" |
| 2546 | * @path: pointer to container for result |
| 2547 | * |
| 2548 | * This is a special lookup_last function just for umount. In this case, we |
| 2549 | * need to resolve the path without doing any revalidation. |
| 2550 | * |
| 2551 | * The nameidata should be the result of doing a LOOKUP_PARENT pathwalk. Since |
| 2552 | * mountpoints are always pinned in the dcache, their ancestors are too. Thus, |
| 2553 | * in almost all cases, this lookup will be served out of the dcache. The only |
| 2554 | * cases where it won't are if nd->last refers to a symlink or the path is |
| 2555 | * bogus and it doesn't exist. |
| 2556 | * |
| 2557 | * Returns: |
| 2558 | * -error: if there was an error during lookup. This includes -ENOENT if the |
| 2559 | * lookup found a negative dentry. The nd->path reference will also be |
| 2560 | * put in this case. |
| 2561 | * |
| 2562 | * 0: if we successfully resolved nd->path and found it to not to be a |
| 2563 | * symlink that needs to be followed. "path" will also be populated. |
| 2564 | * The nd->path reference will also be put. |
| 2565 | * |
| 2566 | * 1: if we successfully resolved nd->last and found it to be a symlink |
| 2567 | * that needs to be followed. "path" will be populated with the path |
| 2568 | * to the link, and nd->path will *not* be put. |
| 2569 | */ |
| 2570 | static int |
Al Viro | 197df04 | 2013-09-08 14:03:27 -0400 | [diff] [blame] | 2571 | mountpoint_last(struct nameidata *nd, struct path *path) |
Jeff Layton | 8033426 | 2013-07-26 06:23:25 -0400 | [diff] [blame] | 2572 | { |
| 2573 | int error = 0; |
| 2574 | struct dentry *dentry; |
| 2575 | struct dentry *dir = nd->path.dentry; |
| 2576 | |
Al Viro | 3575952 | 2013-09-08 13:41:33 -0400 | [diff] [blame] | 2577 | /* If we're in rcuwalk, drop out of it to handle last component */ |
| 2578 | if (nd->flags & LOOKUP_RCU) { |
Al Viro | 6e9918b | 2015-05-05 09:26:05 -0400 | [diff] [blame] | 2579 | if (unlazy_walk(nd, NULL, 0)) |
Al Viro | deb106c | 2015-05-08 18:05:21 -0400 | [diff] [blame] | 2580 | return -ECHILD; |
Jeff Layton | 8033426 | 2013-07-26 06:23:25 -0400 | [diff] [blame] | 2581 | } |
| 2582 | |
| 2583 | nd->flags &= ~LOOKUP_PARENT; |
| 2584 | |
| 2585 | if (unlikely(nd->last_type != LAST_NORM)) { |
| 2586 | error = handle_dots(nd, nd->last_type); |
Al Viro | 3575952 | 2013-09-08 13:41:33 -0400 | [diff] [blame] | 2587 | if (error) |
Al Viro | deb106c | 2015-05-08 18:05:21 -0400 | [diff] [blame] | 2588 | return error; |
Al Viro | 3575952 | 2013-09-08 13:41:33 -0400 | [diff] [blame] | 2589 | dentry = dget(nd->path.dentry); |
Al Viro | 949a852 | 2016-03-06 14:20:52 -0500 | [diff] [blame] | 2590 | } else { |
| 2591 | dentry = d_lookup(dir, &nd->last); |
Jeff Layton | 8033426 | 2013-07-26 06:23:25 -0400 | [diff] [blame] | 2592 | if (!dentry) { |
Al Viro | 949a852 | 2016-03-06 14:20:52 -0500 | [diff] [blame] | 2593 | /* |
| 2594 | * No cached dentry. Mounted dentries are pinned in the |
| 2595 | * cache, so that means that this dentry is probably |
| 2596 | * a symlink or the path doesn't actually point |
| 2597 | * to a mounted dentry. |
| 2598 | */ |
| 2599 | dentry = lookup_slow(&nd->last, dir, |
| 2600 | nd->flags | LOOKUP_NO_REVAL); |
| 2601 | if (IS_ERR(dentry)) |
| 2602 | return PTR_ERR(dentry); |
Dave Jones | bcceeeb | 2013-09-10 17:04:25 -0400 | [diff] [blame] | 2603 | } |
Jeff Layton | 8033426 | 2013-07-26 06:23:25 -0400 | [diff] [blame] | 2604 | } |
David Howells | 698934d | 2015-03-17 17:33:52 +0000 | [diff] [blame] | 2605 | if (d_is_negative(dentry)) { |
Al Viro | 3575952 | 2013-09-08 13:41:33 -0400 | [diff] [blame] | 2606 | dput(dentry); |
Al Viro | deb106c | 2015-05-08 18:05:21 -0400 | [diff] [blame] | 2607 | return -ENOENT; |
Jeff Layton | 8033426 | 2013-07-26 06:23:25 -0400 | [diff] [blame] | 2608 | } |
Al Viro | 191d7f7 | 2015-05-04 08:26:45 -0400 | [diff] [blame] | 2609 | if (nd->depth) |
| 2610 | put_link(nd); |
Al Viro | 3575952 | 2013-09-08 13:41:33 -0400 | [diff] [blame] | 2611 | path->dentry = dentry; |
Vasily Averin | 295dc39 | 2014-07-21 12:30:23 +0400 | [diff] [blame] | 2612 | path->mnt = nd->path.mnt; |
Al Viro | 181548c | 2015-05-07 19:54:34 -0400 | [diff] [blame] | 2613 | error = should_follow_link(nd, path, nd->flags & LOOKUP_FOLLOW, |
| 2614 | d_backing_inode(dentry), 0); |
Al Viro | deb106c | 2015-05-08 18:05:21 -0400 | [diff] [blame] | 2615 | if (unlikely(error)) |
Al Viro | d63ff28 | 2015-05-04 18:13:23 -0400 | [diff] [blame] | 2616 | return error; |
Vasily Averin | 295dc39 | 2014-07-21 12:30:23 +0400 | [diff] [blame] | 2617 | mntget(path->mnt); |
Al Viro | 3575952 | 2013-09-08 13:41:33 -0400 | [diff] [blame] | 2618 | follow_mount(path); |
Al Viro | deb106c | 2015-05-08 18:05:21 -0400 | [diff] [blame] | 2619 | return 0; |
Jeff Layton | 8033426 | 2013-07-26 06:23:25 -0400 | [diff] [blame] | 2620 | } |
| 2621 | |
| 2622 | /** |
Al Viro | 197df04 | 2013-09-08 14:03:27 -0400 | [diff] [blame] | 2623 | * path_mountpoint - look up a path to be umounted |
Masanari Iida | 2a78b85 | 2015-09-09 15:39:23 -0700 | [diff] [blame] | 2624 | * @nd: lookup context |
Jeff Layton | 8033426 | 2013-07-26 06:23:25 -0400 | [diff] [blame] | 2625 | * @flags: lookup flags |
Al Viro | c8a53ee | 2015-05-12 18:43:07 -0400 | [diff] [blame] | 2626 | * @path: pointer to container for result |
Jeff Layton | 8033426 | 2013-07-26 06:23:25 -0400 | [diff] [blame] | 2627 | * |
| 2628 | * Look up the given name, but don't attempt to revalidate the last component. |
Randy Dunlap | 606d6fe | 2013-10-19 14:56:55 -0700 | [diff] [blame] | 2629 | * Returns 0 and "path" will be valid on success; Returns error otherwise. |
Jeff Layton | 8033426 | 2013-07-26 06:23:25 -0400 | [diff] [blame] | 2630 | */ |
| 2631 | static int |
Al Viro | c8a53ee | 2015-05-12 18:43:07 -0400 | [diff] [blame] | 2632 | path_mountpoint(struct nameidata *nd, unsigned flags, struct path *path) |
Jeff Layton | 8033426 | 2013-07-26 06:23:25 -0400 | [diff] [blame] | 2633 | { |
Al Viro | c8a53ee | 2015-05-12 18:43:07 -0400 | [diff] [blame] | 2634 | const char *s = path_init(nd, flags); |
Al Viro | 368ee9b | 2015-05-08 17:19:59 -0400 | [diff] [blame] | 2635 | int err; |
| 2636 | if (IS_ERR(s)) |
| 2637 | return PTR_ERR(s); |
Al Viro | 3bdba28 | 2015-05-08 17:37:07 -0400 | [diff] [blame] | 2638 | while (!(err = link_path_walk(s, nd)) && |
| 2639 | (err = mountpoint_last(nd, path)) > 0) { |
| 2640 | s = trailing_symlink(nd); |
| 2641 | if (IS_ERR(s)) { |
| 2642 | err = PTR_ERR(s); |
Jeff Layton | 8033426 | 2013-07-26 06:23:25 -0400 | [diff] [blame] | 2643 | break; |
Al Viro | 3bdba28 | 2015-05-08 17:37:07 -0400 | [diff] [blame] | 2644 | } |
Jeff Layton | 8033426 | 2013-07-26 06:23:25 -0400 | [diff] [blame] | 2645 | } |
Al Viro | deb106c | 2015-05-08 18:05:21 -0400 | [diff] [blame] | 2646 | terminate_walk(nd); |
Jeff Layton | 8033426 | 2013-07-26 06:23:25 -0400 | [diff] [blame] | 2647 | return err; |
| 2648 | } |
| 2649 | |
Al Viro | 2d86465 | 2013-09-08 20:18:44 -0400 | [diff] [blame] | 2650 | static int |
Al Viro | 668696d | 2015-02-22 19:44:00 -0500 | [diff] [blame] | 2651 | filename_mountpoint(int dfd, struct filename *name, struct path *path, |
Al Viro | 2d86465 | 2013-09-08 20:18:44 -0400 | [diff] [blame] | 2652 | unsigned int flags) |
| 2653 | { |
Al Viro | 9883d18 | 2015-05-13 07:28:08 -0400 | [diff] [blame] | 2654 | struct nameidata nd; |
Al Viro | cbaab2d | 2015-01-22 02:49:00 -0500 | [diff] [blame] | 2655 | int error; |
Al Viro | 668696d | 2015-02-22 19:44:00 -0500 | [diff] [blame] | 2656 | if (IS_ERR(name)) |
| 2657 | return PTR_ERR(name); |
Al Viro | 9883d18 | 2015-05-13 07:28:08 -0400 | [diff] [blame] | 2658 | set_nameidata(&nd, dfd, name); |
Al Viro | c8a53ee | 2015-05-12 18:43:07 -0400 | [diff] [blame] | 2659 | error = path_mountpoint(&nd, flags | LOOKUP_RCU, path); |
Al Viro | 2d86465 | 2013-09-08 20:18:44 -0400 | [diff] [blame] | 2660 | if (unlikely(error == -ECHILD)) |
Al Viro | c8a53ee | 2015-05-12 18:43:07 -0400 | [diff] [blame] | 2661 | error = path_mountpoint(&nd, flags, path); |
Al Viro | 2d86465 | 2013-09-08 20:18:44 -0400 | [diff] [blame] | 2662 | if (unlikely(error == -ESTALE)) |
Al Viro | c8a53ee | 2015-05-12 18:43:07 -0400 | [diff] [blame] | 2663 | error = path_mountpoint(&nd, flags | LOOKUP_REVAL, path); |
Al Viro | 2d86465 | 2013-09-08 20:18:44 -0400 | [diff] [blame] | 2664 | if (likely(!error)) |
Al Viro | 668696d | 2015-02-22 19:44:00 -0500 | [diff] [blame] | 2665 | audit_inode(name, path->dentry, 0); |
Al Viro | 9883d18 | 2015-05-13 07:28:08 -0400 | [diff] [blame] | 2666 | restore_nameidata(); |
Al Viro | 668696d | 2015-02-22 19:44:00 -0500 | [diff] [blame] | 2667 | putname(name); |
Al Viro | 2d86465 | 2013-09-08 20:18:44 -0400 | [diff] [blame] | 2668 | return error; |
| 2669 | } |
| 2670 | |
Jeff Layton | 8033426 | 2013-07-26 06:23:25 -0400 | [diff] [blame] | 2671 | /** |
Al Viro | 197df04 | 2013-09-08 14:03:27 -0400 | [diff] [blame] | 2672 | * user_path_mountpoint_at - lookup a path from userland in order to umount it |
Jeff Layton | 8033426 | 2013-07-26 06:23:25 -0400 | [diff] [blame] | 2673 | * @dfd: directory file descriptor |
| 2674 | * @name: pathname from userland |
| 2675 | * @flags: lookup flags |
| 2676 | * @path: pointer to container to hold result |
| 2677 | * |
| 2678 | * A umount is a special case for path walking. We're not actually interested |
| 2679 | * in the inode in this situation, and ESTALE errors can be a problem. We |
| 2680 | * simply want track down the dentry and vfsmount attached at the mountpoint |
| 2681 | * and avoid revalidating the last component. |
| 2682 | * |
| 2683 | * Returns 0 and populates "path" on success. |
| 2684 | */ |
| 2685 | int |
Al Viro | 197df04 | 2013-09-08 14:03:27 -0400 | [diff] [blame] | 2686 | user_path_mountpoint_at(int dfd, const char __user *name, unsigned int flags, |
Jeff Layton | 8033426 | 2013-07-26 06:23:25 -0400 | [diff] [blame] | 2687 | struct path *path) |
| 2688 | { |
Al Viro | cbaab2d | 2015-01-22 02:49:00 -0500 | [diff] [blame] | 2689 | return filename_mountpoint(dfd, getname(name), path, flags); |
Jeff Layton | 8033426 | 2013-07-26 06:23:25 -0400 | [diff] [blame] | 2690 | } |
| 2691 | |
Al Viro | 2d86465 | 2013-09-08 20:18:44 -0400 | [diff] [blame] | 2692 | int |
| 2693 | kern_path_mountpoint(int dfd, const char *name, struct path *path, |
| 2694 | unsigned int flags) |
| 2695 | { |
Al Viro | cbaab2d | 2015-01-22 02:49:00 -0500 | [diff] [blame] | 2696 | return filename_mountpoint(dfd, getname_kernel(name), path, flags); |
Al Viro | 2d86465 | 2013-09-08 20:18:44 -0400 | [diff] [blame] | 2697 | } |
| 2698 | EXPORT_SYMBOL(kern_path_mountpoint); |
| 2699 | |
Miklos Szeredi | cbdf35b | 2014-10-24 00:14:36 +0200 | [diff] [blame] | 2700 | int __check_sticky(struct inode *dir, struct inode *inode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2701 | { |
Eric W. Biederman | 8e96e3b | 2012-03-03 21:17:15 -0800 | [diff] [blame] | 2702 | kuid_t fsuid = current_fsuid(); |
David Howells | da9592e | 2008-11-14 10:39:05 +1100 | [diff] [blame] | 2703 | |
Eric W. Biederman | 8e96e3b | 2012-03-03 21:17:15 -0800 | [diff] [blame] | 2704 | if (uid_eq(inode->i_uid, fsuid)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2705 | return 0; |
Eric W. Biederman | 8e96e3b | 2012-03-03 21:17:15 -0800 | [diff] [blame] | 2706 | if (uid_eq(dir->i_uid, fsuid)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2707 | return 0; |
Andy Lutomirski | 23adbe1 | 2014-06-10 12:45:42 -0700 | [diff] [blame] | 2708 | return !capable_wrt_inode_uidgid(inode, CAP_FOWNER); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2709 | } |
Miklos Szeredi | cbdf35b | 2014-10-24 00:14:36 +0200 | [diff] [blame] | 2710 | EXPORT_SYMBOL(__check_sticky); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2711 | |
| 2712 | /* |
| 2713 | * Check whether we can remove a link victim from directory dir, check |
| 2714 | * whether the type of victim is right. |
| 2715 | * 1. We can't do it if dir is read-only (done in permission()) |
| 2716 | * 2. We should have write and exec permissions on dir |
| 2717 | * 3. We can't remove anything from append-only dir |
| 2718 | * 4. We can't do anything with immutable dir (done in permission()) |
| 2719 | * 5. If the sticky bit on dir is set we should either |
| 2720 | * a. be owner of dir, or |
| 2721 | * b. be owner of victim, or |
| 2722 | * c. have CAP_FOWNER capability |
| 2723 | * 6. If the victim is append-only or immutable we can't do antyhing with |
| 2724 | * links pointing to it. |
| 2725 | * 7. If we were asked to remove a directory and victim isn't one - ENOTDIR. |
| 2726 | * 8. If we were asked to remove a non-directory and victim isn't one - EISDIR. |
| 2727 | * 9. We can't remove a root or mountpoint. |
| 2728 | * 10. We don't allow removal of NFS sillyrenamed files; it's handled by |
| 2729 | * nfs_async_unlink(). |
| 2730 | */ |
David Howells | b18825a | 2013-09-12 19:22:53 +0100 | [diff] [blame] | 2731 | static int may_delete(struct inode *dir, struct dentry *victim, bool isdir) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2732 | { |
David Howells | 63afdfc | 2015-05-06 15:59:00 +0100 | [diff] [blame] | 2733 | struct inode *inode = d_backing_inode(victim); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2734 | int error; |
| 2735 | |
David Howells | b18825a | 2013-09-12 19:22:53 +0100 | [diff] [blame] | 2736 | if (d_is_negative(victim)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2737 | return -ENOENT; |
David Howells | b18825a | 2013-09-12 19:22:53 +0100 | [diff] [blame] | 2738 | BUG_ON(!inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2739 | |
| 2740 | BUG_ON(victim->d_parent->d_inode != dir); |
Jeff Layton | 4fa6b5e | 2012-10-10 15:25:25 -0400 | [diff] [blame] | 2741 | audit_inode_child(dir, victim, AUDIT_TYPE_CHILD_DELETE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2742 | |
Al Viro | f419a2e | 2008-07-22 00:07:17 -0400 | [diff] [blame] | 2743 | error = inode_permission(dir, MAY_WRITE | MAY_EXEC); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2744 | if (error) |
| 2745 | return error; |
| 2746 | if (IS_APPEND(dir)) |
| 2747 | return -EPERM; |
David Howells | b18825a | 2013-09-12 19:22:53 +0100 | [diff] [blame] | 2748 | |
| 2749 | if (check_sticky(dir, inode) || IS_APPEND(inode) || |
| 2750 | IS_IMMUTABLE(inode) || IS_SWAPFILE(inode)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2751 | return -EPERM; |
| 2752 | if (isdir) { |
Miklos Szeredi | 44b1d53 | 2014-04-01 17:08:41 +0200 | [diff] [blame] | 2753 | if (!d_is_dir(victim)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2754 | return -ENOTDIR; |
| 2755 | if (IS_ROOT(victim)) |
| 2756 | return -EBUSY; |
Miklos Szeredi | 44b1d53 | 2014-04-01 17:08:41 +0200 | [diff] [blame] | 2757 | } else if (d_is_dir(victim)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2758 | return -EISDIR; |
| 2759 | if (IS_DEADDIR(dir)) |
| 2760 | return -ENOENT; |
| 2761 | if (victim->d_flags & DCACHE_NFSFS_RENAMED) |
| 2762 | return -EBUSY; |
| 2763 | return 0; |
| 2764 | } |
| 2765 | |
| 2766 | /* Check whether we can create an object with dentry child in directory |
| 2767 | * dir. |
| 2768 | * 1. We can't do it if child already exists (open has special treatment for |
| 2769 | * this case, but since we are inlined it's OK) |
| 2770 | * 2. We can't do it if dir is read-only (done in permission()) |
| 2771 | * 3. We should have write and exec permissions on dir |
| 2772 | * 4. We can't do it if dir is immutable (done in permission()) |
| 2773 | */ |
Miklos Szeredi | a95164d | 2008-07-30 15:08:48 +0200 | [diff] [blame] | 2774 | static inline int may_create(struct inode *dir, struct dentry *child) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2775 | { |
Jeff Layton | 14e972b | 2013-05-08 10:25:58 -0400 | [diff] [blame] | 2776 | audit_inode_child(dir, child, AUDIT_TYPE_CHILD_CREATE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2777 | if (child->d_inode) |
| 2778 | return -EEXIST; |
| 2779 | if (IS_DEADDIR(dir)) |
| 2780 | return -ENOENT; |
Al Viro | f419a2e | 2008-07-22 00:07:17 -0400 | [diff] [blame] | 2781 | return inode_permission(dir, MAY_WRITE | MAY_EXEC); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2782 | } |
| 2783 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2784 | /* |
| 2785 | * p1 and p2 should be directories on the same fs. |
| 2786 | */ |
| 2787 | struct dentry *lock_rename(struct dentry *p1, struct dentry *p2) |
| 2788 | { |
| 2789 | struct dentry *p; |
| 2790 | |
| 2791 | if (p1 == p2) { |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 2792 | inode_lock_nested(p1->d_inode, I_MUTEX_PARENT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2793 | return NULL; |
| 2794 | } |
| 2795 | |
Al Viro | fc64005 | 2016-04-10 01:33:30 -0400 | [diff] [blame] | 2796 | mutex_lock(&p1->d_sb->s_vfs_rename_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2797 | |
OGAWA Hirofumi | e2761a1 | 2008-10-16 07:50:28 +0900 | [diff] [blame] | 2798 | p = d_ancestor(p2, p1); |
| 2799 | if (p) { |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 2800 | inode_lock_nested(p2->d_inode, I_MUTEX_PARENT); |
| 2801 | inode_lock_nested(p1->d_inode, I_MUTEX_CHILD); |
OGAWA Hirofumi | e2761a1 | 2008-10-16 07:50:28 +0900 | [diff] [blame] | 2802 | return p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2803 | } |
| 2804 | |
OGAWA Hirofumi | e2761a1 | 2008-10-16 07:50:28 +0900 | [diff] [blame] | 2805 | p = d_ancestor(p1, p2); |
| 2806 | if (p) { |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 2807 | inode_lock_nested(p1->d_inode, I_MUTEX_PARENT); |
| 2808 | inode_lock_nested(p2->d_inode, I_MUTEX_CHILD); |
OGAWA Hirofumi | e2761a1 | 2008-10-16 07:50:28 +0900 | [diff] [blame] | 2809 | return p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2810 | } |
| 2811 | |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 2812 | inode_lock_nested(p1->d_inode, I_MUTEX_PARENT); |
| 2813 | inode_lock_nested(p2->d_inode, I_MUTEX_PARENT2); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2814 | return NULL; |
| 2815 | } |
Al Viro | 4d35950 | 2014-03-14 12:20:17 -0400 | [diff] [blame] | 2816 | EXPORT_SYMBOL(lock_rename); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2817 | |
| 2818 | void unlock_rename(struct dentry *p1, struct dentry *p2) |
| 2819 | { |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 2820 | inode_unlock(p1->d_inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2821 | if (p1 != p2) { |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 2822 | inode_unlock(p2->d_inode); |
Al Viro | fc64005 | 2016-04-10 01:33:30 -0400 | [diff] [blame] | 2823 | mutex_unlock(&p1->d_sb->s_vfs_rename_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2824 | } |
| 2825 | } |
Al Viro | 4d35950 | 2014-03-14 12:20:17 -0400 | [diff] [blame] | 2826 | EXPORT_SYMBOL(unlock_rename); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2827 | |
Al Viro | 4acdaf2 | 2011-07-26 01:42:34 -0400 | [diff] [blame] | 2828 | int vfs_create(struct inode *dir, struct dentry *dentry, umode_t mode, |
Al Viro | 312b63f | 2012-06-10 18:09:36 -0400 | [diff] [blame] | 2829 | bool want_excl) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2830 | { |
Miklos Szeredi | a95164d | 2008-07-30 15:08:48 +0200 | [diff] [blame] | 2831 | int error = may_create(dir, dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2832 | if (error) |
| 2833 | return error; |
| 2834 | |
Al Viro | acfa438 | 2008-12-04 10:06:33 -0500 | [diff] [blame] | 2835 | if (!dir->i_op->create) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2836 | return -EACCES; /* shouldn't it be ENOSYS? */ |
| 2837 | mode &= S_IALLUGO; |
| 2838 | mode |= S_IFREG; |
| 2839 | error = security_inode_create(dir, dentry, mode); |
| 2840 | if (error) |
| 2841 | return error; |
Al Viro | 312b63f | 2012-06-10 18:09:36 -0400 | [diff] [blame] | 2842 | error = dir->i_op->create(dir, dentry, mode, want_excl); |
Stephen Smalley | a74574a | 2005-09-09 13:01:44 -0700 | [diff] [blame] | 2843 | if (!error) |
Amy Griffis | f38aa94 | 2005-11-03 15:57:06 +0000 | [diff] [blame] | 2844 | fsnotify_create(dir, dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2845 | return error; |
| 2846 | } |
Al Viro | 4d35950 | 2014-03-14 12:20:17 -0400 | [diff] [blame] | 2847 | EXPORT_SYMBOL(vfs_create); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2848 | |
Al Viro | 73d049a | 2011-03-11 12:08:24 -0500 | [diff] [blame] | 2849 | static int may_open(struct path *path, int acc_mode, int flag) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2850 | { |
Christoph Hellwig | 3fb6419 | 2008-10-24 09:58:10 +0200 | [diff] [blame] | 2851 | struct dentry *dentry = path->dentry; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2852 | struct inode *inode = dentry->d_inode; |
| 2853 | int error; |
| 2854 | |
| 2855 | if (!inode) |
| 2856 | return -ENOENT; |
| 2857 | |
Christoph Hellwig | c8fe8f3 | 2009-01-05 19:27:23 +0100 | [diff] [blame] | 2858 | switch (inode->i_mode & S_IFMT) { |
| 2859 | case S_IFLNK: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2860 | return -ELOOP; |
Christoph Hellwig | c8fe8f3 | 2009-01-05 19:27:23 +0100 | [diff] [blame] | 2861 | case S_IFDIR: |
| 2862 | if (acc_mode & MAY_WRITE) |
| 2863 | return -EISDIR; |
| 2864 | break; |
| 2865 | case S_IFBLK: |
| 2866 | case S_IFCHR: |
Christoph Hellwig | 3fb6419 | 2008-10-24 09:58:10 +0200 | [diff] [blame] | 2867 | if (path->mnt->mnt_flags & MNT_NODEV) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2868 | return -EACCES; |
Christoph Hellwig | c8fe8f3 | 2009-01-05 19:27:23 +0100 | [diff] [blame] | 2869 | /*FALLTHRU*/ |
| 2870 | case S_IFIFO: |
| 2871 | case S_IFSOCK: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2872 | flag &= ~O_TRUNC; |
Christoph Hellwig | c8fe8f3 | 2009-01-05 19:27:23 +0100 | [diff] [blame] | 2873 | break; |
Dave Hansen | 4a3fd21 | 2008-02-15 14:37:48 -0800 | [diff] [blame] | 2874 | } |
Dave Hansen | b41572e | 2007-10-16 23:31:14 -0700 | [diff] [blame] | 2875 | |
Al Viro | 62fb4a1 | 2015-12-26 22:33:24 -0500 | [diff] [blame] | 2876 | error = inode_permission(inode, MAY_OPEN | acc_mode); |
Dave Hansen | b41572e | 2007-10-16 23:31:14 -0700 | [diff] [blame] | 2877 | if (error) |
| 2878 | return error; |
Mimi Zohar | 6146f0d | 2009-02-04 09:06:57 -0500 | [diff] [blame] | 2879 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2880 | /* |
| 2881 | * An append-only file must be opened in append mode for writing. |
| 2882 | */ |
| 2883 | if (IS_APPEND(inode)) { |
Al Viro | 8737c93 | 2009-12-24 06:47:55 -0500 | [diff] [blame] | 2884 | if ((flag & O_ACCMODE) != O_RDONLY && !(flag & O_APPEND)) |
Al Viro | 7715b52 | 2009-12-16 03:54:00 -0500 | [diff] [blame] | 2885 | return -EPERM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2886 | if (flag & O_TRUNC) |
Al Viro | 7715b52 | 2009-12-16 03:54:00 -0500 | [diff] [blame] | 2887 | return -EPERM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2888 | } |
| 2889 | |
| 2890 | /* O_NOATIME can only be set by the owner or superuser */ |
Serge E. Hallyn | 2e14967 | 2011-03-23 16:43:26 -0700 | [diff] [blame] | 2891 | if (flag & O_NOATIME && !inode_owner_or_capable(inode)) |
Al Viro | 7715b52 | 2009-12-16 03:54:00 -0500 | [diff] [blame] | 2892 | return -EPERM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2893 | |
J. Bruce Fields | f3c7691e | 2011-09-21 10:58:13 -0400 | [diff] [blame] | 2894 | return 0; |
Al Viro | 7715b52 | 2009-12-16 03:54:00 -0500 | [diff] [blame] | 2895 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2896 | |
Jeff Layton | e1181ee | 2010-12-07 16:19:50 -0500 | [diff] [blame] | 2897 | static int handle_truncate(struct file *filp) |
Al Viro | 7715b52 | 2009-12-16 03:54:00 -0500 | [diff] [blame] | 2898 | { |
Jeff Layton | e1181ee | 2010-12-07 16:19:50 -0500 | [diff] [blame] | 2899 | struct path *path = &filp->f_path; |
Al Viro | 7715b52 | 2009-12-16 03:54:00 -0500 | [diff] [blame] | 2900 | struct inode *inode = path->dentry->d_inode; |
| 2901 | int error = get_write_access(inode); |
| 2902 | if (error) |
| 2903 | return error; |
| 2904 | /* |
| 2905 | * Refuse to truncate files with mandatory locks held on them. |
| 2906 | */ |
Jeff Layton | d7a0698 | 2014-03-10 09:54:15 -0400 | [diff] [blame] | 2907 | error = locks_verify_locked(filp); |
Al Viro | 7715b52 | 2009-12-16 03:54:00 -0500 | [diff] [blame] | 2908 | if (!error) |
Tetsuo Handa | ea0d3ab | 2010-06-02 13:24:43 +0900 | [diff] [blame] | 2909 | error = security_path_truncate(path); |
Al Viro | 7715b52 | 2009-12-16 03:54:00 -0500 | [diff] [blame] | 2910 | if (!error) { |
| 2911 | error = do_truncate(path->dentry, 0, |
| 2912 | ATTR_MTIME|ATTR_CTIME|ATTR_OPEN, |
Jeff Layton | e1181ee | 2010-12-07 16:19:50 -0500 | [diff] [blame] | 2913 | filp); |
Al Viro | 7715b52 | 2009-12-16 03:54:00 -0500 | [diff] [blame] | 2914 | } |
| 2915 | put_write_access(inode); |
Mimi Zohar | acd0c93 | 2009-09-04 13:08:46 -0400 | [diff] [blame] | 2916 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2917 | } |
| 2918 | |
Dave Hansen | d57999e | 2008-02-15 14:37:27 -0800 | [diff] [blame] | 2919 | static inline int open_to_namei_flags(int flag) |
| 2920 | { |
Al Viro | 8a5e929 | 2011-06-25 19:15:54 -0400 | [diff] [blame] | 2921 | if ((flag & O_ACCMODE) == 3) |
| 2922 | flag--; |
Dave Hansen | d57999e | 2008-02-15 14:37:27 -0800 | [diff] [blame] | 2923 | return flag; |
| 2924 | } |
| 2925 | |
Al Viro | d360775 | 2016-03-25 15:21:09 -0400 | [diff] [blame] | 2926 | static int may_o_create(const struct path *dir, struct dentry *dentry, umode_t mode) |
Miklos Szeredi | d18e900 | 2012-06-05 15:10:17 +0200 | [diff] [blame] | 2927 | { |
| 2928 | int error = security_path_mknod(dir, dentry, mode, 0); |
| 2929 | if (error) |
| 2930 | return error; |
| 2931 | |
| 2932 | error = inode_permission(dir->dentry->d_inode, MAY_WRITE | MAY_EXEC); |
| 2933 | if (error) |
| 2934 | return error; |
| 2935 | |
| 2936 | return security_inode_create(dir->dentry->d_inode, dentry, mode); |
| 2937 | } |
| 2938 | |
David Howells | 1acf0af | 2012-06-14 16:13:46 +0100 | [diff] [blame] | 2939 | /* |
| 2940 | * Attempt to atomically look up, create and open a file from a negative |
| 2941 | * dentry. |
| 2942 | * |
| 2943 | * Returns 0 if successful. The file will have been created and attached to |
| 2944 | * @file by the filesystem calling finish_open(). |
| 2945 | * |
| 2946 | * Returns 1 if the file was looked up only or didn't need creating. The |
| 2947 | * caller will need to perform the open themselves. @path will have been |
| 2948 | * updated to point to the new dentry. This may be negative. |
| 2949 | * |
| 2950 | * Returns an error code otherwise. |
| 2951 | */ |
Al Viro | 2675a4e | 2012-06-22 12:41:10 +0400 | [diff] [blame] | 2952 | static int atomic_open(struct nameidata *nd, struct dentry *dentry, |
| 2953 | struct path *path, struct file *file, |
| 2954 | const struct open_flags *op, |
Al Viro | 1643b43 | 2016-04-27 19:14:10 -0400 | [diff] [blame] | 2955 | int open_flag, umode_t mode, |
Al Viro | 2675a4e | 2012-06-22 12:41:10 +0400 | [diff] [blame] | 2956 | int *opened) |
Miklos Szeredi | d18e900 | 2012-06-05 15:10:17 +0200 | [diff] [blame] | 2957 | { |
Miklos Szeredi | d18e900 | 2012-06-05 15:10:17 +0200 | [diff] [blame] | 2958 | struct dentry *const DENTRY_NOT_SET = (void *) -1UL; |
Miklos Szeredi | d18e900 | 2012-06-05 15:10:17 +0200 | [diff] [blame] | 2959 | struct inode *dir = nd->path.dentry->d_inode; |
Miklos Szeredi | d18e900 | 2012-06-05 15:10:17 +0200 | [diff] [blame] | 2960 | int error; |
Miklos Szeredi | d18e900 | 2012-06-05 15:10:17 +0200 | [diff] [blame] | 2961 | |
Al Viro | 384f26e | 2016-04-28 02:03:55 -0400 | [diff] [blame] | 2962 | if (!(~open_flag & (O_EXCL | O_CREAT))) /* both O_EXCL and O_CREAT */ |
Miklos Szeredi | d18e900 | 2012-06-05 15:10:17 +0200 | [diff] [blame] | 2963 | open_flag &= ~O_TRUNC; |
Miklos Szeredi | d18e900 | 2012-06-05 15:10:17 +0200 | [diff] [blame] | 2964 | |
Miklos Szeredi | d18e900 | 2012-06-05 15:10:17 +0200 | [diff] [blame] | 2965 | if (nd->flags & LOOKUP_DIRECTORY) |
| 2966 | open_flag |= O_DIRECTORY; |
| 2967 | |
Al Viro | 30d9049 | 2012-06-22 12:40:19 +0400 | [diff] [blame] | 2968 | file->f_path.dentry = DENTRY_NOT_SET; |
| 2969 | file->f_path.mnt = nd->path.mnt; |
Al Viro | 0fb1ea0 | 2016-04-27 14:13:10 -0400 | [diff] [blame] | 2970 | error = dir->i_op->atomic_open(dir, dentry, file, |
| 2971 | open_to_namei_flags(open_flag), |
| 2972 | mode, opened); |
Al Viro | 6fbd071 | 2016-04-28 11:50:59 -0400 | [diff] [blame] | 2973 | d_lookup_done(dentry); |
Al Viro | 384f26e | 2016-04-28 02:03:55 -0400 | [diff] [blame] | 2974 | if (!error) { |
| 2975 | /* |
| 2976 | * We didn't have the inode before the open, so check open |
| 2977 | * permission here. |
| 2978 | */ |
| 2979 | int acc_mode = op->acc_mode; |
| 2980 | if (*opened & FILE_CREATED) { |
| 2981 | WARN_ON(!(open_flag & O_CREAT)); |
| 2982 | fsnotify_create(dir, dentry); |
| 2983 | acc_mode = 0; |
| 2984 | } |
| 2985 | error = may_open(&file->f_path, acc_mode, open_flag); |
| 2986 | if (WARN_ON(error > 0)) |
| 2987 | error = -EINVAL; |
| 2988 | } else if (error > 0) { |
Al Viro | 30d9049 | 2012-06-22 12:40:19 +0400 | [diff] [blame] | 2989 | if (WARN_ON(file->f_path.dentry == DENTRY_NOT_SET)) { |
Al Viro | 2675a4e | 2012-06-22 12:41:10 +0400 | [diff] [blame] | 2990 | error = -EIO; |
Al Viro | 03da633 | 2013-09-16 19:22:33 -0400 | [diff] [blame] | 2991 | } else { |
Al Viro | 384f26e | 2016-04-28 02:03:55 -0400 | [diff] [blame] | 2992 | if (file->f_path.dentry) { |
| 2993 | dput(dentry); |
| 2994 | dentry = file->f_path.dentry; |
Al Viro | 03da633 | 2013-09-16 19:22:33 -0400 | [diff] [blame] | 2995 | } |
Al Viro | 384f26e | 2016-04-28 02:03:55 -0400 | [diff] [blame] | 2996 | if (*opened & FILE_CREATED) |
| 2997 | fsnotify_create(dir, dentry); |
| 2998 | path->dentry = dentry; |
| 2999 | path->mnt = nd->path.mnt; |
| 3000 | return 1; |
Sage Weil | 62b2ce9 | 2012-08-15 13:30:12 -0700 | [diff] [blame] | 3001 | } |
Miklos Szeredi | d18e900 | 2012-06-05 15:10:17 +0200 | [diff] [blame] | 3002 | } |
Miklos Szeredi | d18e900 | 2012-06-05 15:10:17 +0200 | [diff] [blame] | 3003 | dput(dentry); |
Al Viro | 2675a4e | 2012-06-22 12:41:10 +0400 | [diff] [blame] | 3004 | return error; |
Miklos Szeredi | d18e900 | 2012-06-05 15:10:17 +0200 | [diff] [blame] | 3005 | } |
| 3006 | |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 3007 | /* |
David Howells | 1acf0af | 2012-06-14 16:13:46 +0100 | [diff] [blame] | 3008 | * Look up and maybe create and open the last component. |
Miklos Szeredi | d58ffd3 | 2012-06-05 15:10:15 +0200 | [diff] [blame] | 3009 | * |
| 3010 | * Must be called with i_mutex held on parent. |
| 3011 | * |
David Howells | 1acf0af | 2012-06-14 16:13:46 +0100 | [diff] [blame] | 3012 | * Returns 0 if the file was successfully atomically created (if necessary) and |
| 3013 | * opened. In this case the file will be returned attached to @file. |
| 3014 | * |
| 3015 | * Returns 1 if the file was not completely opened at this time, though lookups |
| 3016 | * and creations will have been performed and the dentry returned in @path will |
| 3017 | * be positive upon return if O_CREAT was specified. If O_CREAT wasn't |
| 3018 | * specified then a negative dentry may be returned. |
| 3019 | * |
| 3020 | * An error code is returned otherwise. |
| 3021 | * |
| 3022 | * FILE_CREATE will be set in @*opened if the dentry was created and will be |
| 3023 | * cleared otherwise prior to returning. |
Miklos Szeredi | d58ffd3 | 2012-06-05 15:10:15 +0200 | [diff] [blame] | 3024 | */ |
Al Viro | 2675a4e | 2012-06-22 12:41:10 +0400 | [diff] [blame] | 3025 | static int lookup_open(struct nameidata *nd, struct path *path, |
| 3026 | struct file *file, |
| 3027 | const struct open_flags *op, |
Al Viro | 64894cf | 2012-07-31 00:53:35 +0400 | [diff] [blame] | 3028 | bool got_write, int *opened) |
Miklos Szeredi | d58ffd3 | 2012-06-05 15:10:15 +0200 | [diff] [blame] | 3029 | { |
| 3030 | struct dentry *dir = nd->path.dentry; |
Miklos Szeredi | 54ef487 | 2012-06-05 15:10:16 +0200 | [diff] [blame] | 3031 | struct inode *dir_inode = dir->d_inode; |
Al Viro | 1643b43 | 2016-04-27 19:14:10 -0400 | [diff] [blame] | 3032 | int open_flag = op->open_flag; |
Miklos Szeredi | d58ffd3 | 2012-06-05 15:10:15 +0200 | [diff] [blame] | 3033 | struct dentry *dentry; |
Al Viro | 1643b43 | 2016-04-27 19:14:10 -0400 | [diff] [blame] | 3034 | int error, create_error = 0; |
Al Viro | 1643b43 | 2016-04-27 19:14:10 -0400 | [diff] [blame] | 3035 | umode_t mode = op->mode; |
Al Viro | 6fbd071 | 2016-04-28 11:50:59 -0400 | [diff] [blame] | 3036 | DECLARE_WAIT_QUEUE_HEAD_ONSTACK(wq); |
Miklos Szeredi | d58ffd3 | 2012-06-05 15:10:15 +0200 | [diff] [blame] | 3037 | |
Al Viro | ce8644f | 2016-04-26 14:17:56 -0400 | [diff] [blame] | 3038 | if (unlikely(IS_DEADDIR(dir_inode))) |
| 3039 | return -ENOENT; |
Miklos Szeredi | d58ffd3 | 2012-06-05 15:10:15 +0200 | [diff] [blame] | 3040 | |
Al Viro | 4723768 | 2012-06-10 05:01:45 -0400 | [diff] [blame] | 3041 | *opened &= ~FILE_CREATED; |
Al Viro | 6fbd071 | 2016-04-28 11:50:59 -0400 | [diff] [blame] | 3042 | dentry = d_lookup(dir, &nd->last); |
| 3043 | for (;;) { |
| 3044 | if (!dentry) { |
| 3045 | dentry = d_alloc_parallel(dir, &nd->last, &wq); |
| 3046 | if (IS_ERR(dentry)) |
| 3047 | return PTR_ERR(dentry); |
| 3048 | } |
| 3049 | if (d_in_lookup(dentry)) |
| 3050 | break; |
Miklos Szeredi | d58ffd3 | 2012-06-05 15:10:15 +0200 | [diff] [blame] | 3051 | |
Al Viro | 6fbd071 | 2016-04-28 11:50:59 -0400 | [diff] [blame] | 3052 | if (!(dentry->d_flags & DCACHE_OP_REVALIDATE)) |
| 3053 | break; |
| 3054 | |
| 3055 | error = d_revalidate(dentry, nd->flags); |
| 3056 | if (likely(error > 0)) |
| 3057 | break; |
| 3058 | if (error) |
| 3059 | goto out_dput; |
| 3060 | d_invalidate(dentry); |
| 3061 | dput(dentry); |
| 3062 | dentry = NULL; |
| 3063 | } |
| 3064 | if (dentry->d_inode) { |
Al Viro | 6c51e51 | 2016-03-05 20:09:32 -0500 | [diff] [blame] | 3065 | /* Cached positive dentry: will open in f_op->open */ |
Miklos Szeredi | d18e900 | 2012-06-05 15:10:17 +0200 | [diff] [blame] | 3066 | goto out_no_open; |
Al Viro | 6c51e51 | 2016-03-05 20:09:32 -0500 | [diff] [blame] | 3067 | } |
Miklos Szeredi | d18e900 | 2012-06-05 15:10:17 +0200 | [diff] [blame] | 3068 | |
Al Viro | 1643b43 | 2016-04-27 19:14:10 -0400 | [diff] [blame] | 3069 | /* |
| 3070 | * Checking write permission is tricky, bacuse we don't know if we are |
| 3071 | * going to actually need it: O_CREAT opens should work as long as the |
| 3072 | * file exists. But checking existence breaks atomicity. The trick is |
| 3073 | * to check access and if not granted clear O_CREAT from the flags. |
| 3074 | * |
| 3075 | * Another problem is returing the "right" error value (e.g. for an |
| 3076 | * O_EXCL open we want to return EEXIST not EROFS). |
| 3077 | */ |
| 3078 | if (open_flag & O_CREAT) { |
| 3079 | if (!IS_POSIXACL(dir->d_inode)) |
| 3080 | mode &= ~current_umask(); |
| 3081 | if (unlikely(!got_write)) { |
| 3082 | create_error = -EROFS; |
| 3083 | open_flag &= ~O_CREAT; |
| 3084 | if (open_flag & (O_EXCL | O_TRUNC)) |
| 3085 | goto no_open; |
| 3086 | /* No side effects, safe to clear O_CREAT */ |
| 3087 | } else { |
| 3088 | create_error = may_o_create(&nd->path, dentry, mode); |
| 3089 | if (create_error) { |
| 3090 | open_flag &= ~O_CREAT; |
| 3091 | if (open_flag & O_EXCL) |
| 3092 | goto no_open; |
| 3093 | } |
| 3094 | } |
| 3095 | } else if ((open_flag & (O_TRUNC|O_WRONLY|O_RDWR)) && |
| 3096 | unlikely(!got_write)) { |
| 3097 | /* |
| 3098 | * No O_CREATE -> atomicity not a requirement -> fall |
| 3099 | * back to lookup + open |
| 3100 | */ |
| 3101 | goto no_open; |
Miklos Szeredi | d18e900 | 2012-06-05 15:10:17 +0200 | [diff] [blame] | 3102 | } |
| 3103 | |
Al Viro | 1643b43 | 2016-04-27 19:14:10 -0400 | [diff] [blame] | 3104 | if (dir_inode->i_op->atomic_open) { |
| 3105 | error = atomic_open(nd, dentry, path, file, op, open_flag, |
| 3106 | mode, opened); |
| 3107 | if (unlikely(error == -ENOENT) && create_error) |
| 3108 | error = create_error; |
| 3109 | return error; |
| 3110 | } |
Miklos Szeredi | 54ef487 | 2012-06-05 15:10:16 +0200 | [diff] [blame] | 3111 | |
Al Viro | 1643b43 | 2016-04-27 19:14:10 -0400 | [diff] [blame] | 3112 | no_open: |
Al Viro | 6fbd071 | 2016-04-28 11:50:59 -0400 | [diff] [blame] | 3113 | if (d_in_lookup(dentry)) { |
Al Viro | 12fa5e2 | 2016-04-28 11:19:43 -0400 | [diff] [blame] | 3114 | struct dentry *res = dir_inode->i_op->lookup(dir_inode, dentry, |
| 3115 | nd->flags); |
Al Viro | 6fbd071 | 2016-04-28 11:50:59 -0400 | [diff] [blame] | 3116 | d_lookup_done(dentry); |
Al Viro | 12fa5e2 | 2016-04-28 11:19:43 -0400 | [diff] [blame] | 3117 | if (unlikely(res)) { |
| 3118 | if (IS_ERR(res)) { |
| 3119 | error = PTR_ERR(res); |
| 3120 | goto out_dput; |
| 3121 | } |
| 3122 | dput(dentry); |
| 3123 | dentry = res; |
| 3124 | } |
Miklos Szeredi | 54ef487 | 2012-06-05 15:10:16 +0200 | [diff] [blame] | 3125 | } |
| 3126 | |
Miklos Szeredi | d58ffd3 | 2012-06-05 15:10:15 +0200 | [diff] [blame] | 3127 | /* Negative dentry, just create the file */ |
Al Viro | 1643b43 | 2016-04-27 19:14:10 -0400 | [diff] [blame] | 3128 | if (!dentry->d_inode && (open_flag & O_CREAT)) { |
Al Viro | 4723768 | 2012-06-10 05:01:45 -0400 | [diff] [blame] | 3129 | *opened |= FILE_CREATED; |
Al Viro | ce8644f | 2016-04-26 14:17:56 -0400 | [diff] [blame] | 3130 | audit_inode_child(dir_inode, dentry, AUDIT_TYPE_CHILD_CREATE); |
Al Viro | ce8644f | 2016-04-26 14:17:56 -0400 | [diff] [blame] | 3131 | if (!dir_inode->i_op->create) { |
| 3132 | error = -EACCES; |
Miklos Szeredi | d58ffd3 | 2012-06-05 15:10:15 +0200 | [diff] [blame] | 3133 | goto out_dput; |
Miklos Szeredi | 77d660a | 2012-06-05 15:10:30 +0200 | [diff] [blame] | 3134 | } |
Al Viro | ce8644f | 2016-04-26 14:17:56 -0400 | [diff] [blame] | 3135 | error = dir_inode->i_op->create(dir_inode, dentry, mode, |
Al Viro | 1643b43 | 2016-04-27 19:14:10 -0400 | [diff] [blame] | 3136 | open_flag & O_EXCL); |
Miklos Szeredi | d58ffd3 | 2012-06-05 15:10:15 +0200 | [diff] [blame] | 3137 | if (error) |
| 3138 | goto out_dput; |
Al Viro | ce8644f | 2016-04-26 14:17:56 -0400 | [diff] [blame] | 3139 | fsnotify_create(dir_inode, dentry); |
Miklos Szeredi | d58ffd3 | 2012-06-05 15:10:15 +0200 | [diff] [blame] | 3140 | } |
Al Viro | 1643b43 | 2016-04-27 19:14:10 -0400 | [diff] [blame] | 3141 | if (unlikely(create_error) && !dentry->d_inode) { |
| 3142 | error = create_error; |
| 3143 | goto out_dput; |
Miklos Szeredi | d58ffd3 | 2012-06-05 15:10:15 +0200 | [diff] [blame] | 3144 | } |
Miklos Szeredi | d18e900 | 2012-06-05 15:10:17 +0200 | [diff] [blame] | 3145 | out_no_open: |
Miklos Szeredi | d58ffd3 | 2012-06-05 15:10:15 +0200 | [diff] [blame] | 3146 | path->dentry = dentry; |
| 3147 | path->mnt = nd->path.mnt; |
Al Viro | 2675a4e | 2012-06-22 12:41:10 +0400 | [diff] [blame] | 3148 | return 1; |
Miklos Szeredi | d58ffd3 | 2012-06-05 15:10:15 +0200 | [diff] [blame] | 3149 | |
| 3150 | out_dput: |
| 3151 | dput(dentry); |
Al Viro | 2675a4e | 2012-06-22 12:41:10 +0400 | [diff] [blame] | 3152 | return error; |
Miklos Szeredi | d58ffd3 | 2012-06-05 15:10:15 +0200 | [diff] [blame] | 3153 | } |
| 3154 | |
| 3155 | /* |
Al Viro | fe2d35f | 2011-03-05 22:58:25 -0500 | [diff] [blame] | 3156 | * Handle the last step of open() |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 3157 | */ |
Al Viro | 896475d | 2015-04-22 18:02:17 -0400 | [diff] [blame] | 3158 | static int do_last(struct nameidata *nd, |
Al Viro | 2675a4e | 2012-06-22 12:41:10 +0400 | [diff] [blame] | 3159 | struct file *file, const struct open_flags *op, |
Al Viro | 76ae2a5 | 2015-05-12 18:44:32 -0400 | [diff] [blame] | 3160 | int *opened) |
Al Viro | fb1cc55 | 2009-12-24 01:58:28 -0500 | [diff] [blame] | 3161 | { |
Al Viro | a1e2803 | 2009-12-24 02:12:06 -0500 | [diff] [blame] | 3162 | struct dentry *dir = nd->path.dentry; |
Al Viro | ca344a89 | 2011-03-09 00:36:45 -0500 | [diff] [blame] | 3163 | int open_flag = op->open_flag; |
Miklos Szeredi | 77d660a | 2012-06-05 15:10:30 +0200 | [diff] [blame] | 3164 | bool will_truncate = (open_flag & O_TRUNC) != 0; |
Al Viro | 64894cf | 2012-07-31 00:53:35 +0400 | [diff] [blame] | 3165 | bool got_write = false; |
Al Viro | bcda765 | 2011-03-13 16:42:14 -0400 | [diff] [blame] | 3166 | int acc_mode = op->acc_mode; |
Al Viro | 254cf58 | 2015-05-05 09:40:46 -0400 | [diff] [blame] | 3167 | unsigned seq; |
Miklos Szeredi | a1eb331 | 2012-05-21 17:30:07 +0200 | [diff] [blame] | 3168 | struct inode *inode; |
Miklos Szeredi | 16b1c1c | 2012-05-21 17:30:19 +0200 | [diff] [blame] | 3169 | struct path save_parent = { .dentry = NULL, .mnt = NULL }; |
Al Viro | 896475d | 2015-04-22 18:02:17 -0400 | [diff] [blame] | 3170 | struct path path; |
Miklos Szeredi | 16b1c1c | 2012-05-21 17:30:19 +0200 | [diff] [blame] | 3171 | bool retried = false; |
Al Viro | 16c2cd7 | 2011-02-22 15:50:10 -0500 | [diff] [blame] | 3172 | int error; |
Al Viro | fb1cc55 | 2009-12-24 01:58:28 -0500 | [diff] [blame] | 3173 | |
Al Viro | c3e380b | 2011-02-23 13:39:45 -0500 | [diff] [blame] | 3174 | nd->flags &= ~LOOKUP_PARENT; |
| 3175 | nd->flags |= op->intent; |
| 3176 | |
Al Viro | bc77daa | 2013-06-06 09:12:33 -0400 | [diff] [blame] | 3177 | if (nd->last_type != LAST_NORM) { |
Al Viro | fe2d35f | 2011-03-05 22:58:25 -0500 | [diff] [blame] | 3178 | error = handle_dots(nd, nd->last_type); |
Al Viro | deb106c | 2015-05-08 18:05:21 -0400 | [diff] [blame] | 3179 | if (unlikely(error)) |
Al Viro | 2675a4e | 2012-06-22 12:41:10 +0400 | [diff] [blame] | 3180 | return error; |
Miklos Szeredi | e83db16 | 2012-06-05 15:10:29 +0200 | [diff] [blame] | 3181 | goto finish_open; |
Al Viro | 1f36f77 | 2009-12-26 10:56:19 -0500 | [diff] [blame] | 3182 | } |
Al Viro | 67ee3ad | 2009-12-26 07:01:01 -0500 | [diff] [blame] | 3183 | |
Al Viro | ca344a89 | 2011-03-09 00:36:45 -0500 | [diff] [blame] | 3184 | if (!(open_flag & O_CREAT)) { |
Al Viro | fe2d35f | 2011-03-05 22:58:25 -0500 | [diff] [blame] | 3185 | if (nd->last.name[nd->last.len]) |
| 3186 | nd->flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY; |
| 3187 | /* we _can_ be in RCU mode here */ |
Al Viro | 254cf58 | 2015-05-05 09:40:46 -0400 | [diff] [blame] | 3188 | error = lookup_fast(nd, &path, &inode, &seq); |
Al Viro | e9742b5 | 2016-03-05 22:04:59 -0500 | [diff] [blame] | 3189 | if (likely(error > 0)) |
Miklos Szeredi | 7157486 | 2012-06-05 15:10:14 +0200 | [diff] [blame] | 3190 | goto finish_lookup; |
Miklos Szeredi | a1eb331 | 2012-05-21 17:30:07 +0200 | [diff] [blame] | 3191 | |
Miklos Szeredi | 7157486 | 2012-06-05 15:10:14 +0200 | [diff] [blame] | 3192 | if (error < 0) |
Al Viro | deb106c | 2015-05-08 18:05:21 -0400 | [diff] [blame] | 3193 | return error; |
Miklos Szeredi | 37d7fff | 2012-06-05 15:10:12 +0200 | [diff] [blame] | 3194 | |
Miklos Szeredi | 7157486 | 2012-06-05 15:10:14 +0200 | [diff] [blame] | 3195 | BUG_ON(nd->inode != dir->d_inode); |
Al Viro | 6583fe2 | 2016-03-05 18:14:03 -0500 | [diff] [blame] | 3196 | BUG_ON(nd->flags & LOOKUP_RCU); |
Miklos Szeredi | b6183df | 2012-06-05 15:10:13 +0200 | [diff] [blame] | 3197 | } else { |
| 3198 | /* create side of things */ |
| 3199 | /* |
| 3200 | * This will *only* deal with leaving RCU mode - LOOKUP_JUMPED |
| 3201 | * has been cleared when we got to the last component we are |
| 3202 | * about to look up |
| 3203 | */ |
| 3204 | error = complete_walk(nd); |
Al Viro | e8bb73d | 2015-05-08 16:28:42 -0400 | [diff] [blame] | 3205 | if (error) |
Al Viro | 2675a4e | 2012-06-22 12:41:10 +0400 | [diff] [blame] | 3206 | return error; |
Miklos Szeredi | b6183df | 2012-06-05 15:10:13 +0200 | [diff] [blame] | 3207 | |
Al Viro | 76ae2a5 | 2015-05-12 18:44:32 -0400 | [diff] [blame] | 3208 | audit_inode(nd->name, dir, LOOKUP_PARENT); |
Miklos Szeredi | b6183df | 2012-06-05 15:10:13 +0200 | [diff] [blame] | 3209 | /* trailing slashes? */ |
Al Viro | deb106c | 2015-05-08 18:05:21 -0400 | [diff] [blame] | 3210 | if (unlikely(nd->last.name[nd->last.len])) |
| 3211 | return -EISDIR; |
Al Viro | fe2d35f | 2011-03-05 22:58:25 -0500 | [diff] [blame] | 3212 | } |
| 3213 | |
Miklos Szeredi | 16b1c1c | 2012-05-21 17:30:19 +0200 | [diff] [blame] | 3214 | retry_lookup: |
Al Viro | 9cf843e | 2016-04-28 19:35:16 -0400 | [diff] [blame] | 3215 | if (open_flag & (O_CREAT | O_TRUNC | O_WRONLY | O_RDWR)) { |
Al Viro | 64894cf | 2012-07-31 00:53:35 +0400 | [diff] [blame] | 3216 | error = mnt_want_write(nd->path.mnt); |
| 3217 | if (!error) |
| 3218 | got_write = true; |
| 3219 | /* |
| 3220 | * do _not_ fail yet - we might not need that or fail with |
| 3221 | * a different error; let lookup_open() decide; we'll be |
| 3222 | * dropping this one anyway. |
| 3223 | */ |
| 3224 | } |
Al Viro | 9cf843e | 2016-04-28 19:35:16 -0400 | [diff] [blame] | 3225 | if (open_flag & O_CREAT) |
| 3226 | inode_lock(dir->d_inode); |
| 3227 | else |
| 3228 | inode_lock_shared(dir->d_inode); |
Al Viro | 896475d | 2015-04-22 18:02:17 -0400 | [diff] [blame] | 3229 | error = lookup_open(nd, &path, file, op, got_write, opened); |
Al Viro | 9cf843e | 2016-04-28 19:35:16 -0400 | [diff] [blame] | 3230 | if (open_flag & O_CREAT) |
| 3231 | inode_unlock(dir->d_inode); |
| 3232 | else |
| 3233 | inode_unlock_shared(dir->d_inode); |
Al Viro | a1e2803 | 2009-12-24 02:12:06 -0500 | [diff] [blame] | 3234 | |
Al Viro | 2675a4e | 2012-06-22 12:41:10 +0400 | [diff] [blame] | 3235 | if (error <= 0) { |
| 3236 | if (error) |
Miklos Szeredi | d18e900 | 2012-06-05 15:10:17 +0200 | [diff] [blame] | 3237 | goto out; |
| 3238 | |
Al Viro | 4723768 | 2012-06-10 05:01:45 -0400 | [diff] [blame] | 3239 | if ((*opened & FILE_CREATED) || |
Al Viro | 496ad9a | 2013-01-23 17:07:38 -0500 | [diff] [blame] | 3240 | !S_ISREG(file_inode(file)->i_mode)) |
Miklos Szeredi | 77d660a | 2012-06-05 15:10:30 +0200 | [diff] [blame] | 3241 | will_truncate = false; |
Miklos Szeredi | d18e900 | 2012-06-05 15:10:17 +0200 | [diff] [blame] | 3242 | |
Al Viro | 76ae2a5 | 2015-05-12 18:44:32 -0400 | [diff] [blame] | 3243 | audit_inode(nd->name, file->f_path.dentry, 0); |
Miklos Szeredi | d18e900 | 2012-06-05 15:10:17 +0200 | [diff] [blame] | 3244 | goto opened; |
| 3245 | } |
Al Viro | fb1cc55 | 2009-12-24 01:58:28 -0500 | [diff] [blame] | 3246 | |
Al Viro | 4723768 | 2012-06-10 05:01:45 -0400 | [diff] [blame] | 3247 | if (*opened & FILE_CREATED) { |
Al Viro | 9b44f1b | 2011-03-09 00:17:27 -0500 | [diff] [blame] | 3248 | /* Don't check for write permission, don't truncate */ |
Al Viro | ca344a89 | 2011-03-09 00:36:45 -0500 | [diff] [blame] | 3249 | open_flag &= ~O_TRUNC; |
Miklos Szeredi | 77d660a | 2012-06-05 15:10:30 +0200 | [diff] [blame] | 3250 | will_truncate = false; |
Al Viro | 62fb4a1 | 2015-12-26 22:33:24 -0500 | [diff] [blame] | 3251 | acc_mode = 0; |
Al Viro | 896475d | 2015-04-22 18:02:17 -0400 | [diff] [blame] | 3252 | path_to_nameidata(&path, nd); |
Miklos Szeredi | e83db16 | 2012-06-05 15:10:29 +0200 | [diff] [blame] | 3253 | goto finish_open_created; |
Al Viro | fb1cc55 | 2009-12-24 01:58:28 -0500 | [diff] [blame] | 3254 | } |
| 3255 | |
| 3256 | /* |
Miklos Szeredi | d18e900 | 2012-06-05 15:10:17 +0200 | [diff] [blame] | 3257 | * If atomic_open() acquired write access it is dropped now due to |
| 3258 | * possible mount and symlink following (this might be optimized away if |
| 3259 | * necessary...) |
| 3260 | */ |
Al Viro | 64894cf | 2012-07-31 00:53:35 +0400 | [diff] [blame] | 3261 | if (got_write) { |
Miklos Szeredi | d18e900 | 2012-06-05 15:10:17 +0200 | [diff] [blame] | 3262 | mnt_drop_write(nd->path.mnt); |
Al Viro | 64894cf | 2012-07-31 00:53:35 +0400 | [diff] [blame] | 3263 | got_write = false; |
Miklos Szeredi | d18e900 | 2012-06-05 15:10:17 +0200 | [diff] [blame] | 3264 | } |
| 3265 | |
Al Viro | 6583fe2 | 2016-03-05 18:14:03 -0500 | [diff] [blame] | 3266 | if (unlikely(d_is_negative(path.dentry))) { |
| 3267 | path_to_nameidata(&path, nd); |
| 3268 | return -ENOENT; |
| 3269 | } |
| 3270 | |
| 3271 | /* |
| 3272 | * create/update audit record if it already exists. |
| 3273 | */ |
| 3274 | audit_inode(nd->name, path.dentry, 0); |
| 3275 | |
Al Viro | deb106c | 2015-05-08 18:05:21 -0400 | [diff] [blame] | 3276 | if (unlikely((open_flag & (O_EXCL | O_CREAT)) == (O_EXCL | O_CREAT))) { |
| 3277 | path_to_nameidata(&path, nd); |
| 3278 | return -EEXIST; |
| 3279 | } |
Al Viro | fb1cc55 | 2009-12-24 01:58:28 -0500 | [diff] [blame] | 3280 | |
NeilBrown | 756daf2 | 2015-03-23 13:37:38 +1100 | [diff] [blame] | 3281 | error = follow_managed(&path, nd); |
Al Viro | deb106c | 2015-05-08 18:05:21 -0400 | [diff] [blame] | 3282 | if (unlikely(error < 0)) |
| 3283 | return error; |
Al Viro | a3fbbde | 2011-11-07 21:21:26 +0000 | [diff] [blame] | 3284 | |
Al Viro | 254cf58 | 2015-05-05 09:40:46 -0400 | [diff] [blame] | 3285 | seq = 0; /* out of RCU mode, so the value doesn't matter */ |
Al Viro | d456564 | 2016-02-27 19:23:16 -0500 | [diff] [blame] | 3286 | inode = d_backing_inode(path.dentry); |
Al Viro | 766c4cb | 2015-05-07 19:24:57 -0400 | [diff] [blame] | 3287 | finish_lookup: |
Al Viro | d63ff28 | 2015-05-04 18:13:23 -0400 | [diff] [blame] | 3288 | if (nd->depth) |
| 3289 | put_link(nd); |
Al Viro | 181548c | 2015-05-07 19:54:34 -0400 | [diff] [blame] | 3290 | error = should_follow_link(nd, &path, nd->flags & LOOKUP_FOLLOW, |
| 3291 | inode, seq); |
Al Viro | deb106c | 2015-05-08 18:05:21 -0400 | [diff] [blame] | 3292 | if (unlikely(error)) |
Al Viro | d63ff28 | 2015-05-04 18:13:23 -0400 | [diff] [blame] | 3293 | return error; |
Al Viro | fb1cc55 | 2009-12-24 01:58:28 -0500 | [diff] [blame] | 3294 | |
Al Viro | 896475d | 2015-04-22 18:02:17 -0400 | [diff] [blame] | 3295 | if ((nd->flags & LOOKUP_RCU) || nd->path.mnt != path.mnt) { |
| 3296 | path_to_nameidata(&path, nd); |
Miklos Szeredi | 16b1c1c | 2012-05-21 17:30:19 +0200 | [diff] [blame] | 3297 | } else { |
| 3298 | save_parent.dentry = nd->path.dentry; |
Al Viro | 896475d | 2015-04-22 18:02:17 -0400 | [diff] [blame] | 3299 | save_parent.mnt = mntget(path.mnt); |
| 3300 | nd->path.dentry = path.dentry; |
Miklos Szeredi | 16b1c1c | 2012-05-21 17:30:19 +0200 | [diff] [blame] | 3301 | |
| 3302 | } |
Miklos Szeredi | decf340 | 2012-05-21 17:30:08 +0200 | [diff] [blame] | 3303 | nd->inode = inode; |
Al Viro | 254cf58 | 2015-05-05 09:40:46 -0400 | [diff] [blame] | 3304 | nd->seq = seq; |
Al Viro | a3fbbde | 2011-11-07 21:21:26 +0000 | [diff] [blame] | 3305 | /* Why this, you ask? _Now_ we might have grown LOOKUP_JUMPED... */ |
Al Viro | bc77daa | 2013-06-06 09:12:33 -0400 | [diff] [blame] | 3306 | finish_open: |
Al Viro | a3fbbde | 2011-11-07 21:21:26 +0000 | [diff] [blame] | 3307 | error = complete_walk(nd); |
Miklos Szeredi | 16b1c1c | 2012-05-21 17:30:19 +0200 | [diff] [blame] | 3308 | if (error) { |
| 3309 | path_put(&save_parent); |
Al Viro | 2675a4e | 2012-06-22 12:41:10 +0400 | [diff] [blame] | 3310 | return error; |
Miklos Szeredi | 16b1c1c | 2012-05-21 17:30:19 +0200 | [diff] [blame] | 3311 | } |
Al Viro | 76ae2a5 | 2015-05-12 18:44:32 -0400 | [diff] [blame] | 3312 | audit_inode(nd->name, nd->path.dentry, 0); |
Al Viro | fb1cc55 | 2009-12-24 01:58:28 -0500 | [diff] [blame] | 3313 | error = -EISDIR; |
Miklos Szeredi | 44b1d53 | 2014-04-01 17:08:41 +0200 | [diff] [blame] | 3314 | if ((open_flag & O_CREAT) && d_is_dir(nd->path.dentry)) |
Al Viro | 2675a4e | 2012-06-22 12:41:10 +0400 | [diff] [blame] | 3315 | goto out; |
Miklos Szeredi | af2f554 | 2012-05-21 17:30:11 +0200 | [diff] [blame] | 3316 | error = -ENOTDIR; |
Miklos Szeredi | 44b1d53 | 2014-04-01 17:08:41 +0200 | [diff] [blame] | 3317 | if ((nd->flags & LOOKUP_DIRECTORY) && !d_can_lookup(nd->path.dentry)) |
Al Viro | 2675a4e | 2012-06-22 12:41:10 +0400 | [diff] [blame] | 3318 | goto out; |
David Howells | 4bbcbd3 | 2015-03-17 22:16:40 +0000 | [diff] [blame] | 3319 | if (!d_is_reg(nd->path.dentry)) |
Miklos Szeredi | 77d660a | 2012-06-05 15:10:30 +0200 | [diff] [blame] | 3320 | will_truncate = false; |
Al Viro | 6c0d46c | 2011-03-09 00:59:59 -0500 | [diff] [blame] | 3321 | |
Al Viro | 0f9d1a1 | 2011-03-09 00:13:14 -0500 | [diff] [blame] | 3322 | if (will_truncate) { |
| 3323 | error = mnt_want_write(nd->path.mnt); |
| 3324 | if (error) |
Al Viro | 2675a4e | 2012-06-22 12:41:10 +0400 | [diff] [blame] | 3325 | goto out; |
Al Viro | 64894cf | 2012-07-31 00:53:35 +0400 | [diff] [blame] | 3326 | got_write = true; |
Al Viro | 0f9d1a1 | 2011-03-09 00:13:14 -0500 | [diff] [blame] | 3327 | } |
Miklos Szeredi | e83db16 | 2012-06-05 15:10:29 +0200 | [diff] [blame] | 3328 | finish_open_created: |
Al Viro | 6ac0870 | 2016-04-26 00:02:50 -0400 | [diff] [blame] | 3329 | error = may_open(&nd->path, acc_mode, open_flag); |
| 3330 | if (error) |
| 3331 | goto out; |
Miklos Szeredi | 4aa7c63 | 2014-10-24 00:14:35 +0200 | [diff] [blame] | 3332 | BUG_ON(*opened & FILE_OPENED); /* once it's opened, it's opened */ |
| 3333 | error = vfs_open(&nd->path, file, current_cred()); |
| 3334 | if (!error) { |
| 3335 | *opened |= FILE_OPENED; |
| 3336 | } else { |
Al Viro | 30d9049 | 2012-06-22 12:40:19 +0400 | [diff] [blame] | 3337 | if (error == -EOPENSTALE) |
Miklos Szeredi | f60dc3d | 2012-06-05 15:10:31 +0200 | [diff] [blame] | 3338 | goto stale_open; |
Miklos Szeredi | 015c3bb | 2012-06-05 15:10:27 +0200 | [diff] [blame] | 3339 | goto out; |
Miklos Szeredi | f60dc3d | 2012-06-05 15:10:31 +0200 | [diff] [blame] | 3340 | } |
Miklos Szeredi | a8277b9 | 2012-06-05 15:10:32 +0200 | [diff] [blame] | 3341 | opened: |
Al Viro | 2675a4e | 2012-06-22 12:41:10 +0400 | [diff] [blame] | 3342 | error = open_check_o_direct(file); |
Al Viro | fe9ec82 | 2016-04-27 03:14:20 -0400 | [diff] [blame] | 3343 | if (!error) |
| 3344 | error = ima_file_check(file, op->acc_mode, *opened); |
| 3345 | if (!error && will_truncate) |
Al Viro | 2675a4e | 2012-06-22 12:41:10 +0400 | [diff] [blame] | 3346 | error = handle_truncate(file); |
Al Viro | ca344a89 | 2011-03-09 00:36:45 -0500 | [diff] [blame] | 3347 | out: |
Al Viro | fe9ec82 | 2016-04-27 03:14:20 -0400 | [diff] [blame] | 3348 | if (unlikely(error) && (*opened & FILE_OPENED)) |
| 3349 | fput(file); |
Al Viro | c80567c | 2016-02-27 19:17:33 -0500 | [diff] [blame] | 3350 | if (unlikely(error > 0)) { |
| 3351 | WARN_ON(1); |
| 3352 | error = -EINVAL; |
| 3353 | } |
Al Viro | 64894cf | 2012-07-31 00:53:35 +0400 | [diff] [blame] | 3354 | if (got_write) |
Al Viro | 0f9d1a1 | 2011-03-09 00:13:14 -0500 | [diff] [blame] | 3355 | mnt_drop_write(nd->path.mnt); |
Miklos Szeredi | 16b1c1c | 2012-05-21 17:30:19 +0200 | [diff] [blame] | 3356 | path_put(&save_parent); |
Al Viro | 2675a4e | 2012-06-22 12:41:10 +0400 | [diff] [blame] | 3357 | return error; |
Al Viro | fb1cc55 | 2009-12-24 01:58:28 -0500 | [diff] [blame] | 3358 | |
Miklos Szeredi | f60dc3d | 2012-06-05 15:10:31 +0200 | [diff] [blame] | 3359 | stale_open: |
| 3360 | /* If no saved parent or already retried then can't retry */ |
| 3361 | if (!save_parent.dentry || retried) |
| 3362 | goto out; |
| 3363 | |
| 3364 | BUG_ON(save_parent.dentry != dir); |
| 3365 | path_put(&nd->path); |
| 3366 | nd->path = save_parent; |
| 3367 | nd->inode = dir->d_inode; |
| 3368 | save_parent.mnt = NULL; |
| 3369 | save_parent.dentry = NULL; |
Al Viro | 64894cf | 2012-07-31 00:53:35 +0400 | [diff] [blame] | 3370 | if (got_write) { |
Miklos Szeredi | f60dc3d | 2012-06-05 15:10:31 +0200 | [diff] [blame] | 3371 | mnt_drop_write(nd->path.mnt); |
Al Viro | 64894cf | 2012-07-31 00:53:35 +0400 | [diff] [blame] | 3372 | got_write = false; |
Miklos Szeredi | f60dc3d | 2012-06-05 15:10:31 +0200 | [diff] [blame] | 3373 | } |
| 3374 | retried = true; |
| 3375 | goto retry_lookup; |
Al Viro | fb1cc55 | 2009-12-24 01:58:28 -0500 | [diff] [blame] | 3376 | } |
| 3377 | |
Al Viro | c8a53ee | 2015-05-12 18:43:07 -0400 | [diff] [blame] | 3378 | static int do_tmpfile(struct nameidata *nd, unsigned flags, |
Al Viro | 60545d0 | 2013-06-07 01:20:27 -0400 | [diff] [blame] | 3379 | const struct open_flags *op, |
| 3380 | struct file *file, int *opened) |
| 3381 | { |
| 3382 | static const struct qstr name = QSTR_INIT("/", 1); |
Al Viro | 625b6d1 | 2015-05-12 16:36:12 -0400 | [diff] [blame] | 3383 | struct dentry *child; |
Al Viro | 60545d0 | 2013-06-07 01:20:27 -0400 | [diff] [blame] | 3384 | struct inode *dir; |
Al Viro | 625b6d1 | 2015-05-12 16:36:12 -0400 | [diff] [blame] | 3385 | struct path path; |
Al Viro | c8a53ee | 2015-05-12 18:43:07 -0400 | [diff] [blame] | 3386 | int error = path_lookupat(nd, flags | LOOKUP_DIRECTORY, &path); |
Al Viro | 60545d0 | 2013-06-07 01:20:27 -0400 | [diff] [blame] | 3387 | if (unlikely(error)) |
| 3388 | return error; |
Al Viro | 625b6d1 | 2015-05-12 16:36:12 -0400 | [diff] [blame] | 3389 | error = mnt_want_write(path.mnt); |
Al Viro | 60545d0 | 2013-06-07 01:20:27 -0400 | [diff] [blame] | 3390 | if (unlikely(error)) |
| 3391 | goto out; |
Al Viro | 625b6d1 | 2015-05-12 16:36:12 -0400 | [diff] [blame] | 3392 | dir = path.dentry->d_inode; |
Al Viro | 60545d0 | 2013-06-07 01:20:27 -0400 | [diff] [blame] | 3393 | /* we want directory to be writable */ |
Al Viro | 625b6d1 | 2015-05-12 16:36:12 -0400 | [diff] [blame] | 3394 | error = inode_permission(dir, MAY_WRITE | MAY_EXEC); |
Al Viro | 60545d0 | 2013-06-07 01:20:27 -0400 | [diff] [blame] | 3395 | if (error) |
| 3396 | goto out2; |
Al Viro | 60545d0 | 2013-06-07 01:20:27 -0400 | [diff] [blame] | 3397 | if (!dir->i_op->tmpfile) { |
| 3398 | error = -EOPNOTSUPP; |
| 3399 | goto out2; |
| 3400 | } |
Al Viro | 625b6d1 | 2015-05-12 16:36:12 -0400 | [diff] [blame] | 3401 | child = d_alloc(path.dentry, &name); |
Al Viro | 60545d0 | 2013-06-07 01:20:27 -0400 | [diff] [blame] | 3402 | if (unlikely(!child)) { |
| 3403 | error = -ENOMEM; |
| 3404 | goto out2; |
| 3405 | } |
Al Viro | 625b6d1 | 2015-05-12 16:36:12 -0400 | [diff] [blame] | 3406 | dput(path.dentry); |
| 3407 | path.dentry = child; |
| 3408 | error = dir->i_op->tmpfile(dir, child, op->mode); |
Al Viro | 60545d0 | 2013-06-07 01:20:27 -0400 | [diff] [blame] | 3409 | if (error) |
| 3410 | goto out2; |
Al Viro | c8a53ee | 2015-05-12 18:43:07 -0400 | [diff] [blame] | 3411 | audit_inode(nd->name, child, 0); |
Eric Rannaud | 69a91c2 | 2014-10-30 01:51:01 -0700 | [diff] [blame] | 3412 | /* Don't check for other permissions, the inode was just created */ |
Al Viro | 62fb4a1 | 2015-12-26 22:33:24 -0500 | [diff] [blame] | 3413 | error = may_open(&path, 0, op->open_flag); |
Al Viro | 60545d0 | 2013-06-07 01:20:27 -0400 | [diff] [blame] | 3414 | if (error) |
| 3415 | goto out2; |
Al Viro | 625b6d1 | 2015-05-12 16:36:12 -0400 | [diff] [blame] | 3416 | file->f_path.mnt = path.mnt; |
| 3417 | error = finish_open(file, child, NULL, opened); |
Al Viro | 60545d0 | 2013-06-07 01:20:27 -0400 | [diff] [blame] | 3418 | if (error) |
| 3419 | goto out2; |
| 3420 | error = open_check_o_direct(file); |
Al Viro | f4e0c30 | 2013-06-11 08:34:36 +0400 | [diff] [blame] | 3421 | if (error) { |
Al Viro | 60545d0 | 2013-06-07 01:20:27 -0400 | [diff] [blame] | 3422 | fput(file); |
Al Viro | f4e0c30 | 2013-06-11 08:34:36 +0400 | [diff] [blame] | 3423 | } else if (!(op->open_flag & O_EXCL)) { |
| 3424 | struct inode *inode = file_inode(file); |
| 3425 | spin_lock(&inode->i_lock); |
| 3426 | inode->i_state |= I_LINKABLE; |
| 3427 | spin_unlock(&inode->i_lock); |
| 3428 | } |
Al Viro | 60545d0 | 2013-06-07 01:20:27 -0400 | [diff] [blame] | 3429 | out2: |
Al Viro | 625b6d1 | 2015-05-12 16:36:12 -0400 | [diff] [blame] | 3430 | mnt_drop_write(path.mnt); |
Al Viro | 60545d0 | 2013-06-07 01:20:27 -0400 | [diff] [blame] | 3431 | out: |
Al Viro | 625b6d1 | 2015-05-12 16:36:12 -0400 | [diff] [blame] | 3432 | path_put(&path); |
Al Viro | 60545d0 | 2013-06-07 01:20:27 -0400 | [diff] [blame] | 3433 | return error; |
| 3434 | } |
| 3435 | |
Al Viro | 6ac0870 | 2016-04-26 00:02:50 -0400 | [diff] [blame] | 3436 | static int do_o_path(struct nameidata *nd, unsigned flags, struct file *file) |
| 3437 | { |
| 3438 | struct path path; |
| 3439 | int error = path_lookupat(nd, flags, &path); |
| 3440 | if (!error) { |
| 3441 | audit_inode(nd->name, path.dentry, 0); |
| 3442 | error = vfs_open(&path, file, current_cred()); |
| 3443 | path_put(&path); |
| 3444 | } |
| 3445 | return error; |
| 3446 | } |
| 3447 | |
Al Viro | c8a53ee | 2015-05-12 18:43:07 -0400 | [diff] [blame] | 3448 | static struct file *path_openat(struct nameidata *nd, |
| 3449 | const struct open_flags *op, unsigned flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3450 | { |
Al Viro | 368ee9b | 2015-05-08 17:19:59 -0400 | [diff] [blame] | 3451 | const char *s; |
Al Viro | 30d9049 | 2012-06-22 12:40:19 +0400 | [diff] [blame] | 3452 | struct file *file; |
Al Viro | 4723768 | 2012-06-10 05:01:45 -0400 | [diff] [blame] | 3453 | int opened = 0; |
Al Viro | 13aab42 | 2011-02-23 17:54:08 -0500 | [diff] [blame] | 3454 | int error; |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 3455 | |
Al Viro | 30d9049 | 2012-06-22 12:40:19 +0400 | [diff] [blame] | 3456 | file = get_empty_filp(); |
Al Viro | 1afc99b | 2013-02-14 20:41:04 -0500 | [diff] [blame] | 3457 | if (IS_ERR(file)) |
| 3458 | return file; |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 3459 | |
Al Viro | 30d9049 | 2012-06-22 12:40:19 +0400 | [diff] [blame] | 3460 | file->f_flags = op->open_flag; |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 3461 | |
Al Viro | bb458c6 | 2013-07-13 13:26:37 +0400 | [diff] [blame] | 3462 | if (unlikely(file->f_flags & __O_TMPFILE)) { |
Al Viro | c8a53ee | 2015-05-12 18:43:07 -0400 | [diff] [blame] | 3463 | error = do_tmpfile(nd, flags, op, file, &opened); |
Al Viro | f15133d | 2015-05-08 22:53:15 -0400 | [diff] [blame] | 3464 | goto out2; |
Al Viro | 60545d0 | 2013-06-07 01:20:27 -0400 | [diff] [blame] | 3465 | } |
| 3466 | |
Al Viro | 6ac0870 | 2016-04-26 00:02:50 -0400 | [diff] [blame] | 3467 | if (unlikely(file->f_flags & O_PATH)) { |
| 3468 | error = do_o_path(nd, flags, file); |
| 3469 | if (!error) |
| 3470 | opened |= FILE_OPENED; |
| 3471 | goto out2; |
| 3472 | } |
| 3473 | |
Al Viro | c8a53ee | 2015-05-12 18:43:07 -0400 | [diff] [blame] | 3474 | s = path_init(nd, flags); |
Al Viro | 368ee9b | 2015-05-08 17:19:59 -0400 | [diff] [blame] | 3475 | if (IS_ERR(s)) { |
| 3476 | put_filp(file); |
| 3477 | return ERR_CAST(s); |
| 3478 | } |
Al Viro | 3bdba28 | 2015-05-08 17:37:07 -0400 | [diff] [blame] | 3479 | while (!(error = link_path_walk(s, nd)) && |
Al Viro | 76ae2a5 | 2015-05-12 18:44:32 -0400 | [diff] [blame] | 3480 | (error = do_last(nd, file, op, &opened)) > 0) { |
Al Viro | 73d049a | 2011-03-11 12:08:24 -0500 | [diff] [blame] | 3481 | nd->flags &= ~(LOOKUP_OPEN|LOOKUP_CREATE|LOOKUP_EXCL); |
Al Viro | 3bdba28 | 2015-05-08 17:37:07 -0400 | [diff] [blame] | 3482 | s = trailing_symlink(nd); |
| 3483 | if (IS_ERR(s)) { |
| 3484 | error = PTR_ERR(s); |
Al Viro | 2675a4e | 2012-06-22 12:41:10 +0400 | [diff] [blame] | 3485 | break; |
Al Viro | 3bdba28 | 2015-05-08 17:37:07 -0400 | [diff] [blame] | 3486 | } |
Al Viro | 806b681 | 2009-12-26 07:16:40 -0500 | [diff] [blame] | 3487 | } |
Al Viro | deb106c | 2015-05-08 18:05:21 -0400 | [diff] [blame] | 3488 | terminate_walk(nd); |
Al Viro | f15133d | 2015-05-08 22:53:15 -0400 | [diff] [blame] | 3489 | out2: |
Al Viro | 2675a4e | 2012-06-22 12:41:10 +0400 | [diff] [blame] | 3490 | if (!(opened & FILE_OPENED)) { |
| 3491 | BUG_ON(!error); |
Al Viro | 30d9049 | 2012-06-22 12:40:19 +0400 | [diff] [blame] | 3492 | put_filp(file); |
Miklos Szeredi | 015c3bb | 2012-06-05 15:10:27 +0200 | [diff] [blame] | 3493 | } |
Al Viro | 2675a4e | 2012-06-22 12:41:10 +0400 | [diff] [blame] | 3494 | if (unlikely(error)) { |
| 3495 | if (error == -EOPENSTALE) { |
| 3496 | if (flags & LOOKUP_RCU) |
| 3497 | error = -ECHILD; |
| 3498 | else |
| 3499 | error = -ESTALE; |
| 3500 | } |
| 3501 | file = ERR_PTR(error); |
| 3502 | } |
| 3503 | return file; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3504 | } |
| 3505 | |
Jeff Layton | 669abf4 | 2012-10-10 16:43:10 -0400 | [diff] [blame] | 3506 | struct file *do_filp_open(int dfd, struct filename *pathname, |
Al Viro | f9652e1 | 2013-06-11 08:23:01 +0400 | [diff] [blame] | 3507 | const struct open_flags *op) |
Al Viro | 13aab42 | 2011-02-23 17:54:08 -0500 | [diff] [blame] | 3508 | { |
Al Viro | 9883d18 | 2015-05-13 07:28:08 -0400 | [diff] [blame] | 3509 | struct nameidata nd; |
Al Viro | f9652e1 | 2013-06-11 08:23:01 +0400 | [diff] [blame] | 3510 | int flags = op->lookup_flags; |
Al Viro | 13aab42 | 2011-02-23 17:54:08 -0500 | [diff] [blame] | 3511 | struct file *filp; |
| 3512 | |
Al Viro | 9883d18 | 2015-05-13 07:28:08 -0400 | [diff] [blame] | 3513 | set_nameidata(&nd, dfd, pathname); |
Al Viro | c8a53ee | 2015-05-12 18:43:07 -0400 | [diff] [blame] | 3514 | filp = path_openat(&nd, op, flags | LOOKUP_RCU); |
Al Viro | 13aab42 | 2011-02-23 17:54:08 -0500 | [diff] [blame] | 3515 | if (unlikely(filp == ERR_PTR(-ECHILD))) |
Al Viro | c8a53ee | 2015-05-12 18:43:07 -0400 | [diff] [blame] | 3516 | filp = path_openat(&nd, op, flags); |
Al Viro | 13aab42 | 2011-02-23 17:54:08 -0500 | [diff] [blame] | 3517 | if (unlikely(filp == ERR_PTR(-ESTALE))) |
Al Viro | c8a53ee | 2015-05-12 18:43:07 -0400 | [diff] [blame] | 3518 | filp = path_openat(&nd, op, flags | LOOKUP_REVAL); |
Al Viro | 9883d18 | 2015-05-13 07:28:08 -0400 | [diff] [blame] | 3519 | restore_nameidata(); |
Al Viro | 13aab42 | 2011-02-23 17:54:08 -0500 | [diff] [blame] | 3520 | return filp; |
| 3521 | } |
| 3522 | |
Al Viro | 73d049a | 2011-03-11 12:08:24 -0500 | [diff] [blame] | 3523 | struct file *do_file_open_root(struct dentry *dentry, struct vfsmount *mnt, |
Al Viro | f9652e1 | 2013-06-11 08:23:01 +0400 | [diff] [blame] | 3524 | const char *name, const struct open_flags *op) |
Al Viro | 73d049a | 2011-03-11 12:08:24 -0500 | [diff] [blame] | 3525 | { |
Al Viro | 9883d18 | 2015-05-13 07:28:08 -0400 | [diff] [blame] | 3526 | struct nameidata nd; |
Al Viro | 73d049a | 2011-03-11 12:08:24 -0500 | [diff] [blame] | 3527 | struct file *file; |
Paul Moore | 5168910 | 2015-01-22 00:00:03 -0500 | [diff] [blame] | 3528 | struct filename *filename; |
Al Viro | f9652e1 | 2013-06-11 08:23:01 +0400 | [diff] [blame] | 3529 | int flags = op->lookup_flags | LOOKUP_ROOT; |
Al Viro | 73d049a | 2011-03-11 12:08:24 -0500 | [diff] [blame] | 3530 | |
| 3531 | nd.root.mnt = mnt; |
| 3532 | nd.root.dentry = dentry; |
| 3533 | |
David Howells | b18825a | 2013-09-12 19:22:53 +0100 | [diff] [blame] | 3534 | if (d_is_symlink(dentry) && op->intent & LOOKUP_OPEN) |
Al Viro | 73d049a | 2011-03-11 12:08:24 -0500 | [diff] [blame] | 3535 | return ERR_PTR(-ELOOP); |
| 3536 | |
Paul Moore | 5168910 | 2015-01-22 00:00:03 -0500 | [diff] [blame] | 3537 | filename = getname_kernel(name); |
Viresh Kumar | a1c8368 | 2015-08-12 15:59:44 +0530 | [diff] [blame] | 3538 | if (IS_ERR(filename)) |
Paul Moore | 5168910 | 2015-01-22 00:00:03 -0500 | [diff] [blame] | 3539 | return ERR_CAST(filename); |
| 3540 | |
Al Viro | 9883d18 | 2015-05-13 07:28:08 -0400 | [diff] [blame] | 3541 | set_nameidata(&nd, -1, filename); |
Al Viro | c8a53ee | 2015-05-12 18:43:07 -0400 | [diff] [blame] | 3542 | file = path_openat(&nd, op, flags | LOOKUP_RCU); |
Al Viro | 73d049a | 2011-03-11 12:08:24 -0500 | [diff] [blame] | 3543 | if (unlikely(file == ERR_PTR(-ECHILD))) |
Al Viro | c8a53ee | 2015-05-12 18:43:07 -0400 | [diff] [blame] | 3544 | file = path_openat(&nd, op, flags); |
Al Viro | 73d049a | 2011-03-11 12:08:24 -0500 | [diff] [blame] | 3545 | if (unlikely(file == ERR_PTR(-ESTALE))) |
Al Viro | c8a53ee | 2015-05-12 18:43:07 -0400 | [diff] [blame] | 3546 | file = path_openat(&nd, op, flags | LOOKUP_REVAL); |
Al Viro | 9883d18 | 2015-05-13 07:28:08 -0400 | [diff] [blame] | 3547 | restore_nameidata(); |
Paul Moore | 5168910 | 2015-01-22 00:00:03 -0500 | [diff] [blame] | 3548 | putname(filename); |
Al Viro | 73d049a | 2011-03-11 12:08:24 -0500 | [diff] [blame] | 3549 | return file; |
| 3550 | } |
| 3551 | |
Al Viro | fa14a0b | 2015-01-22 02:16:49 -0500 | [diff] [blame] | 3552 | static struct dentry *filename_create(int dfd, struct filename *name, |
Jeff Layton | 1ac12b4 | 2012-12-11 12:10:06 -0500 | [diff] [blame] | 3553 | struct path *path, unsigned int lookup_flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3554 | { |
Christoph Hellwig | c663e5d | 2005-06-23 00:09:49 -0700 | [diff] [blame] | 3555 | struct dentry *dentry = ERR_PTR(-EEXIST); |
Al Viro | 391172c | 2015-05-09 11:19:16 -0400 | [diff] [blame] | 3556 | struct qstr last; |
| 3557 | int type; |
Jan Kara | c30dabf | 2012-06-12 16:20:30 +0200 | [diff] [blame] | 3558 | int err2; |
Jeff Layton | 1ac12b4 | 2012-12-11 12:10:06 -0500 | [diff] [blame] | 3559 | int error; |
| 3560 | bool is_dir = (lookup_flags & LOOKUP_DIRECTORY); |
| 3561 | |
| 3562 | /* |
| 3563 | * Note that only LOOKUP_REVAL and LOOKUP_DIRECTORY matter here. Any |
| 3564 | * other flags passed in are ignored! |
| 3565 | */ |
| 3566 | lookup_flags &= LOOKUP_REVAL; |
| 3567 | |
Al Viro | 5c31b6c | 2015-05-12 17:32:54 -0400 | [diff] [blame] | 3568 | name = filename_parentat(dfd, name, lookup_flags, path, &last, &type); |
| 3569 | if (IS_ERR(name)) |
| 3570 | return ERR_CAST(name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3571 | |
Christoph Hellwig | c663e5d | 2005-06-23 00:09:49 -0700 | [diff] [blame] | 3572 | /* |
| 3573 | * Yucky last component or no last component at all? |
| 3574 | * (foo/., foo/.., /////) |
| 3575 | */ |
Al Viro | 5c31b6c | 2015-05-12 17:32:54 -0400 | [diff] [blame] | 3576 | if (unlikely(type != LAST_NORM)) |
Al Viro | ed75e95 | 2011-06-27 16:53:43 -0400 | [diff] [blame] | 3577 | goto out; |
Christoph Hellwig | c663e5d | 2005-06-23 00:09:49 -0700 | [diff] [blame] | 3578 | |
Jan Kara | c30dabf | 2012-06-12 16:20:30 +0200 | [diff] [blame] | 3579 | /* don't fail immediately if it's r/o, at least try to report other errors */ |
Al Viro | 391172c | 2015-05-09 11:19:16 -0400 | [diff] [blame] | 3580 | err2 = mnt_want_write(path->mnt); |
Christoph Hellwig | c663e5d | 2005-06-23 00:09:49 -0700 | [diff] [blame] | 3581 | /* |
| 3582 | * Do the final lookup. |
| 3583 | */ |
Al Viro | 391172c | 2015-05-09 11:19:16 -0400 | [diff] [blame] | 3584 | lookup_flags |= LOOKUP_CREATE | LOOKUP_EXCL; |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 3585 | inode_lock_nested(path->dentry->d_inode, I_MUTEX_PARENT); |
Al Viro | 391172c | 2015-05-09 11:19:16 -0400 | [diff] [blame] | 3586 | dentry = __lookup_hash(&last, path->dentry, lookup_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3587 | if (IS_ERR(dentry)) |
Al Viro | a8104a9 | 2012-07-20 02:25:00 +0400 | [diff] [blame] | 3588 | goto unlock; |
Christoph Hellwig | c663e5d | 2005-06-23 00:09:49 -0700 | [diff] [blame] | 3589 | |
Al Viro | a8104a9 | 2012-07-20 02:25:00 +0400 | [diff] [blame] | 3590 | error = -EEXIST; |
David Howells | b18825a | 2013-09-12 19:22:53 +0100 | [diff] [blame] | 3591 | if (d_is_positive(dentry)) |
Al Viro | a8104a9 | 2012-07-20 02:25:00 +0400 | [diff] [blame] | 3592 | goto fail; |
David Howells | b18825a | 2013-09-12 19:22:53 +0100 | [diff] [blame] | 3593 | |
Christoph Hellwig | c663e5d | 2005-06-23 00:09:49 -0700 | [diff] [blame] | 3594 | /* |
| 3595 | * Special case - lookup gave negative, but... we had foo/bar/ |
| 3596 | * From the vfs_mknod() POV we just have a negative dentry - |
| 3597 | * all is fine. Let's be bastards - you had / on the end, you've |
| 3598 | * been asking for (non-existent) directory. -ENOENT for you. |
| 3599 | */ |
Al Viro | 391172c | 2015-05-09 11:19:16 -0400 | [diff] [blame] | 3600 | if (unlikely(!is_dir && last.name[last.len])) { |
Al Viro | a8104a9 | 2012-07-20 02:25:00 +0400 | [diff] [blame] | 3601 | error = -ENOENT; |
Al Viro | ed75e95 | 2011-06-27 16:53:43 -0400 | [diff] [blame] | 3602 | goto fail; |
Al Viro | e9baf6e | 2008-05-15 04:49:12 -0400 | [diff] [blame] | 3603 | } |
Jan Kara | c30dabf | 2012-06-12 16:20:30 +0200 | [diff] [blame] | 3604 | if (unlikely(err2)) { |
| 3605 | error = err2; |
Al Viro | a8104a9 | 2012-07-20 02:25:00 +0400 | [diff] [blame] | 3606 | goto fail; |
Jan Kara | c30dabf | 2012-06-12 16:20:30 +0200 | [diff] [blame] | 3607 | } |
Al Viro | 181c37b | 2015-05-12 17:21:25 -0400 | [diff] [blame] | 3608 | putname(name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3609 | return dentry; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3610 | fail: |
Al Viro | a8104a9 | 2012-07-20 02:25:00 +0400 | [diff] [blame] | 3611 | dput(dentry); |
| 3612 | dentry = ERR_PTR(error); |
| 3613 | unlock: |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 3614 | inode_unlock(path->dentry->d_inode); |
Jan Kara | c30dabf | 2012-06-12 16:20:30 +0200 | [diff] [blame] | 3615 | if (!err2) |
Al Viro | 391172c | 2015-05-09 11:19:16 -0400 | [diff] [blame] | 3616 | mnt_drop_write(path->mnt); |
Al Viro | ed75e95 | 2011-06-27 16:53:43 -0400 | [diff] [blame] | 3617 | out: |
Al Viro | 391172c | 2015-05-09 11:19:16 -0400 | [diff] [blame] | 3618 | path_put(path); |
Al Viro | 181c37b | 2015-05-12 17:21:25 -0400 | [diff] [blame] | 3619 | putname(name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3620 | return dentry; |
| 3621 | } |
Al Viro | fa14a0b | 2015-01-22 02:16:49 -0500 | [diff] [blame] | 3622 | |
| 3623 | struct dentry *kern_path_create(int dfd, const char *pathname, |
| 3624 | struct path *path, unsigned int lookup_flags) |
| 3625 | { |
Al Viro | 181c37b | 2015-05-12 17:21:25 -0400 | [diff] [blame] | 3626 | return filename_create(dfd, getname_kernel(pathname), |
| 3627 | path, lookup_flags); |
Al Viro | fa14a0b | 2015-01-22 02:16:49 -0500 | [diff] [blame] | 3628 | } |
Al Viro | dae6ad8 | 2011-06-26 11:50:15 -0400 | [diff] [blame] | 3629 | EXPORT_SYMBOL(kern_path_create); |
| 3630 | |
Al Viro | 921a165 | 2012-07-20 01:15:31 +0400 | [diff] [blame] | 3631 | void done_path_create(struct path *path, struct dentry *dentry) |
| 3632 | { |
| 3633 | dput(dentry); |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 3634 | inode_unlock(path->dentry->d_inode); |
Al Viro | a8104a9 | 2012-07-20 02:25:00 +0400 | [diff] [blame] | 3635 | mnt_drop_write(path->mnt); |
Al Viro | 921a165 | 2012-07-20 01:15:31 +0400 | [diff] [blame] | 3636 | path_put(path); |
| 3637 | } |
| 3638 | EXPORT_SYMBOL(done_path_create); |
| 3639 | |
Al Viro | 520ae68 | 2015-05-13 07:00:28 -0400 | [diff] [blame] | 3640 | inline struct dentry *user_path_create(int dfd, const char __user *pathname, |
Jeff Layton | 1ac12b4 | 2012-12-11 12:10:06 -0500 | [diff] [blame] | 3641 | struct path *path, unsigned int lookup_flags) |
Al Viro | dae6ad8 | 2011-06-26 11:50:15 -0400 | [diff] [blame] | 3642 | { |
Al Viro | 181c37b | 2015-05-12 17:21:25 -0400 | [diff] [blame] | 3643 | return filename_create(dfd, getname(pathname), path, lookup_flags); |
Al Viro | dae6ad8 | 2011-06-26 11:50:15 -0400 | [diff] [blame] | 3644 | } |
| 3645 | EXPORT_SYMBOL(user_path_create); |
| 3646 | |
Al Viro | 1a67aaf | 2011-07-26 01:52:52 -0400 | [diff] [blame] | 3647 | int vfs_mknod(struct inode *dir, struct dentry *dentry, umode_t mode, dev_t dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3648 | { |
Miklos Szeredi | a95164d | 2008-07-30 15:08:48 +0200 | [diff] [blame] | 3649 | int error = may_create(dir, dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3650 | |
| 3651 | if (error) |
| 3652 | return error; |
| 3653 | |
Eric W. Biederman | 975d6b3 | 2011-11-13 12:16:43 -0800 | [diff] [blame] | 3654 | if ((S_ISCHR(mode) || S_ISBLK(mode)) && !capable(CAP_MKNOD)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3655 | return -EPERM; |
| 3656 | |
Al Viro | acfa438 | 2008-12-04 10:06:33 -0500 | [diff] [blame] | 3657 | if (!dir->i_op->mknod) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3658 | return -EPERM; |
| 3659 | |
Serge E. Hallyn | 08ce5f1 | 2008-04-29 01:00:10 -0700 | [diff] [blame] | 3660 | error = devcgroup_inode_mknod(mode, dev); |
| 3661 | if (error) |
| 3662 | return error; |
| 3663 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3664 | error = security_inode_mknod(dir, dentry, mode, dev); |
| 3665 | if (error) |
| 3666 | return error; |
| 3667 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3668 | error = dir->i_op->mknod(dir, dentry, mode, dev); |
Stephen Smalley | a74574a | 2005-09-09 13:01:44 -0700 | [diff] [blame] | 3669 | if (!error) |
Amy Griffis | f38aa94 | 2005-11-03 15:57:06 +0000 | [diff] [blame] | 3670 | fsnotify_create(dir, dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3671 | return error; |
| 3672 | } |
Al Viro | 4d35950 | 2014-03-14 12:20:17 -0400 | [diff] [blame] | 3673 | EXPORT_SYMBOL(vfs_mknod); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3674 | |
Al Viro | f69aac0 | 2011-07-26 04:31:40 -0400 | [diff] [blame] | 3675 | static int may_mknod(umode_t mode) |
Dave Hansen | 463c319 | 2008-02-15 14:37:57 -0800 | [diff] [blame] | 3676 | { |
| 3677 | switch (mode & S_IFMT) { |
| 3678 | case S_IFREG: |
| 3679 | case S_IFCHR: |
| 3680 | case S_IFBLK: |
| 3681 | case S_IFIFO: |
| 3682 | case S_IFSOCK: |
| 3683 | case 0: /* zero mode translates to S_IFREG */ |
| 3684 | return 0; |
| 3685 | case S_IFDIR: |
| 3686 | return -EPERM; |
| 3687 | default: |
| 3688 | return -EINVAL; |
| 3689 | } |
| 3690 | } |
| 3691 | |
Al Viro | 8208a22 | 2011-07-25 17:32:17 -0400 | [diff] [blame] | 3692 | SYSCALL_DEFINE4(mknodat, int, dfd, const char __user *, filename, umode_t, mode, |
Heiko Carstens | 2e4d092 | 2009-01-14 14:14:31 +0100 | [diff] [blame] | 3693 | unsigned, dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3694 | { |
Al Viro | 2ad94ae | 2008-07-21 09:32:51 -0400 | [diff] [blame] | 3695 | struct dentry *dentry; |
Al Viro | dae6ad8 | 2011-06-26 11:50:15 -0400 | [diff] [blame] | 3696 | struct path path; |
| 3697 | int error; |
Jeff Layton | 972567f | 2012-12-20 16:00:10 -0500 | [diff] [blame] | 3698 | unsigned int lookup_flags = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3699 | |
Al Viro | 8e4bfca | 2012-07-20 01:17:26 +0400 | [diff] [blame] | 3700 | error = may_mknod(mode); |
| 3701 | if (error) |
| 3702 | return error; |
Jeff Layton | 972567f | 2012-12-20 16:00:10 -0500 | [diff] [blame] | 3703 | retry: |
| 3704 | dentry = user_path_create(dfd, filename, &path, lookup_flags); |
Al Viro | dae6ad8 | 2011-06-26 11:50:15 -0400 | [diff] [blame] | 3705 | if (IS_ERR(dentry)) |
| 3706 | return PTR_ERR(dentry); |
Al Viro | 2ad94ae | 2008-07-21 09:32:51 -0400 | [diff] [blame] | 3707 | |
Al Viro | dae6ad8 | 2011-06-26 11:50:15 -0400 | [diff] [blame] | 3708 | if (!IS_POSIXACL(path.dentry->d_inode)) |
Al Viro | ce3b0f8 | 2009-03-29 19:08:22 -0400 | [diff] [blame] | 3709 | mode &= ~current_umask(); |
Al Viro | dae6ad8 | 2011-06-26 11:50:15 -0400 | [diff] [blame] | 3710 | error = security_path_mknod(&path, dentry, mode, dev); |
Kentaro Takeda | be6d3e5 | 2008-12-17 13:24:15 +0900 | [diff] [blame] | 3711 | if (error) |
Al Viro | a8104a9 | 2012-07-20 02:25:00 +0400 | [diff] [blame] | 3712 | goto out; |
Dave Hansen | 463c319 | 2008-02-15 14:37:57 -0800 | [diff] [blame] | 3713 | switch (mode & S_IFMT) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3714 | case 0: case S_IFREG: |
Al Viro | 312b63f | 2012-06-10 18:09:36 -0400 | [diff] [blame] | 3715 | error = vfs_create(path.dentry->d_inode,dentry,mode,true); |
Mimi Zohar | 05d1a71 | 2016-02-29 19:52:05 -0500 | [diff] [blame] | 3716 | if (!error) |
| 3717 | ima_post_path_mknod(dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3718 | break; |
| 3719 | case S_IFCHR: case S_IFBLK: |
Al Viro | dae6ad8 | 2011-06-26 11:50:15 -0400 | [diff] [blame] | 3720 | error = vfs_mknod(path.dentry->d_inode,dentry,mode, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3721 | new_decode_dev(dev)); |
| 3722 | break; |
| 3723 | case S_IFIFO: case S_IFSOCK: |
Al Viro | dae6ad8 | 2011-06-26 11:50:15 -0400 | [diff] [blame] | 3724 | error = vfs_mknod(path.dentry->d_inode,dentry,mode,0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3725 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3726 | } |
Al Viro | a8104a9 | 2012-07-20 02:25:00 +0400 | [diff] [blame] | 3727 | out: |
Al Viro | 921a165 | 2012-07-20 01:15:31 +0400 | [diff] [blame] | 3728 | done_path_create(&path, dentry); |
Jeff Layton | 972567f | 2012-12-20 16:00:10 -0500 | [diff] [blame] | 3729 | if (retry_estale(error, lookup_flags)) { |
| 3730 | lookup_flags |= LOOKUP_REVAL; |
| 3731 | goto retry; |
| 3732 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3733 | return error; |
| 3734 | } |
| 3735 | |
Al Viro | 8208a22 | 2011-07-25 17:32:17 -0400 | [diff] [blame] | 3736 | SYSCALL_DEFINE3(mknod, const char __user *, filename, umode_t, mode, unsigned, dev) |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 3737 | { |
| 3738 | return sys_mknodat(AT_FDCWD, filename, mode, dev); |
| 3739 | } |
| 3740 | |
Al Viro | 18bb1db | 2011-07-26 01:41:39 -0400 | [diff] [blame] | 3741 | int vfs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3742 | { |
Miklos Szeredi | a95164d | 2008-07-30 15:08:48 +0200 | [diff] [blame] | 3743 | int error = may_create(dir, dentry); |
Al Viro | 8de5277 | 2012-02-06 12:45:27 -0500 | [diff] [blame] | 3744 | unsigned max_links = dir->i_sb->s_max_links; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3745 | |
| 3746 | if (error) |
| 3747 | return error; |
| 3748 | |
Al Viro | acfa438 | 2008-12-04 10:06:33 -0500 | [diff] [blame] | 3749 | if (!dir->i_op->mkdir) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3750 | return -EPERM; |
| 3751 | |
| 3752 | mode &= (S_IRWXUGO|S_ISVTX); |
| 3753 | error = security_inode_mkdir(dir, dentry, mode); |
| 3754 | if (error) |
| 3755 | return error; |
| 3756 | |
Al Viro | 8de5277 | 2012-02-06 12:45:27 -0500 | [diff] [blame] | 3757 | if (max_links && dir->i_nlink >= max_links) |
| 3758 | return -EMLINK; |
| 3759 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3760 | error = dir->i_op->mkdir(dir, dentry, mode); |
Stephen Smalley | a74574a | 2005-09-09 13:01:44 -0700 | [diff] [blame] | 3761 | if (!error) |
Amy Griffis | f38aa94 | 2005-11-03 15:57:06 +0000 | [diff] [blame] | 3762 | fsnotify_mkdir(dir, dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3763 | return error; |
| 3764 | } |
Al Viro | 4d35950 | 2014-03-14 12:20:17 -0400 | [diff] [blame] | 3765 | EXPORT_SYMBOL(vfs_mkdir); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3766 | |
Al Viro | a218d0f | 2011-11-21 14:59:34 -0500 | [diff] [blame] | 3767 | SYSCALL_DEFINE3(mkdirat, int, dfd, const char __user *, pathname, umode_t, mode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3768 | { |
Dave Hansen | 6902d92 | 2006-09-30 23:29:01 -0700 | [diff] [blame] | 3769 | struct dentry *dentry; |
Al Viro | dae6ad8 | 2011-06-26 11:50:15 -0400 | [diff] [blame] | 3770 | struct path path; |
| 3771 | int error; |
Jeff Layton | b76d8b8 | 2012-12-20 16:04:09 -0500 | [diff] [blame] | 3772 | unsigned int lookup_flags = LOOKUP_DIRECTORY; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3773 | |
Jeff Layton | b76d8b8 | 2012-12-20 16:04:09 -0500 | [diff] [blame] | 3774 | retry: |
| 3775 | dentry = user_path_create(dfd, pathname, &path, lookup_flags); |
Dave Hansen | 6902d92 | 2006-09-30 23:29:01 -0700 | [diff] [blame] | 3776 | if (IS_ERR(dentry)) |
Al Viro | dae6ad8 | 2011-06-26 11:50:15 -0400 | [diff] [blame] | 3777 | return PTR_ERR(dentry); |
Dave Hansen | 6902d92 | 2006-09-30 23:29:01 -0700 | [diff] [blame] | 3778 | |
Al Viro | dae6ad8 | 2011-06-26 11:50:15 -0400 | [diff] [blame] | 3779 | if (!IS_POSIXACL(path.dentry->d_inode)) |
Al Viro | ce3b0f8 | 2009-03-29 19:08:22 -0400 | [diff] [blame] | 3780 | mode &= ~current_umask(); |
Al Viro | dae6ad8 | 2011-06-26 11:50:15 -0400 | [diff] [blame] | 3781 | error = security_path_mkdir(&path, dentry, mode); |
Al Viro | a8104a9 | 2012-07-20 02:25:00 +0400 | [diff] [blame] | 3782 | if (!error) |
| 3783 | error = vfs_mkdir(path.dentry->d_inode, dentry, mode); |
Al Viro | 921a165 | 2012-07-20 01:15:31 +0400 | [diff] [blame] | 3784 | done_path_create(&path, dentry); |
Jeff Layton | b76d8b8 | 2012-12-20 16:04:09 -0500 | [diff] [blame] | 3785 | if (retry_estale(error, lookup_flags)) { |
| 3786 | lookup_flags |= LOOKUP_REVAL; |
| 3787 | goto retry; |
| 3788 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3789 | return error; |
| 3790 | } |
| 3791 | |
Al Viro | a218d0f | 2011-11-21 14:59:34 -0500 | [diff] [blame] | 3792 | SYSCALL_DEFINE2(mkdir, const char __user *, pathname, umode_t, mode) |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 3793 | { |
| 3794 | return sys_mkdirat(AT_FDCWD, pathname, mode); |
| 3795 | } |
| 3796 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3797 | int vfs_rmdir(struct inode *dir, struct dentry *dentry) |
| 3798 | { |
| 3799 | int error = may_delete(dir, dentry, 1); |
| 3800 | |
| 3801 | if (error) |
| 3802 | return error; |
| 3803 | |
Al Viro | acfa438 | 2008-12-04 10:06:33 -0500 | [diff] [blame] | 3804 | if (!dir->i_op->rmdir) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3805 | return -EPERM; |
| 3806 | |
Al Viro | 1d2ef59 | 2011-09-14 18:55:41 +0100 | [diff] [blame] | 3807 | dget(dentry); |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 3808 | inode_lock(dentry->d_inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3809 | |
Sage Weil | 912dbc1 | 2011-05-24 13:06:11 -0700 | [diff] [blame] | 3810 | error = -EBUSY; |
Eric W. Biederman | 7af1364 | 2013-10-04 19:15:13 -0700 | [diff] [blame] | 3811 | if (is_local_mountpoint(dentry)) |
Sage Weil | 912dbc1 | 2011-05-24 13:06:11 -0700 | [diff] [blame] | 3812 | goto out; |
| 3813 | |
| 3814 | error = security_inode_rmdir(dir, dentry); |
| 3815 | if (error) |
| 3816 | goto out; |
| 3817 | |
Sage Weil | 3cebde2 | 2011-05-29 21:20:59 -0700 | [diff] [blame] | 3818 | shrink_dcache_parent(dentry); |
Sage Weil | 912dbc1 | 2011-05-24 13:06:11 -0700 | [diff] [blame] | 3819 | error = dir->i_op->rmdir(dir, dentry); |
| 3820 | if (error) |
| 3821 | goto out; |
| 3822 | |
| 3823 | dentry->d_inode->i_flags |= S_DEAD; |
| 3824 | dont_mount(dentry); |
Eric W. Biederman | 8ed936b | 2013-10-01 18:33:48 -0700 | [diff] [blame] | 3825 | detach_mounts(dentry); |
Sage Weil | 912dbc1 | 2011-05-24 13:06:11 -0700 | [diff] [blame] | 3826 | |
| 3827 | out: |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 3828 | inode_unlock(dentry->d_inode); |
Al Viro | 1d2ef59 | 2011-09-14 18:55:41 +0100 | [diff] [blame] | 3829 | dput(dentry); |
Sage Weil | 912dbc1 | 2011-05-24 13:06:11 -0700 | [diff] [blame] | 3830 | if (!error) |
| 3831 | d_delete(dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3832 | return error; |
| 3833 | } |
Al Viro | 4d35950 | 2014-03-14 12:20:17 -0400 | [diff] [blame] | 3834 | EXPORT_SYMBOL(vfs_rmdir); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3835 | |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 3836 | static long do_rmdir(int dfd, const char __user *pathname) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3837 | { |
| 3838 | int error = 0; |
Jeff Layton | 91a27b2 | 2012-10-10 15:25:28 -0400 | [diff] [blame] | 3839 | struct filename *name; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3840 | struct dentry *dentry; |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 3841 | struct path path; |
| 3842 | struct qstr last; |
| 3843 | int type; |
Jeff Layton | c6ee920 | 2012-12-20 16:28:33 -0500 | [diff] [blame] | 3844 | unsigned int lookup_flags = 0; |
| 3845 | retry: |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 3846 | name = user_path_parent(dfd, pathname, |
| 3847 | &path, &last, &type, lookup_flags); |
Jeff Layton | 91a27b2 | 2012-10-10 15:25:28 -0400 | [diff] [blame] | 3848 | if (IS_ERR(name)) |
| 3849 | return PTR_ERR(name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3850 | |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 3851 | switch (type) { |
OGAWA Hirofumi | 0612d9f | 2008-10-16 07:50:29 +0900 | [diff] [blame] | 3852 | case LAST_DOTDOT: |
| 3853 | error = -ENOTEMPTY; |
| 3854 | goto exit1; |
| 3855 | case LAST_DOT: |
| 3856 | error = -EINVAL; |
| 3857 | goto exit1; |
| 3858 | case LAST_ROOT: |
| 3859 | error = -EBUSY; |
| 3860 | goto exit1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3861 | } |
OGAWA Hirofumi | 0612d9f | 2008-10-16 07:50:29 +0900 | [diff] [blame] | 3862 | |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 3863 | error = mnt_want_write(path.mnt); |
Jan Kara | c30dabf | 2012-06-12 16:20:30 +0200 | [diff] [blame] | 3864 | if (error) |
| 3865 | goto exit1; |
OGAWA Hirofumi | 0612d9f | 2008-10-16 07:50:29 +0900 | [diff] [blame] | 3866 | |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 3867 | inode_lock_nested(path.dentry->d_inode, I_MUTEX_PARENT); |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 3868 | dentry = __lookup_hash(&last, path.dentry, lookup_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3869 | error = PTR_ERR(dentry); |
Dave Hansen | 6902d92 | 2006-09-30 23:29:01 -0700 | [diff] [blame] | 3870 | if (IS_ERR(dentry)) |
| 3871 | goto exit2; |
Theodore Ts'o | e6bc45d | 2011-06-06 19:19:40 -0400 | [diff] [blame] | 3872 | if (!dentry->d_inode) { |
| 3873 | error = -ENOENT; |
| 3874 | goto exit3; |
| 3875 | } |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 3876 | error = security_path_rmdir(&path, dentry); |
Kentaro Takeda | be6d3e5 | 2008-12-17 13:24:15 +0900 | [diff] [blame] | 3877 | if (error) |
Jan Kara | c30dabf | 2012-06-12 16:20:30 +0200 | [diff] [blame] | 3878 | goto exit3; |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 3879 | error = vfs_rmdir(path.dentry->d_inode, dentry); |
Dave Hansen | 0622753 | 2008-02-15 14:37:34 -0800 | [diff] [blame] | 3880 | exit3: |
Dave Hansen | 6902d92 | 2006-09-30 23:29:01 -0700 | [diff] [blame] | 3881 | dput(dentry); |
| 3882 | exit2: |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 3883 | inode_unlock(path.dentry->d_inode); |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 3884 | mnt_drop_write(path.mnt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3885 | exit1: |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 3886 | path_put(&path); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3887 | putname(name); |
Jeff Layton | c6ee920 | 2012-12-20 16:28:33 -0500 | [diff] [blame] | 3888 | if (retry_estale(error, lookup_flags)) { |
| 3889 | lookup_flags |= LOOKUP_REVAL; |
| 3890 | goto retry; |
| 3891 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3892 | return error; |
| 3893 | } |
| 3894 | |
Heiko Carstens | 3cdad42 | 2009-01-14 14:14:22 +0100 | [diff] [blame] | 3895 | SYSCALL_DEFINE1(rmdir, const char __user *, pathname) |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 3896 | { |
| 3897 | return do_rmdir(AT_FDCWD, pathname); |
| 3898 | } |
| 3899 | |
J. Bruce Fields | b21996e | 2011-09-20 09:14:34 -0400 | [diff] [blame] | 3900 | /** |
| 3901 | * vfs_unlink - unlink a filesystem object |
| 3902 | * @dir: parent directory |
| 3903 | * @dentry: victim |
| 3904 | * @delegated_inode: returns victim inode, if the inode is delegated. |
| 3905 | * |
| 3906 | * The caller must hold dir->i_mutex. |
| 3907 | * |
| 3908 | * If vfs_unlink discovers a delegation, it will return -EWOULDBLOCK and |
| 3909 | * return a reference to the inode in delegated_inode. The caller |
| 3910 | * should then break the delegation on that inode and retry. Because |
| 3911 | * breaking a delegation may take a long time, the caller should drop |
| 3912 | * dir->i_mutex before doing so. |
| 3913 | * |
| 3914 | * Alternatively, a caller may pass NULL for delegated_inode. This may |
| 3915 | * be appropriate for callers that expect the underlying filesystem not |
| 3916 | * to be NFS exported. |
| 3917 | */ |
| 3918 | int vfs_unlink(struct inode *dir, struct dentry *dentry, struct inode **delegated_inode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3919 | { |
J. Bruce Fields | 9accbb9 | 2012-08-28 07:03:24 -0400 | [diff] [blame] | 3920 | struct inode *target = dentry->d_inode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3921 | int error = may_delete(dir, dentry, 0); |
| 3922 | |
| 3923 | if (error) |
| 3924 | return error; |
| 3925 | |
Al Viro | acfa438 | 2008-12-04 10:06:33 -0500 | [diff] [blame] | 3926 | if (!dir->i_op->unlink) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3927 | return -EPERM; |
| 3928 | |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 3929 | inode_lock(target); |
Eric W. Biederman | 8ed936b | 2013-10-01 18:33:48 -0700 | [diff] [blame] | 3930 | if (is_local_mountpoint(dentry)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3931 | error = -EBUSY; |
| 3932 | else { |
| 3933 | error = security_inode_unlink(dir, dentry); |
Al Viro | bec1052 | 2010-03-03 14:12:08 -0500 | [diff] [blame] | 3934 | if (!error) { |
J. Bruce Fields | 5a14696 | 2012-08-28 07:50:40 -0700 | [diff] [blame] | 3935 | error = try_break_deleg(target, delegated_inode); |
| 3936 | if (error) |
J. Bruce Fields | b21996e | 2011-09-20 09:14:34 -0400 | [diff] [blame] | 3937 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3938 | error = dir->i_op->unlink(dir, dentry); |
Eric W. Biederman | 8ed936b | 2013-10-01 18:33:48 -0700 | [diff] [blame] | 3939 | if (!error) { |
Al Viro | d83c49f | 2010-04-30 17:17:09 -0400 | [diff] [blame] | 3940 | dont_mount(dentry); |
Eric W. Biederman | 8ed936b | 2013-10-01 18:33:48 -0700 | [diff] [blame] | 3941 | detach_mounts(dentry); |
| 3942 | } |
Al Viro | bec1052 | 2010-03-03 14:12:08 -0500 | [diff] [blame] | 3943 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3944 | } |
J. Bruce Fields | b21996e | 2011-09-20 09:14:34 -0400 | [diff] [blame] | 3945 | out: |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 3946 | inode_unlock(target); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3947 | |
| 3948 | /* We don't d_delete() NFS sillyrenamed files--they still exist. */ |
| 3949 | if (!error && !(dentry->d_flags & DCACHE_NFSFS_RENAMED)) { |
J. Bruce Fields | 9accbb9 | 2012-08-28 07:03:24 -0400 | [diff] [blame] | 3950 | fsnotify_link_count(target); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3951 | d_delete(dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3952 | } |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 3953 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3954 | return error; |
| 3955 | } |
Al Viro | 4d35950 | 2014-03-14 12:20:17 -0400 | [diff] [blame] | 3956 | EXPORT_SYMBOL(vfs_unlink); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3957 | |
| 3958 | /* |
| 3959 | * 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] | 3960 | * 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] | 3961 | * writeout happening, and we don't want to prevent access to the directory |
| 3962 | * while waiting on the I/O. |
| 3963 | */ |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 3964 | static long do_unlinkat(int dfd, const char __user *pathname) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3965 | { |
Al Viro | 2ad94ae | 2008-07-21 09:32:51 -0400 | [diff] [blame] | 3966 | int error; |
Jeff Layton | 91a27b2 | 2012-10-10 15:25:28 -0400 | [diff] [blame] | 3967 | struct filename *name; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3968 | struct dentry *dentry; |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 3969 | struct path path; |
| 3970 | struct qstr last; |
| 3971 | int type; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3972 | struct inode *inode = NULL; |
J. Bruce Fields | b21996e | 2011-09-20 09:14:34 -0400 | [diff] [blame] | 3973 | struct inode *delegated_inode = NULL; |
Jeff Layton | 5d18f81 | 2012-12-20 16:38:04 -0500 | [diff] [blame] | 3974 | unsigned int lookup_flags = 0; |
| 3975 | retry: |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 3976 | name = user_path_parent(dfd, pathname, |
| 3977 | &path, &last, &type, lookup_flags); |
Jeff Layton | 91a27b2 | 2012-10-10 15:25:28 -0400 | [diff] [blame] | 3978 | if (IS_ERR(name)) |
| 3979 | return PTR_ERR(name); |
Al Viro | 2ad94ae | 2008-07-21 09:32:51 -0400 | [diff] [blame] | 3980 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3981 | error = -EISDIR; |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 3982 | if (type != LAST_NORM) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3983 | goto exit1; |
OGAWA Hirofumi | 0612d9f | 2008-10-16 07:50:29 +0900 | [diff] [blame] | 3984 | |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 3985 | error = mnt_want_write(path.mnt); |
Jan Kara | c30dabf | 2012-06-12 16:20:30 +0200 | [diff] [blame] | 3986 | if (error) |
| 3987 | goto exit1; |
J. Bruce Fields | b21996e | 2011-09-20 09:14:34 -0400 | [diff] [blame] | 3988 | retry_deleg: |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 3989 | inode_lock_nested(path.dentry->d_inode, I_MUTEX_PARENT); |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 3990 | dentry = __lookup_hash(&last, path.dentry, lookup_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3991 | error = PTR_ERR(dentry); |
| 3992 | if (!IS_ERR(dentry)) { |
| 3993 | /* Why not before? Because we want correct error value */ |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 3994 | if (last.name[last.len]) |
Török Edwin | 50338b8 | 2011-06-16 00:06:14 +0300 | [diff] [blame] | 3995 | goto slashes; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3996 | inode = dentry->d_inode; |
David Howells | b18825a | 2013-09-12 19:22:53 +0100 | [diff] [blame] | 3997 | if (d_is_negative(dentry)) |
Theodore Ts'o | e6bc45d | 2011-06-06 19:19:40 -0400 | [diff] [blame] | 3998 | goto slashes; |
| 3999 | ihold(inode); |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 4000 | error = security_path_unlink(&path, dentry); |
Kentaro Takeda | be6d3e5 | 2008-12-17 13:24:15 +0900 | [diff] [blame] | 4001 | if (error) |
Jan Kara | c30dabf | 2012-06-12 16:20:30 +0200 | [diff] [blame] | 4002 | goto exit2; |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 4003 | error = vfs_unlink(path.dentry->d_inode, dentry, &delegated_inode); |
Jan Kara | c30dabf | 2012-06-12 16:20:30 +0200 | [diff] [blame] | 4004 | exit2: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4005 | dput(dentry); |
| 4006 | } |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 4007 | inode_unlock(path.dentry->d_inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4008 | if (inode) |
| 4009 | iput(inode); /* truncate the inode here */ |
J. Bruce Fields | b21996e | 2011-09-20 09:14:34 -0400 | [diff] [blame] | 4010 | inode = NULL; |
| 4011 | if (delegated_inode) { |
J. Bruce Fields | 5a14696 | 2012-08-28 07:50:40 -0700 | [diff] [blame] | 4012 | error = break_deleg_wait(&delegated_inode); |
J. Bruce Fields | b21996e | 2011-09-20 09:14:34 -0400 | [diff] [blame] | 4013 | if (!error) |
| 4014 | goto retry_deleg; |
| 4015 | } |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 4016 | mnt_drop_write(path.mnt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4017 | exit1: |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 4018 | path_put(&path); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4019 | putname(name); |
Jeff Layton | 5d18f81 | 2012-12-20 16:38:04 -0500 | [diff] [blame] | 4020 | if (retry_estale(error, lookup_flags)) { |
| 4021 | lookup_flags |= LOOKUP_REVAL; |
| 4022 | inode = NULL; |
| 4023 | goto retry; |
| 4024 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4025 | return error; |
| 4026 | |
| 4027 | slashes: |
David Howells | b18825a | 2013-09-12 19:22:53 +0100 | [diff] [blame] | 4028 | if (d_is_negative(dentry)) |
| 4029 | error = -ENOENT; |
Miklos Szeredi | 44b1d53 | 2014-04-01 17:08:41 +0200 | [diff] [blame] | 4030 | else if (d_is_dir(dentry)) |
David Howells | b18825a | 2013-09-12 19:22:53 +0100 | [diff] [blame] | 4031 | error = -EISDIR; |
| 4032 | else |
| 4033 | error = -ENOTDIR; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4034 | goto exit2; |
| 4035 | } |
| 4036 | |
Heiko Carstens | 2e4d092 | 2009-01-14 14:14:31 +0100 | [diff] [blame] | 4037 | SYSCALL_DEFINE3(unlinkat, int, dfd, const char __user *, pathname, int, flag) |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 4038 | { |
| 4039 | if ((flag & ~AT_REMOVEDIR) != 0) |
| 4040 | return -EINVAL; |
| 4041 | |
| 4042 | if (flag & AT_REMOVEDIR) |
| 4043 | return do_rmdir(dfd, pathname); |
| 4044 | |
| 4045 | return do_unlinkat(dfd, pathname); |
| 4046 | } |
| 4047 | |
Heiko Carstens | 3480b25 | 2009-01-14 14:14:16 +0100 | [diff] [blame] | 4048 | SYSCALL_DEFINE1(unlink, const char __user *, pathname) |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 4049 | { |
| 4050 | return do_unlinkat(AT_FDCWD, pathname); |
| 4051 | } |
| 4052 | |
Miklos Szeredi | db2e747 | 2008-06-24 16:50:16 +0200 | [diff] [blame] | 4053 | int vfs_symlink(struct inode *dir, struct dentry *dentry, const char *oldname) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4054 | { |
Miklos Szeredi | a95164d | 2008-07-30 15:08:48 +0200 | [diff] [blame] | 4055 | int error = may_create(dir, dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4056 | |
| 4057 | if (error) |
| 4058 | return error; |
| 4059 | |
Al Viro | acfa438 | 2008-12-04 10:06:33 -0500 | [diff] [blame] | 4060 | if (!dir->i_op->symlink) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4061 | return -EPERM; |
| 4062 | |
| 4063 | error = security_inode_symlink(dir, dentry, oldname); |
| 4064 | if (error) |
| 4065 | return error; |
| 4066 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4067 | error = dir->i_op->symlink(dir, dentry, oldname); |
Stephen Smalley | a74574a | 2005-09-09 13:01:44 -0700 | [diff] [blame] | 4068 | if (!error) |
Amy Griffis | f38aa94 | 2005-11-03 15:57:06 +0000 | [diff] [blame] | 4069 | fsnotify_create(dir, dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4070 | return error; |
| 4071 | } |
Al Viro | 4d35950 | 2014-03-14 12:20:17 -0400 | [diff] [blame] | 4072 | EXPORT_SYMBOL(vfs_symlink); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4073 | |
Heiko Carstens | 2e4d092 | 2009-01-14 14:14:31 +0100 | [diff] [blame] | 4074 | SYSCALL_DEFINE3(symlinkat, const char __user *, oldname, |
| 4075 | int, newdfd, const char __user *, newname) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4076 | { |
Al Viro | 2ad94ae | 2008-07-21 09:32:51 -0400 | [diff] [blame] | 4077 | int error; |
Jeff Layton | 91a27b2 | 2012-10-10 15:25:28 -0400 | [diff] [blame] | 4078 | struct filename *from; |
Dave Hansen | 6902d92 | 2006-09-30 23:29:01 -0700 | [diff] [blame] | 4079 | struct dentry *dentry; |
Al Viro | dae6ad8 | 2011-06-26 11:50:15 -0400 | [diff] [blame] | 4080 | struct path path; |
Jeff Layton | f46d356 | 2012-12-11 12:10:08 -0500 | [diff] [blame] | 4081 | unsigned int lookup_flags = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4082 | |
| 4083 | from = getname(oldname); |
Al Viro | 2ad94ae | 2008-07-21 09:32:51 -0400 | [diff] [blame] | 4084 | if (IS_ERR(from)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4085 | return PTR_ERR(from); |
Jeff Layton | f46d356 | 2012-12-11 12:10:08 -0500 | [diff] [blame] | 4086 | retry: |
| 4087 | dentry = user_path_create(newdfd, newname, &path, lookup_flags); |
Dave Hansen | 6902d92 | 2006-09-30 23:29:01 -0700 | [diff] [blame] | 4088 | error = PTR_ERR(dentry); |
| 4089 | if (IS_ERR(dentry)) |
Al Viro | dae6ad8 | 2011-06-26 11:50:15 -0400 | [diff] [blame] | 4090 | goto out_putname; |
Dave Hansen | 6902d92 | 2006-09-30 23:29:01 -0700 | [diff] [blame] | 4091 | |
Jeff Layton | 91a27b2 | 2012-10-10 15:25:28 -0400 | [diff] [blame] | 4092 | error = security_path_symlink(&path, dentry, from->name); |
Al Viro | a8104a9 | 2012-07-20 02:25:00 +0400 | [diff] [blame] | 4093 | if (!error) |
Jeff Layton | 91a27b2 | 2012-10-10 15:25:28 -0400 | [diff] [blame] | 4094 | error = vfs_symlink(path.dentry->d_inode, dentry, from->name); |
Al Viro | 921a165 | 2012-07-20 01:15:31 +0400 | [diff] [blame] | 4095 | done_path_create(&path, dentry); |
Jeff Layton | f46d356 | 2012-12-11 12:10:08 -0500 | [diff] [blame] | 4096 | if (retry_estale(error, lookup_flags)) { |
| 4097 | lookup_flags |= LOOKUP_REVAL; |
| 4098 | goto retry; |
| 4099 | } |
Dave Hansen | 6902d92 | 2006-09-30 23:29:01 -0700 | [diff] [blame] | 4100 | out_putname: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4101 | putname(from); |
| 4102 | return error; |
| 4103 | } |
| 4104 | |
Heiko Carstens | 3480b25 | 2009-01-14 14:14:16 +0100 | [diff] [blame] | 4105 | SYSCALL_DEFINE2(symlink, const char __user *, oldname, const char __user *, newname) |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 4106 | { |
| 4107 | return sys_symlinkat(oldname, AT_FDCWD, newname); |
| 4108 | } |
| 4109 | |
J. Bruce Fields | 146a859 | 2011-09-20 17:14:31 -0400 | [diff] [blame] | 4110 | /** |
| 4111 | * vfs_link - create a new link |
| 4112 | * @old_dentry: object to be linked |
| 4113 | * @dir: new parent |
| 4114 | * @new_dentry: where to create the new link |
| 4115 | * @delegated_inode: returns inode needing a delegation break |
| 4116 | * |
| 4117 | * The caller must hold dir->i_mutex |
| 4118 | * |
| 4119 | * If vfs_link discovers a delegation on the to-be-linked file in need |
| 4120 | * of breaking, it will return -EWOULDBLOCK and return a reference to the |
| 4121 | * inode in delegated_inode. The caller should then break the delegation |
| 4122 | * and retry. Because breaking a delegation may take a long time, the |
| 4123 | * caller should drop the i_mutex before doing so. |
| 4124 | * |
| 4125 | * Alternatively, a caller may pass NULL for delegated_inode. This may |
| 4126 | * be appropriate for callers that expect the underlying filesystem not |
| 4127 | * to be NFS exported. |
| 4128 | */ |
| 4129 | int vfs_link(struct dentry *old_dentry, struct inode *dir, struct dentry *new_dentry, struct inode **delegated_inode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4130 | { |
| 4131 | struct inode *inode = old_dentry->d_inode; |
Al Viro | 8de5277 | 2012-02-06 12:45:27 -0500 | [diff] [blame] | 4132 | unsigned max_links = dir->i_sb->s_max_links; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4133 | int error; |
| 4134 | |
| 4135 | if (!inode) |
| 4136 | return -ENOENT; |
| 4137 | |
Miklos Szeredi | a95164d | 2008-07-30 15:08:48 +0200 | [diff] [blame] | 4138 | error = may_create(dir, new_dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4139 | if (error) |
| 4140 | return error; |
| 4141 | |
| 4142 | if (dir->i_sb != inode->i_sb) |
| 4143 | return -EXDEV; |
| 4144 | |
| 4145 | /* |
| 4146 | * A link to an append-only or immutable file cannot be created. |
| 4147 | */ |
| 4148 | if (IS_APPEND(inode) || IS_IMMUTABLE(inode)) |
| 4149 | return -EPERM; |
Al Viro | acfa438 | 2008-12-04 10:06:33 -0500 | [diff] [blame] | 4150 | if (!dir->i_op->link) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4151 | return -EPERM; |
Tetsuo Handa | 7e79eed | 2008-06-24 16:50:15 +0200 | [diff] [blame] | 4152 | if (S_ISDIR(inode->i_mode)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4153 | return -EPERM; |
| 4154 | |
| 4155 | error = security_inode_link(old_dentry, dir, new_dentry); |
| 4156 | if (error) |
| 4157 | return error; |
| 4158 | |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 4159 | inode_lock(inode); |
Aneesh Kumar K.V | aae8a97 | 2011-01-29 18:43:27 +0530 | [diff] [blame] | 4160 | /* Make sure we don't allow creating hardlink to an unlinked file */ |
Al Viro | f4e0c30 | 2013-06-11 08:34:36 +0400 | [diff] [blame] | 4161 | if (inode->i_nlink == 0 && !(inode->i_state & I_LINKABLE)) |
Aneesh Kumar K.V | aae8a97 | 2011-01-29 18:43:27 +0530 | [diff] [blame] | 4162 | error = -ENOENT; |
Al Viro | 8de5277 | 2012-02-06 12:45:27 -0500 | [diff] [blame] | 4163 | else if (max_links && inode->i_nlink >= max_links) |
| 4164 | error = -EMLINK; |
J. Bruce Fields | 146a859 | 2011-09-20 17:14:31 -0400 | [diff] [blame] | 4165 | else { |
| 4166 | error = try_break_deleg(inode, delegated_inode); |
| 4167 | if (!error) |
| 4168 | error = dir->i_op->link(old_dentry, dir, new_dentry); |
| 4169 | } |
Al Viro | f4e0c30 | 2013-06-11 08:34:36 +0400 | [diff] [blame] | 4170 | |
| 4171 | if (!error && (inode->i_state & I_LINKABLE)) { |
| 4172 | spin_lock(&inode->i_lock); |
| 4173 | inode->i_state &= ~I_LINKABLE; |
| 4174 | spin_unlock(&inode->i_lock); |
| 4175 | } |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 4176 | inode_unlock(inode); |
Stephen Smalley | e31e14e | 2005-09-09 13:01:45 -0700 | [diff] [blame] | 4177 | if (!error) |
Tetsuo Handa | 7e79eed | 2008-06-24 16:50:15 +0200 | [diff] [blame] | 4178 | fsnotify_link(dir, inode, new_dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4179 | return error; |
| 4180 | } |
Al Viro | 4d35950 | 2014-03-14 12:20:17 -0400 | [diff] [blame] | 4181 | EXPORT_SYMBOL(vfs_link); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4182 | |
| 4183 | /* |
| 4184 | * Hardlinks are often used in delicate situations. We avoid |
| 4185 | * security-related surprises by not following symlinks on the |
| 4186 | * newname. --KAB |
| 4187 | * |
| 4188 | * We don't follow them on the oldname either to be compatible |
| 4189 | * with linux 2.0, and to avoid hard-linking to directories |
| 4190 | * and other special files. --ADM |
| 4191 | */ |
Heiko Carstens | 2e4d092 | 2009-01-14 14:14:31 +0100 | [diff] [blame] | 4192 | SYSCALL_DEFINE5(linkat, int, olddfd, const char __user *, oldname, |
| 4193 | int, newdfd, const char __user *, newname, int, flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4194 | { |
| 4195 | struct dentry *new_dentry; |
Al Viro | dae6ad8 | 2011-06-26 11:50:15 -0400 | [diff] [blame] | 4196 | struct path old_path, new_path; |
J. Bruce Fields | 146a859 | 2011-09-20 17:14:31 -0400 | [diff] [blame] | 4197 | struct inode *delegated_inode = NULL; |
Aneesh Kumar K.V | 11a7b37 | 2011-01-29 18:43:42 +0530 | [diff] [blame] | 4198 | int how = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4199 | int error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4200 | |
Aneesh Kumar K.V | 11a7b37 | 2011-01-29 18:43:42 +0530 | [diff] [blame] | 4201 | if ((flags & ~(AT_SYMLINK_FOLLOW | AT_EMPTY_PATH)) != 0) |
Ulrich Drepper | c04030e | 2006-02-24 13:04:21 -0800 | [diff] [blame] | 4202 | return -EINVAL; |
Aneesh Kumar K.V | 11a7b37 | 2011-01-29 18:43:42 +0530 | [diff] [blame] | 4203 | /* |
Linus Torvalds | f0cc6ff | 2013-08-28 09:18:05 -0700 | [diff] [blame] | 4204 | * To use null names we require CAP_DAC_READ_SEARCH |
| 4205 | * This ensures that not everyone will be able to create |
| 4206 | * handlink using the passed filedescriptor. |
Aneesh Kumar K.V | 11a7b37 | 2011-01-29 18:43:42 +0530 | [diff] [blame] | 4207 | */ |
Linus Torvalds | f0cc6ff | 2013-08-28 09:18:05 -0700 | [diff] [blame] | 4208 | if (flags & AT_EMPTY_PATH) { |
| 4209 | if (!capable(CAP_DAC_READ_SEARCH)) |
| 4210 | return -ENOENT; |
Aneesh Kumar K.V | 11a7b37 | 2011-01-29 18:43:42 +0530 | [diff] [blame] | 4211 | how = LOOKUP_EMPTY; |
Linus Torvalds | f0cc6ff | 2013-08-28 09:18:05 -0700 | [diff] [blame] | 4212 | } |
Ulrich Drepper | c04030e | 2006-02-24 13:04:21 -0800 | [diff] [blame] | 4213 | |
Aneesh Kumar K.V | 11a7b37 | 2011-01-29 18:43:42 +0530 | [diff] [blame] | 4214 | if (flags & AT_SYMLINK_FOLLOW) |
| 4215 | how |= LOOKUP_FOLLOW; |
Jeff Layton | 442e31c | 2012-12-20 16:15:38 -0500 | [diff] [blame] | 4216 | retry: |
Aneesh Kumar K.V | 11a7b37 | 2011-01-29 18:43:42 +0530 | [diff] [blame] | 4217 | error = user_path_at(olddfd, oldname, how, &old_path); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4218 | if (error) |
Al Viro | 2ad94ae | 2008-07-21 09:32:51 -0400 | [diff] [blame] | 4219 | return error; |
| 4220 | |
Jeff Layton | 442e31c | 2012-12-20 16:15:38 -0500 | [diff] [blame] | 4221 | new_dentry = user_path_create(newdfd, newname, &new_path, |
| 4222 | (how & LOOKUP_REVAL)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4223 | error = PTR_ERR(new_dentry); |
Dave Hansen | 6902d92 | 2006-09-30 23:29:01 -0700 | [diff] [blame] | 4224 | if (IS_ERR(new_dentry)) |
Al Viro | dae6ad8 | 2011-06-26 11:50:15 -0400 | [diff] [blame] | 4225 | goto out; |
| 4226 | |
| 4227 | error = -EXDEV; |
| 4228 | if (old_path.mnt != new_path.mnt) |
| 4229 | goto out_dput; |
Kees Cook | 800179c | 2012-07-25 17:29:07 -0700 | [diff] [blame] | 4230 | error = may_linkat(&old_path); |
| 4231 | if (unlikely(error)) |
| 4232 | goto out_dput; |
Al Viro | dae6ad8 | 2011-06-26 11:50:15 -0400 | [diff] [blame] | 4233 | error = security_path_link(old_path.dentry, &new_path, new_dentry); |
Kentaro Takeda | be6d3e5 | 2008-12-17 13:24:15 +0900 | [diff] [blame] | 4234 | if (error) |
Al Viro | a8104a9 | 2012-07-20 02:25:00 +0400 | [diff] [blame] | 4235 | goto out_dput; |
J. Bruce Fields | 146a859 | 2011-09-20 17:14:31 -0400 | [diff] [blame] | 4236 | error = vfs_link(old_path.dentry, new_path.dentry->d_inode, new_dentry, &delegated_inode); |
Dave Hansen | 75c3f29 | 2008-02-15 14:37:45 -0800 | [diff] [blame] | 4237 | out_dput: |
Al Viro | 921a165 | 2012-07-20 01:15:31 +0400 | [diff] [blame] | 4238 | done_path_create(&new_path, new_dentry); |
J. Bruce Fields | 146a859 | 2011-09-20 17:14:31 -0400 | [diff] [blame] | 4239 | if (delegated_inode) { |
| 4240 | error = break_deleg_wait(&delegated_inode); |
Oleg Drokin | d22e633 | 2014-01-31 15:41:58 -0500 | [diff] [blame] | 4241 | if (!error) { |
| 4242 | path_put(&old_path); |
J. Bruce Fields | 146a859 | 2011-09-20 17:14:31 -0400 | [diff] [blame] | 4243 | goto retry; |
Oleg Drokin | d22e633 | 2014-01-31 15:41:58 -0500 | [diff] [blame] | 4244 | } |
J. Bruce Fields | 146a859 | 2011-09-20 17:14:31 -0400 | [diff] [blame] | 4245 | } |
Jeff Layton | 442e31c | 2012-12-20 16:15:38 -0500 | [diff] [blame] | 4246 | if (retry_estale(error, how)) { |
Oleg Drokin | d22e633 | 2014-01-31 15:41:58 -0500 | [diff] [blame] | 4247 | path_put(&old_path); |
Jeff Layton | 442e31c | 2012-12-20 16:15:38 -0500 | [diff] [blame] | 4248 | how |= LOOKUP_REVAL; |
| 4249 | goto retry; |
| 4250 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4251 | out: |
Al Viro | 2d8f303 | 2008-07-22 09:59:21 -0400 | [diff] [blame] | 4252 | path_put(&old_path); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4253 | |
| 4254 | return error; |
| 4255 | } |
| 4256 | |
Heiko Carstens | 3480b25 | 2009-01-14 14:14:16 +0100 | [diff] [blame] | 4257 | SYSCALL_DEFINE2(link, const char __user *, oldname, const char __user *, newname) |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 4258 | { |
Ulrich Drepper | c04030e | 2006-02-24 13:04:21 -0800 | [diff] [blame] | 4259 | return sys_linkat(AT_FDCWD, oldname, AT_FDCWD, newname, 0); |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 4260 | } |
| 4261 | |
Miklos Szeredi | bc27027 | 2014-04-01 17:08:42 +0200 | [diff] [blame] | 4262 | /** |
| 4263 | * vfs_rename - rename a filesystem object |
| 4264 | * @old_dir: parent of source |
| 4265 | * @old_dentry: source |
| 4266 | * @new_dir: parent of destination |
| 4267 | * @new_dentry: destination |
| 4268 | * @delegated_inode: returns an inode needing a delegation break |
Miklos Szeredi | 520c8b1 | 2014-04-01 17:08:42 +0200 | [diff] [blame] | 4269 | * @flags: rename flags |
Miklos Szeredi | bc27027 | 2014-04-01 17:08:42 +0200 | [diff] [blame] | 4270 | * |
| 4271 | * The caller must hold multiple mutexes--see lock_rename()). |
| 4272 | * |
| 4273 | * If vfs_rename discovers a delegation in need of breaking at either |
| 4274 | * the source or destination, it will return -EWOULDBLOCK and return a |
| 4275 | * reference to the inode in delegated_inode. The caller should then |
| 4276 | * break the delegation and retry. Because breaking a delegation may |
| 4277 | * take a long time, the caller should drop all locks before doing |
| 4278 | * so. |
| 4279 | * |
| 4280 | * Alternatively, a caller may pass NULL for delegated_inode. This may |
| 4281 | * be appropriate for callers that expect the underlying filesystem not |
| 4282 | * to be NFS exported. |
| 4283 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4284 | * The worst of all namespace operations - renaming directory. "Perverted" |
| 4285 | * doesn't even start to describe it. Somebody in UCB had a heck of a trip... |
| 4286 | * Problems: |
J. Bruce Fields | d03b29a | 2014-02-17 16:52:33 -0500 | [diff] [blame] | 4287 | * a) we can get into loop creation. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4288 | * b) race potential - two innocent renames can create a loop together. |
| 4289 | * 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] | 4290 | * 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] | 4291 | * story. |
J. Bruce Fields | 6cedba8 | 2012-03-05 11:40:41 -0500 | [diff] [blame] | 4292 | * c) we have to lock _four_ objects - parents and victim (if it exists), |
| 4293 | * and source (if it is not a directory). |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 4294 | * 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] | 4295 | * whether the target exists). Solution: try to be smart with locking |
| 4296 | * 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] | 4297 | * 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] | 4298 | * move will be locked. Thus we can rank directories by the tree |
| 4299 | * (ancestors first) and rank all non-directories after them. |
| 4300 | * That works since everybody except rename does "lock parent, lookup, |
Arjan van de Ven | a11f3a0 | 2006-03-23 03:00:33 -0800 | [diff] [blame] | 4301 | * lock child" and rename is under ->s_vfs_rename_mutex. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4302 | * HOWEVER, it relies on the assumption that any object with ->lookup() |
| 4303 | * has no more than 1 dentry. If "hybrid" objects will ever appear, |
| 4304 | * 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] | 4305 | * 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] | 4306 | * 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] | 4307 | * in the fhandle_to_dentry code. [FIXME - current nfsfh.c relies on |
Adam Buchbinder | c41b20e | 2009-12-11 16:35:39 -0500 | [diff] [blame] | 4308 | * ->i_mutex on parents, which works but leads to some truly excessive |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4309 | * locking]. |
| 4310 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4311 | int vfs_rename(struct inode *old_dir, struct dentry *old_dentry, |
J. Bruce Fields | 8e6d782 | 2011-09-20 16:59:58 -0400 | [diff] [blame] | 4312 | struct inode *new_dir, struct dentry *new_dentry, |
Miklos Szeredi | 520c8b1 | 2014-04-01 17:08:42 +0200 | [diff] [blame] | 4313 | struct inode **delegated_inode, unsigned int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4314 | { |
| 4315 | int error; |
Miklos Szeredi | bc27027 | 2014-04-01 17:08:42 +0200 | [diff] [blame] | 4316 | bool is_dir = d_is_dir(old_dentry); |
Eric Paris | 59b0df2 | 2010-02-08 12:53:52 -0500 | [diff] [blame] | 4317 | const unsigned char *old_name; |
Miklos Szeredi | bc27027 | 2014-04-01 17:08:42 +0200 | [diff] [blame] | 4318 | struct inode *source = old_dentry->d_inode; |
| 4319 | struct inode *target = new_dentry->d_inode; |
Miklos Szeredi | da1ce06 | 2014-04-01 17:08:43 +0200 | [diff] [blame] | 4320 | bool new_is_dir = false; |
| 4321 | unsigned max_links = new_dir->i_sb->s_max_links; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4322 | |
Miklos Szeredi | 9409e22 | 2016-05-11 01:16:37 +0200 | [diff] [blame] | 4323 | /* |
| 4324 | * Check source == target. |
| 4325 | * On overlayfs need to look at underlying inodes. |
| 4326 | */ |
| 4327 | if (vfs_select_inode(old_dentry, 0) == vfs_select_inode(new_dentry, 0)) |
Miklos Szeredi | bc27027 | 2014-04-01 17:08:42 +0200 | [diff] [blame] | 4328 | return 0; |
| 4329 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4330 | error = may_delete(old_dir, old_dentry, is_dir); |
| 4331 | if (error) |
| 4332 | return error; |
| 4333 | |
Miklos Szeredi | da1ce06 | 2014-04-01 17:08:43 +0200 | [diff] [blame] | 4334 | if (!target) { |
Miklos Szeredi | a95164d | 2008-07-30 15:08:48 +0200 | [diff] [blame] | 4335 | error = may_create(new_dir, new_dentry); |
Miklos Szeredi | da1ce06 | 2014-04-01 17:08:43 +0200 | [diff] [blame] | 4336 | } else { |
| 4337 | new_is_dir = d_is_dir(new_dentry); |
| 4338 | |
| 4339 | if (!(flags & RENAME_EXCHANGE)) |
| 4340 | error = may_delete(new_dir, new_dentry, is_dir); |
| 4341 | else |
| 4342 | error = may_delete(new_dir, new_dentry, new_is_dir); |
| 4343 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4344 | if (error) |
| 4345 | return error; |
| 4346 | |
Miklos Szeredi | 7177a9c | 2014-07-23 15:15:30 +0200 | [diff] [blame] | 4347 | if (!old_dir->i_op->rename && !old_dir->i_op->rename2) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4348 | return -EPERM; |
| 4349 | |
Miklos Szeredi | 520c8b1 | 2014-04-01 17:08:42 +0200 | [diff] [blame] | 4350 | if (flags && !old_dir->i_op->rename2) |
| 4351 | return -EINVAL; |
| 4352 | |
Miklos Szeredi | bc27027 | 2014-04-01 17:08:42 +0200 | [diff] [blame] | 4353 | /* |
| 4354 | * If we are going to change the parent - check write permissions, |
| 4355 | * we'll need to flip '..'. |
| 4356 | */ |
Miklos Szeredi | da1ce06 | 2014-04-01 17:08:43 +0200 | [diff] [blame] | 4357 | if (new_dir != old_dir) { |
| 4358 | if (is_dir) { |
| 4359 | error = inode_permission(source, MAY_WRITE); |
| 4360 | if (error) |
| 4361 | return error; |
| 4362 | } |
| 4363 | if ((flags & RENAME_EXCHANGE) && new_is_dir) { |
| 4364 | error = inode_permission(target, MAY_WRITE); |
| 4365 | if (error) |
| 4366 | return error; |
| 4367 | } |
Miklos Szeredi | bc27027 | 2014-04-01 17:08:42 +0200 | [diff] [blame] | 4368 | } |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 4369 | |
Miklos Szeredi | 0b3974e | 2014-04-01 17:08:43 +0200 | [diff] [blame] | 4370 | error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry, |
| 4371 | flags); |
Miklos Szeredi | bc27027 | 2014-04-01 17:08:42 +0200 | [diff] [blame] | 4372 | if (error) |
| 4373 | return error; |
| 4374 | |
| 4375 | old_name = fsnotify_oldname_init(old_dentry->d_name.name); |
| 4376 | dget(new_dentry); |
Miklos Szeredi | da1ce06 | 2014-04-01 17:08:43 +0200 | [diff] [blame] | 4377 | if (!is_dir || (flags & RENAME_EXCHANGE)) |
Miklos Szeredi | bc27027 | 2014-04-01 17:08:42 +0200 | [diff] [blame] | 4378 | lock_two_nondirectories(source, target); |
| 4379 | else if (target) |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 4380 | inode_lock(target); |
Miklos Szeredi | bc27027 | 2014-04-01 17:08:42 +0200 | [diff] [blame] | 4381 | |
| 4382 | error = -EBUSY; |
Eric W. Biederman | 7af1364 | 2013-10-04 19:15:13 -0700 | [diff] [blame] | 4383 | if (is_local_mountpoint(old_dentry) || is_local_mountpoint(new_dentry)) |
Miklos Szeredi | bc27027 | 2014-04-01 17:08:42 +0200 | [diff] [blame] | 4384 | goto out; |
| 4385 | |
Miklos Szeredi | da1ce06 | 2014-04-01 17:08:43 +0200 | [diff] [blame] | 4386 | if (max_links && new_dir != old_dir) { |
Miklos Szeredi | bc27027 | 2014-04-01 17:08:42 +0200 | [diff] [blame] | 4387 | error = -EMLINK; |
Miklos Szeredi | da1ce06 | 2014-04-01 17:08:43 +0200 | [diff] [blame] | 4388 | if (is_dir && !new_is_dir && new_dir->i_nlink >= max_links) |
Miklos Szeredi | bc27027 | 2014-04-01 17:08:42 +0200 | [diff] [blame] | 4389 | goto out; |
Miklos Szeredi | da1ce06 | 2014-04-01 17:08:43 +0200 | [diff] [blame] | 4390 | if ((flags & RENAME_EXCHANGE) && !is_dir && new_is_dir && |
| 4391 | old_dir->i_nlink >= max_links) |
| 4392 | goto out; |
| 4393 | } |
| 4394 | if (is_dir && !(flags & RENAME_EXCHANGE) && target) |
| 4395 | shrink_dcache_parent(new_dentry); |
| 4396 | if (!is_dir) { |
Miklos Szeredi | bc27027 | 2014-04-01 17:08:42 +0200 | [diff] [blame] | 4397 | error = try_break_deleg(source, delegated_inode); |
| 4398 | if (error) |
| 4399 | goto out; |
Miklos Szeredi | da1ce06 | 2014-04-01 17:08:43 +0200 | [diff] [blame] | 4400 | } |
| 4401 | if (target && !new_is_dir) { |
| 4402 | error = try_break_deleg(target, delegated_inode); |
| 4403 | if (error) |
| 4404 | goto out; |
Miklos Szeredi | bc27027 | 2014-04-01 17:08:42 +0200 | [diff] [blame] | 4405 | } |
Miklos Szeredi | 7177a9c | 2014-07-23 15:15:30 +0200 | [diff] [blame] | 4406 | if (!old_dir->i_op->rename2) { |
Miklos Szeredi | 520c8b1 | 2014-04-01 17:08:42 +0200 | [diff] [blame] | 4407 | error = old_dir->i_op->rename(old_dir, old_dentry, |
| 4408 | new_dir, new_dentry); |
| 4409 | } else { |
Miklos Szeredi | 7177a9c | 2014-07-23 15:15:30 +0200 | [diff] [blame] | 4410 | WARN_ON(old_dir->i_op->rename != NULL); |
Miklos Szeredi | 520c8b1 | 2014-04-01 17:08:42 +0200 | [diff] [blame] | 4411 | error = old_dir->i_op->rename2(old_dir, old_dentry, |
| 4412 | new_dir, new_dentry, flags); |
| 4413 | } |
Miklos Szeredi | bc27027 | 2014-04-01 17:08:42 +0200 | [diff] [blame] | 4414 | if (error) |
| 4415 | goto out; |
| 4416 | |
Miklos Szeredi | da1ce06 | 2014-04-01 17:08:43 +0200 | [diff] [blame] | 4417 | if (!(flags & RENAME_EXCHANGE) && target) { |
Miklos Szeredi | bc27027 | 2014-04-01 17:08:42 +0200 | [diff] [blame] | 4418 | if (is_dir) |
| 4419 | target->i_flags |= S_DEAD; |
| 4420 | dont_mount(new_dentry); |
Eric W. Biederman | 8ed936b | 2013-10-01 18:33:48 -0700 | [diff] [blame] | 4421 | detach_mounts(new_dentry); |
Miklos Szeredi | bc27027 | 2014-04-01 17:08:42 +0200 | [diff] [blame] | 4422 | } |
Miklos Szeredi | da1ce06 | 2014-04-01 17:08:43 +0200 | [diff] [blame] | 4423 | if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE)) { |
| 4424 | if (!(flags & RENAME_EXCHANGE)) |
| 4425 | d_move(old_dentry, new_dentry); |
| 4426 | else |
| 4427 | d_exchange(old_dentry, new_dentry); |
| 4428 | } |
Miklos Szeredi | bc27027 | 2014-04-01 17:08:42 +0200 | [diff] [blame] | 4429 | out: |
Miklos Szeredi | da1ce06 | 2014-04-01 17:08:43 +0200 | [diff] [blame] | 4430 | if (!is_dir || (flags & RENAME_EXCHANGE)) |
Miklos Szeredi | bc27027 | 2014-04-01 17:08:42 +0200 | [diff] [blame] | 4431 | unlock_two_nondirectories(source, target); |
| 4432 | else if (target) |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 4433 | inode_unlock(target); |
Miklos Szeredi | bc27027 | 2014-04-01 17:08:42 +0200 | [diff] [blame] | 4434 | dput(new_dentry); |
Miklos Szeredi | da1ce06 | 2014-04-01 17:08:43 +0200 | [diff] [blame] | 4435 | if (!error) { |
Al Viro | 123df29 | 2009-12-25 04:57:57 -0500 | [diff] [blame] | 4436 | fsnotify_move(old_dir, new_dir, old_name, is_dir, |
Miklos Szeredi | da1ce06 | 2014-04-01 17:08:43 +0200 | [diff] [blame] | 4437 | !(flags & RENAME_EXCHANGE) ? target : NULL, old_dentry); |
| 4438 | if (flags & RENAME_EXCHANGE) { |
| 4439 | fsnotify_move(new_dir, old_dir, old_dentry->d_name.name, |
| 4440 | new_is_dir, NULL, new_dentry); |
| 4441 | } |
| 4442 | } |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 4443 | fsnotify_oldname_free(old_name); |
| 4444 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4445 | return error; |
| 4446 | } |
Al Viro | 4d35950 | 2014-03-14 12:20:17 -0400 | [diff] [blame] | 4447 | EXPORT_SYMBOL(vfs_rename); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4448 | |
Miklos Szeredi | 520c8b1 | 2014-04-01 17:08:42 +0200 | [diff] [blame] | 4449 | SYSCALL_DEFINE5(renameat2, int, olddfd, const char __user *, oldname, |
| 4450 | int, newdfd, const char __user *, newname, unsigned int, flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4451 | { |
Al Viro | 2ad94ae | 2008-07-21 09:32:51 -0400 | [diff] [blame] | 4452 | struct dentry *old_dentry, *new_dentry; |
| 4453 | struct dentry *trap; |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 4454 | struct path old_path, new_path; |
| 4455 | struct qstr old_last, new_last; |
| 4456 | int old_type, new_type; |
J. Bruce Fields | 8e6d782 | 2011-09-20 16:59:58 -0400 | [diff] [blame] | 4457 | struct inode *delegated_inode = NULL; |
Jeff Layton | 91a27b2 | 2012-10-10 15:25:28 -0400 | [diff] [blame] | 4458 | struct filename *from; |
| 4459 | struct filename *to; |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 4460 | unsigned int lookup_flags = 0, target_flags = LOOKUP_RENAME_TARGET; |
Jeff Layton | c6a9428 | 2012-12-11 12:10:10 -0500 | [diff] [blame] | 4461 | bool should_retry = false; |
Al Viro | 2ad94ae | 2008-07-21 09:32:51 -0400 | [diff] [blame] | 4462 | int error; |
Miklos Szeredi | 520c8b1 | 2014-04-01 17:08:42 +0200 | [diff] [blame] | 4463 | |
Miklos Szeredi | 0d7a855 | 2014-10-24 00:14:37 +0200 | [diff] [blame] | 4464 | if (flags & ~(RENAME_NOREPLACE | RENAME_EXCHANGE | RENAME_WHITEOUT)) |
Miklos Szeredi | da1ce06 | 2014-04-01 17:08:43 +0200 | [diff] [blame] | 4465 | return -EINVAL; |
| 4466 | |
Miklos Szeredi | 0d7a855 | 2014-10-24 00:14:37 +0200 | [diff] [blame] | 4467 | if ((flags & (RENAME_NOREPLACE | RENAME_WHITEOUT)) && |
| 4468 | (flags & RENAME_EXCHANGE)) |
Miklos Szeredi | 520c8b1 | 2014-04-01 17:08:42 +0200 | [diff] [blame] | 4469 | return -EINVAL; |
| 4470 | |
Miklos Szeredi | 0d7a855 | 2014-10-24 00:14:37 +0200 | [diff] [blame] | 4471 | if ((flags & RENAME_WHITEOUT) && !capable(CAP_MKNOD)) |
| 4472 | return -EPERM; |
| 4473 | |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 4474 | if (flags & RENAME_EXCHANGE) |
| 4475 | target_flags = 0; |
| 4476 | |
Jeff Layton | c6a9428 | 2012-12-11 12:10:10 -0500 | [diff] [blame] | 4477 | retry: |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 4478 | from = user_path_parent(olddfd, oldname, |
| 4479 | &old_path, &old_last, &old_type, lookup_flags); |
Jeff Layton | 91a27b2 | 2012-10-10 15:25:28 -0400 | [diff] [blame] | 4480 | if (IS_ERR(from)) { |
| 4481 | error = PTR_ERR(from); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4482 | goto exit; |
Jeff Layton | 91a27b2 | 2012-10-10 15:25:28 -0400 | [diff] [blame] | 4483 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4484 | |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 4485 | to = user_path_parent(newdfd, newname, |
| 4486 | &new_path, &new_last, &new_type, lookup_flags); |
Jeff Layton | 91a27b2 | 2012-10-10 15:25:28 -0400 | [diff] [blame] | 4487 | if (IS_ERR(to)) { |
| 4488 | error = PTR_ERR(to); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4489 | goto exit1; |
Jeff Layton | 91a27b2 | 2012-10-10 15:25:28 -0400 | [diff] [blame] | 4490 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4491 | |
| 4492 | error = -EXDEV; |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 4493 | if (old_path.mnt != new_path.mnt) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4494 | goto exit2; |
| 4495 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4496 | error = -EBUSY; |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 4497 | if (old_type != LAST_NORM) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4498 | goto exit2; |
| 4499 | |
Miklos Szeredi | 0a7c393 | 2014-04-01 17:08:43 +0200 | [diff] [blame] | 4500 | if (flags & RENAME_NOREPLACE) |
| 4501 | error = -EEXIST; |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 4502 | if (new_type != LAST_NORM) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4503 | goto exit2; |
| 4504 | |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 4505 | error = mnt_want_write(old_path.mnt); |
Jan Kara | c30dabf | 2012-06-12 16:20:30 +0200 | [diff] [blame] | 4506 | if (error) |
| 4507 | goto exit2; |
| 4508 | |
J. Bruce Fields | 8e6d782 | 2011-09-20 16:59:58 -0400 | [diff] [blame] | 4509 | retry_deleg: |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 4510 | trap = lock_rename(new_path.dentry, old_path.dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4511 | |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 4512 | old_dentry = __lookup_hash(&old_last, old_path.dentry, lookup_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4513 | error = PTR_ERR(old_dentry); |
| 4514 | if (IS_ERR(old_dentry)) |
| 4515 | goto exit3; |
| 4516 | /* source must exist */ |
| 4517 | error = -ENOENT; |
David Howells | b18825a | 2013-09-12 19:22:53 +0100 | [diff] [blame] | 4518 | if (d_is_negative(old_dentry)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4519 | goto exit4; |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 4520 | new_dentry = __lookup_hash(&new_last, new_path.dentry, lookup_flags | target_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4521 | error = PTR_ERR(new_dentry); |
| 4522 | if (IS_ERR(new_dentry)) |
| 4523 | goto exit4; |
Miklos Szeredi | 0a7c393 | 2014-04-01 17:08:43 +0200 | [diff] [blame] | 4524 | error = -EEXIST; |
| 4525 | if ((flags & RENAME_NOREPLACE) && d_is_positive(new_dentry)) |
| 4526 | goto exit5; |
Miklos Szeredi | da1ce06 | 2014-04-01 17:08:43 +0200 | [diff] [blame] | 4527 | if (flags & RENAME_EXCHANGE) { |
| 4528 | error = -ENOENT; |
| 4529 | if (d_is_negative(new_dentry)) |
| 4530 | goto exit5; |
| 4531 | |
| 4532 | if (!d_is_dir(new_dentry)) { |
| 4533 | error = -ENOTDIR; |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 4534 | if (new_last.name[new_last.len]) |
Miklos Szeredi | da1ce06 | 2014-04-01 17:08:43 +0200 | [diff] [blame] | 4535 | goto exit5; |
| 4536 | } |
| 4537 | } |
Miklos Szeredi | 0a7c393 | 2014-04-01 17:08:43 +0200 | [diff] [blame] | 4538 | /* unless the source is a directory trailing slashes give -ENOTDIR */ |
| 4539 | if (!d_is_dir(old_dentry)) { |
| 4540 | error = -ENOTDIR; |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 4541 | if (old_last.name[old_last.len]) |
Miklos Szeredi | 0a7c393 | 2014-04-01 17:08:43 +0200 | [diff] [blame] | 4542 | goto exit5; |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 4543 | if (!(flags & RENAME_EXCHANGE) && new_last.name[new_last.len]) |
Miklos Szeredi | 0a7c393 | 2014-04-01 17:08:43 +0200 | [diff] [blame] | 4544 | goto exit5; |
| 4545 | } |
| 4546 | /* source should not be ancestor of target */ |
| 4547 | error = -EINVAL; |
| 4548 | if (old_dentry == trap) |
| 4549 | goto exit5; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4550 | /* target should not be an ancestor of source */ |
Miklos Szeredi | da1ce06 | 2014-04-01 17:08:43 +0200 | [diff] [blame] | 4551 | if (!(flags & RENAME_EXCHANGE)) |
| 4552 | error = -ENOTEMPTY; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4553 | if (new_dentry == trap) |
| 4554 | goto exit5; |
| 4555 | |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 4556 | error = security_path_rename(&old_path, old_dentry, |
| 4557 | &new_path, new_dentry, flags); |
Kentaro Takeda | be6d3e5 | 2008-12-17 13:24:15 +0900 | [diff] [blame] | 4558 | if (error) |
Jan Kara | c30dabf | 2012-06-12 16:20:30 +0200 | [diff] [blame] | 4559 | goto exit5; |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 4560 | error = vfs_rename(old_path.dentry->d_inode, old_dentry, |
| 4561 | new_path.dentry->d_inode, new_dentry, |
Miklos Szeredi | 520c8b1 | 2014-04-01 17:08:42 +0200 | [diff] [blame] | 4562 | &delegated_inode, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4563 | exit5: |
| 4564 | dput(new_dentry); |
| 4565 | exit4: |
| 4566 | dput(old_dentry); |
| 4567 | exit3: |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 4568 | unlock_rename(new_path.dentry, old_path.dentry); |
J. Bruce Fields | 8e6d782 | 2011-09-20 16:59:58 -0400 | [diff] [blame] | 4569 | if (delegated_inode) { |
| 4570 | error = break_deleg_wait(&delegated_inode); |
| 4571 | if (!error) |
| 4572 | goto retry_deleg; |
| 4573 | } |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 4574 | mnt_drop_write(old_path.mnt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4575 | exit2: |
Jeff Layton | c6a9428 | 2012-12-11 12:10:10 -0500 | [diff] [blame] | 4576 | if (retry_estale(error, lookup_flags)) |
| 4577 | should_retry = true; |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 4578 | path_put(&new_path); |
Al Viro | 2ad94ae | 2008-07-21 09:32:51 -0400 | [diff] [blame] | 4579 | putname(to); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4580 | exit1: |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 4581 | path_put(&old_path); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4582 | putname(from); |
Jeff Layton | c6a9428 | 2012-12-11 12:10:10 -0500 | [diff] [blame] | 4583 | if (should_retry) { |
| 4584 | should_retry = false; |
| 4585 | lookup_flags |= LOOKUP_REVAL; |
| 4586 | goto retry; |
| 4587 | } |
Al Viro | 2ad94ae | 2008-07-21 09:32:51 -0400 | [diff] [blame] | 4588 | exit: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4589 | return error; |
| 4590 | } |
| 4591 | |
Miklos Szeredi | 520c8b1 | 2014-04-01 17:08:42 +0200 | [diff] [blame] | 4592 | SYSCALL_DEFINE4(renameat, int, olddfd, const char __user *, oldname, |
| 4593 | int, newdfd, const char __user *, newname) |
| 4594 | { |
| 4595 | return sys_renameat2(olddfd, oldname, newdfd, newname, 0); |
| 4596 | } |
| 4597 | |
Heiko Carstens | a26eab2 | 2009-01-14 14:14:17 +0100 | [diff] [blame] | 4598 | SYSCALL_DEFINE2(rename, const char __user *, oldname, const char __user *, newname) |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 4599 | { |
Miklos Szeredi | 520c8b1 | 2014-04-01 17:08:42 +0200 | [diff] [blame] | 4600 | return sys_renameat2(AT_FDCWD, oldname, AT_FDCWD, newname, 0); |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 4601 | } |
| 4602 | |
Miklos Szeredi | 787fb6b | 2014-10-24 00:14:36 +0200 | [diff] [blame] | 4603 | int vfs_whiteout(struct inode *dir, struct dentry *dentry) |
| 4604 | { |
| 4605 | int error = may_create(dir, dentry); |
| 4606 | if (error) |
| 4607 | return error; |
| 4608 | |
| 4609 | if (!dir->i_op->mknod) |
| 4610 | return -EPERM; |
| 4611 | |
| 4612 | return dir->i_op->mknod(dir, dentry, |
| 4613 | S_IFCHR | WHITEOUT_MODE, WHITEOUT_DEV); |
| 4614 | } |
| 4615 | EXPORT_SYMBOL(vfs_whiteout); |
| 4616 | |
Al Viro | 5d826c8 | 2014-03-14 13:42:45 -0400 | [diff] [blame] | 4617 | int readlink_copy(char __user *buffer, int buflen, const char *link) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4618 | { |
Al Viro | 5d826c8 | 2014-03-14 13:42:45 -0400 | [diff] [blame] | 4619 | int len = PTR_ERR(link); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4620 | if (IS_ERR(link)) |
| 4621 | goto out; |
| 4622 | |
| 4623 | len = strlen(link); |
| 4624 | if (len > (unsigned) buflen) |
| 4625 | len = buflen; |
| 4626 | if (copy_to_user(buffer, link, len)) |
| 4627 | len = -EFAULT; |
| 4628 | out: |
| 4629 | return len; |
| 4630 | } |
| 4631 | |
| 4632 | /* |
| 4633 | * A helper for ->readlink(). This should be used *ONLY* for symlinks that |
Al Viro | 6b25539 | 2015-11-17 10:20:54 -0500 | [diff] [blame] | 4634 | * have ->get_link() not calling nd_jump_link(). Using (or not using) it |
| 4635 | * for any given inode is up to filesystem. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4636 | */ |
| 4637 | int generic_readlink(struct dentry *dentry, char __user *buffer, int buflen) |
| 4638 | { |
Al Viro | fceef39 | 2015-12-29 15:58:39 -0500 | [diff] [blame] | 4639 | DEFINE_DELAYED_CALL(done); |
Al Viro | 5f2c417 | 2015-05-07 11:14:26 -0400 | [diff] [blame] | 4640 | struct inode *inode = d_inode(dentry); |
| 4641 | const char *link = inode->i_link; |
Marcin Slusarz | 694a176 | 2008-06-09 16:40:37 -0700 | [diff] [blame] | 4642 | int res; |
Linus Torvalds | cc314ee | 2005-08-19 18:02:56 -0700 | [diff] [blame] | 4643 | |
Al Viro | d4dee48 | 2015-04-30 20:08:02 -0400 | [diff] [blame] | 4644 | if (!link) { |
Al Viro | fceef39 | 2015-12-29 15:58:39 -0500 | [diff] [blame] | 4645 | link = inode->i_op->get_link(dentry, inode, &done); |
Al Viro | d4dee48 | 2015-04-30 20:08:02 -0400 | [diff] [blame] | 4646 | if (IS_ERR(link)) |
| 4647 | return PTR_ERR(link); |
| 4648 | } |
Al Viro | 680baac | 2015-05-02 13:32:22 -0400 | [diff] [blame] | 4649 | res = readlink_copy(buffer, buflen, link); |
Al Viro | fceef39 | 2015-12-29 15:58:39 -0500 | [diff] [blame] | 4650 | do_delayed_call(&done); |
Marcin Slusarz | 694a176 | 2008-06-09 16:40:37 -0700 | [diff] [blame] | 4651 | return res; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4652 | } |
Al Viro | 4d35950 | 2014-03-14 12:20:17 -0400 | [diff] [blame] | 4653 | EXPORT_SYMBOL(generic_readlink); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4654 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4655 | /* get the link contents into pagecache */ |
Al Viro | 6b25539 | 2015-11-17 10:20:54 -0500 | [diff] [blame] | 4656 | const char *page_get_link(struct dentry *dentry, struct inode *inode, |
Al Viro | fceef39 | 2015-12-29 15:58:39 -0500 | [diff] [blame] | 4657 | struct delayed_call *callback) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4658 | { |
Duane Griffin | ebd09ab | 2008-12-19 20:47:12 +0000 | [diff] [blame] | 4659 | char *kaddr; |
| 4660 | struct page *page; |
Al Viro | 6b25539 | 2015-11-17 10:20:54 -0500 | [diff] [blame] | 4661 | struct address_space *mapping = inode->i_mapping; |
| 4662 | |
Al Viro | d3883d4 | 2015-11-17 10:41:04 -0500 | [diff] [blame] | 4663 | if (!dentry) { |
| 4664 | page = find_get_page(mapping, 0); |
| 4665 | if (!page) |
| 4666 | return ERR_PTR(-ECHILD); |
| 4667 | if (!PageUptodate(page)) { |
| 4668 | put_page(page); |
| 4669 | return ERR_PTR(-ECHILD); |
| 4670 | } |
| 4671 | } else { |
| 4672 | page = read_mapping_page(mapping, 0, NULL); |
| 4673 | if (IS_ERR(page)) |
| 4674 | return (char*)page; |
| 4675 | } |
Al Viro | fceef39 | 2015-12-29 15:58:39 -0500 | [diff] [blame] | 4676 | set_delayed_call(callback, page_put_link, page); |
Al Viro | 21fc61c | 2015-11-17 01:07:57 -0500 | [diff] [blame] | 4677 | BUG_ON(mapping_gfp_mask(mapping) & __GFP_HIGHMEM); |
| 4678 | kaddr = page_address(page); |
Al Viro | 6b25539 | 2015-11-17 10:20:54 -0500 | [diff] [blame] | 4679 | nd_terminate_link(kaddr, inode->i_size, PAGE_SIZE - 1); |
Duane Griffin | ebd09ab | 2008-12-19 20:47:12 +0000 | [diff] [blame] | 4680 | return kaddr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4681 | } |
| 4682 | |
Al Viro | 6b25539 | 2015-11-17 10:20:54 -0500 | [diff] [blame] | 4683 | EXPORT_SYMBOL(page_get_link); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4684 | |
Al Viro | fceef39 | 2015-12-29 15:58:39 -0500 | [diff] [blame] | 4685 | void page_put_link(void *arg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4686 | { |
Al Viro | fceef39 | 2015-12-29 15:58:39 -0500 | [diff] [blame] | 4687 | put_page(arg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4688 | } |
Al Viro | 4d35950 | 2014-03-14 12:20:17 -0400 | [diff] [blame] | 4689 | EXPORT_SYMBOL(page_put_link); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4690 | |
Al Viro | aa80dea | 2015-11-16 18:26:34 -0500 | [diff] [blame] | 4691 | int page_readlink(struct dentry *dentry, char __user *buffer, int buflen) |
| 4692 | { |
Al Viro | fceef39 | 2015-12-29 15:58:39 -0500 | [diff] [blame] | 4693 | DEFINE_DELAYED_CALL(done); |
Al Viro | 6b25539 | 2015-11-17 10:20:54 -0500 | [diff] [blame] | 4694 | int res = readlink_copy(buffer, buflen, |
| 4695 | page_get_link(dentry, d_inode(dentry), |
Al Viro | fceef39 | 2015-12-29 15:58:39 -0500 | [diff] [blame] | 4696 | &done)); |
| 4697 | do_delayed_call(&done); |
Al Viro | aa80dea | 2015-11-16 18:26:34 -0500 | [diff] [blame] | 4698 | return res; |
| 4699 | } |
| 4700 | EXPORT_SYMBOL(page_readlink); |
| 4701 | |
Nick Piggin | 54566b2 | 2009-01-04 12:00:53 -0800 | [diff] [blame] | 4702 | /* |
| 4703 | * The nofs argument instructs pagecache_write_begin to pass AOP_FLAG_NOFS |
| 4704 | */ |
| 4705 | 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] | 4706 | { |
| 4707 | struct address_space *mapping = inode->i_mapping; |
Kirill Korotaev | 0adb25d | 2006-03-11 03:27:13 -0800 | [diff] [blame] | 4708 | struct page *page; |
Nick Piggin | afddba4 | 2007-10-16 01:25:01 -0700 | [diff] [blame] | 4709 | void *fsdata; |
Dmitriy Monakhov | beb497a | 2007-02-16 01:27:18 -0800 | [diff] [blame] | 4710 | int err; |
Nick Piggin | 54566b2 | 2009-01-04 12:00:53 -0800 | [diff] [blame] | 4711 | unsigned int flags = AOP_FLAG_UNINTERRUPTIBLE; |
| 4712 | if (nofs) |
| 4713 | flags |= AOP_FLAG_NOFS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4714 | |
NeilBrown | 7e53cac | 2006-03-25 03:07:57 -0800 | [diff] [blame] | 4715 | retry: |
Nick Piggin | afddba4 | 2007-10-16 01:25:01 -0700 | [diff] [blame] | 4716 | err = pagecache_write_begin(NULL, mapping, 0, len-1, |
Nick Piggin | 54566b2 | 2009-01-04 12:00:53 -0800 | [diff] [blame] | 4717 | flags, &page, &fsdata); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4718 | if (err) |
Nick Piggin | afddba4 | 2007-10-16 01:25:01 -0700 | [diff] [blame] | 4719 | goto fail; |
| 4720 | |
Al Viro | 21fc61c | 2015-11-17 01:07:57 -0500 | [diff] [blame] | 4721 | memcpy(page_address(page), symname, len-1); |
Nick Piggin | afddba4 | 2007-10-16 01:25:01 -0700 | [diff] [blame] | 4722 | |
| 4723 | err = pagecache_write_end(NULL, mapping, 0, len-1, len-1, |
| 4724 | page, fsdata); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4725 | if (err < 0) |
| 4726 | goto fail; |
Nick Piggin | afddba4 | 2007-10-16 01:25:01 -0700 | [diff] [blame] | 4727 | if (err < len-1) |
| 4728 | goto retry; |
| 4729 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4730 | mark_inode_dirty(inode); |
| 4731 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4732 | fail: |
| 4733 | return err; |
| 4734 | } |
Al Viro | 4d35950 | 2014-03-14 12:20:17 -0400 | [diff] [blame] | 4735 | EXPORT_SYMBOL(__page_symlink); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4736 | |
Kirill Korotaev | 0adb25d | 2006-03-11 03:27:13 -0800 | [diff] [blame] | 4737 | int page_symlink(struct inode *inode, const char *symname, int len) |
| 4738 | { |
| 4739 | return __page_symlink(inode, symname, len, |
Michal Hocko | c62d255 | 2015-11-06 16:28:49 -0800 | [diff] [blame] | 4740 | !mapping_gfp_constraint(inode->i_mapping, __GFP_FS)); |
Kirill Korotaev | 0adb25d | 2006-03-11 03:27:13 -0800 | [diff] [blame] | 4741 | } |
Al Viro | 4d35950 | 2014-03-14 12:20:17 -0400 | [diff] [blame] | 4742 | EXPORT_SYMBOL(page_symlink); |
Kirill Korotaev | 0adb25d | 2006-03-11 03:27:13 -0800 | [diff] [blame] | 4743 | |
Arjan van de Ven | 92e1d5b | 2007-02-12 00:55:39 -0800 | [diff] [blame] | 4744 | const struct inode_operations page_symlink_inode_operations = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4745 | .readlink = generic_readlink, |
Al Viro | 6b25539 | 2015-11-17 10:20:54 -0500 | [diff] [blame] | 4746 | .get_link = page_get_link, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4747 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4748 | EXPORT_SYMBOL(page_symlink_inode_operations); |