Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
| 3 | * linux/fs/namei.c |
| 4 | * |
| 5 | * Copyright (C) 1991, 1992 Linus Torvalds |
| 6 | */ |
| 7 | |
| 8 | /* |
| 9 | * Some corrections by tytso. |
| 10 | */ |
| 11 | |
| 12 | /* [Feb 1997 T. Schoebel-Theuer] Complete rewrite of the pathname |
| 13 | * lookup logic. |
| 14 | */ |
| 15 | /* [Feb-Apr 2000, AV] Rewrite to the new namespace architecture. |
| 16 | */ |
| 17 | |
| 18 | #include <linux/init.h> |
Paul Gortmaker | 630d9c4 | 2011-11-16 23:57:37 -0500 | [diff] [blame] | 19 | #include <linux/export.h> |
David S. Miller | 4469690 | 2012-05-23 20:12:50 -0700 | [diff] [blame] | 20 | #include <linux/kernel.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | #include <linux/slab.h> |
| 22 | #include <linux/fs.h> |
| 23 | #include <linux/namei.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | #include <linux/pagemap.h> |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 25 | #include <linux/fsnotify.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | #include <linux/personality.h> |
| 27 | #include <linux/security.h> |
Mimi Zohar | 6146f0d | 2009-02-04 09:06:57 -0500 | [diff] [blame] | 28 | #include <linux/ima.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | #include <linux/syscalls.h> |
| 30 | #include <linux/mount.h> |
| 31 | #include <linux/audit.h> |
Randy Dunlap | 16f7e0f | 2006-01-11 12:17:46 -0800 | [diff] [blame] | 32 | #include <linux/capability.h> |
Trond Myklebust | 834f2a4 | 2005-10-18 14:20:16 -0700 | [diff] [blame] | 33 | #include <linux/file.h> |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 34 | #include <linux/fcntl.h> |
Serge E. Hallyn | 08ce5f1 | 2008-04-29 01:00:10 -0700 | [diff] [blame] | 35 | #include <linux/device_cgroup.h> |
Al Viro | 5ad4e53 | 2009-03-29 19:50:06 -0400 | [diff] [blame] | 36 | #include <linux/fs_struct.h> |
Linus Torvalds | e77819e | 2011-07-22 19:30:19 -0700 | [diff] [blame] | 37 | #include <linux/posix_acl.h> |
Linus Torvalds | 99d263d | 2014-09-13 11:30:10 -0700 | [diff] [blame] | 38 | #include <linux/hash.h> |
George Spelvin | 2a18da7a | 2016-05-23 07:43:58 -0400 | [diff] [blame] | 39 | #include <linux/bitops.h> |
Eric W. Biederman | aeaa4a7 | 2016-07-23 11:20:44 -0500 | [diff] [blame] | 40 | #include <linux/init_task.h> |
Linus Torvalds | 7c0f6ba | 2016-12-24 11:46:01 -0800 | [diff] [blame] | 41 | #include <linux/uaccess.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | |
Eric Paris | e81e3f4 | 2009-12-04 15:47:36 -0500 | [diff] [blame] | 43 | #include "internal.h" |
Al Viro | c710536 | 2011-11-24 18:22:03 -0500 | [diff] [blame] | 44 | #include "mount.h" |
Eric Paris | e81e3f4 | 2009-12-04 15:47:36 -0500 | [diff] [blame] | 45 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | /* [Feb-1997 T. Schoebel-Theuer] |
| 47 | * Fundamental changes in the pathname lookup mechanisms (namei) |
| 48 | * were necessary because of omirr. The reason is that omirr needs |
| 49 | * to know the _real_ pathname, not the user-supplied one, in case |
| 50 | * of symlinks (and also when transname replacements occur). |
| 51 | * |
| 52 | * The new code replaces the old recursive symlink resolution with |
| 53 | * an iterative one (in case of non-nested symlink chains). It does |
| 54 | * this with calls to <fs>_follow_link(). |
| 55 | * As a side effect, dir_namei(), _namei() and follow_link() are now |
| 56 | * replaced with a single function lookup_dentry() that can handle all |
| 57 | * the special cases of the former code. |
| 58 | * |
| 59 | * With the new dcache, the pathname is stored at each inode, at least as |
| 60 | * long as the refcount of the inode is positive. As a side effect, the |
| 61 | * size of the dcache depends on the inode cache and thus is dynamic. |
| 62 | * |
| 63 | * [29-Apr-1998 C. Scott Ananian] Updated above description of symlink |
| 64 | * resolution to correspond with current state of the code. |
| 65 | * |
| 66 | * Note that the symlink resolution is not *completely* iterative. |
| 67 | * There is still a significant amount of tail- and mid- recursion in |
| 68 | * the algorithm. Also, note that <fs>_readlink() is not used in |
| 69 | * lookup_dentry(): lookup_dentry() on the result of <fs>_readlink() |
| 70 | * may return different results than <fs>_follow_link(). Many virtual |
| 71 | * filesystems (including /proc) exhibit this behavior. |
| 72 | */ |
| 73 | |
| 74 | /* [24-Feb-97 T. Schoebel-Theuer] Side effects caused by new implementation: |
| 75 | * New symlink semantics: when open() is called with flags O_CREAT | O_EXCL |
| 76 | * and the name already exists in form of a symlink, try to create the new |
| 77 | * name indicated by the symlink. The old code always complained that the |
| 78 | * name already exists, due to not following the symlink even if its target |
| 79 | * is nonexistent. The new semantics affects also mknod() and link() when |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 80 | * the name is a symlink pointing to a non-existent name. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | * |
| 82 | * I don't know which semantics is the right one, since I have no access |
| 83 | * to standards. But I found by trial that HP-UX 9.0 has the full "new" |
| 84 | * semantics implemented, while SunOS 4.1.1 and Solaris (SunOS 5.4) have the |
| 85 | * "old" one. Personally, I think the new semantics is much more logical. |
| 86 | * Note that "ln old new" where "new" is a symlink pointing to a non-existing |
| 87 | * file does succeed in both HP-UX and SunOs, but not in Solaris |
| 88 | * and in the old Linux semantics. |
| 89 | */ |
| 90 | |
| 91 | /* [16-Dec-97 Kevin Buhr] For security reasons, we change some symlink |
| 92 | * semantics. See the comments in "open_namei" and "do_link" below. |
| 93 | * |
| 94 | * [10-Sep-98 Alan Modra] Another symlink change. |
| 95 | */ |
| 96 | |
| 97 | /* [Feb-Apr 2000 AV] Complete rewrite. Rules for symlinks: |
| 98 | * inside the path - always follow. |
| 99 | * in the last component in creation/removal/renaming - never follow. |
| 100 | * if LOOKUP_FOLLOW passed - follow. |
| 101 | * if the pathname has trailing slashes - follow. |
| 102 | * otherwise - don't follow. |
| 103 | * (applied in that order). |
| 104 | * |
| 105 | * [Jun 2000 AV] Inconsistent behaviour of open() in case if flags==O_CREAT |
| 106 | * restored for 2.4. This is the last surviving part of old 4.2BSD bug. |
| 107 | * During the 2.4 we need to fix the userland stuff depending on it - |
| 108 | * hopefully we will be able to get rid of that wart in 2.5. So far only |
| 109 | * XEmacs seems to be relying on it... |
| 110 | */ |
| 111 | /* |
| 112 | * [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] | 113 | * 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] | 114 | * any extra contention... |
| 115 | */ |
| 116 | |
| 117 | /* In order to reduce some races, while at the same time doing additional |
| 118 | * checking and hopefully speeding things up, we copy filenames to the |
| 119 | * kernel data space before using them.. |
| 120 | * |
| 121 | * POSIX.1 2.4: an empty pathname is invalid (ENOENT). |
| 122 | * PATH_MAX includes the nul terminator --RR. |
| 123 | */ |
Jeff Layton | 91a27b2 | 2012-10-10 15:25:28 -0400 | [diff] [blame] | 124 | |
Al Viro | fd2f7cb | 2015-02-22 20:07:13 -0500 | [diff] [blame] | 125 | #define EMBEDDED_NAME_MAX (PATH_MAX - offsetof(struct filename, iname)) |
Jeff Layton | 7950e38 | 2012-10-10 16:43:13 -0400 | [diff] [blame] | 126 | |
David Drysdale | 51f39a1 | 2014-12-12 16:57:29 -0800 | [diff] [blame] | 127 | struct filename * |
Jeff Layton | 91a27b2 | 2012-10-10 15:25:28 -0400 | [diff] [blame] | 128 | getname_flags(const char __user *filename, int flags, int *empty) |
| 129 | { |
Al Viro | 94b5d26 | 2015-02-22 19:38:03 -0500 | [diff] [blame] | 130 | struct filename *result; |
Jeff Layton | 7950e38 | 2012-10-10 16:43:13 -0400 | [diff] [blame] | 131 | char *kname; |
Al Viro | 94b5d26 | 2015-02-22 19:38:03 -0500 | [diff] [blame] | 132 | int len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 133 | |
Jeff Layton | 7ac8626 | 2012-10-10 15:25:28 -0400 | [diff] [blame] | 134 | result = audit_reusename(filename); |
| 135 | if (result) |
| 136 | return result; |
| 137 | |
Jeff Layton | 7950e38 | 2012-10-10 16:43:13 -0400 | [diff] [blame] | 138 | result = __getname(); |
Linus Torvalds | 3f9f0aa | 2012-04-28 14:38:32 -0700 | [diff] [blame] | 139 | if (unlikely(!result)) |
Eric Paris | 4043cde | 2012-01-03 14:23:08 -0500 | [diff] [blame] | 140 | return ERR_PTR(-ENOMEM); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 141 | |
Jeff Layton | 7950e38 | 2012-10-10 16:43:13 -0400 | [diff] [blame] | 142 | /* |
| 143 | * First, try to embed the struct filename inside the names_cache |
| 144 | * allocation |
| 145 | */ |
Al Viro | fd2f7cb | 2015-02-22 20:07:13 -0500 | [diff] [blame] | 146 | kname = (char *)result->iname; |
Jeff Layton | 91a27b2 | 2012-10-10 15:25:28 -0400 | [diff] [blame] | 147 | result->name = kname; |
Jeff Layton | 7950e38 | 2012-10-10 16:43:13 -0400 | [diff] [blame] | 148 | |
Al Viro | 94b5d26 | 2015-02-22 19:38:03 -0500 | [diff] [blame] | 149 | len = strncpy_from_user(kname, filename, EMBEDDED_NAME_MAX); |
Jeff Layton | 91a27b2 | 2012-10-10 15:25:28 -0400 | [diff] [blame] | 150 | if (unlikely(len < 0)) { |
Al Viro | 94b5d26 | 2015-02-22 19:38:03 -0500 | [diff] [blame] | 151 | __putname(result); |
| 152 | return ERR_PTR(len); |
Jeff Layton | 91a27b2 | 2012-10-10 15:25:28 -0400 | [diff] [blame] | 153 | } |
Linus Torvalds | 3f9f0aa | 2012-04-28 14:38:32 -0700 | [diff] [blame] | 154 | |
Jeff Layton | 7950e38 | 2012-10-10 16:43:13 -0400 | [diff] [blame] | 155 | /* |
| 156 | * Uh-oh. We have a name that's approaching PATH_MAX. Allocate a |
| 157 | * separate struct filename so we can dedicate the entire |
| 158 | * names_cache allocation for the pathname, and re-do the copy from |
| 159 | * userland. |
| 160 | */ |
Al Viro | 94b5d26 | 2015-02-22 19:38:03 -0500 | [diff] [blame] | 161 | if (unlikely(len == EMBEDDED_NAME_MAX)) { |
Al Viro | fd2f7cb | 2015-02-22 20:07:13 -0500 | [diff] [blame] | 162 | const size_t size = offsetof(struct filename, iname[1]); |
Jeff Layton | 7950e38 | 2012-10-10 16:43:13 -0400 | [diff] [blame] | 163 | kname = (char *)result; |
| 164 | |
Al Viro | fd2f7cb | 2015-02-22 20:07:13 -0500 | [diff] [blame] | 165 | /* |
| 166 | * size is chosen that way we to guarantee that |
| 167 | * result->iname[0] is within the same object and that |
| 168 | * kname can't be equal to result->iname, no matter what. |
| 169 | */ |
| 170 | result = kzalloc(size, GFP_KERNEL); |
Al Viro | 94b5d26 | 2015-02-22 19:38:03 -0500 | [diff] [blame] | 171 | if (unlikely(!result)) { |
| 172 | __putname(kname); |
| 173 | return ERR_PTR(-ENOMEM); |
Jeff Layton | 7950e38 | 2012-10-10 16:43:13 -0400 | [diff] [blame] | 174 | } |
| 175 | result->name = kname; |
Al Viro | 94b5d26 | 2015-02-22 19:38:03 -0500 | [diff] [blame] | 176 | len = strncpy_from_user(kname, filename, PATH_MAX); |
| 177 | if (unlikely(len < 0)) { |
| 178 | __putname(kname); |
| 179 | kfree(result); |
| 180 | return ERR_PTR(len); |
| 181 | } |
| 182 | if (unlikely(len == PATH_MAX)) { |
| 183 | __putname(kname); |
| 184 | kfree(result); |
| 185 | return ERR_PTR(-ENAMETOOLONG); |
| 186 | } |
Jeff Layton | 7950e38 | 2012-10-10 16:43:13 -0400 | [diff] [blame] | 187 | } |
| 188 | |
Al Viro | 94b5d26 | 2015-02-22 19:38:03 -0500 | [diff] [blame] | 189 | result->refcnt = 1; |
Linus Torvalds | 3f9f0aa | 2012-04-28 14:38:32 -0700 | [diff] [blame] | 190 | /* The empty path is special. */ |
| 191 | if (unlikely(!len)) { |
| 192 | if (empty) |
Eric Paris | 4043cde | 2012-01-03 14:23:08 -0500 | [diff] [blame] | 193 | *empty = 1; |
Al Viro | 94b5d26 | 2015-02-22 19:38:03 -0500 | [diff] [blame] | 194 | if (!(flags & LOOKUP_EMPTY)) { |
| 195 | putname(result); |
| 196 | return ERR_PTR(-ENOENT); |
| 197 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 198 | } |
Linus Torvalds | 3f9f0aa | 2012-04-28 14:38:32 -0700 | [diff] [blame] | 199 | |
Jeff Layton | 7950e38 | 2012-10-10 16:43:13 -0400 | [diff] [blame] | 200 | result->uptr = filename; |
Linus Torvalds | c4ad8f9 | 2014-02-05 12:54:53 -0800 | [diff] [blame] | 201 | result->aname = NULL; |
Jeff Layton | 7950e38 | 2012-10-10 16:43:13 -0400 | [diff] [blame] | 202 | audit_getname(result); |
| 203 | return result; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 204 | } |
| 205 | |
Jeff Layton | 91a27b2 | 2012-10-10 15:25:28 -0400 | [diff] [blame] | 206 | struct filename * |
| 207 | getname(const char __user * filename) |
Al Viro | f52e0c1 | 2011-03-14 18:56:51 -0400 | [diff] [blame] | 208 | { |
Linus Torvalds | f7493e5 | 2012-03-22 16:10:40 -0700 | [diff] [blame] | 209 | return getname_flags(filename, 0, NULL); |
Al Viro | f52e0c1 | 2011-03-14 18:56:51 -0400 | [diff] [blame] | 210 | } |
| 211 | |
Linus Torvalds | c4ad8f9 | 2014-02-05 12:54:53 -0800 | [diff] [blame] | 212 | struct filename * |
| 213 | getname_kernel(const char * filename) |
| 214 | { |
| 215 | struct filename *result; |
Paul Moore | 0851854 | 2015-01-21 23:59:56 -0500 | [diff] [blame] | 216 | int len = strlen(filename) + 1; |
Linus Torvalds | c4ad8f9 | 2014-02-05 12:54:53 -0800 | [diff] [blame] | 217 | |
| 218 | result = __getname(); |
| 219 | if (unlikely(!result)) |
| 220 | return ERR_PTR(-ENOMEM); |
| 221 | |
Paul Moore | 0851854 | 2015-01-21 23:59:56 -0500 | [diff] [blame] | 222 | if (len <= EMBEDDED_NAME_MAX) { |
Al Viro | fd2f7cb | 2015-02-22 20:07:13 -0500 | [diff] [blame] | 223 | result->name = (char *)result->iname; |
Paul Moore | 0851854 | 2015-01-21 23:59:56 -0500 | [diff] [blame] | 224 | } else if (len <= PATH_MAX) { |
Al Viro | 30ce4d1 | 2018-04-08 11:57:10 -0400 | [diff] [blame] | 225 | const size_t size = offsetof(struct filename, iname[1]); |
Paul Moore | 0851854 | 2015-01-21 23:59:56 -0500 | [diff] [blame] | 226 | struct filename *tmp; |
| 227 | |
Al Viro | 30ce4d1 | 2018-04-08 11:57:10 -0400 | [diff] [blame] | 228 | tmp = kmalloc(size, GFP_KERNEL); |
Paul Moore | 0851854 | 2015-01-21 23:59:56 -0500 | [diff] [blame] | 229 | if (unlikely(!tmp)) { |
| 230 | __putname(result); |
| 231 | return ERR_PTR(-ENOMEM); |
| 232 | } |
| 233 | tmp->name = (char *)result; |
Paul Moore | 0851854 | 2015-01-21 23:59:56 -0500 | [diff] [blame] | 234 | result = tmp; |
| 235 | } else { |
| 236 | __putname(result); |
| 237 | return ERR_PTR(-ENAMETOOLONG); |
| 238 | } |
| 239 | memcpy((char *)result->name, filename, len); |
Linus Torvalds | c4ad8f9 | 2014-02-05 12:54:53 -0800 | [diff] [blame] | 240 | result->uptr = NULL; |
| 241 | result->aname = NULL; |
Paul Moore | 55422d0 | 2015-01-22 00:00:23 -0500 | [diff] [blame] | 242 | result->refcnt = 1; |
Paul Moore | fd3522f | 2015-01-22 00:00:10 -0500 | [diff] [blame] | 243 | audit_getname(result); |
Linus Torvalds | c4ad8f9 | 2014-02-05 12:54:53 -0800 | [diff] [blame] | 244 | |
Linus Torvalds | c4ad8f9 | 2014-02-05 12:54:53 -0800 | [diff] [blame] | 245 | return result; |
| 246 | } |
| 247 | |
Jeff Layton | 91a27b2 | 2012-10-10 15:25:28 -0400 | [diff] [blame] | 248 | void putname(struct filename *name) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 249 | { |
Paul Moore | 55422d0 | 2015-01-22 00:00:23 -0500 | [diff] [blame] | 250 | BUG_ON(name->refcnt <= 0); |
| 251 | |
| 252 | if (--name->refcnt > 0) |
| 253 | return; |
| 254 | |
Al Viro | fd2f7cb | 2015-02-22 20:07:13 -0500 | [diff] [blame] | 255 | if (name->name != name->iname) { |
Paul Moore | 55422d0 | 2015-01-22 00:00:23 -0500 | [diff] [blame] | 256 | __putname(name->name); |
| 257 | kfree(name); |
| 258 | } else |
| 259 | __putname(name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 260 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 261 | |
Linus Torvalds | e77819e | 2011-07-22 19:30:19 -0700 | [diff] [blame] | 262 | static int check_acl(struct inode *inode, int mask) |
| 263 | { |
Linus Torvalds | 84635d6 | 2011-07-25 22:47:03 -0700 | [diff] [blame] | 264 | #ifdef CONFIG_FS_POSIX_ACL |
Linus Torvalds | e77819e | 2011-07-22 19:30:19 -0700 | [diff] [blame] | 265 | struct posix_acl *acl; |
| 266 | |
Linus Torvalds | e77819e | 2011-07-22 19:30:19 -0700 | [diff] [blame] | 267 | if (mask & MAY_NOT_BLOCK) { |
Al Viro | 3567866 | 2011-08-02 21:32:13 -0400 | [diff] [blame] | 268 | acl = get_cached_acl_rcu(inode, ACL_TYPE_ACCESS); |
| 269 | if (!acl) |
Linus Torvalds | e77819e | 2011-07-22 19:30:19 -0700 | [diff] [blame] | 270 | return -EAGAIN; |
Al Viro | 3567866 | 2011-08-02 21:32:13 -0400 | [diff] [blame] | 271 | /* no ->get_acl() calls in RCU mode... */ |
Andreas Gruenbacher | b8a7a3a | 2016-03-24 14:38:37 +0100 | [diff] [blame] | 272 | if (is_uncached_acl(acl)) |
Al Viro | 3567866 | 2011-08-02 21:32:13 -0400 | [diff] [blame] | 273 | return -ECHILD; |
Ari Savolainen | 206b1d0 | 2011-08-06 19:43:07 +0300 | [diff] [blame] | 274 | return posix_acl_permission(inode, acl, mask & ~MAY_NOT_BLOCK); |
Linus Torvalds | e77819e | 2011-07-22 19:30:19 -0700 | [diff] [blame] | 275 | } |
| 276 | |
Christoph Hellwig | 2982baa | 2013-12-20 05:16:38 -0800 | [diff] [blame] | 277 | acl = get_acl(inode, ACL_TYPE_ACCESS); |
| 278 | if (IS_ERR(acl)) |
| 279 | return PTR_ERR(acl); |
Linus Torvalds | e77819e | 2011-07-22 19:30:19 -0700 | [diff] [blame] | 280 | if (acl) { |
| 281 | int error = posix_acl_permission(inode, acl, mask); |
| 282 | posix_acl_release(acl); |
| 283 | return error; |
| 284 | } |
Linus Torvalds | 84635d6 | 2011-07-25 22:47:03 -0700 | [diff] [blame] | 285 | #endif |
Linus Torvalds | e77819e | 2011-07-22 19:30:19 -0700 | [diff] [blame] | 286 | |
| 287 | return -EAGAIN; |
| 288 | } |
| 289 | |
Linus Torvalds | 5909ccaa | 2009-08-28 11:51:25 -0700 | [diff] [blame] | 290 | /* |
Andreas Gruenbacher | 948409c | 2011-10-23 23:13:33 +0530 | [diff] [blame] | 291 | * This does the basic permission checking |
Linus Torvalds | 5909ccaa | 2009-08-28 11:51:25 -0700 | [diff] [blame] | 292 | */ |
Al Viro | 7e40145 | 2011-06-20 19:12:17 -0400 | [diff] [blame] | 293 | static int acl_permission_check(struct inode *inode, int mask) |
Linus Torvalds | 5909ccaa | 2009-08-28 11:51:25 -0700 | [diff] [blame] | 294 | { |
Linus Torvalds | 26cf46b | 2011-05-13 11:51:01 -0700 | [diff] [blame] | 295 | unsigned int mode = inode->i_mode; |
Linus Torvalds | 5909ccaa | 2009-08-28 11:51:25 -0700 | [diff] [blame] | 296 | |
Eric W. Biederman | 8e96e3b | 2012-03-03 21:17:15 -0800 | [diff] [blame] | 297 | if (likely(uid_eq(current_fsuid(), inode->i_uid))) |
Linus Torvalds | 5909ccaa | 2009-08-28 11:51:25 -0700 | [diff] [blame] | 298 | mode >>= 6; |
| 299 | else { |
Linus Torvalds | e77819e | 2011-07-22 19:30:19 -0700 | [diff] [blame] | 300 | if (IS_POSIXACL(inode) && (mode & S_IRWXG)) { |
Al Viro | 7e40145 | 2011-06-20 19:12:17 -0400 | [diff] [blame] | 301 | int error = check_acl(inode, mask); |
Nick Piggin | b74c79e | 2011-01-07 17:49:58 +1100 | [diff] [blame] | 302 | if (error != -EAGAIN) |
| 303 | return error; |
Linus Torvalds | 5909ccaa | 2009-08-28 11:51:25 -0700 | [diff] [blame] | 304 | } |
| 305 | |
| 306 | if (in_group_p(inode->i_gid)) |
| 307 | mode >>= 3; |
| 308 | } |
| 309 | |
| 310 | /* |
| 311 | * If the DACs are ok we don't need any capability check. |
| 312 | */ |
Al Viro | 9c2c703 | 2011-06-20 19:06:22 -0400 | [diff] [blame] | 313 | if ((mask & ~mode & (MAY_READ | MAY_WRITE | MAY_EXEC)) == 0) |
Linus Torvalds | 5909ccaa | 2009-08-28 11:51:25 -0700 | [diff] [blame] | 314 | return 0; |
| 315 | return -EACCES; |
| 316 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 317 | |
| 318 | /** |
Nick Piggin | b74c79e | 2011-01-07 17:49:58 +1100 | [diff] [blame] | 319 | * generic_permission - check for access rights on a Posix-like filesystem |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 320 | * @inode: inode to check access rights for |
Andreas Gruenbacher | 8fd90c8 | 2011-10-23 23:13:30 +0530 | [diff] [blame] | 321 | * @mask: right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC, ...) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 322 | * |
| 323 | * Used to check for read/write/execute permissions on a file. |
| 324 | * We use "fsuid" for this, letting us set arbitrary permissions |
| 325 | * for filesystem access without changing the "normal" uids which |
Nick Piggin | b74c79e | 2011-01-07 17:49:58 +1100 | [diff] [blame] | 326 | * are used for other things. |
| 327 | * |
| 328 | * generic_permission is rcu-walk aware. It returns -ECHILD in case an rcu-walk |
| 329 | * request cannot be satisfied (eg. requires blocking or too much complexity). |
| 330 | * It would then be called again in ref-walk mode. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 331 | */ |
Al Viro | 2830ba7 | 2011-06-20 19:16:29 -0400 | [diff] [blame] | 332 | int generic_permission(struct inode *inode, int mask) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 333 | { |
Linus Torvalds | 5909ccaa | 2009-08-28 11:51:25 -0700 | [diff] [blame] | 334 | int ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 335 | |
| 336 | /* |
Andreas Gruenbacher | 948409c | 2011-10-23 23:13:33 +0530 | [diff] [blame] | 337 | * Do the basic permission checks. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 338 | */ |
Al Viro | 7e40145 | 2011-06-20 19:12:17 -0400 | [diff] [blame] | 339 | ret = acl_permission_check(inode, mask); |
Linus Torvalds | 5909ccaa | 2009-08-28 11:51:25 -0700 | [diff] [blame] | 340 | if (ret != -EACCES) |
| 341 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 342 | |
Al Viro | d594e7e | 2011-06-20 19:55:42 -0400 | [diff] [blame] | 343 | if (S_ISDIR(inode->i_mode)) { |
| 344 | /* DACs are overridable for directories */ |
Al Viro | d594e7e | 2011-06-20 19:55:42 -0400 | [diff] [blame] | 345 | if (!(mask & MAY_WRITE)) |
Andy Lutomirski | 23adbe1 | 2014-06-10 12:45:42 -0700 | [diff] [blame] | 346 | if (capable_wrt_inode_uidgid(inode, |
| 347 | CAP_DAC_READ_SEARCH)) |
Al Viro | d594e7e | 2011-06-20 19:55:42 -0400 | [diff] [blame] | 348 | return 0; |
Andy Lutomirski | 23adbe1 | 2014-06-10 12:45:42 -0700 | [diff] [blame] | 349 | if (capable_wrt_inode_uidgid(inode, CAP_DAC_OVERRIDE)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 350 | return 0; |
Stephen Smalley | 2a4c224 | 2017-03-10 12:14:18 -0500 | [diff] [blame] | 351 | return -EACCES; |
| 352 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 353 | |
| 354 | /* |
| 355 | * Searching includes executable on directories, else just read. |
| 356 | */ |
Serge E. Hallyn | 7ea6600 | 2009-12-29 14:50:19 -0600 | [diff] [blame] | 357 | mask &= MAY_READ | MAY_WRITE | MAY_EXEC; |
Al Viro | d594e7e | 2011-06-20 19:55:42 -0400 | [diff] [blame] | 358 | if (mask == MAY_READ) |
Andy Lutomirski | 23adbe1 | 2014-06-10 12:45:42 -0700 | [diff] [blame] | 359 | if (capable_wrt_inode_uidgid(inode, CAP_DAC_READ_SEARCH)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 360 | return 0; |
Stephen Smalley | 2a4c224 | 2017-03-10 12:14:18 -0500 | [diff] [blame] | 361 | /* |
| 362 | * Read/write DACs are always overridable. |
| 363 | * Executable DACs are overridable when there is |
| 364 | * at least one exec bit set. |
| 365 | */ |
| 366 | if (!(mask & MAY_EXEC) || (inode->i_mode & S_IXUGO)) |
| 367 | if (capable_wrt_inode_uidgid(inode, CAP_DAC_OVERRIDE)) |
| 368 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 369 | |
| 370 | return -EACCES; |
| 371 | } |
Al Viro | 4d35950 | 2014-03-14 12:20:17 -0400 | [diff] [blame] | 372 | EXPORT_SYMBOL(generic_permission); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 373 | |
Linus Torvalds | 3ddcd05 | 2011-08-06 22:45:50 -0700 | [diff] [blame] | 374 | /* |
| 375 | * We _really_ want to just do "generic_permission()" without |
| 376 | * even looking at the inode->i_op values. So we keep a cache |
| 377 | * flag in inode->i_opflags, that says "this has not special |
| 378 | * permission function, use the fast case". |
| 379 | */ |
| 380 | static inline int do_inode_permission(struct inode *inode, int mask) |
| 381 | { |
| 382 | if (unlikely(!(inode->i_opflags & IOP_FASTPERM))) { |
| 383 | if (likely(inode->i_op->permission)) |
| 384 | return inode->i_op->permission(inode, mask); |
| 385 | |
| 386 | /* This gets set once for the inode lifetime */ |
| 387 | spin_lock(&inode->i_lock); |
| 388 | inode->i_opflags |= IOP_FASTPERM; |
| 389 | spin_unlock(&inode->i_lock); |
| 390 | } |
| 391 | return generic_permission(inode, mask); |
| 392 | } |
| 393 | |
Christoph Hellwig | cb23beb | 2008-10-24 09:59:29 +0200 | [diff] [blame] | 394 | /** |
David Howells | 0bdaea9 | 2012-06-25 12:55:46 +0100 | [diff] [blame] | 395 | * sb_permission - Check superblock-level permissions |
| 396 | * @sb: Superblock of inode to check permission on |
Randy Dunlap | 5585263 | 2012-08-18 17:39:25 -0700 | [diff] [blame] | 397 | * @inode: Inode to check permission on |
David Howells | 0bdaea9 | 2012-06-25 12:55:46 +0100 | [diff] [blame] | 398 | * @mask: Right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC) |
| 399 | * |
| 400 | * Separate out file-system wide checks from inode-specific permission checks. |
| 401 | */ |
| 402 | static int sb_permission(struct super_block *sb, struct inode *inode, int mask) |
| 403 | { |
| 404 | if (unlikely(mask & MAY_WRITE)) { |
| 405 | umode_t mode = inode->i_mode; |
| 406 | |
| 407 | /* Nobody gets write access to a read-only fs. */ |
David Howells | bc98a42 | 2017-07-17 08:45:34 +0100 | [diff] [blame] | 408 | if (sb_rdonly(sb) && (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode))) |
David Howells | 0bdaea9 | 2012-06-25 12:55:46 +0100 | [diff] [blame] | 409 | return -EROFS; |
| 410 | } |
| 411 | return 0; |
| 412 | } |
| 413 | |
| 414 | /** |
| 415 | * inode_permission - Check for access rights to a given inode |
| 416 | * @inode: Inode to check permission on |
| 417 | * @mask: Right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC) |
| 418 | * |
| 419 | * Check for read/write/execute permissions on an inode. We use fs[ug]id for |
| 420 | * this, letting us set arbitrary permissions for filesystem access without |
| 421 | * changing the "normal" UIDs which are used for other things. |
| 422 | * |
| 423 | * When checking for MAY_APPEND, MAY_WRITE must also be set in @mask. |
| 424 | */ |
| 425 | int inode_permission(struct inode *inode, int mask) |
| 426 | { |
| 427 | int retval; |
| 428 | |
| 429 | retval = sb_permission(inode->i_sb, inode, mask); |
| 430 | if (retval) |
| 431 | return retval; |
Eric Biggers | 4bfd054 | 2018-01-16 21:44:24 -0800 | [diff] [blame] | 432 | |
| 433 | if (unlikely(mask & MAY_WRITE)) { |
| 434 | /* |
| 435 | * Nobody gets write access to an immutable file. |
| 436 | */ |
| 437 | if (IS_IMMUTABLE(inode)) |
| 438 | return -EPERM; |
| 439 | |
| 440 | /* |
| 441 | * Updating mtime will likely cause i_uid and i_gid to be |
| 442 | * written back improperly if their true value is unknown |
| 443 | * to the vfs. |
| 444 | */ |
| 445 | if (HAS_UNMAPPED_ID(inode)) |
| 446 | return -EACCES; |
| 447 | } |
| 448 | |
| 449 | retval = do_inode_permission(inode, mask); |
| 450 | if (retval) |
| 451 | return retval; |
| 452 | |
| 453 | retval = devcgroup_inode_permission(inode, mask); |
| 454 | if (retval) |
| 455 | return retval; |
| 456 | |
| 457 | return security_inode_permission(inode, mask); |
David Howells | 0bdaea9 | 2012-06-25 12:55:46 +0100 | [diff] [blame] | 458 | } |
Al Viro | 4d35950 | 2014-03-14 12:20:17 -0400 | [diff] [blame] | 459 | EXPORT_SYMBOL(inode_permission); |
David Howells | 0bdaea9 | 2012-06-25 12:55:46 +0100 | [diff] [blame] | 460 | |
| 461 | /** |
Jan Blunck | 5dd784d0 | 2008-02-14 19:34:38 -0800 | [diff] [blame] | 462 | * path_get - get a reference to a path |
| 463 | * @path: path to get the reference to |
| 464 | * |
| 465 | * Given a path increment the reference count to the dentry and the vfsmount. |
| 466 | */ |
Al Viro | dcf787f | 2013-03-01 23:51:07 -0500 | [diff] [blame] | 467 | void path_get(const struct path *path) |
Jan Blunck | 5dd784d0 | 2008-02-14 19:34:38 -0800 | [diff] [blame] | 468 | { |
| 469 | mntget(path->mnt); |
| 470 | dget(path->dentry); |
| 471 | } |
| 472 | EXPORT_SYMBOL(path_get); |
| 473 | |
| 474 | /** |
Jan Blunck | 1d957f9 | 2008-02-14 19:34:35 -0800 | [diff] [blame] | 475 | * path_put - put a reference to a path |
| 476 | * @path: path to put the reference to |
| 477 | * |
| 478 | * Given a path decrement the reference count to the dentry and the vfsmount. |
| 479 | */ |
Al Viro | dcf787f | 2013-03-01 23:51:07 -0500 | [diff] [blame] | 480 | void path_put(const struct path *path) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 481 | { |
Jan Blunck | 1d957f9 | 2008-02-14 19:34:35 -0800 | [diff] [blame] | 482 | dput(path->dentry); |
| 483 | mntput(path->mnt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 484 | } |
Jan Blunck | 1d957f9 | 2008-02-14 19:34:35 -0800 | [diff] [blame] | 485 | EXPORT_SYMBOL(path_put); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 486 | |
Al Viro | 894bc8c | 2015-05-02 07:16:16 -0400 | [diff] [blame] | 487 | #define EMBEDDED_LEVELS 2 |
Al Viro | 1f55a6e | 2014-11-01 19:30:41 -0400 | [diff] [blame] | 488 | struct nameidata { |
| 489 | struct path path; |
Al Viro | 1cf2665 | 2015-05-06 16:01:56 -0400 | [diff] [blame] | 490 | struct qstr last; |
Al Viro | 1f55a6e | 2014-11-01 19:30:41 -0400 | [diff] [blame] | 491 | struct path root; |
| 492 | struct inode *inode; /* path.dentry.d_inode */ |
| 493 | unsigned int flags; |
Aleksa Sarai | ab87f9a | 2019-12-07 01:13:35 +1100 | [diff] [blame] | 494 | unsigned seq, m_seq, r_seq; |
Al Viro | 1f55a6e | 2014-11-01 19:30:41 -0400 | [diff] [blame] | 495 | int last_type; |
| 496 | unsigned depth; |
NeilBrown | 756daf2 | 2015-03-23 13:37:38 +1100 | [diff] [blame] | 497 | int total_link_count; |
Al Viro | 697fc6c | 2015-05-02 19:38:35 -0400 | [diff] [blame] | 498 | struct saved { |
| 499 | struct path link; |
Al Viro | fceef39 | 2015-12-29 15:58:39 -0500 | [diff] [blame] | 500 | struct delayed_call done; |
Al Viro | 697fc6c | 2015-05-02 19:38:35 -0400 | [diff] [blame] | 501 | const char *name; |
Al Viro | 0450b2d | 2015-05-08 13:23:53 -0400 | [diff] [blame] | 502 | unsigned seq; |
Al Viro | 894bc8c | 2015-05-02 07:16:16 -0400 | [diff] [blame] | 503 | } *stack, internal[EMBEDDED_LEVELS]; |
Al Viro | 9883d18 | 2015-05-13 07:28:08 -0400 | [diff] [blame] | 504 | struct filename *name; |
| 505 | struct nameidata *saved; |
| 506 | unsigned root_seq; |
| 507 | int dfd; |
Kees Cook | 3859a27 | 2016-10-28 01:22:25 -0700 | [diff] [blame] | 508 | } __randomize_layout; |
Al Viro | 1f55a6e | 2014-11-01 19:30:41 -0400 | [diff] [blame] | 509 | |
Al Viro | 9883d18 | 2015-05-13 07:28:08 -0400 | [diff] [blame] | 510 | static void set_nameidata(struct nameidata *p, int dfd, struct filename *name) |
Al Viro | 894bc8c | 2015-05-02 07:16:16 -0400 | [diff] [blame] | 511 | { |
NeilBrown | 756daf2 | 2015-03-23 13:37:38 +1100 | [diff] [blame] | 512 | struct nameidata *old = current->nameidata; |
| 513 | p->stack = p->internal; |
Al Viro | c8a53ee | 2015-05-12 18:43:07 -0400 | [diff] [blame] | 514 | p->dfd = dfd; |
| 515 | p->name = name; |
NeilBrown | 756daf2 | 2015-03-23 13:37:38 +1100 | [diff] [blame] | 516 | p->total_link_count = old ? old->total_link_count : 0; |
Al Viro | 9883d18 | 2015-05-13 07:28:08 -0400 | [diff] [blame] | 517 | p->saved = old; |
NeilBrown | 756daf2 | 2015-03-23 13:37:38 +1100 | [diff] [blame] | 518 | current->nameidata = p; |
Al Viro | 894bc8c | 2015-05-02 07:16:16 -0400 | [diff] [blame] | 519 | } |
| 520 | |
Al Viro | 9883d18 | 2015-05-13 07:28:08 -0400 | [diff] [blame] | 521 | static void restore_nameidata(void) |
Al Viro | 894bc8c | 2015-05-02 07:16:16 -0400 | [diff] [blame] | 522 | { |
Al Viro | 9883d18 | 2015-05-13 07:28:08 -0400 | [diff] [blame] | 523 | struct nameidata *now = current->nameidata, *old = now->saved; |
NeilBrown | 756daf2 | 2015-03-23 13:37:38 +1100 | [diff] [blame] | 524 | |
| 525 | current->nameidata = old; |
| 526 | if (old) |
| 527 | old->total_link_count = now->total_link_count; |
Al Viro | e1a63bb | 2015-12-05 21:06:33 -0500 | [diff] [blame] | 528 | if (now->stack != now->internal) |
NeilBrown | 756daf2 | 2015-03-23 13:37:38 +1100 | [diff] [blame] | 529 | kfree(now->stack); |
Al Viro | 894bc8c | 2015-05-02 07:16:16 -0400 | [diff] [blame] | 530 | } |
| 531 | |
| 532 | static int __nd_alloc_stack(struct nameidata *nd) |
| 533 | { |
Al Viro | bc40aee | 2015-05-09 13:04:24 -0400 | [diff] [blame] | 534 | struct saved *p; |
| 535 | |
| 536 | if (nd->flags & LOOKUP_RCU) { |
Kees Cook | 6da2ec5 | 2018-06-12 13:55:00 -0700 | [diff] [blame] | 537 | p= kmalloc_array(MAXSYMLINKS, sizeof(struct saved), |
Al Viro | bc40aee | 2015-05-09 13:04:24 -0400 | [diff] [blame] | 538 | GFP_ATOMIC); |
| 539 | if (unlikely(!p)) |
| 540 | return -ECHILD; |
| 541 | } else { |
Kees Cook | 6da2ec5 | 2018-06-12 13:55:00 -0700 | [diff] [blame] | 542 | p= kmalloc_array(MAXSYMLINKS, sizeof(struct saved), |
Al Viro | 894bc8c | 2015-05-02 07:16:16 -0400 | [diff] [blame] | 543 | GFP_KERNEL); |
Al Viro | bc40aee | 2015-05-09 13:04:24 -0400 | [diff] [blame] | 544 | if (unlikely(!p)) |
| 545 | return -ENOMEM; |
| 546 | } |
Al Viro | 894bc8c | 2015-05-02 07:16:16 -0400 | [diff] [blame] | 547 | memcpy(p, nd->internal, sizeof(nd->internal)); |
| 548 | nd->stack = p; |
| 549 | return 0; |
| 550 | } |
| 551 | |
Eric W. Biederman | 397d425 | 2015-08-15 20:27:13 -0500 | [diff] [blame] | 552 | /** |
| 553 | * path_connected - Verify that a path->dentry is below path->mnt.mnt_root |
| 554 | * @path: nameidate to verify |
| 555 | * |
| 556 | * Rename can sometimes move a file or directory outside of a bind |
| 557 | * mount, path_connected allows those cases to be detected. |
| 558 | */ |
| 559 | static bool path_connected(const struct path *path) |
| 560 | { |
| 561 | struct vfsmount *mnt = path->mnt; |
Eric W. Biederman | 95dd775 | 2018-03-14 18:20:29 -0500 | [diff] [blame] | 562 | struct super_block *sb = mnt->mnt_sb; |
Eric W. Biederman | 397d425 | 2015-08-15 20:27:13 -0500 | [diff] [blame] | 563 | |
Eric W. Biederman | 95dd775 | 2018-03-14 18:20:29 -0500 | [diff] [blame] | 564 | /* Bind mounts and multi-root filesystems can have disconnected paths */ |
| 565 | if (!(sb->s_iflags & SB_I_MULTIROOT) && (mnt->mnt_root == sb->s_root)) |
Eric W. Biederman | 397d425 | 2015-08-15 20:27:13 -0500 | [diff] [blame] | 566 | return true; |
| 567 | |
| 568 | return is_subdir(path->dentry, mnt->mnt_root); |
| 569 | } |
| 570 | |
Al Viro | 894bc8c | 2015-05-02 07:16:16 -0400 | [diff] [blame] | 571 | static inline int nd_alloc_stack(struct nameidata *nd) |
| 572 | { |
Al Viro | da4e0be | 2015-05-03 20:52:15 -0400 | [diff] [blame] | 573 | if (likely(nd->depth != EMBEDDED_LEVELS)) |
Al Viro | 894bc8c | 2015-05-02 07:16:16 -0400 | [diff] [blame] | 574 | return 0; |
| 575 | if (likely(nd->stack != nd->internal)) |
| 576 | return 0; |
| 577 | return __nd_alloc_stack(nd); |
| 578 | } |
| 579 | |
Al Viro | 7973387 | 2015-05-09 12:55:43 -0400 | [diff] [blame] | 580 | static void drop_links(struct nameidata *nd) |
| 581 | { |
| 582 | int i = nd->depth; |
| 583 | while (i--) { |
| 584 | struct saved *last = nd->stack + i; |
Al Viro | fceef39 | 2015-12-29 15:58:39 -0500 | [diff] [blame] | 585 | do_delayed_call(&last->done); |
| 586 | clear_delayed_call(&last->done); |
Al Viro | 7973387 | 2015-05-09 12:55:43 -0400 | [diff] [blame] | 587 | } |
| 588 | } |
| 589 | |
| 590 | static void terminate_walk(struct nameidata *nd) |
| 591 | { |
| 592 | drop_links(nd); |
| 593 | if (!(nd->flags & LOOKUP_RCU)) { |
| 594 | int i; |
| 595 | path_put(&nd->path); |
| 596 | for (i = 0; i < nd->depth; i++) |
| 597 | path_put(&nd->stack[i].link); |
Al Viro | 84a2bd3 | 2019-07-16 21:20:17 -0400 | [diff] [blame] | 598 | if (nd->flags & LOOKUP_ROOT_GRABBED) { |
Al Viro | 102b8af | 2015-05-12 17:35:52 -0400 | [diff] [blame] | 599 | path_put(&nd->root); |
Al Viro | 84a2bd3 | 2019-07-16 21:20:17 -0400 | [diff] [blame] | 600 | nd->flags &= ~LOOKUP_ROOT_GRABBED; |
Al Viro | 102b8af | 2015-05-12 17:35:52 -0400 | [diff] [blame] | 601 | } |
Al Viro | 7973387 | 2015-05-09 12:55:43 -0400 | [diff] [blame] | 602 | } else { |
| 603 | nd->flags &= ~LOOKUP_RCU; |
Al Viro | 7973387 | 2015-05-09 12:55:43 -0400 | [diff] [blame] | 604 | rcu_read_unlock(); |
| 605 | } |
| 606 | nd->depth = 0; |
| 607 | } |
| 608 | |
| 609 | /* path_put is needed afterwards regardless of success or failure */ |
| 610 | static bool legitimize_path(struct nameidata *nd, |
| 611 | struct path *path, unsigned seq) |
| 612 | { |
| 613 | int res = __legitimize_mnt(path->mnt, nd->m_seq); |
| 614 | if (unlikely(res)) { |
| 615 | if (res > 0) |
| 616 | path->mnt = NULL; |
| 617 | path->dentry = NULL; |
| 618 | return false; |
| 619 | } |
| 620 | if (unlikely(!lockref_get_not_dead(&path->dentry->d_lockref))) { |
| 621 | path->dentry = NULL; |
| 622 | return false; |
| 623 | } |
| 624 | return !read_seqcount_retry(&path->dentry->d_seq, seq); |
| 625 | } |
| 626 | |
| 627 | static bool legitimize_links(struct nameidata *nd) |
| 628 | { |
| 629 | int i; |
| 630 | for (i = 0; i < nd->depth; i++) { |
| 631 | struct saved *last = nd->stack + i; |
| 632 | if (unlikely(!legitimize_path(nd, &last->link, last->seq))) { |
| 633 | drop_links(nd); |
| 634 | nd->depth = i + 1; |
| 635 | return false; |
| 636 | } |
| 637 | } |
| 638 | return true; |
| 639 | } |
| 640 | |
Al Viro | ee594bf | 2019-07-16 21:05:36 -0400 | [diff] [blame] | 641 | static bool legitimize_root(struct nameidata *nd) |
| 642 | { |
Aleksa Sarai | adb21d2 | 2019-12-07 01:13:33 +1100 | [diff] [blame] | 643 | /* |
| 644 | * For scoped-lookups (where nd->root has been zeroed), we need to |
| 645 | * restart the whole lookup from scratch -- because set_root() is wrong |
| 646 | * for these lookups (nd->dfd is the root, not the filesystem root). |
| 647 | */ |
| 648 | if (!nd->root.mnt && (nd->flags & LOOKUP_IS_SCOPED)) |
| 649 | return false; |
| 650 | /* Nothing to do if nd->root is zero or is managed by the VFS user. */ |
Al Viro | ee594bf | 2019-07-16 21:05:36 -0400 | [diff] [blame] | 651 | if (!nd->root.mnt || (nd->flags & LOOKUP_ROOT)) |
| 652 | return true; |
Al Viro | 84a2bd3 | 2019-07-16 21:20:17 -0400 | [diff] [blame] | 653 | nd->flags |= LOOKUP_ROOT_GRABBED; |
Al Viro | ee594bf | 2019-07-16 21:05:36 -0400 | [diff] [blame] | 654 | return legitimize_path(nd, &nd->root, nd->root_seq); |
| 655 | } |
| 656 | |
Al Viro | 19660af | 2011-03-25 10:32:48 -0400 | [diff] [blame] | 657 | /* |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 658 | * Path walking has 2 modes, rcu-walk and ref-walk (see |
Al Viro | 19660af | 2011-03-25 10:32:48 -0400 | [diff] [blame] | 659 | * Documentation/filesystems/path-lookup.txt). In situations when we can't |
| 660 | * 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] | 661 | * normal reference counts on dentries and vfsmounts to transition to ref-walk |
Al Viro | 19660af | 2011-03-25 10:32:48 -0400 | [diff] [blame] | 662 | * mode. Refcounts are grabbed at the last known good point before rcu-walk |
| 663 | * got stuck, so ref-walk may continue from there. If this is not successful |
| 664 | * (eg. a seqcount has changed), then failure is returned and it's up to caller |
| 665 | * to restart the path walk from the beginning in ref-walk mode. |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 666 | */ |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 667 | |
| 668 | /** |
Al Viro | 19660af | 2011-03-25 10:32:48 -0400 | [diff] [blame] | 669 | * unlazy_walk - try to switch to ref-walk mode. |
| 670 | * @nd: nameidata pathwalk data |
Randy Dunlap | 3919162 | 2011-01-08 19:36:21 -0800 | [diff] [blame] | 671 | * Returns: 0 on success, -ECHILD on failure |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 672 | * |
Al Viro | 4675ac3 | 2017-01-09 22:29:15 -0500 | [diff] [blame] | 673 | * unlazy_walk attempts to legitimize the current nd->path and nd->root |
| 674 | * for ref-walk mode. |
| 675 | * Must be called from rcu-walk context. |
Al Viro | 7973387 | 2015-05-09 12:55:43 -0400 | [diff] [blame] | 676 | * Nothing should touch nameidata between unlazy_walk() failure and |
| 677 | * terminate_walk(). |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 678 | */ |
Al Viro | 4675ac3 | 2017-01-09 22:29:15 -0500 | [diff] [blame] | 679 | static int unlazy_walk(struct nameidata *nd) |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 680 | { |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 681 | struct dentry *parent = nd->path.dentry; |
| 682 | |
| 683 | BUG_ON(!(nd->flags & LOOKUP_RCU)); |
Linus Torvalds | e5c832d | 2013-09-08 18:13:49 -0700 | [diff] [blame] | 684 | |
Linus Torvalds | e5c832d | 2013-09-08 18:13:49 -0700 | [diff] [blame] | 685 | nd->flags &= ~LOOKUP_RCU; |
Al Viro | 7973387 | 2015-05-09 12:55:43 -0400 | [diff] [blame] | 686 | if (unlikely(!legitimize_links(nd))) |
Al Viro | 4675ac3 | 2017-01-09 22:29:15 -0500 | [diff] [blame] | 687 | goto out1; |
Al Viro | 84a2bd3 | 2019-07-16 21:20:17 -0400 | [diff] [blame] | 688 | if (unlikely(!legitimize_path(nd, &nd->path, nd->seq))) |
| 689 | goto out; |
Al Viro | ee594bf | 2019-07-16 21:05:36 -0400 | [diff] [blame] | 690 | if (unlikely(!legitimize_root(nd))) |
| 691 | goto out; |
Al Viro | 4675ac3 | 2017-01-09 22:29:15 -0500 | [diff] [blame] | 692 | rcu_read_unlock(); |
| 693 | BUG_ON(nd->inode != parent->d_inode); |
| 694 | return 0; |
| 695 | |
Al Viro | 84a2bd3 | 2019-07-16 21:20:17 -0400 | [diff] [blame] | 696 | out1: |
Al Viro | 4675ac3 | 2017-01-09 22:29:15 -0500 | [diff] [blame] | 697 | nd->path.mnt = NULL; |
| 698 | nd->path.dentry = NULL; |
Al Viro | 4675ac3 | 2017-01-09 22:29:15 -0500 | [diff] [blame] | 699 | out: |
| 700 | rcu_read_unlock(); |
| 701 | return -ECHILD; |
| 702 | } |
| 703 | |
| 704 | /** |
| 705 | * unlazy_child - try to switch to ref-walk mode. |
| 706 | * @nd: nameidata pathwalk data |
| 707 | * @dentry: child of nd->path.dentry |
| 708 | * @seq: seq number to check dentry against |
| 709 | * Returns: 0 on success, -ECHILD on failure |
| 710 | * |
| 711 | * unlazy_child attempts to legitimize the current nd->path, nd->root and dentry |
| 712 | * for ref-walk mode. @dentry must be a path found by a do_lookup call on |
| 713 | * @nd. Must be called from rcu-walk context. |
| 714 | * Nothing should touch nameidata between unlazy_child() failure and |
| 715 | * terminate_walk(). |
| 716 | */ |
| 717 | static int unlazy_child(struct nameidata *nd, struct dentry *dentry, unsigned seq) |
| 718 | { |
| 719 | BUG_ON(!(nd->flags & LOOKUP_RCU)); |
| 720 | |
| 721 | nd->flags &= ~LOOKUP_RCU; |
| 722 | if (unlikely(!legitimize_links(nd))) |
| 723 | goto out2; |
Al Viro | 7973387 | 2015-05-09 12:55:43 -0400 | [diff] [blame] | 724 | if (unlikely(!legitimize_mnt(nd->path.mnt, nd->m_seq))) |
| 725 | goto out2; |
Al Viro | 4675ac3 | 2017-01-09 22:29:15 -0500 | [diff] [blame] | 726 | if (unlikely(!lockref_get_not_dead(&nd->path.dentry->d_lockref))) |
Al Viro | 7973387 | 2015-05-09 12:55:43 -0400 | [diff] [blame] | 727 | goto out1; |
Al Viro | 48a066e | 2013-09-29 22:06:07 -0400 | [diff] [blame] | 728 | |
Linus Torvalds | 1557008 | 2013-09-02 11:38:06 -0700 | [diff] [blame] | 729 | /* |
Al Viro | 4675ac3 | 2017-01-09 22:29:15 -0500 | [diff] [blame] | 730 | * We need to move both the parent and the dentry from the RCU domain |
| 731 | * to be properly refcounted. And the sequence number in the dentry |
| 732 | * validates *both* dentry counters, since we checked the sequence |
| 733 | * number of the parent after we got the child sequence number. So we |
| 734 | * know the parent must still be valid if the child sequence number is |
Linus Torvalds | 1557008 | 2013-09-02 11:38:06 -0700 | [diff] [blame] | 735 | */ |
Al Viro | 4675ac3 | 2017-01-09 22:29:15 -0500 | [diff] [blame] | 736 | if (unlikely(!lockref_get_not_dead(&dentry->d_lockref))) |
| 737 | goto out; |
Al Viro | 84a2bd3 | 2019-07-16 21:20:17 -0400 | [diff] [blame] | 738 | if (unlikely(read_seqcount_retry(&dentry->d_seq, seq))) |
| 739 | goto out_dput; |
Linus Torvalds | e5c832d | 2013-09-08 18:13:49 -0700 | [diff] [blame] | 740 | /* |
| 741 | * Sequence counts matched. Now make sure that the root is |
| 742 | * still valid and get it if required. |
| 743 | */ |
Al Viro | 84a2bd3 | 2019-07-16 21:20:17 -0400 | [diff] [blame] | 744 | if (unlikely(!legitimize_root(nd))) |
| 745 | goto out_dput; |
Al Viro | 8b61e74 | 2013-11-08 12:45:01 -0500 | [diff] [blame] | 746 | rcu_read_unlock(); |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 747 | return 0; |
Al Viro | 19660af | 2011-03-25 10:32:48 -0400 | [diff] [blame] | 748 | |
Al Viro | 7973387 | 2015-05-09 12:55:43 -0400 | [diff] [blame] | 749 | out2: |
| 750 | nd->path.mnt = NULL; |
| 751 | out1: |
| 752 | nd->path.dentry = NULL; |
Linus Torvalds | e5c832d | 2013-09-08 18:13:49 -0700 | [diff] [blame] | 753 | out: |
Al Viro | 8b61e74 | 2013-11-08 12:45:01 -0500 | [diff] [blame] | 754 | rcu_read_unlock(); |
Al Viro | 84a2bd3 | 2019-07-16 21:20:17 -0400 | [diff] [blame] | 755 | return -ECHILD; |
| 756 | out_dput: |
| 757 | rcu_read_unlock(); |
| 758 | dput(dentry); |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 759 | return -ECHILD; |
| 760 | } |
| 761 | |
Al Viro | 4ce16ef3 | 2012-06-10 16:10:59 -0400 | [diff] [blame] | 762 | static inline int d_revalidate(struct dentry *dentry, unsigned int flags) |
Nick Piggin | 34286d6 | 2011-01-07 17:49:57 +1100 | [diff] [blame] | 763 | { |
Al Viro | a89f833 | 2017-01-09 22:25:28 -0500 | [diff] [blame] | 764 | if (unlikely(dentry->d_flags & DCACHE_OP_REVALIDATE)) |
| 765 | return dentry->d_op->d_revalidate(dentry, flags); |
| 766 | else |
| 767 | return 1; |
Nick Piggin | 34286d6 | 2011-01-07 17:49:57 +1100 | [diff] [blame] | 768 | } |
| 769 | |
Al Viro | 9f1fafe | 2011-03-25 11:00:12 -0400 | [diff] [blame] | 770 | /** |
| 771 | * complete_walk - successful completion of path walk |
| 772 | * @nd: pointer nameidata |
Jeff Layton | 39159de | 2009-12-07 12:01:50 -0500 | [diff] [blame] | 773 | * |
Al Viro | 9f1fafe | 2011-03-25 11:00:12 -0400 | [diff] [blame] | 774 | * If we had been in RCU mode, drop out of it and legitimize nd->path. |
| 775 | * Revalidate the final result, unless we'd already done that during |
| 776 | * the path walk or the filesystem doesn't ask for it. Return 0 on |
| 777 | * success, -error on failure. In case of failure caller does not |
| 778 | * need to drop nd->path. |
Jeff Layton | 39159de | 2009-12-07 12:01:50 -0500 | [diff] [blame] | 779 | */ |
Al Viro | 9f1fafe | 2011-03-25 11:00:12 -0400 | [diff] [blame] | 780 | static int complete_walk(struct nameidata *nd) |
Jeff Layton | 39159de | 2009-12-07 12:01:50 -0500 | [diff] [blame] | 781 | { |
Al Viro | 16c2cd7 | 2011-02-22 15:50:10 -0500 | [diff] [blame] | 782 | struct dentry *dentry = nd->path.dentry; |
Jeff Layton | 39159de | 2009-12-07 12:01:50 -0500 | [diff] [blame] | 783 | int status; |
Jeff Layton | 39159de | 2009-12-07 12:01:50 -0500 | [diff] [blame] | 784 | |
Al Viro | 9f1fafe | 2011-03-25 11:00:12 -0400 | [diff] [blame] | 785 | if (nd->flags & LOOKUP_RCU) { |
Aleksa Sarai | adb21d2 | 2019-12-07 01:13:33 +1100 | [diff] [blame] | 786 | /* |
| 787 | * We don't want to zero nd->root for scoped-lookups or |
| 788 | * externally-managed nd->root. |
| 789 | */ |
| 790 | if (!(nd->flags & (LOOKUP_ROOT | LOOKUP_IS_SCOPED))) |
Al Viro | 9f1fafe | 2011-03-25 11:00:12 -0400 | [diff] [blame] | 791 | nd->root.mnt = NULL; |
Al Viro | 4675ac3 | 2017-01-09 22:29:15 -0500 | [diff] [blame] | 792 | if (unlikely(unlazy_walk(nd))) |
Al Viro | 48a066e | 2013-09-29 22:06:07 -0400 | [diff] [blame] | 793 | return -ECHILD; |
Al Viro | 9f1fafe | 2011-03-25 11:00:12 -0400 | [diff] [blame] | 794 | } |
| 795 | |
Aleksa Sarai | adb21d2 | 2019-12-07 01:13:33 +1100 | [diff] [blame] | 796 | if (unlikely(nd->flags & LOOKUP_IS_SCOPED)) { |
| 797 | /* |
| 798 | * While the guarantee of LOOKUP_IS_SCOPED is (roughly) "don't |
| 799 | * ever step outside the root during lookup" and should already |
| 800 | * be guaranteed by the rest of namei, we want to avoid a namei |
| 801 | * BUG resulting in userspace being given a path that was not |
| 802 | * scoped within the root at some point during the lookup. |
| 803 | * |
| 804 | * So, do a final sanity-check to make sure that in the |
| 805 | * worst-case scenario (a complete bypass of LOOKUP_IS_SCOPED) |
| 806 | * we won't silently return an fd completely outside of the |
| 807 | * requested root to userspace. |
| 808 | * |
| 809 | * Userspace could move the path outside the root after this |
| 810 | * check, but as discussed elsewhere this is not a concern (the |
| 811 | * resolved file was inside the root at some point). |
| 812 | */ |
| 813 | if (!path_is_under(&nd->path, &nd->root)) |
| 814 | return -EXDEV; |
| 815 | } |
| 816 | |
Al Viro | 16c2cd7 | 2011-02-22 15:50:10 -0500 | [diff] [blame] | 817 | if (likely(!(nd->flags & LOOKUP_JUMPED))) |
Jeff Layton | 39159de | 2009-12-07 12:01:50 -0500 | [diff] [blame] | 818 | return 0; |
| 819 | |
Jeff Layton | ecf3d1f | 2013-02-20 11:19:05 -0500 | [diff] [blame] | 820 | if (likely(!(dentry->d_flags & DCACHE_OP_WEAK_REVALIDATE))) |
Al Viro | 16c2cd7 | 2011-02-22 15:50:10 -0500 | [diff] [blame] | 821 | return 0; |
| 822 | |
Jeff Layton | ecf3d1f | 2013-02-20 11:19:05 -0500 | [diff] [blame] | 823 | status = dentry->d_op->d_weak_revalidate(dentry, nd->flags); |
Jeff Layton | 39159de | 2009-12-07 12:01:50 -0500 | [diff] [blame] | 824 | if (status > 0) |
| 825 | return 0; |
| 826 | |
Al Viro | 16c2cd7 | 2011-02-22 15:50:10 -0500 | [diff] [blame] | 827 | if (!status) |
Jeff Layton | 39159de | 2009-12-07 12:01:50 -0500 | [diff] [blame] | 828 | status = -ESTALE; |
Al Viro | 16c2cd7 | 2011-02-22 15:50:10 -0500 | [diff] [blame] | 829 | |
Jeff Layton | 39159de | 2009-12-07 12:01:50 -0500 | [diff] [blame] | 830 | return status; |
| 831 | } |
| 832 | |
Aleksa Sarai | 740a167 | 2019-12-07 01:13:29 +1100 | [diff] [blame] | 833 | static int set_root(struct nameidata *nd) |
Al Viro | 2a73787 | 2009-04-07 11:49:53 -0400 | [diff] [blame] | 834 | { |
Al Viro | 7bd8837 | 2014-09-13 21:55:46 -0400 | [diff] [blame] | 835 | struct fs_struct *fs = current->fs; |
Nick Piggin | c28cc36 | 2011-01-07 17:49:53 +1100 | [diff] [blame] | 836 | |
Aleksa Sarai | adb21d2 | 2019-12-07 01:13:33 +1100 | [diff] [blame] | 837 | /* |
| 838 | * Jumping to the real root in a scoped-lookup is a BUG in namei, but we |
| 839 | * still have to ensure it doesn't happen because it will cause a breakout |
| 840 | * from the dirfd. |
| 841 | */ |
| 842 | if (WARN_ON(nd->flags & LOOKUP_IS_SCOPED)) |
| 843 | return -ENOTRECOVERABLE; |
| 844 | |
Al Viro | 9e6697e | 2015-12-05 20:07:21 -0500 | [diff] [blame] | 845 | if (nd->flags & LOOKUP_RCU) { |
| 846 | unsigned seq; |
| 847 | |
| 848 | do { |
| 849 | seq = read_seqcount_begin(&fs->seq); |
| 850 | nd->root = fs->root; |
| 851 | nd->root_seq = __read_seqcount_begin(&nd->root.dentry->d_seq); |
| 852 | } while (read_seqcount_retry(&fs->seq, seq)); |
| 853 | } else { |
| 854 | get_fs_root(fs, &nd->root); |
Al Viro | 84a2bd3 | 2019-07-16 21:20:17 -0400 | [diff] [blame] | 855 | nd->flags |= LOOKUP_ROOT_GRABBED; |
Al Viro | 9e6697e | 2015-12-05 20:07:21 -0500 | [diff] [blame] | 856 | } |
Aleksa Sarai | 740a167 | 2019-12-07 01:13:29 +1100 | [diff] [blame] | 857 | return 0; |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 858 | } |
| 859 | |
Nick Piggin | 7b9337a | 2011-01-14 08:42:43 +0000 | [diff] [blame] | 860 | static inline void path_to_nameidata(const struct path *path, |
| 861 | struct nameidata *nd) |
Miklos Szeredi | 09dd17d | 2005-09-06 15:18:21 -0700 | [diff] [blame] | 862 | { |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 863 | if (!(nd->flags & LOOKUP_RCU)) { |
| 864 | dput(nd->path.dentry); |
| 865 | if (nd->path.mnt != path->mnt) |
| 866 | mntput(nd->path.mnt); |
Huang Shijie | 9a22968 | 2010-04-02 17:37:13 +0800 | [diff] [blame] | 867 | } |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 868 | nd->path.mnt = path->mnt; |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 869 | nd->path.dentry = path->dentry; |
Miklos Szeredi | 09dd17d | 2005-09-06 15:18:21 -0700 | [diff] [blame] | 870 | } |
| 871 | |
Al Viro | 248fb5b | 2015-12-05 20:51:58 -0500 | [diff] [blame] | 872 | static int nd_jump_root(struct nameidata *nd) |
| 873 | { |
Aleksa Sarai | adb21d2 | 2019-12-07 01:13:33 +1100 | [diff] [blame] | 874 | if (unlikely(nd->flags & LOOKUP_BENEATH)) |
| 875 | return -EXDEV; |
Aleksa Sarai | 72ba292 | 2019-12-07 01:13:32 +1100 | [diff] [blame] | 876 | if (unlikely(nd->flags & LOOKUP_NO_XDEV)) { |
| 877 | /* Absolute path arguments to path_init() are allowed. */ |
| 878 | if (nd->path.mnt != NULL && nd->path.mnt != nd->root.mnt) |
| 879 | return -EXDEV; |
| 880 | } |
Aleksa Sarai | 740a167 | 2019-12-07 01:13:29 +1100 | [diff] [blame] | 881 | if (!nd->root.mnt) { |
| 882 | int error = set_root(nd); |
| 883 | if (error) |
| 884 | return error; |
| 885 | } |
Al Viro | 248fb5b | 2015-12-05 20:51:58 -0500 | [diff] [blame] | 886 | if (nd->flags & LOOKUP_RCU) { |
| 887 | struct dentry *d; |
| 888 | nd->path = nd->root; |
| 889 | d = nd->path.dentry; |
| 890 | nd->inode = d->d_inode; |
| 891 | nd->seq = nd->root_seq; |
| 892 | if (unlikely(read_seqcount_retry(&d->d_seq, nd->seq))) |
| 893 | return -ECHILD; |
| 894 | } else { |
| 895 | path_put(&nd->path); |
| 896 | nd->path = nd->root; |
| 897 | path_get(&nd->path); |
| 898 | nd->inode = nd->path.dentry->d_inode; |
| 899 | } |
| 900 | nd->flags |= LOOKUP_JUMPED; |
| 901 | return 0; |
| 902 | } |
| 903 | |
Christoph Hellwig | b5fb63c1 | 2012-06-18 10:47:04 -0400 | [diff] [blame] | 904 | /* |
Al Viro | 6b25539 | 2015-11-17 10:20:54 -0500 | [diff] [blame] | 905 | * Helper to directly jump to a known parsed path from ->get_link, |
Christoph Hellwig | b5fb63c1 | 2012-06-18 10:47:04 -0400 | [diff] [blame] | 906 | * caller must have taken a reference to path beforehand. |
| 907 | */ |
Aleksa Sarai | 1bc8207 | 2019-12-07 01:13:28 +1100 | [diff] [blame] | 908 | int nd_jump_link(struct path *path) |
Christoph Hellwig | b5fb63c1 | 2012-06-18 10:47:04 -0400 | [diff] [blame] | 909 | { |
Aleksa Sarai | 4b99d49 | 2019-12-07 01:13:31 +1100 | [diff] [blame] | 910 | int error = -ELOOP; |
Al Viro | 6e77137b | 2015-05-02 13:37:52 -0400 | [diff] [blame] | 911 | struct nameidata *nd = current->nameidata; |
Christoph Hellwig | b5fb63c1 | 2012-06-18 10:47:04 -0400 | [diff] [blame] | 912 | |
Aleksa Sarai | 4b99d49 | 2019-12-07 01:13:31 +1100 | [diff] [blame] | 913 | if (unlikely(nd->flags & LOOKUP_NO_MAGICLINKS)) |
| 914 | goto err; |
| 915 | |
Aleksa Sarai | 72ba292 | 2019-12-07 01:13:32 +1100 | [diff] [blame] | 916 | error = -EXDEV; |
| 917 | if (unlikely(nd->flags & LOOKUP_NO_XDEV)) { |
| 918 | if (nd->path.mnt != path->mnt) |
| 919 | goto err; |
| 920 | } |
Aleksa Sarai | adb21d2 | 2019-12-07 01:13:33 +1100 | [diff] [blame] | 921 | /* Not currently safe for scoped-lookups. */ |
| 922 | if (unlikely(nd->flags & LOOKUP_IS_SCOPED)) |
| 923 | goto err; |
Aleksa Sarai | 72ba292 | 2019-12-07 01:13:32 +1100 | [diff] [blame] | 924 | |
Aleksa Sarai | 4b99d49 | 2019-12-07 01:13:31 +1100 | [diff] [blame] | 925 | path_put(&nd->path); |
Christoph Hellwig | b5fb63c1 | 2012-06-18 10:47:04 -0400 | [diff] [blame] | 926 | nd->path = *path; |
| 927 | nd->inode = nd->path.dentry->d_inode; |
| 928 | nd->flags |= LOOKUP_JUMPED; |
Aleksa Sarai | 1bc8207 | 2019-12-07 01:13:28 +1100 | [diff] [blame] | 929 | return 0; |
Aleksa Sarai | 4b99d49 | 2019-12-07 01:13:31 +1100 | [diff] [blame] | 930 | |
| 931 | err: |
| 932 | path_put(path); |
| 933 | return error; |
Christoph Hellwig | b5fb63c1 | 2012-06-18 10:47:04 -0400 | [diff] [blame] | 934 | } |
| 935 | |
Al Viro | b9ff442 | 2015-05-02 20:19:23 -0400 | [diff] [blame] | 936 | static inline void put_link(struct nameidata *nd) |
Al Viro | 574197e | 2011-03-14 22:20:34 -0400 | [diff] [blame] | 937 | { |
Al Viro | 21c3003 | 2015-05-03 21:06:24 -0400 | [diff] [blame] | 938 | struct saved *last = nd->stack + --nd->depth; |
Al Viro | fceef39 | 2015-12-29 15:58:39 -0500 | [diff] [blame] | 939 | do_delayed_call(&last->done); |
Al Viro | 6548fae | 2015-05-07 20:32:22 -0400 | [diff] [blame] | 940 | if (!(nd->flags & LOOKUP_RCU)) |
| 941 | path_put(&last->link); |
Al Viro | 574197e | 2011-03-14 22:20:34 -0400 | [diff] [blame] | 942 | } |
| 943 | |
Linus Torvalds | 561ec64 | 2012-10-26 10:05:07 -0700 | [diff] [blame] | 944 | int sysctl_protected_symlinks __read_mostly = 0; |
| 945 | int sysctl_protected_hardlinks __read_mostly = 0; |
Salvatore Mesoraca | 30aba66 | 2018-08-23 17:00:35 -0700 | [diff] [blame] | 946 | int sysctl_protected_fifos __read_mostly; |
| 947 | int sysctl_protected_regular __read_mostly; |
Kees Cook | 800179c | 2012-07-25 17:29:07 -0700 | [diff] [blame] | 948 | |
| 949 | /** |
| 950 | * may_follow_link - Check symlink following for unsafe situations |
Randy Dunlap | 5585263 | 2012-08-18 17:39:25 -0700 | [diff] [blame] | 951 | * @nd: nameidata pathwalk data |
Kees Cook | 800179c | 2012-07-25 17:29:07 -0700 | [diff] [blame] | 952 | * |
| 953 | * In the case of the sysctl_protected_symlinks sysctl being enabled, |
| 954 | * CAP_DAC_OVERRIDE needs to be specifically ignored if the symlink is |
| 955 | * in a sticky world-writable directory. This is to protect privileged |
| 956 | * processes from failing races against path names that may change out |
| 957 | * from under them by way of other users creating malicious symlinks. |
| 958 | * It will permit symlinks to be followed only when outside a sticky |
| 959 | * world-writable directory, or when the uid of the symlink and follower |
| 960 | * match, or when the directory owner matches the symlink's owner. |
| 961 | * |
| 962 | * Returns 0 if following the symlink is allowed, -ve on error. |
| 963 | */ |
Al Viro | ad6cc4c | 2020-01-14 14:41:39 -0500 | [diff] [blame] | 964 | static inline int may_follow_link(struct nameidata *nd, const struct inode *inode) |
Kees Cook | 800179c | 2012-07-25 17:29:07 -0700 | [diff] [blame] | 965 | { |
Kees Cook | 800179c | 2012-07-25 17:29:07 -0700 | [diff] [blame] | 966 | const struct inode *parent; |
Seth Forshee | 2d7f9e2 | 2016-04-26 14:36:23 -0500 | [diff] [blame] | 967 | kuid_t puid; |
Kees Cook | 800179c | 2012-07-25 17:29:07 -0700 | [diff] [blame] | 968 | |
| 969 | if (!sysctl_protected_symlinks) |
| 970 | return 0; |
| 971 | |
| 972 | /* Allowed if owner and follower match. */ |
Eric W. Biederman | 81abe27 | 2012-08-03 09:38:08 -0700 | [diff] [blame] | 973 | if (uid_eq(current_cred()->fsuid, inode->i_uid)) |
Kees Cook | 800179c | 2012-07-25 17:29:07 -0700 | [diff] [blame] | 974 | return 0; |
| 975 | |
| 976 | /* Allowed if parent directory not sticky and world-writable. */ |
Al Viro | aa65fa3 | 2015-08-04 23:23:50 -0400 | [diff] [blame] | 977 | parent = nd->inode; |
Kees Cook | 800179c | 2012-07-25 17:29:07 -0700 | [diff] [blame] | 978 | if ((parent->i_mode & (S_ISVTX|S_IWOTH)) != (S_ISVTX|S_IWOTH)) |
| 979 | return 0; |
| 980 | |
| 981 | /* Allowed if parent directory and link owner match. */ |
Seth Forshee | 2d7f9e2 | 2016-04-26 14:36:23 -0500 | [diff] [blame] | 982 | puid = parent->i_uid; |
| 983 | if (uid_valid(puid) && uid_eq(puid, inode->i_uid)) |
Kees Cook | 800179c | 2012-07-25 17:29:07 -0700 | [diff] [blame] | 984 | return 0; |
| 985 | |
Al Viro | 31956502 | 2015-05-07 20:37:40 -0400 | [diff] [blame] | 986 | if (nd->flags & LOOKUP_RCU) |
| 987 | return -ECHILD; |
| 988 | |
Richard Guy Briggs | ea841ba | 2018-03-21 04:42:21 -0400 | [diff] [blame] | 989 | audit_inode(nd->name, nd->stack[0].link.dentry, 0); |
Kees Cook | 245d736 | 2019-10-02 16:41:58 -0700 | [diff] [blame] | 990 | audit_log_path_denied(AUDIT_ANOM_LINK, "follow_link"); |
Kees Cook | 800179c | 2012-07-25 17:29:07 -0700 | [diff] [blame] | 991 | return -EACCES; |
| 992 | } |
| 993 | |
| 994 | /** |
| 995 | * safe_hardlink_source - Check for safe hardlink conditions |
| 996 | * @inode: the source inode to hardlink from |
| 997 | * |
| 998 | * Return false if at least one of the following conditions: |
| 999 | * - inode is not a regular file |
| 1000 | * - inode is setuid |
| 1001 | * - inode is setgid and group-exec |
| 1002 | * - access failure for read and write |
| 1003 | * |
| 1004 | * Otherwise returns true. |
| 1005 | */ |
| 1006 | static bool safe_hardlink_source(struct inode *inode) |
| 1007 | { |
| 1008 | umode_t mode = inode->i_mode; |
| 1009 | |
| 1010 | /* Special files should not get pinned to the filesystem. */ |
| 1011 | if (!S_ISREG(mode)) |
| 1012 | return false; |
| 1013 | |
| 1014 | /* Setuid files should not get pinned to the filesystem. */ |
| 1015 | if (mode & S_ISUID) |
| 1016 | return false; |
| 1017 | |
| 1018 | /* Executable setgid files should not get pinned to the filesystem. */ |
| 1019 | if ((mode & (S_ISGID | S_IXGRP)) == (S_ISGID | S_IXGRP)) |
| 1020 | return false; |
| 1021 | |
| 1022 | /* Hardlinking to unreadable or unwritable sources is dangerous. */ |
| 1023 | if (inode_permission(inode, MAY_READ | MAY_WRITE)) |
| 1024 | return false; |
| 1025 | |
| 1026 | return true; |
| 1027 | } |
| 1028 | |
| 1029 | /** |
| 1030 | * may_linkat - Check permissions for creating a hardlink |
| 1031 | * @link: the source to hardlink from |
| 1032 | * |
| 1033 | * Block hardlink when all of: |
| 1034 | * - sysctl_protected_hardlinks enabled |
| 1035 | * - fsuid does not match inode |
| 1036 | * - hardlink source is unsafe (see safe_hardlink_source() above) |
Dirk Steinmetz | f2ca379 | 2015-10-20 16:09:19 +0200 | [diff] [blame] | 1037 | * - not CAP_FOWNER in a namespace with the inode owner uid mapped |
Kees Cook | 800179c | 2012-07-25 17:29:07 -0700 | [diff] [blame] | 1038 | * |
| 1039 | * Returns 0 if successful, -ve on error. |
| 1040 | */ |
| 1041 | static int may_linkat(struct path *link) |
| 1042 | { |
Eric W. Biederman | 593d1ce | 2017-09-14 12:07:32 -0500 | [diff] [blame] | 1043 | struct inode *inode = link->dentry->d_inode; |
| 1044 | |
| 1045 | /* Inode writeback is not safe when the uid or gid are invalid. */ |
| 1046 | if (!uid_valid(inode->i_uid) || !gid_valid(inode->i_gid)) |
| 1047 | return -EOVERFLOW; |
Kees Cook | 800179c | 2012-07-25 17:29:07 -0700 | [diff] [blame] | 1048 | |
| 1049 | if (!sysctl_protected_hardlinks) |
| 1050 | return 0; |
| 1051 | |
Kees Cook | 800179c | 2012-07-25 17:29:07 -0700 | [diff] [blame] | 1052 | /* Source inode owner (or CAP_FOWNER) can hardlink all they like, |
| 1053 | * otherwise, it must be a safe source. |
| 1054 | */ |
Kees Cook | cc658db | 2017-06-21 09:53:06 -0700 | [diff] [blame] | 1055 | if (safe_hardlink_source(inode) || inode_owner_or_capable(inode)) |
Kees Cook | 800179c | 2012-07-25 17:29:07 -0700 | [diff] [blame] | 1056 | return 0; |
| 1057 | |
Kees Cook | 245d736 | 2019-10-02 16:41:58 -0700 | [diff] [blame] | 1058 | audit_log_path_denied(AUDIT_ANOM_LINK, "linkat"); |
Kees Cook | 800179c | 2012-07-25 17:29:07 -0700 | [diff] [blame] | 1059 | return -EPERM; |
| 1060 | } |
| 1061 | |
Salvatore Mesoraca | 30aba66 | 2018-08-23 17:00:35 -0700 | [diff] [blame] | 1062 | /** |
| 1063 | * may_create_in_sticky - Check whether an O_CREAT open in a sticky directory |
| 1064 | * should be allowed, or not, on files that already |
| 1065 | * exist. |
Al Viro | d0cb501 | 2020-01-26 09:29:34 -0500 | [diff] [blame] | 1066 | * @dir_mode: mode bits of directory |
| 1067 | * @dir_uid: owner of directory |
Salvatore Mesoraca | 30aba66 | 2018-08-23 17:00:35 -0700 | [diff] [blame] | 1068 | * @inode: the inode of the file to open |
| 1069 | * |
| 1070 | * Block an O_CREAT open of a FIFO (or a regular file) when: |
| 1071 | * - sysctl_protected_fifos (or sysctl_protected_regular) is enabled |
| 1072 | * - the file already exists |
| 1073 | * - we are in a sticky directory |
| 1074 | * - we don't own the file |
| 1075 | * - the owner of the directory doesn't own the file |
| 1076 | * - the directory is world writable |
| 1077 | * If the sysctl_protected_fifos (or sysctl_protected_regular) is set to 2 |
| 1078 | * the directory doesn't have to be world writable: being group writable will |
| 1079 | * be enough. |
| 1080 | * |
| 1081 | * Returns 0 if the open is allowed, -ve on error. |
| 1082 | */ |
Al Viro | d0cb501 | 2020-01-26 09:29:34 -0500 | [diff] [blame] | 1083 | static int may_create_in_sticky(umode_t dir_mode, kuid_t dir_uid, |
Salvatore Mesoraca | 30aba66 | 2018-08-23 17:00:35 -0700 | [diff] [blame] | 1084 | struct inode * const inode) |
| 1085 | { |
| 1086 | if ((!sysctl_protected_fifos && S_ISFIFO(inode->i_mode)) || |
| 1087 | (!sysctl_protected_regular && S_ISREG(inode->i_mode)) || |
Al Viro | d0cb501 | 2020-01-26 09:29:34 -0500 | [diff] [blame] | 1088 | likely(!(dir_mode & S_ISVTX)) || |
| 1089 | uid_eq(inode->i_uid, dir_uid) || |
Salvatore Mesoraca | 30aba66 | 2018-08-23 17:00:35 -0700 | [diff] [blame] | 1090 | uid_eq(current_fsuid(), inode->i_uid)) |
| 1091 | return 0; |
| 1092 | |
Al Viro | d0cb501 | 2020-01-26 09:29:34 -0500 | [diff] [blame] | 1093 | if (likely(dir_mode & 0002) || |
| 1094 | (dir_mode & 0020 && |
Salvatore Mesoraca | 30aba66 | 2018-08-23 17:00:35 -0700 | [diff] [blame] | 1095 | ((sysctl_protected_fifos >= 2 && S_ISFIFO(inode->i_mode)) || |
| 1096 | (sysctl_protected_regular >= 2 && S_ISREG(inode->i_mode))))) { |
Kees Cook | 245d736 | 2019-10-02 16:41:58 -0700 | [diff] [blame] | 1097 | const char *operation = S_ISFIFO(inode->i_mode) ? |
| 1098 | "sticky_create_fifo" : |
| 1099 | "sticky_create_regular"; |
| 1100 | audit_log_path_denied(AUDIT_ANOM_CREAT, operation); |
Salvatore Mesoraca | 30aba66 | 2018-08-23 17:00:35 -0700 | [diff] [blame] | 1101 | return -EACCES; |
| 1102 | } |
| 1103 | return 0; |
| 1104 | } |
| 1105 | |
David Howells | f015f126 | 2012-06-25 12:55:28 +0100 | [diff] [blame] | 1106 | /* |
| 1107 | * follow_up - Find the mountpoint of path's vfsmount |
| 1108 | * |
| 1109 | * Given a path, find the mountpoint of its source file system. |
| 1110 | * Replace @path with the path of the mountpoint in the parent mount. |
| 1111 | * Up is towards /. |
| 1112 | * |
| 1113 | * Return 1 if we went up a level and 0 if we were already at the |
| 1114 | * root. |
| 1115 | */ |
Al Viro | bab77eb | 2009-04-18 03:26:48 -0400 | [diff] [blame] | 1116 | int follow_up(struct path *path) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1117 | { |
Al Viro | 0714a53 | 2011-11-24 22:19:58 -0500 | [diff] [blame] | 1118 | struct mount *mnt = real_mount(path->mnt); |
| 1119 | struct mount *parent; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1120 | struct dentry *mountpoint; |
Nick Piggin | 99b7db7 | 2010-08-18 04:37:39 +1000 | [diff] [blame] | 1121 | |
Al Viro | 48a066e | 2013-09-29 22:06:07 -0400 | [diff] [blame] | 1122 | read_seqlock_excl(&mount_lock); |
Al Viro | 0714a53 | 2011-11-24 22:19:58 -0500 | [diff] [blame] | 1123 | parent = mnt->mnt_parent; |
Al Viro | 3c0a616 | 2012-07-18 17:32:50 +0400 | [diff] [blame] | 1124 | if (parent == mnt) { |
Al Viro | 48a066e | 2013-09-29 22:06:07 -0400 | [diff] [blame] | 1125 | read_sequnlock_excl(&mount_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1126 | return 0; |
| 1127 | } |
Al Viro | 0714a53 | 2011-11-24 22:19:58 -0500 | [diff] [blame] | 1128 | mntget(&parent->mnt); |
Al Viro | a73324d | 2011-11-24 22:25:07 -0500 | [diff] [blame] | 1129 | mountpoint = dget(mnt->mnt_mountpoint); |
Al Viro | 48a066e | 2013-09-29 22:06:07 -0400 | [diff] [blame] | 1130 | read_sequnlock_excl(&mount_lock); |
Al Viro | bab77eb | 2009-04-18 03:26:48 -0400 | [diff] [blame] | 1131 | dput(path->dentry); |
| 1132 | path->dentry = mountpoint; |
| 1133 | mntput(path->mnt); |
Al Viro | 0714a53 | 2011-11-24 22:19:58 -0500 | [diff] [blame] | 1134 | path->mnt = &parent->mnt; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1135 | return 1; |
| 1136 | } |
Al Viro | 4d35950 | 2014-03-14 12:20:17 -0400 | [diff] [blame] | 1137 | EXPORT_SYMBOL(follow_up); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1138 | |
Nick Piggin | b5c84bf | 2011-01-07 17:49:38 +1100 | [diff] [blame] | 1139 | /* |
David Howells | 9875cf8 | 2011-01-14 18:45:21 +0000 | [diff] [blame] | 1140 | * Perform an automount |
| 1141 | * - return -EISDIR to tell follow_managed() to stop and return the path we |
| 1142 | * were called with. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1143 | */ |
Al Viro | 1c9f5e0 | 2020-01-16 22:05:18 -0500 | [diff] [blame] | 1144 | static int follow_automount(struct path *path, int *count, unsigned lookup_flags) |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1145 | { |
Al Viro | 25e195a | 2020-01-11 11:27:46 -0500 | [diff] [blame] | 1146 | struct dentry *dentry = path->dentry; |
Al Viro | 463ffb2 | 2005-06-06 13:36:05 -0700 | [diff] [blame] | 1147 | |
Miklos Szeredi | 0ec26fd | 2011-09-05 18:06:26 +0200 | [diff] [blame] | 1148 | /* We don't want to mount if someone's just doing a stat - |
| 1149 | * unless they're stat'ing a directory and appended a '/' to |
| 1150 | * the name. |
| 1151 | * |
| 1152 | * We do, however, want to mount if someone wants to open or |
| 1153 | * create a file of any type under the mountpoint, wants to |
| 1154 | * traverse through the mountpoint or wants to open the |
| 1155 | * mounted directory. Also, autofs may mark negative dentries |
| 1156 | * as being automount points. These will need the attentions |
| 1157 | * of the daemon to instantiate them before they can be used. |
David Howells | 9875cf8 | 2011-01-14 18:45:21 +0000 | [diff] [blame] | 1158 | */ |
Al Viro | 1c9f5e0 | 2020-01-16 22:05:18 -0500 | [diff] [blame] | 1159 | if (!(lookup_flags & (LOOKUP_PARENT | LOOKUP_DIRECTORY | |
Ian Kent | 5d38f04 | 2017-11-29 16:11:26 -0800 | [diff] [blame] | 1160 | LOOKUP_OPEN | LOOKUP_CREATE | LOOKUP_AUTOMOUNT)) && |
Al Viro | 25e195a | 2020-01-11 11:27:46 -0500 | [diff] [blame] | 1161 | dentry->d_inode) |
Ian Kent | 5d38f04 | 2017-11-29 16:11:26 -0800 | [diff] [blame] | 1162 | return -EISDIR; |
Miklos Szeredi | 0ec26fd | 2011-09-05 18:06:26 +0200 | [diff] [blame] | 1163 | |
Al Viro | 1c9f5e0 | 2020-01-16 22:05:18 -0500 | [diff] [blame] | 1164 | if (count && (*count)++ >= MAXSYMLINKS) |
David Howells | 9875cf8 | 2011-01-14 18:45:21 +0000 | [diff] [blame] | 1165 | return -ELOOP; |
| 1166 | |
Al Viro | 25e195a | 2020-01-11 11:27:46 -0500 | [diff] [blame] | 1167 | return finish_automount(dentry->d_op->d_automount(path), path); |
David Howells | 9875cf8 | 2011-01-14 18:45:21 +0000 | [diff] [blame] | 1168 | } |
| 1169 | |
| 1170 | /* |
| 1171 | * Handle a dentry that is managed in some way. |
David Howells | cc53ce5 | 2011-01-14 18:45:26 +0000 | [diff] [blame] | 1172 | * - Flagged for transit management (autofs) |
David Howells | 9875cf8 | 2011-01-14 18:45:21 +0000 | [diff] [blame] | 1173 | * - Flagged as mountpoint |
| 1174 | * - Flagged as automount point |
| 1175 | * |
| 1176 | * This may only be called in refwalk mode. |
Al Viro | d41efb5 | 2019-11-04 22:30:52 -0500 | [diff] [blame] | 1177 | * On success path->dentry is known positive. |
David Howells | 9875cf8 | 2011-01-14 18:45:21 +0000 | [diff] [blame] | 1178 | * |
| 1179 | * Serialization is taken care of in namespace.c |
| 1180 | */ |
NeilBrown | 756daf2 | 2015-03-23 13:37:38 +1100 | [diff] [blame] | 1181 | static int follow_managed(struct path *path, struct nameidata *nd) |
David Howells | 9875cf8 | 2011-01-14 18:45:21 +0000 | [diff] [blame] | 1182 | { |
Al Viro | 8aef188 | 2011-06-16 15:10:06 +0100 | [diff] [blame] | 1183 | struct vfsmount *mnt = path->mnt; /* held by caller, must be left alone */ |
Al Viro | d41efb5 | 2019-11-04 22:30:52 -0500 | [diff] [blame] | 1184 | unsigned flags; |
David Howells | 9875cf8 | 2011-01-14 18:45:21 +0000 | [diff] [blame] | 1185 | bool need_mntput = false; |
Al Viro | 8aef188 | 2011-06-16 15:10:06 +0100 | [diff] [blame] | 1186 | int ret = 0; |
David Howells | 9875cf8 | 2011-01-14 18:45:21 +0000 | [diff] [blame] | 1187 | |
| 1188 | /* Given that we're not holding a lock here, we retain the value in a |
| 1189 | * local variable for each dentry as we look at it so that we don't see |
| 1190 | * the components of that value change under us */ |
Al Viro | 2fa6b1e | 2019-11-12 16:13:06 -0500 | [diff] [blame] | 1191 | while (flags = smp_load_acquire(&path->dentry->d_flags), |
Al Viro | d41efb5 | 2019-11-04 22:30:52 -0500 | [diff] [blame] | 1192 | unlikely(flags & DCACHE_MANAGED_DENTRY)) { |
David Howells | cc53ce5 | 2011-01-14 18:45:26 +0000 | [diff] [blame] | 1193 | /* Allow the filesystem to manage the transit without i_mutex |
| 1194 | * being held. */ |
Al Viro | d41efb5 | 2019-11-04 22:30:52 -0500 | [diff] [blame] | 1195 | if (flags & DCACHE_MANAGE_TRANSIT) { |
David Howells | cc53ce5 | 2011-01-14 18:45:26 +0000 | [diff] [blame] | 1196 | BUG_ON(!path->dentry->d_op); |
| 1197 | BUG_ON(!path->dentry->d_op->d_manage); |
Ian Kent | fb5f51c | 2016-11-24 08:03:41 +1100 | [diff] [blame] | 1198 | ret = path->dentry->d_op->d_manage(path, false); |
Al Viro | 508c877 | 2020-01-14 22:09:57 -0500 | [diff] [blame] | 1199 | flags = smp_load_acquire(&path->dentry->d_flags); |
David Howells | cc53ce5 | 2011-01-14 18:45:26 +0000 | [diff] [blame] | 1200 | if (ret < 0) |
Al Viro | 8aef188 | 2011-06-16 15:10:06 +0100 | [diff] [blame] | 1201 | break; |
David Howells | cc53ce5 | 2011-01-14 18:45:26 +0000 | [diff] [blame] | 1202 | } |
| 1203 | |
David Howells | 9875cf8 | 2011-01-14 18:45:21 +0000 | [diff] [blame] | 1204 | /* Transit to a mounted filesystem. */ |
Al Viro | d41efb5 | 2019-11-04 22:30:52 -0500 | [diff] [blame] | 1205 | if (flags & DCACHE_MOUNTED) { |
David Howells | 9875cf8 | 2011-01-14 18:45:21 +0000 | [diff] [blame] | 1206 | struct vfsmount *mounted = lookup_mnt(path); |
| 1207 | if (mounted) { |
| 1208 | dput(path->dentry); |
| 1209 | if (need_mntput) |
| 1210 | mntput(path->mnt); |
| 1211 | path->mnt = mounted; |
| 1212 | path->dentry = dget(mounted->mnt_root); |
| 1213 | need_mntput = true; |
| 1214 | continue; |
| 1215 | } |
| 1216 | |
| 1217 | /* Something is mounted on this dentry in another |
| 1218 | * namespace and/or whatever was mounted there in this |
Al Viro | 48a066e | 2013-09-29 22:06:07 -0400 | [diff] [blame] | 1219 | * namespace got unmounted before lookup_mnt() could |
| 1220 | * get it */ |
David Howells | 9875cf8 | 2011-01-14 18:45:21 +0000 | [diff] [blame] | 1221 | } |
| 1222 | |
| 1223 | /* Handle an automount point */ |
Al Viro | d41efb5 | 2019-11-04 22:30:52 -0500 | [diff] [blame] | 1224 | if (flags & DCACHE_NEED_AUTOMOUNT) { |
Al Viro | 1c9f5e0 | 2020-01-16 22:05:18 -0500 | [diff] [blame] | 1225 | ret = follow_automount(path, &nd->total_link_count, |
| 1226 | nd->flags); |
David Howells | 9875cf8 | 2011-01-14 18:45:21 +0000 | [diff] [blame] | 1227 | if (ret < 0) |
Al Viro | 8aef188 | 2011-06-16 15:10:06 +0100 | [diff] [blame] | 1228 | break; |
David Howells | 9875cf8 | 2011-01-14 18:45:21 +0000 | [diff] [blame] | 1229 | continue; |
| 1230 | } |
| 1231 | |
| 1232 | /* We didn't change the current path point */ |
| 1233 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1234 | } |
Al Viro | 8aef188 | 2011-06-16 15:10:06 +0100 | [diff] [blame] | 1235 | |
Aleksa Sarai | 72ba292 | 2019-12-07 01:13:32 +1100 | [diff] [blame] | 1236 | if (need_mntput) { |
| 1237 | if (path->mnt == mnt) |
| 1238 | mntput(path->mnt); |
| 1239 | if (unlikely(nd->flags & LOOKUP_NO_XDEV)) |
| 1240 | ret = -EXDEV; |
| 1241 | else |
| 1242 | nd->flags |= LOOKUP_JUMPED; |
| 1243 | } |
Al Viro | d41efb5 | 2019-11-04 22:30:52 -0500 | [diff] [blame] | 1244 | if (ret == -EISDIR || !ret) |
| 1245 | ret = 1; |
| 1246 | if (ret > 0 && unlikely(d_flags_negative(flags))) |
| 1247 | ret = -ENOENT; |
Al Viro | a9dc149 | 2020-01-12 13:54:30 -0500 | [diff] [blame] | 1248 | if (unlikely(ret < 0)) { |
| 1249 | dput(path->dentry); |
| 1250 | if (path->mnt != nd->path.mnt) |
| 1251 | mntput(path->mnt); |
| 1252 | } |
Al Viro | 8402752 | 2015-04-22 10:30:08 -0400 | [diff] [blame] | 1253 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1254 | } |
| 1255 | |
David Howells | cc53ce5 | 2011-01-14 18:45:26 +0000 | [diff] [blame] | 1256 | int follow_down_one(struct path *path) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1257 | { |
| 1258 | struct vfsmount *mounted; |
| 1259 | |
Al Viro | 1c755af | 2009-04-18 14:06:57 -0400 | [diff] [blame] | 1260 | mounted = lookup_mnt(path); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1261 | if (mounted) { |
Al Viro | 9393bd0 | 2009-04-18 13:58:15 -0400 | [diff] [blame] | 1262 | dput(path->dentry); |
| 1263 | mntput(path->mnt); |
| 1264 | path->mnt = mounted; |
| 1265 | path->dentry = dget(mounted->mnt_root); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1266 | return 1; |
| 1267 | } |
| 1268 | return 0; |
| 1269 | } |
Al Viro | 4d35950 | 2014-03-14 12:20:17 -0400 | [diff] [blame] | 1270 | EXPORT_SYMBOL(follow_down_one); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1271 | |
Ian Kent | fb5f51c | 2016-11-24 08:03:41 +1100 | [diff] [blame] | 1272 | static inline int managed_dentry_rcu(const struct path *path) |
Ian Kent | 62a7375 | 2011-03-25 01:51:02 +0800 | [diff] [blame] | 1273 | { |
Ian Kent | fb5f51c | 2016-11-24 08:03:41 +1100 | [diff] [blame] | 1274 | return (path->dentry->d_flags & DCACHE_MANAGE_TRANSIT) ? |
| 1275 | path->dentry->d_op->d_manage(path, true) : 0; |
Ian Kent | 62a7375 | 2011-03-25 01:51:02 +0800 | [diff] [blame] | 1276 | } |
| 1277 | |
David Howells | 9875cf8 | 2011-01-14 18:45:21 +0000 | [diff] [blame] | 1278 | /* |
Al Viro | 287548e | 2011-05-27 06:50:06 -0400 | [diff] [blame] | 1279 | * Try to skip to top of mountpoint pile in rcuwalk mode. Fail if |
| 1280 | * we meet a managed dentry that would need blocking. |
David Howells | 9875cf8 | 2011-01-14 18:45:21 +0000 | [diff] [blame] | 1281 | */ |
| 1282 | static bool __follow_mount_rcu(struct nameidata *nd, struct path *path, |
Al Viro | 254cf58 | 2015-05-05 09:40:46 -0400 | [diff] [blame] | 1283 | struct inode **inode, unsigned *seqp) |
David Howells | 9875cf8 | 2011-01-14 18:45:21 +0000 | [diff] [blame] | 1284 | { |
Ian Kent | 62a7375 | 2011-03-25 01:51:02 +0800 | [diff] [blame] | 1285 | for (;;) { |
Al Viro | c710536 | 2011-11-24 18:22:03 -0500 | [diff] [blame] | 1286 | struct mount *mounted; |
Ian Kent | 62a7375 | 2011-03-25 01:51:02 +0800 | [diff] [blame] | 1287 | /* |
| 1288 | * Don't forget we might have a non-mountpoint managed dentry |
| 1289 | * that wants to block transit. |
| 1290 | */ |
Ian Kent | fb5f51c | 2016-11-24 08:03:41 +1100 | [diff] [blame] | 1291 | switch (managed_dentry_rcu(path)) { |
NeilBrown | b8faf03 | 2014-08-04 17:06:29 +1000 | [diff] [blame] | 1292 | case -ECHILD: |
| 1293 | default: |
David Howells | ab90911 | 2011-01-14 18:46:51 +0000 | [diff] [blame] | 1294 | return false; |
NeilBrown | b8faf03 | 2014-08-04 17:06:29 +1000 | [diff] [blame] | 1295 | case -EISDIR: |
| 1296 | return true; |
| 1297 | case 0: |
| 1298 | break; |
| 1299 | } |
Ian Kent | 62a7375 | 2011-03-25 01:51:02 +0800 | [diff] [blame] | 1300 | |
| 1301 | if (!d_mountpoint(path->dentry)) |
NeilBrown | b8faf03 | 2014-08-04 17:06:29 +1000 | [diff] [blame] | 1302 | return !(path->dentry->d_flags & DCACHE_NEED_AUTOMOUNT); |
Ian Kent | 62a7375 | 2011-03-25 01:51:02 +0800 | [diff] [blame] | 1303 | |
Al Viro | 474279d | 2013-10-01 16:11:26 -0400 | [diff] [blame] | 1304 | mounted = __lookup_mnt(path->mnt, path->dentry); |
David Howells | 9875cf8 | 2011-01-14 18:45:21 +0000 | [diff] [blame] | 1305 | if (!mounted) |
| 1306 | break; |
Aleksa Sarai | 72ba292 | 2019-12-07 01:13:32 +1100 | [diff] [blame] | 1307 | if (unlikely(nd->flags & LOOKUP_NO_XDEV)) |
| 1308 | return false; |
Al Viro | c710536 | 2011-11-24 18:22:03 -0500 | [diff] [blame] | 1309 | path->mnt = &mounted->mnt; |
| 1310 | path->dentry = mounted->mnt.mnt_root; |
Al Viro | a3fbbde | 2011-11-07 21:21:26 +0000 | [diff] [blame] | 1311 | nd->flags |= LOOKUP_JUMPED; |
Al Viro | 254cf58 | 2015-05-05 09:40:46 -0400 | [diff] [blame] | 1312 | *seqp = read_seqcount_begin(&path->dentry->d_seq); |
Linus Torvalds | 5943026 | 2011-07-18 15:43:29 -0700 | [diff] [blame] | 1313 | /* |
| 1314 | * Update the inode too. We don't need to re-check the |
| 1315 | * dentry sequence number here after this d_inode read, |
| 1316 | * because a mount-point is always pinned. |
| 1317 | */ |
| 1318 | *inode = path->dentry->d_inode; |
David Howells | 9875cf8 | 2011-01-14 18:45:21 +0000 | [diff] [blame] | 1319 | } |
Al Viro | f5be3e2912 | 2014-09-13 21:50:45 -0400 | [diff] [blame] | 1320 | return !read_seqretry(&mount_lock, nd->m_seq) && |
NeilBrown | b8faf03 | 2014-08-04 17:06:29 +1000 | [diff] [blame] | 1321 | !(path->dentry->d_flags & DCACHE_NEED_AUTOMOUNT); |
Al Viro | 287548e | 2011-05-27 06:50:06 -0400 | [diff] [blame] | 1322 | } |
| 1323 | |
Al Viro | db3c9ad | 2020-01-09 14:41:00 -0500 | [diff] [blame] | 1324 | static inline int handle_mounts(struct nameidata *nd, struct dentry *dentry, |
| 1325 | struct path *path, struct inode **inode, |
| 1326 | unsigned int *seqp) |
Al Viro | bd7c4b5 | 2020-01-08 20:37:23 -0500 | [diff] [blame] | 1327 | { |
Al Viro | db3c9ad | 2020-01-09 14:41:00 -0500 | [diff] [blame] | 1328 | int ret; |
Al Viro | bd7c4b5 | 2020-01-08 20:37:23 -0500 | [diff] [blame] | 1329 | |
Al Viro | db3c9ad | 2020-01-09 14:41:00 -0500 | [diff] [blame] | 1330 | path->mnt = nd->path.mnt; |
| 1331 | path->dentry = dentry; |
Al Viro | c153007 | 2020-01-09 14:50:18 -0500 | [diff] [blame] | 1332 | if (nd->flags & LOOKUP_RCU) { |
| 1333 | unsigned int seq = *seqp; |
| 1334 | if (unlikely(!*inode)) |
| 1335 | return -ENOENT; |
| 1336 | if (likely(__follow_mount_rcu(nd, path, inode, seqp))) |
| 1337 | return 1; |
| 1338 | if (unlazy_child(nd, dentry, seq)) |
| 1339 | return -ECHILD; |
| 1340 | // *path might've been clobbered by __follow_mount_rcu() |
| 1341 | path->mnt = nd->path.mnt; |
| 1342 | path->dentry = dentry; |
| 1343 | } |
Al Viro | db3c9ad | 2020-01-09 14:41:00 -0500 | [diff] [blame] | 1344 | ret = follow_managed(path, nd); |
Al Viro | bd7c4b5 | 2020-01-08 20:37:23 -0500 | [diff] [blame] | 1345 | if (likely(ret >= 0)) { |
| 1346 | *inode = d_backing_inode(path->dentry); |
| 1347 | *seqp = 0; /* out of RCU mode, so the value doesn't matter */ |
| 1348 | } |
| 1349 | return ret; |
| 1350 | } |
| 1351 | |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1352 | static int follow_dotdot_rcu(struct nameidata *nd) |
| 1353 | { |
Al Viro | 4023bfc | 2014-09-13 21:59:43 -0400 | [diff] [blame] | 1354 | struct inode *inode = nd->inode; |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1355 | |
David Howells | 9875cf8 | 2011-01-14 18:45:21 +0000 | [diff] [blame] | 1356 | while (1) { |
Aleksa Sarai | adb21d2 | 2019-12-07 01:13:33 +1100 | [diff] [blame] | 1357 | if (path_equal(&nd->path, &nd->root)) { |
| 1358 | if (unlikely(nd->flags & LOOKUP_BENEATH)) |
| 1359 | return -ECHILD; |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1360 | break; |
Aleksa Sarai | adb21d2 | 2019-12-07 01:13:33 +1100 | [diff] [blame] | 1361 | } |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1362 | if (nd->path.dentry != nd->path.mnt->mnt_root) { |
| 1363 | struct dentry *old = nd->path.dentry; |
| 1364 | struct dentry *parent = old->d_parent; |
| 1365 | unsigned seq; |
| 1366 | |
Al Viro | 4023bfc | 2014-09-13 21:59:43 -0400 | [diff] [blame] | 1367 | inode = parent->d_inode; |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1368 | seq = read_seqcount_begin(&parent->d_seq); |
Al Viro | aed434a | 2015-05-12 12:22:47 -0400 | [diff] [blame] | 1369 | if (unlikely(read_seqcount_retry(&old->d_seq, nd->seq))) |
| 1370 | return -ECHILD; |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1371 | nd->path.dentry = parent; |
| 1372 | nd->seq = seq; |
Eric W. Biederman | 397d425 | 2015-08-15 20:27:13 -0500 | [diff] [blame] | 1373 | if (unlikely(!path_connected(&nd->path))) |
Aleksa Sarai | 2b98149 | 2019-12-07 01:13:26 +1100 | [diff] [blame] | 1374 | return -ECHILD; |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1375 | break; |
Al Viro | aed434a | 2015-05-12 12:22:47 -0400 | [diff] [blame] | 1376 | } else { |
| 1377 | struct mount *mnt = real_mount(nd->path.mnt); |
| 1378 | struct mount *mparent = mnt->mnt_parent; |
| 1379 | struct dentry *mountpoint = mnt->mnt_mountpoint; |
| 1380 | struct inode *inode2 = mountpoint->d_inode; |
| 1381 | unsigned seq = read_seqcount_begin(&mountpoint->d_seq); |
| 1382 | if (unlikely(read_seqretry(&mount_lock, nd->m_seq))) |
| 1383 | return -ECHILD; |
| 1384 | if (&mparent->mnt == nd->path.mnt) |
| 1385 | break; |
Aleksa Sarai | 72ba292 | 2019-12-07 01:13:32 +1100 | [diff] [blame] | 1386 | if (unlikely(nd->flags & LOOKUP_NO_XDEV)) |
| 1387 | return -ECHILD; |
Al Viro | aed434a | 2015-05-12 12:22:47 -0400 | [diff] [blame] | 1388 | /* we know that mountpoint was pinned */ |
| 1389 | nd->path.dentry = mountpoint; |
| 1390 | nd->path.mnt = &mparent->mnt; |
| 1391 | inode = inode2; |
| 1392 | nd->seq = seq; |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1393 | } |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1394 | } |
Al Viro | aed434a | 2015-05-12 12:22:47 -0400 | [diff] [blame] | 1395 | while (unlikely(d_mountpoint(nd->path.dentry))) { |
Al Viro | b37199e | 2014-03-20 15:18:22 -0400 | [diff] [blame] | 1396 | struct mount *mounted; |
| 1397 | mounted = __lookup_mnt(nd->path.mnt, nd->path.dentry); |
Al Viro | aed434a | 2015-05-12 12:22:47 -0400 | [diff] [blame] | 1398 | if (unlikely(read_seqretry(&mount_lock, nd->m_seq))) |
| 1399 | return -ECHILD; |
Al Viro | b37199e | 2014-03-20 15:18:22 -0400 | [diff] [blame] | 1400 | if (!mounted) |
| 1401 | break; |
Aleksa Sarai | 72ba292 | 2019-12-07 01:13:32 +1100 | [diff] [blame] | 1402 | if (unlikely(nd->flags & LOOKUP_NO_XDEV)) |
| 1403 | return -ECHILD; |
Al Viro | b37199e | 2014-03-20 15:18:22 -0400 | [diff] [blame] | 1404 | nd->path.mnt = &mounted->mnt; |
| 1405 | nd->path.dentry = mounted->mnt.mnt_root; |
Al Viro | 4023bfc | 2014-09-13 21:59:43 -0400 | [diff] [blame] | 1406 | inode = nd->path.dentry->d_inode; |
Al Viro | b37199e | 2014-03-20 15:18:22 -0400 | [diff] [blame] | 1407 | nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq); |
Al Viro | b37199e | 2014-03-20 15:18:22 -0400 | [diff] [blame] | 1408 | } |
Al Viro | 4023bfc | 2014-09-13 21:59:43 -0400 | [diff] [blame] | 1409 | nd->inode = inode; |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1410 | return 0; |
| 1411 | } |
| 1412 | |
David Howells | 9875cf8 | 2011-01-14 18:45:21 +0000 | [diff] [blame] | 1413 | /* |
David Howells | cc53ce5 | 2011-01-14 18:45:26 +0000 | [diff] [blame] | 1414 | * Follow down to the covering mount currently visible to userspace. At each |
| 1415 | * point, the filesystem owning that dentry may be queried as to whether the |
| 1416 | * caller is permitted to proceed or not. |
David Howells | cc53ce5 | 2011-01-14 18:45:26 +0000 | [diff] [blame] | 1417 | */ |
Al Viro | 7cc90cc | 2011-03-18 09:04:20 -0400 | [diff] [blame] | 1418 | int follow_down(struct path *path) |
David Howells | cc53ce5 | 2011-01-14 18:45:26 +0000 | [diff] [blame] | 1419 | { |
| 1420 | unsigned managed; |
| 1421 | int ret; |
| 1422 | |
Mark Rutland | 6aa7de0 | 2017-10-23 14:07:29 -0700 | [diff] [blame] | 1423 | while (managed = READ_ONCE(path->dentry->d_flags), |
David Howells | cc53ce5 | 2011-01-14 18:45:26 +0000 | [diff] [blame] | 1424 | unlikely(managed & DCACHE_MANAGED_DENTRY)) { |
| 1425 | /* Allow the filesystem to manage the transit without i_mutex |
| 1426 | * being held. |
| 1427 | * |
| 1428 | * We indicate to the filesystem if someone is trying to mount |
| 1429 | * something here. This gives autofs the chance to deny anyone |
| 1430 | * other than its daemon the right to mount on its |
| 1431 | * superstructure. |
| 1432 | * |
| 1433 | * The filesystem may sleep at this point. |
| 1434 | */ |
| 1435 | if (managed & DCACHE_MANAGE_TRANSIT) { |
| 1436 | BUG_ON(!path->dentry->d_op); |
| 1437 | BUG_ON(!path->dentry->d_op->d_manage); |
Ian Kent | fb5f51c | 2016-11-24 08:03:41 +1100 | [diff] [blame] | 1438 | ret = path->dentry->d_op->d_manage(path, false); |
David Howells | cc53ce5 | 2011-01-14 18:45:26 +0000 | [diff] [blame] | 1439 | if (ret < 0) |
| 1440 | return ret == -EISDIR ? 0 : ret; |
| 1441 | } |
| 1442 | |
| 1443 | /* Transit to a mounted filesystem. */ |
| 1444 | if (managed & DCACHE_MOUNTED) { |
| 1445 | struct vfsmount *mounted = lookup_mnt(path); |
| 1446 | if (!mounted) |
| 1447 | break; |
| 1448 | dput(path->dentry); |
| 1449 | mntput(path->mnt); |
| 1450 | path->mnt = mounted; |
| 1451 | path->dentry = dget(mounted->mnt_root); |
| 1452 | continue; |
| 1453 | } |
| 1454 | |
| 1455 | /* Don't handle automount points here */ |
| 1456 | break; |
| 1457 | } |
| 1458 | return 0; |
| 1459 | } |
Al Viro | 4d35950 | 2014-03-14 12:20:17 -0400 | [diff] [blame] | 1460 | EXPORT_SYMBOL(follow_down); |
David Howells | cc53ce5 | 2011-01-14 18:45:26 +0000 | [diff] [blame] | 1461 | |
| 1462 | /* |
David Howells | 9875cf8 | 2011-01-14 18:45:21 +0000 | [diff] [blame] | 1463 | * Skip to top of mountpoint pile in refwalk mode for follow_dotdot() |
| 1464 | */ |
| 1465 | static void follow_mount(struct path *path) |
| 1466 | { |
| 1467 | while (d_mountpoint(path->dentry)) { |
| 1468 | struct vfsmount *mounted = lookup_mnt(path); |
| 1469 | if (!mounted) |
| 1470 | break; |
| 1471 | dput(path->dentry); |
| 1472 | mntput(path->mnt); |
| 1473 | path->mnt = mounted; |
| 1474 | path->dentry = dget(mounted->mnt_root); |
| 1475 | } |
| 1476 | } |
| 1477 | |
Eric W. Biederman | eedf265 | 2016-06-02 10:29:47 -0500 | [diff] [blame] | 1478 | static int path_parent_directory(struct path *path) |
| 1479 | { |
| 1480 | struct dentry *old = path->dentry; |
| 1481 | /* rare case of legitimate dget_parent()... */ |
| 1482 | path->dentry = dget_parent(path->dentry); |
| 1483 | dput(old); |
| 1484 | if (unlikely(!path_connected(path))) |
| 1485 | return -ENOENT; |
| 1486 | return 0; |
| 1487 | } |
| 1488 | |
Eric W. Biederman | 397d425 | 2015-08-15 20:27:13 -0500 | [diff] [blame] | 1489 | static int follow_dotdot(struct nameidata *nd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1490 | { |
Aleksa Sarai | adb21d2 | 2019-12-07 01:13:33 +1100 | [diff] [blame] | 1491 | while (1) { |
| 1492 | if (path_equal(&nd->path, &nd->root)) { |
| 1493 | if (unlikely(nd->flags & LOOKUP_BENEATH)) |
| 1494 | return -EXDEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1495 | break; |
Aleksa Sarai | adb21d2 | 2019-12-07 01:13:33 +1100 | [diff] [blame] | 1496 | } |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 1497 | if (nd->path.dentry != nd->path.mnt->mnt_root) { |
Eric W. Biederman | eedf265 | 2016-06-02 10:29:47 -0500 | [diff] [blame] | 1498 | int ret = path_parent_directory(&nd->path); |
| 1499 | if (ret) |
| 1500 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1501 | break; |
| 1502 | } |
Al Viro | 3088dd7 | 2010-01-30 15:47:29 -0500 | [diff] [blame] | 1503 | if (!follow_up(&nd->path)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1504 | break; |
Aleksa Sarai | 72ba292 | 2019-12-07 01:13:32 +1100 | [diff] [blame] | 1505 | if (unlikely(nd->flags & LOOKUP_NO_XDEV)) |
| 1506 | return -EXDEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1507 | } |
Al Viro | 79ed022 | 2009-04-18 13:59:41 -0400 | [diff] [blame] | 1508 | follow_mount(&nd->path); |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1509 | nd->inode = nd->path.dentry->d_inode; |
Eric W. Biederman | 397d425 | 2015-08-15 20:27:13 -0500 | [diff] [blame] | 1510 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1511 | } |
| 1512 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1513 | /* |
Oleg Drokin | f4fdace | 2016-07-07 22:04:04 -0400 | [diff] [blame] | 1514 | * This looks up the name in dcache and possibly revalidates the found dentry. |
| 1515 | * NULL is returned if the dentry does not exist in the cache. |
Nick Piggin | baa0389 | 2010-08-18 04:37:31 +1000 | [diff] [blame] | 1516 | */ |
Al Viro | e3c1392 | 2016-03-06 14:03:27 -0500 | [diff] [blame] | 1517 | static struct dentry *lookup_dcache(const struct qstr *name, |
| 1518 | struct dentry *dir, |
Al Viro | 6c51e51 | 2016-03-05 20:09:32 -0500 | [diff] [blame] | 1519 | unsigned int flags) |
Nick Piggin | baa0389 | 2010-08-18 04:37:31 +1000 | [diff] [blame] | 1520 | { |
Al Viro | a89f833 | 2017-01-09 22:25:28 -0500 | [diff] [blame] | 1521 | struct dentry *dentry = d_lookup(dir, name); |
Miklos Szeredi | bad6118 | 2012-03-26 12:54:24 +0200 | [diff] [blame] | 1522 | if (dentry) { |
Al Viro | a89f833 | 2017-01-09 22:25:28 -0500 | [diff] [blame] | 1523 | int error = d_revalidate(dentry, flags); |
| 1524 | if (unlikely(error <= 0)) { |
| 1525 | if (!error) |
| 1526 | d_invalidate(dentry); |
| 1527 | dput(dentry); |
| 1528 | return ERR_PTR(error); |
Miklos Szeredi | bad6118 | 2012-03-26 12:54:24 +0200 | [diff] [blame] | 1529 | } |
| 1530 | } |
Nick Piggin | baa0389 | 2010-08-18 04:37:31 +1000 | [diff] [blame] | 1531 | return dentry; |
| 1532 | } |
| 1533 | |
| 1534 | /* |
Al Viro | a03ece5 | 2018-03-08 11:00:45 -0500 | [diff] [blame] | 1535 | * Parent directory has inode locked exclusive. This is one |
| 1536 | * and only case when ->lookup() gets called on non in-lookup |
| 1537 | * dentries - as the matter of fact, this only gets called |
| 1538 | * when directory is guaranteed to have no in-lookup children |
| 1539 | * at all. |
Josef Bacik | 44396f4 | 2011-05-31 11:58:49 -0400 | [diff] [blame] | 1540 | */ |
Al Viro | a03ece5 | 2018-03-08 11:00:45 -0500 | [diff] [blame] | 1541 | static struct dentry *__lookup_hash(const struct qstr *name, |
| 1542 | struct dentry *base, unsigned int flags) |
Josef Bacik | 44396f4 | 2011-05-31 11:58:49 -0400 | [diff] [blame] | 1543 | { |
Al Viro | a03ece5 | 2018-03-08 11:00:45 -0500 | [diff] [blame] | 1544 | struct dentry *dentry = lookup_dcache(name, base, flags); |
Josef Bacik | 44396f4 | 2011-05-31 11:58:49 -0400 | [diff] [blame] | 1545 | struct dentry *old; |
Al Viro | a03ece5 | 2018-03-08 11:00:45 -0500 | [diff] [blame] | 1546 | struct inode *dir = base->d_inode; |
| 1547 | |
| 1548 | if (dentry) |
| 1549 | return dentry; |
Josef Bacik | 44396f4 | 2011-05-31 11:58:49 -0400 | [diff] [blame] | 1550 | |
| 1551 | /* Don't create child dentry for a dead directory. */ |
Al Viro | a03ece5 | 2018-03-08 11:00:45 -0500 | [diff] [blame] | 1552 | if (unlikely(IS_DEADDIR(dir))) |
Josef Bacik | 44396f4 | 2011-05-31 11:58:49 -0400 | [diff] [blame] | 1553 | return ERR_PTR(-ENOENT); |
Al Viro | a03ece5 | 2018-03-08 11:00:45 -0500 | [diff] [blame] | 1554 | |
| 1555 | dentry = d_alloc(base, name); |
| 1556 | if (unlikely(!dentry)) |
| 1557 | return ERR_PTR(-ENOMEM); |
Josef Bacik | 44396f4 | 2011-05-31 11:58:49 -0400 | [diff] [blame] | 1558 | |
Al Viro | 72bd866 | 2012-06-10 17:17:17 -0400 | [diff] [blame] | 1559 | old = dir->i_op->lookup(dir, dentry, flags); |
Josef Bacik | 44396f4 | 2011-05-31 11:58:49 -0400 | [diff] [blame] | 1560 | if (unlikely(old)) { |
| 1561 | dput(dentry); |
| 1562 | dentry = old; |
| 1563 | } |
| 1564 | return dentry; |
| 1565 | } |
| 1566 | |
Al Viro | 20e3435 | 2020-01-09 14:58:31 -0500 | [diff] [blame] | 1567 | static struct dentry *lookup_fast(struct nameidata *nd, |
| 1568 | struct inode **inode, |
| 1569 | unsigned *seqp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1570 | { |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1571 | struct dentry *dentry, *parent = nd->path.dentry; |
Al Viro | 5a18fff | 2011-03-11 04:44:53 -0500 | [diff] [blame] | 1572 | int status = 1; |
David Howells | 9875cf8 | 2011-01-14 18:45:21 +0000 | [diff] [blame] | 1573 | |
Al Viro | 3cac260 | 2009-08-13 18:27:43 +0400 | [diff] [blame] | 1574 | /* |
Nick Piggin | b04f784 | 2010-08-18 04:37:34 +1000 | [diff] [blame] | 1575 | * Rename seqlock is not required here because in the off chance |
Al Viro | 5d0f49c | 2016-03-05 21:32:53 -0500 | [diff] [blame] | 1576 | * of a false negative due to a concurrent rename, the caller is |
| 1577 | * going to fall back to non-racy lookup. |
Nick Piggin | b04f784 | 2010-08-18 04:37:34 +1000 | [diff] [blame] | 1578 | */ |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1579 | if (nd->flags & LOOKUP_RCU) { |
| 1580 | unsigned seq; |
Linus Torvalds | da53be1 | 2013-05-21 15:22:44 -0700 | [diff] [blame] | 1581 | dentry = __d_lookup_rcu(parent, &nd->last, &seq); |
Al Viro | 5d0f49c | 2016-03-05 21:32:53 -0500 | [diff] [blame] | 1582 | if (unlikely(!dentry)) { |
Al Viro | 4675ac3 | 2017-01-09 22:29:15 -0500 | [diff] [blame] | 1583 | if (unlazy_walk(nd)) |
Al Viro | 20e3435 | 2020-01-09 14:58:31 -0500 | [diff] [blame] | 1584 | return ERR_PTR(-ECHILD); |
| 1585 | return NULL; |
Al Viro | 5d0f49c | 2016-03-05 21:32:53 -0500 | [diff] [blame] | 1586 | } |
Al Viro | 5a18fff | 2011-03-11 04:44:53 -0500 | [diff] [blame] | 1587 | |
Linus Torvalds | 12f8ad4 | 2012-05-04 14:59:14 -0700 | [diff] [blame] | 1588 | /* |
| 1589 | * This sequence count validates that the inode matches |
| 1590 | * the dentry name information from lookup. |
| 1591 | */ |
David Howells | 63afdfc | 2015-05-06 15:59:00 +0100 | [diff] [blame] | 1592 | *inode = d_backing_inode(dentry); |
Al Viro | 5d0f49c | 2016-03-05 21:32:53 -0500 | [diff] [blame] | 1593 | if (unlikely(read_seqcount_retry(&dentry->d_seq, seq))) |
Al Viro | 20e3435 | 2020-01-09 14:58:31 -0500 | [diff] [blame] | 1594 | return ERR_PTR(-ECHILD); |
Linus Torvalds | 12f8ad4 | 2012-05-04 14:59:14 -0700 | [diff] [blame] | 1595 | |
| 1596 | /* |
| 1597 | * This sequence count validates that the parent had no |
| 1598 | * changes while we did the lookup of the dentry above. |
| 1599 | * |
| 1600 | * The memory barrier in read_seqcount_begin of child is |
| 1601 | * enough, we can use __read_seqcount_retry here. |
| 1602 | */ |
Al Viro | 5d0f49c | 2016-03-05 21:32:53 -0500 | [diff] [blame] | 1603 | if (unlikely(__read_seqcount_retry(&parent->d_seq, nd->seq))) |
Al Viro | 20e3435 | 2020-01-09 14:58:31 -0500 | [diff] [blame] | 1604 | return ERR_PTR(-ECHILD); |
Al Viro | 5a18fff | 2011-03-11 04:44:53 -0500 | [diff] [blame] | 1605 | |
Al Viro | 254cf58 | 2015-05-05 09:40:46 -0400 | [diff] [blame] | 1606 | *seqp = seq; |
Al Viro | a89f833 | 2017-01-09 22:25:28 -0500 | [diff] [blame] | 1607 | status = d_revalidate(dentry, nd->flags); |
Al Viro | c153007 | 2020-01-09 14:50:18 -0500 | [diff] [blame] | 1608 | if (likely(status > 0)) |
Al Viro | 20e3435 | 2020-01-09 14:58:31 -0500 | [diff] [blame] | 1609 | return dentry; |
Al Viro | 4675ac3 | 2017-01-09 22:29:15 -0500 | [diff] [blame] | 1610 | if (unlazy_child(nd, dentry, seq)) |
Al Viro | 20e3435 | 2020-01-09 14:58:31 -0500 | [diff] [blame] | 1611 | return ERR_PTR(-ECHILD); |
Al Viro | 209a7fb | 2017-01-09 01:35:39 -0500 | [diff] [blame] | 1612 | if (unlikely(status == -ECHILD)) |
| 1613 | /* we'd been told to redo it in non-rcu mode */ |
| 1614 | status = d_revalidate(dentry, nd->flags); |
Al Viro | 5a18fff | 2011-03-11 04:44:53 -0500 | [diff] [blame] | 1615 | } else { |
Al Viro | e97cdc8 | 2013-01-24 18:16:00 -0500 | [diff] [blame] | 1616 | dentry = __d_lookup(parent, &nd->last); |
Al Viro | 5d0f49c | 2016-03-05 21:32:53 -0500 | [diff] [blame] | 1617 | if (unlikely(!dentry)) |
Al Viro | 20e3435 | 2020-01-09 14:58:31 -0500 | [diff] [blame] | 1618 | return NULL; |
Al Viro | a89f833 | 2017-01-09 22:25:28 -0500 | [diff] [blame] | 1619 | status = d_revalidate(dentry, nd->flags); |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1620 | } |
Al Viro | 5a18fff | 2011-03-11 04:44:53 -0500 | [diff] [blame] | 1621 | if (unlikely(status <= 0)) { |
Al Viro | e9742b5 | 2016-03-05 22:04:59 -0500 | [diff] [blame] | 1622 | if (!status) |
Al Viro | 5d0f49c | 2016-03-05 21:32:53 -0500 | [diff] [blame] | 1623 | d_invalidate(dentry); |
Eric W. Biederman | 5542aa2 | 2014-02-13 09:46:25 -0800 | [diff] [blame] | 1624 | dput(dentry); |
Al Viro | 20e3435 | 2020-01-09 14:58:31 -0500 | [diff] [blame] | 1625 | return ERR_PTR(status); |
Al Viro | 5a18fff | 2011-03-11 04:44:53 -0500 | [diff] [blame] | 1626 | } |
Al Viro | 20e3435 | 2020-01-09 14:58:31 -0500 | [diff] [blame] | 1627 | return dentry; |
Miklos Szeredi | 697f514 | 2012-05-21 17:30:05 +0200 | [diff] [blame] | 1628 | } |
| 1629 | |
| 1630 | /* Fast lookup failed, do it the slow way */ |
Al Viro | 88d8331 | 2018-04-06 16:43:47 -0400 | [diff] [blame] | 1631 | static struct dentry *__lookup_slow(const struct qstr *name, |
| 1632 | struct dentry *dir, |
| 1633 | unsigned int flags) |
Miklos Szeredi | 697f514 | 2012-05-21 17:30:05 +0200 | [diff] [blame] | 1634 | { |
Al Viro | 88d8331 | 2018-04-06 16:43:47 -0400 | [diff] [blame] | 1635 | struct dentry *dentry, *old; |
Al Viro | 1936386 | 2016-04-14 19:33:34 -0400 | [diff] [blame] | 1636 | struct inode *inode = dir->d_inode; |
Al Viro | d9171b9 | 2016-04-15 03:33:13 -0400 | [diff] [blame] | 1637 | DECLARE_WAIT_QUEUE_HEAD_ONSTACK(wq); |
Al Viro | 1936386 | 2016-04-14 19:33:34 -0400 | [diff] [blame] | 1638 | |
Al Viro | 1936386 | 2016-04-14 19:33:34 -0400 | [diff] [blame] | 1639 | /* Don't go there if it's already dead */ |
Al Viro | 94bdd65 | 2016-04-15 02:42:04 -0400 | [diff] [blame] | 1640 | if (unlikely(IS_DEADDIR(inode))) |
Al Viro | 88d8331 | 2018-04-06 16:43:47 -0400 | [diff] [blame] | 1641 | return ERR_PTR(-ENOENT); |
Al Viro | 94bdd65 | 2016-04-15 02:42:04 -0400 | [diff] [blame] | 1642 | again: |
Al Viro | d9171b9 | 2016-04-15 03:33:13 -0400 | [diff] [blame] | 1643 | dentry = d_alloc_parallel(dir, name, &wq); |
Al Viro | 94bdd65 | 2016-04-15 02:42:04 -0400 | [diff] [blame] | 1644 | if (IS_ERR(dentry)) |
Al Viro | 88d8331 | 2018-04-06 16:43:47 -0400 | [diff] [blame] | 1645 | return dentry; |
Al Viro | 94bdd65 | 2016-04-15 02:42:04 -0400 | [diff] [blame] | 1646 | if (unlikely(!d_in_lookup(dentry))) { |
Al Viro | c64cd6e | 2020-01-10 17:17:19 -0500 | [diff] [blame] | 1647 | int error = d_revalidate(dentry, flags); |
| 1648 | if (unlikely(error <= 0)) { |
| 1649 | if (!error) { |
| 1650 | d_invalidate(dentry); |
Al Viro | 949a852 | 2016-03-06 14:20:52 -0500 | [diff] [blame] | 1651 | dput(dentry); |
Al Viro | c64cd6e | 2020-01-10 17:17:19 -0500 | [diff] [blame] | 1652 | goto again; |
Al Viro | 949a852 | 2016-03-06 14:20:52 -0500 | [diff] [blame] | 1653 | } |
Al Viro | c64cd6e | 2020-01-10 17:17:19 -0500 | [diff] [blame] | 1654 | dput(dentry); |
| 1655 | dentry = ERR_PTR(error); |
Al Viro | 949a852 | 2016-03-06 14:20:52 -0500 | [diff] [blame] | 1656 | } |
Al Viro | 94bdd65 | 2016-04-15 02:42:04 -0400 | [diff] [blame] | 1657 | } else { |
| 1658 | old = inode->i_op->lookup(inode, dentry, flags); |
| 1659 | d_lookup_done(dentry); |
| 1660 | if (unlikely(old)) { |
| 1661 | dput(dentry); |
| 1662 | dentry = old; |
Al Viro | 949a852 | 2016-03-06 14:20:52 -0500 | [diff] [blame] | 1663 | } |
| 1664 | } |
Al Viro | e3c1392 | 2016-03-06 14:03:27 -0500 | [diff] [blame] | 1665 | return dentry; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1666 | } |
| 1667 | |
Al Viro | 88d8331 | 2018-04-06 16:43:47 -0400 | [diff] [blame] | 1668 | static struct dentry *lookup_slow(const struct qstr *name, |
| 1669 | struct dentry *dir, |
| 1670 | unsigned int flags) |
| 1671 | { |
| 1672 | struct inode *inode = dir->d_inode; |
| 1673 | struct dentry *res; |
| 1674 | inode_lock_shared(inode); |
| 1675 | res = __lookup_slow(name, dir, flags); |
| 1676 | inode_unlock_shared(inode); |
| 1677 | return res; |
| 1678 | } |
| 1679 | |
Al Viro | 52094c8 | 2011-02-21 21:34:47 -0500 | [diff] [blame] | 1680 | static inline int may_lookup(struct nameidata *nd) |
| 1681 | { |
| 1682 | if (nd->flags & LOOKUP_RCU) { |
Al Viro | 4ad5abb | 2011-06-20 19:57:03 -0400 | [diff] [blame] | 1683 | int err = inode_permission(nd->inode, MAY_EXEC|MAY_NOT_BLOCK); |
Al Viro | 52094c8 | 2011-02-21 21:34:47 -0500 | [diff] [blame] | 1684 | if (err != -ECHILD) |
| 1685 | return err; |
Al Viro | 4675ac3 | 2017-01-09 22:29:15 -0500 | [diff] [blame] | 1686 | if (unlazy_walk(nd)) |
Al Viro | 52094c8 | 2011-02-21 21:34:47 -0500 | [diff] [blame] | 1687 | return -ECHILD; |
| 1688 | } |
Al Viro | 4ad5abb | 2011-06-20 19:57:03 -0400 | [diff] [blame] | 1689 | return inode_permission(nd->inode, MAY_EXEC); |
Al Viro | 52094c8 | 2011-02-21 21:34:47 -0500 | [diff] [blame] | 1690 | } |
| 1691 | |
Al Viro | 9856fa1 | 2011-03-04 14:22:06 -0500 | [diff] [blame] | 1692 | static inline int handle_dots(struct nameidata *nd, int type) |
| 1693 | { |
| 1694 | if (type == LAST_DOTDOT) { |
Aleksa Sarai | 740a167 | 2019-12-07 01:13:29 +1100 | [diff] [blame] | 1695 | int error = 0; |
| 1696 | |
| 1697 | if (!nd->root.mnt) { |
| 1698 | error = set_root(nd); |
| 1699 | if (error) |
| 1700 | return error; |
| 1701 | } |
Aleksa Sarai | ab87f9a | 2019-12-07 01:13:35 +1100 | [diff] [blame] | 1702 | if (nd->flags & LOOKUP_RCU) |
| 1703 | error = follow_dotdot_rcu(nd); |
| 1704 | else |
| 1705 | error = follow_dotdot(nd); |
| 1706 | if (error) |
| 1707 | return error; |
| 1708 | |
| 1709 | if (unlikely(nd->flags & LOOKUP_IS_SCOPED)) { |
| 1710 | /* |
| 1711 | * If there was a racing rename or mount along our |
| 1712 | * path, then we can't be sure that ".." hasn't jumped |
| 1713 | * above nd->root (and so userspace should retry or use |
| 1714 | * some fallback). |
| 1715 | */ |
| 1716 | smp_rmb(); |
| 1717 | if (unlikely(__read_seqcount_retry(&mount_lock.seqcount, nd->m_seq))) |
| 1718 | return -EAGAIN; |
| 1719 | if (unlikely(__read_seqcount_retry(&rename_lock.seqcount, nd->r_seq))) |
| 1720 | return -EAGAIN; |
| 1721 | } |
Al Viro | 9856fa1 | 2011-03-04 14:22:06 -0500 | [diff] [blame] | 1722 | } |
| 1723 | return 0; |
| 1724 | } |
| 1725 | |
Al Viro | b1a8197 | 2020-01-19 12:48:44 -0500 | [diff] [blame^] | 1726 | enum {WALK_TRAILING = 1, WALK_MORE = 2, WALK_NOFOLLOW = 4}; |
| 1727 | |
Al Viro | 06708ad | 2020-01-14 14:26:57 -0500 | [diff] [blame] | 1728 | static const char *pick_link(struct nameidata *nd, struct path *link, |
Al Viro | b1a8197 | 2020-01-19 12:48:44 -0500 | [diff] [blame^] | 1729 | struct inode *inode, unsigned seq, int flags) |
Al Viro | d63ff28 | 2015-05-04 18:13:23 -0400 | [diff] [blame] | 1730 | { |
Al Viro | 1cf2665 | 2015-05-06 16:01:56 -0400 | [diff] [blame] | 1731 | struct saved *last; |
Al Viro | ad6cc4c | 2020-01-14 14:41:39 -0500 | [diff] [blame] | 1732 | const char *res; |
| 1733 | int error; |
| 1734 | |
NeilBrown | 756daf2 | 2015-03-23 13:37:38 +1100 | [diff] [blame] | 1735 | if (unlikely(nd->total_link_count++ >= MAXSYMLINKS)) { |
Al Viro | 626de99 | 2015-05-04 18:26:59 -0400 | [diff] [blame] | 1736 | path_to_nameidata(link, nd); |
Al Viro | 06708ad | 2020-01-14 14:26:57 -0500 | [diff] [blame] | 1737 | return ERR_PTR(-ELOOP); |
Al Viro | 626de99 | 2015-05-04 18:26:59 -0400 | [diff] [blame] | 1738 | } |
Al Viro | bc40aee | 2015-05-09 13:04:24 -0400 | [diff] [blame] | 1739 | if (!(nd->flags & LOOKUP_RCU)) { |
Al Viro | 7973387 | 2015-05-09 12:55:43 -0400 | [diff] [blame] | 1740 | if (link->mnt == nd->path.mnt) |
| 1741 | mntget(link->mnt); |
Al Viro | d63ff28 | 2015-05-04 18:13:23 -0400 | [diff] [blame] | 1742 | } |
Al Viro | 626de99 | 2015-05-04 18:26:59 -0400 | [diff] [blame] | 1743 | error = nd_alloc_stack(nd); |
| 1744 | if (unlikely(error)) { |
Al Viro | bc40aee | 2015-05-09 13:04:24 -0400 | [diff] [blame] | 1745 | if (error == -ECHILD) { |
Al Viro | ad1633a | 2017-01-08 22:35:31 -0500 | [diff] [blame] | 1746 | if (unlikely(!legitimize_path(nd, link, seq))) { |
| 1747 | drop_links(nd); |
| 1748 | nd->depth = 0; |
| 1749 | nd->flags &= ~LOOKUP_RCU; |
| 1750 | nd->path.mnt = NULL; |
| 1751 | nd->path.dentry = NULL; |
Al Viro | ad1633a | 2017-01-08 22:35:31 -0500 | [diff] [blame] | 1752 | rcu_read_unlock(); |
Al Viro | 4675ac3 | 2017-01-09 22:29:15 -0500 | [diff] [blame] | 1753 | } else if (likely(unlazy_walk(nd)) == 0) |
Al Viro | ad1633a | 2017-01-08 22:35:31 -0500 | [diff] [blame] | 1754 | error = nd_alloc_stack(nd); |
Al Viro | bc40aee | 2015-05-09 13:04:24 -0400 | [diff] [blame] | 1755 | } |
| 1756 | if (error) { |
| 1757 | path_put(link); |
Al Viro | 06708ad | 2020-01-14 14:26:57 -0500 | [diff] [blame] | 1758 | return ERR_PTR(error); |
Al Viro | bc40aee | 2015-05-09 13:04:24 -0400 | [diff] [blame] | 1759 | } |
Al Viro | 626de99 | 2015-05-04 18:26:59 -0400 | [diff] [blame] | 1760 | } |
| 1761 | |
Al Viro | ab10492 | 2015-05-10 11:50:01 -0400 | [diff] [blame] | 1762 | last = nd->stack + nd->depth++; |
Al Viro | 1cf2665 | 2015-05-06 16:01:56 -0400 | [diff] [blame] | 1763 | last->link = *link; |
Al Viro | fceef39 | 2015-12-29 15:58:39 -0500 | [diff] [blame] | 1764 | clear_delayed_call(&last->done); |
Al Viro | 0450b2d | 2015-05-08 13:23:53 -0400 | [diff] [blame] | 1765 | last->seq = seq; |
Al Viro | ad6cc4c | 2020-01-14 14:41:39 -0500 | [diff] [blame] | 1766 | |
Al Viro | b1a8197 | 2020-01-19 12:48:44 -0500 | [diff] [blame^] | 1767 | if (flags & WALK_TRAILING) { |
Al Viro | ad6cc4c | 2020-01-14 14:41:39 -0500 | [diff] [blame] | 1768 | error = may_follow_link(nd, inode); |
| 1769 | if (unlikely(error)) |
| 1770 | return ERR_PTR(error); |
| 1771 | } |
| 1772 | |
| 1773 | if (unlikely(nd->flags & LOOKUP_NO_SYMLINKS)) |
| 1774 | return ERR_PTR(-ELOOP); |
| 1775 | |
| 1776 | if (!(nd->flags & LOOKUP_RCU)) { |
| 1777 | touch_atime(&last->link); |
| 1778 | cond_resched(); |
| 1779 | } else if (atime_needs_update(&last->link, inode)) { |
| 1780 | if (unlikely(unlazy_walk(nd))) |
| 1781 | return ERR_PTR(-ECHILD); |
| 1782 | touch_atime(&last->link); |
| 1783 | } |
| 1784 | |
| 1785 | error = security_inode_follow_link(link->dentry, inode, |
| 1786 | nd->flags & LOOKUP_RCU); |
| 1787 | if (unlikely(error)) |
| 1788 | return ERR_PTR(error); |
| 1789 | |
Al Viro | ad6cc4c | 2020-01-14 14:41:39 -0500 | [diff] [blame] | 1790 | res = READ_ONCE(inode->i_link); |
| 1791 | if (!res) { |
| 1792 | const char * (*get)(struct dentry *, struct inode *, |
| 1793 | struct delayed_call *); |
| 1794 | get = inode->i_op->get_link; |
| 1795 | if (nd->flags & LOOKUP_RCU) { |
| 1796 | res = get(NULL, inode, &last->done); |
| 1797 | if (res == ERR_PTR(-ECHILD)) { |
| 1798 | if (unlikely(unlazy_walk(nd))) |
| 1799 | return ERR_PTR(-ECHILD); |
| 1800 | res = get(link->dentry, inode, &last->done); |
| 1801 | } |
| 1802 | } else { |
| 1803 | res = get(link->dentry, inode, &last->done); |
| 1804 | } |
| 1805 | if (!res) |
| 1806 | goto all_done; |
| 1807 | if (IS_ERR(res)) |
| 1808 | return res; |
| 1809 | } |
| 1810 | if (*res == '/') { |
| 1811 | error = nd_jump_root(nd); |
| 1812 | if (unlikely(error)) |
| 1813 | return ERR_PTR(error); |
| 1814 | while (unlikely(*++res == '/')) |
| 1815 | ; |
| 1816 | } |
| 1817 | if (*res) |
| 1818 | return res; |
| 1819 | all_done: // pure jump |
| 1820 | put_link(nd); |
| 1821 | return NULL; |
Al Viro | d63ff28 | 2015-05-04 18:13:23 -0400 | [diff] [blame] | 1822 | } |
| 1823 | |
Linus Torvalds | 3ddcd05 | 2011-08-06 22:45:50 -0700 | [diff] [blame] | 1824 | /* |
| 1825 | * Do we need to follow links? We _really_ want to be able |
| 1826 | * to do this check without having to look at inode->i_op, |
| 1827 | * so we keep a cache of "no, this doesn't need follow_link" |
| 1828 | * for the common case. |
| 1829 | */ |
Al Viro | b0417d2 | 2020-01-14 13:34:20 -0500 | [diff] [blame] | 1830 | static const char *step_into(struct nameidata *nd, int flags, |
Al Viro | cbae4d1 | 2020-01-12 13:40:02 -0500 | [diff] [blame] | 1831 | struct dentry *dentry, struct inode *inode, unsigned seq) |
Linus Torvalds | 3ddcd05 | 2011-08-06 22:45:50 -0700 | [diff] [blame] | 1832 | { |
Al Viro | cbae4d1 | 2020-01-12 13:40:02 -0500 | [diff] [blame] | 1833 | struct path path; |
| 1834 | int err = handle_mounts(nd, dentry, &path, &inode, &seq); |
| 1835 | |
| 1836 | if (err < 0) |
Al Viro | b0417d2 | 2020-01-14 13:34:20 -0500 | [diff] [blame] | 1837 | return ERR_PTR(err); |
Al Viro | cbae4d1 | 2020-01-12 13:40:02 -0500 | [diff] [blame] | 1838 | if (likely(!d_is_symlink(path.dentry)) || |
Al Viro | 8c4efe2 | 2020-01-19 12:44:18 -0500 | [diff] [blame] | 1839 | ((flags & WALK_TRAILING) && !(nd->flags & LOOKUP_FOLLOW)) || |
Al Viro | aca2903 | 2020-01-09 15:17:57 -0500 | [diff] [blame] | 1840 | (flags & WALK_NOFOLLOW)) { |
Al Viro | 8f64fb1 | 2016-11-14 01:50:26 -0500 | [diff] [blame] | 1841 | /* not a symlink or should not follow */ |
Al Viro | cbae4d1 | 2020-01-12 13:40:02 -0500 | [diff] [blame] | 1842 | path_to_nameidata(&path, nd); |
Al Viro | 8f64fb1 | 2016-11-14 01:50:26 -0500 | [diff] [blame] | 1843 | nd->inode = inode; |
| 1844 | nd->seq = seq; |
Al Viro | b0417d2 | 2020-01-14 13:34:20 -0500 | [diff] [blame] | 1845 | return NULL; |
Al Viro | 8f64fb1 | 2016-11-14 01:50:26 -0500 | [diff] [blame] | 1846 | } |
Al Viro | a7f7754 | 2016-02-27 19:31:01 -0500 | [diff] [blame] | 1847 | /* make sure that d_is_symlink above matches inode */ |
| 1848 | if (nd->flags & LOOKUP_RCU) { |
Al Viro | cbae4d1 | 2020-01-12 13:40:02 -0500 | [diff] [blame] | 1849 | if (read_seqcount_retry(&path.dentry->d_seq, seq)) |
Al Viro | b0417d2 | 2020-01-14 13:34:20 -0500 | [diff] [blame] | 1850 | return ERR_PTR(-ECHILD); |
Al Viro | a7f7754 | 2016-02-27 19:31:01 -0500 | [diff] [blame] | 1851 | } |
Al Viro | b1a8197 | 2020-01-19 12:48:44 -0500 | [diff] [blame^] | 1852 | return pick_link(nd, &path, inode, seq, flags); |
Linus Torvalds | 3ddcd05 | 2011-08-06 22:45:50 -0700 | [diff] [blame] | 1853 | } |
| 1854 | |
Al Viro | 92d2701 | 2020-01-14 13:24:17 -0500 | [diff] [blame] | 1855 | static const char *walk_component(struct nameidata *nd, int flags) |
Al Viro | ce57dfc | 2011-03-13 19:58:58 -0400 | [diff] [blame] | 1856 | { |
Al Viro | db3c9ad | 2020-01-09 14:41:00 -0500 | [diff] [blame] | 1857 | struct dentry *dentry; |
Al Viro | ce57dfc | 2011-03-13 19:58:58 -0400 | [diff] [blame] | 1858 | struct inode *inode; |
Al Viro | 254cf58 | 2015-05-05 09:40:46 -0400 | [diff] [blame] | 1859 | unsigned seq; |
Al Viro | ce57dfc | 2011-03-13 19:58:58 -0400 | [diff] [blame] | 1860 | int err; |
| 1861 | /* |
| 1862 | * "." and ".." are special - ".." especially so because it has |
| 1863 | * to be able to know about the current root directory and |
| 1864 | * parent relationships. |
| 1865 | */ |
Al Viro | 4693a54 | 2015-05-04 17:47:11 -0400 | [diff] [blame] | 1866 | if (unlikely(nd->last_type != LAST_NORM)) { |
Al Viro | 1c4ff1a | 2016-11-14 01:39:36 -0500 | [diff] [blame] | 1867 | if (!(flags & WALK_MORE) && nd->depth) |
Al Viro | 4693a54 | 2015-05-04 17:47:11 -0400 | [diff] [blame] | 1868 | put_link(nd); |
Al Viro | 56676ec | 2020-03-10 21:54:54 -0400 | [diff] [blame] | 1869 | err = handle_dots(nd, nd->last_type); |
Al Viro | 92d2701 | 2020-01-14 13:24:17 -0500 | [diff] [blame] | 1870 | return ERR_PTR(err); |
Al Viro | 4693a54 | 2015-05-04 17:47:11 -0400 | [diff] [blame] | 1871 | } |
Al Viro | 20e3435 | 2020-01-09 14:58:31 -0500 | [diff] [blame] | 1872 | dentry = lookup_fast(nd, &inode, &seq); |
| 1873 | if (IS_ERR(dentry)) |
Al Viro | 92d2701 | 2020-01-14 13:24:17 -0500 | [diff] [blame] | 1874 | return ERR_CAST(dentry); |
Al Viro | 20e3435 | 2020-01-09 14:58:31 -0500 | [diff] [blame] | 1875 | if (unlikely(!dentry)) { |
Al Viro | db3c9ad | 2020-01-09 14:41:00 -0500 | [diff] [blame] | 1876 | dentry = lookup_slow(&nd->last, nd->path.dentry, nd->flags); |
| 1877 | if (IS_ERR(dentry)) |
Al Viro | 92d2701 | 2020-01-14 13:24:17 -0500 | [diff] [blame] | 1878 | return ERR_CAST(dentry); |
Al Viro | ce57dfc | 2011-03-13 19:58:58 -0400 | [diff] [blame] | 1879 | } |
Al Viro | 56676ec | 2020-03-10 21:54:54 -0400 | [diff] [blame] | 1880 | if (!(flags & WALK_MORE) && nd->depth) |
| 1881 | put_link(nd); |
Al Viro | b0417d2 | 2020-01-14 13:34:20 -0500 | [diff] [blame] | 1882 | return step_into(nd, flags, dentry, inode, seq); |
Al Viro | ce57dfc | 2011-03-13 19:58:58 -0400 | [diff] [blame] | 1883 | } |
| 1884 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1885 | /* |
Linus Torvalds | bfcfaa7 | 2012-03-06 11:16:17 -0800 | [diff] [blame] | 1886 | * We can do the critical dentry name comparison and hashing |
| 1887 | * operations one word at a time, but we are limited to: |
| 1888 | * |
| 1889 | * - Architectures with fast unaligned word accesses. We could |
| 1890 | * do a "get_unaligned()" if this helps and is sufficiently |
| 1891 | * fast. |
| 1892 | * |
Linus Torvalds | bfcfaa7 | 2012-03-06 11:16:17 -0800 | [diff] [blame] | 1893 | * - non-CONFIG_DEBUG_PAGEALLOC configurations (so that we |
| 1894 | * do not trap on the (extremely unlikely) case of a page |
| 1895 | * crossing operation. |
| 1896 | * |
| 1897 | * - Furthermore, we need an efficient 64-bit compile for the |
| 1898 | * 64-bit case in order to generate the "number of bytes in |
| 1899 | * the final mask". Again, that could be replaced with a |
| 1900 | * efficient population count instruction or similar. |
| 1901 | */ |
| 1902 | #ifdef CONFIG_DCACHE_WORD_ACCESS |
| 1903 | |
Linus Torvalds | f68e556 | 2012-04-06 13:54:56 -0700 | [diff] [blame] | 1904 | #include <asm/word-at-a-time.h> |
Linus Torvalds | bfcfaa7 | 2012-03-06 11:16:17 -0800 | [diff] [blame] | 1905 | |
George Spelvin | 468a942 | 2016-05-26 22:11:51 -0400 | [diff] [blame] | 1906 | #ifdef HASH_MIX |
Linus Torvalds | bfcfaa7 | 2012-03-06 11:16:17 -0800 | [diff] [blame] | 1907 | |
George Spelvin | 468a942 | 2016-05-26 22:11:51 -0400 | [diff] [blame] | 1908 | /* Architecture provides HASH_MIX and fold_hash() in <asm/hash.h> */ |
| 1909 | |
| 1910 | #elif defined(CONFIG_64BIT) |
George Spelvin | 2a18da7a | 2016-05-23 07:43:58 -0400 | [diff] [blame] | 1911 | /* |
| 1912 | * Register pressure in the mixing function is an issue, particularly |
| 1913 | * on 32-bit x86, but almost any function requires one state value and |
| 1914 | * one temporary. Instead, use a function designed for two state values |
| 1915 | * and no temporaries. |
| 1916 | * |
| 1917 | * This function cannot create a collision in only two iterations, so |
| 1918 | * we have two iterations to achieve avalanche. In those two iterations, |
| 1919 | * we have six layers of mixing, which is enough to spread one bit's |
| 1920 | * influence out to 2^6 = 64 state bits. |
| 1921 | * |
| 1922 | * Rotate constants are scored by considering either 64 one-bit input |
| 1923 | * deltas or 64*63/2 = 2016 two-bit input deltas, and finding the |
| 1924 | * probability of that delta causing a change to each of the 128 output |
| 1925 | * bits, using a sample of random initial states. |
| 1926 | * |
| 1927 | * The Shannon entropy of the computed probabilities is then summed |
| 1928 | * to produce a score. Ideally, any input change has a 50% chance of |
| 1929 | * toggling any given output bit. |
| 1930 | * |
| 1931 | * Mixing scores (in bits) for (12,45): |
| 1932 | * Input delta: 1-bit 2-bit |
| 1933 | * 1 round: 713.3 42542.6 |
| 1934 | * 2 rounds: 2753.7 140389.8 |
| 1935 | * 3 rounds: 5954.1 233458.2 |
| 1936 | * 4 rounds: 7862.6 256672.2 |
| 1937 | * Perfect: 8192 258048 |
| 1938 | * (64*128) (64*63/2 * 128) |
| 1939 | */ |
| 1940 | #define HASH_MIX(x, y, a) \ |
| 1941 | ( x ^= (a), \ |
| 1942 | y ^= x, x = rol64(x,12),\ |
| 1943 | x += y, y = rol64(y,45),\ |
| 1944 | y *= 9 ) |
Linus Torvalds | bfcfaa7 | 2012-03-06 11:16:17 -0800 | [diff] [blame] | 1945 | |
George Spelvin | 0fed3ac | 2016-05-02 06:31:01 -0400 | [diff] [blame] | 1946 | /* |
George Spelvin | 2a18da7a | 2016-05-23 07:43:58 -0400 | [diff] [blame] | 1947 | * Fold two longs into one 32-bit hash value. This must be fast, but |
| 1948 | * latency isn't quite as critical, as there is a fair bit of additional |
| 1949 | * work done before the hash value is used. |
George Spelvin | 0fed3ac | 2016-05-02 06:31:01 -0400 | [diff] [blame] | 1950 | */ |
George Spelvin | 2a18da7a | 2016-05-23 07:43:58 -0400 | [diff] [blame] | 1951 | static inline unsigned int fold_hash(unsigned long x, unsigned long y) |
George Spelvin | 0fed3ac | 2016-05-02 06:31:01 -0400 | [diff] [blame] | 1952 | { |
George Spelvin | 2a18da7a | 2016-05-23 07:43:58 -0400 | [diff] [blame] | 1953 | y ^= x * GOLDEN_RATIO_64; |
| 1954 | y *= GOLDEN_RATIO_64; |
| 1955 | return y >> 32; |
George Spelvin | 0fed3ac | 2016-05-02 06:31:01 -0400 | [diff] [blame] | 1956 | } |
| 1957 | |
Linus Torvalds | bfcfaa7 | 2012-03-06 11:16:17 -0800 | [diff] [blame] | 1958 | #else /* 32-bit case */ |
| 1959 | |
George Spelvin | 2a18da7a | 2016-05-23 07:43:58 -0400 | [diff] [blame] | 1960 | /* |
| 1961 | * Mixing scores (in bits) for (7,20): |
| 1962 | * Input delta: 1-bit 2-bit |
| 1963 | * 1 round: 330.3 9201.6 |
| 1964 | * 2 rounds: 1246.4 25475.4 |
| 1965 | * 3 rounds: 1907.1 31295.1 |
| 1966 | * 4 rounds: 2042.3 31718.6 |
| 1967 | * Perfect: 2048 31744 |
| 1968 | * (32*64) (32*31/2 * 64) |
| 1969 | */ |
| 1970 | #define HASH_MIX(x, y, a) \ |
| 1971 | ( x ^= (a), \ |
| 1972 | y ^= x, x = rol32(x, 7),\ |
| 1973 | x += y, y = rol32(y,20),\ |
| 1974 | y *= 9 ) |
Linus Torvalds | bfcfaa7 | 2012-03-06 11:16:17 -0800 | [diff] [blame] | 1975 | |
George Spelvin | 2a18da7a | 2016-05-23 07:43:58 -0400 | [diff] [blame] | 1976 | static inline unsigned int fold_hash(unsigned long x, unsigned long y) |
George Spelvin | 0fed3ac | 2016-05-02 06:31:01 -0400 | [diff] [blame] | 1977 | { |
George Spelvin | 2a18da7a | 2016-05-23 07:43:58 -0400 | [diff] [blame] | 1978 | /* Use arch-optimized multiply if one exists */ |
| 1979 | return __hash_32(y ^ __hash_32(x)); |
George Spelvin | 0fed3ac | 2016-05-02 06:31:01 -0400 | [diff] [blame] | 1980 | } |
| 1981 | |
Linus Torvalds | bfcfaa7 | 2012-03-06 11:16:17 -0800 | [diff] [blame] | 1982 | #endif |
| 1983 | |
George Spelvin | 2a18da7a | 2016-05-23 07:43:58 -0400 | [diff] [blame] | 1984 | /* |
| 1985 | * Return the hash of a string of known length. This is carfully |
| 1986 | * designed to match hash_name(), which is the more critical function. |
| 1987 | * In particular, we must end by hashing a final word containing 0..7 |
| 1988 | * payload bytes, to match the way that hash_name() iterates until it |
| 1989 | * finds the delimiter after the name. |
| 1990 | */ |
Linus Torvalds | 8387ff2 | 2016-06-10 07:51:30 -0700 | [diff] [blame] | 1991 | unsigned int full_name_hash(const void *salt, const char *name, unsigned int len) |
Linus Torvalds | bfcfaa7 | 2012-03-06 11:16:17 -0800 | [diff] [blame] | 1992 | { |
Linus Torvalds | 8387ff2 | 2016-06-10 07:51:30 -0700 | [diff] [blame] | 1993 | unsigned long a, x = 0, y = (unsigned long)salt; |
Linus Torvalds | bfcfaa7 | 2012-03-06 11:16:17 -0800 | [diff] [blame] | 1994 | |
| 1995 | for (;;) { |
George Spelvin | fcfd2fb | 2016-05-20 08:41:37 -0400 | [diff] [blame] | 1996 | if (!len) |
| 1997 | goto done; |
Linus Torvalds | e419b4c | 2012-05-03 10:16:43 -0700 | [diff] [blame] | 1998 | a = load_unaligned_zeropad(name); |
Linus Torvalds | bfcfaa7 | 2012-03-06 11:16:17 -0800 | [diff] [blame] | 1999 | if (len < sizeof(unsigned long)) |
| 2000 | break; |
George Spelvin | 2a18da7a | 2016-05-23 07:43:58 -0400 | [diff] [blame] | 2001 | HASH_MIX(x, y, a); |
Linus Torvalds | bfcfaa7 | 2012-03-06 11:16:17 -0800 | [diff] [blame] | 2002 | name += sizeof(unsigned long); |
| 2003 | len -= sizeof(unsigned long); |
Linus Torvalds | bfcfaa7 | 2012-03-06 11:16:17 -0800 | [diff] [blame] | 2004 | } |
George Spelvin | 2a18da7a | 2016-05-23 07:43:58 -0400 | [diff] [blame] | 2005 | x ^= a & bytemask_from_count(len); |
Linus Torvalds | bfcfaa7 | 2012-03-06 11:16:17 -0800 | [diff] [blame] | 2006 | done: |
George Spelvin | 2a18da7a | 2016-05-23 07:43:58 -0400 | [diff] [blame] | 2007 | return fold_hash(x, y); |
Linus Torvalds | bfcfaa7 | 2012-03-06 11:16:17 -0800 | [diff] [blame] | 2008 | } |
| 2009 | EXPORT_SYMBOL(full_name_hash); |
| 2010 | |
George Spelvin | fcfd2fb | 2016-05-20 08:41:37 -0400 | [diff] [blame] | 2011 | /* Return the "hash_len" (hash and length) of a null-terminated string */ |
Linus Torvalds | 8387ff2 | 2016-06-10 07:51:30 -0700 | [diff] [blame] | 2012 | u64 hashlen_string(const void *salt, const char *name) |
George Spelvin | fcfd2fb | 2016-05-20 08:41:37 -0400 | [diff] [blame] | 2013 | { |
Linus Torvalds | 8387ff2 | 2016-06-10 07:51:30 -0700 | [diff] [blame] | 2014 | unsigned long a = 0, x = 0, y = (unsigned long)salt; |
| 2015 | unsigned long adata, mask, len; |
George Spelvin | fcfd2fb | 2016-05-20 08:41:37 -0400 | [diff] [blame] | 2016 | const struct word_at_a_time constants = WORD_AT_A_TIME_CONSTANTS; |
| 2017 | |
Linus Torvalds | 8387ff2 | 2016-06-10 07:51:30 -0700 | [diff] [blame] | 2018 | len = 0; |
| 2019 | goto inside; |
| 2020 | |
George Spelvin | fcfd2fb | 2016-05-20 08:41:37 -0400 | [diff] [blame] | 2021 | do { |
George Spelvin | 2a18da7a | 2016-05-23 07:43:58 -0400 | [diff] [blame] | 2022 | HASH_MIX(x, y, a); |
George Spelvin | fcfd2fb | 2016-05-20 08:41:37 -0400 | [diff] [blame] | 2023 | len += sizeof(unsigned long); |
Linus Torvalds | 8387ff2 | 2016-06-10 07:51:30 -0700 | [diff] [blame] | 2024 | inside: |
George Spelvin | fcfd2fb | 2016-05-20 08:41:37 -0400 | [diff] [blame] | 2025 | a = load_unaligned_zeropad(name+len); |
| 2026 | } while (!has_zero(a, &adata, &constants)); |
| 2027 | |
| 2028 | adata = prep_zero_mask(a, adata, &constants); |
| 2029 | mask = create_zero_mask(adata); |
George Spelvin | 2a18da7a | 2016-05-23 07:43:58 -0400 | [diff] [blame] | 2030 | x ^= a & zero_bytemask(mask); |
George Spelvin | fcfd2fb | 2016-05-20 08:41:37 -0400 | [diff] [blame] | 2031 | |
George Spelvin | 2a18da7a | 2016-05-23 07:43:58 -0400 | [diff] [blame] | 2032 | return hashlen_create(fold_hash(x, y), len + find_zero(mask)); |
George Spelvin | fcfd2fb | 2016-05-20 08:41:37 -0400 | [diff] [blame] | 2033 | } |
| 2034 | EXPORT_SYMBOL(hashlen_string); |
| 2035 | |
Linus Torvalds | bfcfaa7 | 2012-03-06 11:16:17 -0800 | [diff] [blame] | 2036 | /* |
| 2037 | * Calculate the length and hash of the path component, and |
Linus Torvalds | d6bb3e9 | 2014-09-15 10:51:07 -0700 | [diff] [blame] | 2038 | * return the "hash_len" as the result. |
Linus Torvalds | bfcfaa7 | 2012-03-06 11:16:17 -0800 | [diff] [blame] | 2039 | */ |
Linus Torvalds | 8387ff2 | 2016-06-10 07:51:30 -0700 | [diff] [blame] | 2040 | static inline u64 hash_name(const void *salt, const char *name) |
Linus Torvalds | bfcfaa7 | 2012-03-06 11:16:17 -0800 | [diff] [blame] | 2041 | { |
Linus Torvalds | 8387ff2 | 2016-06-10 07:51:30 -0700 | [diff] [blame] | 2042 | unsigned long a = 0, b, x = 0, y = (unsigned long)salt; |
| 2043 | unsigned long adata, bdata, mask, len; |
Linus Torvalds | 36126f8 | 2012-05-26 10:43:17 -0700 | [diff] [blame] | 2044 | const struct word_at_a_time constants = WORD_AT_A_TIME_CONSTANTS; |
Linus Torvalds | bfcfaa7 | 2012-03-06 11:16:17 -0800 | [diff] [blame] | 2045 | |
Linus Torvalds | 8387ff2 | 2016-06-10 07:51:30 -0700 | [diff] [blame] | 2046 | len = 0; |
| 2047 | goto inside; |
| 2048 | |
Linus Torvalds | bfcfaa7 | 2012-03-06 11:16:17 -0800 | [diff] [blame] | 2049 | do { |
George Spelvin | 2a18da7a | 2016-05-23 07:43:58 -0400 | [diff] [blame] | 2050 | HASH_MIX(x, y, a); |
Linus Torvalds | bfcfaa7 | 2012-03-06 11:16:17 -0800 | [diff] [blame] | 2051 | len += sizeof(unsigned long); |
Linus Torvalds | 8387ff2 | 2016-06-10 07:51:30 -0700 | [diff] [blame] | 2052 | inside: |
Linus Torvalds | e419b4c | 2012-05-03 10:16:43 -0700 | [diff] [blame] | 2053 | a = load_unaligned_zeropad(name+len); |
Linus Torvalds | 36126f8 | 2012-05-26 10:43:17 -0700 | [diff] [blame] | 2054 | b = a ^ REPEAT_BYTE('/'); |
| 2055 | } while (!(has_zero(a, &adata, &constants) | has_zero(b, &bdata, &constants))); |
Linus Torvalds | bfcfaa7 | 2012-03-06 11:16:17 -0800 | [diff] [blame] | 2056 | |
Linus Torvalds | 36126f8 | 2012-05-26 10:43:17 -0700 | [diff] [blame] | 2057 | adata = prep_zero_mask(a, adata, &constants); |
| 2058 | bdata = prep_zero_mask(b, bdata, &constants); |
Linus Torvalds | 36126f8 | 2012-05-26 10:43:17 -0700 | [diff] [blame] | 2059 | mask = create_zero_mask(adata | bdata); |
George Spelvin | 2a18da7a | 2016-05-23 07:43:58 -0400 | [diff] [blame] | 2060 | x ^= a & zero_bytemask(mask); |
Linus Torvalds | 36126f8 | 2012-05-26 10:43:17 -0700 | [diff] [blame] | 2061 | |
George Spelvin | 2a18da7a | 2016-05-23 07:43:58 -0400 | [diff] [blame] | 2062 | return hashlen_create(fold_hash(x, y), len + find_zero(mask)); |
Linus Torvalds | bfcfaa7 | 2012-03-06 11:16:17 -0800 | [diff] [blame] | 2063 | } |
| 2064 | |
George Spelvin | 2a18da7a | 2016-05-23 07:43:58 -0400 | [diff] [blame] | 2065 | #else /* !CONFIG_DCACHE_WORD_ACCESS: Slow, byte-at-a-time version */ |
Linus Torvalds | bfcfaa7 | 2012-03-06 11:16:17 -0800 | [diff] [blame] | 2066 | |
George Spelvin | fcfd2fb | 2016-05-20 08:41:37 -0400 | [diff] [blame] | 2067 | /* Return the hash of a string of known length */ |
Linus Torvalds | 8387ff2 | 2016-06-10 07:51:30 -0700 | [diff] [blame] | 2068 | unsigned int full_name_hash(const void *salt, const char *name, unsigned int len) |
Linus Torvalds | 0145acc | 2012-03-02 14:32:59 -0800 | [diff] [blame] | 2069 | { |
Linus Torvalds | 8387ff2 | 2016-06-10 07:51:30 -0700 | [diff] [blame] | 2070 | unsigned long hash = init_name_hash(salt); |
Linus Torvalds | 0145acc | 2012-03-02 14:32:59 -0800 | [diff] [blame] | 2071 | while (len--) |
George Spelvin | fcfd2fb | 2016-05-20 08:41:37 -0400 | [diff] [blame] | 2072 | hash = partial_name_hash((unsigned char)*name++, hash); |
Linus Torvalds | 0145acc | 2012-03-02 14:32:59 -0800 | [diff] [blame] | 2073 | return end_name_hash(hash); |
| 2074 | } |
Linus Torvalds | ae942ae | 2012-03-02 19:40:57 -0800 | [diff] [blame] | 2075 | EXPORT_SYMBOL(full_name_hash); |
Linus Torvalds | 0145acc | 2012-03-02 14:32:59 -0800 | [diff] [blame] | 2076 | |
George Spelvin | fcfd2fb | 2016-05-20 08:41:37 -0400 | [diff] [blame] | 2077 | /* Return the "hash_len" (hash and length) of a null-terminated string */ |
Linus Torvalds | 8387ff2 | 2016-06-10 07:51:30 -0700 | [diff] [blame] | 2078 | u64 hashlen_string(const void *salt, const char *name) |
George Spelvin | fcfd2fb | 2016-05-20 08:41:37 -0400 | [diff] [blame] | 2079 | { |
Linus Torvalds | 8387ff2 | 2016-06-10 07:51:30 -0700 | [diff] [blame] | 2080 | unsigned long hash = init_name_hash(salt); |
George Spelvin | fcfd2fb | 2016-05-20 08:41:37 -0400 | [diff] [blame] | 2081 | unsigned long len = 0, c; |
| 2082 | |
| 2083 | c = (unsigned char)*name; |
George Spelvin | e0ab7af | 2016-05-29 08:05:56 -0400 | [diff] [blame] | 2084 | while (c) { |
George Spelvin | fcfd2fb | 2016-05-20 08:41:37 -0400 | [diff] [blame] | 2085 | len++; |
| 2086 | hash = partial_name_hash(c, hash); |
| 2087 | c = (unsigned char)name[len]; |
George Spelvin | e0ab7af | 2016-05-29 08:05:56 -0400 | [diff] [blame] | 2088 | } |
George Spelvin | fcfd2fb | 2016-05-20 08:41:37 -0400 | [diff] [blame] | 2089 | return hashlen_create(end_name_hash(hash), len); |
| 2090 | } |
George Spelvin | f2a031b | 2016-05-29 01:26:41 -0400 | [diff] [blame] | 2091 | EXPORT_SYMBOL(hashlen_string); |
George Spelvin | fcfd2fb | 2016-05-20 08:41:37 -0400 | [diff] [blame] | 2092 | |
Linus Torvalds | 3ddcd05 | 2011-08-06 22:45:50 -0700 | [diff] [blame] | 2093 | /* |
Linus Torvalds | 200e9ef | 2012-03-02 14:49:24 -0800 | [diff] [blame] | 2094 | * We know there's a real path component here of at least |
| 2095 | * one character. |
| 2096 | */ |
Linus Torvalds | 8387ff2 | 2016-06-10 07:51:30 -0700 | [diff] [blame] | 2097 | static inline u64 hash_name(const void *salt, const char *name) |
Linus Torvalds | 200e9ef | 2012-03-02 14:49:24 -0800 | [diff] [blame] | 2098 | { |
Linus Torvalds | 8387ff2 | 2016-06-10 07:51:30 -0700 | [diff] [blame] | 2099 | unsigned long hash = init_name_hash(salt); |
Linus Torvalds | 200e9ef | 2012-03-02 14:49:24 -0800 | [diff] [blame] | 2100 | unsigned long len = 0, c; |
| 2101 | |
| 2102 | c = (unsigned char)*name; |
| 2103 | do { |
| 2104 | len++; |
| 2105 | hash = partial_name_hash(c, hash); |
| 2106 | c = (unsigned char)name[len]; |
| 2107 | } while (c && c != '/'); |
Linus Torvalds | d6bb3e9 | 2014-09-15 10:51:07 -0700 | [diff] [blame] | 2108 | return hashlen_create(end_name_hash(hash), len); |
Linus Torvalds | 200e9ef | 2012-03-02 14:49:24 -0800 | [diff] [blame] | 2109 | } |
| 2110 | |
Linus Torvalds | bfcfaa7 | 2012-03-06 11:16:17 -0800 | [diff] [blame] | 2111 | #endif |
| 2112 | |
Linus Torvalds | 200e9ef | 2012-03-02 14:49:24 -0800 | [diff] [blame] | 2113 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2114 | * Name resolution. |
Prasanna Meda | ea3834d | 2005-04-29 16:00:17 +0100 | [diff] [blame] | 2115 | * This is the basic name resolution function, turning a pathname into |
| 2116 | * the final dentry. We expect 'base' to be positive and a directory. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2117 | * |
Prasanna Meda | ea3834d | 2005-04-29 16:00:17 +0100 | [diff] [blame] | 2118 | * Returns 0 and nd will have valid dentry and mnt on success. |
| 2119 | * Returns error and drops reference to input namei data on failure. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2120 | */ |
Al Viro | 6de88d7 | 2009-08-09 01:41:57 +0400 | [diff] [blame] | 2121 | static int link_path_walk(const char *name, struct nameidata *nd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2122 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2123 | int err; |
Al Viro | 32cd746 | 2015-04-18 20:30:49 -0400 | [diff] [blame] | 2124 | |
Al Viro | b4c0353 | 2020-01-19 11:44:51 -0500 | [diff] [blame] | 2125 | nd->last_type = LAST_ROOT; |
Al Viro | 9b5858e | 2018-07-09 16:33:23 -0400 | [diff] [blame] | 2126 | if (IS_ERR(name)) |
| 2127 | return PTR_ERR(name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2128 | while (*name=='/') |
| 2129 | name++; |
| 2130 | if (!*name) |
Al Viro | 9e18f10 | 2015-04-18 20:44:34 -0400 | [diff] [blame] | 2131 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2132 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2133 | /* At this point we know we have a real path component. */ |
| 2134 | for(;;) { |
Al Viro | 92d2701 | 2020-01-14 13:24:17 -0500 | [diff] [blame] | 2135 | const char *link; |
Linus Torvalds | d6bb3e9 | 2014-09-15 10:51:07 -0700 | [diff] [blame] | 2136 | u64 hash_len; |
Al Viro | fe479a5 | 2011-02-22 15:10:03 -0500 | [diff] [blame] | 2137 | int type; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2138 | |
Al Viro | 52094c8 | 2011-02-21 21:34:47 -0500 | [diff] [blame] | 2139 | err = may_lookup(nd); |
George Spelvin | 2a18da7a | 2016-05-23 07:43:58 -0400 | [diff] [blame] | 2140 | if (err) |
Al Viro | 3595e23 | 2015-05-09 16:54:45 -0400 | [diff] [blame] | 2141 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2142 | |
Linus Torvalds | 8387ff2 | 2016-06-10 07:51:30 -0700 | [diff] [blame] | 2143 | hash_len = hash_name(nd->path.dentry, name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2144 | |
Al Viro | fe479a5 | 2011-02-22 15:10:03 -0500 | [diff] [blame] | 2145 | type = LAST_NORM; |
Linus Torvalds | d6bb3e9 | 2014-09-15 10:51:07 -0700 | [diff] [blame] | 2146 | if (name[0] == '.') switch (hashlen_len(hash_len)) { |
Al Viro | fe479a5 | 2011-02-22 15:10:03 -0500 | [diff] [blame] | 2147 | case 2: |
Linus Torvalds | 200e9ef | 2012-03-02 14:49:24 -0800 | [diff] [blame] | 2148 | if (name[1] == '.') { |
Al Viro | fe479a5 | 2011-02-22 15:10:03 -0500 | [diff] [blame] | 2149 | type = LAST_DOTDOT; |
Al Viro | 16c2cd7 | 2011-02-22 15:50:10 -0500 | [diff] [blame] | 2150 | nd->flags |= LOOKUP_JUMPED; |
| 2151 | } |
Al Viro | fe479a5 | 2011-02-22 15:10:03 -0500 | [diff] [blame] | 2152 | break; |
| 2153 | case 1: |
| 2154 | type = LAST_DOT; |
| 2155 | } |
Al Viro | 5a202bc | 2011-03-08 14:17:44 -0500 | [diff] [blame] | 2156 | if (likely(type == LAST_NORM)) { |
| 2157 | struct dentry *parent = nd->path.dentry; |
Al Viro | 16c2cd7 | 2011-02-22 15:50:10 -0500 | [diff] [blame] | 2158 | nd->flags &= ~LOOKUP_JUMPED; |
Al Viro | 5a202bc | 2011-03-08 14:17:44 -0500 | [diff] [blame] | 2159 | if (unlikely(parent->d_flags & DCACHE_OP_HASH)) { |
James Hogan | a060dc5 | 2014-09-16 13:07:35 +0100 | [diff] [blame] | 2160 | struct qstr this = { { .hash_len = hash_len }, .name = name }; |
Linus Torvalds | da53be1 | 2013-05-21 15:22:44 -0700 | [diff] [blame] | 2161 | err = parent->d_op->d_hash(parent, &this); |
Al Viro | 5a202bc | 2011-03-08 14:17:44 -0500 | [diff] [blame] | 2162 | if (err < 0) |
Al Viro | 3595e23 | 2015-05-09 16:54:45 -0400 | [diff] [blame] | 2163 | return err; |
Linus Torvalds | d6bb3e9 | 2014-09-15 10:51:07 -0700 | [diff] [blame] | 2164 | hash_len = this.hash_len; |
| 2165 | name = this.name; |
Al Viro | 5a202bc | 2011-03-08 14:17:44 -0500 | [diff] [blame] | 2166 | } |
| 2167 | } |
Al Viro | fe479a5 | 2011-02-22 15:10:03 -0500 | [diff] [blame] | 2168 | |
Linus Torvalds | d6bb3e9 | 2014-09-15 10:51:07 -0700 | [diff] [blame] | 2169 | nd->last.hash_len = hash_len; |
| 2170 | nd->last.name = name; |
Al Viro | 5f4a6a6 | 2013-01-24 18:04:22 -0500 | [diff] [blame] | 2171 | nd->last_type = type; |
| 2172 | |
Linus Torvalds | d6bb3e9 | 2014-09-15 10:51:07 -0700 | [diff] [blame] | 2173 | name += hashlen_len(hash_len); |
| 2174 | if (!*name) |
Al Viro | bdf6cbf | 2015-04-18 20:21:40 -0400 | [diff] [blame] | 2175 | goto OK; |
Linus Torvalds | 200e9ef | 2012-03-02 14:49:24 -0800 | [diff] [blame] | 2176 | /* |
| 2177 | * If it wasn't NUL, we know it was '/'. Skip that |
| 2178 | * slash, and continue until no more slashes. |
| 2179 | */ |
| 2180 | do { |
Linus Torvalds | d6bb3e9 | 2014-09-15 10:51:07 -0700 | [diff] [blame] | 2181 | name++; |
| 2182 | } while (unlikely(*name == '/')); |
Al Viro | 8620c23 | 2015-05-04 08:58:35 -0400 | [diff] [blame] | 2183 | if (unlikely(!*name)) { |
| 2184 | OK: |
Al Viro | 368ee9b | 2015-05-08 17:19:59 -0400 | [diff] [blame] | 2185 | /* pathname body, done */ |
Al Viro | 8620c23 | 2015-05-04 08:58:35 -0400 | [diff] [blame] | 2186 | if (!nd->depth) |
| 2187 | return 0; |
| 2188 | name = nd->stack[nd->depth - 1].name; |
Al Viro | 368ee9b | 2015-05-08 17:19:59 -0400 | [diff] [blame] | 2189 | /* trailing symlink, done */ |
Al Viro | 8620c23 | 2015-05-04 08:58:35 -0400 | [diff] [blame] | 2190 | if (!name) |
| 2191 | return 0; |
| 2192 | /* last component of nested symlink */ |
Al Viro | 8c4efe2 | 2020-01-19 12:44:18 -0500 | [diff] [blame] | 2193 | link = walk_component(nd, 0); |
Al Viro | 1c4ff1a | 2016-11-14 01:39:36 -0500 | [diff] [blame] | 2194 | } else { |
| 2195 | /* not the last component */ |
Al Viro | 8c4efe2 | 2020-01-19 12:44:18 -0500 | [diff] [blame] | 2196 | link = walk_component(nd, WALK_MORE); |
Al Viro | 8620c23 | 2015-05-04 08:58:35 -0400 | [diff] [blame] | 2197 | } |
Al Viro | 92d2701 | 2020-01-14 13:24:17 -0500 | [diff] [blame] | 2198 | if (unlikely(link)) { |
| 2199 | if (IS_ERR(link)) |
| 2200 | return PTR_ERR(link); |
| 2201 | /* a symlink to follow */ |
| 2202 | nd->stack[nd->depth - 1].name = name; |
| 2203 | name = link; |
| 2204 | continue; |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 2205 | } |
Al Viro | 97242f9 | 2015-08-01 19:59:28 -0400 | [diff] [blame] | 2206 | if (unlikely(!d_can_lookup(nd->path.dentry))) { |
| 2207 | if (nd->flags & LOOKUP_RCU) { |
Al Viro | 4675ac3 | 2017-01-09 22:29:15 -0500 | [diff] [blame] | 2208 | if (unlazy_walk(nd)) |
Al Viro | 97242f9 | 2015-08-01 19:59:28 -0400 | [diff] [blame] | 2209 | return -ECHILD; |
| 2210 | } |
Al Viro | 3595e23 | 2015-05-09 16:54:45 -0400 | [diff] [blame] | 2211 | return -ENOTDIR; |
Al Viro | 97242f9 | 2015-08-01 19:59:28 -0400 | [diff] [blame] | 2212 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2213 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2214 | } |
| 2215 | |
Al Viro | edc2b1d | 2018-07-09 16:27:23 -0400 | [diff] [blame] | 2216 | /* must be paired with terminate_walk() */ |
Al Viro | c8a53ee | 2015-05-12 18:43:07 -0400 | [diff] [blame] | 2217 | static const char *path_init(struct nameidata *nd, unsigned flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2218 | { |
Aleksa Sarai | 740a167 | 2019-12-07 01:13:29 +1100 | [diff] [blame] | 2219 | int error; |
Al Viro | c8a53ee | 2015-05-12 18:43:07 -0400 | [diff] [blame] | 2220 | const char *s = nd->name->name; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2221 | |
Linus Torvalds | c0eb027 | 2017-04-02 17:10:08 -0700 | [diff] [blame] | 2222 | if (!*s) |
| 2223 | flags &= ~LOOKUP_RCU; |
Al Viro | edc2b1d | 2018-07-09 16:27:23 -0400 | [diff] [blame] | 2224 | if (flags & LOOKUP_RCU) |
| 2225 | rcu_read_lock(); |
Linus Torvalds | c0eb027 | 2017-04-02 17:10:08 -0700 | [diff] [blame] | 2226 | |
Al Viro | 980f3ea | 2014-11-20 14:20:24 -0500 | [diff] [blame] | 2227 | nd->flags = flags | LOOKUP_JUMPED | LOOKUP_PARENT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2228 | nd->depth = 0; |
Aleksa Sarai | ab87f9a | 2019-12-07 01:13:35 +1100 | [diff] [blame] | 2229 | |
| 2230 | nd->m_seq = __read_seqcount_begin(&mount_lock.seqcount); |
| 2231 | nd->r_seq = __read_seqcount_begin(&rename_lock.seqcount); |
| 2232 | smp_rmb(); |
| 2233 | |
Al Viro | 5b6ca02 | 2011-03-09 23:04:47 -0500 | [diff] [blame] | 2234 | if (flags & LOOKUP_ROOT) { |
David Howells | b18825a | 2013-09-12 19:22:53 +0100 | [diff] [blame] | 2235 | struct dentry *root = nd->root.dentry; |
| 2236 | struct inode *inode = root->d_inode; |
Al Viro | 9389386 | 2017-04-15 17:29:14 -0400 | [diff] [blame] | 2237 | if (*s && unlikely(!d_can_lookup(root))) |
| 2238 | return ERR_PTR(-ENOTDIR); |
Al Viro | 5b6ca02 | 2011-03-09 23:04:47 -0500 | [diff] [blame] | 2239 | nd->path = nd->root; |
| 2240 | nd->inode = inode; |
| 2241 | if (flags & LOOKUP_RCU) { |
Aleksa Sarai | ab87f9a | 2019-12-07 01:13:35 +1100 | [diff] [blame] | 2242 | nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq); |
Al Viro | 8f47a016 | 2015-05-09 19:02:01 -0400 | [diff] [blame] | 2243 | nd->root_seq = nd->seq; |
Al Viro | 5b6ca02 | 2011-03-09 23:04:47 -0500 | [diff] [blame] | 2244 | } else { |
| 2245 | path_get(&nd->path); |
| 2246 | } |
Al Viro | 368ee9b | 2015-05-08 17:19:59 -0400 | [diff] [blame] | 2247 | return s; |
Al Viro | 5b6ca02 | 2011-03-09 23:04:47 -0500 | [diff] [blame] | 2248 | } |
| 2249 | |
Al Viro | 2a73787 | 2009-04-07 11:49:53 -0400 | [diff] [blame] | 2250 | nd->root.mnt = NULL; |
Al Viro | 248fb5b | 2015-12-05 20:51:58 -0500 | [diff] [blame] | 2251 | nd->path.mnt = NULL; |
| 2252 | nd->path.dentry = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2253 | |
Aleksa Sarai | 8db52c7 | 2019-12-07 01:13:34 +1100 | [diff] [blame] | 2254 | /* Absolute pathname -- fetch the root (LOOKUP_IN_ROOT uses nd->dfd). */ |
| 2255 | if (*s == '/' && !(flags & LOOKUP_IN_ROOT)) { |
Aleksa Sarai | 740a167 | 2019-12-07 01:13:29 +1100 | [diff] [blame] | 2256 | error = nd_jump_root(nd); |
| 2257 | if (unlikely(error)) |
| 2258 | return ERR_PTR(error); |
| 2259 | return s; |
Aleksa Sarai | 8db52c7 | 2019-12-07 01:13:34 +1100 | [diff] [blame] | 2260 | } |
| 2261 | |
| 2262 | /* Relative pathname -- get the starting-point it is relative to. */ |
| 2263 | if (nd->dfd == AT_FDCWD) { |
Al Viro | e41f7d4 | 2011-02-22 14:02:58 -0500 | [diff] [blame] | 2264 | if (flags & LOOKUP_RCU) { |
| 2265 | struct fs_struct *fs = current->fs; |
| 2266 | unsigned seq; |
| 2267 | |
Al Viro | e41f7d4 | 2011-02-22 14:02:58 -0500 | [diff] [blame] | 2268 | do { |
| 2269 | seq = read_seqcount_begin(&fs->seq); |
| 2270 | nd->path = fs->pwd; |
Al Viro | ef55d91 | 2015-12-05 20:25:06 -0500 | [diff] [blame] | 2271 | nd->inode = nd->path.dentry->d_inode; |
Al Viro | e41f7d4 | 2011-02-22 14:02:58 -0500 | [diff] [blame] | 2272 | nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq); |
| 2273 | } while (read_seqcount_retry(&fs->seq, seq)); |
| 2274 | } else { |
| 2275 | get_fs_pwd(current->fs, &nd->path); |
Al Viro | ef55d91 | 2015-12-05 20:25:06 -0500 | [diff] [blame] | 2276 | nd->inode = nd->path.dentry->d_inode; |
Al Viro | e41f7d4 | 2011-02-22 14:02:58 -0500 | [diff] [blame] | 2277 | } |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 2278 | } else { |
Jeff Layton | 582aa64 | 2012-12-11 08:56:16 -0500 | [diff] [blame] | 2279 | /* Caller must check execute permissions on the starting path component */ |
Al Viro | c8a53ee | 2015-05-12 18:43:07 -0400 | [diff] [blame] | 2280 | struct fd f = fdget_raw(nd->dfd); |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 2281 | struct dentry *dentry; |
| 2282 | |
Al Viro | 2903ff0 | 2012-08-28 12:52:22 -0400 | [diff] [blame] | 2283 | if (!f.file) |
Al Viro | 368ee9b | 2015-05-08 17:19:59 -0400 | [diff] [blame] | 2284 | return ERR_PTR(-EBADF); |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 2285 | |
Al Viro | 2903ff0 | 2012-08-28 12:52:22 -0400 | [diff] [blame] | 2286 | dentry = f.file->f_path.dentry; |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 2287 | |
Al Viro | edc2b1d | 2018-07-09 16:27:23 -0400 | [diff] [blame] | 2288 | if (*s && unlikely(!d_can_lookup(dentry))) { |
| 2289 | fdput(f); |
| 2290 | return ERR_PTR(-ENOTDIR); |
Al Viro | f52e0c1 | 2011-03-14 18:56:51 -0400 | [diff] [blame] | 2291 | } |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 2292 | |
Al Viro | 2903ff0 | 2012-08-28 12:52:22 -0400 | [diff] [blame] | 2293 | nd->path = f.file->f_path; |
Al Viro | e41f7d4 | 2011-02-22 14:02:58 -0500 | [diff] [blame] | 2294 | if (flags & LOOKUP_RCU) { |
Al Viro | 34a26b9 | 2015-05-11 08:05:05 -0400 | [diff] [blame] | 2295 | nd->inode = nd->path.dentry->d_inode; |
| 2296 | nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq); |
Al Viro | e41f7d4 | 2011-02-22 14:02:58 -0500 | [diff] [blame] | 2297 | } else { |
Al Viro | 2903ff0 | 2012-08-28 12:52:22 -0400 | [diff] [blame] | 2298 | path_get(&nd->path); |
Al Viro | 34a26b9 | 2015-05-11 08:05:05 -0400 | [diff] [blame] | 2299 | nd->inode = nd->path.dentry->d_inode; |
Al Viro | e41f7d4 | 2011-02-22 14:02:58 -0500 | [diff] [blame] | 2300 | } |
Al Viro | 34a26b9 | 2015-05-11 08:05:05 -0400 | [diff] [blame] | 2301 | fdput(f); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2302 | } |
Aleksa Sarai | 8db52c7 | 2019-12-07 01:13:34 +1100 | [diff] [blame] | 2303 | |
Aleksa Sarai | adb21d2 | 2019-12-07 01:13:33 +1100 | [diff] [blame] | 2304 | /* For scoped-lookups we need to set the root to the dirfd as well. */ |
| 2305 | if (flags & LOOKUP_IS_SCOPED) { |
| 2306 | nd->root = nd->path; |
| 2307 | if (flags & LOOKUP_RCU) { |
| 2308 | nd->root_seq = nd->seq; |
| 2309 | } else { |
| 2310 | path_get(&nd->root); |
| 2311 | nd->flags |= LOOKUP_ROOT_GRABBED; |
| 2312 | } |
| 2313 | } |
| 2314 | return s; |
Al Viro | 9b4a9b1 | 2009-04-07 11:44:16 -0400 | [diff] [blame] | 2315 | } |
| 2316 | |
Al Viro | 1ccac62 | 2020-01-14 10:13:40 -0500 | [diff] [blame] | 2317 | static inline const char *lookup_last(struct nameidata *nd) |
Al Viro | 95fa25d | 2015-04-22 13:46:57 -0400 | [diff] [blame] | 2318 | { |
Al Viro | 92d2701 | 2020-01-14 13:24:17 -0500 | [diff] [blame] | 2319 | const char *link; |
Al Viro | bd92d7f | 2011-03-14 19:54:59 -0400 | [diff] [blame] | 2320 | if (nd->last_type == LAST_NORM && nd->last.name[nd->last.len]) |
| 2321 | nd->flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY; |
| 2322 | |
| 2323 | nd->flags &= ~LOOKUP_PARENT; |
Al Viro | 8c4efe2 | 2020-01-19 12:44:18 -0500 | [diff] [blame] | 2324 | link = walk_component(nd, WALK_TRAILING); |
Al Viro | 92d2701 | 2020-01-14 13:24:17 -0500 | [diff] [blame] | 2325 | if (link) { |
| 2326 | nd->flags |= LOOKUP_PARENT; |
| 2327 | nd->stack[0].name = NULL; |
Al Viro | 1ccac62 | 2020-01-14 10:13:40 -0500 | [diff] [blame] | 2328 | } |
Al Viro | 92d2701 | 2020-01-14 13:24:17 -0500 | [diff] [blame] | 2329 | return link; |
Al Viro | bd92d7f | 2011-03-14 19:54:59 -0400 | [diff] [blame] | 2330 | } |
| 2331 | |
Al Viro | 4f757f3 | 2017-04-15 17:31:22 -0400 | [diff] [blame] | 2332 | static int handle_lookup_down(struct nameidata *nd) |
| 2333 | { |
Al Viro | c153007 | 2020-01-09 14:50:18 -0500 | [diff] [blame] | 2334 | if (!(nd->flags & LOOKUP_RCU)) |
Al Viro | db3c9ad | 2020-01-09 14:41:00 -0500 | [diff] [blame] | 2335 | dget(nd->path.dentry); |
Al Viro | b0417d2 | 2020-01-14 13:34:20 -0500 | [diff] [blame] | 2336 | return PTR_ERR(step_into(nd, WALK_NOFOLLOW, |
| 2337 | nd->path.dentry, nd->inode, nd->seq)); |
Al Viro | 4f757f3 | 2017-04-15 17:31:22 -0400 | [diff] [blame] | 2338 | } |
| 2339 | |
Al Viro | 9b4a9b1 | 2009-04-07 11:44:16 -0400 | [diff] [blame] | 2340 | /* Returns 0 and nd will be valid on success; Retuns error, otherwise. */ |
Al Viro | c8a53ee | 2015-05-12 18:43:07 -0400 | [diff] [blame] | 2341 | static int path_lookupat(struct nameidata *nd, unsigned flags, struct path *path) |
Al Viro | 9b4a9b1 | 2009-04-07 11:44:16 -0400 | [diff] [blame] | 2342 | { |
Al Viro | c8a53ee | 2015-05-12 18:43:07 -0400 | [diff] [blame] | 2343 | const char *s = path_init(nd, flags); |
Al Viro | bd92d7f | 2011-03-14 19:54:59 -0400 | [diff] [blame] | 2344 | int err; |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 2345 | |
Al Viro | 9b5858e | 2018-07-09 16:33:23 -0400 | [diff] [blame] | 2346 | if (unlikely(flags & LOOKUP_DOWN) && !IS_ERR(s)) { |
Al Viro | 4f757f3 | 2017-04-15 17:31:22 -0400 | [diff] [blame] | 2347 | err = handle_lookup_down(nd); |
Al Viro | 5f336e7 | 2018-07-09 16:38:06 -0400 | [diff] [blame] | 2348 | if (unlikely(err < 0)) |
| 2349 | s = ERR_PTR(err); |
Al Viro | 4f757f3 | 2017-04-15 17:31:22 -0400 | [diff] [blame] | 2350 | } |
| 2351 | |
Al Viro | 1ccac62 | 2020-01-14 10:13:40 -0500 | [diff] [blame] | 2352 | while (!(err = link_path_walk(s, nd)) && |
| 2353 | (s = lookup_last(nd)) != NULL) |
| 2354 | ; |
Al Viro | 9f1fafe | 2011-03-25 11:00:12 -0400 | [diff] [blame] | 2355 | if (!err) |
| 2356 | err = complete_walk(nd); |
Al Viro | bd92d7f | 2011-03-14 19:54:59 -0400 | [diff] [blame] | 2357 | |
Al Viro | deb106c | 2015-05-08 18:05:21 -0400 | [diff] [blame] | 2358 | if (!err && nd->flags & LOOKUP_DIRECTORY) |
| 2359 | if (!d_can_lookup(nd->path.dentry)) |
Al Viro | bd23a53 | 2011-03-23 09:56:30 -0400 | [diff] [blame] | 2360 | err = -ENOTDIR; |
Al Viro | 161aff1 | 2020-01-11 22:52:26 -0500 | [diff] [blame] | 2361 | if (!err && unlikely(nd->flags & LOOKUP_MOUNTPOINT)) { |
| 2362 | err = handle_lookup_down(nd); |
| 2363 | nd->flags &= ~LOOKUP_JUMPED; // no d_weak_revalidate(), please... |
| 2364 | } |
Al Viro | 625b6d1 | 2015-05-12 16:36:12 -0400 | [diff] [blame] | 2365 | if (!err) { |
| 2366 | *path = nd->path; |
| 2367 | nd->path.mnt = NULL; |
| 2368 | nd->path.dentry = NULL; |
| 2369 | } |
| 2370 | terminate_walk(nd); |
Al Viro | bd92d7f | 2011-03-14 19:54:59 -0400 | [diff] [blame] | 2371 | return err; |
Al Viro | ee0827c | 2011-02-21 23:38:09 -0500 | [diff] [blame] | 2372 | } |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 2373 | |
David Howells | 31d921c | 2018-11-01 23:07:24 +0000 | [diff] [blame] | 2374 | int filename_lookup(int dfd, struct filename *name, unsigned flags, |
| 2375 | struct path *path, struct path *root) |
Jeff Layton | 873f1ee | 2012-10-10 15:25:29 -0400 | [diff] [blame] | 2376 | { |
Al Viro | 894bc8c | 2015-05-02 07:16:16 -0400 | [diff] [blame] | 2377 | int retval; |
Al Viro | 9883d18 | 2015-05-13 07:28:08 -0400 | [diff] [blame] | 2378 | struct nameidata nd; |
Al Viro | abc9f5b | 2015-05-12 16:53:42 -0400 | [diff] [blame] | 2379 | if (IS_ERR(name)) |
| 2380 | return PTR_ERR(name); |
Al Viro | 9ad1aaa | 2015-05-12 16:44:39 -0400 | [diff] [blame] | 2381 | if (unlikely(root)) { |
| 2382 | nd.root = *root; |
| 2383 | flags |= LOOKUP_ROOT; |
| 2384 | } |
Al Viro | 9883d18 | 2015-05-13 07:28:08 -0400 | [diff] [blame] | 2385 | set_nameidata(&nd, dfd, name); |
Al Viro | c8a53ee | 2015-05-12 18:43:07 -0400 | [diff] [blame] | 2386 | retval = path_lookupat(&nd, flags | LOOKUP_RCU, path); |
Jeff Layton | 873f1ee | 2012-10-10 15:25:29 -0400 | [diff] [blame] | 2387 | if (unlikely(retval == -ECHILD)) |
Al Viro | c8a53ee | 2015-05-12 18:43:07 -0400 | [diff] [blame] | 2388 | retval = path_lookupat(&nd, flags, path); |
Jeff Layton | 873f1ee | 2012-10-10 15:25:29 -0400 | [diff] [blame] | 2389 | if (unlikely(retval == -ESTALE)) |
Al Viro | c8a53ee | 2015-05-12 18:43:07 -0400 | [diff] [blame] | 2390 | retval = path_lookupat(&nd, flags | LOOKUP_REVAL, path); |
Jeff Layton | 873f1ee | 2012-10-10 15:25:29 -0400 | [diff] [blame] | 2391 | |
| 2392 | if (likely(!retval)) |
Al Viro | 161aff1 | 2020-01-11 22:52:26 -0500 | [diff] [blame] | 2393 | audit_inode(name, path->dentry, |
| 2394 | flags & LOOKUP_MOUNTPOINT ? AUDIT_INODE_NOEVAL : 0); |
Al Viro | 9883d18 | 2015-05-13 07:28:08 -0400 | [diff] [blame] | 2395 | restore_nameidata(); |
Al Viro | e4bd1c1 | 2015-05-12 16:40:39 -0400 | [diff] [blame] | 2396 | putname(name); |
Jeff Layton | 873f1ee | 2012-10-10 15:25:29 -0400 | [diff] [blame] | 2397 | return retval; |
| 2398 | } |
| 2399 | |
Al Viro | 8bcb77f | 2015-05-08 16:59:20 -0400 | [diff] [blame] | 2400 | /* Returns 0 and nd will be valid on success; Retuns error, otherwise. */ |
Al Viro | c8a53ee | 2015-05-12 18:43:07 -0400 | [diff] [blame] | 2401 | static int path_parentat(struct nameidata *nd, unsigned flags, |
Al Viro | 391172c | 2015-05-09 11:19:16 -0400 | [diff] [blame] | 2402 | struct path *parent) |
Al Viro | 8bcb77f | 2015-05-08 16:59:20 -0400 | [diff] [blame] | 2403 | { |
Al Viro | c8a53ee | 2015-05-12 18:43:07 -0400 | [diff] [blame] | 2404 | const char *s = path_init(nd, flags); |
Al Viro | 9b5858e | 2018-07-09 16:33:23 -0400 | [diff] [blame] | 2405 | int err = link_path_walk(s, nd); |
Al Viro | 8bcb77f | 2015-05-08 16:59:20 -0400 | [diff] [blame] | 2406 | if (!err) |
| 2407 | err = complete_walk(nd); |
Al Viro | 391172c | 2015-05-09 11:19:16 -0400 | [diff] [blame] | 2408 | if (!err) { |
| 2409 | *parent = nd->path; |
| 2410 | nd->path.mnt = NULL; |
| 2411 | nd->path.dentry = NULL; |
| 2412 | } |
| 2413 | terminate_walk(nd); |
Al Viro | 8bcb77f | 2015-05-08 16:59:20 -0400 | [diff] [blame] | 2414 | return err; |
| 2415 | } |
| 2416 | |
Al Viro | 5c31b6c | 2015-05-12 17:32:54 -0400 | [diff] [blame] | 2417 | static struct filename *filename_parentat(int dfd, struct filename *name, |
Al Viro | 391172c | 2015-05-09 11:19:16 -0400 | [diff] [blame] | 2418 | unsigned int flags, struct path *parent, |
| 2419 | struct qstr *last, int *type) |
Al Viro | 8bcb77f | 2015-05-08 16:59:20 -0400 | [diff] [blame] | 2420 | { |
| 2421 | int retval; |
Al Viro | 9883d18 | 2015-05-13 07:28:08 -0400 | [diff] [blame] | 2422 | struct nameidata nd; |
Al Viro | 8bcb77f | 2015-05-08 16:59:20 -0400 | [diff] [blame] | 2423 | |
Al Viro | 5c31b6c | 2015-05-12 17:32:54 -0400 | [diff] [blame] | 2424 | if (IS_ERR(name)) |
| 2425 | return name; |
Al Viro | 9883d18 | 2015-05-13 07:28:08 -0400 | [diff] [blame] | 2426 | set_nameidata(&nd, dfd, name); |
Al Viro | c8a53ee | 2015-05-12 18:43:07 -0400 | [diff] [blame] | 2427 | retval = path_parentat(&nd, flags | LOOKUP_RCU, parent); |
Al Viro | 8bcb77f | 2015-05-08 16:59:20 -0400 | [diff] [blame] | 2428 | if (unlikely(retval == -ECHILD)) |
Al Viro | c8a53ee | 2015-05-12 18:43:07 -0400 | [diff] [blame] | 2429 | retval = path_parentat(&nd, flags, parent); |
Al Viro | 8bcb77f | 2015-05-08 16:59:20 -0400 | [diff] [blame] | 2430 | if (unlikely(retval == -ESTALE)) |
Al Viro | c8a53ee | 2015-05-12 18:43:07 -0400 | [diff] [blame] | 2431 | retval = path_parentat(&nd, flags | LOOKUP_REVAL, parent); |
Al Viro | 391172c | 2015-05-09 11:19:16 -0400 | [diff] [blame] | 2432 | if (likely(!retval)) { |
| 2433 | *last = nd.last; |
| 2434 | *type = nd.last_type; |
Al Viro | c9b07ea | 2019-07-14 13:22:27 -0400 | [diff] [blame] | 2435 | audit_inode(name, parent->dentry, AUDIT_INODE_PARENT); |
Al Viro | 5c31b6c | 2015-05-12 17:32:54 -0400 | [diff] [blame] | 2436 | } else { |
| 2437 | putname(name); |
| 2438 | name = ERR_PTR(retval); |
Al Viro | 391172c | 2015-05-09 11:19:16 -0400 | [diff] [blame] | 2439 | } |
Al Viro | 9883d18 | 2015-05-13 07:28:08 -0400 | [diff] [blame] | 2440 | restore_nameidata(); |
Al Viro | 5c31b6c | 2015-05-12 17:32:54 -0400 | [diff] [blame] | 2441 | return name; |
Al Viro | 8bcb77f | 2015-05-08 16:59:20 -0400 | [diff] [blame] | 2442 | } |
| 2443 | |
Al Viro | 79714f7 | 2012-06-15 03:01:42 +0400 | [diff] [blame] | 2444 | /* does lookup, returns the object with parent locked */ |
| 2445 | struct dentry *kern_path_locked(const char *name, struct path *path) |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 2446 | { |
Al Viro | 5c31b6c | 2015-05-12 17:32:54 -0400 | [diff] [blame] | 2447 | struct filename *filename; |
| 2448 | struct dentry *d; |
Al Viro | 391172c | 2015-05-09 11:19:16 -0400 | [diff] [blame] | 2449 | struct qstr last; |
| 2450 | int type; |
Paul Moore | 5168910 | 2015-01-22 00:00:03 -0500 | [diff] [blame] | 2451 | |
Al Viro | 5c31b6c | 2015-05-12 17:32:54 -0400 | [diff] [blame] | 2452 | filename = filename_parentat(AT_FDCWD, getname_kernel(name), 0, path, |
| 2453 | &last, &type); |
Paul Moore | 5168910 | 2015-01-22 00:00:03 -0500 | [diff] [blame] | 2454 | if (IS_ERR(filename)) |
| 2455 | return ERR_CAST(filename); |
Al Viro | 5c31b6c | 2015-05-12 17:32:54 -0400 | [diff] [blame] | 2456 | if (unlikely(type != LAST_NORM)) { |
Al Viro | 391172c | 2015-05-09 11:19:16 -0400 | [diff] [blame] | 2457 | path_put(path); |
Al Viro | 5c31b6c | 2015-05-12 17:32:54 -0400 | [diff] [blame] | 2458 | putname(filename); |
| 2459 | return ERR_PTR(-EINVAL); |
Al Viro | 79714f7 | 2012-06-15 03:01:42 +0400 | [diff] [blame] | 2460 | } |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 2461 | inode_lock_nested(path->dentry->d_inode, I_MUTEX_PARENT); |
Al Viro | 391172c | 2015-05-09 11:19:16 -0400 | [diff] [blame] | 2462 | d = __lookup_hash(&last, path->dentry, 0); |
Al Viro | 79714f7 | 2012-06-15 03:01:42 +0400 | [diff] [blame] | 2463 | if (IS_ERR(d)) { |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 2464 | inode_unlock(path->dentry->d_inode); |
Al Viro | 391172c | 2015-05-09 11:19:16 -0400 | [diff] [blame] | 2465 | path_put(path); |
Al Viro | 79714f7 | 2012-06-15 03:01:42 +0400 | [diff] [blame] | 2466 | } |
Paul Moore | 5168910 | 2015-01-22 00:00:03 -0500 | [diff] [blame] | 2467 | putname(filename); |
Al Viro | 79714f7 | 2012-06-15 03:01:42 +0400 | [diff] [blame] | 2468 | return d; |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 2469 | } |
| 2470 | |
Al Viro | d181146 | 2008-08-02 00:49:18 -0400 | [diff] [blame] | 2471 | int kern_path(const char *name, unsigned int flags, struct path *path) |
| 2472 | { |
Al Viro | abc9f5b | 2015-05-12 16:53:42 -0400 | [diff] [blame] | 2473 | return filename_lookup(AT_FDCWD, getname_kernel(name), |
| 2474 | flags, path, NULL); |
Al Viro | d181146 | 2008-08-02 00:49:18 -0400 | [diff] [blame] | 2475 | } |
Al Viro | 4d35950 | 2014-03-14 12:20:17 -0400 | [diff] [blame] | 2476 | EXPORT_SYMBOL(kern_path); |
Al Viro | d181146 | 2008-08-02 00:49:18 -0400 | [diff] [blame] | 2477 | |
Josef 'Jeff' Sipek | 16f1820 | 2007-07-19 01:48:18 -0700 | [diff] [blame] | 2478 | /** |
| 2479 | * vfs_path_lookup - lookup a file path relative to a dentry-vfsmount pair |
| 2480 | * @dentry: pointer to dentry of the base directory |
| 2481 | * @mnt: pointer to vfs mount of the base directory |
| 2482 | * @name: pointer to file name |
| 2483 | * @flags: lookup flags |
Al Viro | e0a0124 | 2011-06-27 17:00:37 -0400 | [diff] [blame] | 2484 | * @path: pointer to struct path to fill |
Josef 'Jeff' Sipek | 16f1820 | 2007-07-19 01:48:18 -0700 | [diff] [blame] | 2485 | */ |
| 2486 | int vfs_path_lookup(struct dentry *dentry, struct vfsmount *mnt, |
| 2487 | const char *name, unsigned int flags, |
Al Viro | e0a0124 | 2011-06-27 17:00:37 -0400 | [diff] [blame] | 2488 | struct path *path) |
Josef 'Jeff' Sipek | 16f1820 | 2007-07-19 01:48:18 -0700 | [diff] [blame] | 2489 | { |
Al Viro | 9ad1aaa | 2015-05-12 16:44:39 -0400 | [diff] [blame] | 2490 | struct path root = {.mnt = mnt, .dentry = dentry}; |
Al Viro | 9ad1aaa | 2015-05-12 16:44:39 -0400 | [diff] [blame] | 2491 | /* the first argument of filename_lookup() is ignored with root */ |
Al Viro | abc9f5b | 2015-05-12 16:53:42 -0400 | [diff] [blame] | 2492 | return filename_lookup(AT_FDCWD, getname_kernel(name), |
| 2493 | flags , path, &root); |
Josef 'Jeff' Sipek | 16f1820 | 2007-07-19 01:48:18 -0700 | [diff] [blame] | 2494 | } |
Al Viro | 4d35950 | 2014-03-14 12:20:17 -0400 | [diff] [blame] | 2495 | EXPORT_SYMBOL(vfs_path_lookup); |
Josef 'Jeff' Sipek | 16f1820 | 2007-07-19 01:48:18 -0700 | [diff] [blame] | 2496 | |
Al Viro | 3c95f0d | 2018-04-06 16:32:38 -0400 | [diff] [blame] | 2497 | static int lookup_one_len_common(const char *name, struct dentry *base, |
| 2498 | int len, struct qstr *this) |
| 2499 | { |
| 2500 | this->name = name; |
| 2501 | this->len = len; |
| 2502 | this->hash = full_name_hash(base, name, len); |
| 2503 | if (!len) |
| 2504 | return -EACCES; |
| 2505 | |
| 2506 | if (unlikely(name[0] == '.')) { |
| 2507 | if (len < 2 || (len == 2 && name[1] == '.')) |
| 2508 | return -EACCES; |
| 2509 | } |
| 2510 | |
| 2511 | while (len--) { |
| 2512 | unsigned int c = *(const unsigned char *)name++; |
| 2513 | if (c == '/' || c == '\0') |
| 2514 | return -EACCES; |
| 2515 | } |
| 2516 | /* |
| 2517 | * See if the low-level filesystem might want |
| 2518 | * to use its own hash.. |
| 2519 | */ |
| 2520 | if (base->d_flags & DCACHE_OP_HASH) { |
| 2521 | int err = base->d_op->d_hash(base, this); |
| 2522 | if (err < 0) |
| 2523 | return err; |
| 2524 | } |
| 2525 | |
| 2526 | return inode_permission(base->d_inode, MAY_EXEC); |
| 2527 | } |
| 2528 | |
Christoph Hellwig | eead191 | 2007-10-16 23:25:38 -0700 | [diff] [blame] | 2529 | /** |
David Howells | 0da0b7f | 2018-06-15 15:19:22 +0100 | [diff] [blame] | 2530 | * try_lookup_one_len - filesystem helper to lookup single pathname component |
| 2531 | * @name: pathname component to lookup |
| 2532 | * @base: base directory to lookup from |
| 2533 | * @len: maximum length @len should be interpreted to |
| 2534 | * |
| 2535 | * Look up a dentry by name in the dcache, returning NULL if it does not |
| 2536 | * currently exist. The function does not try to create a dentry. |
| 2537 | * |
| 2538 | * Note that this routine is purely a helper for filesystem usage and should |
| 2539 | * not be called by generic code. |
| 2540 | * |
| 2541 | * The caller must hold base->i_mutex. |
| 2542 | */ |
| 2543 | struct dentry *try_lookup_one_len(const char *name, struct dentry *base, int len) |
| 2544 | { |
| 2545 | struct qstr this; |
| 2546 | int err; |
| 2547 | |
| 2548 | WARN_ON_ONCE(!inode_is_locked(base->d_inode)); |
| 2549 | |
| 2550 | err = lookup_one_len_common(name, base, len, &this); |
| 2551 | if (err) |
| 2552 | return ERR_PTR(err); |
| 2553 | |
| 2554 | return lookup_dcache(&this, base, 0); |
| 2555 | } |
| 2556 | EXPORT_SYMBOL(try_lookup_one_len); |
| 2557 | |
| 2558 | /** |
Randy Dunlap | a6b9191 | 2008-03-19 17:01:00 -0700 | [diff] [blame] | 2559 | * lookup_one_len - filesystem helper to lookup single pathname component |
Christoph Hellwig | eead191 | 2007-10-16 23:25:38 -0700 | [diff] [blame] | 2560 | * @name: pathname component to lookup |
| 2561 | * @base: base directory to lookup from |
| 2562 | * @len: maximum length @len should be interpreted to |
| 2563 | * |
Randy Dunlap | a6b9191 | 2008-03-19 17:01:00 -0700 | [diff] [blame] | 2564 | * 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] | 2565 | * not be called by generic code. |
NeilBrown | bbddca8 | 2016-01-07 16:08:20 -0500 | [diff] [blame] | 2566 | * |
| 2567 | * The caller must hold base->i_mutex. |
Christoph Hellwig | eead191 | 2007-10-16 23:25:38 -0700 | [diff] [blame] | 2568 | */ |
James Morris | 057f6c0 | 2007-04-26 00:12:05 -0700 | [diff] [blame] | 2569 | struct dentry *lookup_one_len(const char *name, struct dentry *base, int len) |
| 2570 | { |
Al Viro | 8613a20 | 2018-04-06 16:45:33 -0400 | [diff] [blame] | 2571 | struct dentry *dentry; |
James Morris | 057f6c0 | 2007-04-26 00:12:05 -0700 | [diff] [blame] | 2572 | struct qstr this; |
Miklos Szeredi | cda309d | 2012-03-26 12:54:21 +0200 | [diff] [blame] | 2573 | int err; |
James Morris | 057f6c0 | 2007-04-26 00:12:05 -0700 | [diff] [blame] | 2574 | |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 2575 | WARN_ON_ONCE(!inode_is_locked(base->d_inode)); |
David Woodhouse | 2f9092e | 2009-04-20 23:18:37 +0100 | [diff] [blame] | 2576 | |
Al Viro | 3c95f0d | 2018-04-06 16:32:38 -0400 | [diff] [blame] | 2577 | err = lookup_one_len_common(name, base, len, &this); |
Miklos Szeredi | cda309d | 2012-03-26 12:54:21 +0200 | [diff] [blame] | 2578 | if (err) |
| 2579 | return ERR_PTR(err); |
| 2580 | |
Al Viro | 8613a20 | 2018-04-06 16:45:33 -0400 | [diff] [blame] | 2581 | dentry = lookup_dcache(&this, base, 0); |
| 2582 | return dentry ? dentry : __lookup_slow(&this, base, 0); |
James Morris | 057f6c0 | 2007-04-26 00:12:05 -0700 | [diff] [blame] | 2583 | } |
Al Viro | 4d35950 | 2014-03-14 12:20:17 -0400 | [diff] [blame] | 2584 | EXPORT_SYMBOL(lookup_one_len); |
James Morris | 057f6c0 | 2007-04-26 00:12:05 -0700 | [diff] [blame] | 2585 | |
NeilBrown | bbddca8 | 2016-01-07 16:08:20 -0500 | [diff] [blame] | 2586 | /** |
| 2587 | * lookup_one_len_unlocked - filesystem helper to lookup single pathname component |
| 2588 | * @name: pathname component to lookup |
| 2589 | * @base: base directory to lookup from |
| 2590 | * @len: maximum length @len should be interpreted to |
| 2591 | * |
| 2592 | * Note that this routine is purely a helper for filesystem usage and should |
| 2593 | * not be called by generic code. |
| 2594 | * |
| 2595 | * Unlike lookup_one_len, it should be called without the parent |
| 2596 | * i_mutex held, and will take the i_mutex itself if necessary. |
| 2597 | */ |
| 2598 | struct dentry *lookup_one_len_unlocked(const char *name, |
| 2599 | struct dentry *base, int len) |
| 2600 | { |
| 2601 | struct qstr this; |
NeilBrown | bbddca8 | 2016-01-07 16:08:20 -0500 | [diff] [blame] | 2602 | int err; |
Linus Torvalds | 20d00ee | 2016-07-29 12:17:52 -0700 | [diff] [blame] | 2603 | struct dentry *ret; |
NeilBrown | bbddca8 | 2016-01-07 16:08:20 -0500 | [diff] [blame] | 2604 | |
Al Viro | 3c95f0d | 2018-04-06 16:32:38 -0400 | [diff] [blame] | 2605 | err = lookup_one_len_common(name, base, len, &this); |
NeilBrown | bbddca8 | 2016-01-07 16:08:20 -0500 | [diff] [blame] | 2606 | if (err) |
| 2607 | return ERR_PTR(err); |
| 2608 | |
Linus Torvalds | 20d00ee | 2016-07-29 12:17:52 -0700 | [diff] [blame] | 2609 | ret = lookup_dcache(&this, base, 0); |
| 2610 | if (!ret) |
| 2611 | ret = lookup_slow(&this, base, 0); |
| 2612 | return ret; |
NeilBrown | bbddca8 | 2016-01-07 16:08:20 -0500 | [diff] [blame] | 2613 | } |
| 2614 | EXPORT_SYMBOL(lookup_one_len_unlocked); |
| 2615 | |
Al Viro | 6c2d4798 | 2019-10-31 01:21:58 -0400 | [diff] [blame] | 2616 | /* |
| 2617 | * Like lookup_one_len_unlocked(), except that it yields ERR_PTR(-ENOENT) |
| 2618 | * on negatives. Returns known positive or ERR_PTR(); that's what |
| 2619 | * most of the users want. Note that pinned negative with unlocked parent |
| 2620 | * _can_ become positive at any time, so callers of lookup_one_len_unlocked() |
| 2621 | * need to be very careful; pinned positives have ->d_inode stable, so |
| 2622 | * this one avoids such problems. |
| 2623 | */ |
| 2624 | struct dentry *lookup_positive_unlocked(const char *name, |
| 2625 | struct dentry *base, int len) |
| 2626 | { |
| 2627 | struct dentry *ret = lookup_one_len_unlocked(name, base, len); |
Al Viro | 2fa6b1e | 2019-11-12 16:13:06 -0500 | [diff] [blame] | 2628 | if (!IS_ERR(ret) && d_flags_negative(smp_load_acquire(&ret->d_flags))) { |
Al Viro | 6c2d4798 | 2019-10-31 01:21:58 -0400 | [diff] [blame] | 2629 | dput(ret); |
| 2630 | ret = ERR_PTR(-ENOENT); |
| 2631 | } |
| 2632 | return ret; |
| 2633 | } |
| 2634 | EXPORT_SYMBOL(lookup_positive_unlocked); |
| 2635 | |
Eric W. Biederman | eedf265 | 2016-06-02 10:29:47 -0500 | [diff] [blame] | 2636 | #ifdef CONFIG_UNIX98_PTYS |
| 2637 | int path_pts(struct path *path) |
| 2638 | { |
| 2639 | /* Find something mounted on "pts" in the same directory as |
| 2640 | * the input path. |
| 2641 | */ |
| 2642 | struct dentry *child, *parent; |
| 2643 | struct qstr this; |
| 2644 | int ret; |
| 2645 | |
| 2646 | ret = path_parent_directory(path); |
| 2647 | if (ret) |
| 2648 | return ret; |
| 2649 | |
| 2650 | parent = path->dentry; |
| 2651 | this.name = "pts"; |
| 2652 | this.len = 3; |
| 2653 | child = d_hash_and_lookup(parent, &this); |
| 2654 | if (!child) |
| 2655 | return -ENOENT; |
| 2656 | |
| 2657 | path->dentry = child; |
| 2658 | dput(parent); |
| 2659 | follow_mount(path); |
| 2660 | return 0; |
| 2661 | } |
| 2662 | #endif |
| 2663 | |
Andy Whitcroft | 1fa1e7f | 2011-11-02 09:44:39 +0100 | [diff] [blame] | 2664 | int user_path_at_empty(int dfd, const char __user *name, unsigned flags, |
| 2665 | struct path *path, int *empty) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2666 | { |
Al Viro | abc9f5b | 2015-05-12 16:53:42 -0400 | [diff] [blame] | 2667 | return filename_lookup(dfd, getname_flags(name, flags, empty), |
| 2668 | flags, path, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2669 | } |
Al Viro | b853a16 | 2015-05-13 09:12:02 -0400 | [diff] [blame] | 2670 | EXPORT_SYMBOL(user_path_at_empty); |
Andy Whitcroft | 1fa1e7f | 2011-11-02 09:44:39 +0100 | [diff] [blame] | 2671 | |
Miklos Szeredi | cbdf35b | 2014-10-24 00:14:36 +0200 | [diff] [blame] | 2672 | int __check_sticky(struct inode *dir, struct inode *inode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2673 | { |
Eric W. Biederman | 8e96e3b | 2012-03-03 21:17:15 -0800 | [diff] [blame] | 2674 | kuid_t fsuid = current_fsuid(); |
David Howells | da9592e | 2008-11-14 10:39:05 +1100 | [diff] [blame] | 2675 | |
Eric W. Biederman | 8e96e3b | 2012-03-03 21:17:15 -0800 | [diff] [blame] | 2676 | if (uid_eq(inode->i_uid, fsuid)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2677 | return 0; |
Eric W. Biederman | 8e96e3b | 2012-03-03 21:17:15 -0800 | [diff] [blame] | 2678 | if (uid_eq(dir->i_uid, fsuid)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2679 | return 0; |
Andy Lutomirski | 23adbe1 | 2014-06-10 12:45:42 -0700 | [diff] [blame] | 2680 | return !capable_wrt_inode_uidgid(inode, CAP_FOWNER); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2681 | } |
Miklos Szeredi | cbdf35b | 2014-10-24 00:14:36 +0200 | [diff] [blame] | 2682 | EXPORT_SYMBOL(__check_sticky); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2683 | |
| 2684 | /* |
| 2685 | * Check whether we can remove a link victim from directory dir, check |
| 2686 | * whether the type of victim is right. |
| 2687 | * 1. We can't do it if dir is read-only (done in permission()) |
| 2688 | * 2. We should have write and exec permissions on dir |
| 2689 | * 3. We can't remove anything from append-only dir |
| 2690 | * 4. We can't do anything with immutable dir (done in permission()) |
| 2691 | * 5. If the sticky bit on dir is set we should either |
| 2692 | * a. be owner of dir, or |
| 2693 | * b. be owner of victim, or |
| 2694 | * c. have CAP_FOWNER capability |
| 2695 | * 6. If the victim is append-only or immutable we can't do antyhing with |
| 2696 | * links pointing to it. |
Eric W. Biederman | 0bd23d09 | 2016-06-29 14:54:46 -0500 | [diff] [blame] | 2697 | * 7. If the victim has an unknown uid or gid we can't change the inode. |
| 2698 | * 8. If we were asked to remove a directory and victim isn't one - ENOTDIR. |
| 2699 | * 9. If we were asked to remove a non-directory and victim isn't one - EISDIR. |
| 2700 | * 10. We can't remove a root or mountpoint. |
| 2701 | * 11. We don't allow removal of NFS sillyrenamed files; it's handled by |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2702 | * nfs_async_unlink(). |
| 2703 | */ |
David Howells | b18825a | 2013-09-12 19:22:53 +0100 | [diff] [blame] | 2704 | static int may_delete(struct inode *dir, struct dentry *victim, bool isdir) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2705 | { |
David Howells | 63afdfc | 2015-05-06 15:59:00 +0100 | [diff] [blame] | 2706 | struct inode *inode = d_backing_inode(victim); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2707 | int error; |
| 2708 | |
David Howells | b18825a | 2013-09-12 19:22:53 +0100 | [diff] [blame] | 2709 | if (d_is_negative(victim)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2710 | return -ENOENT; |
David Howells | b18825a | 2013-09-12 19:22:53 +0100 | [diff] [blame] | 2711 | BUG_ON(!inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2712 | |
| 2713 | BUG_ON(victim->d_parent->d_inode != dir); |
Eric W. Biederman | 593d1ce | 2017-09-14 12:07:32 -0500 | [diff] [blame] | 2714 | |
| 2715 | /* Inode writeback is not safe when the uid or gid are invalid. */ |
| 2716 | if (!uid_valid(inode->i_uid) || !gid_valid(inode->i_gid)) |
| 2717 | return -EOVERFLOW; |
| 2718 | |
Jeff Layton | 4fa6b5e | 2012-10-10 15:25:25 -0400 | [diff] [blame] | 2719 | audit_inode_child(dir, victim, AUDIT_TYPE_CHILD_DELETE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2720 | |
Al Viro | f419a2e | 2008-07-22 00:07:17 -0400 | [diff] [blame] | 2721 | error = inode_permission(dir, MAY_WRITE | MAY_EXEC); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2722 | if (error) |
| 2723 | return error; |
| 2724 | if (IS_APPEND(dir)) |
| 2725 | return -EPERM; |
David Howells | b18825a | 2013-09-12 19:22:53 +0100 | [diff] [blame] | 2726 | |
| 2727 | if (check_sticky(dir, inode) || IS_APPEND(inode) || |
Eric W. Biederman | 0bd23d09 | 2016-06-29 14:54:46 -0500 | [diff] [blame] | 2728 | IS_IMMUTABLE(inode) || IS_SWAPFILE(inode) || HAS_UNMAPPED_ID(inode)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2729 | return -EPERM; |
| 2730 | if (isdir) { |
Miklos Szeredi | 44b1d53 | 2014-04-01 17:08:41 +0200 | [diff] [blame] | 2731 | if (!d_is_dir(victim)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2732 | return -ENOTDIR; |
| 2733 | if (IS_ROOT(victim)) |
| 2734 | return -EBUSY; |
Miklos Szeredi | 44b1d53 | 2014-04-01 17:08:41 +0200 | [diff] [blame] | 2735 | } else if (d_is_dir(victim)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2736 | return -EISDIR; |
| 2737 | if (IS_DEADDIR(dir)) |
| 2738 | return -ENOENT; |
| 2739 | if (victim->d_flags & DCACHE_NFSFS_RENAMED) |
| 2740 | return -EBUSY; |
| 2741 | return 0; |
| 2742 | } |
| 2743 | |
| 2744 | /* Check whether we can create an object with dentry child in directory |
| 2745 | * dir. |
| 2746 | * 1. We can't do it if child already exists (open has special treatment for |
| 2747 | * this case, but since we are inlined it's OK) |
| 2748 | * 2. We can't do it if dir is read-only (done in permission()) |
Eric W. Biederman | 036d523 | 2016-07-01 12:52:06 -0500 | [diff] [blame] | 2749 | * 3. We can't do it if the fs can't represent the fsuid or fsgid. |
| 2750 | * 4. We should have write and exec permissions on dir |
| 2751 | * 5. We can't do it if dir is immutable (done in permission()) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2752 | */ |
Miklos Szeredi | a95164d | 2008-07-30 15:08:48 +0200 | [diff] [blame] | 2753 | static inline int may_create(struct inode *dir, struct dentry *child) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2754 | { |
Eric W. Biederman | 036d523 | 2016-07-01 12:52:06 -0500 | [diff] [blame] | 2755 | struct user_namespace *s_user_ns; |
Jeff Layton | 14e972b | 2013-05-08 10:25:58 -0400 | [diff] [blame] | 2756 | audit_inode_child(dir, child, AUDIT_TYPE_CHILD_CREATE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2757 | if (child->d_inode) |
| 2758 | return -EEXIST; |
| 2759 | if (IS_DEADDIR(dir)) |
| 2760 | return -ENOENT; |
Eric W. Biederman | 036d523 | 2016-07-01 12:52:06 -0500 | [diff] [blame] | 2761 | s_user_ns = dir->i_sb->s_user_ns; |
| 2762 | if (!kuid_has_mapping(s_user_ns, current_fsuid()) || |
| 2763 | !kgid_has_mapping(s_user_ns, current_fsgid())) |
| 2764 | return -EOVERFLOW; |
Al Viro | f419a2e | 2008-07-22 00:07:17 -0400 | [diff] [blame] | 2765 | return inode_permission(dir, MAY_WRITE | MAY_EXEC); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2766 | } |
| 2767 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2768 | /* |
| 2769 | * p1 and p2 should be directories on the same fs. |
| 2770 | */ |
| 2771 | struct dentry *lock_rename(struct dentry *p1, struct dentry *p2) |
| 2772 | { |
| 2773 | struct dentry *p; |
| 2774 | |
| 2775 | if (p1 == p2) { |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 2776 | inode_lock_nested(p1->d_inode, I_MUTEX_PARENT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2777 | return NULL; |
| 2778 | } |
| 2779 | |
Al Viro | fc64005 | 2016-04-10 01:33:30 -0400 | [diff] [blame] | 2780 | mutex_lock(&p1->d_sb->s_vfs_rename_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2781 | |
OGAWA Hirofumi | e2761a1 | 2008-10-16 07:50:28 +0900 | [diff] [blame] | 2782 | p = d_ancestor(p2, p1); |
| 2783 | if (p) { |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 2784 | inode_lock_nested(p2->d_inode, I_MUTEX_PARENT); |
| 2785 | inode_lock_nested(p1->d_inode, I_MUTEX_CHILD); |
OGAWA Hirofumi | e2761a1 | 2008-10-16 07:50:28 +0900 | [diff] [blame] | 2786 | return p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2787 | } |
| 2788 | |
OGAWA Hirofumi | e2761a1 | 2008-10-16 07:50:28 +0900 | [diff] [blame] | 2789 | p = d_ancestor(p1, p2); |
| 2790 | if (p) { |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 2791 | inode_lock_nested(p1->d_inode, I_MUTEX_PARENT); |
| 2792 | inode_lock_nested(p2->d_inode, I_MUTEX_CHILD); |
OGAWA Hirofumi | e2761a1 | 2008-10-16 07:50:28 +0900 | [diff] [blame] | 2793 | return p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2794 | } |
| 2795 | |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 2796 | inode_lock_nested(p1->d_inode, I_MUTEX_PARENT); |
| 2797 | inode_lock_nested(p2->d_inode, I_MUTEX_PARENT2); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2798 | return NULL; |
| 2799 | } |
Al Viro | 4d35950 | 2014-03-14 12:20:17 -0400 | [diff] [blame] | 2800 | EXPORT_SYMBOL(lock_rename); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2801 | |
| 2802 | void unlock_rename(struct dentry *p1, struct dentry *p2) |
| 2803 | { |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 2804 | inode_unlock(p1->d_inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2805 | if (p1 != p2) { |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 2806 | inode_unlock(p2->d_inode); |
Al Viro | fc64005 | 2016-04-10 01:33:30 -0400 | [diff] [blame] | 2807 | mutex_unlock(&p1->d_sb->s_vfs_rename_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2808 | } |
| 2809 | } |
Al Viro | 4d35950 | 2014-03-14 12:20:17 -0400 | [diff] [blame] | 2810 | EXPORT_SYMBOL(unlock_rename); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2811 | |
Al Viro | 4acdaf2 | 2011-07-26 01:42:34 -0400 | [diff] [blame] | 2812 | int vfs_create(struct inode *dir, struct dentry *dentry, umode_t mode, |
Al Viro | 312b63f | 2012-06-10 18:09:36 -0400 | [diff] [blame] | 2813 | bool want_excl) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2814 | { |
Miklos Szeredi | a95164d | 2008-07-30 15:08:48 +0200 | [diff] [blame] | 2815 | int error = may_create(dir, dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2816 | if (error) |
| 2817 | return error; |
| 2818 | |
Al Viro | acfa438 | 2008-12-04 10:06:33 -0500 | [diff] [blame] | 2819 | if (!dir->i_op->create) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2820 | return -EACCES; /* shouldn't it be ENOSYS? */ |
| 2821 | mode &= S_IALLUGO; |
| 2822 | mode |= S_IFREG; |
| 2823 | error = security_inode_create(dir, dentry, mode); |
| 2824 | if (error) |
| 2825 | return error; |
Al Viro | 312b63f | 2012-06-10 18:09:36 -0400 | [diff] [blame] | 2826 | error = dir->i_op->create(dir, dentry, mode, want_excl); |
Stephen Smalley | a74574a | 2005-09-09 13:01:44 -0700 | [diff] [blame] | 2827 | if (!error) |
Amy Griffis | f38aa94 | 2005-11-03 15:57:06 +0000 | [diff] [blame] | 2828 | fsnotify_create(dir, dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2829 | return error; |
| 2830 | } |
Al Viro | 4d35950 | 2014-03-14 12:20:17 -0400 | [diff] [blame] | 2831 | EXPORT_SYMBOL(vfs_create); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2832 | |
Al Viro | 8e6c848 | 2017-12-01 17:12:45 -0500 | [diff] [blame] | 2833 | int vfs_mkobj(struct dentry *dentry, umode_t mode, |
| 2834 | int (*f)(struct dentry *, umode_t, void *), |
| 2835 | void *arg) |
| 2836 | { |
| 2837 | struct inode *dir = dentry->d_parent->d_inode; |
| 2838 | int error = may_create(dir, dentry); |
| 2839 | if (error) |
| 2840 | return error; |
| 2841 | |
| 2842 | mode &= S_IALLUGO; |
| 2843 | mode |= S_IFREG; |
| 2844 | error = security_inode_create(dir, dentry, mode); |
| 2845 | if (error) |
| 2846 | return error; |
| 2847 | error = f(dentry, mode, arg); |
| 2848 | if (!error) |
| 2849 | fsnotify_create(dir, dentry); |
| 2850 | return error; |
| 2851 | } |
| 2852 | EXPORT_SYMBOL(vfs_mkobj); |
| 2853 | |
Eric W. Biederman | a2982cc | 2016-06-09 15:34:02 -0500 | [diff] [blame] | 2854 | bool may_open_dev(const struct path *path) |
| 2855 | { |
| 2856 | return !(path->mnt->mnt_flags & MNT_NODEV) && |
| 2857 | !(path->mnt->mnt_sb->s_iflags & SB_I_NODEV); |
| 2858 | } |
| 2859 | |
Al Viro | f0bb5aa | 2016-11-20 20:27:12 -0500 | [diff] [blame] | 2860 | static int may_open(const struct path *path, int acc_mode, int flag) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2861 | { |
Christoph Hellwig | 3fb6419 | 2008-10-24 09:58:10 +0200 | [diff] [blame] | 2862 | struct dentry *dentry = path->dentry; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2863 | struct inode *inode = dentry->d_inode; |
| 2864 | int error; |
| 2865 | |
| 2866 | if (!inode) |
| 2867 | return -ENOENT; |
| 2868 | |
Christoph Hellwig | c8fe8f3 | 2009-01-05 19:27:23 +0100 | [diff] [blame] | 2869 | switch (inode->i_mode & S_IFMT) { |
| 2870 | case S_IFLNK: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2871 | return -ELOOP; |
Christoph Hellwig | c8fe8f3 | 2009-01-05 19:27:23 +0100 | [diff] [blame] | 2872 | case S_IFDIR: |
| 2873 | if (acc_mode & MAY_WRITE) |
| 2874 | return -EISDIR; |
| 2875 | break; |
| 2876 | case S_IFBLK: |
| 2877 | case S_IFCHR: |
Eric W. Biederman | a2982cc | 2016-06-09 15:34:02 -0500 | [diff] [blame] | 2878 | if (!may_open_dev(path)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2879 | return -EACCES; |
Christoph Hellwig | c8fe8f3 | 2009-01-05 19:27:23 +0100 | [diff] [blame] | 2880 | /*FALLTHRU*/ |
| 2881 | case S_IFIFO: |
| 2882 | case S_IFSOCK: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2883 | flag &= ~O_TRUNC; |
Christoph Hellwig | c8fe8f3 | 2009-01-05 19:27:23 +0100 | [diff] [blame] | 2884 | break; |
Dave Hansen | 4a3fd21 | 2008-02-15 14:37:48 -0800 | [diff] [blame] | 2885 | } |
Dave Hansen | b41572e | 2007-10-16 23:31:14 -0700 | [diff] [blame] | 2886 | |
Al Viro | 62fb4a1 | 2015-12-26 22:33:24 -0500 | [diff] [blame] | 2887 | error = inode_permission(inode, MAY_OPEN | acc_mode); |
Dave Hansen | b41572e | 2007-10-16 23:31:14 -0700 | [diff] [blame] | 2888 | if (error) |
| 2889 | return error; |
Mimi Zohar | 6146f0d | 2009-02-04 09:06:57 -0500 | [diff] [blame] | 2890 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2891 | /* |
| 2892 | * An append-only file must be opened in append mode for writing. |
| 2893 | */ |
| 2894 | if (IS_APPEND(inode)) { |
Al Viro | 8737c93 | 2009-12-24 06:47:55 -0500 | [diff] [blame] | 2895 | if ((flag & O_ACCMODE) != O_RDONLY && !(flag & O_APPEND)) |
Al Viro | 7715b52 | 2009-12-16 03:54:00 -0500 | [diff] [blame] | 2896 | return -EPERM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2897 | if (flag & O_TRUNC) |
Al Viro | 7715b52 | 2009-12-16 03:54:00 -0500 | [diff] [blame] | 2898 | return -EPERM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2899 | } |
| 2900 | |
| 2901 | /* O_NOATIME can only be set by the owner or superuser */ |
Serge E. Hallyn | 2e14967 | 2011-03-23 16:43:26 -0700 | [diff] [blame] | 2902 | if (flag & O_NOATIME && !inode_owner_or_capable(inode)) |
Al Viro | 7715b52 | 2009-12-16 03:54:00 -0500 | [diff] [blame] | 2903 | return -EPERM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2904 | |
J. Bruce Fields | f3c7691e | 2011-09-21 10:58:13 -0400 | [diff] [blame] | 2905 | return 0; |
Al Viro | 7715b52 | 2009-12-16 03:54:00 -0500 | [diff] [blame] | 2906 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2907 | |
Jeff Layton | e1181ee | 2010-12-07 16:19:50 -0500 | [diff] [blame] | 2908 | static int handle_truncate(struct file *filp) |
Al Viro | 7715b52 | 2009-12-16 03:54:00 -0500 | [diff] [blame] | 2909 | { |
Al Viro | f0bb5aa | 2016-11-20 20:27:12 -0500 | [diff] [blame] | 2910 | const struct path *path = &filp->f_path; |
Al Viro | 7715b52 | 2009-12-16 03:54:00 -0500 | [diff] [blame] | 2911 | struct inode *inode = path->dentry->d_inode; |
| 2912 | int error = get_write_access(inode); |
| 2913 | if (error) |
| 2914 | return error; |
| 2915 | /* |
| 2916 | * Refuse to truncate files with mandatory locks held on them. |
| 2917 | */ |
Jeff Layton | d7a0698 | 2014-03-10 09:54:15 -0400 | [diff] [blame] | 2918 | error = locks_verify_locked(filp); |
Al Viro | 7715b52 | 2009-12-16 03:54:00 -0500 | [diff] [blame] | 2919 | if (!error) |
Tetsuo Handa | ea0d3ab | 2010-06-02 13:24:43 +0900 | [diff] [blame] | 2920 | error = security_path_truncate(path); |
Al Viro | 7715b52 | 2009-12-16 03:54:00 -0500 | [diff] [blame] | 2921 | if (!error) { |
| 2922 | error = do_truncate(path->dentry, 0, |
| 2923 | ATTR_MTIME|ATTR_CTIME|ATTR_OPEN, |
Jeff Layton | e1181ee | 2010-12-07 16:19:50 -0500 | [diff] [blame] | 2924 | filp); |
Al Viro | 7715b52 | 2009-12-16 03:54:00 -0500 | [diff] [blame] | 2925 | } |
| 2926 | put_write_access(inode); |
Mimi Zohar | acd0c93 | 2009-09-04 13:08:46 -0400 | [diff] [blame] | 2927 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2928 | } |
| 2929 | |
Dave Hansen | d57999e | 2008-02-15 14:37:27 -0800 | [diff] [blame] | 2930 | static inline int open_to_namei_flags(int flag) |
| 2931 | { |
Al Viro | 8a5e929 | 2011-06-25 19:15:54 -0400 | [diff] [blame] | 2932 | if ((flag & O_ACCMODE) == 3) |
| 2933 | flag--; |
Dave Hansen | d57999e | 2008-02-15 14:37:27 -0800 | [diff] [blame] | 2934 | return flag; |
| 2935 | } |
| 2936 | |
Al Viro | d360775 | 2016-03-25 15:21:09 -0400 | [diff] [blame] | 2937 | 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] | 2938 | { |
Seth Forshee | 1328c72 | 2017-01-26 14:33:46 -0600 | [diff] [blame] | 2939 | struct user_namespace *s_user_ns; |
Miklos Szeredi | d18e900 | 2012-06-05 15:10:17 +0200 | [diff] [blame] | 2940 | int error = security_path_mknod(dir, dentry, mode, 0); |
| 2941 | if (error) |
| 2942 | return error; |
| 2943 | |
Seth Forshee | 1328c72 | 2017-01-26 14:33:46 -0600 | [diff] [blame] | 2944 | s_user_ns = dir->dentry->d_sb->s_user_ns; |
| 2945 | if (!kuid_has_mapping(s_user_ns, current_fsuid()) || |
| 2946 | !kgid_has_mapping(s_user_ns, current_fsgid())) |
| 2947 | return -EOVERFLOW; |
| 2948 | |
Miklos Szeredi | d18e900 | 2012-06-05 15:10:17 +0200 | [diff] [blame] | 2949 | error = inode_permission(dir->dentry->d_inode, MAY_WRITE | MAY_EXEC); |
| 2950 | if (error) |
| 2951 | return error; |
| 2952 | |
| 2953 | return security_inode_create(dir->dentry->d_inode, dentry, mode); |
| 2954 | } |
| 2955 | |
David Howells | 1acf0af | 2012-06-14 16:13:46 +0100 | [diff] [blame] | 2956 | /* |
| 2957 | * Attempt to atomically look up, create and open a file from a negative |
| 2958 | * dentry. |
| 2959 | * |
| 2960 | * Returns 0 if successful. The file will have been created and attached to |
| 2961 | * @file by the filesystem calling finish_open(). |
| 2962 | * |
Al Viro | 00a07c1 | 2018-07-09 19:30:20 -0400 | [diff] [blame] | 2963 | * If the file was looked up only or didn't need creating, FMODE_OPENED won't |
| 2964 | * be set. The caller will need to perform the open themselves. @path will |
| 2965 | * have been updated to point to the new dentry. This may be negative. |
David Howells | 1acf0af | 2012-06-14 16:13:46 +0100 | [diff] [blame] | 2966 | * |
| 2967 | * Returns an error code otherwise. |
| 2968 | */ |
Al Viro | 239eb98 | 2020-01-09 14:12:40 -0500 | [diff] [blame] | 2969 | static struct dentry *atomic_open(struct nameidata *nd, struct dentry *dentry, |
| 2970 | struct file *file, |
| 2971 | const struct open_flags *op, |
| 2972 | int open_flag, umode_t mode) |
Miklos Szeredi | d18e900 | 2012-06-05 15:10:17 +0200 | [diff] [blame] | 2973 | { |
Miklos Szeredi | d18e900 | 2012-06-05 15:10:17 +0200 | [diff] [blame] | 2974 | struct dentry *const DENTRY_NOT_SET = (void *) -1UL; |
Miklos Szeredi | d18e900 | 2012-06-05 15:10:17 +0200 | [diff] [blame] | 2975 | struct inode *dir = nd->path.dentry->d_inode; |
Miklos Szeredi | d18e900 | 2012-06-05 15:10:17 +0200 | [diff] [blame] | 2976 | int error; |
Miklos Szeredi | d18e900 | 2012-06-05 15:10:17 +0200 | [diff] [blame] | 2977 | |
Al Viro | 384f26e | 2016-04-28 02:03:55 -0400 | [diff] [blame] | 2978 | 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] | 2979 | open_flag &= ~O_TRUNC; |
Miklos Szeredi | d18e900 | 2012-06-05 15:10:17 +0200 | [diff] [blame] | 2980 | |
Miklos Szeredi | d18e900 | 2012-06-05 15:10:17 +0200 | [diff] [blame] | 2981 | if (nd->flags & LOOKUP_DIRECTORY) |
| 2982 | open_flag |= O_DIRECTORY; |
| 2983 | |
Al Viro | 30d9049 | 2012-06-22 12:40:19 +0400 | [diff] [blame] | 2984 | file->f_path.dentry = DENTRY_NOT_SET; |
| 2985 | file->f_path.mnt = nd->path.mnt; |
Al Viro | 0fb1ea0 | 2016-04-27 14:13:10 -0400 | [diff] [blame] | 2986 | error = dir->i_op->atomic_open(dir, dentry, file, |
Al Viro | 44907d7 | 2018-06-08 13:32:02 -0400 | [diff] [blame] | 2987 | open_to_namei_flags(open_flag), mode); |
Al Viro | 6fbd071 | 2016-04-28 11:50:59 -0400 | [diff] [blame] | 2988 | d_lookup_done(dentry); |
Al Viro | 384f26e | 2016-04-28 02:03:55 -0400 | [diff] [blame] | 2989 | if (!error) { |
Al Viro | 64e1ac4 | 2018-07-09 19:17:52 -0400 | [diff] [blame] | 2990 | if (file->f_mode & FMODE_OPENED) { |
| 2991 | /* |
| 2992 | * We didn't have the inode before the open, so check open |
| 2993 | * permission here. |
| 2994 | */ |
| 2995 | int acc_mode = op->acc_mode; |
| 2996 | if (file->f_mode & FMODE_CREATED) { |
| 2997 | WARN_ON(!(open_flag & O_CREAT)); |
| 2998 | fsnotify_create(dir, dentry); |
| 2999 | acc_mode = 0; |
| 3000 | } |
| 3001 | error = may_open(&file->f_path, acc_mode, open_flag); |
| 3002 | if (WARN_ON(error > 0)) |
| 3003 | error = -EINVAL; |
| 3004 | } else if (WARN_ON(file->f_path.dentry == DENTRY_NOT_SET)) { |
Al Viro | 2675a4e | 2012-06-22 12:41:10 +0400 | [diff] [blame] | 3005 | error = -EIO; |
Al Viro | 03da633 | 2013-09-16 19:22:33 -0400 | [diff] [blame] | 3006 | } else { |
Al Viro | 384f26e | 2016-04-28 02:03:55 -0400 | [diff] [blame] | 3007 | if (file->f_path.dentry) { |
| 3008 | dput(dentry); |
| 3009 | dentry = file->f_path.dentry; |
Al Viro | 03da633 | 2013-09-16 19:22:33 -0400 | [diff] [blame] | 3010 | } |
Al Viro | 73a09dd | 2018-06-08 13:22:02 -0400 | [diff] [blame] | 3011 | if (file->f_mode & FMODE_CREATED) |
Al Viro | 384f26e | 2016-04-28 02:03:55 -0400 | [diff] [blame] | 3012 | fsnotify_create(dir, dentry); |
Al Viro | 239eb98 | 2020-01-09 14:12:40 -0500 | [diff] [blame] | 3013 | if (unlikely(d_is_negative(dentry))) |
Al Viro | a01e718 | 2016-06-07 21:53:51 -0400 | [diff] [blame] | 3014 | error = -ENOENT; |
Sage Weil | 62b2ce9 | 2012-08-15 13:30:12 -0700 | [diff] [blame] | 3015 | } |
Miklos Szeredi | d18e900 | 2012-06-05 15:10:17 +0200 | [diff] [blame] | 3016 | } |
Al Viro | 239eb98 | 2020-01-09 14:12:40 -0500 | [diff] [blame] | 3017 | if (error) { |
| 3018 | dput(dentry); |
| 3019 | dentry = ERR_PTR(error); |
| 3020 | } |
| 3021 | return dentry; |
Miklos Szeredi | d18e900 | 2012-06-05 15:10:17 +0200 | [diff] [blame] | 3022 | } |
| 3023 | |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 3024 | /* |
David Howells | 1acf0af | 2012-06-14 16:13:46 +0100 | [diff] [blame] | 3025 | * Look up and maybe create and open the last component. |
Miklos Szeredi | d58ffd3 | 2012-06-05 15:10:15 +0200 | [diff] [blame] | 3026 | * |
Al Viro | 00a07c1 | 2018-07-09 19:30:20 -0400 | [diff] [blame] | 3027 | * Must be called with parent locked (exclusive in O_CREAT case). |
Miklos Szeredi | d58ffd3 | 2012-06-05 15:10:15 +0200 | [diff] [blame] | 3028 | * |
Al Viro | 00a07c1 | 2018-07-09 19:30:20 -0400 | [diff] [blame] | 3029 | * Returns 0 on success, that is, if |
| 3030 | * the file was successfully atomically created (if necessary) and opened, or |
| 3031 | * the file was not completely opened at this time, though lookups and |
| 3032 | * creations were performed. |
| 3033 | * These case are distinguished by presence of FMODE_OPENED on file->f_mode. |
| 3034 | * In the latter case dentry returned in @path might be negative if O_CREAT |
| 3035 | * hadn't been specified. |
David Howells | 1acf0af | 2012-06-14 16:13:46 +0100 | [diff] [blame] | 3036 | * |
Al Viro | 00a07c1 | 2018-07-09 19:30:20 -0400 | [diff] [blame] | 3037 | * An error code is returned on failure. |
Miklos Szeredi | d58ffd3 | 2012-06-05 15:10:15 +0200 | [diff] [blame] | 3038 | */ |
Al Viro | da5ebf5 | 2020-01-09 14:25:14 -0500 | [diff] [blame] | 3039 | static struct dentry *lookup_open(struct nameidata *nd, struct file *file, |
| 3040 | const struct open_flags *op, |
| 3041 | bool got_write) |
Miklos Szeredi | d58ffd3 | 2012-06-05 15:10:15 +0200 | [diff] [blame] | 3042 | { |
| 3043 | struct dentry *dir = nd->path.dentry; |
Miklos Szeredi | 54ef487 | 2012-06-05 15:10:16 +0200 | [diff] [blame] | 3044 | struct inode *dir_inode = dir->d_inode; |
Al Viro | 1643b43 | 2016-04-27 19:14:10 -0400 | [diff] [blame] | 3045 | int open_flag = op->open_flag; |
Miklos Szeredi | d58ffd3 | 2012-06-05 15:10:15 +0200 | [diff] [blame] | 3046 | struct dentry *dentry; |
Al Viro | 1643b43 | 2016-04-27 19:14:10 -0400 | [diff] [blame] | 3047 | int error, create_error = 0; |
Al Viro | 1643b43 | 2016-04-27 19:14:10 -0400 | [diff] [blame] | 3048 | umode_t mode = op->mode; |
Al Viro | 6fbd071 | 2016-04-28 11:50:59 -0400 | [diff] [blame] | 3049 | DECLARE_WAIT_QUEUE_HEAD_ONSTACK(wq); |
Miklos Szeredi | d58ffd3 | 2012-06-05 15:10:15 +0200 | [diff] [blame] | 3050 | |
Al Viro | ce8644f | 2016-04-26 14:17:56 -0400 | [diff] [blame] | 3051 | if (unlikely(IS_DEADDIR(dir_inode))) |
Al Viro | da5ebf5 | 2020-01-09 14:25:14 -0500 | [diff] [blame] | 3052 | return ERR_PTR(-ENOENT); |
Miklos Szeredi | d58ffd3 | 2012-06-05 15:10:15 +0200 | [diff] [blame] | 3053 | |
Al Viro | 73a09dd | 2018-06-08 13:22:02 -0400 | [diff] [blame] | 3054 | file->f_mode &= ~FMODE_CREATED; |
Al Viro | 6fbd071 | 2016-04-28 11:50:59 -0400 | [diff] [blame] | 3055 | dentry = d_lookup(dir, &nd->last); |
| 3056 | for (;;) { |
| 3057 | if (!dentry) { |
| 3058 | dentry = d_alloc_parallel(dir, &nd->last, &wq); |
| 3059 | if (IS_ERR(dentry)) |
Al Viro | da5ebf5 | 2020-01-09 14:25:14 -0500 | [diff] [blame] | 3060 | return dentry; |
Al Viro | 6fbd071 | 2016-04-28 11:50:59 -0400 | [diff] [blame] | 3061 | } |
| 3062 | if (d_in_lookup(dentry)) |
| 3063 | break; |
Miklos Szeredi | d58ffd3 | 2012-06-05 15:10:15 +0200 | [diff] [blame] | 3064 | |
Al Viro | 6fbd071 | 2016-04-28 11:50:59 -0400 | [diff] [blame] | 3065 | error = d_revalidate(dentry, nd->flags); |
| 3066 | if (likely(error > 0)) |
| 3067 | break; |
| 3068 | if (error) |
| 3069 | goto out_dput; |
| 3070 | d_invalidate(dentry); |
| 3071 | dput(dentry); |
| 3072 | dentry = NULL; |
| 3073 | } |
| 3074 | if (dentry->d_inode) { |
Al Viro | 6c51e51 | 2016-03-05 20:09:32 -0500 | [diff] [blame] | 3075 | /* Cached positive dentry: will open in f_op->open */ |
Al Viro | da5ebf5 | 2020-01-09 14:25:14 -0500 | [diff] [blame] | 3076 | return dentry; |
Al Viro | 6c51e51 | 2016-03-05 20:09:32 -0500 | [diff] [blame] | 3077 | } |
Miklos Szeredi | d18e900 | 2012-06-05 15:10:17 +0200 | [diff] [blame] | 3078 | |
Al Viro | 1643b43 | 2016-04-27 19:14:10 -0400 | [diff] [blame] | 3079 | /* |
| 3080 | * Checking write permission is tricky, bacuse we don't know if we are |
| 3081 | * going to actually need it: O_CREAT opens should work as long as the |
| 3082 | * file exists. But checking existence breaks atomicity. The trick is |
| 3083 | * to check access and if not granted clear O_CREAT from the flags. |
| 3084 | * |
| 3085 | * Another problem is returing the "right" error value (e.g. for an |
| 3086 | * O_EXCL open we want to return EEXIST not EROFS). |
| 3087 | */ |
| 3088 | if (open_flag & O_CREAT) { |
| 3089 | if (!IS_POSIXACL(dir->d_inode)) |
| 3090 | mode &= ~current_umask(); |
| 3091 | if (unlikely(!got_write)) { |
| 3092 | create_error = -EROFS; |
| 3093 | open_flag &= ~O_CREAT; |
| 3094 | if (open_flag & (O_EXCL | O_TRUNC)) |
| 3095 | goto no_open; |
| 3096 | /* No side effects, safe to clear O_CREAT */ |
| 3097 | } else { |
| 3098 | create_error = may_o_create(&nd->path, dentry, mode); |
| 3099 | if (create_error) { |
| 3100 | open_flag &= ~O_CREAT; |
| 3101 | if (open_flag & O_EXCL) |
| 3102 | goto no_open; |
| 3103 | } |
| 3104 | } |
| 3105 | } else if ((open_flag & (O_TRUNC|O_WRONLY|O_RDWR)) && |
| 3106 | unlikely(!got_write)) { |
| 3107 | /* |
| 3108 | * No O_CREATE -> atomicity not a requirement -> fall |
| 3109 | * back to lookup + open |
| 3110 | */ |
| 3111 | goto no_open; |
Miklos Szeredi | d18e900 | 2012-06-05 15:10:17 +0200 | [diff] [blame] | 3112 | } |
| 3113 | |
Al Viro | 1643b43 | 2016-04-27 19:14:10 -0400 | [diff] [blame] | 3114 | if (dir_inode->i_op->atomic_open) { |
Al Viro | 239eb98 | 2020-01-09 14:12:40 -0500 | [diff] [blame] | 3115 | dentry = atomic_open(nd, dentry, file, op, open_flag, mode); |
Al Viro | da5ebf5 | 2020-01-09 14:25:14 -0500 | [diff] [blame] | 3116 | if (unlikely(create_error) && dentry == ERR_PTR(-ENOENT)) |
| 3117 | dentry = ERR_PTR(create_error); |
| 3118 | return dentry; |
Al Viro | 1643b43 | 2016-04-27 19:14:10 -0400 | [diff] [blame] | 3119 | } |
Miklos Szeredi | 54ef487 | 2012-06-05 15:10:16 +0200 | [diff] [blame] | 3120 | |
Al Viro | 1643b43 | 2016-04-27 19:14:10 -0400 | [diff] [blame] | 3121 | no_open: |
Al Viro | 6fbd071 | 2016-04-28 11:50:59 -0400 | [diff] [blame] | 3122 | if (d_in_lookup(dentry)) { |
Al Viro | 12fa5e2 | 2016-04-28 11:19:43 -0400 | [diff] [blame] | 3123 | struct dentry *res = dir_inode->i_op->lookup(dir_inode, dentry, |
| 3124 | nd->flags); |
Al Viro | 6fbd071 | 2016-04-28 11:50:59 -0400 | [diff] [blame] | 3125 | d_lookup_done(dentry); |
Al Viro | 12fa5e2 | 2016-04-28 11:19:43 -0400 | [diff] [blame] | 3126 | if (unlikely(res)) { |
| 3127 | if (IS_ERR(res)) { |
| 3128 | error = PTR_ERR(res); |
| 3129 | goto out_dput; |
| 3130 | } |
| 3131 | dput(dentry); |
| 3132 | dentry = res; |
| 3133 | } |
Miklos Szeredi | 54ef487 | 2012-06-05 15:10:16 +0200 | [diff] [blame] | 3134 | } |
| 3135 | |
Miklos Szeredi | d58ffd3 | 2012-06-05 15:10:15 +0200 | [diff] [blame] | 3136 | /* Negative dentry, just create the file */ |
Al Viro | 1643b43 | 2016-04-27 19:14:10 -0400 | [diff] [blame] | 3137 | if (!dentry->d_inode && (open_flag & O_CREAT)) { |
Al Viro | 73a09dd | 2018-06-08 13:22:02 -0400 | [diff] [blame] | 3138 | file->f_mode |= FMODE_CREATED; |
Al Viro | ce8644f | 2016-04-26 14:17:56 -0400 | [diff] [blame] | 3139 | audit_inode_child(dir_inode, dentry, AUDIT_TYPE_CHILD_CREATE); |
Al Viro | ce8644f | 2016-04-26 14:17:56 -0400 | [diff] [blame] | 3140 | if (!dir_inode->i_op->create) { |
| 3141 | error = -EACCES; |
Miklos Szeredi | d58ffd3 | 2012-06-05 15:10:15 +0200 | [diff] [blame] | 3142 | goto out_dput; |
Al Viro | 64894cf | 2012-07-31 00:53:35 +0400 | [diff] [blame] | 3143 | } |
Al Viro | ce8644f | 2016-04-26 14:17:56 -0400 | [diff] [blame] | 3144 | error = dir_inode->i_op->create(dir_inode, dentry, mode, |
Al Viro | 1643b43 | 2016-04-27 19:14:10 -0400 | [diff] [blame] | 3145 | open_flag & O_EXCL); |
Miklos Szeredi | d58ffd3 | 2012-06-05 15:10:15 +0200 | [diff] [blame] | 3146 | if (error) |
| 3147 | goto out_dput; |
Al Viro | ce8644f | 2016-04-26 14:17:56 -0400 | [diff] [blame] | 3148 | fsnotify_create(dir_inode, dentry); |
Miklos Szeredi | d58ffd3 | 2012-06-05 15:10:15 +0200 | [diff] [blame] | 3149 | } |
Al Viro | 1643b43 | 2016-04-27 19:14:10 -0400 | [diff] [blame] | 3150 | if (unlikely(create_error) && !dentry->d_inode) { |
| 3151 | error = create_error; |
| 3152 | goto out_dput; |
Miklos Szeredi | d58ffd3 | 2012-06-05 15:10:15 +0200 | [diff] [blame] | 3153 | } |
Al Viro | da5ebf5 | 2020-01-09 14:25:14 -0500 | [diff] [blame] | 3154 | return dentry; |
Miklos Szeredi | d58ffd3 | 2012-06-05 15:10:15 +0200 | [diff] [blame] | 3155 | |
| 3156 | out_dput: |
| 3157 | dput(dentry); |
Al Viro | da5ebf5 | 2020-01-09 14:25:14 -0500 | [diff] [blame] | 3158 | return ERR_PTR(error); |
Miklos Szeredi | d58ffd3 | 2012-06-05 15:10:15 +0200 | [diff] [blame] | 3159 | } |
| 3160 | |
| 3161 | /* |
Al Viro | fe2d35f | 2011-03-05 22:58:25 -0500 | [diff] [blame] | 3162 | * Handle the last step of open() |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 3163 | */ |
Al Viro | 1ccac62 | 2020-01-14 10:13:40 -0500 | [diff] [blame] | 3164 | static const char *do_last(struct nameidata *nd, |
Al Viro | 3ec2eef | 2018-06-08 13:43:47 -0400 | [diff] [blame] | 3165 | struct file *file, const struct open_flags *op) |
Al Viro | fb1cc55 | 2009-12-24 01:58:28 -0500 | [diff] [blame] | 3166 | { |
Al Viro | a1e2803 | 2009-12-24 02:12:06 -0500 | [diff] [blame] | 3167 | struct dentry *dir = nd->path.dentry; |
Al Viro | 6404674 | 2020-02-01 16:26:45 +0000 | [diff] [blame] | 3168 | kuid_t dir_uid = nd->inode->i_uid; |
| 3169 | umode_t dir_mode = nd->inode->i_mode; |
Al Viro | ca344a89 | 2011-03-09 00:36:45 -0500 | [diff] [blame] | 3170 | int open_flag = op->open_flag; |
Miklos Szeredi | 77d660a | 2012-06-05 15:10:30 +0200 | [diff] [blame] | 3171 | bool will_truncate = (open_flag & O_TRUNC) != 0; |
Al Viro | 64894cf | 2012-07-31 00:53:35 +0400 | [diff] [blame] | 3172 | bool got_write = false; |
Al Viro | bcda765 | 2011-03-13 16:42:14 -0400 | [diff] [blame] | 3173 | int acc_mode = op->acc_mode; |
Al Viro | 254cf58 | 2015-05-05 09:40:46 -0400 | [diff] [blame] | 3174 | unsigned seq; |
Miklos Szeredi | a1eb331 | 2012-05-21 17:30:07 +0200 | [diff] [blame] | 3175 | struct inode *inode; |
Al Viro | da5ebf5 | 2020-01-09 14:25:14 -0500 | [diff] [blame] | 3176 | struct dentry *dentry; |
Al Viro | b0417d2 | 2020-01-14 13:34:20 -0500 | [diff] [blame] | 3177 | const char *res; |
Al Viro | 16c2cd7 | 2011-02-22 15:50:10 -0500 | [diff] [blame] | 3178 | int error; |
Al Viro | fb1cc55 | 2009-12-24 01:58:28 -0500 | [diff] [blame] | 3179 | |
Al Viro | c3e380b | 2011-02-23 13:39:45 -0500 | [diff] [blame] | 3180 | nd->flags &= ~LOOKUP_PARENT; |
| 3181 | nd->flags |= op->intent; |
| 3182 | |
Al Viro | bc77daa | 2013-06-06 09:12:33 -0400 | [diff] [blame] | 3183 | if (nd->last_type != LAST_NORM) { |
Al Viro | 56676ec | 2020-03-10 21:54:54 -0400 | [diff] [blame] | 3184 | if (nd->depth) |
| 3185 | put_link(nd); |
Al Viro | fe2d35f | 2011-03-05 22:58:25 -0500 | [diff] [blame] | 3186 | error = handle_dots(nd, nd->last_type); |
Al Viro | deb106c | 2015-05-08 18:05:21 -0400 | [diff] [blame] | 3187 | if (unlikely(error)) |
Al Viro | 1ccac62 | 2020-01-14 10:13:40 -0500 | [diff] [blame] | 3188 | return ERR_PTR(error); |
Miklos Szeredi | e83db16 | 2012-06-05 15:10:29 +0200 | [diff] [blame] | 3189 | goto finish_open; |
Al Viro | 1f36f77 | 2009-12-26 10:56:19 -0500 | [diff] [blame] | 3190 | } |
Al Viro | 67ee3ad | 2009-12-26 07:01:01 -0500 | [diff] [blame] | 3191 | |
Al Viro | ca344a89 | 2011-03-09 00:36:45 -0500 | [diff] [blame] | 3192 | if (!(open_flag & O_CREAT)) { |
Al Viro | fe2d35f | 2011-03-05 22:58:25 -0500 | [diff] [blame] | 3193 | if (nd->last.name[nd->last.len]) |
| 3194 | nd->flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY; |
| 3195 | /* we _can_ be in RCU mode here */ |
Al Viro | 20e3435 | 2020-01-09 14:58:31 -0500 | [diff] [blame] | 3196 | dentry = lookup_fast(nd, &inode, &seq); |
| 3197 | if (IS_ERR(dentry)) |
Al Viro | 1ccac62 | 2020-01-14 10:13:40 -0500 | [diff] [blame] | 3198 | return ERR_CAST(dentry); |
Al Viro | 20e3435 | 2020-01-09 14:58:31 -0500 | [diff] [blame] | 3199 | if (likely(dentry)) |
Miklos Szeredi | 7157486 | 2012-06-05 15:10:14 +0200 | [diff] [blame] | 3200 | goto finish_lookup; |
Miklos Szeredi | a1eb331 | 2012-05-21 17:30:07 +0200 | [diff] [blame] | 3201 | |
Miklos Szeredi | 7157486 | 2012-06-05 15:10:14 +0200 | [diff] [blame] | 3202 | BUG_ON(nd->inode != dir->d_inode); |
Al Viro | 6583fe2 | 2016-03-05 18:14:03 -0500 | [diff] [blame] | 3203 | BUG_ON(nd->flags & LOOKUP_RCU); |
Miklos Szeredi | b6183df | 2012-06-05 15:10:13 +0200 | [diff] [blame] | 3204 | } else { |
| 3205 | /* create side of things */ |
| 3206 | /* |
| 3207 | * This will *only* deal with leaving RCU mode - LOOKUP_JUMPED |
| 3208 | * has been cleared when we got to the last component we are |
| 3209 | * about to look up |
| 3210 | */ |
| 3211 | error = complete_walk(nd); |
Al Viro | e8bb73d | 2015-05-08 16:28:42 -0400 | [diff] [blame] | 3212 | if (error) |
Al Viro | 1ccac62 | 2020-01-14 10:13:40 -0500 | [diff] [blame] | 3213 | return ERR_PTR(error); |
Miklos Szeredi | b6183df | 2012-06-05 15:10:13 +0200 | [diff] [blame] | 3214 | |
Al Viro | c9b07ea | 2019-07-14 13:22:27 -0400 | [diff] [blame] | 3215 | audit_inode(nd->name, dir, AUDIT_INODE_PARENT); |
Miklos Szeredi | b6183df | 2012-06-05 15:10:13 +0200 | [diff] [blame] | 3216 | /* trailing slashes? */ |
Al Viro | deb106c | 2015-05-08 18:05:21 -0400 | [diff] [blame] | 3217 | if (unlikely(nd->last.name[nd->last.len])) |
Al Viro | 1ccac62 | 2020-01-14 10:13:40 -0500 | [diff] [blame] | 3218 | return ERR_PTR(-EISDIR); |
Al Viro | fe2d35f | 2011-03-05 22:58:25 -0500 | [diff] [blame] | 3219 | } |
| 3220 | |
Al Viro | 9cf843e | 2016-04-28 19:35:16 -0400 | [diff] [blame] | 3221 | if (open_flag & (O_CREAT | O_TRUNC | O_WRONLY | O_RDWR)) { |
Al Viro | 64894cf | 2012-07-31 00:53:35 +0400 | [diff] [blame] | 3222 | error = mnt_want_write(nd->path.mnt); |
| 3223 | if (!error) |
| 3224 | got_write = true; |
| 3225 | /* |
| 3226 | * do _not_ fail yet - we might not need that or fail with |
| 3227 | * a different error; let lookup_open() decide; we'll be |
| 3228 | * dropping this one anyway. |
| 3229 | */ |
| 3230 | } |
Al Viro | 9cf843e | 2016-04-28 19:35:16 -0400 | [diff] [blame] | 3231 | if (open_flag & O_CREAT) |
| 3232 | inode_lock(dir->d_inode); |
| 3233 | else |
| 3234 | inode_lock_shared(dir->d_inode); |
Al Viro | da5ebf5 | 2020-01-09 14:25:14 -0500 | [diff] [blame] | 3235 | dentry = lookup_open(nd, file, op, got_write); |
Al Viro | 9cf843e | 2016-04-28 19:35:16 -0400 | [diff] [blame] | 3236 | if (open_flag & O_CREAT) |
| 3237 | inode_unlock(dir->d_inode); |
| 3238 | else |
| 3239 | inode_unlock_shared(dir->d_inode); |
Al Viro | a1e2803 | 2009-12-24 02:12:06 -0500 | [diff] [blame] | 3240 | |
Al Viro | da5ebf5 | 2020-01-09 14:25:14 -0500 | [diff] [blame] | 3241 | if (IS_ERR(dentry)) { |
| 3242 | error = PTR_ERR(dentry); |
Al Viro | 00a07c1 | 2018-07-09 19:30:20 -0400 | [diff] [blame] | 3243 | goto out; |
Al Viro | da5ebf5 | 2020-01-09 14:25:14 -0500 | [diff] [blame] | 3244 | } |
Miklos Szeredi | d18e900 | 2012-06-05 15:10:17 +0200 | [diff] [blame] | 3245 | |
Al Viro | 00a07c1 | 2018-07-09 19:30:20 -0400 | [diff] [blame] | 3246 | if (file->f_mode & FMODE_OPENED) { |
Al Viro | 73a09dd | 2018-06-08 13:22:02 -0400 | [diff] [blame] | 3247 | if ((file->f_mode & FMODE_CREATED) || |
Al Viro | 496ad9a | 2013-01-23 17:07:38 -0500 | [diff] [blame] | 3248 | !S_ISREG(file_inode(file)->i_mode)) |
Miklos Szeredi | 77d660a | 2012-06-05 15:10:30 +0200 | [diff] [blame] | 3249 | will_truncate = false; |
Miklos Szeredi | d18e900 | 2012-06-05 15:10:17 +0200 | [diff] [blame] | 3250 | |
Al Viro | 76ae2a5 | 2015-05-12 18:44:32 -0400 | [diff] [blame] | 3251 | audit_inode(nd->name, file->f_path.dentry, 0); |
Al Viro | da5ebf5 | 2020-01-09 14:25:14 -0500 | [diff] [blame] | 3252 | dput(dentry); |
Miklos Szeredi | d18e900 | 2012-06-05 15:10:17 +0200 | [diff] [blame] | 3253 | goto opened; |
| 3254 | } |
Al Viro | fb1cc55 | 2009-12-24 01:58:28 -0500 | [diff] [blame] | 3255 | |
Al Viro | 73a09dd | 2018-06-08 13:22:02 -0400 | [diff] [blame] | 3256 | if (file->f_mode & FMODE_CREATED) { |
Al Viro | 9b44f1b | 2011-03-09 00:17:27 -0500 | [diff] [blame] | 3257 | /* Don't check for write permission, don't truncate */ |
Al Viro | ca344a89 | 2011-03-09 00:36:45 -0500 | [diff] [blame] | 3258 | open_flag &= ~O_TRUNC; |
Miklos Szeredi | 77d660a | 2012-06-05 15:10:30 +0200 | [diff] [blame] | 3259 | will_truncate = false; |
Al Viro | 62fb4a1 | 2015-12-26 22:33:24 -0500 | [diff] [blame] | 3260 | acc_mode = 0; |
Al Viro | e73cabf | 2020-01-09 14:30:08 -0500 | [diff] [blame] | 3261 | dput(nd->path.dentry); |
| 3262 | nd->path.dentry = dentry; |
Miklos Szeredi | e83db16 | 2012-06-05 15:10:29 +0200 | [diff] [blame] | 3263 | goto finish_open_created; |
Al Viro | fb1cc55 | 2009-12-24 01:58:28 -0500 | [diff] [blame] | 3264 | } |
| 3265 | |
| 3266 | /* |
Miklos Szeredi | d18e900 | 2012-06-05 15:10:17 +0200 | [diff] [blame] | 3267 | * If atomic_open() acquired write access it is dropped now due to |
| 3268 | * possible mount and symlink following (this might be optimized away if |
| 3269 | * necessary...) |
| 3270 | */ |
Al Viro | 64894cf | 2012-07-31 00:53:35 +0400 | [diff] [blame] | 3271 | if (got_write) { |
Miklos Szeredi | d18e900 | 2012-06-05 15:10:17 +0200 | [diff] [blame] | 3272 | mnt_drop_write(nd->path.mnt); |
Al Viro | 64894cf | 2012-07-31 00:53:35 +0400 | [diff] [blame] | 3273 | got_write = false; |
Miklos Szeredi | d18e900 | 2012-06-05 15:10:17 +0200 | [diff] [blame] | 3274 | } |
| 3275 | |
Al Viro | 20e3435 | 2020-01-09 14:58:31 -0500 | [diff] [blame] | 3276 | finish_lookup: |
Al Viro | 56676ec | 2020-03-10 21:54:54 -0400 | [diff] [blame] | 3277 | if (nd->depth) |
| 3278 | put_link(nd); |
Al Viro | 8c4efe2 | 2020-01-19 12:44:18 -0500 | [diff] [blame] | 3279 | res = step_into(nd, WALK_TRAILING, dentry, inode, seq); |
Al Viro | b0417d2 | 2020-01-14 13:34:20 -0500 | [diff] [blame] | 3280 | if (unlikely(res)) { |
| 3281 | nd->flags |= LOOKUP_PARENT; |
| 3282 | nd->flags &= ~(LOOKUP_OPEN|LOOKUP_CREATE|LOOKUP_EXCL); |
| 3283 | nd->stack[0].name = NULL; |
| 3284 | return res; |
Al Viro | 1ccac62 | 2020-01-14 10:13:40 -0500 | [diff] [blame] | 3285 | } |
Al Viro | 31d1726 | 2020-01-08 20:19:38 -0500 | [diff] [blame] | 3286 | |
| 3287 | if (unlikely((open_flag & (O_EXCL | O_CREAT)) == (O_EXCL | O_CREAT))) { |
| 3288 | audit_inode(nd->name, nd->path.dentry, 0); |
Al Viro | 1ccac62 | 2020-01-14 10:13:40 -0500 | [diff] [blame] | 3289 | return ERR_PTR(-EEXIST); |
Al Viro | 31d1726 | 2020-01-08 20:19:38 -0500 | [diff] [blame] | 3290 | } |
Al Viro | bc77daa | 2013-06-06 09:12:33 -0400 | [diff] [blame] | 3291 | finish_open: |
Al Viro | 8f64fb1 | 2016-11-14 01:50:26 -0500 | [diff] [blame] | 3292 | /* Why this, you ask? _Now_ we might have grown LOOKUP_JUMPED... */ |
Al Viro | a3fbbde | 2011-11-07 21:21:26 +0000 | [diff] [blame] | 3293 | error = complete_walk(nd); |
Al Viro | fac7d19 | 2016-06-04 11:41:49 -0400 | [diff] [blame] | 3294 | if (error) |
Al Viro | 1ccac62 | 2020-01-14 10:13:40 -0500 | [diff] [blame] | 3295 | return ERR_PTR(error); |
Al Viro | 76ae2a5 | 2015-05-12 18:44:32 -0400 | [diff] [blame] | 3296 | audit_inode(nd->name, nd->path.dentry, 0); |
Salvatore Mesoraca | 30aba66 | 2018-08-23 17:00:35 -0700 | [diff] [blame] | 3297 | if (open_flag & O_CREAT) { |
| 3298 | error = -EISDIR; |
| 3299 | if (d_is_dir(nd->path.dentry)) |
| 3300 | goto out; |
Al Viro | d0cb501 | 2020-01-26 09:29:34 -0500 | [diff] [blame] | 3301 | error = may_create_in_sticky(dir_mode, dir_uid, |
Salvatore Mesoraca | 30aba66 | 2018-08-23 17:00:35 -0700 | [diff] [blame] | 3302 | d_backing_inode(nd->path.dentry)); |
| 3303 | if (unlikely(error)) |
| 3304 | goto out; |
| 3305 | } |
Miklos Szeredi | af2f554 | 2012-05-21 17:30:11 +0200 | [diff] [blame] | 3306 | error = -ENOTDIR; |
Miklos Szeredi | 44b1d53 | 2014-04-01 17:08:41 +0200 | [diff] [blame] | 3307 | if ((nd->flags & LOOKUP_DIRECTORY) && !d_can_lookup(nd->path.dentry)) |
Al Viro | 2675a4e | 2012-06-22 12:41:10 +0400 | [diff] [blame] | 3308 | goto out; |
David Howells | 4bbcbd3b | 2015-03-17 22:16:40 +0000 | [diff] [blame] | 3309 | if (!d_is_reg(nd->path.dentry)) |
Miklos Szeredi | 77d660a | 2012-06-05 15:10:30 +0200 | [diff] [blame] | 3310 | will_truncate = false; |
Al Viro | 6c0d46c | 2011-03-09 00:59:59 -0500 | [diff] [blame] | 3311 | |
Al Viro | 0f9d1a1 | 2011-03-09 00:13:14 -0500 | [diff] [blame] | 3312 | if (will_truncate) { |
| 3313 | error = mnt_want_write(nd->path.mnt); |
| 3314 | if (error) |
Al Viro | 2675a4e | 2012-06-22 12:41:10 +0400 | [diff] [blame] | 3315 | goto out; |
Al Viro | 64894cf | 2012-07-31 00:53:35 +0400 | [diff] [blame] | 3316 | got_write = true; |
Al Viro | 0f9d1a1 | 2011-03-09 00:13:14 -0500 | [diff] [blame] | 3317 | } |
Miklos Szeredi | e83db16 | 2012-06-05 15:10:29 +0200 | [diff] [blame] | 3318 | finish_open_created: |
Al Viro | 6ac0870 | 2016-04-26 00:02:50 -0400 | [diff] [blame] | 3319 | error = may_open(&nd->path, acc_mode, open_flag); |
| 3320 | if (error) |
| 3321 | goto out; |
Al Viro | aad888f | 2018-06-08 12:58:04 -0400 | [diff] [blame] | 3322 | BUG_ON(file->f_mode & FMODE_OPENED); /* once it's opened, it's opened */ |
Al Viro | ae2bb29 | 2018-07-10 13:22:28 -0400 | [diff] [blame] | 3323 | error = vfs_open(&nd->path, file); |
Al Viro | fac7d19 | 2016-06-04 11:41:49 -0400 | [diff] [blame] | 3324 | if (error) |
Miklos Szeredi | 015c3bb | 2012-06-05 15:10:27 +0200 | [diff] [blame] | 3325 | goto out; |
Miklos Szeredi | a8277b9 | 2012-06-05 15:10:32 +0200 | [diff] [blame] | 3326 | opened: |
Al Viro | 6035a27 | 2018-06-08 13:40:10 -0400 | [diff] [blame] | 3327 | error = ima_file_check(file, op->acc_mode); |
Al Viro | fe9ec82 | 2016-04-27 03:14:20 -0400 | [diff] [blame] | 3328 | if (!error && will_truncate) |
Al Viro | 2675a4e | 2012-06-22 12:41:10 +0400 | [diff] [blame] | 3329 | error = handle_truncate(file); |
Al Viro | ca344a89 | 2011-03-09 00:36:45 -0500 | [diff] [blame] | 3330 | out: |
Al Viro | c80567c | 2016-02-27 19:17:33 -0500 | [diff] [blame] | 3331 | if (unlikely(error > 0)) { |
| 3332 | WARN_ON(1); |
| 3333 | error = -EINVAL; |
| 3334 | } |
Al Viro | 64894cf | 2012-07-31 00:53:35 +0400 | [diff] [blame] | 3335 | if (got_write) |
Al Viro | 0f9d1a1 | 2011-03-09 00:13:14 -0500 | [diff] [blame] | 3336 | mnt_drop_write(nd->path.mnt); |
Al Viro | 1ccac62 | 2020-01-14 10:13:40 -0500 | [diff] [blame] | 3337 | return ERR_PTR(error); |
Al Viro | fb1cc55 | 2009-12-24 01:58:28 -0500 | [diff] [blame] | 3338 | } |
| 3339 | |
Amir Goldstein | af7bd4d | 2017-01-17 06:34:52 +0200 | [diff] [blame] | 3340 | struct dentry *vfs_tmpfile(struct dentry *dentry, umode_t mode, int open_flag) |
| 3341 | { |
Amir Goldstein | af7bd4d | 2017-01-17 06:34:52 +0200 | [diff] [blame] | 3342 | struct dentry *child = NULL; |
| 3343 | struct inode *dir = dentry->d_inode; |
| 3344 | struct inode *inode; |
| 3345 | int error; |
| 3346 | |
| 3347 | /* we want directory to be writable */ |
| 3348 | error = inode_permission(dir, MAY_WRITE | MAY_EXEC); |
| 3349 | if (error) |
| 3350 | goto out_err; |
| 3351 | error = -EOPNOTSUPP; |
| 3352 | if (!dir->i_op->tmpfile) |
| 3353 | goto out_err; |
| 3354 | error = -ENOMEM; |
David Howells | cdf0122 | 2017-07-04 17:25:22 +0100 | [diff] [blame] | 3355 | child = d_alloc(dentry, &slash_name); |
Amir Goldstein | af7bd4d | 2017-01-17 06:34:52 +0200 | [diff] [blame] | 3356 | if (unlikely(!child)) |
| 3357 | goto out_err; |
| 3358 | error = dir->i_op->tmpfile(dir, child, mode); |
| 3359 | if (error) |
| 3360 | goto out_err; |
| 3361 | error = -ENOENT; |
| 3362 | inode = child->d_inode; |
| 3363 | if (unlikely(!inode)) |
| 3364 | goto out_err; |
| 3365 | if (!(open_flag & O_EXCL)) { |
| 3366 | spin_lock(&inode->i_lock); |
| 3367 | inode->i_state |= I_LINKABLE; |
| 3368 | spin_unlock(&inode->i_lock); |
| 3369 | } |
Mimi Zohar | fdb2410 | 2019-01-22 14:06:49 -0600 | [diff] [blame] | 3370 | ima_post_create_tmpfile(inode); |
Amir Goldstein | af7bd4d | 2017-01-17 06:34:52 +0200 | [diff] [blame] | 3371 | return child; |
| 3372 | |
| 3373 | out_err: |
| 3374 | dput(child); |
| 3375 | return ERR_PTR(error); |
| 3376 | } |
| 3377 | EXPORT_SYMBOL(vfs_tmpfile); |
| 3378 | |
Al Viro | c8a53ee | 2015-05-12 18:43:07 -0400 | [diff] [blame] | 3379 | static int do_tmpfile(struct nameidata *nd, unsigned flags, |
Al Viro | 60545d0 | 2013-06-07 01:20:27 -0400 | [diff] [blame] | 3380 | const struct open_flags *op, |
Al Viro | 3ec2eef | 2018-06-08 13:43:47 -0400 | [diff] [blame] | 3381 | struct file *file) |
Al Viro | 60545d0 | 2013-06-07 01:20:27 -0400 | [diff] [blame] | 3382 | { |
Al Viro | 625b6d1 | 2015-05-12 16:36:12 -0400 | [diff] [blame] | 3383 | struct dentry *child; |
Al Viro | 625b6d1 | 2015-05-12 16:36:12 -0400 | [diff] [blame] | 3384 | struct path path; |
Al Viro | c8a53ee | 2015-05-12 18:43:07 -0400 | [diff] [blame] | 3385 | int error = path_lookupat(nd, flags | LOOKUP_DIRECTORY, &path); |
Al Viro | 60545d0 | 2013-06-07 01:20:27 -0400 | [diff] [blame] | 3386 | if (unlikely(error)) |
| 3387 | return error; |
Al Viro | 625b6d1 | 2015-05-12 16:36:12 -0400 | [diff] [blame] | 3388 | error = mnt_want_write(path.mnt); |
Al Viro | 60545d0 | 2013-06-07 01:20:27 -0400 | [diff] [blame] | 3389 | if (unlikely(error)) |
| 3390 | goto out; |
Amir Goldstein | af7bd4d | 2017-01-17 06:34:52 +0200 | [diff] [blame] | 3391 | child = vfs_tmpfile(path.dentry, op->mode, op->open_flag); |
| 3392 | error = PTR_ERR(child); |
Hirofumi Nakagawa | 684e73b | 2017-09-26 03:21:26 +0900 | [diff] [blame] | 3393 | if (IS_ERR(child)) |
Al Viro | 60545d0 | 2013-06-07 01:20:27 -0400 | [diff] [blame] | 3394 | goto out2; |
Al Viro | 625b6d1 | 2015-05-12 16:36:12 -0400 | [diff] [blame] | 3395 | dput(path.dentry); |
| 3396 | path.dentry = child; |
Al Viro | c8a53ee | 2015-05-12 18:43:07 -0400 | [diff] [blame] | 3397 | audit_inode(nd->name, child, 0); |
Eric Rannaud | 69a91c2 | 2014-10-30 01:51:01 -0700 | [diff] [blame] | 3398 | /* Don't check for other permissions, the inode was just created */ |
Al Viro | 62fb4a1 | 2015-12-26 22:33:24 -0500 | [diff] [blame] | 3399 | error = may_open(&path, 0, op->open_flag); |
Al Viro | 60545d0 | 2013-06-07 01:20:27 -0400 | [diff] [blame] | 3400 | if (error) |
| 3401 | goto out2; |
Al Viro | 625b6d1 | 2015-05-12 16:36:12 -0400 | [diff] [blame] | 3402 | file->f_path.mnt = path.mnt; |
Al Viro | be12af3 | 2018-06-08 11:44:56 -0400 | [diff] [blame] | 3403 | error = finish_open(file, child, NULL); |
Al Viro | 60545d0 | 2013-06-07 01:20:27 -0400 | [diff] [blame] | 3404 | out2: |
Al Viro | 625b6d1 | 2015-05-12 16:36:12 -0400 | [diff] [blame] | 3405 | mnt_drop_write(path.mnt); |
Al Viro | 60545d0 | 2013-06-07 01:20:27 -0400 | [diff] [blame] | 3406 | out: |
Al Viro | 625b6d1 | 2015-05-12 16:36:12 -0400 | [diff] [blame] | 3407 | path_put(&path); |
Al Viro | 60545d0 | 2013-06-07 01:20:27 -0400 | [diff] [blame] | 3408 | return error; |
| 3409 | } |
| 3410 | |
Al Viro | 6ac0870 | 2016-04-26 00:02:50 -0400 | [diff] [blame] | 3411 | static int do_o_path(struct nameidata *nd, unsigned flags, struct file *file) |
| 3412 | { |
| 3413 | struct path path; |
| 3414 | int error = path_lookupat(nd, flags, &path); |
| 3415 | if (!error) { |
| 3416 | audit_inode(nd->name, path.dentry, 0); |
Al Viro | ae2bb29 | 2018-07-10 13:22:28 -0400 | [diff] [blame] | 3417 | error = vfs_open(&path, file); |
Al Viro | 6ac0870 | 2016-04-26 00:02:50 -0400 | [diff] [blame] | 3418 | path_put(&path); |
| 3419 | } |
| 3420 | return error; |
| 3421 | } |
| 3422 | |
Al Viro | c8a53ee | 2015-05-12 18:43:07 -0400 | [diff] [blame] | 3423 | static struct file *path_openat(struct nameidata *nd, |
| 3424 | const struct open_flags *op, unsigned flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3425 | { |
Al Viro | 30d9049 | 2012-06-22 12:40:19 +0400 | [diff] [blame] | 3426 | struct file *file; |
Al Viro | 13aab42 | 2011-02-23 17:54:08 -0500 | [diff] [blame] | 3427 | int error; |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 3428 | |
Al Viro | ea73ea7 | 2018-07-11 15:00:04 -0400 | [diff] [blame] | 3429 | file = alloc_empty_file(op->open_flag, current_cred()); |
Al Viro | 1afc99b | 2013-02-14 20:41:04 -0500 | [diff] [blame] | 3430 | if (IS_ERR(file)) |
| 3431 | return file; |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 3432 | |
Al Viro | bb458c6 | 2013-07-13 13:26:37 +0400 | [diff] [blame] | 3433 | if (unlikely(file->f_flags & __O_TMPFILE)) { |
Al Viro | 3ec2eef | 2018-06-08 13:43:47 -0400 | [diff] [blame] | 3434 | error = do_tmpfile(nd, flags, op, file); |
Al Viro | 5f336e7 | 2018-07-09 16:38:06 -0400 | [diff] [blame] | 3435 | } else if (unlikely(file->f_flags & O_PATH)) { |
Al Viro | 6ac0870 | 2016-04-26 00:02:50 -0400 | [diff] [blame] | 3436 | error = do_o_path(nd, flags, file); |
Al Viro | 5f336e7 | 2018-07-09 16:38:06 -0400 | [diff] [blame] | 3437 | } else { |
| 3438 | const char *s = path_init(nd, flags); |
| 3439 | while (!(error = link_path_walk(s, nd)) && |
Al Viro | 1ccac62 | 2020-01-14 10:13:40 -0500 | [diff] [blame] | 3440 | (s = do_last(nd, file, op)) != NULL) |
| 3441 | ; |
Al Viro | 5f336e7 | 2018-07-09 16:38:06 -0400 | [diff] [blame] | 3442 | terminate_walk(nd); |
Al Viro | 6ac0870 | 2016-04-26 00:02:50 -0400 | [diff] [blame] | 3443 | } |
Al Viro | 7c1c01e | 2018-06-08 12:56:55 -0400 | [diff] [blame] | 3444 | if (likely(!error)) { |
Al Viro | aad888f | 2018-06-08 12:58:04 -0400 | [diff] [blame] | 3445 | if (likely(file->f_mode & FMODE_OPENED)) |
Al Viro | 7c1c01e | 2018-06-08 12:56:55 -0400 | [diff] [blame] | 3446 | return file; |
| 3447 | WARN_ON(1); |
| 3448 | error = -EINVAL; |
Miklos Szeredi | 015c3bb | 2012-06-05 15:10:27 +0200 | [diff] [blame] | 3449 | } |
Al Viro | 7c1c01e | 2018-06-08 12:56:55 -0400 | [diff] [blame] | 3450 | fput(file); |
| 3451 | if (error == -EOPENSTALE) { |
| 3452 | if (flags & LOOKUP_RCU) |
| 3453 | error = -ECHILD; |
| 3454 | else |
| 3455 | error = -ESTALE; |
Al Viro | 2675a4e | 2012-06-22 12:41:10 +0400 | [diff] [blame] | 3456 | } |
Al Viro | 7c1c01e | 2018-06-08 12:56:55 -0400 | [diff] [blame] | 3457 | return ERR_PTR(error); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3458 | } |
| 3459 | |
Jeff Layton | 669abf4 | 2012-10-10 16:43:10 -0400 | [diff] [blame] | 3460 | struct file *do_filp_open(int dfd, struct filename *pathname, |
Al Viro | f9652e1 | 2013-06-11 08:23:01 +0400 | [diff] [blame] | 3461 | const struct open_flags *op) |
Al Viro | 13aab42 | 2011-02-23 17:54:08 -0500 | [diff] [blame] | 3462 | { |
Al Viro | 9883d18 | 2015-05-13 07:28:08 -0400 | [diff] [blame] | 3463 | struct nameidata nd; |
Al Viro | f9652e1 | 2013-06-11 08:23:01 +0400 | [diff] [blame] | 3464 | int flags = op->lookup_flags; |
Al Viro | 13aab42 | 2011-02-23 17:54:08 -0500 | [diff] [blame] | 3465 | struct file *filp; |
| 3466 | |
Al Viro | 9883d18 | 2015-05-13 07:28:08 -0400 | [diff] [blame] | 3467 | set_nameidata(&nd, dfd, pathname); |
Al Viro | c8a53ee | 2015-05-12 18:43:07 -0400 | [diff] [blame] | 3468 | filp = path_openat(&nd, op, flags | LOOKUP_RCU); |
Al Viro | 13aab42 | 2011-02-23 17:54:08 -0500 | [diff] [blame] | 3469 | if (unlikely(filp == ERR_PTR(-ECHILD))) |
Al Viro | c8a53ee | 2015-05-12 18:43:07 -0400 | [diff] [blame] | 3470 | filp = path_openat(&nd, op, flags); |
Al Viro | 13aab42 | 2011-02-23 17:54:08 -0500 | [diff] [blame] | 3471 | if (unlikely(filp == ERR_PTR(-ESTALE))) |
Al Viro | c8a53ee | 2015-05-12 18:43:07 -0400 | [diff] [blame] | 3472 | filp = path_openat(&nd, op, flags | LOOKUP_REVAL); |
Al Viro | 9883d18 | 2015-05-13 07:28:08 -0400 | [diff] [blame] | 3473 | restore_nameidata(); |
Al Viro | 13aab42 | 2011-02-23 17:54:08 -0500 | [diff] [blame] | 3474 | return filp; |
| 3475 | } |
| 3476 | |
Al Viro | 73d049a | 2011-03-11 12:08:24 -0500 | [diff] [blame] | 3477 | struct file *do_file_open_root(struct dentry *dentry, struct vfsmount *mnt, |
Al Viro | f9652e1 | 2013-06-11 08:23:01 +0400 | [diff] [blame] | 3478 | const char *name, const struct open_flags *op) |
Al Viro | 73d049a | 2011-03-11 12:08:24 -0500 | [diff] [blame] | 3479 | { |
Al Viro | 9883d18 | 2015-05-13 07:28:08 -0400 | [diff] [blame] | 3480 | struct nameidata nd; |
Al Viro | 73d049a | 2011-03-11 12:08:24 -0500 | [diff] [blame] | 3481 | struct file *file; |
Paul Moore | 5168910 | 2015-01-22 00:00:03 -0500 | [diff] [blame] | 3482 | struct filename *filename; |
Al Viro | f9652e1 | 2013-06-11 08:23:01 +0400 | [diff] [blame] | 3483 | int flags = op->lookup_flags | LOOKUP_ROOT; |
Al Viro | 73d049a | 2011-03-11 12:08:24 -0500 | [diff] [blame] | 3484 | |
| 3485 | nd.root.mnt = mnt; |
| 3486 | nd.root.dentry = dentry; |
| 3487 | |
David Howells | b18825a | 2013-09-12 19:22:53 +0100 | [diff] [blame] | 3488 | if (d_is_symlink(dentry) && op->intent & LOOKUP_OPEN) |
Al Viro | 73d049a | 2011-03-11 12:08:24 -0500 | [diff] [blame] | 3489 | return ERR_PTR(-ELOOP); |
| 3490 | |
Paul Moore | 5168910 | 2015-01-22 00:00:03 -0500 | [diff] [blame] | 3491 | filename = getname_kernel(name); |
Viresh Kumar | a1c8368 | 2015-08-12 15:59:44 +0530 | [diff] [blame] | 3492 | if (IS_ERR(filename)) |
Paul Moore | 5168910 | 2015-01-22 00:00:03 -0500 | [diff] [blame] | 3493 | return ERR_CAST(filename); |
| 3494 | |
Al Viro | 9883d18 | 2015-05-13 07:28:08 -0400 | [diff] [blame] | 3495 | set_nameidata(&nd, -1, filename); |
Al Viro | c8a53ee | 2015-05-12 18:43:07 -0400 | [diff] [blame] | 3496 | file = path_openat(&nd, op, flags | LOOKUP_RCU); |
Al Viro | 73d049a | 2011-03-11 12:08:24 -0500 | [diff] [blame] | 3497 | if (unlikely(file == ERR_PTR(-ECHILD))) |
Al Viro | c8a53ee | 2015-05-12 18:43:07 -0400 | [diff] [blame] | 3498 | file = path_openat(&nd, op, flags); |
Al Viro | 73d049a | 2011-03-11 12:08:24 -0500 | [diff] [blame] | 3499 | if (unlikely(file == ERR_PTR(-ESTALE))) |
Al Viro | c8a53ee | 2015-05-12 18:43:07 -0400 | [diff] [blame] | 3500 | file = path_openat(&nd, op, flags | LOOKUP_REVAL); |
Al Viro | 9883d18 | 2015-05-13 07:28:08 -0400 | [diff] [blame] | 3501 | restore_nameidata(); |
Paul Moore | 5168910 | 2015-01-22 00:00:03 -0500 | [diff] [blame] | 3502 | putname(filename); |
Al Viro | 73d049a | 2011-03-11 12:08:24 -0500 | [diff] [blame] | 3503 | return file; |
| 3504 | } |
| 3505 | |
Al Viro | fa14a0b | 2015-01-22 02:16:49 -0500 | [diff] [blame] | 3506 | static struct dentry *filename_create(int dfd, struct filename *name, |
Jeff Layton | 1ac12b4 | 2012-12-11 12:10:06 -0500 | [diff] [blame] | 3507 | struct path *path, unsigned int lookup_flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3508 | { |
Christoph Hellwig | c663e5d | 2005-06-23 00:09:49 -0700 | [diff] [blame] | 3509 | struct dentry *dentry = ERR_PTR(-EEXIST); |
Al Viro | 391172c | 2015-05-09 11:19:16 -0400 | [diff] [blame] | 3510 | struct qstr last; |
| 3511 | int type; |
Jan Kara | c30dabf | 2012-06-12 16:20:30 +0200 | [diff] [blame] | 3512 | int err2; |
Jeff Layton | 1ac12b4 | 2012-12-11 12:10:06 -0500 | [diff] [blame] | 3513 | int error; |
| 3514 | bool is_dir = (lookup_flags & LOOKUP_DIRECTORY); |
| 3515 | |
| 3516 | /* |
| 3517 | * Note that only LOOKUP_REVAL and LOOKUP_DIRECTORY matter here. Any |
| 3518 | * other flags passed in are ignored! |
| 3519 | */ |
| 3520 | lookup_flags &= LOOKUP_REVAL; |
| 3521 | |
Al Viro | 5c31b6c | 2015-05-12 17:32:54 -0400 | [diff] [blame] | 3522 | name = filename_parentat(dfd, name, lookup_flags, path, &last, &type); |
| 3523 | if (IS_ERR(name)) |
| 3524 | return ERR_CAST(name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3525 | |
Christoph Hellwig | c663e5d | 2005-06-23 00:09:49 -0700 | [diff] [blame] | 3526 | /* |
| 3527 | * Yucky last component or no last component at all? |
| 3528 | * (foo/., foo/.., /////) |
| 3529 | */ |
Al Viro | 5c31b6c | 2015-05-12 17:32:54 -0400 | [diff] [blame] | 3530 | if (unlikely(type != LAST_NORM)) |
Al Viro | ed75e95 | 2011-06-27 16:53:43 -0400 | [diff] [blame] | 3531 | goto out; |
Christoph Hellwig | c663e5d | 2005-06-23 00:09:49 -0700 | [diff] [blame] | 3532 | |
Jan Kara | c30dabf | 2012-06-12 16:20:30 +0200 | [diff] [blame] | 3533 | /* 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] | 3534 | err2 = mnt_want_write(path->mnt); |
Christoph Hellwig | c663e5d | 2005-06-23 00:09:49 -0700 | [diff] [blame] | 3535 | /* |
| 3536 | * Do the final lookup. |
| 3537 | */ |
Al Viro | 391172c | 2015-05-09 11:19:16 -0400 | [diff] [blame] | 3538 | lookup_flags |= LOOKUP_CREATE | LOOKUP_EXCL; |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 3539 | inode_lock_nested(path->dentry->d_inode, I_MUTEX_PARENT); |
Al Viro | 391172c | 2015-05-09 11:19:16 -0400 | [diff] [blame] | 3540 | dentry = __lookup_hash(&last, path->dentry, lookup_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3541 | if (IS_ERR(dentry)) |
Al Viro | a8104a9 | 2012-07-20 02:25:00 +0400 | [diff] [blame] | 3542 | goto unlock; |
Christoph Hellwig | c663e5d | 2005-06-23 00:09:49 -0700 | [diff] [blame] | 3543 | |
Al Viro | a8104a9 | 2012-07-20 02:25:00 +0400 | [diff] [blame] | 3544 | error = -EEXIST; |
David Howells | b18825a | 2013-09-12 19:22:53 +0100 | [diff] [blame] | 3545 | if (d_is_positive(dentry)) |
Al Viro | a8104a9 | 2012-07-20 02:25:00 +0400 | [diff] [blame] | 3546 | goto fail; |
David Howells | b18825a | 2013-09-12 19:22:53 +0100 | [diff] [blame] | 3547 | |
Christoph Hellwig | c663e5d | 2005-06-23 00:09:49 -0700 | [diff] [blame] | 3548 | /* |
| 3549 | * Special case - lookup gave negative, but... we had foo/bar/ |
| 3550 | * From the vfs_mknod() POV we just have a negative dentry - |
| 3551 | * all is fine. Let's be bastards - you had / on the end, you've |
| 3552 | * been asking for (non-existent) directory. -ENOENT for you. |
| 3553 | */ |
Al Viro | 391172c | 2015-05-09 11:19:16 -0400 | [diff] [blame] | 3554 | if (unlikely(!is_dir && last.name[last.len])) { |
Al Viro | a8104a9 | 2012-07-20 02:25:00 +0400 | [diff] [blame] | 3555 | error = -ENOENT; |
Al Viro | ed75e95 | 2011-06-27 16:53:43 -0400 | [diff] [blame] | 3556 | goto fail; |
Al Viro | e9baf6e | 2008-05-15 04:49:12 -0400 | [diff] [blame] | 3557 | } |
Jan Kara | c30dabf | 2012-06-12 16:20:30 +0200 | [diff] [blame] | 3558 | if (unlikely(err2)) { |
| 3559 | error = err2; |
Al Viro | a8104a9 | 2012-07-20 02:25:00 +0400 | [diff] [blame] | 3560 | goto fail; |
Jan Kara | c30dabf | 2012-06-12 16:20:30 +0200 | [diff] [blame] | 3561 | } |
Al Viro | 181c37b | 2015-05-12 17:21:25 -0400 | [diff] [blame] | 3562 | putname(name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3563 | return dentry; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3564 | fail: |
Al Viro | a8104a9 | 2012-07-20 02:25:00 +0400 | [diff] [blame] | 3565 | dput(dentry); |
| 3566 | dentry = ERR_PTR(error); |
| 3567 | unlock: |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 3568 | inode_unlock(path->dentry->d_inode); |
Jan Kara | c30dabf | 2012-06-12 16:20:30 +0200 | [diff] [blame] | 3569 | if (!err2) |
Al Viro | 391172c | 2015-05-09 11:19:16 -0400 | [diff] [blame] | 3570 | mnt_drop_write(path->mnt); |
Al Viro | ed75e95 | 2011-06-27 16:53:43 -0400 | [diff] [blame] | 3571 | out: |
Al Viro | 391172c | 2015-05-09 11:19:16 -0400 | [diff] [blame] | 3572 | path_put(path); |
Al Viro | 181c37b | 2015-05-12 17:21:25 -0400 | [diff] [blame] | 3573 | putname(name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3574 | return dentry; |
| 3575 | } |
Al Viro | fa14a0b | 2015-01-22 02:16:49 -0500 | [diff] [blame] | 3576 | |
| 3577 | struct dentry *kern_path_create(int dfd, const char *pathname, |
| 3578 | struct path *path, unsigned int lookup_flags) |
| 3579 | { |
Al Viro | 181c37b | 2015-05-12 17:21:25 -0400 | [diff] [blame] | 3580 | return filename_create(dfd, getname_kernel(pathname), |
| 3581 | path, lookup_flags); |
Al Viro | fa14a0b | 2015-01-22 02:16:49 -0500 | [diff] [blame] | 3582 | } |
Al Viro | dae6ad8 | 2011-06-26 11:50:15 -0400 | [diff] [blame] | 3583 | EXPORT_SYMBOL(kern_path_create); |
| 3584 | |
Al Viro | 921a165 | 2012-07-20 01:15:31 +0400 | [diff] [blame] | 3585 | void done_path_create(struct path *path, struct dentry *dentry) |
| 3586 | { |
| 3587 | dput(dentry); |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 3588 | inode_unlock(path->dentry->d_inode); |
Al Viro | a8104a9 | 2012-07-20 02:25:00 +0400 | [diff] [blame] | 3589 | mnt_drop_write(path->mnt); |
Al Viro | 921a165 | 2012-07-20 01:15:31 +0400 | [diff] [blame] | 3590 | path_put(path); |
| 3591 | } |
| 3592 | EXPORT_SYMBOL(done_path_create); |
| 3593 | |
Al Viro | 520ae68 | 2015-05-13 07:00:28 -0400 | [diff] [blame] | 3594 | inline struct dentry *user_path_create(int dfd, const char __user *pathname, |
Jeff Layton | 1ac12b4 | 2012-12-11 12:10:06 -0500 | [diff] [blame] | 3595 | struct path *path, unsigned int lookup_flags) |
Al Viro | dae6ad8 | 2011-06-26 11:50:15 -0400 | [diff] [blame] | 3596 | { |
Al Viro | 181c37b | 2015-05-12 17:21:25 -0400 | [diff] [blame] | 3597 | return filename_create(dfd, getname(pathname), path, lookup_flags); |
Al Viro | dae6ad8 | 2011-06-26 11:50:15 -0400 | [diff] [blame] | 3598 | } |
| 3599 | EXPORT_SYMBOL(user_path_create); |
| 3600 | |
Al Viro | 1a67aaf | 2011-07-26 01:52:52 -0400 | [diff] [blame] | 3601 | 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] | 3602 | { |
Miklos Szeredi | a95164d | 2008-07-30 15:08:48 +0200 | [diff] [blame] | 3603 | int error = may_create(dir, dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3604 | |
| 3605 | if (error) |
| 3606 | return error; |
| 3607 | |
Christian Brauner | 94f8200 | 2018-07-05 17:51:20 +0200 | [diff] [blame] | 3608 | if ((S_ISCHR(mode) || S_ISBLK(mode)) && !capable(CAP_MKNOD)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3609 | return -EPERM; |
| 3610 | |
Al Viro | acfa438 | 2008-12-04 10:06:33 -0500 | [diff] [blame] | 3611 | if (!dir->i_op->mknod) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3612 | return -EPERM; |
| 3613 | |
Serge E. Hallyn | 08ce5f1 | 2008-04-29 01:00:10 -0700 | [diff] [blame] | 3614 | error = devcgroup_inode_mknod(mode, dev); |
| 3615 | if (error) |
| 3616 | return error; |
| 3617 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3618 | error = security_inode_mknod(dir, dentry, mode, dev); |
| 3619 | if (error) |
| 3620 | return error; |
| 3621 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3622 | error = dir->i_op->mknod(dir, dentry, mode, dev); |
Stephen Smalley | a74574a | 2005-09-09 13:01:44 -0700 | [diff] [blame] | 3623 | if (!error) |
Amy Griffis | f38aa94 | 2005-11-03 15:57:06 +0000 | [diff] [blame] | 3624 | fsnotify_create(dir, dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3625 | return error; |
| 3626 | } |
Al Viro | 4d35950 | 2014-03-14 12:20:17 -0400 | [diff] [blame] | 3627 | EXPORT_SYMBOL(vfs_mknod); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3628 | |
Al Viro | f69aac0 | 2011-07-26 04:31:40 -0400 | [diff] [blame] | 3629 | static int may_mknod(umode_t mode) |
Dave Hansen | 463c319 | 2008-02-15 14:37:57 -0800 | [diff] [blame] | 3630 | { |
| 3631 | switch (mode & S_IFMT) { |
| 3632 | case S_IFREG: |
| 3633 | case S_IFCHR: |
| 3634 | case S_IFBLK: |
| 3635 | case S_IFIFO: |
| 3636 | case S_IFSOCK: |
| 3637 | case 0: /* zero mode translates to S_IFREG */ |
| 3638 | return 0; |
| 3639 | case S_IFDIR: |
| 3640 | return -EPERM; |
| 3641 | default: |
| 3642 | return -EINVAL; |
| 3643 | } |
| 3644 | } |
| 3645 | |
Dominik Brodowski | 87c4e19 | 2018-03-11 11:34:50 +0100 | [diff] [blame] | 3646 | long do_mknodat(int dfd, const char __user *filename, umode_t mode, |
| 3647 | unsigned int dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3648 | { |
Al Viro | 2ad94ae | 2008-07-21 09:32:51 -0400 | [diff] [blame] | 3649 | struct dentry *dentry; |
Al Viro | dae6ad8 | 2011-06-26 11:50:15 -0400 | [diff] [blame] | 3650 | struct path path; |
| 3651 | int error; |
Jeff Layton | 972567f | 2012-12-20 16:00:10 -0500 | [diff] [blame] | 3652 | unsigned int lookup_flags = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3653 | |
Al Viro | 8e4bfca | 2012-07-20 01:17:26 +0400 | [diff] [blame] | 3654 | error = may_mknod(mode); |
| 3655 | if (error) |
| 3656 | return error; |
Jeff Layton | 972567f | 2012-12-20 16:00:10 -0500 | [diff] [blame] | 3657 | retry: |
| 3658 | dentry = user_path_create(dfd, filename, &path, lookup_flags); |
Al Viro | dae6ad8 | 2011-06-26 11:50:15 -0400 | [diff] [blame] | 3659 | if (IS_ERR(dentry)) |
| 3660 | return PTR_ERR(dentry); |
Al Viro | 2ad94ae | 2008-07-21 09:32:51 -0400 | [diff] [blame] | 3661 | |
Al Viro | dae6ad8 | 2011-06-26 11:50:15 -0400 | [diff] [blame] | 3662 | if (!IS_POSIXACL(path.dentry->d_inode)) |
Al Viro | ce3b0f8 | 2009-03-29 19:08:22 -0400 | [diff] [blame] | 3663 | mode &= ~current_umask(); |
Al Viro | dae6ad8 | 2011-06-26 11:50:15 -0400 | [diff] [blame] | 3664 | error = security_path_mknod(&path, dentry, mode, dev); |
Kentaro Takeda | be6d3e5 | 2008-12-17 13:24:15 +0900 | [diff] [blame] | 3665 | if (error) |
Al Viro | a8104a9 | 2012-07-20 02:25:00 +0400 | [diff] [blame] | 3666 | goto out; |
Dave Hansen | 463c319 | 2008-02-15 14:37:57 -0800 | [diff] [blame] | 3667 | switch (mode & S_IFMT) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3668 | case 0: case S_IFREG: |
Al Viro | 312b63f | 2012-06-10 18:09:36 -0400 | [diff] [blame] | 3669 | error = vfs_create(path.dentry->d_inode,dentry,mode,true); |
Mimi Zohar | 05d1a71 | 2016-02-29 19:52:05 -0500 | [diff] [blame] | 3670 | if (!error) |
| 3671 | ima_post_path_mknod(dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3672 | break; |
| 3673 | case S_IFCHR: case S_IFBLK: |
Al Viro | dae6ad8 | 2011-06-26 11:50:15 -0400 | [diff] [blame] | 3674 | error = vfs_mknod(path.dentry->d_inode,dentry,mode, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3675 | new_decode_dev(dev)); |
| 3676 | break; |
| 3677 | case S_IFIFO: case S_IFSOCK: |
Al Viro | dae6ad8 | 2011-06-26 11:50:15 -0400 | [diff] [blame] | 3678 | error = vfs_mknod(path.dentry->d_inode,dentry,mode,0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3679 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3680 | } |
Al Viro | a8104a9 | 2012-07-20 02:25:00 +0400 | [diff] [blame] | 3681 | out: |
Al Viro | 921a165 | 2012-07-20 01:15:31 +0400 | [diff] [blame] | 3682 | done_path_create(&path, dentry); |
Jeff Layton | 972567f | 2012-12-20 16:00:10 -0500 | [diff] [blame] | 3683 | if (retry_estale(error, lookup_flags)) { |
| 3684 | lookup_flags |= LOOKUP_REVAL; |
| 3685 | goto retry; |
| 3686 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3687 | return error; |
| 3688 | } |
| 3689 | |
Dominik Brodowski | 87c4e19 | 2018-03-11 11:34:50 +0100 | [diff] [blame] | 3690 | SYSCALL_DEFINE4(mknodat, int, dfd, const char __user *, filename, umode_t, mode, |
| 3691 | unsigned int, dev) |
| 3692 | { |
| 3693 | return do_mknodat(dfd, filename, mode, dev); |
| 3694 | } |
| 3695 | |
Al Viro | 8208a22 | 2011-07-25 17:32:17 -0400 | [diff] [blame] | 3696 | SYSCALL_DEFINE3(mknod, const char __user *, filename, umode_t, mode, unsigned, dev) |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 3697 | { |
Dominik Brodowski | 87c4e19 | 2018-03-11 11:34:50 +0100 | [diff] [blame] | 3698 | return do_mknodat(AT_FDCWD, filename, mode, dev); |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 3699 | } |
| 3700 | |
Al Viro | 18bb1db | 2011-07-26 01:41:39 -0400 | [diff] [blame] | 3701 | int vfs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3702 | { |
Miklos Szeredi | a95164d | 2008-07-30 15:08:48 +0200 | [diff] [blame] | 3703 | int error = may_create(dir, dentry); |
Al Viro | 8de5277 | 2012-02-06 12:45:27 -0500 | [diff] [blame] | 3704 | unsigned max_links = dir->i_sb->s_max_links; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3705 | |
| 3706 | if (error) |
| 3707 | return error; |
| 3708 | |
Al Viro | acfa438 | 2008-12-04 10:06:33 -0500 | [diff] [blame] | 3709 | if (!dir->i_op->mkdir) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3710 | return -EPERM; |
| 3711 | |
| 3712 | mode &= (S_IRWXUGO|S_ISVTX); |
| 3713 | error = security_inode_mkdir(dir, dentry, mode); |
| 3714 | if (error) |
| 3715 | return error; |
| 3716 | |
Al Viro | 8de5277 | 2012-02-06 12:45:27 -0500 | [diff] [blame] | 3717 | if (max_links && dir->i_nlink >= max_links) |
| 3718 | return -EMLINK; |
| 3719 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3720 | error = dir->i_op->mkdir(dir, dentry, mode); |
Stephen Smalley | a74574a | 2005-09-09 13:01:44 -0700 | [diff] [blame] | 3721 | if (!error) |
Amy Griffis | f38aa94 | 2005-11-03 15:57:06 +0000 | [diff] [blame] | 3722 | fsnotify_mkdir(dir, dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3723 | return error; |
| 3724 | } |
Al Viro | 4d35950 | 2014-03-14 12:20:17 -0400 | [diff] [blame] | 3725 | EXPORT_SYMBOL(vfs_mkdir); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3726 | |
Dominik Brodowski | 0101db7 | 2018-03-11 11:34:49 +0100 | [diff] [blame] | 3727 | long do_mkdirat(int dfd, const char __user *pathname, umode_t mode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3728 | { |
Dave Hansen | 6902d92 | 2006-09-30 23:29:01 -0700 | [diff] [blame] | 3729 | struct dentry *dentry; |
Al Viro | dae6ad8 | 2011-06-26 11:50:15 -0400 | [diff] [blame] | 3730 | struct path path; |
| 3731 | int error; |
Jeff Layton | b76d8b8 | 2012-12-20 16:04:09 -0500 | [diff] [blame] | 3732 | unsigned int lookup_flags = LOOKUP_DIRECTORY; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3733 | |
Jeff Layton | b76d8b8 | 2012-12-20 16:04:09 -0500 | [diff] [blame] | 3734 | retry: |
| 3735 | dentry = user_path_create(dfd, pathname, &path, lookup_flags); |
Dave Hansen | 6902d92 | 2006-09-30 23:29:01 -0700 | [diff] [blame] | 3736 | if (IS_ERR(dentry)) |
Al Viro | dae6ad8 | 2011-06-26 11:50:15 -0400 | [diff] [blame] | 3737 | return PTR_ERR(dentry); |
Dave Hansen | 6902d92 | 2006-09-30 23:29:01 -0700 | [diff] [blame] | 3738 | |
Al Viro | dae6ad8 | 2011-06-26 11:50:15 -0400 | [diff] [blame] | 3739 | if (!IS_POSIXACL(path.dentry->d_inode)) |
Al Viro | ce3b0f8 | 2009-03-29 19:08:22 -0400 | [diff] [blame] | 3740 | mode &= ~current_umask(); |
Al Viro | dae6ad8 | 2011-06-26 11:50:15 -0400 | [diff] [blame] | 3741 | error = security_path_mkdir(&path, dentry, mode); |
Al Viro | a8104a9 | 2012-07-20 02:25:00 +0400 | [diff] [blame] | 3742 | if (!error) |
| 3743 | error = vfs_mkdir(path.dentry->d_inode, dentry, mode); |
Al Viro | 921a165 | 2012-07-20 01:15:31 +0400 | [diff] [blame] | 3744 | done_path_create(&path, dentry); |
Jeff Layton | b76d8b8 | 2012-12-20 16:04:09 -0500 | [diff] [blame] | 3745 | if (retry_estale(error, lookup_flags)) { |
| 3746 | lookup_flags |= LOOKUP_REVAL; |
| 3747 | goto retry; |
| 3748 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3749 | return error; |
| 3750 | } |
| 3751 | |
Dominik Brodowski | 0101db7 | 2018-03-11 11:34:49 +0100 | [diff] [blame] | 3752 | SYSCALL_DEFINE3(mkdirat, int, dfd, const char __user *, pathname, umode_t, mode) |
| 3753 | { |
| 3754 | return do_mkdirat(dfd, pathname, mode); |
| 3755 | } |
| 3756 | |
Al Viro | a218d0f | 2011-11-21 14:59:34 -0500 | [diff] [blame] | 3757 | SYSCALL_DEFINE2(mkdir, const char __user *, pathname, umode_t, mode) |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 3758 | { |
Dominik Brodowski | 0101db7 | 2018-03-11 11:34:49 +0100 | [diff] [blame] | 3759 | return do_mkdirat(AT_FDCWD, pathname, mode); |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 3760 | } |
| 3761 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3762 | int vfs_rmdir(struct inode *dir, struct dentry *dentry) |
| 3763 | { |
| 3764 | int error = may_delete(dir, dentry, 1); |
| 3765 | |
| 3766 | if (error) |
| 3767 | return error; |
| 3768 | |
Al Viro | acfa438 | 2008-12-04 10:06:33 -0500 | [diff] [blame] | 3769 | if (!dir->i_op->rmdir) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3770 | return -EPERM; |
| 3771 | |
Al Viro | 1d2ef59 | 2011-09-14 18:55:41 +0100 | [diff] [blame] | 3772 | dget(dentry); |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 3773 | inode_lock(dentry->d_inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3774 | |
Sage Weil | 912dbc1 | 2011-05-24 13:06:11 -0700 | [diff] [blame] | 3775 | error = -EBUSY; |
Eric W. Biederman | 7af1364 | 2013-10-04 19:15:13 -0700 | [diff] [blame] | 3776 | if (is_local_mountpoint(dentry)) |
Sage Weil | 912dbc1 | 2011-05-24 13:06:11 -0700 | [diff] [blame] | 3777 | goto out; |
| 3778 | |
| 3779 | error = security_inode_rmdir(dir, dentry); |
| 3780 | if (error) |
| 3781 | goto out; |
| 3782 | |
| 3783 | error = dir->i_op->rmdir(dir, dentry); |
| 3784 | if (error) |
| 3785 | goto out; |
| 3786 | |
Al Viro | 8767712 | 2018-05-27 16:23:51 -0400 | [diff] [blame] | 3787 | shrink_dcache_parent(dentry); |
Sage Weil | 912dbc1 | 2011-05-24 13:06:11 -0700 | [diff] [blame] | 3788 | dentry->d_inode->i_flags |= S_DEAD; |
| 3789 | dont_mount(dentry); |
Eric W. Biederman | 8ed936b | 2013-10-01 18:33:48 -0700 | [diff] [blame] | 3790 | detach_mounts(dentry); |
Amir Goldstein | 116b973 | 2019-05-26 17:34:02 +0300 | [diff] [blame] | 3791 | fsnotify_rmdir(dir, dentry); |
Sage Weil | 912dbc1 | 2011-05-24 13:06:11 -0700 | [diff] [blame] | 3792 | |
| 3793 | out: |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 3794 | inode_unlock(dentry->d_inode); |
Al Viro | 1d2ef59 | 2011-09-14 18:55:41 +0100 | [diff] [blame] | 3795 | dput(dentry); |
Sage Weil | 912dbc1 | 2011-05-24 13:06:11 -0700 | [diff] [blame] | 3796 | if (!error) |
| 3797 | d_delete(dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3798 | return error; |
| 3799 | } |
Al Viro | 4d35950 | 2014-03-14 12:20:17 -0400 | [diff] [blame] | 3800 | EXPORT_SYMBOL(vfs_rmdir); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3801 | |
Dominik Brodowski | f459dffa | 2018-03-11 11:34:48 +0100 | [diff] [blame] | 3802 | long do_rmdir(int dfd, const char __user *pathname) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3803 | { |
| 3804 | int error = 0; |
Jeff Layton | 91a27b2 | 2012-10-10 15:25:28 -0400 | [diff] [blame] | 3805 | struct filename *name; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3806 | struct dentry *dentry; |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 3807 | struct path path; |
| 3808 | struct qstr last; |
| 3809 | int type; |
Jeff Layton | c6ee920 | 2012-12-20 16:28:33 -0500 | [diff] [blame] | 3810 | unsigned int lookup_flags = 0; |
| 3811 | retry: |
Al Viro | c1d4dd2 | 2016-06-05 16:38:18 -0400 | [diff] [blame] | 3812 | name = filename_parentat(dfd, getname(pathname), lookup_flags, |
| 3813 | &path, &last, &type); |
Jeff Layton | 91a27b2 | 2012-10-10 15:25:28 -0400 | [diff] [blame] | 3814 | if (IS_ERR(name)) |
| 3815 | return PTR_ERR(name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3816 | |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 3817 | switch (type) { |
OGAWA Hirofumi | 0612d9f | 2008-10-16 07:50:29 +0900 | [diff] [blame] | 3818 | case LAST_DOTDOT: |
| 3819 | error = -ENOTEMPTY; |
| 3820 | goto exit1; |
| 3821 | case LAST_DOT: |
| 3822 | error = -EINVAL; |
| 3823 | goto exit1; |
| 3824 | case LAST_ROOT: |
| 3825 | error = -EBUSY; |
| 3826 | goto exit1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3827 | } |
OGAWA Hirofumi | 0612d9f | 2008-10-16 07:50:29 +0900 | [diff] [blame] | 3828 | |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 3829 | error = mnt_want_write(path.mnt); |
Jan Kara | c30dabf | 2012-06-12 16:20:30 +0200 | [diff] [blame] | 3830 | if (error) |
| 3831 | goto exit1; |
OGAWA Hirofumi | 0612d9f | 2008-10-16 07:50:29 +0900 | [diff] [blame] | 3832 | |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 3833 | inode_lock_nested(path.dentry->d_inode, I_MUTEX_PARENT); |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 3834 | dentry = __lookup_hash(&last, path.dentry, lookup_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3835 | error = PTR_ERR(dentry); |
Dave Hansen | 6902d92 | 2006-09-30 23:29:01 -0700 | [diff] [blame] | 3836 | if (IS_ERR(dentry)) |
| 3837 | goto exit2; |
Theodore Ts'o | e6bc45d | 2011-06-06 19:19:40 -0400 | [diff] [blame] | 3838 | if (!dentry->d_inode) { |
| 3839 | error = -ENOENT; |
| 3840 | goto exit3; |
| 3841 | } |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 3842 | error = security_path_rmdir(&path, dentry); |
Kentaro Takeda | be6d3e5 | 2008-12-17 13:24:15 +0900 | [diff] [blame] | 3843 | if (error) |
Jan Kara | c30dabf | 2012-06-12 16:20:30 +0200 | [diff] [blame] | 3844 | goto exit3; |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 3845 | error = vfs_rmdir(path.dentry->d_inode, dentry); |
Dave Hansen | 0622753 | 2008-02-15 14:37:34 -0800 | [diff] [blame] | 3846 | exit3: |
Dave Hansen | 6902d92 | 2006-09-30 23:29:01 -0700 | [diff] [blame] | 3847 | dput(dentry); |
| 3848 | exit2: |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 3849 | inode_unlock(path.dentry->d_inode); |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 3850 | mnt_drop_write(path.mnt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3851 | exit1: |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 3852 | path_put(&path); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3853 | putname(name); |
Jeff Layton | c6ee920 | 2012-12-20 16:28:33 -0500 | [diff] [blame] | 3854 | if (retry_estale(error, lookup_flags)) { |
| 3855 | lookup_flags |= LOOKUP_REVAL; |
| 3856 | goto retry; |
| 3857 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3858 | return error; |
| 3859 | } |
| 3860 | |
Heiko Carstens | 3cdad42 | 2009-01-14 14:14:22 +0100 | [diff] [blame] | 3861 | SYSCALL_DEFINE1(rmdir, const char __user *, pathname) |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 3862 | { |
| 3863 | return do_rmdir(AT_FDCWD, pathname); |
| 3864 | } |
| 3865 | |
J. Bruce Fields | b21996e | 2011-09-20 09:14:34 -0400 | [diff] [blame] | 3866 | /** |
| 3867 | * vfs_unlink - unlink a filesystem object |
| 3868 | * @dir: parent directory |
| 3869 | * @dentry: victim |
| 3870 | * @delegated_inode: returns victim inode, if the inode is delegated. |
| 3871 | * |
| 3872 | * The caller must hold dir->i_mutex. |
| 3873 | * |
| 3874 | * If vfs_unlink discovers a delegation, it will return -EWOULDBLOCK and |
| 3875 | * return a reference to the inode in delegated_inode. The caller |
| 3876 | * should then break the delegation on that inode and retry. Because |
| 3877 | * breaking a delegation may take a long time, the caller should drop |
| 3878 | * dir->i_mutex before doing so. |
| 3879 | * |
| 3880 | * Alternatively, a caller may pass NULL for delegated_inode. This may |
| 3881 | * be appropriate for callers that expect the underlying filesystem not |
| 3882 | * to be NFS exported. |
| 3883 | */ |
| 3884 | 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] | 3885 | { |
J. Bruce Fields | 9accbb9 | 2012-08-28 07:03:24 -0400 | [diff] [blame] | 3886 | struct inode *target = dentry->d_inode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3887 | int error = may_delete(dir, dentry, 0); |
| 3888 | |
| 3889 | if (error) |
| 3890 | return error; |
| 3891 | |
Al Viro | acfa438 | 2008-12-04 10:06:33 -0500 | [diff] [blame] | 3892 | if (!dir->i_op->unlink) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3893 | return -EPERM; |
| 3894 | |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 3895 | inode_lock(target); |
Eric W. Biederman | 8ed936b | 2013-10-01 18:33:48 -0700 | [diff] [blame] | 3896 | if (is_local_mountpoint(dentry)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3897 | error = -EBUSY; |
| 3898 | else { |
| 3899 | error = security_inode_unlink(dir, dentry); |
Al Viro | bec1052 | 2010-03-03 14:12:08 -0500 | [diff] [blame] | 3900 | if (!error) { |
J. Bruce Fields | 5a14696 | 2012-08-28 07:50:40 -0700 | [diff] [blame] | 3901 | error = try_break_deleg(target, delegated_inode); |
| 3902 | if (error) |
J. Bruce Fields | b21996e | 2011-09-20 09:14:34 -0400 | [diff] [blame] | 3903 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3904 | error = dir->i_op->unlink(dir, dentry); |
Eric W. Biederman | 8ed936b | 2013-10-01 18:33:48 -0700 | [diff] [blame] | 3905 | if (!error) { |
Al Viro | d83c49f | 2010-04-30 17:17:09 -0400 | [diff] [blame] | 3906 | dont_mount(dentry); |
Eric W. Biederman | 8ed936b | 2013-10-01 18:33:48 -0700 | [diff] [blame] | 3907 | detach_mounts(dentry); |
Amir Goldstein | 116b973 | 2019-05-26 17:34:02 +0300 | [diff] [blame] | 3908 | fsnotify_unlink(dir, dentry); |
Eric W. Biederman | 8ed936b | 2013-10-01 18:33:48 -0700 | [diff] [blame] | 3909 | } |
Al Viro | bec1052 | 2010-03-03 14:12:08 -0500 | [diff] [blame] | 3910 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3911 | } |
J. Bruce Fields | b21996e | 2011-09-20 09:14:34 -0400 | [diff] [blame] | 3912 | out: |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 3913 | inode_unlock(target); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3914 | |
| 3915 | /* We don't d_delete() NFS sillyrenamed files--they still exist. */ |
| 3916 | if (!error && !(dentry->d_flags & DCACHE_NFSFS_RENAMED)) { |
J. Bruce Fields | 9accbb9 | 2012-08-28 07:03:24 -0400 | [diff] [blame] | 3917 | fsnotify_link_count(target); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3918 | d_delete(dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3919 | } |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 3920 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3921 | return error; |
| 3922 | } |
Al Viro | 4d35950 | 2014-03-14 12:20:17 -0400 | [diff] [blame] | 3923 | EXPORT_SYMBOL(vfs_unlink); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3924 | |
| 3925 | /* |
| 3926 | * 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] | 3927 | * 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] | 3928 | * writeout happening, and we don't want to prevent access to the directory |
| 3929 | * while waiting on the I/O. |
| 3930 | */ |
Christoph Hellwig | da2f136 | 2017-11-04 13:44:45 +0300 | [diff] [blame] | 3931 | long do_unlinkat(int dfd, struct filename *name) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3932 | { |
Al Viro | 2ad94ae | 2008-07-21 09:32:51 -0400 | [diff] [blame] | 3933 | int error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3934 | struct dentry *dentry; |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 3935 | struct path path; |
| 3936 | struct qstr last; |
| 3937 | int type; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3938 | struct inode *inode = NULL; |
J. Bruce Fields | b21996e | 2011-09-20 09:14:34 -0400 | [diff] [blame] | 3939 | struct inode *delegated_inode = NULL; |
Jeff Layton | 5d18f81 | 2012-12-20 16:38:04 -0500 | [diff] [blame] | 3940 | unsigned int lookup_flags = 0; |
| 3941 | retry: |
Christoph Hellwig | da2f136 | 2017-11-04 13:44:45 +0300 | [diff] [blame] | 3942 | name = filename_parentat(dfd, name, lookup_flags, &path, &last, &type); |
Jeff Layton | 91a27b2 | 2012-10-10 15:25:28 -0400 | [diff] [blame] | 3943 | if (IS_ERR(name)) |
| 3944 | return PTR_ERR(name); |
Al Viro | 2ad94ae | 2008-07-21 09:32:51 -0400 | [diff] [blame] | 3945 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3946 | error = -EISDIR; |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 3947 | if (type != LAST_NORM) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3948 | goto exit1; |
OGAWA Hirofumi | 0612d9f | 2008-10-16 07:50:29 +0900 | [diff] [blame] | 3949 | |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 3950 | error = mnt_want_write(path.mnt); |
Jan Kara | c30dabf | 2012-06-12 16:20:30 +0200 | [diff] [blame] | 3951 | if (error) |
| 3952 | goto exit1; |
J. Bruce Fields | b21996e | 2011-09-20 09:14:34 -0400 | [diff] [blame] | 3953 | retry_deleg: |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 3954 | inode_lock_nested(path.dentry->d_inode, I_MUTEX_PARENT); |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 3955 | dentry = __lookup_hash(&last, path.dentry, lookup_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3956 | error = PTR_ERR(dentry); |
| 3957 | if (!IS_ERR(dentry)) { |
| 3958 | /* Why not before? Because we want correct error value */ |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 3959 | if (last.name[last.len]) |
Török Edwin | 50338b8 | 2011-06-16 00:06:14 +0300 | [diff] [blame] | 3960 | goto slashes; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3961 | inode = dentry->d_inode; |
David Howells | b18825a | 2013-09-12 19:22:53 +0100 | [diff] [blame] | 3962 | if (d_is_negative(dentry)) |
Theodore Ts'o | e6bc45d | 2011-06-06 19:19:40 -0400 | [diff] [blame] | 3963 | goto slashes; |
| 3964 | ihold(inode); |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 3965 | error = security_path_unlink(&path, dentry); |
Kentaro Takeda | be6d3e5 | 2008-12-17 13:24:15 +0900 | [diff] [blame] | 3966 | if (error) |
Jan Kara | c30dabf | 2012-06-12 16:20:30 +0200 | [diff] [blame] | 3967 | goto exit2; |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 3968 | error = vfs_unlink(path.dentry->d_inode, dentry, &delegated_inode); |
Jan Kara | c30dabf | 2012-06-12 16:20:30 +0200 | [diff] [blame] | 3969 | exit2: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3970 | dput(dentry); |
| 3971 | } |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 3972 | inode_unlock(path.dentry->d_inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3973 | if (inode) |
| 3974 | iput(inode); /* truncate the inode here */ |
J. Bruce Fields | b21996e | 2011-09-20 09:14:34 -0400 | [diff] [blame] | 3975 | inode = NULL; |
| 3976 | if (delegated_inode) { |
J. Bruce Fields | 5a14696 | 2012-08-28 07:50:40 -0700 | [diff] [blame] | 3977 | error = break_deleg_wait(&delegated_inode); |
J. Bruce Fields | b21996e | 2011-09-20 09:14:34 -0400 | [diff] [blame] | 3978 | if (!error) |
| 3979 | goto retry_deleg; |
| 3980 | } |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 3981 | mnt_drop_write(path.mnt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3982 | exit1: |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 3983 | path_put(&path); |
Jeff Layton | 5d18f81 | 2012-12-20 16:38:04 -0500 | [diff] [blame] | 3984 | if (retry_estale(error, lookup_flags)) { |
| 3985 | lookup_flags |= LOOKUP_REVAL; |
| 3986 | inode = NULL; |
| 3987 | goto retry; |
| 3988 | } |
Christoph Hellwig | da2f136 | 2017-11-04 13:44:45 +0300 | [diff] [blame] | 3989 | putname(name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3990 | return error; |
| 3991 | |
| 3992 | slashes: |
David Howells | b18825a | 2013-09-12 19:22:53 +0100 | [diff] [blame] | 3993 | if (d_is_negative(dentry)) |
| 3994 | error = -ENOENT; |
Miklos Szeredi | 44b1d53 | 2014-04-01 17:08:41 +0200 | [diff] [blame] | 3995 | else if (d_is_dir(dentry)) |
David Howells | b18825a | 2013-09-12 19:22:53 +0100 | [diff] [blame] | 3996 | error = -EISDIR; |
| 3997 | else |
| 3998 | error = -ENOTDIR; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3999 | goto exit2; |
| 4000 | } |
| 4001 | |
Heiko Carstens | 2e4d092 | 2009-01-14 14:14:31 +0100 | [diff] [blame] | 4002 | SYSCALL_DEFINE3(unlinkat, int, dfd, const char __user *, pathname, int, flag) |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 4003 | { |
| 4004 | if ((flag & ~AT_REMOVEDIR) != 0) |
| 4005 | return -EINVAL; |
| 4006 | |
| 4007 | if (flag & AT_REMOVEDIR) |
| 4008 | return do_rmdir(dfd, pathname); |
| 4009 | |
Christoph Hellwig | da2f136 | 2017-11-04 13:44:45 +0300 | [diff] [blame] | 4010 | return do_unlinkat(dfd, getname(pathname)); |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 4011 | } |
| 4012 | |
Heiko Carstens | 3480b25 | 2009-01-14 14:14:16 +0100 | [diff] [blame] | 4013 | SYSCALL_DEFINE1(unlink, const char __user *, pathname) |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 4014 | { |
Christoph Hellwig | da2f136 | 2017-11-04 13:44:45 +0300 | [diff] [blame] | 4015 | return do_unlinkat(AT_FDCWD, getname(pathname)); |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 4016 | } |
| 4017 | |
Miklos Szeredi | db2e747 | 2008-06-24 16:50:16 +0200 | [diff] [blame] | 4018 | int vfs_symlink(struct inode *dir, struct dentry *dentry, const char *oldname) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4019 | { |
Miklos Szeredi | a95164d | 2008-07-30 15:08:48 +0200 | [diff] [blame] | 4020 | int error = may_create(dir, dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4021 | |
| 4022 | if (error) |
| 4023 | return error; |
| 4024 | |
Al Viro | acfa438 | 2008-12-04 10:06:33 -0500 | [diff] [blame] | 4025 | if (!dir->i_op->symlink) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4026 | return -EPERM; |
| 4027 | |
| 4028 | error = security_inode_symlink(dir, dentry, oldname); |
| 4029 | if (error) |
| 4030 | return error; |
| 4031 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4032 | error = dir->i_op->symlink(dir, dentry, oldname); |
Stephen Smalley | a74574a | 2005-09-09 13:01:44 -0700 | [diff] [blame] | 4033 | if (!error) |
Amy Griffis | f38aa94 | 2005-11-03 15:57:06 +0000 | [diff] [blame] | 4034 | fsnotify_create(dir, dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4035 | return error; |
| 4036 | } |
Al Viro | 4d35950 | 2014-03-14 12:20:17 -0400 | [diff] [blame] | 4037 | EXPORT_SYMBOL(vfs_symlink); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4038 | |
Dominik Brodowski | b724e84 | 2018-03-11 11:34:49 +0100 | [diff] [blame] | 4039 | long do_symlinkat(const char __user *oldname, int newdfd, |
| 4040 | const char __user *newname) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4041 | { |
Al Viro | 2ad94ae | 2008-07-21 09:32:51 -0400 | [diff] [blame] | 4042 | int error; |
Jeff Layton | 91a27b2 | 2012-10-10 15:25:28 -0400 | [diff] [blame] | 4043 | struct filename *from; |
Dave Hansen | 6902d92 | 2006-09-30 23:29:01 -0700 | [diff] [blame] | 4044 | struct dentry *dentry; |
Al Viro | dae6ad8 | 2011-06-26 11:50:15 -0400 | [diff] [blame] | 4045 | struct path path; |
Jeff Layton | f46d356 | 2012-12-11 12:10:08 -0500 | [diff] [blame] | 4046 | unsigned int lookup_flags = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4047 | |
| 4048 | from = getname(oldname); |
Al Viro | 2ad94ae | 2008-07-21 09:32:51 -0400 | [diff] [blame] | 4049 | if (IS_ERR(from)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4050 | return PTR_ERR(from); |
Jeff Layton | f46d356 | 2012-12-11 12:10:08 -0500 | [diff] [blame] | 4051 | retry: |
| 4052 | dentry = user_path_create(newdfd, newname, &path, lookup_flags); |
Dave Hansen | 6902d92 | 2006-09-30 23:29:01 -0700 | [diff] [blame] | 4053 | error = PTR_ERR(dentry); |
| 4054 | if (IS_ERR(dentry)) |
Al Viro | dae6ad8 | 2011-06-26 11:50:15 -0400 | [diff] [blame] | 4055 | goto out_putname; |
Dave Hansen | 6902d92 | 2006-09-30 23:29:01 -0700 | [diff] [blame] | 4056 | |
Jeff Layton | 91a27b2 | 2012-10-10 15:25:28 -0400 | [diff] [blame] | 4057 | error = security_path_symlink(&path, dentry, from->name); |
Al Viro | a8104a9 | 2012-07-20 02:25:00 +0400 | [diff] [blame] | 4058 | if (!error) |
Jeff Layton | 91a27b2 | 2012-10-10 15:25:28 -0400 | [diff] [blame] | 4059 | error = vfs_symlink(path.dentry->d_inode, dentry, from->name); |
Al Viro | 921a165 | 2012-07-20 01:15:31 +0400 | [diff] [blame] | 4060 | done_path_create(&path, dentry); |
Jeff Layton | f46d356 | 2012-12-11 12:10:08 -0500 | [diff] [blame] | 4061 | if (retry_estale(error, lookup_flags)) { |
| 4062 | lookup_flags |= LOOKUP_REVAL; |
| 4063 | goto retry; |
| 4064 | } |
Dave Hansen | 6902d92 | 2006-09-30 23:29:01 -0700 | [diff] [blame] | 4065 | out_putname: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4066 | putname(from); |
| 4067 | return error; |
| 4068 | } |
| 4069 | |
Dominik Brodowski | b724e84 | 2018-03-11 11:34:49 +0100 | [diff] [blame] | 4070 | SYSCALL_DEFINE3(symlinkat, const char __user *, oldname, |
| 4071 | int, newdfd, const char __user *, newname) |
| 4072 | { |
| 4073 | return do_symlinkat(oldname, newdfd, newname); |
| 4074 | } |
| 4075 | |
Heiko Carstens | 3480b25 | 2009-01-14 14:14:16 +0100 | [diff] [blame] | 4076 | SYSCALL_DEFINE2(symlink, const char __user *, oldname, const char __user *, newname) |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 4077 | { |
Dominik Brodowski | b724e84 | 2018-03-11 11:34:49 +0100 | [diff] [blame] | 4078 | return do_symlinkat(oldname, AT_FDCWD, newname); |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 4079 | } |
| 4080 | |
J. Bruce Fields | 146a859 | 2011-09-20 17:14:31 -0400 | [diff] [blame] | 4081 | /** |
| 4082 | * vfs_link - create a new link |
| 4083 | * @old_dentry: object to be linked |
| 4084 | * @dir: new parent |
| 4085 | * @new_dentry: where to create the new link |
| 4086 | * @delegated_inode: returns inode needing a delegation break |
| 4087 | * |
| 4088 | * The caller must hold dir->i_mutex |
| 4089 | * |
| 4090 | * If vfs_link discovers a delegation on the to-be-linked file in need |
| 4091 | * of breaking, it will return -EWOULDBLOCK and return a reference to the |
| 4092 | * inode in delegated_inode. The caller should then break the delegation |
| 4093 | * and retry. Because breaking a delegation may take a long time, the |
| 4094 | * caller should drop the i_mutex before doing so. |
| 4095 | * |
| 4096 | * Alternatively, a caller may pass NULL for delegated_inode. This may |
| 4097 | * be appropriate for callers that expect the underlying filesystem not |
| 4098 | * to be NFS exported. |
| 4099 | */ |
| 4100 | 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] | 4101 | { |
| 4102 | struct inode *inode = old_dentry->d_inode; |
Al Viro | 8de5277 | 2012-02-06 12:45:27 -0500 | [diff] [blame] | 4103 | unsigned max_links = dir->i_sb->s_max_links; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4104 | int error; |
| 4105 | |
| 4106 | if (!inode) |
| 4107 | return -ENOENT; |
| 4108 | |
Miklos Szeredi | a95164d | 2008-07-30 15:08:48 +0200 | [diff] [blame] | 4109 | error = may_create(dir, new_dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4110 | if (error) |
| 4111 | return error; |
| 4112 | |
| 4113 | if (dir->i_sb != inode->i_sb) |
| 4114 | return -EXDEV; |
| 4115 | |
| 4116 | /* |
| 4117 | * A link to an append-only or immutable file cannot be created. |
| 4118 | */ |
| 4119 | if (IS_APPEND(inode) || IS_IMMUTABLE(inode)) |
| 4120 | return -EPERM; |
Eric W. Biederman | 0bd23d09 | 2016-06-29 14:54:46 -0500 | [diff] [blame] | 4121 | /* |
| 4122 | * Updating the link count will likely cause i_uid and i_gid to |
| 4123 | * be writen back improperly if their true value is unknown to |
| 4124 | * the vfs. |
| 4125 | */ |
| 4126 | if (HAS_UNMAPPED_ID(inode)) |
| 4127 | return -EPERM; |
Al Viro | acfa438 | 2008-12-04 10:06:33 -0500 | [diff] [blame] | 4128 | if (!dir->i_op->link) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4129 | return -EPERM; |
Tetsuo Handa | 7e79eed | 2008-06-24 16:50:15 +0200 | [diff] [blame] | 4130 | if (S_ISDIR(inode->i_mode)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4131 | return -EPERM; |
| 4132 | |
| 4133 | error = security_inode_link(old_dentry, dir, new_dentry); |
| 4134 | if (error) |
| 4135 | return error; |
| 4136 | |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 4137 | inode_lock(inode); |
Aneesh Kumar K.V | aae8a97 | 2011-01-29 18:43:27 +0530 | [diff] [blame] | 4138 | /* Make sure we don't allow creating hardlink to an unlinked file */ |
Al Viro | f4e0c30 | 2013-06-11 08:34:36 +0400 | [diff] [blame] | 4139 | if (inode->i_nlink == 0 && !(inode->i_state & I_LINKABLE)) |
Aneesh Kumar K.V | aae8a97 | 2011-01-29 18:43:27 +0530 | [diff] [blame] | 4140 | error = -ENOENT; |
Al Viro | 8de5277 | 2012-02-06 12:45:27 -0500 | [diff] [blame] | 4141 | else if (max_links && inode->i_nlink >= max_links) |
| 4142 | error = -EMLINK; |
J. Bruce Fields | 146a859 | 2011-09-20 17:14:31 -0400 | [diff] [blame] | 4143 | else { |
| 4144 | error = try_break_deleg(inode, delegated_inode); |
| 4145 | if (!error) |
| 4146 | error = dir->i_op->link(old_dentry, dir, new_dentry); |
| 4147 | } |
Al Viro | f4e0c30 | 2013-06-11 08:34:36 +0400 | [diff] [blame] | 4148 | |
| 4149 | if (!error && (inode->i_state & I_LINKABLE)) { |
| 4150 | spin_lock(&inode->i_lock); |
| 4151 | inode->i_state &= ~I_LINKABLE; |
| 4152 | spin_unlock(&inode->i_lock); |
| 4153 | } |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 4154 | inode_unlock(inode); |
Stephen Smalley | e31e14e | 2005-09-09 13:01:45 -0700 | [diff] [blame] | 4155 | if (!error) |
Tetsuo Handa | 7e79eed | 2008-06-24 16:50:15 +0200 | [diff] [blame] | 4156 | fsnotify_link(dir, inode, new_dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4157 | return error; |
| 4158 | } |
Al Viro | 4d35950 | 2014-03-14 12:20:17 -0400 | [diff] [blame] | 4159 | EXPORT_SYMBOL(vfs_link); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4160 | |
| 4161 | /* |
| 4162 | * Hardlinks are often used in delicate situations. We avoid |
| 4163 | * security-related surprises by not following symlinks on the |
| 4164 | * newname. --KAB |
| 4165 | * |
| 4166 | * We don't follow them on the oldname either to be compatible |
| 4167 | * with linux 2.0, and to avoid hard-linking to directories |
| 4168 | * and other special files. --ADM |
| 4169 | */ |
Dominik Brodowski | 46ea89e | 2018-03-11 11:34:53 +0100 | [diff] [blame] | 4170 | int do_linkat(int olddfd, const char __user *oldname, int newdfd, |
| 4171 | const char __user *newname, int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4172 | { |
| 4173 | struct dentry *new_dentry; |
Al Viro | dae6ad8 | 2011-06-26 11:50:15 -0400 | [diff] [blame] | 4174 | struct path old_path, new_path; |
J. Bruce Fields | 146a859 | 2011-09-20 17:14:31 -0400 | [diff] [blame] | 4175 | struct inode *delegated_inode = NULL; |
Aneesh Kumar K.V | 11a7b37 | 2011-01-29 18:43:42 +0530 | [diff] [blame] | 4176 | int how = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4177 | int error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4178 | |
Aneesh Kumar K.V | 11a7b37 | 2011-01-29 18:43:42 +0530 | [diff] [blame] | 4179 | if ((flags & ~(AT_SYMLINK_FOLLOW | AT_EMPTY_PATH)) != 0) |
Ulrich Drepper | c04030e | 2006-02-24 13:04:21 -0800 | [diff] [blame] | 4180 | return -EINVAL; |
Aneesh Kumar K.V | 11a7b37 | 2011-01-29 18:43:42 +0530 | [diff] [blame] | 4181 | /* |
Linus Torvalds | f0cc6ff | 2013-08-28 09:18:05 -0700 | [diff] [blame] | 4182 | * To use null names we require CAP_DAC_READ_SEARCH |
| 4183 | * This ensures that not everyone will be able to create |
| 4184 | * handlink using the passed filedescriptor. |
Aneesh Kumar K.V | 11a7b37 | 2011-01-29 18:43:42 +0530 | [diff] [blame] | 4185 | */ |
Linus Torvalds | f0cc6ff | 2013-08-28 09:18:05 -0700 | [diff] [blame] | 4186 | if (flags & AT_EMPTY_PATH) { |
| 4187 | if (!capable(CAP_DAC_READ_SEARCH)) |
| 4188 | return -ENOENT; |
Aneesh Kumar K.V | 11a7b37 | 2011-01-29 18:43:42 +0530 | [diff] [blame] | 4189 | how = LOOKUP_EMPTY; |
Linus Torvalds | f0cc6ff | 2013-08-28 09:18:05 -0700 | [diff] [blame] | 4190 | } |
Ulrich Drepper | c04030e | 2006-02-24 13:04:21 -0800 | [diff] [blame] | 4191 | |
Aneesh Kumar K.V | 11a7b37 | 2011-01-29 18:43:42 +0530 | [diff] [blame] | 4192 | if (flags & AT_SYMLINK_FOLLOW) |
| 4193 | how |= LOOKUP_FOLLOW; |
Jeff Layton | 442e31c | 2012-12-20 16:15:38 -0500 | [diff] [blame] | 4194 | retry: |
Aneesh Kumar K.V | 11a7b37 | 2011-01-29 18:43:42 +0530 | [diff] [blame] | 4195 | error = user_path_at(olddfd, oldname, how, &old_path); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4196 | if (error) |
Al Viro | 2ad94ae | 2008-07-21 09:32:51 -0400 | [diff] [blame] | 4197 | return error; |
| 4198 | |
Jeff Layton | 442e31c | 2012-12-20 16:15:38 -0500 | [diff] [blame] | 4199 | new_dentry = user_path_create(newdfd, newname, &new_path, |
| 4200 | (how & LOOKUP_REVAL)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4201 | error = PTR_ERR(new_dentry); |
Dave Hansen | 6902d92 | 2006-09-30 23:29:01 -0700 | [diff] [blame] | 4202 | if (IS_ERR(new_dentry)) |
Al Viro | dae6ad8 | 2011-06-26 11:50:15 -0400 | [diff] [blame] | 4203 | goto out; |
| 4204 | |
| 4205 | error = -EXDEV; |
| 4206 | if (old_path.mnt != new_path.mnt) |
| 4207 | goto out_dput; |
Kees Cook | 800179c | 2012-07-25 17:29:07 -0700 | [diff] [blame] | 4208 | error = may_linkat(&old_path); |
| 4209 | if (unlikely(error)) |
| 4210 | goto out_dput; |
Al Viro | dae6ad8 | 2011-06-26 11:50:15 -0400 | [diff] [blame] | 4211 | error = security_path_link(old_path.dentry, &new_path, new_dentry); |
Kentaro Takeda | be6d3e5 | 2008-12-17 13:24:15 +0900 | [diff] [blame] | 4212 | if (error) |
Al Viro | a8104a9 | 2012-07-20 02:25:00 +0400 | [diff] [blame] | 4213 | goto out_dput; |
J. Bruce Fields | 146a859 | 2011-09-20 17:14:31 -0400 | [diff] [blame] | 4214 | 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] | 4215 | out_dput: |
Al Viro | 921a165 | 2012-07-20 01:15:31 +0400 | [diff] [blame] | 4216 | done_path_create(&new_path, new_dentry); |
J. Bruce Fields | 146a859 | 2011-09-20 17:14:31 -0400 | [diff] [blame] | 4217 | if (delegated_inode) { |
| 4218 | error = break_deleg_wait(&delegated_inode); |
Oleg Drokin | d22e633 | 2014-01-31 15:41:58 -0500 | [diff] [blame] | 4219 | if (!error) { |
| 4220 | path_put(&old_path); |
J. Bruce Fields | 146a859 | 2011-09-20 17:14:31 -0400 | [diff] [blame] | 4221 | goto retry; |
Oleg Drokin | d22e633 | 2014-01-31 15:41:58 -0500 | [diff] [blame] | 4222 | } |
J. Bruce Fields | 146a859 | 2011-09-20 17:14:31 -0400 | [diff] [blame] | 4223 | } |
Jeff Layton | 442e31c | 2012-12-20 16:15:38 -0500 | [diff] [blame] | 4224 | if (retry_estale(error, how)) { |
Oleg Drokin | d22e633 | 2014-01-31 15:41:58 -0500 | [diff] [blame] | 4225 | path_put(&old_path); |
Jeff Layton | 442e31c | 2012-12-20 16:15:38 -0500 | [diff] [blame] | 4226 | how |= LOOKUP_REVAL; |
| 4227 | goto retry; |
| 4228 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4229 | out: |
Al Viro | 2d8f303 | 2008-07-22 09:59:21 -0400 | [diff] [blame] | 4230 | path_put(&old_path); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4231 | |
| 4232 | return error; |
| 4233 | } |
| 4234 | |
Dominik Brodowski | 46ea89e | 2018-03-11 11:34:53 +0100 | [diff] [blame] | 4235 | SYSCALL_DEFINE5(linkat, int, olddfd, const char __user *, oldname, |
| 4236 | int, newdfd, const char __user *, newname, int, flags) |
| 4237 | { |
| 4238 | return do_linkat(olddfd, oldname, newdfd, newname, flags); |
| 4239 | } |
| 4240 | |
Heiko Carstens | 3480b25 | 2009-01-14 14:14:16 +0100 | [diff] [blame] | 4241 | SYSCALL_DEFINE2(link, const char __user *, oldname, const char __user *, newname) |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 4242 | { |
Dominik Brodowski | 46ea89e | 2018-03-11 11:34:53 +0100 | [diff] [blame] | 4243 | return do_linkat(AT_FDCWD, oldname, AT_FDCWD, newname, 0); |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 4244 | } |
| 4245 | |
Miklos Szeredi | bc27027 | 2014-04-01 17:08:42 +0200 | [diff] [blame] | 4246 | /** |
| 4247 | * vfs_rename - rename a filesystem object |
| 4248 | * @old_dir: parent of source |
| 4249 | * @old_dentry: source |
| 4250 | * @new_dir: parent of destination |
| 4251 | * @new_dentry: destination |
| 4252 | * @delegated_inode: returns an inode needing a delegation break |
Miklos Szeredi | 520c8b1 | 2014-04-01 17:08:42 +0200 | [diff] [blame] | 4253 | * @flags: rename flags |
Miklos Szeredi | bc27027 | 2014-04-01 17:08:42 +0200 | [diff] [blame] | 4254 | * |
| 4255 | * The caller must hold multiple mutexes--see lock_rename()). |
| 4256 | * |
| 4257 | * If vfs_rename discovers a delegation in need of breaking at either |
| 4258 | * the source or destination, it will return -EWOULDBLOCK and return a |
| 4259 | * reference to the inode in delegated_inode. The caller should then |
| 4260 | * break the delegation and retry. Because breaking a delegation may |
| 4261 | * take a long time, the caller should drop all locks before doing |
| 4262 | * so. |
| 4263 | * |
| 4264 | * Alternatively, a caller may pass NULL for delegated_inode. This may |
| 4265 | * be appropriate for callers that expect the underlying filesystem not |
| 4266 | * to be NFS exported. |
| 4267 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4268 | * The worst of all namespace operations - renaming directory. "Perverted" |
| 4269 | * doesn't even start to describe it. Somebody in UCB had a heck of a trip... |
| 4270 | * Problems: |
Mauro Carvalho Chehab | 0117d42 | 2017-05-12 07:45:42 -0300 | [diff] [blame] | 4271 | * |
J. Bruce Fields | d03b29a | 2014-02-17 16:52:33 -0500 | [diff] [blame] | 4272 | * a) we can get into loop creation. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4273 | * b) race potential - two innocent renames can create a loop together. |
| 4274 | * 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] | 4275 | * 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] | 4276 | * story. |
J. Bruce Fields | 6cedba8 | 2012-03-05 11:40:41 -0500 | [diff] [blame] | 4277 | * c) we have to lock _four_ objects - parents and victim (if it exists), |
| 4278 | * and source (if it is not a directory). |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 4279 | * 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] | 4280 | * whether the target exists). Solution: try to be smart with locking |
| 4281 | * 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] | 4282 | * 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] | 4283 | * move will be locked. Thus we can rank directories by the tree |
| 4284 | * (ancestors first) and rank all non-directories after them. |
| 4285 | * That works since everybody except rename does "lock parent, lookup, |
Arjan van de Ven | a11f3a0 | 2006-03-23 03:00:33 -0800 | [diff] [blame] | 4286 | * lock child" and rename is under ->s_vfs_rename_mutex. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4287 | * HOWEVER, it relies on the assumption that any object with ->lookup() |
| 4288 | * has no more than 1 dentry. If "hybrid" objects will ever appear, |
| 4289 | * 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] | 4290 | * 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] | 4291 | * 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] | 4292 | * in the fhandle_to_dentry code. [FIXME - current nfsfh.c relies on |
Adam Buchbinder | c41b20e | 2009-12-11 16:35:39 -0500 | [diff] [blame] | 4293 | * ->i_mutex on parents, which works but leads to some truly excessive |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4294 | * locking]. |
| 4295 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4296 | int vfs_rename(struct inode *old_dir, struct dentry *old_dentry, |
J. Bruce Fields | 8e6d782 | 2011-09-20 16:59:58 -0400 | [diff] [blame] | 4297 | struct inode *new_dir, struct dentry *new_dentry, |
Miklos Szeredi | 520c8b1 | 2014-04-01 17:08:42 +0200 | [diff] [blame] | 4298 | struct inode **delegated_inode, unsigned int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4299 | { |
| 4300 | int error; |
Miklos Szeredi | bc27027 | 2014-04-01 17:08:42 +0200 | [diff] [blame] | 4301 | bool is_dir = d_is_dir(old_dentry); |
Miklos Szeredi | bc27027 | 2014-04-01 17:08:42 +0200 | [diff] [blame] | 4302 | struct inode *source = old_dentry->d_inode; |
| 4303 | struct inode *target = new_dentry->d_inode; |
Miklos Szeredi | da1ce06 | 2014-04-01 17:08:43 +0200 | [diff] [blame] | 4304 | bool new_is_dir = false; |
| 4305 | unsigned max_links = new_dir->i_sb->s_max_links; |
Al Viro | 49d31c2 | 2017-07-07 14:51:19 -0400 | [diff] [blame] | 4306 | struct name_snapshot old_name; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4307 | |
Miklos Szeredi | 8d3e293 | 2016-12-16 11:02:54 +0100 | [diff] [blame] | 4308 | if (source == target) |
Miklos Szeredi | bc27027 | 2014-04-01 17:08:42 +0200 | [diff] [blame] | 4309 | return 0; |
| 4310 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4311 | error = may_delete(old_dir, old_dentry, is_dir); |
| 4312 | if (error) |
| 4313 | return error; |
| 4314 | |
Miklos Szeredi | da1ce06 | 2014-04-01 17:08:43 +0200 | [diff] [blame] | 4315 | if (!target) { |
Miklos Szeredi | a95164d | 2008-07-30 15:08:48 +0200 | [diff] [blame] | 4316 | error = may_create(new_dir, new_dentry); |
Miklos Szeredi | da1ce06 | 2014-04-01 17:08:43 +0200 | [diff] [blame] | 4317 | } else { |
| 4318 | new_is_dir = d_is_dir(new_dentry); |
| 4319 | |
| 4320 | if (!(flags & RENAME_EXCHANGE)) |
| 4321 | error = may_delete(new_dir, new_dentry, is_dir); |
| 4322 | else |
| 4323 | error = may_delete(new_dir, new_dentry, new_is_dir); |
| 4324 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4325 | if (error) |
| 4326 | return error; |
| 4327 | |
Miklos Szeredi | 2773bf0 | 2016-09-27 11:03:58 +0200 | [diff] [blame] | 4328 | if (!old_dir->i_op->rename) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4329 | return -EPERM; |
| 4330 | |
Miklos Szeredi | bc27027 | 2014-04-01 17:08:42 +0200 | [diff] [blame] | 4331 | /* |
| 4332 | * If we are going to change the parent - check write permissions, |
| 4333 | * we'll need to flip '..'. |
| 4334 | */ |
Miklos Szeredi | da1ce06 | 2014-04-01 17:08:43 +0200 | [diff] [blame] | 4335 | if (new_dir != old_dir) { |
| 4336 | if (is_dir) { |
| 4337 | error = inode_permission(source, MAY_WRITE); |
| 4338 | if (error) |
| 4339 | return error; |
| 4340 | } |
| 4341 | if ((flags & RENAME_EXCHANGE) && new_is_dir) { |
| 4342 | error = inode_permission(target, MAY_WRITE); |
| 4343 | if (error) |
| 4344 | return error; |
| 4345 | } |
Miklos Szeredi | bc27027 | 2014-04-01 17:08:42 +0200 | [diff] [blame] | 4346 | } |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 4347 | |
Miklos Szeredi | 0b3974e | 2014-04-01 17:08:43 +0200 | [diff] [blame] | 4348 | error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry, |
| 4349 | flags); |
Miklos Szeredi | bc27027 | 2014-04-01 17:08:42 +0200 | [diff] [blame] | 4350 | if (error) |
| 4351 | return error; |
| 4352 | |
Al Viro | 49d31c2 | 2017-07-07 14:51:19 -0400 | [diff] [blame] | 4353 | take_dentry_name_snapshot(&old_name, old_dentry); |
Miklos Szeredi | bc27027 | 2014-04-01 17:08:42 +0200 | [diff] [blame] | 4354 | dget(new_dentry); |
Miklos Szeredi | da1ce06 | 2014-04-01 17:08:43 +0200 | [diff] [blame] | 4355 | if (!is_dir || (flags & RENAME_EXCHANGE)) |
Miklos Szeredi | bc27027 | 2014-04-01 17:08:42 +0200 | [diff] [blame] | 4356 | lock_two_nondirectories(source, target); |
| 4357 | else if (target) |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 4358 | inode_lock(target); |
Miklos Szeredi | bc27027 | 2014-04-01 17:08:42 +0200 | [diff] [blame] | 4359 | |
| 4360 | error = -EBUSY; |
Eric W. Biederman | 7af1364 | 2013-10-04 19:15:13 -0700 | [diff] [blame] | 4361 | if (is_local_mountpoint(old_dentry) || is_local_mountpoint(new_dentry)) |
Miklos Szeredi | bc27027 | 2014-04-01 17:08:42 +0200 | [diff] [blame] | 4362 | goto out; |
| 4363 | |
Miklos Szeredi | da1ce06 | 2014-04-01 17:08:43 +0200 | [diff] [blame] | 4364 | if (max_links && new_dir != old_dir) { |
Miklos Szeredi | bc27027 | 2014-04-01 17:08:42 +0200 | [diff] [blame] | 4365 | error = -EMLINK; |
Miklos Szeredi | da1ce06 | 2014-04-01 17:08:43 +0200 | [diff] [blame] | 4366 | if (is_dir && !new_is_dir && new_dir->i_nlink >= max_links) |
Miklos Szeredi | bc27027 | 2014-04-01 17:08:42 +0200 | [diff] [blame] | 4367 | goto out; |
Miklos Szeredi | da1ce06 | 2014-04-01 17:08:43 +0200 | [diff] [blame] | 4368 | if ((flags & RENAME_EXCHANGE) && !is_dir && new_is_dir && |
| 4369 | old_dir->i_nlink >= max_links) |
| 4370 | goto out; |
| 4371 | } |
Miklos Szeredi | da1ce06 | 2014-04-01 17:08:43 +0200 | [diff] [blame] | 4372 | if (!is_dir) { |
Miklos Szeredi | bc27027 | 2014-04-01 17:08:42 +0200 | [diff] [blame] | 4373 | error = try_break_deleg(source, delegated_inode); |
| 4374 | if (error) |
| 4375 | goto out; |
Miklos Szeredi | da1ce06 | 2014-04-01 17:08:43 +0200 | [diff] [blame] | 4376 | } |
| 4377 | if (target && !new_is_dir) { |
| 4378 | error = try_break_deleg(target, delegated_inode); |
| 4379 | if (error) |
| 4380 | goto out; |
Miklos Szeredi | bc27027 | 2014-04-01 17:08:42 +0200 | [diff] [blame] | 4381 | } |
Miklos Szeredi | 2773bf0 | 2016-09-27 11:03:58 +0200 | [diff] [blame] | 4382 | error = old_dir->i_op->rename(old_dir, old_dentry, |
Miklos Szeredi | 18fc84d | 2016-09-27 11:03:58 +0200 | [diff] [blame] | 4383 | new_dir, new_dentry, flags); |
Miklos Szeredi | bc27027 | 2014-04-01 17:08:42 +0200 | [diff] [blame] | 4384 | if (error) |
| 4385 | goto out; |
| 4386 | |
Miklos Szeredi | da1ce06 | 2014-04-01 17:08:43 +0200 | [diff] [blame] | 4387 | if (!(flags & RENAME_EXCHANGE) && target) { |
Al Viro | 8767712 | 2018-05-27 16:23:51 -0400 | [diff] [blame] | 4388 | if (is_dir) { |
| 4389 | shrink_dcache_parent(new_dentry); |
Miklos Szeredi | bc27027 | 2014-04-01 17:08:42 +0200 | [diff] [blame] | 4390 | target->i_flags |= S_DEAD; |
Al Viro | 8767712 | 2018-05-27 16:23:51 -0400 | [diff] [blame] | 4391 | } |
Miklos Szeredi | bc27027 | 2014-04-01 17:08:42 +0200 | [diff] [blame] | 4392 | dont_mount(new_dentry); |
Eric W. Biederman | 8ed936b | 2013-10-01 18:33:48 -0700 | [diff] [blame] | 4393 | detach_mounts(new_dentry); |
Miklos Szeredi | bc27027 | 2014-04-01 17:08:42 +0200 | [diff] [blame] | 4394 | } |
Miklos Szeredi | da1ce06 | 2014-04-01 17:08:43 +0200 | [diff] [blame] | 4395 | if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE)) { |
| 4396 | if (!(flags & RENAME_EXCHANGE)) |
| 4397 | d_move(old_dentry, new_dentry); |
| 4398 | else |
| 4399 | d_exchange(old_dentry, new_dentry); |
| 4400 | } |
Miklos Szeredi | bc27027 | 2014-04-01 17:08:42 +0200 | [diff] [blame] | 4401 | out: |
Miklos Szeredi | da1ce06 | 2014-04-01 17:08:43 +0200 | [diff] [blame] | 4402 | if (!is_dir || (flags & RENAME_EXCHANGE)) |
Miklos Szeredi | bc27027 | 2014-04-01 17:08:42 +0200 | [diff] [blame] | 4403 | unlock_two_nondirectories(source, target); |
| 4404 | else if (target) |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 4405 | inode_unlock(target); |
Miklos Szeredi | bc27027 | 2014-04-01 17:08:42 +0200 | [diff] [blame] | 4406 | dput(new_dentry); |
Miklos Szeredi | da1ce06 | 2014-04-01 17:08:43 +0200 | [diff] [blame] | 4407 | if (!error) { |
Al Viro | f4ec3a3 | 2019-04-26 13:21:24 -0400 | [diff] [blame] | 4408 | fsnotify_move(old_dir, new_dir, &old_name.name, is_dir, |
Miklos Szeredi | da1ce06 | 2014-04-01 17:08:43 +0200 | [diff] [blame] | 4409 | !(flags & RENAME_EXCHANGE) ? target : NULL, old_dentry); |
| 4410 | if (flags & RENAME_EXCHANGE) { |
Al Viro | f4ec3a3 | 2019-04-26 13:21:24 -0400 | [diff] [blame] | 4411 | fsnotify_move(new_dir, old_dir, &old_dentry->d_name, |
Miklos Szeredi | da1ce06 | 2014-04-01 17:08:43 +0200 | [diff] [blame] | 4412 | new_is_dir, NULL, new_dentry); |
| 4413 | } |
| 4414 | } |
Al Viro | 49d31c2 | 2017-07-07 14:51:19 -0400 | [diff] [blame] | 4415 | release_dentry_name_snapshot(&old_name); |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 4416 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4417 | return error; |
| 4418 | } |
Al Viro | 4d35950 | 2014-03-14 12:20:17 -0400 | [diff] [blame] | 4419 | EXPORT_SYMBOL(vfs_rename); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4420 | |
Dominik Brodowski | ee81feb | 2018-03-11 11:34:28 +0100 | [diff] [blame] | 4421 | static int do_renameat2(int olddfd, const char __user *oldname, int newdfd, |
| 4422 | const char __user *newname, unsigned int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4423 | { |
Al Viro | 2ad94ae | 2008-07-21 09:32:51 -0400 | [diff] [blame] | 4424 | struct dentry *old_dentry, *new_dentry; |
| 4425 | struct dentry *trap; |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 4426 | struct path old_path, new_path; |
| 4427 | struct qstr old_last, new_last; |
| 4428 | int old_type, new_type; |
J. Bruce Fields | 8e6d782 | 2011-09-20 16:59:58 -0400 | [diff] [blame] | 4429 | struct inode *delegated_inode = NULL; |
Jeff Layton | 91a27b2 | 2012-10-10 15:25:28 -0400 | [diff] [blame] | 4430 | struct filename *from; |
| 4431 | struct filename *to; |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 4432 | unsigned int lookup_flags = 0, target_flags = LOOKUP_RENAME_TARGET; |
Jeff Layton | c6a9428 | 2012-12-11 12:10:10 -0500 | [diff] [blame] | 4433 | bool should_retry = false; |
Al Viro | 2ad94ae | 2008-07-21 09:32:51 -0400 | [diff] [blame] | 4434 | int error; |
Miklos Szeredi | 520c8b1 | 2014-04-01 17:08:42 +0200 | [diff] [blame] | 4435 | |
Miklos Szeredi | 0d7a855 | 2014-10-24 00:14:37 +0200 | [diff] [blame] | 4436 | if (flags & ~(RENAME_NOREPLACE | RENAME_EXCHANGE | RENAME_WHITEOUT)) |
Miklos Szeredi | da1ce06 | 2014-04-01 17:08:43 +0200 | [diff] [blame] | 4437 | return -EINVAL; |
| 4438 | |
Miklos Szeredi | 0d7a855 | 2014-10-24 00:14:37 +0200 | [diff] [blame] | 4439 | if ((flags & (RENAME_NOREPLACE | RENAME_WHITEOUT)) && |
| 4440 | (flags & RENAME_EXCHANGE)) |
Miklos Szeredi | 520c8b1 | 2014-04-01 17:08:42 +0200 | [diff] [blame] | 4441 | return -EINVAL; |
| 4442 | |
Miklos Szeredi | 0d7a855 | 2014-10-24 00:14:37 +0200 | [diff] [blame] | 4443 | if ((flags & RENAME_WHITEOUT) && !capable(CAP_MKNOD)) |
| 4444 | return -EPERM; |
| 4445 | |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 4446 | if (flags & RENAME_EXCHANGE) |
| 4447 | target_flags = 0; |
| 4448 | |
Jeff Layton | c6a9428 | 2012-12-11 12:10:10 -0500 | [diff] [blame] | 4449 | retry: |
Al Viro | c1d4dd2 | 2016-06-05 16:38:18 -0400 | [diff] [blame] | 4450 | from = filename_parentat(olddfd, getname(oldname), lookup_flags, |
| 4451 | &old_path, &old_last, &old_type); |
Jeff Layton | 91a27b2 | 2012-10-10 15:25:28 -0400 | [diff] [blame] | 4452 | if (IS_ERR(from)) { |
| 4453 | error = PTR_ERR(from); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4454 | goto exit; |
Jeff Layton | 91a27b2 | 2012-10-10 15:25:28 -0400 | [diff] [blame] | 4455 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4456 | |
Al Viro | c1d4dd2 | 2016-06-05 16:38:18 -0400 | [diff] [blame] | 4457 | to = filename_parentat(newdfd, getname(newname), lookup_flags, |
| 4458 | &new_path, &new_last, &new_type); |
Jeff Layton | 91a27b2 | 2012-10-10 15:25:28 -0400 | [diff] [blame] | 4459 | if (IS_ERR(to)) { |
| 4460 | error = PTR_ERR(to); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4461 | goto exit1; |
Jeff Layton | 91a27b2 | 2012-10-10 15:25:28 -0400 | [diff] [blame] | 4462 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4463 | |
| 4464 | error = -EXDEV; |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 4465 | if (old_path.mnt != new_path.mnt) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4466 | goto exit2; |
| 4467 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4468 | error = -EBUSY; |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 4469 | if (old_type != LAST_NORM) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4470 | goto exit2; |
| 4471 | |
Miklos Szeredi | 0a7c393 | 2014-04-01 17:08:43 +0200 | [diff] [blame] | 4472 | if (flags & RENAME_NOREPLACE) |
| 4473 | error = -EEXIST; |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 4474 | if (new_type != LAST_NORM) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4475 | goto exit2; |
| 4476 | |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 4477 | error = mnt_want_write(old_path.mnt); |
Jan Kara | c30dabf | 2012-06-12 16:20:30 +0200 | [diff] [blame] | 4478 | if (error) |
| 4479 | goto exit2; |
| 4480 | |
J. Bruce Fields | 8e6d782 | 2011-09-20 16:59:58 -0400 | [diff] [blame] | 4481 | retry_deleg: |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 4482 | trap = lock_rename(new_path.dentry, old_path.dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4483 | |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 4484 | old_dentry = __lookup_hash(&old_last, old_path.dentry, lookup_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4485 | error = PTR_ERR(old_dentry); |
| 4486 | if (IS_ERR(old_dentry)) |
| 4487 | goto exit3; |
| 4488 | /* source must exist */ |
| 4489 | error = -ENOENT; |
David Howells | b18825a | 2013-09-12 19:22:53 +0100 | [diff] [blame] | 4490 | if (d_is_negative(old_dentry)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4491 | goto exit4; |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 4492 | 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] | 4493 | error = PTR_ERR(new_dentry); |
| 4494 | if (IS_ERR(new_dentry)) |
| 4495 | goto exit4; |
Miklos Szeredi | 0a7c393 | 2014-04-01 17:08:43 +0200 | [diff] [blame] | 4496 | error = -EEXIST; |
| 4497 | if ((flags & RENAME_NOREPLACE) && d_is_positive(new_dentry)) |
| 4498 | goto exit5; |
Miklos Szeredi | da1ce06 | 2014-04-01 17:08:43 +0200 | [diff] [blame] | 4499 | if (flags & RENAME_EXCHANGE) { |
| 4500 | error = -ENOENT; |
| 4501 | if (d_is_negative(new_dentry)) |
| 4502 | goto exit5; |
| 4503 | |
| 4504 | if (!d_is_dir(new_dentry)) { |
| 4505 | error = -ENOTDIR; |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 4506 | if (new_last.name[new_last.len]) |
Miklos Szeredi | da1ce06 | 2014-04-01 17:08:43 +0200 | [diff] [blame] | 4507 | goto exit5; |
| 4508 | } |
| 4509 | } |
Miklos Szeredi | 0a7c393 | 2014-04-01 17:08:43 +0200 | [diff] [blame] | 4510 | /* unless the source is a directory trailing slashes give -ENOTDIR */ |
| 4511 | if (!d_is_dir(old_dentry)) { |
| 4512 | error = -ENOTDIR; |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 4513 | if (old_last.name[old_last.len]) |
Miklos Szeredi | 0a7c393 | 2014-04-01 17:08:43 +0200 | [diff] [blame] | 4514 | goto exit5; |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 4515 | if (!(flags & RENAME_EXCHANGE) && new_last.name[new_last.len]) |
Miklos Szeredi | 0a7c393 | 2014-04-01 17:08:43 +0200 | [diff] [blame] | 4516 | goto exit5; |
| 4517 | } |
| 4518 | /* source should not be ancestor of target */ |
| 4519 | error = -EINVAL; |
| 4520 | if (old_dentry == trap) |
| 4521 | goto exit5; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4522 | /* target should not be an ancestor of source */ |
Miklos Szeredi | da1ce06 | 2014-04-01 17:08:43 +0200 | [diff] [blame] | 4523 | if (!(flags & RENAME_EXCHANGE)) |
| 4524 | error = -ENOTEMPTY; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4525 | if (new_dentry == trap) |
| 4526 | goto exit5; |
| 4527 | |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 4528 | error = security_path_rename(&old_path, old_dentry, |
| 4529 | &new_path, new_dentry, flags); |
Kentaro Takeda | be6d3e5 | 2008-12-17 13:24:15 +0900 | [diff] [blame] | 4530 | if (error) |
Jan Kara | c30dabf | 2012-06-12 16:20:30 +0200 | [diff] [blame] | 4531 | goto exit5; |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 4532 | error = vfs_rename(old_path.dentry->d_inode, old_dentry, |
| 4533 | new_path.dentry->d_inode, new_dentry, |
Miklos Szeredi | 520c8b1 | 2014-04-01 17:08:42 +0200 | [diff] [blame] | 4534 | &delegated_inode, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4535 | exit5: |
| 4536 | dput(new_dentry); |
| 4537 | exit4: |
| 4538 | dput(old_dentry); |
| 4539 | exit3: |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 4540 | unlock_rename(new_path.dentry, old_path.dentry); |
J. Bruce Fields | 8e6d782 | 2011-09-20 16:59:58 -0400 | [diff] [blame] | 4541 | if (delegated_inode) { |
| 4542 | error = break_deleg_wait(&delegated_inode); |
| 4543 | if (!error) |
| 4544 | goto retry_deleg; |
| 4545 | } |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 4546 | mnt_drop_write(old_path.mnt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4547 | exit2: |
Jeff Layton | c6a9428 | 2012-12-11 12:10:10 -0500 | [diff] [blame] | 4548 | if (retry_estale(error, lookup_flags)) |
| 4549 | should_retry = true; |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 4550 | path_put(&new_path); |
Al Viro | 2ad94ae | 2008-07-21 09:32:51 -0400 | [diff] [blame] | 4551 | putname(to); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4552 | exit1: |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 4553 | path_put(&old_path); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4554 | putname(from); |
Jeff Layton | c6a9428 | 2012-12-11 12:10:10 -0500 | [diff] [blame] | 4555 | if (should_retry) { |
| 4556 | should_retry = false; |
| 4557 | lookup_flags |= LOOKUP_REVAL; |
| 4558 | goto retry; |
| 4559 | } |
Al Viro | 2ad94ae | 2008-07-21 09:32:51 -0400 | [diff] [blame] | 4560 | exit: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4561 | return error; |
| 4562 | } |
| 4563 | |
Dominik Brodowski | ee81feb | 2018-03-11 11:34:28 +0100 | [diff] [blame] | 4564 | SYSCALL_DEFINE5(renameat2, int, olddfd, const char __user *, oldname, |
| 4565 | int, newdfd, const char __user *, newname, unsigned int, flags) |
| 4566 | { |
| 4567 | return do_renameat2(olddfd, oldname, newdfd, newname, flags); |
| 4568 | } |
| 4569 | |
Miklos Szeredi | 520c8b1 | 2014-04-01 17:08:42 +0200 | [diff] [blame] | 4570 | SYSCALL_DEFINE4(renameat, int, olddfd, const char __user *, oldname, |
| 4571 | int, newdfd, const char __user *, newname) |
| 4572 | { |
Dominik Brodowski | ee81feb | 2018-03-11 11:34:28 +0100 | [diff] [blame] | 4573 | return do_renameat2(olddfd, oldname, newdfd, newname, 0); |
Miklos Szeredi | 520c8b1 | 2014-04-01 17:08:42 +0200 | [diff] [blame] | 4574 | } |
| 4575 | |
Heiko Carstens | a26eab2 | 2009-01-14 14:14:17 +0100 | [diff] [blame] | 4576 | SYSCALL_DEFINE2(rename, const char __user *, oldname, const char __user *, newname) |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 4577 | { |
Dominik Brodowski | ee81feb | 2018-03-11 11:34:28 +0100 | [diff] [blame] | 4578 | return do_renameat2(AT_FDCWD, oldname, AT_FDCWD, newname, 0); |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 4579 | } |
| 4580 | |
Miklos Szeredi | 787fb6b | 2014-10-24 00:14:36 +0200 | [diff] [blame] | 4581 | int vfs_whiteout(struct inode *dir, struct dentry *dentry) |
| 4582 | { |
| 4583 | int error = may_create(dir, dentry); |
| 4584 | if (error) |
| 4585 | return error; |
| 4586 | |
| 4587 | if (!dir->i_op->mknod) |
| 4588 | return -EPERM; |
| 4589 | |
| 4590 | return dir->i_op->mknod(dir, dentry, |
| 4591 | S_IFCHR | WHITEOUT_MODE, WHITEOUT_DEV); |
| 4592 | } |
| 4593 | EXPORT_SYMBOL(vfs_whiteout); |
| 4594 | |
Al Viro | 5d826c8 | 2014-03-14 13:42:45 -0400 | [diff] [blame] | 4595 | int readlink_copy(char __user *buffer, int buflen, const char *link) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4596 | { |
Al Viro | 5d826c8 | 2014-03-14 13:42:45 -0400 | [diff] [blame] | 4597 | int len = PTR_ERR(link); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4598 | if (IS_ERR(link)) |
| 4599 | goto out; |
| 4600 | |
| 4601 | len = strlen(link); |
| 4602 | if (len > (unsigned) buflen) |
| 4603 | len = buflen; |
| 4604 | if (copy_to_user(buffer, link, len)) |
| 4605 | len = -EFAULT; |
| 4606 | out: |
| 4607 | return len; |
| 4608 | } |
| 4609 | |
Miklos Szeredi | d60874c | 2016-10-04 14:40:45 +0200 | [diff] [blame] | 4610 | /** |
Miklos Szeredi | fd4a0edf | 2016-12-09 16:45:04 +0100 | [diff] [blame] | 4611 | * vfs_readlink - copy symlink body into userspace buffer |
| 4612 | * @dentry: dentry on which to get symbolic link |
| 4613 | * @buffer: user memory pointer |
| 4614 | * @buflen: size of buffer |
| 4615 | * |
| 4616 | * Does not touch atime. That's up to the caller if necessary |
| 4617 | * |
| 4618 | * Does not call security hook. |
| 4619 | */ |
| 4620 | int vfs_readlink(struct dentry *dentry, char __user *buffer, int buflen) |
| 4621 | { |
| 4622 | struct inode *inode = d_inode(dentry); |
Al Viro | f2df5da | 2018-07-19 17:35:51 -0400 | [diff] [blame] | 4623 | DEFINE_DELAYED_CALL(done); |
| 4624 | const char *link; |
| 4625 | int res; |
Miklos Szeredi | fd4a0edf | 2016-12-09 16:45:04 +0100 | [diff] [blame] | 4626 | |
Miklos Szeredi | 76fca90 | 2016-12-09 16:45:04 +0100 | [diff] [blame] | 4627 | if (unlikely(!(inode->i_opflags & IOP_DEFAULT_READLINK))) { |
| 4628 | if (unlikely(inode->i_op->readlink)) |
| 4629 | return inode->i_op->readlink(dentry, buffer, buflen); |
Miklos Szeredi | fd4a0edf | 2016-12-09 16:45:04 +0100 | [diff] [blame] | 4630 | |
Miklos Szeredi | 76fca90 | 2016-12-09 16:45:04 +0100 | [diff] [blame] | 4631 | if (!d_is_symlink(dentry)) |
| 4632 | return -EINVAL; |
| 4633 | |
| 4634 | spin_lock(&inode->i_lock); |
| 4635 | inode->i_opflags |= IOP_DEFAULT_READLINK; |
| 4636 | spin_unlock(&inode->i_lock); |
| 4637 | } |
| 4638 | |
Eric Biggers | 4c4f7c1 | 2019-04-10 13:21:14 -0700 | [diff] [blame] | 4639 | link = READ_ONCE(inode->i_link); |
Al Viro | f2df5da | 2018-07-19 17:35:51 -0400 | [diff] [blame] | 4640 | if (!link) { |
| 4641 | link = inode->i_op->get_link(dentry, inode, &done); |
| 4642 | if (IS_ERR(link)) |
| 4643 | return PTR_ERR(link); |
| 4644 | } |
| 4645 | res = readlink_copy(buffer, buflen, link); |
| 4646 | do_delayed_call(&done); |
| 4647 | return res; |
Miklos Szeredi | fd4a0edf | 2016-12-09 16:45:04 +0100 | [diff] [blame] | 4648 | } |
| 4649 | EXPORT_SYMBOL(vfs_readlink); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4650 | |
Miklos Szeredi | d60874c | 2016-10-04 14:40:45 +0200 | [diff] [blame] | 4651 | /** |
| 4652 | * vfs_get_link - get symlink body |
| 4653 | * @dentry: dentry on which to get symbolic link |
| 4654 | * @done: caller needs to free returned data with this |
| 4655 | * |
| 4656 | * Calls security hook and i_op->get_link() on the supplied inode. |
| 4657 | * |
| 4658 | * It does not touch atime. That's up to the caller if necessary. |
| 4659 | * |
| 4660 | * Does not work on "special" symlinks like /proc/$$/fd/N |
| 4661 | */ |
| 4662 | const char *vfs_get_link(struct dentry *dentry, struct delayed_call *done) |
| 4663 | { |
| 4664 | const char *res = ERR_PTR(-EINVAL); |
| 4665 | struct inode *inode = d_inode(dentry); |
| 4666 | |
| 4667 | if (d_is_symlink(dentry)) { |
| 4668 | res = ERR_PTR(security_inode_readlink(dentry)); |
| 4669 | if (!res) |
| 4670 | res = inode->i_op->get_link(dentry, inode, done); |
| 4671 | } |
| 4672 | return res; |
| 4673 | } |
| 4674 | EXPORT_SYMBOL(vfs_get_link); |
| 4675 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4676 | /* get the link contents into pagecache */ |
Al Viro | 6b25539 | 2015-11-17 10:20:54 -0500 | [diff] [blame] | 4677 | const char *page_get_link(struct dentry *dentry, struct inode *inode, |
Al Viro | fceef39 | 2015-12-29 15:58:39 -0500 | [diff] [blame] | 4678 | struct delayed_call *callback) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4679 | { |
Duane Griffin | ebd09ab | 2008-12-19 20:47:12 +0000 | [diff] [blame] | 4680 | char *kaddr; |
| 4681 | struct page *page; |
Al Viro | 6b25539 | 2015-11-17 10:20:54 -0500 | [diff] [blame] | 4682 | struct address_space *mapping = inode->i_mapping; |
| 4683 | |
Al Viro | d3883d4 | 2015-11-17 10:41:04 -0500 | [diff] [blame] | 4684 | if (!dentry) { |
| 4685 | page = find_get_page(mapping, 0); |
| 4686 | if (!page) |
| 4687 | return ERR_PTR(-ECHILD); |
| 4688 | if (!PageUptodate(page)) { |
| 4689 | put_page(page); |
| 4690 | return ERR_PTR(-ECHILD); |
| 4691 | } |
| 4692 | } else { |
| 4693 | page = read_mapping_page(mapping, 0, NULL); |
| 4694 | if (IS_ERR(page)) |
| 4695 | return (char*)page; |
| 4696 | } |
Al Viro | fceef39 | 2015-12-29 15:58:39 -0500 | [diff] [blame] | 4697 | set_delayed_call(callback, page_put_link, page); |
Al Viro | 21fc61c | 2015-11-17 01:07:57 -0500 | [diff] [blame] | 4698 | BUG_ON(mapping_gfp_mask(mapping) & __GFP_HIGHMEM); |
| 4699 | kaddr = page_address(page); |
Al Viro | 6b25539 | 2015-11-17 10:20:54 -0500 | [diff] [blame] | 4700 | nd_terminate_link(kaddr, inode->i_size, PAGE_SIZE - 1); |
Duane Griffin | ebd09ab | 2008-12-19 20:47:12 +0000 | [diff] [blame] | 4701 | return kaddr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4702 | } |
| 4703 | |
Al Viro | 6b25539 | 2015-11-17 10:20:54 -0500 | [diff] [blame] | 4704 | EXPORT_SYMBOL(page_get_link); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4705 | |
Al Viro | fceef39 | 2015-12-29 15:58:39 -0500 | [diff] [blame] | 4706 | void page_put_link(void *arg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4707 | { |
Al Viro | fceef39 | 2015-12-29 15:58:39 -0500 | [diff] [blame] | 4708 | put_page(arg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4709 | } |
Al Viro | 4d35950 | 2014-03-14 12:20:17 -0400 | [diff] [blame] | 4710 | EXPORT_SYMBOL(page_put_link); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4711 | |
Al Viro | aa80dea | 2015-11-16 18:26:34 -0500 | [diff] [blame] | 4712 | int page_readlink(struct dentry *dentry, char __user *buffer, int buflen) |
| 4713 | { |
Al Viro | fceef39 | 2015-12-29 15:58:39 -0500 | [diff] [blame] | 4714 | DEFINE_DELAYED_CALL(done); |
Al Viro | 6b25539 | 2015-11-17 10:20:54 -0500 | [diff] [blame] | 4715 | int res = readlink_copy(buffer, buflen, |
| 4716 | page_get_link(dentry, d_inode(dentry), |
Al Viro | fceef39 | 2015-12-29 15:58:39 -0500 | [diff] [blame] | 4717 | &done)); |
| 4718 | do_delayed_call(&done); |
Al Viro | aa80dea | 2015-11-16 18:26:34 -0500 | [diff] [blame] | 4719 | return res; |
| 4720 | } |
| 4721 | EXPORT_SYMBOL(page_readlink); |
| 4722 | |
Nick Piggin | 54566b2 | 2009-01-04 12:00:53 -0800 | [diff] [blame] | 4723 | /* |
| 4724 | * The nofs argument instructs pagecache_write_begin to pass AOP_FLAG_NOFS |
| 4725 | */ |
| 4726 | 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] | 4727 | { |
| 4728 | struct address_space *mapping = inode->i_mapping; |
Kirill Korotaev | 0adb25d | 2006-03-11 03:27:13 -0800 | [diff] [blame] | 4729 | struct page *page; |
Nick Piggin | afddba4 | 2007-10-16 01:25:01 -0700 | [diff] [blame] | 4730 | void *fsdata; |
Dmitriy Monakhov | beb497a | 2007-02-16 01:27:18 -0800 | [diff] [blame] | 4731 | int err; |
Tetsuo Handa | c718a97 | 2017-05-08 15:58:59 -0700 | [diff] [blame] | 4732 | unsigned int flags = 0; |
Nick Piggin | 54566b2 | 2009-01-04 12:00:53 -0800 | [diff] [blame] | 4733 | if (nofs) |
| 4734 | flags |= AOP_FLAG_NOFS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4735 | |
NeilBrown | 7e53cac | 2006-03-25 03:07:57 -0800 | [diff] [blame] | 4736 | retry: |
Nick Piggin | afddba4 | 2007-10-16 01:25:01 -0700 | [diff] [blame] | 4737 | err = pagecache_write_begin(NULL, mapping, 0, len-1, |
Nick Piggin | 54566b2 | 2009-01-04 12:00:53 -0800 | [diff] [blame] | 4738 | flags, &page, &fsdata); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4739 | if (err) |
Nick Piggin | afddba4 | 2007-10-16 01:25:01 -0700 | [diff] [blame] | 4740 | goto fail; |
| 4741 | |
Al Viro | 21fc61c | 2015-11-17 01:07:57 -0500 | [diff] [blame] | 4742 | memcpy(page_address(page), symname, len-1); |
Nick Piggin | afddba4 | 2007-10-16 01:25:01 -0700 | [diff] [blame] | 4743 | |
| 4744 | err = pagecache_write_end(NULL, mapping, 0, len-1, len-1, |
| 4745 | page, fsdata); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4746 | if (err < 0) |
| 4747 | goto fail; |
Nick Piggin | afddba4 | 2007-10-16 01:25:01 -0700 | [diff] [blame] | 4748 | if (err < len-1) |
| 4749 | goto retry; |
| 4750 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4751 | mark_inode_dirty(inode); |
| 4752 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4753 | fail: |
| 4754 | return err; |
| 4755 | } |
Al Viro | 4d35950 | 2014-03-14 12:20:17 -0400 | [diff] [blame] | 4756 | EXPORT_SYMBOL(__page_symlink); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4757 | |
Kirill Korotaev | 0adb25d | 2006-03-11 03:27:13 -0800 | [diff] [blame] | 4758 | int page_symlink(struct inode *inode, const char *symname, int len) |
| 4759 | { |
| 4760 | return __page_symlink(inode, symname, len, |
Michal Hocko | c62d255 | 2015-11-06 16:28:49 -0800 | [diff] [blame] | 4761 | !mapping_gfp_constraint(inode->i_mapping, __GFP_FS)); |
Kirill Korotaev | 0adb25d | 2006-03-11 03:27:13 -0800 | [diff] [blame] | 4762 | } |
Al Viro | 4d35950 | 2014-03-14 12:20:17 -0400 | [diff] [blame] | 4763 | EXPORT_SYMBOL(page_symlink); |
Kirill Korotaev | 0adb25d | 2006-03-11 03:27:13 -0800 | [diff] [blame] | 4764 | |
Arjan van de Ven | 92e1d5b | 2007-02-12 00:55:39 -0800 | [diff] [blame] | 4765 | const struct inode_operations page_symlink_inode_operations = { |
Al Viro | 6b25539 | 2015-11-17 10:20:54 -0500 | [diff] [blame] | 4766 | .get_link = page_get_link, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4767 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4768 | EXPORT_SYMBOL(page_symlink_inode_operations); |