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; |
Al Viro | fceef39 | 2015-12-29 15:58:39 -0500 | [diff] [blame] | 506 | struct inode *link_inode; |
Al Viro | 9883d18 | 2015-05-13 07:28:08 -0400 | [diff] [blame] | 507 | unsigned root_seq; |
| 508 | int dfd; |
Kees Cook | 3859a27 | 2016-10-28 01:22:25 -0700 | [diff] [blame] | 509 | } __randomize_layout; |
Al Viro | 1f55a6e | 2014-11-01 19:30:41 -0400 | [diff] [blame] | 510 | |
Al Viro | 9883d18 | 2015-05-13 07:28:08 -0400 | [diff] [blame] | 511 | static void set_nameidata(struct nameidata *p, int dfd, struct filename *name) |
Al Viro | 894bc8c | 2015-05-02 07:16:16 -0400 | [diff] [blame] | 512 | { |
NeilBrown | 756daf2 | 2015-03-23 13:37:38 +1100 | [diff] [blame] | 513 | struct nameidata *old = current->nameidata; |
| 514 | p->stack = p->internal; |
Al Viro | c8a53ee | 2015-05-12 18:43:07 -0400 | [diff] [blame] | 515 | p->dfd = dfd; |
| 516 | p->name = name; |
NeilBrown | 756daf2 | 2015-03-23 13:37:38 +1100 | [diff] [blame] | 517 | p->total_link_count = old ? old->total_link_count : 0; |
Al Viro | 9883d18 | 2015-05-13 07:28:08 -0400 | [diff] [blame] | 518 | p->saved = old; |
NeilBrown | 756daf2 | 2015-03-23 13:37:38 +1100 | [diff] [blame] | 519 | current->nameidata = p; |
Al Viro | 894bc8c | 2015-05-02 07:16:16 -0400 | [diff] [blame] | 520 | } |
| 521 | |
Al Viro | 9883d18 | 2015-05-13 07:28:08 -0400 | [diff] [blame] | 522 | static void restore_nameidata(void) |
Al Viro | 894bc8c | 2015-05-02 07:16:16 -0400 | [diff] [blame] | 523 | { |
Al Viro | 9883d18 | 2015-05-13 07:28:08 -0400 | [diff] [blame] | 524 | struct nameidata *now = current->nameidata, *old = now->saved; |
NeilBrown | 756daf2 | 2015-03-23 13:37:38 +1100 | [diff] [blame] | 525 | |
| 526 | current->nameidata = old; |
| 527 | if (old) |
| 528 | old->total_link_count = now->total_link_count; |
Al Viro | e1a63bb | 2015-12-05 21:06:33 -0500 | [diff] [blame] | 529 | if (now->stack != now->internal) |
NeilBrown | 756daf2 | 2015-03-23 13:37:38 +1100 | [diff] [blame] | 530 | kfree(now->stack); |
Al Viro | 894bc8c | 2015-05-02 07:16:16 -0400 | [diff] [blame] | 531 | } |
| 532 | |
| 533 | static int __nd_alloc_stack(struct nameidata *nd) |
| 534 | { |
Al Viro | bc40aee | 2015-05-09 13:04:24 -0400 | [diff] [blame] | 535 | struct saved *p; |
| 536 | |
| 537 | if (nd->flags & LOOKUP_RCU) { |
Kees Cook | 6da2ec5 | 2018-06-12 13:55:00 -0700 | [diff] [blame] | 538 | p= kmalloc_array(MAXSYMLINKS, sizeof(struct saved), |
Al Viro | bc40aee | 2015-05-09 13:04:24 -0400 | [diff] [blame] | 539 | GFP_ATOMIC); |
| 540 | if (unlikely(!p)) |
| 541 | return -ECHILD; |
| 542 | } else { |
Kees Cook | 6da2ec5 | 2018-06-12 13:55:00 -0700 | [diff] [blame] | 543 | p= kmalloc_array(MAXSYMLINKS, sizeof(struct saved), |
Al Viro | 894bc8c | 2015-05-02 07:16:16 -0400 | [diff] [blame] | 544 | GFP_KERNEL); |
Al Viro | bc40aee | 2015-05-09 13:04:24 -0400 | [diff] [blame] | 545 | if (unlikely(!p)) |
| 546 | return -ENOMEM; |
| 547 | } |
Al Viro | 894bc8c | 2015-05-02 07:16:16 -0400 | [diff] [blame] | 548 | memcpy(p, nd->internal, sizeof(nd->internal)); |
| 549 | nd->stack = p; |
| 550 | return 0; |
| 551 | } |
| 552 | |
Eric W. Biederman | 397d425 | 2015-08-15 20:27:13 -0500 | [diff] [blame] | 553 | /** |
| 554 | * path_connected - Verify that a path->dentry is below path->mnt.mnt_root |
| 555 | * @path: nameidate to verify |
| 556 | * |
| 557 | * Rename can sometimes move a file or directory outside of a bind |
| 558 | * mount, path_connected allows those cases to be detected. |
| 559 | */ |
| 560 | static bool path_connected(const struct path *path) |
| 561 | { |
| 562 | struct vfsmount *mnt = path->mnt; |
Eric W. Biederman | 95dd775 | 2018-03-14 18:20:29 -0500 | [diff] [blame] | 563 | struct super_block *sb = mnt->mnt_sb; |
Eric W. Biederman | 397d425 | 2015-08-15 20:27:13 -0500 | [diff] [blame] | 564 | |
Eric W. Biederman | 95dd775 | 2018-03-14 18:20:29 -0500 | [diff] [blame] | 565 | /* Bind mounts and multi-root filesystems can have disconnected paths */ |
| 566 | 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] | 567 | return true; |
| 568 | |
| 569 | return is_subdir(path->dentry, mnt->mnt_root); |
| 570 | } |
| 571 | |
Al Viro | 894bc8c | 2015-05-02 07:16:16 -0400 | [diff] [blame] | 572 | static inline int nd_alloc_stack(struct nameidata *nd) |
| 573 | { |
Al Viro | da4e0be | 2015-05-03 20:52:15 -0400 | [diff] [blame] | 574 | if (likely(nd->depth != EMBEDDED_LEVELS)) |
Al Viro | 894bc8c | 2015-05-02 07:16:16 -0400 | [diff] [blame] | 575 | return 0; |
| 576 | if (likely(nd->stack != nd->internal)) |
| 577 | return 0; |
| 578 | return __nd_alloc_stack(nd); |
| 579 | } |
| 580 | |
Al Viro | 7973387 | 2015-05-09 12:55:43 -0400 | [diff] [blame] | 581 | static void drop_links(struct nameidata *nd) |
| 582 | { |
| 583 | int i = nd->depth; |
| 584 | while (i--) { |
| 585 | struct saved *last = nd->stack + i; |
Al Viro | fceef39 | 2015-12-29 15:58:39 -0500 | [diff] [blame] | 586 | do_delayed_call(&last->done); |
| 587 | clear_delayed_call(&last->done); |
Al Viro | 7973387 | 2015-05-09 12:55:43 -0400 | [diff] [blame] | 588 | } |
| 589 | } |
| 590 | |
| 591 | static void terminate_walk(struct nameidata *nd) |
| 592 | { |
| 593 | drop_links(nd); |
| 594 | if (!(nd->flags & LOOKUP_RCU)) { |
| 595 | int i; |
| 596 | path_put(&nd->path); |
| 597 | for (i = 0; i < nd->depth; i++) |
| 598 | path_put(&nd->stack[i].link); |
Al Viro | 84a2bd3 | 2019-07-16 21:20:17 -0400 | [diff] [blame] | 599 | if (nd->flags & LOOKUP_ROOT_GRABBED) { |
Al Viro | 102b8af | 2015-05-12 17:35:52 -0400 | [diff] [blame] | 600 | path_put(&nd->root); |
Al Viro | 84a2bd3 | 2019-07-16 21:20:17 -0400 | [diff] [blame] | 601 | nd->flags &= ~LOOKUP_ROOT_GRABBED; |
Al Viro | 102b8af | 2015-05-12 17:35:52 -0400 | [diff] [blame] | 602 | } |
Al Viro | 7973387 | 2015-05-09 12:55:43 -0400 | [diff] [blame] | 603 | } else { |
| 604 | nd->flags &= ~LOOKUP_RCU; |
Al Viro | 7973387 | 2015-05-09 12:55:43 -0400 | [diff] [blame] | 605 | rcu_read_unlock(); |
| 606 | } |
| 607 | nd->depth = 0; |
| 608 | } |
| 609 | |
| 610 | /* path_put is needed afterwards regardless of success or failure */ |
| 611 | static bool legitimize_path(struct nameidata *nd, |
| 612 | struct path *path, unsigned seq) |
| 613 | { |
| 614 | int res = __legitimize_mnt(path->mnt, nd->m_seq); |
| 615 | if (unlikely(res)) { |
| 616 | if (res > 0) |
| 617 | path->mnt = NULL; |
| 618 | path->dentry = NULL; |
| 619 | return false; |
| 620 | } |
| 621 | if (unlikely(!lockref_get_not_dead(&path->dentry->d_lockref))) { |
| 622 | path->dentry = NULL; |
| 623 | return false; |
| 624 | } |
| 625 | return !read_seqcount_retry(&path->dentry->d_seq, seq); |
| 626 | } |
| 627 | |
| 628 | static bool legitimize_links(struct nameidata *nd) |
| 629 | { |
| 630 | int i; |
| 631 | for (i = 0; i < nd->depth; i++) { |
| 632 | struct saved *last = nd->stack + i; |
| 633 | if (unlikely(!legitimize_path(nd, &last->link, last->seq))) { |
| 634 | drop_links(nd); |
| 635 | nd->depth = i + 1; |
| 636 | return false; |
| 637 | } |
| 638 | } |
| 639 | return true; |
| 640 | } |
| 641 | |
Al Viro | ee594bf | 2019-07-16 21:05:36 -0400 | [diff] [blame] | 642 | static bool legitimize_root(struct nameidata *nd) |
| 643 | { |
Aleksa Sarai | adb21d2 | 2019-12-07 01:13:33 +1100 | [diff] [blame] | 644 | /* |
| 645 | * For scoped-lookups (where nd->root has been zeroed), we need to |
| 646 | * restart the whole lookup from scratch -- because set_root() is wrong |
| 647 | * for these lookups (nd->dfd is the root, not the filesystem root). |
| 648 | */ |
| 649 | if (!nd->root.mnt && (nd->flags & LOOKUP_IS_SCOPED)) |
| 650 | return false; |
| 651 | /* 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] | 652 | if (!nd->root.mnt || (nd->flags & LOOKUP_ROOT)) |
| 653 | return true; |
Al Viro | 84a2bd3 | 2019-07-16 21:20:17 -0400 | [diff] [blame] | 654 | nd->flags |= LOOKUP_ROOT_GRABBED; |
Al Viro | ee594bf | 2019-07-16 21:05:36 -0400 | [diff] [blame] | 655 | return legitimize_path(nd, &nd->root, nd->root_seq); |
| 656 | } |
| 657 | |
Al Viro | 19660af | 2011-03-25 10:32:48 -0400 | [diff] [blame] | 658 | /* |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 659 | * Path walking has 2 modes, rcu-walk and ref-walk (see |
Al Viro | 19660af | 2011-03-25 10:32:48 -0400 | [diff] [blame] | 660 | * Documentation/filesystems/path-lookup.txt). In situations when we can't |
| 661 | * 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] | 662 | * normal reference counts on dentries and vfsmounts to transition to ref-walk |
Al Viro | 19660af | 2011-03-25 10:32:48 -0400 | [diff] [blame] | 663 | * mode. Refcounts are grabbed at the last known good point before rcu-walk |
| 664 | * got stuck, so ref-walk may continue from there. If this is not successful |
| 665 | * (eg. a seqcount has changed), then failure is returned and it's up to caller |
| 666 | * to restart the path walk from the beginning in ref-walk mode. |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 667 | */ |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 668 | |
| 669 | /** |
Al Viro | 19660af | 2011-03-25 10:32:48 -0400 | [diff] [blame] | 670 | * unlazy_walk - try to switch to ref-walk mode. |
| 671 | * @nd: nameidata pathwalk data |
Randy Dunlap | 3919162 | 2011-01-08 19:36:21 -0800 | [diff] [blame] | 672 | * Returns: 0 on success, -ECHILD on failure |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 673 | * |
Al Viro | 4675ac3 | 2017-01-09 22:29:15 -0500 | [diff] [blame] | 674 | * unlazy_walk attempts to legitimize the current nd->path and nd->root |
| 675 | * for ref-walk mode. |
| 676 | * Must be called from rcu-walk context. |
Al Viro | 7973387 | 2015-05-09 12:55:43 -0400 | [diff] [blame] | 677 | * Nothing should touch nameidata between unlazy_walk() failure and |
| 678 | * terminate_walk(). |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 679 | */ |
Al Viro | 4675ac3 | 2017-01-09 22:29:15 -0500 | [diff] [blame] | 680 | static int unlazy_walk(struct nameidata *nd) |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 681 | { |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 682 | struct dentry *parent = nd->path.dentry; |
| 683 | |
| 684 | BUG_ON(!(nd->flags & LOOKUP_RCU)); |
Linus Torvalds | e5c832d | 2013-09-08 18:13:49 -0700 | [diff] [blame] | 685 | |
Linus Torvalds | e5c832d | 2013-09-08 18:13:49 -0700 | [diff] [blame] | 686 | nd->flags &= ~LOOKUP_RCU; |
Al Viro | 7973387 | 2015-05-09 12:55:43 -0400 | [diff] [blame] | 687 | if (unlikely(!legitimize_links(nd))) |
Al Viro | 4675ac3 | 2017-01-09 22:29:15 -0500 | [diff] [blame] | 688 | goto out1; |
Al Viro | 84a2bd3 | 2019-07-16 21:20:17 -0400 | [diff] [blame] | 689 | if (unlikely(!legitimize_path(nd, &nd->path, nd->seq))) |
| 690 | goto out; |
Al Viro | ee594bf | 2019-07-16 21:05:36 -0400 | [diff] [blame] | 691 | if (unlikely(!legitimize_root(nd))) |
| 692 | goto out; |
Al Viro | 4675ac3 | 2017-01-09 22:29:15 -0500 | [diff] [blame] | 693 | rcu_read_unlock(); |
| 694 | BUG_ON(nd->inode != parent->d_inode); |
| 695 | return 0; |
| 696 | |
Al Viro | 84a2bd3 | 2019-07-16 21:20:17 -0400 | [diff] [blame] | 697 | out1: |
Al Viro | 4675ac3 | 2017-01-09 22:29:15 -0500 | [diff] [blame] | 698 | nd->path.mnt = NULL; |
| 699 | nd->path.dentry = NULL; |
Al Viro | 4675ac3 | 2017-01-09 22:29:15 -0500 | [diff] [blame] | 700 | out: |
| 701 | rcu_read_unlock(); |
| 702 | return -ECHILD; |
| 703 | } |
| 704 | |
| 705 | /** |
| 706 | * unlazy_child - try to switch to ref-walk mode. |
| 707 | * @nd: nameidata pathwalk data |
| 708 | * @dentry: child of nd->path.dentry |
| 709 | * @seq: seq number to check dentry against |
| 710 | * Returns: 0 on success, -ECHILD on failure |
| 711 | * |
| 712 | * unlazy_child attempts to legitimize the current nd->path, nd->root and dentry |
| 713 | * for ref-walk mode. @dentry must be a path found by a do_lookup call on |
| 714 | * @nd. Must be called from rcu-walk context. |
| 715 | * Nothing should touch nameidata between unlazy_child() failure and |
| 716 | * terminate_walk(). |
| 717 | */ |
| 718 | static int unlazy_child(struct nameidata *nd, struct dentry *dentry, unsigned seq) |
| 719 | { |
| 720 | BUG_ON(!(nd->flags & LOOKUP_RCU)); |
| 721 | |
| 722 | nd->flags &= ~LOOKUP_RCU; |
| 723 | if (unlikely(!legitimize_links(nd))) |
| 724 | goto out2; |
Al Viro | 7973387 | 2015-05-09 12:55:43 -0400 | [diff] [blame] | 725 | if (unlikely(!legitimize_mnt(nd->path.mnt, nd->m_seq))) |
| 726 | goto out2; |
Al Viro | 4675ac3 | 2017-01-09 22:29:15 -0500 | [diff] [blame] | 727 | if (unlikely(!lockref_get_not_dead(&nd->path.dentry->d_lockref))) |
Al Viro | 7973387 | 2015-05-09 12:55:43 -0400 | [diff] [blame] | 728 | goto out1; |
Al Viro | 48a066e | 2013-09-29 22:06:07 -0400 | [diff] [blame] | 729 | |
Linus Torvalds | 1557008 | 2013-09-02 11:38:06 -0700 | [diff] [blame] | 730 | /* |
Al Viro | 4675ac3 | 2017-01-09 22:29:15 -0500 | [diff] [blame] | 731 | * We need to move both the parent and the dentry from the RCU domain |
| 732 | * to be properly refcounted. And the sequence number in the dentry |
| 733 | * validates *both* dentry counters, since we checked the sequence |
| 734 | * number of the parent after we got the child sequence number. So we |
| 735 | * 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] | 736 | */ |
Al Viro | 4675ac3 | 2017-01-09 22:29:15 -0500 | [diff] [blame] | 737 | if (unlikely(!lockref_get_not_dead(&dentry->d_lockref))) |
| 738 | goto out; |
Al Viro | 84a2bd3 | 2019-07-16 21:20:17 -0400 | [diff] [blame] | 739 | if (unlikely(read_seqcount_retry(&dentry->d_seq, seq))) |
| 740 | goto out_dput; |
Linus Torvalds | e5c832d | 2013-09-08 18:13:49 -0700 | [diff] [blame] | 741 | /* |
| 742 | * Sequence counts matched. Now make sure that the root is |
| 743 | * still valid and get it if required. |
| 744 | */ |
Al Viro | 84a2bd3 | 2019-07-16 21:20:17 -0400 | [diff] [blame] | 745 | if (unlikely(!legitimize_root(nd))) |
| 746 | goto out_dput; |
Al Viro | 8b61e74 | 2013-11-08 12:45:01 -0500 | [diff] [blame] | 747 | rcu_read_unlock(); |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 748 | return 0; |
Al Viro | 19660af | 2011-03-25 10:32:48 -0400 | [diff] [blame] | 749 | |
Al Viro | 7973387 | 2015-05-09 12:55:43 -0400 | [diff] [blame] | 750 | out2: |
| 751 | nd->path.mnt = NULL; |
| 752 | out1: |
| 753 | nd->path.dentry = NULL; |
Linus Torvalds | e5c832d | 2013-09-08 18:13:49 -0700 | [diff] [blame] | 754 | out: |
Al Viro | 8b61e74 | 2013-11-08 12:45:01 -0500 | [diff] [blame] | 755 | rcu_read_unlock(); |
Al Viro | 84a2bd3 | 2019-07-16 21:20:17 -0400 | [diff] [blame] | 756 | return -ECHILD; |
| 757 | out_dput: |
| 758 | rcu_read_unlock(); |
| 759 | dput(dentry); |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 760 | return -ECHILD; |
| 761 | } |
| 762 | |
Al Viro | 4ce16ef3 | 2012-06-10 16:10:59 -0400 | [diff] [blame] | 763 | static inline int d_revalidate(struct dentry *dentry, unsigned int flags) |
Nick Piggin | 34286d6 | 2011-01-07 17:49:57 +1100 | [diff] [blame] | 764 | { |
Al Viro | a89f833 | 2017-01-09 22:25:28 -0500 | [diff] [blame] | 765 | if (unlikely(dentry->d_flags & DCACHE_OP_REVALIDATE)) |
| 766 | return dentry->d_op->d_revalidate(dentry, flags); |
| 767 | else |
| 768 | return 1; |
Nick Piggin | 34286d6 | 2011-01-07 17:49:57 +1100 | [diff] [blame] | 769 | } |
| 770 | |
Al Viro | 9f1fafe | 2011-03-25 11:00:12 -0400 | [diff] [blame] | 771 | /** |
| 772 | * complete_walk - successful completion of path walk |
| 773 | * @nd: pointer nameidata |
Jeff Layton | 39159de | 2009-12-07 12:01:50 -0500 | [diff] [blame] | 774 | * |
Al Viro | 9f1fafe | 2011-03-25 11:00:12 -0400 | [diff] [blame] | 775 | * If we had been in RCU mode, drop out of it and legitimize nd->path. |
| 776 | * Revalidate the final result, unless we'd already done that during |
| 777 | * the path walk or the filesystem doesn't ask for it. Return 0 on |
| 778 | * success, -error on failure. In case of failure caller does not |
| 779 | * need to drop nd->path. |
Jeff Layton | 39159de | 2009-12-07 12:01:50 -0500 | [diff] [blame] | 780 | */ |
Al Viro | 9f1fafe | 2011-03-25 11:00:12 -0400 | [diff] [blame] | 781 | static int complete_walk(struct nameidata *nd) |
Jeff Layton | 39159de | 2009-12-07 12:01:50 -0500 | [diff] [blame] | 782 | { |
Al Viro | 16c2cd7 | 2011-02-22 15:50:10 -0500 | [diff] [blame] | 783 | struct dentry *dentry = nd->path.dentry; |
Jeff Layton | 39159de | 2009-12-07 12:01:50 -0500 | [diff] [blame] | 784 | int status; |
Jeff Layton | 39159de | 2009-12-07 12:01:50 -0500 | [diff] [blame] | 785 | |
Al Viro | 9f1fafe | 2011-03-25 11:00:12 -0400 | [diff] [blame] | 786 | if (nd->flags & LOOKUP_RCU) { |
Aleksa Sarai | adb21d2 | 2019-12-07 01:13:33 +1100 | [diff] [blame] | 787 | /* |
| 788 | * We don't want to zero nd->root for scoped-lookups or |
| 789 | * externally-managed nd->root. |
| 790 | */ |
| 791 | if (!(nd->flags & (LOOKUP_ROOT | LOOKUP_IS_SCOPED))) |
Al Viro | 9f1fafe | 2011-03-25 11:00:12 -0400 | [diff] [blame] | 792 | nd->root.mnt = NULL; |
Al Viro | 4675ac3 | 2017-01-09 22:29:15 -0500 | [diff] [blame] | 793 | if (unlikely(unlazy_walk(nd))) |
Al Viro | 48a066e | 2013-09-29 22:06:07 -0400 | [diff] [blame] | 794 | return -ECHILD; |
Al Viro | 9f1fafe | 2011-03-25 11:00:12 -0400 | [diff] [blame] | 795 | } |
| 796 | |
Aleksa Sarai | adb21d2 | 2019-12-07 01:13:33 +1100 | [diff] [blame] | 797 | if (unlikely(nd->flags & LOOKUP_IS_SCOPED)) { |
| 798 | /* |
| 799 | * While the guarantee of LOOKUP_IS_SCOPED is (roughly) "don't |
| 800 | * ever step outside the root during lookup" and should already |
| 801 | * be guaranteed by the rest of namei, we want to avoid a namei |
| 802 | * BUG resulting in userspace being given a path that was not |
| 803 | * scoped within the root at some point during the lookup. |
| 804 | * |
| 805 | * So, do a final sanity-check to make sure that in the |
| 806 | * worst-case scenario (a complete bypass of LOOKUP_IS_SCOPED) |
| 807 | * we won't silently return an fd completely outside of the |
| 808 | * requested root to userspace. |
| 809 | * |
| 810 | * Userspace could move the path outside the root after this |
| 811 | * check, but as discussed elsewhere this is not a concern (the |
| 812 | * resolved file was inside the root at some point). |
| 813 | */ |
| 814 | if (!path_is_under(&nd->path, &nd->root)) |
| 815 | return -EXDEV; |
| 816 | } |
| 817 | |
Al Viro | 16c2cd7 | 2011-02-22 15:50:10 -0500 | [diff] [blame] | 818 | if (likely(!(nd->flags & LOOKUP_JUMPED))) |
Jeff Layton | 39159de | 2009-12-07 12:01:50 -0500 | [diff] [blame] | 819 | return 0; |
| 820 | |
Jeff Layton | ecf3d1f | 2013-02-20 11:19:05 -0500 | [diff] [blame] | 821 | if (likely(!(dentry->d_flags & DCACHE_OP_WEAK_REVALIDATE))) |
Al Viro | 16c2cd7 | 2011-02-22 15:50:10 -0500 | [diff] [blame] | 822 | return 0; |
| 823 | |
Jeff Layton | ecf3d1f | 2013-02-20 11:19:05 -0500 | [diff] [blame] | 824 | status = dentry->d_op->d_weak_revalidate(dentry, nd->flags); |
Jeff Layton | 39159de | 2009-12-07 12:01:50 -0500 | [diff] [blame] | 825 | if (status > 0) |
| 826 | return 0; |
| 827 | |
Al Viro | 16c2cd7 | 2011-02-22 15:50:10 -0500 | [diff] [blame] | 828 | if (!status) |
Jeff Layton | 39159de | 2009-12-07 12:01:50 -0500 | [diff] [blame] | 829 | status = -ESTALE; |
Al Viro | 16c2cd7 | 2011-02-22 15:50:10 -0500 | [diff] [blame] | 830 | |
Jeff Layton | 39159de | 2009-12-07 12:01:50 -0500 | [diff] [blame] | 831 | return status; |
| 832 | } |
| 833 | |
Aleksa Sarai | 740a167 | 2019-12-07 01:13:29 +1100 | [diff] [blame] | 834 | static int set_root(struct nameidata *nd) |
Al Viro | 2a73787 | 2009-04-07 11:49:53 -0400 | [diff] [blame] | 835 | { |
Al Viro | 7bd8837 | 2014-09-13 21:55:46 -0400 | [diff] [blame] | 836 | struct fs_struct *fs = current->fs; |
Nick Piggin | c28cc36 | 2011-01-07 17:49:53 +1100 | [diff] [blame] | 837 | |
Aleksa Sarai | adb21d2 | 2019-12-07 01:13:33 +1100 | [diff] [blame] | 838 | /* |
| 839 | * Jumping to the real root in a scoped-lookup is a BUG in namei, but we |
| 840 | * still have to ensure it doesn't happen because it will cause a breakout |
| 841 | * from the dirfd. |
| 842 | */ |
| 843 | if (WARN_ON(nd->flags & LOOKUP_IS_SCOPED)) |
| 844 | return -ENOTRECOVERABLE; |
| 845 | |
Al Viro | 9e6697e | 2015-12-05 20:07:21 -0500 | [diff] [blame] | 846 | if (nd->flags & LOOKUP_RCU) { |
| 847 | unsigned seq; |
| 848 | |
| 849 | do { |
| 850 | seq = read_seqcount_begin(&fs->seq); |
| 851 | nd->root = fs->root; |
| 852 | nd->root_seq = __read_seqcount_begin(&nd->root.dentry->d_seq); |
| 853 | } while (read_seqcount_retry(&fs->seq, seq)); |
| 854 | } else { |
| 855 | get_fs_root(fs, &nd->root); |
Al Viro | 84a2bd3 | 2019-07-16 21:20:17 -0400 | [diff] [blame] | 856 | nd->flags |= LOOKUP_ROOT_GRABBED; |
Al Viro | 9e6697e | 2015-12-05 20:07:21 -0500 | [diff] [blame] | 857 | } |
Aleksa Sarai | 740a167 | 2019-12-07 01:13:29 +1100 | [diff] [blame] | 858 | return 0; |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 859 | } |
| 860 | |
Nick Piggin | 7b9337a | 2011-01-14 08:42:43 +0000 | [diff] [blame] | 861 | static inline void path_to_nameidata(const struct path *path, |
| 862 | struct nameidata *nd) |
Miklos Szeredi | 09dd17d | 2005-09-06 15:18:21 -0700 | [diff] [blame] | 863 | { |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 864 | if (!(nd->flags & LOOKUP_RCU)) { |
| 865 | dput(nd->path.dentry); |
| 866 | if (nd->path.mnt != path->mnt) |
| 867 | mntput(nd->path.mnt); |
Huang Shijie | 9a22968 | 2010-04-02 17:37:13 +0800 | [diff] [blame] | 868 | } |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 869 | nd->path.mnt = path->mnt; |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 870 | nd->path.dentry = path->dentry; |
Miklos Szeredi | 09dd17d | 2005-09-06 15:18:21 -0700 | [diff] [blame] | 871 | } |
| 872 | |
Al Viro | 248fb5b | 2015-12-05 20:51:58 -0500 | [diff] [blame] | 873 | static int nd_jump_root(struct nameidata *nd) |
| 874 | { |
Aleksa Sarai | adb21d2 | 2019-12-07 01:13:33 +1100 | [diff] [blame] | 875 | if (unlikely(nd->flags & LOOKUP_BENEATH)) |
| 876 | return -EXDEV; |
Aleksa Sarai | 72ba292 | 2019-12-07 01:13:32 +1100 | [diff] [blame] | 877 | if (unlikely(nd->flags & LOOKUP_NO_XDEV)) { |
| 878 | /* Absolute path arguments to path_init() are allowed. */ |
| 879 | if (nd->path.mnt != NULL && nd->path.mnt != nd->root.mnt) |
| 880 | return -EXDEV; |
| 881 | } |
Aleksa Sarai | 740a167 | 2019-12-07 01:13:29 +1100 | [diff] [blame] | 882 | if (!nd->root.mnt) { |
| 883 | int error = set_root(nd); |
| 884 | if (error) |
| 885 | return error; |
| 886 | } |
Al Viro | 248fb5b | 2015-12-05 20:51:58 -0500 | [diff] [blame] | 887 | if (nd->flags & LOOKUP_RCU) { |
| 888 | struct dentry *d; |
| 889 | nd->path = nd->root; |
| 890 | d = nd->path.dentry; |
| 891 | nd->inode = d->d_inode; |
| 892 | nd->seq = nd->root_seq; |
| 893 | if (unlikely(read_seqcount_retry(&d->d_seq, nd->seq))) |
| 894 | return -ECHILD; |
| 895 | } else { |
| 896 | path_put(&nd->path); |
| 897 | nd->path = nd->root; |
| 898 | path_get(&nd->path); |
| 899 | nd->inode = nd->path.dentry->d_inode; |
| 900 | } |
| 901 | nd->flags |= LOOKUP_JUMPED; |
| 902 | return 0; |
| 903 | } |
| 904 | |
Christoph Hellwig | b5fb63c1 | 2012-06-18 10:47:04 -0400 | [diff] [blame] | 905 | /* |
Al Viro | 6b25539 | 2015-11-17 10:20:54 -0500 | [diff] [blame] | 906 | * Helper to directly jump to a known parsed path from ->get_link, |
Christoph Hellwig | b5fb63c1 | 2012-06-18 10:47:04 -0400 | [diff] [blame] | 907 | * caller must have taken a reference to path beforehand. |
| 908 | */ |
Aleksa Sarai | 1bc8207 | 2019-12-07 01:13:28 +1100 | [diff] [blame] | 909 | int nd_jump_link(struct path *path) |
Christoph Hellwig | b5fb63c1 | 2012-06-18 10:47:04 -0400 | [diff] [blame] | 910 | { |
Aleksa Sarai | 4b99d49 | 2019-12-07 01:13:31 +1100 | [diff] [blame] | 911 | int error = -ELOOP; |
Al Viro | 6e77137b | 2015-05-02 13:37:52 -0400 | [diff] [blame] | 912 | struct nameidata *nd = current->nameidata; |
Christoph Hellwig | b5fb63c1 | 2012-06-18 10:47:04 -0400 | [diff] [blame] | 913 | |
Aleksa Sarai | 4b99d49 | 2019-12-07 01:13:31 +1100 | [diff] [blame] | 914 | if (unlikely(nd->flags & LOOKUP_NO_MAGICLINKS)) |
| 915 | goto err; |
| 916 | |
Aleksa Sarai | 72ba292 | 2019-12-07 01:13:32 +1100 | [diff] [blame] | 917 | error = -EXDEV; |
| 918 | if (unlikely(nd->flags & LOOKUP_NO_XDEV)) { |
| 919 | if (nd->path.mnt != path->mnt) |
| 920 | goto err; |
| 921 | } |
Aleksa Sarai | adb21d2 | 2019-12-07 01:13:33 +1100 | [diff] [blame] | 922 | /* Not currently safe for scoped-lookups. */ |
| 923 | if (unlikely(nd->flags & LOOKUP_IS_SCOPED)) |
| 924 | goto err; |
Aleksa Sarai | 72ba292 | 2019-12-07 01:13:32 +1100 | [diff] [blame] | 925 | |
Aleksa Sarai | 4b99d49 | 2019-12-07 01:13:31 +1100 | [diff] [blame] | 926 | path_put(&nd->path); |
Christoph Hellwig | b5fb63c1 | 2012-06-18 10:47:04 -0400 | [diff] [blame] | 927 | nd->path = *path; |
| 928 | nd->inode = nd->path.dentry->d_inode; |
| 929 | nd->flags |= LOOKUP_JUMPED; |
Aleksa Sarai | 1bc8207 | 2019-12-07 01:13:28 +1100 | [diff] [blame] | 930 | return 0; |
Aleksa Sarai | 4b99d49 | 2019-12-07 01:13:31 +1100 | [diff] [blame] | 931 | |
| 932 | err: |
| 933 | path_put(path); |
| 934 | return error; |
Christoph Hellwig | b5fb63c1 | 2012-06-18 10:47:04 -0400 | [diff] [blame] | 935 | } |
| 936 | |
Al Viro | b9ff442 | 2015-05-02 20:19:23 -0400 | [diff] [blame] | 937 | static inline void put_link(struct nameidata *nd) |
Al Viro | 574197e | 2011-03-14 22:20:34 -0400 | [diff] [blame] | 938 | { |
Al Viro | 21c3003 | 2015-05-03 21:06:24 -0400 | [diff] [blame] | 939 | struct saved *last = nd->stack + --nd->depth; |
Al Viro | fceef39 | 2015-12-29 15:58:39 -0500 | [diff] [blame] | 940 | do_delayed_call(&last->done); |
Al Viro | 6548fae | 2015-05-07 20:32:22 -0400 | [diff] [blame] | 941 | if (!(nd->flags & LOOKUP_RCU)) |
| 942 | path_put(&last->link); |
Al Viro | 574197e | 2011-03-14 22:20:34 -0400 | [diff] [blame] | 943 | } |
| 944 | |
Linus Torvalds | 561ec64 | 2012-10-26 10:05:07 -0700 | [diff] [blame] | 945 | int sysctl_protected_symlinks __read_mostly = 0; |
| 946 | int sysctl_protected_hardlinks __read_mostly = 0; |
Salvatore Mesoraca | 30aba66 | 2018-08-23 17:00:35 -0700 | [diff] [blame] | 947 | int sysctl_protected_fifos __read_mostly; |
| 948 | int sysctl_protected_regular __read_mostly; |
Kees Cook | 800179c | 2012-07-25 17:29:07 -0700 | [diff] [blame] | 949 | |
| 950 | /** |
| 951 | * may_follow_link - Check symlink following for unsafe situations |
Randy Dunlap | 5585263 | 2012-08-18 17:39:25 -0700 | [diff] [blame] | 952 | * @nd: nameidata pathwalk data |
Kees Cook | 800179c | 2012-07-25 17:29:07 -0700 | [diff] [blame] | 953 | * |
| 954 | * In the case of the sysctl_protected_symlinks sysctl being enabled, |
| 955 | * CAP_DAC_OVERRIDE needs to be specifically ignored if the symlink is |
| 956 | * in a sticky world-writable directory. This is to protect privileged |
| 957 | * processes from failing races against path names that may change out |
| 958 | * from under them by way of other users creating malicious symlinks. |
| 959 | * It will permit symlinks to be followed only when outside a sticky |
| 960 | * world-writable directory, or when the uid of the symlink and follower |
| 961 | * match, or when the directory owner matches the symlink's owner. |
| 962 | * |
| 963 | * Returns 0 if following the symlink is allowed, -ve on error. |
| 964 | */ |
Al Viro | fec2fa2 | 2015-05-06 15:58:18 -0400 | [diff] [blame] | 965 | static inline int may_follow_link(struct nameidata *nd) |
Kees Cook | 800179c | 2012-07-25 17:29:07 -0700 | [diff] [blame] | 966 | { |
| 967 | const struct inode *inode; |
| 968 | const struct inode *parent; |
Seth Forshee | 2d7f9e2 | 2016-04-26 14:36:23 -0500 | [diff] [blame] | 969 | kuid_t puid; |
Kees Cook | 800179c | 2012-07-25 17:29:07 -0700 | [diff] [blame] | 970 | |
| 971 | if (!sysctl_protected_symlinks) |
| 972 | return 0; |
| 973 | |
| 974 | /* Allowed if owner and follower match. */ |
Al Viro | fceef39 | 2015-12-29 15:58:39 -0500 | [diff] [blame] | 975 | inode = nd->link_inode; |
Eric W. Biederman | 81abe27 | 2012-08-03 09:38:08 -0700 | [diff] [blame] | 976 | if (uid_eq(current_cred()->fsuid, inode->i_uid)) |
Kees Cook | 800179c | 2012-07-25 17:29:07 -0700 | [diff] [blame] | 977 | return 0; |
| 978 | |
| 979 | /* Allowed if parent directory not sticky and world-writable. */ |
Al Viro | aa65fa3 | 2015-08-04 23:23:50 -0400 | [diff] [blame] | 980 | parent = nd->inode; |
Kees Cook | 800179c | 2012-07-25 17:29:07 -0700 | [diff] [blame] | 981 | if ((parent->i_mode & (S_ISVTX|S_IWOTH)) != (S_ISVTX|S_IWOTH)) |
| 982 | return 0; |
| 983 | |
| 984 | /* Allowed if parent directory and link owner match. */ |
Seth Forshee | 2d7f9e2 | 2016-04-26 14:36:23 -0500 | [diff] [blame] | 985 | puid = parent->i_uid; |
| 986 | if (uid_valid(puid) && uid_eq(puid, inode->i_uid)) |
Kees Cook | 800179c | 2012-07-25 17:29:07 -0700 | [diff] [blame] | 987 | return 0; |
| 988 | |
Al Viro | 31956502 | 2015-05-07 20:37:40 -0400 | [diff] [blame] | 989 | if (nd->flags & LOOKUP_RCU) |
| 990 | return -ECHILD; |
| 991 | |
Richard Guy Briggs | ea841ba | 2018-03-21 04:42:21 -0400 | [diff] [blame] | 992 | audit_inode(nd->name, nd->stack[0].link.dentry, 0); |
Kees Cook | 245d736 | 2019-10-02 16:41:58 -0700 | [diff] [blame] | 993 | audit_log_path_denied(AUDIT_ANOM_LINK, "follow_link"); |
Kees Cook | 800179c | 2012-07-25 17:29:07 -0700 | [diff] [blame] | 994 | return -EACCES; |
| 995 | } |
| 996 | |
| 997 | /** |
| 998 | * safe_hardlink_source - Check for safe hardlink conditions |
| 999 | * @inode: the source inode to hardlink from |
| 1000 | * |
| 1001 | * Return false if at least one of the following conditions: |
| 1002 | * - inode is not a regular file |
| 1003 | * - inode is setuid |
| 1004 | * - inode is setgid and group-exec |
| 1005 | * - access failure for read and write |
| 1006 | * |
| 1007 | * Otherwise returns true. |
| 1008 | */ |
| 1009 | static bool safe_hardlink_source(struct inode *inode) |
| 1010 | { |
| 1011 | umode_t mode = inode->i_mode; |
| 1012 | |
| 1013 | /* Special files should not get pinned to the filesystem. */ |
| 1014 | if (!S_ISREG(mode)) |
| 1015 | return false; |
| 1016 | |
| 1017 | /* Setuid files should not get pinned to the filesystem. */ |
| 1018 | if (mode & S_ISUID) |
| 1019 | return false; |
| 1020 | |
| 1021 | /* Executable setgid files should not get pinned to the filesystem. */ |
| 1022 | if ((mode & (S_ISGID | S_IXGRP)) == (S_ISGID | S_IXGRP)) |
| 1023 | return false; |
| 1024 | |
| 1025 | /* Hardlinking to unreadable or unwritable sources is dangerous. */ |
| 1026 | if (inode_permission(inode, MAY_READ | MAY_WRITE)) |
| 1027 | return false; |
| 1028 | |
| 1029 | return true; |
| 1030 | } |
| 1031 | |
| 1032 | /** |
| 1033 | * may_linkat - Check permissions for creating a hardlink |
| 1034 | * @link: the source to hardlink from |
| 1035 | * |
| 1036 | * Block hardlink when all of: |
| 1037 | * - sysctl_protected_hardlinks enabled |
| 1038 | * - fsuid does not match inode |
| 1039 | * - hardlink source is unsafe (see safe_hardlink_source() above) |
Dirk Steinmetz | f2ca379 | 2015-10-20 16:09:19 +0200 | [diff] [blame] | 1040 | * - not CAP_FOWNER in a namespace with the inode owner uid mapped |
Kees Cook | 800179c | 2012-07-25 17:29:07 -0700 | [diff] [blame] | 1041 | * |
| 1042 | * Returns 0 if successful, -ve on error. |
| 1043 | */ |
| 1044 | static int may_linkat(struct path *link) |
| 1045 | { |
Eric W. Biederman | 593d1ce | 2017-09-14 12:07:32 -0500 | [diff] [blame] | 1046 | struct inode *inode = link->dentry->d_inode; |
| 1047 | |
| 1048 | /* Inode writeback is not safe when the uid or gid are invalid. */ |
| 1049 | if (!uid_valid(inode->i_uid) || !gid_valid(inode->i_gid)) |
| 1050 | return -EOVERFLOW; |
Kees Cook | 800179c | 2012-07-25 17:29:07 -0700 | [diff] [blame] | 1051 | |
| 1052 | if (!sysctl_protected_hardlinks) |
| 1053 | return 0; |
| 1054 | |
Kees Cook | 800179c | 2012-07-25 17:29:07 -0700 | [diff] [blame] | 1055 | /* Source inode owner (or CAP_FOWNER) can hardlink all they like, |
| 1056 | * otherwise, it must be a safe source. |
| 1057 | */ |
Kees Cook | cc658db | 2017-06-21 09:53:06 -0700 | [diff] [blame] | 1058 | if (safe_hardlink_source(inode) || inode_owner_or_capable(inode)) |
Kees Cook | 800179c | 2012-07-25 17:29:07 -0700 | [diff] [blame] | 1059 | return 0; |
| 1060 | |
Kees Cook | 245d736 | 2019-10-02 16:41:58 -0700 | [diff] [blame] | 1061 | audit_log_path_denied(AUDIT_ANOM_LINK, "linkat"); |
Kees Cook | 800179c | 2012-07-25 17:29:07 -0700 | [diff] [blame] | 1062 | return -EPERM; |
| 1063 | } |
| 1064 | |
Salvatore Mesoraca | 30aba66 | 2018-08-23 17:00:35 -0700 | [diff] [blame] | 1065 | /** |
| 1066 | * may_create_in_sticky - Check whether an O_CREAT open in a sticky directory |
| 1067 | * should be allowed, or not, on files that already |
| 1068 | * exist. |
Al Viro | d0cb501 | 2020-01-26 09:29:34 -0500 | [diff] [blame] | 1069 | * @dir_mode: mode bits of directory |
| 1070 | * @dir_uid: owner of directory |
Salvatore Mesoraca | 30aba66 | 2018-08-23 17:00:35 -0700 | [diff] [blame] | 1071 | * @inode: the inode of the file to open |
| 1072 | * |
| 1073 | * Block an O_CREAT open of a FIFO (or a regular file) when: |
| 1074 | * - sysctl_protected_fifos (or sysctl_protected_regular) is enabled |
| 1075 | * - the file already exists |
| 1076 | * - we are in a sticky directory |
| 1077 | * - we don't own the file |
| 1078 | * - the owner of the directory doesn't own the file |
| 1079 | * - the directory is world writable |
| 1080 | * If the sysctl_protected_fifos (or sysctl_protected_regular) is set to 2 |
| 1081 | * the directory doesn't have to be world writable: being group writable will |
| 1082 | * be enough. |
| 1083 | * |
| 1084 | * Returns 0 if the open is allowed, -ve on error. |
| 1085 | */ |
Al Viro | d0cb501 | 2020-01-26 09:29:34 -0500 | [diff] [blame] | 1086 | 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] | 1087 | struct inode * const inode) |
| 1088 | { |
| 1089 | if ((!sysctl_protected_fifos && S_ISFIFO(inode->i_mode)) || |
| 1090 | (!sysctl_protected_regular && S_ISREG(inode->i_mode)) || |
Al Viro | d0cb501 | 2020-01-26 09:29:34 -0500 | [diff] [blame] | 1091 | likely(!(dir_mode & S_ISVTX)) || |
| 1092 | uid_eq(inode->i_uid, dir_uid) || |
Salvatore Mesoraca | 30aba66 | 2018-08-23 17:00:35 -0700 | [diff] [blame] | 1093 | uid_eq(current_fsuid(), inode->i_uid)) |
| 1094 | return 0; |
| 1095 | |
Al Viro | d0cb501 | 2020-01-26 09:29:34 -0500 | [diff] [blame] | 1096 | if (likely(dir_mode & 0002) || |
| 1097 | (dir_mode & 0020 && |
Salvatore Mesoraca | 30aba66 | 2018-08-23 17:00:35 -0700 | [diff] [blame] | 1098 | ((sysctl_protected_fifos >= 2 && S_ISFIFO(inode->i_mode)) || |
| 1099 | (sysctl_protected_regular >= 2 && S_ISREG(inode->i_mode))))) { |
Kees Cook | 245d736 | 2019-10-02 16:41:58 -0700 | [diff] [blame] | 1100 | const char *operation = S_ISFIFO(inode->i_mode) ? |
| 1101 | "sticky_create_fifo" : |
| 1102 | "sticky_create_regular"; |
| 1103 | audit_log_path_denied(AUDIT_ANOM_CREAT, operation); |
Salvatore Mesoraca | 30aba66 | 2018-08-23 17:00:35 -0700 | [diff] [blame] | 1104 | return -EACCES; |
| 1105 | } |
| 1106 | return 0; |
| 1107 | } |
| 1108 | |
Al Viro | 3b2e7f7 | 2015-04-19 00:53:50 -0400 | [diff] [blame] | 1109 | static __always_inline |
| 1110 | const char *get_link(struct nameidata *nd) |
Ian Kent | 051d381 | 2006-03-27 01:14:53 -0800 | [diff] [blame] | 1111 | { |
Al Viro | ab10492 | 2015-05-10 11:50:01 -0400 | [diff] [blame] | 1112 | struct saved *last = nd->stack + nd->depth - 1; |
Al Viro | 1cf2665 | 2015-05-06 16:01:56 -0400 | [diff] [blame] | 1113 | struct dentry *dentry = last->link.dentry; |
Al Viro | fceef39 | 2015-12-29 15:58:39 -0500 | [diff] [blame] | 1114 | struct inode *inode = nd->link_inode; |
Al Viro | 6d7b5aa | 2012-06-10 04:15:17 -0400 | [diff] [blame] | 1115 | int error; |
Al Viro | 0a959df | 2015-04-18 18:23:41 -0400 | [diff] [blame] | 1116 | const char *res; |
Ian Kent | 051d381 | 2006-03-27 01:14:53 -0800 | [diff] [blame] | 1117 | |
Al Viro | 4367972 | 2020-01-14 09:55:16 -0500 | [diff] [blame] | 1118 | if (!(nd->flags & LOOKUP_PARENT)) { |
| 1119 | error = may_follow_link(nd); |
| 1120 | if (unlikely(error)) |
| 1121 | return ERR_PTR(error); |
| 1122 | } |
| 1123 | |
Aleksa Sarai | 2781214 | 2019-12-07 01:13:30 +1100 | [diff] [blame] | 1124 | if (unlikely(nd->flags & LOOKUP_NO_SYMLINKS)) |
| 1125 | return ERR_PTR(-ELOOP); |
| 1126 | |
NeilBrown | 8fa9dd2 | 2015-03-23 13:37:40 +1100 | [diff] [blame] | 1127 | if (!(nd->flags & LOOKUP_RCU)) { |
| 1128 | touch_atime(&last->link); |
| 1129 | cond_resched(); |
Miklos Szeredi | c671854 | 2018-07-18 15:44:43 +0200 | [diff] [blame] | 1130 | } else if (atime_needs_update(&last->link, inode)) { |
Al Viro | 4675ac3 | 2017-01-09 22:29:15 -0500 | [diff] [blame] | 1131 | if (unlikely(unlazy_walk(nd))) |
NeilBrown | 8fa9dd2 | 2015-03-23 13:37:40 +1100 | [diff] [blame] | 1132 | return ERR_PTR(-ECHILD); |
| 1133 | touch_atime(&last->link); |
| 1134 | } |
| 1135 | |
NeilBrown | bda0be7 | 2015-03-23 13:37:39 +1100 | [diff] [blame] | 1136 | error = security_inode_follow_link(dentry, inode, |
| 1137 | nd->flags & LOOKUP_RCU); |
| 1138 | if (unlikely(error)) |
Al Viro | 6920a44 | 2015-05-10 10:43:46 -0400 | [diff] [blame] | 1139 | return ERR_PTR(error); |
Al Viro | 36f3b4f | 2011-02-22 21:24:38 -0500 | [diff] [blame] | 1140 | |
Al Viro | 86acdca1 | 2009-12-22 23:45:11 -0500 | [diff] [blame] | 1141 | nd->last_type = LAST_BIND; |
Eric Biggers | 4c4f7c1 | 2019-04-10 13:21:14 -0700 | [diff] [blame] | 1142 | res = READ_ONCE(inode->i_link); |
Al Viro | d4dee48 | 2015-04-30 20:08:02 -0400 | [diff] [blame] | 1143 | if (!res) { |
Al Viro | fceef39 | 2015-12-29 15:58:39 -0500 | [diff] [blame] | 1144 | const char * (*get)(struct dentry *, struct inode *, |
| 1145 | struct delayed_call *); |
| 1146 | get = inode->i_op->get_link; |
Al Viro | 8c1b456 | 2015-05-09 18:15:21 -0400 | [diff] [blame] | 1147 | if (nd->flags & LOOKUP_RCU) { |
Al Viro | fceef39 | 2015-12-29 15:58:39 -0500 | [diff] [blame] | 1148 | res = get(NULL, inode, &last->done); |
Al Viro | 6b25539 | 2015-11-17 10:20:54 -0500 | [diff] [blame] | 1149 | if (res == ERR_PTR(-ECHILD)) { |
Al Viro | 4675ac3 | 2017-01-09 22:29:15 -0500 | [diff] [blame] | 1150 | if (unlikely(unlazy_walk(nd))) |
Al Viro | 6b25539 | 2015-11-17 10:20:54 -0500 | [diff] [blame] | 1151 | return ERR_PTR(-ECHILD); |
Al Viro | fceef39 | 2015-12-29 15:58:39 -0500 | [diff] [blame] | 1152 | res = get(dentry, inode, &last->done); |
Al Viro | 6b25539 | 2015-11-17 10:20:54 -0500 | [diff] [blame] | 1153 | } |
| 1154 | } else { |
Al Viro | fceef39 | 2015-12-29 15:58:39 -0500 | [diff] [blame] | 1155 | res = get(dentry, inode, &last->done); |
Al Viro | 8c1b456 | 2015-05-09 18:15:21 -0400 | [diff] [blame] | 1156 | } |
Al Viro | 40fcf5a | 2020-01-14 13:07:57 -0500 | [diff] [blame] | 1157 | if (!res) |
| 1158 | goto all_done; |
| 1159 | if (IS_ERR(res)) |
Al Viro | fab51e8 | 2015-05-10 11:01:00 -0400 | [diff] [blame] | 1160 | return res; |
Ian Kent | 051d381 | 2006-03-27 01:14:53 -0800 | [diff] [blame] | 1161 | } |
Al Viro | fab51e8 | 2015-05-10 11:01:00 -0400 | [diff] [blame] | 1162 | if (*res == '/') { |
Aleksa Sarai | 740a167 | 2019-12-07 01:13:29 +1100 | [diff] [blame] | 1163 | error = nd_jump_root(nd); |
| 1164 | if (unlikely(error)) |
| 1165 | return ERR_PTR(error); |
Al Viro | fab51e8 | 2015-05-10 11:01:00 -0400 | [diff] [blame] | 1166 | while (unlikely(*++res == '/')) |
| 1167 | ; |
| 1168 | } |
Al Viro | 40fcf5a | 2020-01-14 13:07:57 -0500 | [diff] [blame] | 1169 | if (*res) |
| 1170 | return res; |
| 1171 | all_done: // pure jump |
| 1172 | put_link(nd); |
| 1173 | return NULL; |
Al Viro | 0a959df | 2015-04-18 18:23:41 -0400 | [diff] [blame] | 1174 | } |
Al Viro | 6d7b5aa | 2012-06-10 04:15:17 -0400 | [diff] [blame] | 1175 | |
David Howells | f015f126 | 2012-06-25 12:55:28 +0100 | [diff] [blame] | 1176 | /* |
| 1177 | * follow_up - Find the mountpoint of path's vfsmount |
| 1178 | * |
| 1179 | * Given a path, find the mountpoint of its source file system. |
| 1180 | * Replace @path with the path of the mountpoint in the parent mount. |
| 1181 | * Up is towards /. |
| 1182 | * |
| 1183 | * Return 1 if we went up a level and 0 if we were already at the |
| 1184 | * root. |
| 1185 | */ |
Al Viro | bab77eb | 2009-04-18 03:26:48 -0400 | [diff] [blame] | 1186 | int follow_up(struct path *path) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1187 | { |
Al Viro | 0714a53 | 2011-11-24 22:19:58 -0500 | [diff] [blame] | 1188 | struct mount *mnt = real_mount(path->mnt); |
| 1189 | struct mount *parent; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1190 | struct dentry *mountpoint; |
Nick Piggin | 99b7db7 | 2010-08-18 04:37:39 +1000 | [diff] [blame] | 1191 | |
Al Viro | 48a066e | 2013-09-29 22:06:07 -0400 | [diff] [blame] | 1192 | read_seqlock_excl(&mount_lock); |
Al Viro | 0714a53 | 2011-11-24 22:19:58 -0500 | [diff] [blame] | 1193 | parent = mnt->mnt_parent; |
Al Viro | 3c0a616 | 2012-07-18 17:32:50 +0400 | [diff] [blame] | 1194 | if (parent == mnt) { |
Al Viro | 48a066e | 2013-09-29 22:06:07 -0400 | [diff] [blame] | 1195 | read_sequnlock_excl(&mount_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1196 | return 0; |
| 1197 | } |
Al Viro | 0714a53 | 2011-11-24 22:19:58 -0500 | [diff] [blame] | 1198 | mntget(&parent->mnt); |
Al Viro | a73324d | 2011-11-24 22:25:07 -0500 | [diff] [blame] | 1199 | mountpoint = dget(mnt->mnt_mountpoint); |
Al Viro | 48a066e | 2013-09-29 22:06:07 -0400 | [diff] [blame] | 1200 | read_sequnlock_excl(&mount_lock); |
Al Viro | bab77eb | 2009-04-18 03:26:48 -0400 | [diff] [blame] | 1201 | dput(path->dentry); |
| 1202 | path->dentry = mountpoint; |
| 1203 | mntput(path->mnt); |
Al Viro | 0714a53 | 2011-11-24 22:19:58 -0500 | [diff] [blame] | 1204 | path->mnt = &parent->mnt; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1205 | return 1; |
| 1206 | } |
Al Viro | 4d35950 | 2014-03-14 12:20:17 -0400 | [diff] [blame] | 1207 | EXPORT_SYMBOL(follow_up); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1208 | |
Nick Piggin | b5c84bf | 2011-01-07 17:49:38 +1100 | [diff] [blame] | 1209 | /* |
David Howells | 9875cf8 | 2011-01-14 18:45:21 +0000 | [diff] [blame] | 1210 | * Perform an automount |
| 1211 | * - return -EISDIR to tell follow_managed() to stop and return the path we |
| 1212 | * were called with. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1213 | */ |
Al Viro | 1c9f5e0 | 2020-01-16 22:05:18 -0500 | [diff] [blame] | 1214 | static int follow_automount(struct path *path, int *count, unsigned lookup_flags) |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1215 | { |
Al Viro | 25e195a | 2020-01-11 11:27:46 -0500 | [diff] [blame] | 1216 | struct dentry *dentry = path->dentry; |
Al Viro | 463ffb2 | 2005-06-06 13:36:05 -0700 | [diff] [blame] | 1217 | |
Miklos Szeredi | 0ec26fd | 2011-09-05 18:06:26 +0200 | [diff] [blame] | 1218 | /* We don't want to mount if someone's just doing a stat - |
| 1219 | * unless they're stat'ing a directory and appended a '/' to |
| 1220 | * the name. |
| 1221 | * |
| 1222 | * We do, however, want to mount if someone wants to open or |
| 1223 | * create a file of any type under the mountpoint, wants to |
| 1224 | * traverse through the mountpoint or wants to open the |
| 1225 | * mounted directory. Also, autofs may mark negative dentries |
| 1226 | * as being automount points. These will need the attentions |
| 1227 | * of the daemon to instantiate them before they can be used. |
David Howells | 9875cf8 | 2011-01-14 18:45:21 +0000 | [diff] [blame] | 1228 | */ |
Al Viro | 1c9f5e0 | 2020-01-16 22:05:18 -0500 | [diff] [blame] | 1229 | if (!(lookup_flags & (LOOKUP_PARENT | LOOKUP_DIRECTORY | |
Ian Kent | 5d38f04 | 2017-11-29 16:11:26 -0800 | [diff] [blame] | 1230 | LOOKUP_OPEN | LOOKUP_CREATE | LOOKUP_AUTOMOUNT)) && |
Al Viro | 25e195a | 2020-01-11 11:27:46 -0500 | [diff] [blame] | 1231 | dentry->d_inode) |
Ian Kent | 5d38f04 | 2017-11-29 16:11:26 -0800 | [diff] [blame] | 1232 | return -EISDIR; |
Miklos Szeredi | 0ec26fd | 2011-09-05 18:06:26 +0200 | [diff] [blame] | 1233 | |
Al Viro | 1c9f5e0 | 2020-01-16 22:05:18 -0500 | [diff] [blame] | 1234 | if (count && (*count)++ >= MAXSYMLINKS) |
David Howells | 9875cf8 | 2011-01-14 18:45:21 +0000 | [diff] [blame] | 1235 | return -ELOOP; |
| 1236 | |
Al Viro | 25e195a | 2020-01-11 11:27:46 -0500 | [diff] [blame] | 1237 | return finish_automount(dentry->d_op->d_automount(path), path); |
David Howells | 9875cf8 | 2011-01-14 18:45:21 +0000 | [diff] [blame] | 1238 | } |
| 1239 | |
| 1240 | /* |
| 1241 | * Handle a dentry that is managed in some way. |
David Howells | cc53ce5 | 2011-01-14 18:45:26 +0000 | [diff] [blame] | 1242 | * - Flagged for transit management (autofs) |
David Howells | 9875cf8 | 2011-01-14 18:45:21 +0000 | [diff] [blame] | 1243 | * - Flagged as mountpoint |
| 1244 | * - Flagged as automount point |
| 1245 | * |
| 1246 | * This may only be called in refwalk mode. |
Al Viro | d41efb5 | 2019-11-04 22:30:52 -0500 | [diff] [blame] | 1247 | * On success path->dentry is known positive. |
David Howells | 9875cf8 | 2011-01-14 18:45:21 +0000 | [diff] [blame] | 1248 | * |
| 1249 | * Serialization is taken care of in namespace.c |
| 1250 | */ |
NeilBrown | 756daf2 | 2015-03-23 13:37:38 +1100 | [diff] [blame] | 1251 | static int follow_managed(struct path *path, struct nameidata *nd) |
David Howells | 9875cf8 | 2011-01-14 18:45:21 +0000 | [diff] [blame] | 1252 | { |
Al Viro | 8aef188 | 2011-06-16 15:10:06 +0100 | [diff] [blame] | 1253 | struct vfsmount *mnt = path->mnt; /* held by caller, must be left alone */ |
Al Viro | d41efb5 | 2019-11-04 22:30:52 -0500 | [diff] [blame] | 1254 | unsigned flags; |
David Howells | 9875cf8 | 2011-01-14 18:45:21 +0000 | [diff] [blame] | 1255 | bool need_mntput = false; |
Al Viro | 8aef188 | 2011-06-16 15:10:06 +0100 | [diff] [blame] | 1256 | int ret = 0; |
David Howells | 9875cf8 | 2011-01-14 18:45:21 +0000 | [diff] [blame] | 1257 | |
| 1258 | /* Given that we're not holding a lock here, we retain the value in a |
| 1259 | * local variable for each dentry as we look at it so that we don't see |
| 1260 | * the components of that value change under us */ |
Al Viro | 2fa6b1e | 2019-11-12 16:13:06 -0500 | [diff] [blame] | 1261 | while (flags = smp_load_acquire(&path->dentry->d_flags), |
Al Viro | d41efb5 | 2019-11-04 22:30:52 -0500 | [diff] [blame] | 1262 | unlikely(flags & DCACHE_MANAGED_DENTRY)) { |
David Howells | cc53ce5 | 2011-01-14 18:45:26 +0000 | [diff] [blame] | 1263 | /* Allow the filesystem to manage the transit without i_mutex |
| 1264 | * being held. */ |
Al Viro | d41efb5 | 2019-11-04 22:30:52 -0500 | [diff] [blame] | 1265 | if (flags & DCACHE_MANAGE_TRANSIT) { |
David Howells | cc53ce5 | 2011-01-14 18:45:26 +0000 | [diff] [blame] | 1266 | BUG_ON(!path->dentry->d_op); |
| 1267 | BUG_ON(!path->dentry->d_op->d_manage); |
Ian Kent | fb5f51c | 2016-11-24 08:03:41 +1100 | [diff] [blame] | 1268 | ret = path->dentry->d_op->d_manage(path, false); |
Al Viro | 508c877 | 2020-01-14 22:09:57 -0500 | [diff] [blame] | 1269 | flags = smp_load_acquire(&path->dentry->d_flags); |
David Howells | cc53ce5 | 2011-01-14 18:45:26 +0000 | [diff] [blame] | 1270 | if (ret < 0) |
Al Viro | 8aef188 | 2011-06-16 15:10:06 +0100 | [diff] [blame] | 1271 | break; |
David Howells | cc53ce5 | 2011-01-14 18:45:26 +0000 | [diff] [blame] | 1272 | } |
| 1273 | |
David Howells | 9875cf8 | 2011-01-14 18:45:21 +0000 | [diff] [blame] | 1274 | /* Transit to a mounted filesystem. */ |
Al Viro | d41efb5 | 2019-11-04 22:30:52 -0500 | [diff] [blame] | 1275 | if (flags & DCACHE_MOUNTED) { |
David Howells | 9875cf8 | 2011-01-14 18:45:21 +0000 | [diff] [blame] | 1276 | struct vfsmount *mounted = lookup_mnt(path); |
| 1277 | if (mounted) { |
| 1278 | dput(path->dentry); |
| 1279 | if (need_mntput) |
| 1280 | mntput(path->mnt); |
| 1281 | path->mnt = mounted; |
| 1282 | path->dentry = dget(mounted->mnt_root); |
| 1283 | need_mntput = true; |
| 1284 | continue; |
| 1285 | } |
| 1286 | |
| 1287 | /* Something is mounted on this dentry in another |
| 1288 | * namespace and/or whatever was mounted there in this |
Al Viro | 48a066e | 2013-09-29 22:06:07 -0400 | [diff] [blame] | 1289 | * namespace got unmounted before lookup_mnt() could |
| 1290 | * get it */ |
David Howells | 9875cf8 | 2011-01-14 18:45:21 +0000 | [diff] [blame] | 1291 | } |
| 1292 | |
| 1293 | /* Handle an automount point */ |
Al Viro | d41efb5 | 2019-11-04 22:30:52 -0500 | [diff] [blame] | 1294 | if (flags & DCACHE_NEED_AUTOMOUNT) { |
Al Viro | 1c9f5e0 | 2020-01-16 22:05:18 -0500 | [diff] [blame] | 1295 | ret = follow_automount(path, &nd->total_link_count, |
| 1296 | nd->flags); |
David Howells | 9875cf8 | 2011-01-14 18:45:21 +0000 | [diff] [blame] | 1297 | if (ret < 0) |
Al Viro | 8aef188 | 2011-06-16 15:10:06 +0100 | [diff] [blame] | 1298 | break; |
David Howells | 9875cf8 | 2011-01-14 18:45:21 +0000 | [diff] [blame] | 1299 | continue; |
| 1300 | } |
| 1301 | |
| 1302 | /* We didn't change the current path point */ |
| 1303 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1304 | } |
Al Viro | 8aef188 | 2011-06-16 15:10:06 +0100 | [diff] [blame] | 1305 | |
Aleksa Sarai | 72ba292 | 2019-12-07 01:13:32 +1100 | [diff] [blame] | 1306 | if (need_mntput) { |
| 1307 | if (path->mnt == mnt) |
| 1308 | mntput(path->mnt); |
| 1309 | if (unlikely(nd->flags & LOOKUP_NO_XDEV)) |
| 1310 | ret = -EXDEV; |
| 1311 | else |
| 1312 | nd->flags |= LOOKUP_JUMPED; |
| 1313 | } |
Al Viro | d41efb5 | 2019-11-04 22:30:52 -0500 | [diff] [blame] | 1314 | if (ret == -EISDIR || !ret) |
| 1315 | ret = 1; |
| 1316 | if (ret > 0 && unlikely(d_flags_negative(flags))) |
| 1317 | ret = -ENOENT; |
Al Viro | a9dc149 | 2020-01-12 13:54:30 -0500 | [diff] [blame] | 1318 | if (unlikely(ret < 0)) { |
| 1319 | dput(path->dentry); |
| 1320 | if (path->mnt != nd->path.mnt) |
| 1321 | mntput(path->mnt); |
| 1322 | } |
Al Viro | 8402752 | 2015-04-22 10:30:08 -0400 | [diff] [blame] | 1323 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1324 | } |
| 1325 | |
David Howells | cc53ce5 | 2011-01-14 18:45:26 +0000 | [diff] [blame] | 1326 | int follow_down_one(struct path *path) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1327 | { |
| 1328 | struct vfsmount *mounted; |
| 1329 | |
Al Viro | 1c755af | 2009-04-18 14:06:57 -0400 | [diff] [blame] | 1330 | mounted = lookup_mnt(path); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1331 | if (mounted) { |
Al Viro | 9393bd0 | 2009-04-18 13:58:15 -0400 | [diff] [blame] | 1332 | dput(path->dentry); |
| 1333 | mntput(path->mnt); |
| 1334 | path->mnt = mounted; |
| 1335 | path->dentry = dget(mounted->mnt_root); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1336 | return 1; |
| 1337 | } |
| 1338 | return 0; |
| 1339 | } |
Al Viro | 4d35950 | 2014-03-14 12:20:17 -0400 | [diff] [blame] | 1340 | EXPORT_SYMBOL(follow_down_one); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1341 | |
Ian Kent | fb5f51c | 2016-11-24 08:03:41 +1100 | [diff] [blame] | 1342 | static inline int managed_dentry_rcu(const struct path *path) |
Ian Kent | 62a7375 | 2011-03-25 01:51:02 +0800 | [diff] [blame] | 1343 | { |
Ian Kent | fb5f51c | 2016-11-24 08:03:41 +1100 | [diff] [blame] | 1344 | return (path->dentry->d_flags & DCACHE_MANAGE_TRANSIT) ? |
| 1345 | path->dentry->d_op->d_manage(path, true) : 0; |
Ian Kent | 62a7375 | 2011-03-25 01:51:02 +0800 | [diff] [blame] | 1346 | } |
| 1347 | |
David Howells | 9875cf8 | 2011-01-14 18:45:21 +0000 | [diff] [blame] | 1348 | /* |
Al Viro | 287548e | 2011-05-27 06:50:06 -0400 | [diff] [blame] | 1349 | * Try to skip to top of mountpoint pile in rcuwalk mode. Fail if |
| 1350 | * we meet a managed dentry that would need blocking. |
David Howells | 9875cf8 | 2011-01-14 18:45:21 +0000 | [diff] [blame] | 1351 | */ |
| 1352 | static bool __follow_mount_rcu(struct nameidata *nd, struct path *path, |
Al Viro | 254cf58 | 2015-05-05 09:40:46 -0400 | [diff] [blame] | 1353 | struct inode **inode, unsigned *seqp) |
David Howells | 9875cf8 | 2011-01-14 18:45:21 +0000 | [diff] [blame] | 1354 | { |
Ian Kent | 62a7375 | 2011-03-25 01:51:02 +0800 | [diff] [blame] | 1355 | for (;;) { |
Al Viro | c710536 | 2011-11-24 18:22:03 -0500 | [diff] [blame] | 1356 | struct mount *mounted; |
Ian Kent | 62a7375 | 2011-03-25 01:51:02 +0800 | [diff] [blame] | 1357 | /* |
| 1358 | * Don't forget we might have a non-mountpoint managed dentry |
| 1359 | * that wants to block transit. |
| 1360 | */ |
Ian Kent | fb5f51c | 2016-11-24 08:03:41 +1100 | [diff] [blame] | 1361 | switch (managed_dentry_rcu(path)) { |
NeilBrown | b8faf03 | 2014-08-04 17:06:29 +1000 | [diff] [blame] | 1362 | case -ECHILD: |
| 1363 | default: |
David Howells | ab90911 | 2011-01-14 18:46:51 +0000 | [diff] [blame] | 1364 | return false; |
NeilBrown | b8faf03 | 2014-08-04 17:06:29 +1000 | [diff] [blame] | 1365 | case -EISDIR: |
| 1366 | return true; |
| 1367 | case 0: |
| 1368 | break; |
| 1369 | } |
Ian Kent | 62a7375 | 2011-03-25 01:51:02 +0800 | [diff] [blame] | 1370 | |
| 1371 | if (!d_mountpoint(path->dentry)) |
NeilBrown | b8faf03 | 2014-08-04 17:06:29 +1000 | [diff] [blame] | 1372 | return !(path->dentry->d_flags & DCACHE_NEED_AUTOMOUNT); |
Ian Kent | 62a7375 | 2011-03-25 01:51:02 +0800 | [diff] [blame] | 1373 | |
Al Viro | 474279d | 2013-10-01 16:11:26 -0400 | [diff] [blame] | 1374 | mounted = __lookup_mnt(path->mnt, path->dentry); |
David Howells | 9875cf8 | 2011-01-14 18:45:21 +0000 | [diff] [blame] | 1375 | if (!mounted) |
| 1376 | break; |
Aleksa Sarai | 72ba292 | 2019-12-07 01:13:32 +1100 | [diff] [blame] | 1377 | if (unlikely(nd->flags & LOOKUP_NO_XDEV)) |
| 1378 | return false; |
Al Viro | c710536 | 2011-11-24 18:22:03 -0500 | [diff] [blame] | 1379 | path->mnt = &mounted->mnt; |
| 1380 | path->dentry = mounted->mnt.mnt_root; |
Al Viro | a3fbbde | 2011-11-07 21:21:26 +0000 | [diff] [blame] | 1381 | nd->flags |= LOOKUP_JUMPED; |
Al Viro | 254cf58 | 2015-05-05 09:40:46 -0400 | [diff] [blame] | 1382 | *seqp = read_seqcount_begin(&path->dentry->d_seq); |
Linus Torvalds | 5943026 | 2011-07-18 15:43:29 -0700 | [diff] [blame] | 1383 | /* |
| 1384 | * Update the inode too. We don't need to re-check the |
| 1385 | * dentry sequence number here after this d_inode read, |
| 1386 | * because a mount-point is always pinned. |
| 1387 | */ |
| 1388 | *inode = path->dentry->d_inode; |
David Howells | 9875cf8 | 2011-01-14 18:45:21 +0000 | [diff] [blame] | 1389 | } |
Al Viro | f5be3e2912 | 2014-09-13 21:50:45 -0400 | [diff] [blame] | 1390 | return !read_seqretry(&mount_lock, nd->m_seq) && |
NeilBrown | b8faf03 | 2014-08-04 17:06:29 +1000 | [diff] [blame] | 1391 | !(path->dentry->d_flags & DCACHE_NEED_AUTOMOUNT); |
Al Viro | 287548e | 2011-05-27 06:50:06 -0400 | [diff] [blame] | 1392 | } |
| 1393 | |
Al Viro | db3c9ad | 2020-01-09 14:41:00 -0500 | [diff] [blame] | 1394 | static inline int handle_mounts(struct nameidata *nd, struct dentry *dentry, |
| 1395 | struct path *path, struct inode **inode, |
| 1396 | unsigned int *seqp) |
Al Viro | bd7c4b5 | 2020-01-08 20:37:23 -0500 | [diff] [blame] | 1397 | { |
Al Viro | db3c9ad | 2020-01-09 14:41:00 -0500 | [diff] [blame] | 1398 | int ret; |
Al Viro | bd7c4b5 | 2020-01-08 20:37:23 -0500 | [diff] [blame] | 1399 | |
Al Viro | db3c9ad | 2020-01-09 14:41:00 -0500 | [diff] [blame] | 1400 | path->mnt = nd->path.mnt; |
| 1401 | path->dentry = dentry; |
Al Viro | c153007 | 2020-01-09 14:50:18 -0500 | [diff] [blame] | 1402 | if (nd->flags & LOOKUP_RCU) { |
| 1403 | unsigned int seq = *seqp; |
| 1404 | if (unlikely(!*inode)) |
| 1405 | return -ENOENT; |
| 1406 | if (likely(__follow_mount_rcu(nd, path, inode, seqp))) |
| 1407 | return 1; |
| 1408 | if (unlazy_child(nd, dentry, seq)) |
| 1409 | return -ECHILD; |
| 1410 | // *path might've been clobbered by __follow_mount_rcu() |
| 1411 | path->mnt = nd->path.mnt; |
| 1412 | path->dentry = dentry; |
| 1413 | } |
Al Viro | db3c9ad | 2020-01-09 14:41:00 -0500 | [diff] [blame] | 1414 | ret = follow_managed(path, nd); |
Al Viro | bd7c4b5 | 2020-01-08 20:37:23 -0500 | [diff] [blame] | 1415 | if (likely(ret >= 0)) { |
| 1416 | *inode = d_backing_inode(path->dentry); |
| 1417 | *seqp = 0; /* out of RCU mode, so the value doesn't matter */ |
| 1418 | } |
| 1419 | return ret; |
| 1420 | } |
| 1421 | |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1422 | static int follow_dotdot_rcu(struct nameidata *nd) |
| 1423 | { |
Al Viro | 4023bfc | 2014-09-13 21:59:43 -0400 | [diff] [blame] | 1424 | struct inode *inode = nd->inode; |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1425 | |
David Howells | 9875cf8 | 2011-01-14 18:45:21 +0000 | [diff] [blame] | 1426 | while (1) { |
Aleksa Sarai | adb21d2 | 2019-12-07 01:13:33 +1100 | [diff] [blame] | 1427 | if (path_equal(&nd->path, &nd->root)) { |
| 1428 | if (unlikely(nd->flags & LOOKUP_BENEATH)) |
| 1429 | return -ECHILD; |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1430 | break; |
Aleksa Sarai | adb21d2 | 2019-12-07 01:13:33 +1100 | [diff] [blame] | 1431 | } |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1432 | if (nd->path.dentry != nd->path.mnt->mnt_root) { |
| 1433 | struct dentry *old = nd->path.dentry; |
| 1434 | struct dentry *parent = old->d_parent; |
| 1435 | unsigned seq; |
| 1436 | |
Al Viro | 4023bfc | 2014-09-13 21:59:43 -0400 | [diff] [blame] | 1437 | inode = parent->d_inode; |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1438 | seq = read_seqcount_begin(&parent->d_seq); |
Al Viro | aed434a | 2015-05-12 12:22:47 -0400 | [diff] [blame] | 1439 | if (unlikely(read_seqcount_retry(&old->d_seq, nd->seq))) |
| 1440 | return -ECHILD; |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1441 | nd->path.dentry = parent; |
| 1442 | nd->seq = seq; |
Eric W. Biederman | 397d425 | 2015-08-15 20:27:13 -0500 | [diff] [blame] | 1443 | if (unlikely(!path_connected(&nd->path))) |
Aleksa Sarai | 2b98149 | 2019-12-07 01:13:26 +1100 | [diff] [blame] | 1444 | return -ECHILD; |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1445 | break; |
Al Viro | aed434a | 2015-05-12 12:22:47 -0400 | [diff] [blame] | 1446 | } else { |
| 1447 | struct mount *mnt = real_mount(nd->path.mnt); |
| 1448 | struct mount *mparent = mnt->mnt_parent; |
| 1449 | struct dentry *mountpoint = mnt->mnt_mountpoint; |
| 1450 | struct inode *inode2 = mountpoint->d_inode; |
| 1451 | unsigned seq = read_seqcount_begin(&mountpoint->d_seq); |
| 1452 | if (unlikely(read_seqretry(&mount_lock, nd->m_seq))) |
| 1453 | return -ECHILD; |
| 1454 | if (&mparent->mnt == nd->path.mnt) |
| 1455 | break; |
Aleksa Sarai | 72ba292 | 2019-12-07 01:13:32 +1100 | [diff] [blame] | 1456 | if (unlikely(nd->flags & LOOKUP_NO_XDEV)) |
| 1457 | return -ECHILD; |
Al Viro | aed434a | 2015-05-12 12:22:47 -0400 | [diff] [blame] | 1458 | /* we know that mountpoint was pinned */ |
| 1459 | nd->path.dentry = mountpoint; |
| 1460 | nd->path.mnt = &mparent->mnt; |
| 1461 | inode = inode2; |
| 1462 | nd->seq = seq; |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1463 | } |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1464 | } |
Al Viro | aed434a | 2015-05-12 12:22:47 -0400 | [diff] [blame] | 1465 | while (unlikely(d_mountpoint(nd->path.dentry))) { |
Al Viro | b37199e | 2014-03-20 15:18:22 -0400 | [diff] [blame] | 1466 | struct mount *mounted; |
| 1467 | mounted = __lookup_mnt(nd->path.mnt, nd->path.dentry); |
Al Viro | aed434a | 2015-05-12 12:22:47 -0400 | [diff] [blame] | 1468 | if (unlikely(read_seqretry(&mount_lock, nd->m_seq))) |
| 1469 | return -ECHILD; |
Al Viro | b37199e | 2014-03-20 15:18:22 -0400 | [diff] [blame] | 1470 | if (!mounted) |
| 1471 | break; |
Aleksa Sarai | 72ba292 | 2019-12-07 01:13:32 +1100 | [diff] [blame] | 1472 | if (unlikely(nd->flags & LOOKUP_NO_XDEV)) |
| 1473 | return -ECHILD; |
Al Viro | b37199e | 2014-03-20 15:18:22 -0400 | [diff] [blame] | 1474 | nd->path.mnt = &mounted->mnt; |
| 1475 | nd->path.dentry = mounted->mnt.mnt_root; |
Al Viro | 4023bfc | 2014-09-13 21:59:43 -0400 | [diff] [blame] | 1476 | inode = nd->path.dentry->d_inode; |
Al Viro | b37199e | 2014-03-20 15:18:22 -0400 | [diff] [blame] | 1477 | nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq); |
Al Viro | b37199e | 2014-03-20 15:18:22 -0400 | [diff] [blame] | 1478 | } |
Al Viro | 4023bfc | 2014-09-13 21:59:43 -0400 | [diff] [blame] | 1479 | nd->inode = inode; |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1480 | return 0; |
| 1481 | } |
| 1482 | |
David Howells | 9875cf8 | 2011-01-14 18:45:21 +0000 | [diff] [blame] | 1483 | /* |
David Howells | cc53ce5 | 2011-01-14 18:45:26 +0000 | [diff] [blame] | 1484 | * Follow down to the covering mount currently visible to userspace. At each |
| 1485 | * point, the filesystem owning that dentry may be queried as to whether the |
| 1486 | * caller is permitted to proceed or not. |
David Howells | cc53ce5 | 2011-01-14 18:45:26 +0000 | [diff] [blame] | 1487 | */ |
Al Viro | 7cc90cc | 2011-03-18 09:04:20 -0400 | [diff] [blame] | 1488 | int follow_down(struct path *path) |
David Howells | cc53ce5 | 2011-01-14 18:45:26 +0000 | [diff] [blame] | 1489 | { |
| 1490 | unsigned managed; |
| 1491 | int ret; |
| 1492 | |
Mark Rutland | 6aa7de0 | 2017-10-23 14:07:29 -0700 | [diff] [blame] | 1493 | while (managed = READ_ONCE(path->dentry->d_flags), |
David Howells | cc53ce5 | 2011-01-14 18:45:26 +0000 | [diff] [blame] | 1494 | unlikely(managed & DCACHE_MANAGED_DENTRY)) { |
| 1495 | /* Allow the filesystem to manage the transit without i_mutex |
| 1496 | * being held. |
| 1497 | * |
| 1498 | * We indicate to the filesystem if someone is trying to mount |
| 1499 | * something here. This gives autofs the chance to deny anyone |
| 1500 | * other than its daemon the right to mount on its |
| 1501 | * superstructure. |
| 1502 | * |
| 1503 | * The filesystem may sleep at this point. |
| 1504 | */ |
| 1505 | if (managed & DCACHE_MANAGE_TRANSIT) { |
| 1506 | BUG_ON(!path->dentry->d_op); |
| 1507 | BUG_ON(!path->dentry->d_op->d_manage); |
Ian Kent | fb5f51c | 2016-11-24 08:03:41 +1100 | [diff] [blame] | 1508 | ret = path->dentry->d_op->d_manage(path, false); |
David Howells | cc53ce5 | 2011-01-14 18:45:26 +0000 | [diff] [blame] | 1509 | if (ret < 0) |
| 1510 | return ret == -EISDIR ? 0 : ret; |
| 1511 | } |
| 1512 | |
| 1513 | /* Transit to a mounted filesystem. */ |
| 1514 | if (managed & DCACHE_MOUNTED) { |
| 1515 | struct vfsmount *mounted = lookup_mnt(path); |
| 1516 | if (!mounted) |
| 1517 | break; |
| 1518 | dput(path->dentry); |
| 1519 | mntput(path->mnt); |
| 1520 | path->mnt = mounted; |
| 1521 | path->dentry = dget(mounted->mnt_root); |
| 1522 | continue; |
| 1523 | } |
| 1524 | |
| 1525 | /* Don't handle automount points here */ |
| 1526 | break; |
| 1527 | } |
| 1528 | return 0; |
| 1529 | } |
Al Viro | 4d35950 | 2014-03-14 12:20:17 -0400 | [diff] [blame] | 1530 | EXPORT_SYMBOL(follow_down); |
David Howells | cc53ce5 | 2011-01-14 18:45:26 +0000 | [diff] [blame] | 1531 | |
| 1532 | /* |
David Howells | 9875cf8 | 2011-01-14 18:45:21 +0000 | [diff] [blame] | 1533 | * Skip to top of mountpoint pile in refwalk mode for follow_dotdot() |
| 1534 | */ |
| 1535 | static void follow_mount(struct path *path) |
| 1536 | { |
| 1537 | while (d_mountpoint(path->dentry)) { |
| 1538 | struct vfsmount *mounted = lookup_mnt(path); |
| 1539 | if (!mounted) |
| 1540 | break; |
| 1541 | dput(path->dentry); |
| 1542 | mntput(path->mnt); |
| 1543 | path->mnt = mounted; |
| 1544 | path->dentry = dget(mounted->mnt_root); |
| 1545 | } |
| 1546 | } |
| 1547 | |
Eric W. Biederman | eedf265 | 2016-06-02 10:29:47 -0500 | [diff] [blame] | 1548 | static int path_parent_directory(struct path *path) |
| 1549 | { |
| 1550 | struct dentry *old = path->dentry; |
| 1551 | /* rare case of legitimate dget_parent()... */ |
| 1552 | path->dentry = dget_parent(path->dentry); |
| 1553 | dput(old); |
| 1554 | if (unlikely(!path_connected(path))) |
| 1555 | return -ENOENT; |
| 1556 | return 0; |
| 1557 | } |
| 1558 | |
Eric W. Biederman | 397d425 | 2015-08-15 20:27:13 -0500 | [diff] [blame] | 1559 | static int follow_dotdot(struct nameidata *nd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1560 | { |
Aleksa Sarai | adb21d2 | 2019-12-07 01:13:33 +1100 | [diff] [blame] | 1561 | while (1) { |
| 1562 | if (path_equal(&nd->path, &nd->root)) { |
| 1563 | if (unlikely(nd->flags & LOOKUP_BENEATH)) |
| 1564 | return -EXDEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1565 | break; |
Aleksa Sarai | adb21d2 | 2019-12-07 01:13:33 +1100 | [diff] [blame] | 1566 | } |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 1567 | if (nd->path.dentry != nd->path.mnt->mnt_root) { |
Eric W. Biederman | eedf265 | 2016-06-02 10:29:47 -0500 | [diff] [blame] | 1568 | int ret = path_parent_directory(&nd->path); |
| 1569 | if (ret) |
| 1570 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1571 | break; |
| 1572 | } |
Al Viro | 3088dd7 | 2010-01-30 15:47:29 -0500 | [diff] [blame] | 1573 | if (!follow_up(&nd->path)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1574 | break; |
Aleksa Sarai | 72ba292 | 2019-12-07 01:13:32 +1100 | [diff] [blame] | 1575 | if (unlikely(nd->flags & LOOKUP_NO_XDEV)) |
| 1576 | return -EXDEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1577 | } |
Al Viro | 79ed022 | 2009-04-18 13:59:41 -0400 | [diff] [blame] | 1578 | follow_mount(&nd->path); |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1579 | nd->inode = nd->path.dentry->d_inode; |
Eric W. Biederman | 397d425 | 2015-08-15 20:27:13 -0500 | [diff] [blame] | 1580 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1581 | } |
| 1582 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1583 | /* |
Oleg Drokin | f4fdace | 2016-07-07 22:04:04 -0400 | [diff] [blame] | 1584 | * This looks up the name in dcache and possibly revalidates the found dentry. |
| 1585 | * NULL is returned if the dentry does not exist in the cache. |
Nick Piggin | baa0389 | 2010-08-18 04:37:31 +1000 | [diff] [blame] | 1586 | */ |
Al Viro | e3c1392 | 2016-03-06 14:03:27 -0500 | [diff] [blame] | 1587 | static struct dentry *lookup_dcache(const struct qstr *name, |
| 1588 | struct dentry *dir, |
Al Viro | 6c51e51 | 2016-03-05 20:09:32 -0500 | [diff] [blame] | 1589 | unsigned int flags) |
Nick Piggin | baa0389 | 2010-08-18 04:37:31 +1000 | [diff] [blame] | 1590 | { |
Al Viro | a89f833 | 2017-01-09 22:25:28 -0500 | [diff] [blame] | 1591 | struct dentry *dentry = d_lookup(dir, name); |
Miklos Szeredi | bad6118 | 2012-03-26 12:54:24 +0200 | [diff] [blame] | 1592 | if (dentry) { |
Al Viro | a89f833 | 2017-01-09 22:25:28 -0500 | [diff] [blame] | 1593 | int error = d_revalidate(dentry, flags); |
| 1594 | if (unlikely(error <= 0)) { |
| 1595 | if (!error) |
| 1596 | d_invalidate(dentry); |
| 1597 | dput(dentry); |
| 1598 | return ERR_PTR(error); |
Miklos Szeredi | bad6118 | 2012-03-26 12:54:24 +0200 | [diff] [blame] | 1599 | } |
| 1600 | } |
Nick Piggin | baa0389 | 2010-08-18 04:37:31 +1000 | [diff] [blame] | 1601 | return dentry; |
| 1602 | } |
| 1603 | |
| 1604 | /* |
Al Viro | a03ece5 | 2018-03-08 11:00:45 -0500 | [diff] [blame] | 1605 | * Parent directory has inode locked exclusive. This is one |
| 1606 | * and only case when ->lookup() gets called on non in-lookup |
| 1607 | * dentries - as the matter of fact, this only gets called |
| 1608 | * when directory is guaranteed to have no in-lookup children |
| 1609 | * at all. |
Josef Bacik | 44396f4 | 2011-05-31 11:58:49 -0400 | [diff] [blame] | 1610 | */ |
Al Viro | a03ece5 | 2018-03-08 11:00:45 -0500 | [diff] [blame] | 1611 | static struct dentry *__lookup_hash(const struct qstr *name, |
| 1612 | struct dentry *base, unsigned int flags) |
Josef Bacik | 44396f4 | 2011-05-31 11:58:49 -0400 | [diff] [blame] | 1613 | { |
Al Viro | a03ece5 | 2018-03-08 11:00:45 -0500 | [diff] [blame] | 1614 | struct dentry *dentry = lookup_dcache(name, base, flags); |
Josef Bacik | 44396f4 | 2011-05-31 11:58:49 -0400 | [diff] [blame] | 1615 | struct dentry *old; |
Al Viro | a03ece5 | 2018-03-08 11:00:45 -0500 | [diff] [blame] | 1616 | struct inode *dir = base->d_inode; |
| 1617 | |
| 1618 | if (dentry) |
| 1619 | return dentry; |
Josef Bacik | 44396f4 | 2011-05-31 11:58:49 -0400 | [diff] [blame] | 1620 | |
| 1621 | /* Don't create child dentry for a dead directory. */ |
Al Viro | a03ece5 | 2018-03-08 11:00:45 -0500 | [diff] [blame] | 1622 | if (unlikely(IS_DEADDIR(dir))) |
Josef Bacik | 44396f4 | 2011-05-31 11:58:49 -0400 | [diff] [blame] | 1623 | return ERR_PTR(-ENOENT); |
Al Viro | a03ece5 | 2018-03-08 11:00:45 -0500 | [diff] [blame] | 1624 | |
| 1625 | dentry = d_alloc(base, name); |
| 1626 | if (unlikely(!dentry)) |
| 1627 | return ERR_PTR(-ENOMEM); |
Josef Bacik | 44396f4 | 2011-05-31 11:58:49 -0400 | [diff] [blame] | 1628 | |
Al Viro | 72bd866 | 2012-06-10 17:17:17 -0400 | [diff] [blame] | 1629 | old = dir->i_op->lookup(dir, dentry, flags); |
Josef Bacik | 44396f4 | 2011-05-31 11:58:49 -0400 | [diff] [blame] | 1630 | if (unlikely(old)) { |
| 1631 | dput(dentry); |
| 1632 | dentry = old; |
| 1633 | } |
| 1634 | return dentry; |
| 1635 | } |
| 1636 | |
Al Viro | 20e3435 | 2020-01-09 14:58:31 -0500 | [diff] [blame] | 1637 | static struct dentry *lookup_fast(struct nameidata *nd, |
| 1638 | struct inode **inode, |
| 1639 | unsigned *seqp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1640 | { |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1641 | struct dentry *dentry, *parent = nd->path.dentry; |
Al Viro | 5a18fff | 2011-03-11 04:44:53 -0500 | [diff] [blame] | 1642 | int status = 1; |
David Howells | 9875cf8 | 2011-01-14 18:45:21 +0000 | [diff] [blame] | 1643 | |
Al Viro | 3cac260 | 2009-08-13 18:27:43 +0400 | [diff] [blame] | 1644 | /* |
Nick Piggin | b04f784 | 2010-08-18 04:37:34 +1000 | [diff] [blame] | 1645 | * Rename seqlock is not required here because in the off chance |
Al Viro | 5d0f49c | 2016-03-05 21:32:53 -0500 | [diff] [blame] | 1646 | * of a false negative due to a concurrent rename, the caller is |
| 1647 | * going to fall back to non-racy lookup. |
Nick Piggin | b04f784 | 2010-08-18 04:37:34 +1000 | [diff] [blame] | 1648 | */ |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1649 | if (nd->flags & LOOKUP_RCU) { |
| 1650 | unsigned seq; |
Linus Torvalds | da53be1 | 2013-05-21 15:22:44 -0700 | [diff] [blame] | 1651 | dentry = __d_lookup_rcu(parent, &nd->last, &seq); |
Al Viro | 5d0f49c | 2016-03-05 21:32:53 -0500 | [diff] [blame] | 1652 | if (unlikely(!dentry)) { |
Al Viro | 4675ac3 | 2017-01-09 22:29:15 -0500 | [diff] [blame] | 1653 | if (unlazy_walk(nd)) |
Al Viro | 20e3435 | 2020-01-09 14:58:31 -0500 | [diff] [blame] | 1654 | return ERR_PTR(-ECHILD); |
| 1655 | return NULL; |
Al Viro | 5d0f49c | 2016-03-05 21:32:53 -0500 | [diff] [blame] | 1656 | } |
Al Viro | 5a18fff | 2011-03-11 04:44:53 -0500 | [diff] [blame] | 1657 | |
Linus Torvalds | 12f8ad4 | 2012-05-04 14:59:14 -0700 | [diff] [blame] | 1658 | /* |
| 1659 | * This sequence count validates that the inode matches |
| 1660 | * the dentry name information from lookup. |
| 1661 | */ |
David Howells | 63afdfc | 2015-05-06 15:59:00 +0100 | [diff] [blame] | 1662 | *inode = d_backing_inode(dentry); |
Al Viro | 5d0f49c | 2016-03-05 21:32:53 -0500 | [diff] [blame] | 1663 | if (unlikely(read_seqcount_retry(&dentry->d_seq, seq))) |
Al Viro | 20e3435 | 2020-01-09 14:58:31 -0500 | [diff] [blame] | 1664 | return ERR_PTR(-ECHILD); |
Linus Torvalds | 12f8ad4 | 2012-05-04 14:59:14 -0700 | [diff] [blame] | 1665 | |
| 1666 | /* |
| 1667 | * This sequence count validates that the parent had no |
| 1668 | * changes while we did the lookup of the dentry above. |
| 1669 | * |
| 1670 | * The memory barrier in read_seqcount_begin of child is |
| 1671 | * enough, we can use __read_seqcount_retry here. |
| 1672 | */ |
Al Viro | 5d0f49c | 2016-03-05 21:32:53 -0500 | [diff] [blame] | 1673 | if (unlikely(__read_seqcount_retry(&parent->d_seq, nd->seq))) |
Al Viro | 20e3435 | 2020-01-09 14:58:31 -0500 | [diff] [blame] | 1674 | return ERR_PTR(-ECHILD); |
Al Viro | 5a18fff | 2011-03-11 04:44:53 -0500 | [diff] [blame] | 1675 | |
Al Viro | 254cf58 | 2015-05-05 09:40:46 -0400 | [diff] [blame] | 1676 | *seqp = seq; |
Al Viro | a89f833 | 2017-01-09 22:25:28 -0500 | [diff] [blame] | 1677 | status = d_revalidate(dentry, nd->flags); |
Al Viro | c153007 | 2020-01-09 14:50:18 -0500 | [diff] [blame] | 1678 | if (likely(status > 0)) |
Al Viro | 20e3435 | 2020-01-09 14:58:31 -0500 | [diff] [blame] | 1679 | return dentry; |
Al Viro | 4675ac3 | 2017-01-09 22:29:15 -0500 | [diff] [blame] | 1680 | if (unlazy_child(nd, dentry, seq)) |
Al Viro | 20e3435 | 2020-01-09 14:58:31 -0500 | [diff] [blame] | 1681 | return ERR_PTR(-ECHILD); |
Al Viro | 209a7fb | 2017-01-09 01:35:39 -0500 | [diff] [blame] | 1682 | if (unlikely(status == -ECHILD)) |
| 1683 | /* we'd been told to redo it in non-rcu mode */ |
| 1684 | status = d_revalidate(dentry, nd->flags); |
Al Viro | 5a18fff | 2011-03-11 04:44:53 -0500 | [diff] [blame] | 1685 | } else { |
Al Viro | e97cdc8 | 2013-01-24 18:16:00 -0500 | [diff] [blame] | 1686 | dentry = __d_lookup(parent, &nd->last); |
Al Viro | 5d0f49c | 2016-03-05 21:32:53 -0500 | [diff] [blame] | 1687 | if (unlikely(!dentry)) |
Al Viro | 20e3435 | 2020-01-09 14:58:31 -0500 | [diff] [blame] | 1688 | return NULL; |
Al Viro | a89f833 | 2017-01-09 22:25:28 -0500 | [diff] [blame] | 1689 | status = d_revalidate(dentry, nd->flags); |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 1690 | } |
Al Viro | 5a18fff | 2011-03-11 04:44:53 -0500 | [diff] [blame] | 1691 | if (unlikely(status <= 0)) { |
Al Viro | e9742b5 | 2016-03-05 22:04:59 -0500 | [diff] [blame] | 1692 | if (!status) |
Al Viro | 5d0f49c | 2016-03-05 21:32:53 -0500 | [diff] [blame] | 1693 | d_invalidate(dentry); |
Eric W. Biederman | 5542aa2 | 2014-02-13 09:46:25 -0800 | [diff] [blame] | 1694 | dput(dentry); |
Al Viro | 20e3435 | 2020-01-09 14:58:31 -0500 | [diff] [blame] | 1695 | return ERR_PTR(status); |
Al Viro | 5a18fff | 2011-03-11 04:44:53 -0500 | [diff] [blame] | 1696 | } |
Al Viro | 20e3435 | 2020-01-09 14:58:31 -0500 | [diff] [blame] | 1697 | return dentry; |
Miklos Szeredi | 697f514 | 2012-05-21 17:30:05 +0200 | [diff] [blame] | 1698 | } |
| 1699 | |
| 1700 | /* Fast lookup failed, do it the slow way */ |
Al Viro | 88d8331 | 2018-04-06 16:43:47 -0400 | [diff] [blame] | 1701 | static struct dentry *__lookup_slow(const struct qstr *name, |
| 1702 | struct dentry *dir, |
| 1703 | unsigned int flags) |
Miklos Szeredi | 697f514 | 2012-05-21 17:30:05 +0200 | [diff] [blame] | 1704 | { |
Al Viro | 88d8331 | 2018-04-06 16:43:47 -0400 | [diff] [blame] | 1705 | struct dentry *dentry, *old; |
Al Viro | 1936386 | 2016-04-14 19:33:34 -0400 | [diff] [blame] | 1706 | struct inode *inode = dir->d_inode; |
Al Viro | d9171b9 | 2016-04-15 03:33:13 -0400 | [diff] [blame] | 1707 | DECLARE_WAIT_QUEUE_HEAD_ONSTACK(wq); |
Al Viro | 1936386 | 2016-04-14 19:33:34 -0400 | [diff] [blame] | 1708 | |
Al Viro | 1936386 | 2016-04-14 19:33:34 -0400 | [diff] [blame] | 1709 | /* Don't go there if it's already dead */ |
Al Viro | 94bdd65 | 2016-04-15 02:42:04 -0400 | [diff] [blame] | 1710 | if (unlikely(IS_DEADDIR(inode))) |
Al Viro | 88d8331 | 2018-04-06 16:43:47 -0400 | [diff] [blame] | 1711 | return ERR_PTR(-ENOENT); |
Al Viro | 94bdd65 | 2016-04-15 02:42:04 -0400 | [diff] [blame] | 1712 | again: |
Al Viro | d9171b9 | 2016-04-15 03:33:13 -0400 | [diff] [blame] | 1713 | dentry = d_alloc_parallel(dir, name, &wq); |
Al Viro | 94bdd65 | 2016-04-15 02:42:04 -0400 | [diff] [blame] | 1714 | if (IS_ERR(dentry)) |
Al Viro | 88d8331 | 2018-04-06 16:43:47 -0400 | [diff] [blame] | 1715 | return dentry; |
Al Viro | 94bdd65 | 2016-04-15 02:42:04 -0400 | [diff] [blame] | 1716 | if (unlikely(!d_in_lookup(dentry))) { |
Al Viro | c64cd6e | 2020-01-10 17:17:19 -0500 | [diff] [blame] | 1717 | int error = d_revalidate(dentry, flags); |
| 1718 | if (unlikely(error <= 0)) { |
| 1719 | if (!error) { |
| 1720 | d_invalidate(dentry); |
Al Viro | 949a852 | 2016-03-06 14:20:52 -0500 | [diff] [blame] | 1721 | dput(dentry); |
Al Viro | c64cd6e | 2020-01-10 17:17:19 -0500 | [diff] [blame] | 1722 | goto again; |
Al Viro | 949a852 | 2016-03-06 14:20:52 -0500 | [diff] [blame] | 1723 | } |
Al Viro | c64cd6e | 2020-01-10 17:17:19 -0500 | [diff] [blame] | 1724 | dput(dentry); |
| 1725 | dentry = ERR_PTR(error); |
Al Viro | 949a852 | 2016-03-06 14:20:52 -0500 | [diff] [blame] | 1726 | } |
Al Viro | 94bdd65 | 2016-04-15 02:42:04 -0400 | [diff] [blame] | 1727 | } else { |
| 1728 | old = inode->i_op->lookup(inode, dentry, flags); |
| 1729 | d_lookup_done(dentry); |
| 1730 | if (unlikely(old)) { |
| 1731 | dput(dentry); |
| 1732 | dentry = old; |
Al Viro | 949a852 | 2016-03-06 14:20:52 -0500 | [diff] [blame] | 1733 | } |
| 1734 | } |
Al Viro | e3c1392 | 2016-03-06 14:03:27 -0500 | [diff] [blame] | 1735 | return dentry; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1736 | } |
| 1737 | |
Al Viro | 88d8331 | 2018-04-06 16:43:47 -0400 | [diff] [blame] | 1738 | static struct dentry *lookup_slow(const struct qstr *name, |
| 1739 | struct dentry *dir, |
| 1740 | unsigned int flags) |
| 1741 | { |
| 1742 | struct inode *inode = dir->d_inode; |
| 1743 | struct dentry *res; |
| 1744 | inode_lock_shared(inode); |
| 1745 | res = __lookup_slow(name, dir, flags); |
| 1746 | inode_unlock_shared(inode); |
| 1747 | return res; |
| 1748 | } |
| 1749 | |
Al Viro | 52094c8 | 2011-02-21 21:34:47 -0500 | [diff] [blame] | 1750 | static inline int may_lookup(struct nameidata *nd) |
| 1751 | { |
| 1752 | if (nd->flags & LOOKUP_RCU) { |
Al Viro | 4ad5abb | 2011-06-20 19:57:03 -0400 | [diff] [blame] | 1753 | int err = inode_permission(nd->inode, MAY_EXEC|MAY_NOT_BLOCK); |
Al Viro | 52094c8 | 2011-02-21 21:34:47 -0500 | [diff] [blame] | 1754 | if (err != -ECHILD) |
| 1755 | return err; |
Al Viro | 4675ac3 | 2017-01-09 22:29:15 -0500 | [diff] [blame] | 1756 | if (unlazy_walk(nd)) |
Al Viro | 52094c8 | 2011-02-21 21:34:47 -0500 | [diff] [blame] | 1757 | return -ECHILD; |
| 1758 | } |
Al Viro | 4ad5abb | 2011-06-20 19:57:03 -0400 | [diff] [blame] | 1759 | return inode_permission(nd->inode, MAY_EXEC); |
Al Viro | 52094c8 | 2011-02-21 21:34:47 -0500 | [diff] [blame] | 1760 | } |
| 1761 | |
Al Viro | 9856fa1 | 2011-03-04 14:22:06 -0500 | [diff] [blame] | 1762 | static inline int handle_dots(struct nameidata *nd, int type) |
| 1763 | { |
| 1764 | if (type == LAST_DOTDOT) { |
Aleksa Sarai | 740a167 | 2019-12-07 01:13:29 +1100 | [diff] [blame] | 1765 | int error = 0; |
| 1766 | |
| 1767 | if (!nd->root.mnt) { |
| 1768 | error = set_root(nd); |
| 1769 | if (error) |
| 1770 | return error; |
| 1771 | } |
Aleksa Sarai | ab87f9a | 2019-12-07 01:13:35 +1100 | [diff] [blame] | 1772 | if (nd->flags & LOOKUP_RCU) |
| 1773 | error = follow_dotdot_rcu(nd); |
| 1774 | else |
| 1775 | error = follow_dotdot(nd); |
| 1776 | if (error) |
| 1777 | return error; |
| 1778 | |
| 1779 | if (unlikely(nd->flags & LOOKUP_IS_SCOPED)) { |
| 1780 | /* |
| 1781 | * If there was a racing rename or mount along our |
| 1782 | * path, then we can't be sure that ".." hasn't jumped |
| 1783 | * above nd->root (and so userspace should retry or use |
| 1784 | * some fallback). |
| 1785 | */ |
| 1786 | smp_rmb(); |
| 1787 | if (unlikely(__read_seqcount_retry(&mount_lock.seqcount, nd->m_seq))) |
| 1788 | return -EAGAIN; |
| 1789 | if (unlikely(__read_seqcount_retry(&rename_lock.seqcount, nd->r_seq))) |
| 1790 | return -EAGAIN; |
| 1791 | } |
Al Viro | 9856fa1 | 2011-03-04 14:22:06 -0500 | [diff] [blame] | 1792 | } |
| 1793 | return 0; |
| 1794 | } |
| 1795 | |
Al Viro | 06708ad | 2020-01-14 14:26:57 -0500 | [diff] [blame^] | 1796 | static const char *pick_link(struct nameidata *nd, struct path *link, |
Al Viro | 181548c | 2015-05-07 19:54:34 -0400 | [diff] [blame] | 1797 | struct inode *inode, unsigned seq) |
Al Viro | d63ff28 | 2015-05-04 18:13:23 -0400 | [diff] [blame] | 1798 | { |
Al Viro | 626de99 | 2015-05-04 18:26:59 -0400 | [diff] [blame] | 1799 | int error; |
Al Viro | 1cf2665 | 2015-05-06 16:01:56 -0400 | [diff] [blame] | 1800 | struct saved *last; |
NeilBrown | 756daf2 | 2015-03-23 13:37:38 +1100 | [diff] [blame] | 1801 | if (unlikely(nd->total_link_count++ >= MAXSYMLINKS)) { |
Al Viro | 626de99 | 2015-05-04 18:26:59 -0400 | [diff] [blame] | 1802 | path_to_nameidata(link, nd); |
Al Viro | 06708ad | 2020-01-14 14:26:57 -0500 | [diff] [blame^] | 1803 | return ERR_PTR(-ELOOP); |
Al Viro | 626de99 | 2015-05-04 18:26:59 -0400 | [diff] [blame] | 1804 | } |
Al Viro | bc40aee | 2015-05-09 13:04:24 -0400 | [diff] [blame] | 1805 | if (!(nd->flags & LOOKUP_RCU)) { |
Al Viro | 7973387 | 2015-05-09 12:55:43 -0400 | [diff] [blame] | 1806 | if (link->mnt == nd->path.mnt) |
| 1807 | mntget(link->mnt); |
Al Viro | d63ff28 | 2015-05-04 18:13:23 -0400 | [diff] [blame] | 1808 | } |
Al Viro | 626de99 | 2015-05-04 18:26:59 -0400 | [diff] [blame] | 1809 | error = nd_alloc_stack(nd); |
| 1810 | if (unlikely(error)) { |
Al Viro | bc40aee | 2015-05-09 13:04:24 -0400 | [diff] [blame] | 1811 | if (error == -ECHILD) { |
Al Viro | ad1633a | 2017-01-08 22:35:31 -0500 | [diff] [blame] | 1812 | if (unlikely(!legitimize_path(nd, link, seq))) { |
| 1813 | drop_links(nd); |
| 1814 | nd->depth = 0; |
| 1815 | nd->flags &= ~LOOKUP_RCU; |
| 1816 | nd->path.mnt = NULL; |
| 1817 | nd->path.dentry = NULL; |
Al Viro | ad1633a | 2017-01-08 22:35:31 -0500 | [diff] [blame] | 1818 | rcu_read_unlock(); |
Al Viro | 4675ac3 | 2017-01-09 22:29:15 -0500 | [diff] [blame] | 1819 | } else if (likely(unlazy_walk(nd)) == 0) |
Al Viro | ad1633a | 2017-01-08 22:35:31 -0500 | [diff] [blame] | 1820 | error = nd_alloc_stack(nd); |
Al Viro | bc40aee | 2015-05-09 13:04:24 -0400 | [diff] [blame] | 1821 | } |
| 1822 | if (error) { |
| 1823 | path_put(link); |
Al Viro | 06708ad | 2020-01-14 14:26:57 -0500 | [diff] [blame^] | 1824 | return ERR_PTR(error); |
Al Viro | bc40aee | 2015-05-09 13:04:24 -0400 | [diff] [blame] | 1825 | } |
Al Viro | 626de99 | 2015-05-04 18:26:59 -0400 | [diff] [blame] | 1826 | } |
| 1827 | |
Al Viro | ab10492 | 2015-05-10 11:50:01 -0400 | [diff] [blame] | 1828 | last = nd->stack + nd->depth++; |
Al Viro | 1cf2665 | 2015-05-06 16:01:56 -0400 | [diff] [blame] | 1829 | last->link = *link; |
Al Viro | fceef39 | 2015-12-29 15:58:39 -0500 | [diff] [blame] | 1830 | clear_delayed_call(&last->done); |
| 1831 | nd->link_inode = inode; |
Al Viro | 0450b2d | 2015-05-08 13:23:53 -0400 | [diff] [blame] | 1832 | last->seq = seq; |
Al Viro | 06708ad | 2020-01-14 14:26:57 -0500 | [diff] [blame^] | 1833 | return get_link(nd); |
Al Viro | d63ff28 | 2015-05-04 18:13:23 -0400 | [diff] [blame] | 1834 | } |
| 1835 | |
Al Viro | aca2903 | 2020-01-09 15:17:57 -0500 | [diff] [blame] | 1836 | enum {WALK_FOLLOW = 1, WALK_MORE = 2, WALK_NOFOLLOW = 4}; |
Al Viro | 31d66bc | 2016-11-14 01:43:34 -0500 | [diff] [blame] | 1837 | |
Linus Torvalds | 3ddcd05 | 2011-08-06 22:45:50 -0700 | [diff] [blame] | 1838 | /* |
| 1839 | * Do we need to follow links? We _really_ want to be able |
| 1840 | * to do this check without having to look at inode->i_op, |
| 1841 | * so we keep a cache of "no, this doesn't need follow_link" |
| 1842 | * for the common case. |
| 1843 | */ |
Al Viro | b0417d2 | 2020-01-14 13:34:20 -0500 | [diff] [blame] | 1844 | static const char *step_into(struct nameidata *nd, int flags, |
Al Viro | cbae4d1 | 2020-01-12 13:40:02 -0500 | [diff] [blame] | 1845 | struct dentry *dentry, struct inode *inode, unsigned seq) |
Linus Torvalds | 3ddcd05 | 2011-08-06 22:45:50 -0700 | [diff] [blame] | 1846 | { |
Al Viro | cbae4d1 | 2020-01-12 13:40:02 -0500 | [diff] [blame] | 1847 | struct path path; |
| 1848 | int err = handle_mounts(nd, dentry, &path, &inode, &seq); |
| 1849 | |
| 1850 | if (err < 0) |
Al Viro | b0417d2 | 2020-01-14 13:34:20 -0500 | [diff] [blame] | 1851 | return ERR_PTR(err); |
Al Viro | cbae4d1 | 2020-01-12 13:40:02 -0500 | [diff] [blame] | 1852 | if (likely(!d_is_symlink(path.dentry)) || |
Al Viro | aca2903 | 2020-01-09 15:17:57 -0500 | [diff] [blame] | 1853 | !((flags & WALK_FOLLOW) || (nd->flags & LOOKUP_FOLLOW)) || |
| 1854 | (flags & WALK_NOFOLLOW)) { |
Al Viro | 8f64fb1 | 2016-11-14 01:50:26 -0500 | [diff] [blame] | 1855 | /* not a symlink or should not follow */ |
Al Viro | cbae4d1 | 2020-01-12 13:40:02 -0500 | [diff] [blame] | 1856 | path_to_nameidata(&path, nd); |
Al Viro | 8f64fb1 | 2016-11-14 01:50:26 -0500 | [diff] [blame] | 1857 | nd->inode = inode; |
| 1858 | nd->seq = seq; |
Al Viro | b0417d2 | 2020-01-14 13:34:20 -0500 | [diff] [blame] | 1859 | return NULL; |
Al Viro | 8f64fb1 | 2016-11-14 01:50:26 -0500 | [diff] [blame] | 1860 | } |
Al Viro | a7f7754 | 2016-02-27 19:31:01 -0500 | [diff] [blame] | 1861 | /* make sure that d_is_symlink above matches inode */ |
| 1862 | if (nd->flags & LOOKUP_RCU) { |
Al Viro | cbae4d1 | 2020-01-12 13:40:02 -0500 | [diff] [blame] | 1863 | if (read_seqcount_retry(&path.dentry->d_seq, seq)) |
Al Viro | b0417d2 | 2020-01-14 13:34:20 -0500 | [diff] [blame] | 1864 | return ERR_PTR(-ECHILD); |
Al Viro | a7f7754 | 2016-02-27 19:31:01 -0500 | [diff] [blame] | 1865 | } |
Al Viro | 06708ad | 2020-01-14 14:26:57 -0500 | [diff] [blame^] | 1866 | return pick_link(nd, &path, inode, seq); |
Linus Torvalds | 3ddcd05 | 2011-08-06 22:45:50 -0700 | [diff] [blame] | 1867 | } |
| 1868 | |
Al Viro | 92d2701 | 2020-01-14 13:24:17 -0500 | [diff] [blame] | 1869 | static const char *walk_component(struct nameidata *nd, int flags) |
Al Viro | ce57dfc | 2011-03-13 19:58:58 -0400 | [diff] [blame] | 1870 | { |
Al Viro | db3c9ad | 2020-01-09 14:41:00 -0500 | [diff] [blame] | 1871 | struct dentry *dentry; |
Al Viro | ce57dfc | 2011-03-13 19:58:58 -0400 | [diff] [blame] | 1872 | struct inode *inode; |
Al Viro | 254cf58 | 2015-05-05 09:40:46 -0400 | [diff] [blame] | 1873 | unsigned seq; |
Al Viro | ce57dfc | 2011-03-13 19:58:58 -0400 | [diff] [blame] | 1874 | int err; |
| 1875 | /* |
| 1876 | * "." and ".." are special - ".." especially so because it has |
| 1877 | * to be able to know about the current root directory and |
| 1878 | * parent relationships. |
| 1879 | */ |
Al Viro | 4693a54 | 2015-05-04 17:47:11 -0400 | [diff] [blame] | 1880 | if (unlikely(nd->last_type != LAST_NORM)) { |
Al Viro | 1c4ff1a | 2016-11-14 01:39:36 -0500 | [diff] [blame] | 1881 | if (!(flags & WALK_MORE) && nd->depth) |
Al Viro | 4693a54 | 2015-05-04 17:47:11 -0400 | [diff] [blame] | 1882 | put_link(nd); |
Al Viro | 56676ec | 2020-03-10 21:54:54 -0400 | [diff] [blame] | 1883 | err = handle_dots(nd, nd->last_type); |
Al Viro | 92d2701 | 2020-01-14 13:24:17 -0500 | [diff] [blame] | 1884 | return ERR_PTR(err); |
Al Viro | 4693a54 | 2015-05-04 17:47:11 -0400 | [diff] [blame] | 1885 | } |
Al Viro | 20e3435 | 2020-01-09 14:58:31 -0500 | [diff] [blame] | 1886 | dentry = lookup_fast(nd, &inode, &seq); |
| 1887 | if (IS_ERR(dentry)) |
Al Viro | 92d2701 | 2020-01-14 13:24:17 -0500 | [diff] [blame] | 1888 | return ERR_CAST(dentry); |
Al Viro | 20e3435 | 2020-01-09 14:58:31 -0500 | [diff] [blame] | 1889 | if (unlikely(!dentry)) { |
Al Viro | db3c9ad | 2020-01-09 14:41:00 -0500 | [diff] [blame] | 1890 | dentry = lookup_slow(&nd->last, nd->path.dentry, nd->flags); |
| 1891 | if (IS_ERR(dentry)) |
Al Viro | 92d2701 | 2020-01-14 13:24:17 -0500 | [diff] [blame] | 1892 | return ERR_CAST(dentry); |
Al Viro | ce57dfc | 2011-03-13 19:58:58 -0400 | [diff] [blame] | 1893 | } |
Al Viro | 56676ec | 2020-03-10 21:54:54 -0400 | [diff] [blame] | 1894 | if (!(flags & WALK_MORE) && nd->depth) |
| 1895 | put_link(nd); |
Al Viro | b0417d2 | 2020-01-14 13:34:20 -0500 | [diff] [blame] | 1896 | return step_into(nd, flags, dentry, inode, seq); |
Al Viro | ce57dfc | 2011-03-13 19:58:58 -0400 | [diff] [blame] | 1897 | } |
| 1898 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1899 | /* |
Linus Torvalds | bfcfaa7 | 2012-03-06 11:16:17 -0800 | [diff] [blame] | 1900 | * We can do the critical dentry name comparison and hashing |
| 1901 | * operations one word at a time, but we are limited to: |
| 1902 | * |
| 1903 | * - Architectures with fast unaligned word accesses. We could |
| 1904 | * do a "get_unaligned()" if this helps and is sufficiently |
| 1905 | * fast. |
| 1906 | * |
Linus Torvalds | bfcfaa7 | 2012-03-06 11:16:17 -0800 | [diff] [blame] | 1907 | * - non-CONFIG_DEBUG_PAGEALLOC configurations (so that we |
| 1908 | * do not trap on the (extremely unlikely) case of a page |
| 1909 | * crossing operation. |
| 1910 | * |
| 1911 | * - Furthermore, we need an efficient 64-bit compile for the |
| 1912 | * 64-bit case in order to generate the "number of bytes in |
| 1913 | * the final mask". Again, that could be replaced with a |
| 1914 | * efficient population count instruction or similar. |
| 1915 | */ |
| 1916 | #ifdef CONFIG_DCACHE_WORD_ACCESS |
| 1917 | |
Linus Torvalds | f68e556 | 2012-04-06 13:54:56 -0700 | [diff] [blame] | 1918 | #include <asm/word-at-a-time.h> |
Linus Torvalds | bfcfaa7 | 2012-03-06 11:16:17 -0800 | [diff] [blame] | 1919 | |
George Spelvin | 468a942 | 2016-05-26 22:11:51 -0400 | [diff] [blame] | 1920 | #ifdef HASH_MIX |
Linus Torvalds | bfcfaa7 | 2012-03-06 11:16:17 -0800 | [diff] [blame] | 1921 | |
George Spelvin | 468a942 | 2016-05-26 22:11:51 -0400 | [diff] [blame] | 1922 | /* Architecture provides HASH_MIX and fold_hash() in <asm/hash.h> */ |
| 1923 | |
| 1924 | #elif defined(CONFIG_64BIT) |
George Spelvin | 2a18da7a | 2016-05-23 07:43:58 -0400 | [diff] [blame] | 1925 | /* |
| 1926 | * Register pressure in the mixing function is an issue, particularly |
| 1927 | * on 32-bit x86, but almost any function requires one state value and |
| 1928 | * one temporary. Instead, use a function designed for two state values |
| 1929 | * and no temporaries. |
| 1930 | * |
| 1931 | * This function cannot create a collision in only two iterations, so |
| 1932 | * we have two iterations to achieve avalanche. In those two iterations, |
| 1933 | * we have six layers of mixing, which is enough to spread one bit's |
| 1934 | * influence out to 2^6 = 64 state bits. |
| 1935 | * |
| 1936 | * Rotate constants are scored by considering either 64 one-bit input |
| 1937 | * deltas or 64*63/2 = 2016 two-bit input deltas, and finding the |
| 1938 | * probability of that delta causing a change to each of the 128 output |
| 1939 | * bits, using a sample of random initial states. |
| 1940 | * |
| 1941 | * The Shannon entropy of the computed probabilities is then summed |
| 1942 | * to produce a score. Ideally, any input change has a 50% chance of |
| 1943 | * toggling any given output bit. |
| 1944 | * |
| 1945 | * Mixing scores (in bits) for (12,45): |
| 1946 | * Input delta: 1-bit 2-bit |
| 1947 | * 1 round: 713.3 42542.6 |
| 1948 | * 2 rounds: 2753.7 140389.8 |
| 1949 | * 3 rounds: 5954.1 233458.2 |
| 1950 | * 4 rounds: 7862.6 256672.2 |
| 1951 | * Perfect: 8192 258048 |
| 1952 | * (64*128) (64*63/2 * 128) |
| 1953 | */ |
| 1954 | #define HASH_MIX(x, y, a) \ |
| 1955 | ( x ^= (a), \ |
| 1956 | y ^= x, x = rol64(x,12),\ |
| 1957 | x += y, y = rol64(y,45),\ |
| 1958 | y *= 9 ) |
Linus Torvalds | bfcfaa7 | 2012-03-06 11:16:17 -0800 | [diff] [blame] | 1959 | |
George Spelvin | 0fed3ac | 2016-05-02 06:31:01 -0400 | [diff] [blame] | 1960 | /* |
George Spelvin | 2a18da7a | 2016-05-23 07:43:58 -0400 | [diff] [blame] | 1961 | * Fold two longs into one 32-bit hash value. This must be fast, but |
| 1962 | * latency isn't quite as critical, as there is a fair bit of additional |
| 1963 | * work done before the hash value is used. |
George Spelvin | 0fed3ac | 2016-05-02 06:31:01 -0400 | [diff] [blame] | 1964 | */ |
George Spelvin | 2a18da7a | 2016-05-23 07:43:58 -0400 | [diff] [blame] | 1965 | static inline unsigned int fold_hash(unsigned long x, unsigned long y) |
George Spelvin | 0fed3ac | 2016-05-02 06:31:01 -0400 | [diff] [blame] | 1966 | { |
George Spelvin | 2a18da7a | 2016-05-23 07:43:58 -0400 | [diff] [blame] | 1967 | y ^= x * GOLDEN_RATIO_64; |
| 1968 | y *= GOLDEN_RATIO_64; |
| 1969 | return y >> 32; |
George Spelvin | 0fed3ac | 2016-05-02 06:31:01 -0400 | [diff] [blame] | 1970 | } |
| 1971 | |
Linus Torvalds | bfcfaa7 | 2012-03-06 11:16:17 -0800 | [diff] [blame] | 1972 | #else /* 32-bit case */ |
| 1973 | |
George Spelvin | 2a18da7a | 2016-05-23 07:43:58 -0400 | [diff] [blame] | 1974 | /* |
| 1975 | * Mixing scores (in bits) for (7,20): |
| 1976 | * Input delta: 1-bit 2-bit |
| 1977 | * 1 round: 330.3 9201.6 |
| 1978 | * 2 rounds: 1246.4 25475.4 |
| 1979 | * 3 rounds: 1907.1 31295.1 |
| 1980 | * 4 rounds: 2042.3 31718.6 |
| 1981 | * Perfect: 2048 31744 |
| 1982 | * (32*64) (32*31/2 * 64) |
| 1983 | */ |
| 1984 | #define HASH_MIX(x, y, a) \ |
| 1985 | ( x ^= (a), \ |
| 1986 | y ^= x, x = rol32(x, 7),\ |
| 1987 | x += y, y = rol32(y,20),\ |
| 1988 | y *= 9 ) |
Linus Torvalds | bfcfaa7 | 2012-03-06 11:16:17 -0800 | [diff] [blame] | 1989 | |
George Spelvin | 2a18da7a | 2016-05-23 07:43:58 -0400 | [diff] [blame] | 1990 | static inline unsigned int fold_hash(unsigned long x, unsigned long y) |
George Spelvin | 0fed3ac | 2016-05-02 06:31:01 -0400 | [diff] [blame] | 1991 | { |
George Spelvin | 2a18da7a | 2016-05-23 07:43:58 -0400 | [diff] [blame] | 1992 | /* Use arch-optimized multiply if one exists */ |
| 1993 | return __hash_32(y ^ __hash_32(x)); |
George Spelvin | 0fed3ac | 2016-05-02 06:31:01 -0400 | [diff] [blame] | 1994 | } |
| 1995 | |
Linus Torvalds | bfcfaa7 | 2012-03-06 11:16:17 -0800 | [diff] [blame] | 1996 | #endif |
| 1997 | |
George Spelvin | 2a18da7a | 2016-05-23 07:43:58 -0400 | [diff] [blame] | 1998 | /* |
| 1999 | * Return the hash of a string of known length. This is carfully |
| 2000 | * designed to match hash_name(), which is the more critical function. |
| 2001 | * In particular, we must end by hashing a final word containing 0..7 |
| 2002 | * payload bytes, to match the way that hash_name() iterates until it |
| 2003 | * finds the delimiter after the name. |
| 2004 | */ |
Linus Torvalds | 8387ff2 | 2016-06-10 07:51:30 -0700 | [diff] [blame] | 2005 | 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] | 2006 | { |
Linus Torvalds | 8387ff2 | 2016-06-10 07:51:30 -0700 | [diff] [blame] | 2007 | unsigned long a, x = 0, y = (unsigned long)salt; |
Linus Torvalds | bfcfaa7 | 2012-03-06 11:16:17 -0800 | [diff] [blame] | 2008 | |
| 2009 | for (;;) { |
George Spelvin | fcfd2fb | 2016-05-20 08:41:37 -0400 | [diff] [blame] | 2010 | if (!len) |
| 2011 | goto done; |
Linus Torvalds | e419b4c | 2012-05-03 10:16:43 -0700 | [diff] [blame] | 2012 | a = load_unaligned_zeropad(name); |
Linus Torvalds | bfcfaa7 | 2012-03-06 11:16:17 -0800 | [diff] [blame] | 2013 | if (len < sizeof(unsigned long)) |
| 2014 | break; |
George Spelvin | 2a18da7a | 2016-05-23 07:43:58 -0400 | [diff] [blame] | 2015 | HASH_MIX(x, y, a); |
Linus Torvalds | bfcfaa7 | 2012-03-06 11:16:17 -0800 | [diff] [blame] | 2016 | name += sizeof(unsigned long); |
| 2017 | len -= sizeof(unsigned long); |
Linus Torvalds | bfcfaa7 | 2012-03-06 11:16:17 -0800 | [diff] [blame] | 2018 | } |
George Spelvin | 2a18da7a | 2016-05-23 07:43:58 -0400 | [diff] [blame] | 2019 | x ^= a & bytemask_from_count(len); |
Linus Torvalds | bfcfaa7 | 2012-03-06 11:16:17 -0800 | [diff] [blame] | 2020 | done: |
George Spelvin | 2a18da7a | 2016-05-23 07:43:58 -0400 | [diff] [blame] | 2021 | return fold_hash(x, y); |
Linus Torvalds | bfcfaa7 | 2012-03-06 11:16:17 -0800 | [diff] [blame] | 2022 | } |
| 2023 | EXPORT_SYMBOL(full_name_hash); |
| 2024 | |
George Spelvin | fcfd2fb | 2016-05-20 08:41:37 -0400 | [diff] [blame] | 2025 | /* Return the "hash_len" (hash and length) of a null-terminated string */ |
Linus Torvalds | 8387ff2 | 2016-06-10 07:51:30 -0700 | [diff] [blame] | 2026 | u64 hashlen_string(const void *salt, const char *name) |
George Spelvin | fcfd2fb | 2016-05-20 08:41:37 -0400 | [diff] [blame] | 2027 | { |
Linus Torvalds | 8387ff2 | 2016-06-10 07:51:30 -0700 | [diff] [blame] | 2028 | unsigned long a = 0, x = 0, y = (unsigned long)salt; |
| 2029 | unsigned long adata, mask, len; |
George Spelvin | fcfd2fb | 2016-05-20 08:41:37 -0400 | [diff] [blame] | 2030 | const struct word_at_a_time constants = WORD_AT_A_TIME_CONSTANTS; |
| 2031 | |
Linus Torvalds | 8387ff2 | 2016-06-10 07:51:30 -0700 | [diff] [blame] | 2032 | len = 0; |
| 2033 | goto inside; |
| 2034 | |
George Spelvin | fcfd2fb | 2016-05-20 08:41:37 -0400 | [diff] [blame] | 2035 | do { |
George Spelvin | 2a18da7a | 2016-05-23 07:43:58 -0400 | [diff] [blame] | 2036 | HASH_MIX(x, y, a); |
George Spelvin | fcfd2fb | 2016-05-20 08:41:37 -0400 | [diff] [blame] | 2037 | len += sizeof(unsigned long); |
Linus Torvalds | 8387ff2 | 2016-06-10 07:51:30 -0700 | [diff] [blame] | 2038 | inside: |
George Spelvin | fcfd2fb | 2016-05-20 08:41:37 -0400 | [diff] [blame] | 2039 | a = load_unaligned_zeropad(name+len); |
| 2040 | } while (!has_zero(a, &adata, &constants)); |
| 2041 | |
| 2042 | adata = prep_zero_mask(a, adata, &constants); |
| 2043 | mask = create_zero_mask(adata); |
George Spelvin | 2a18da7a | 2016-05-23 07:43:58 -0400 | [diff] [blame] | 2044 | x ^= a & zero_bytemask(mask); |
George Spelvin | fcfd2fb | 2016-05-20 08:41:37 -0400 | [diff] [blame] | 2045 | |
George Spelvin | 2a18da7a | 2016-05-23 07:43:58 -0400 | [diff] [blame] | 2046 | return hashlen_create(fold_hash(x, y), len + find_zero(mask)); |
George Spelvin | fcfd2fb | 2016-05-20 08:41:37 -0400 | [diff] [blame] | 2047 | } |
| 2048 | EXPORT_SYMBOL(hashlen_string); |
| 2049 | |
Linus Torvalds | bfcfaa7 | 2012-03-06 11:16:17 -0800 | [diff] [blame] | 2050 | /* |
| 2051 | * Calculate the length and hash of the path component, and |
Linus Torvalds | d6bb3e9 | 2014-09-15 10:51:07 -0700 | [diff] [blame] | 2052 | * return the "hash_len" as the result. |
Linus Torvalds | bfcfaa7 | 2012-03-06 11:16:17 -0800 | [diff] [blame] | 2053 | */ |
Linus Torvalds | 8387ff2 | 2016-06-10 07:51:30 -0700 | [diff] [blame] | 2054 | static inline u64 hash_name(const void *salt, const char *name) |
Linus Torvalds | bfcfaa7 | 2012-03-06 11:16:17 -0800 | [diff] [blame] | 2055 | { |
Linus Torvalds | 8387ff2 | 2016-06-10 07:51:30 -0700 | [diff] [blame] | 2056 | unsigned long a = 0, b, x = 0, y = (unsigned long)salt; |
| 2057 | unsigned long adata, bdata, mask, len; |
Linus Torvalds | 36126f8 | 2012-05-26 10:43:17 -0700 | [diff] [blame] | 2058 | const struct word_at_a_time constants = WORD_AT_A_TIME_CONSTANTS; |
Linus Torvalds | bfcfaa7 | 2012-03-06 11:16:17 -0800 | [diff] [blame] | 2059 | |
Linus Torvalds | 8387ff2 | 2016-06-10 07:51:30 -0700 | [diff] [blame] | 2060 | len = 0; |
| 2061 | goto inside; |
| 2062 | |
Linus Torvalds | bfcfaa7 | 2012-03-06 11:16:17 -0800 | [diff] [blame] | 2063 | do { |
George Spelvin | 2a18da7a | 2016-05-23 07:43:58 -0400 | [diff] [blame] | 2064 | HASH_MIX(x, y, a); |
Linus Torvalds | bfcfaa7 | 2012-03-06 11:16:17 -0800 | [diff] [blame] | 2065 | len += sizeof(unsigned long); |
Linus Torvalds | 8387ff2 | 2016-06-10 07:51:30 -0700 | [diff] [blame] | 2066 | inside: |
Linus Torvalds | e419b4c | 2012-05-03 10:16:43 -0700 | [diff] [blame] | 2067 | a = load_unaligned_zeropad(name+len); |
Linus Torvalds | 36126f8 | 2012-05-26 10:43:17 -0700 | [diff] [blame] | 2068 | b = a ^ REPEAT_BYTE('/'); |
| 2069 | } while (!(has_zero(a, &adata, &constants) | has_zero(b, &bdata, &constants))); |
Linus Torvalds | bfcfaa7 | 2012-03-06 11:16:17 -0800 | [diff] [blame] | 2070 | |
Linus Torvalds | 36126f8 | 2012-05-26 10:43:17 -0700 | [diff] [blame] | 2071 | adata = prep_zero_mask(a, adata, &constants); |
| 2072 | bdata = prep_zero_mask(b, bdata, &constants); |
Linus Torvalds | 36126f8 | 2012-05-26 10:43:17 -0700 | [diff] [blame] | 2073 | mask = create_zero_mask(adata | bdata); |
George Spelvin | 2a18da7a | 2016-05-23 07:43:58 -0400 | [diff] [blame] | 2074 | x ^= a & zero_bytemask(mask); |
Linus Torvalds | 36126f8 | 2012-05-26 10:43:17 -0700 | [diff] [blame] | 2075 | |
George Spelvin | 2a18da7a | 2016-05-23 07:43:58 -0400 | [diff] [blame] | 2076 | return hashlen_create(fold_hash(x, y), len + find_zero(mask)); |
Linus Torvalds | bfcfaa7 | 2012-03-06 11:16:17 -0800 | [diff] [blame] | 2077 | } |
| 2078 | |
George Spelvin | 2a18da7a | 2016-05-23 07:43:58 -0400 | [diff] [blame] | 2079 | #else /* !CONFIG_DCACHE_WORD_ACCESS: Slow, byte-at-a-time version */ |
Linus Torvalds | bfcfaa7 | 2012-03-06 11:16:17 -0800 | [diff] [blame] | 2080 | |
George Spelvin | fcfd2fb | 2016-05-20 08:41:37 -0400 | [diff] [blame] | 2081 | /* Return the hash of a string of known length */ |
Linus Torvalds | 8387ff2 | 2016-06-10 07:51:30 -0700 | [diff] [blame] | 2082 | 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] | 2083 | { |
Linus Torvalds | 8387ff2 | 2016-06-10 07:51:30 -0700 | [diff] [blame] | 2084 | unsigned long hash = init_name_hash(salt); |
Linus Torvalds | 0145acc | 2012-03-02 14:32:59 -0800 | [diff] [blame] | 2085 | while (len--) |
George Spelvin | fcfd2fb | 2016-05-20 08:41:37 -0400 | [diff] [blame] | 2086 | hash = partial_name_hash((unsigned char)*name++, hash); |
Linus Torvalds | 0145acc | 2012-03-02 14:32:59 -0800 | [diff] [blame] | 2087 | return end_name_hash(hash); |
| 2088 | } |
Linus Torvalds | ae942ae | 2012-03-02 19:40:57 -0800 | [diff] [blame] | 2089 | EXPORT_SYMBOL(full_name_hash); |
Linus Torvalds | 0145acc | 2012-03-02 14:32:59 -0800 | [diff] [blame] | 2090 | |
George Spelvin | fcfd2fb | 2016-05-20 08:41:37 -0400 | [diff] [blame] | 2091 | /* Return the "hash_len" (hash and length) of a null-terminated string */ |
Linus Torvalds | 8387ff2 | 2016-06-10 07:51:30 -0700 | [diff] [blame] | 2092 | u64 hashlen_string(const void *salt, const char *name) |
George Spelvin | fcfd2fb | 2016-05-20 08:41:37 -0400 | [diff] [blame] | 2093 | { |
Linus Torvalds | 8387ff2 | 2016-06-10 07:51:30 -0700 | [diff] [blame] | 2094 | unsigned long hash = init_name_hash(salt); |
George Spelvin | fcfd2fb | 2016-05-20 08:41:37 -0400 | [diff] [blame] | 2095 | unsigned long len = 0, c; |
| 2096 | |
| 2097 | c = (unsigned char)*name; |
George Spelvin | e0ab7af | 2016-05-29 08:05:56 -0400 | [diff] [blame] | 2098 | while (c) { |
George Spelvin | fcfd2fb | 2016-05-20 08:41:37 -0400 | [diff] [blame] | 2099 | len++; |
| 2100 | hash = partial_name_hash(c, hash); |
| 2101 | c = (unsigned char)name[len]; |
George Spelvin | e0ab7af | 2016-05-29 08:05:56 -0400 | [diff] [blame] | 2102 | } |
George Spelvin | fcfd2fb | 2016-05-20 08:41:37 -0400 | [diff] [blame] | 2103 | return hashlen_create(end_name_hash(hash), len); |
| 2104 | } |
George Spelvin | f2a031b | 2016-05-29 01:26:41 -0400 | [diff] [blame] | 2105 | EXPORT_SYMBOL(hashlen_string); |
George Spelvin | fcfd2fb | 2016-05-20 08:41:37 -0400 | [diff] [blame] | 2106 | |
Linus Torvalds | 3ddcd05 | 2011-08-06 22:45:50 -0700 | [diff] [blame] | 2107 | /* |
Linus Torvalds | 200e9ef | 2012-03-02 14:49:24 -0800 | [diff] [blame] | 2108 | * We know there's a real path component here of at least |
| 2109 | * one character. |
| 2110 | */ |
Linus Torvalds | 8387ff2 | 2016-06-10 07:51:30 -0700 | [diff] [blame] | 2111 | static inline u64 hash_name(const void *salt, const char *name) |
Linus Torvalds | 200e9ef | 2012-03-02 14:49:24 -0800 | [diff] [blame] | 2112 | { |
Linus Torvalds | 8387ff2 | 2016-06-10 07:51:30 -0700 | [diff] [blame] | 2113 | unsigned long hash = init_name_hash(salt); |
Linus Torvalds | 200e9ef | 2012-03-02 14:49:24 -0800 | [diff] [blame] | 2114 | unsigned long len = 0, c; |
| 2115 | |
| 2116 | c = (unsigned char)*name; |
| 2117 | do { |
| 2118 | len++; |
| 2119 | hash = partial_name_hash(c, hash); |
| 2120 | c = (unsigned char)name[len]; |
| 2121 | } while (c && c != '/'); |
Linus Torvalds | d6bb3e9 | 2014-09-15 10:51:07 -0700 | [diff] [blame] | 2122 | return hashlen_create(end_name_hash(hash), len); |
Linus Torvalds | 200e9ef | 2012-03-02 14:49:24 -0800 | [diff] [blame] | 2123 | } |
| 2124 | |
Linus Torvalds | bfcfaa7 | 2012-03-06 11:16:17 -0800 | [diff] [blame] | 2125 | #endif |
| 2126 | |
Linus Torvalds | 200e9ef | 2012-03-02 14:49:24 -0800 | [diff] [blame] | 2127 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2128 | * Name resolution. |
Prasanna Meda | ea3834d | 2005-04-29 16:00:17 +0100 | [diff] [blame] | 2129 | * This is the basic name resolution function, turning a pathname into |
| 2130 | * the final dentry. We expect 'base' to be positive and a directory. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2131 | * |
Prasanna Meda | ea3834d | 2005-04-29 16:00:17 +0100 | [diff] [blame] | 2132 | * Returns 0 and nd will have valid dentry and mnt on success. |
| 2133 | * Returns error and drops reference to input namei data on failure. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2134 | */ |
Al Viro | 6de88d7 | 2009-08-09 01:41:57 +0400 | [diff] [blame] | 2135 | static int link_path_walk(const char *name, struct nameidata *nd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2136 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2137 | int err; |
Al Viro | 32cd746 | 2015-04-18 20:30:49 -0400 | [diff] [blame] | 2138 | |
Al Viro | 9b5858e | 2018-07-09 16:33:23 -0400 | [diff] [blame] | 2139 | if (IS_ERR(name)) |
| 2140 | return PTR_ERR(name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2141 | while (*name=='/') |
| 2142 | name++; |
| 2143 | if (!*name) |
Al Viro | 9e18f10 | 2015-04-18 20:44:34 -0400 | [diff] [blame] | 2144 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2145 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2146 | /* At this point we know we have a real path component. */ |
| 2147 | for(;;) { |
Al Viro | 92d2701 | 2020-01-14 13:24:17 -0500 | [diff] [blame] | 2148 | const char *link; |
Linus Torvalds | d6bb3e9 | 2014-09-15 10:51:07 -0700 | [diff] [blame] | 2149 | u64 hash_len; |
Al Viro | fe479a5 | 2011-02-22 15:10:03 -0500 | [diff] [blame] | 2150 | int type; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2151 | |
Al Viro | 52094c8 | 2011-02-21 21:34:47 -0500 | [diff] [blame] | 2152 | err = may_lookup(nd); |
George Spelvin | 2a18da7a | 2016-05-23 07:43:58 -0400 | [diff] [blame] | 2153 | if (err) |
Al Viro | 3595e23 | 2015-05-09 16:54:45 -0400 | [diff] [blame] | 2154 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2155 | |
Linus Torvalds | 8387ff2 | 2016-06-10 07:51:30 -0700 | [diff] [blame] | 2156 | hash_len = hash_name(nd->path.dentry, name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2157 | |
Al Viro | fe479a5 | 2011-02-22 15:10:03 -0500 | [diff] [blame] | 2158 | type = LAST_NORM; |
Linus Torvalds | d6bb3e9 | 2014-09-15 10:51:07 -0700 | [diff] [blame] | 2159 | if (name[0] == '.') switch (hashlen_len(hash_len)) { |
Al Viro | fe479a5 | 2011-02-22 15:10:03 -0500 | [diff] [blame] | 2160 | case 2: |
Linus Torvalds | 200e9ef | 2012-03-02 14:49:24 -0800 | [diff] [blame] | 2161 | if (name[1] == '.') { |
Al Viro | fe479a5 | 2011-02-22 15:10:03 -0500 | [diff] [blame] | 2162 | type = LAST_DOTDOT; |
Al Viro | 16c2cd7 | 2011-02-22 15:50:10 -0500 | [diff] [blame] | 2163 | nd->flags |= LOOKUP_JUMPED; |
| 2164 | } |
Al Viro | fe479a5 | 2011-02-22 15:10:03 -0500 | [diff] [blame] | 2165 | break; |
| 2166 | case 1: |
| 2167 | type = LAST_DOT; |
| 2168 | } |
Al Viro | 5a202bc | 2011-03-08 14:17:44 -0500 | [diff] [blame] | 2169 | if (likely(type == LAST_NORM)) { |
| 2170 | struct dentry *parent = nd->path.dentry; |
Al Viro | 16c2cd7 | 2011-02-22 15:50:10 -0500 | [diff] [blame] | 2171 | nd->flags &= ~LOOKUP_JUMPED; |
Al Viro | 5a202bc | 2011-03-08 14:17:44 -0500 | [diff] [blame] | 2172 | if (unlikely(parent->d_flags & DCACHE_OP_HASH)) { |
James Hogan | a060dc5 | 2014-09-16 13:07:35 +0100 | [diff] [blame] | 2173 | struct qstr this = { { .hash_len = hash_len }, .name = name }; |
Linus Torvalds | da53be1 | 2013-05-21 15:22:44 -0700 | [diff] [blame] | 2174 | err = parent->d_op->d_hash(parent, &this); |
Al Viro | 5a202bc | 2011-03-08 14:17:44 -0500 | [diff] [blame] | 2175 | if (err < 0) |
Al Viro | 3595e23 | 2015-05-09 16:54:45 -0400 | [diff] [blame] | 2176 | return err; |
Linus Torvalds | d6bb3e9 | 2014-09-15 10:51:07 -0700 | [diff] [blame] | 2177 | hash_len = this.hash_len; |
| 2178 | name = this.name; |
Al Viro | 5a202bc | 2011-03-08 14:17:44 -0500 | [diff] [blame] | 2179 | } |
| 2180 | } |
Al Viro | fe479a5 | 2011-02-22 15:10:03 -0500 | [diff] [blame] | 2181 | |
Linus Torvalds | d6bb3e9 | 2014-09-15 10:51:07 -0700 | [diff] [blame] | 2182 | nd->last.hash_len = hash_len; |
| 2183 | nd->last.name = name; |
Al Viro | 5f4a6a6 | 2013-01-24 18:04:22 -0500 | [diff] [blame] | 2184 | nd->last_type = type; |
| 2185 | |
Linus Torvalds | d6bb3e9 | 2014-09-15 10:51:07 -0700 | [diff] [blame] | 2186 | name += hashlen_len(hash_len); |
| 2187 | if (!*name) |
Al Viro | bdf6cbf | 2015-04-18 20:21:40 -0400 | [diff] [blame] | 2188 | goto OK; |
Linus Torvalds | 200e9ef | 2012-03-02 14:49:24 -0800 | [diff] [blame] | 2189 | /* |
| 2190 | * If it wasn't NUL, we know it was '/'. Skip that |
| 2191 | * slash, and continue until no more slashes. |
| 2192 | */ |
| 2193 | do { |
Linus Torvalds | d6bb3e9 | 2014-09-15 10:51:07 -0700 | [diff] [blame] | 2194 | name++; |
| 2195 | } while (unlikely(*name == '/')); |
Al Viro | 8620c23 | 2015-05-04 08:58:35 -0400 | [diff] [blame] | 2196 | if (unlikely(!*name)) { |
| 2197 | OK: |
Al Viro | 368ee9b | 2015-05-08 17:19:59 -0400 | [diff] [blame] | 2198 | /* pathname body, done */ |
Al Viro | 8620c23 | 2015-05-04 08:58:35 -0400 | [diff] [blame] | 2199 | if (!nd->depth) |
| 2200 | return 0; |
| 2201 | name = nd->stack[nd->depth - 1].name; |
Al Viro | 368ee9b | 2015-05-08 17:19:59 -0400 | [diff] [blame] | 2202 | /* trailing symlink, done */ |
Al Viro | 8620c23 | 2015-05-04 08:58:35 -0400 | [diff] [blame] | 2203 | if (!name) |
| 2204 | return 0; |
| 2205 | /* last component of nested symlink */ |
Al Viro | 92d2701 | 2020-01-14 13:24:17 -0500 | [diff] [blame] | 2206 | link = walk_component(nd, WALK_FOLLOW); |
Al Viro | 1c4ff1a | 2016-11-14 01:39:36 -0500 | [diff] [blame] | 2207 | } else { |
| 2208 | /* not the last component */ |
Al Viro | 92d2701 | 2020-01-14 13:24:17 -0500 | [diff] [blame] | 2209 | link = walk_component(nd, WALK_FOLLOW | WALK_MORE); |
Al Viro | 8620c23 | 2015-05-04 08:58:35 -0400 | [diff] [blame] | 2210 | } |
Al Viro | 92d2701 | 2020-01-14 13:24:17 -0500 | [diff] [blame] | 2211 | if (unlikely(link)) { |
| 2212 | if (IS_ERR(link)) |
| 2213 | return PTR_ERR(link); |
| 2214 | /* a symlink to follow */ |
| 2215 | nd->stack[nd->depth - 1].name = name; |
| 2216 | name = link; |
| 2217 | continue; |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 2218 | } |
Al Viro | 97242f9 | 2015-08-01 19:59:28 -0400 | [diff] [blame] | 2219 | if (unlikely(!d_can_lookup(nd->path.dentry))) { |
| 2220 | if (nd->flags & LOOKUP_RCU) { |
Al Viro | 4675ac3 | 2017-01-09 22:29:15 -0500 | [diff] [blame] | 2221 | if (unlazy_walk(nd)) |
Al Viro | 97242f9 | 2015-08-01 19:59:28 -0400 | [diff] [blame] | 2222 | return -ECHILD; |
| 2223 | } |
Al Viro | 3595e23 | 2015-05-09 16:54:45 -0400 | [diff] [blame] | 2224 | return -ENOTDIR; |
Al Viro | 97242f9 | 2015-08-01 19:59:28 -0400 | [diff] [blame] | 2225 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2226 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2227 | } |
| 2228 | |
Al Viro | edc2b1d | 2018-07-09 16:27:23 -0400 | [diff] [blame] | 2229 | /* must be paired with terminate_walk() */ |
Al Viro | c8a53ee | 2015-05-12 18:43:07 -0400 | [diff] [blame] | 2230 | static const char *path_init(struct nameidata *nd, unsigned flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2231 | { |
Aleksa Sarai | 740a167 | 2019-12-07 01:13:29 +1100 | [diff] [blame] | 2232 | int error; |
Al Viro | c8a53ee | 2015-05-12 18:43:07 -0400 | [diff] [blame] | 2233 | const char *s = nd->name->name; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2234 | |
Linus Torvalds | c0eb027 | 2017-04-02 17:10:08 -0700 | [diff] [blame] | 2235 | if (!*s) |
| 2236 | flags &= ~LOOKUP_RCU; |
Al Viro | edc2b1d | 2018-07-09 16:27:23 -0400 | [diff] [blame] | 2237 | if (flags & LOOKUP_RCU) |
| 2238 | rcu_read_lock(); |
Linus Torvalds | c0eb027 | 2017-04-02 17:10:08 -0700 | [diff] [blame] | 2239 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2240 | nd->last_type = LAST_ROOT; /* if there are only slashes... */ |
Al Viro | 980f3ea | 2014-11-20 14:20:24 -0500 | [diff] [blame] | 2241 | nd->flags = flags | LOOKUP_JUMPED | LOOKUP_PARENT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2242 | nd->depth = 0; |
Aleksa Sarai | ab87f9a | 2019-12-07 01:13:35 +1100 | [diff] [blame] | 2243 | |
| 2244 | nd->m_seq = __read_seqcount_begin(&mount_lock.seqcount); |
| 2245 | nd->r_seq = __read_seqcount_begin(&rename_lock.seqcount); |
| 2246 | smp_rmb(); |
| 2247 | |
Al Viro | 5b6ca02 | 2011-03-09 23:04:47 -0500 | [diff] [blame] | 2248 | if (flags & LOOKUP_ROOT) { |
David Howells | b18825a | 2013-09-12 19:22:53 +0100 | [diff] [blame] | 2249 | struct dentry *root = nd->root.dentry; |
| 2250 | struct inode *inode = root->d_inode; |
Al Viro | 9389386 | 2017-04-15 17:29:14 -0400 | [diff] [blame] | 2251 | if (*s && unlikely(!d_can_lookup(root))) |
| 2252 | return ERR_PTR(-ENOTDIR); |
Al Viro | 5b6ca02 | 2011-03-09 23:04:47 -0500 | [diff] [blame] | 2253 | nd->path = nd->root; |
| 2254 | nd->inode = inode; |
| 2255 | if (flags & LOOKUP_RCU) { |
Aleksa Sarai | ab87f9a | 2019-12-07 01:13:35 +1100 | [diff] [blame] | 2256 | nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq); |
Al Viro | 8f47a016 | 2015-05-09 19:02:01 -0400 | [diff] [blame] | 2257 | nd->root_seq = nd->seq; |
Al Viro | 5b6ca02 | 2011-03-09 23:04:47 -0500 | [diff] [blame] | 2258 | } else { |
| 2259 | path_get(&nd->path); |
| 2260 | } |
Al Viro | 368ee9b | 2015-05-08 17:19:59 -0400 | [diff] [blame] | 2261 | return s; |
Al Viro | 5b6ca02 | 2011-03-09 23:04:47 -0500 | [diff] [blame] | 2262 | } |
| 2263 | |
Al Viro | 2a73787 | 2009-04-07 11:49:53 -0400 | [diff] [blame] | 2264 | nd->root.mnt = NULL; |
Al Viro | 248fb5b | 2015-12-05 20:51:58 -0500 | [diff] [blame] | 2265 | nd->path.mnt = NULL; |
| 2266 | nd->path.dentry = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2267 | |
Aleksa Sarai | 8db52c7 | 2019-12-07 01:13:34 +1100 | [diff] [blame] | 2268 | /* Absolute pathname -- fetch the root (LOOKUP_IN_ROOT uses nd->dfd). */ |
| 2269 | if (*s == '/' && !(flags & LOOKUP_IN_ROOT)) { |
Aleksa Sarai | 740a167 | 2019-12-07 01:13:29 +1100 | [diff] [blame] | 2270 | error = nd_jump_root(nd); |
| 2271 | if (unlikely(error)) |
| 2272 | return ERR_PTR(error); |
| 2273 | return s; |
Aleksa Sarai | 8db52c7 | 2019-12-07 01:13:34 +1100 | [diff] [blame] | 2274 | } |
| 2275 | |
| 2276 | /* Relative pathname -- get the starting-point it is relative to. */ |
| 2277 | if (nd->dfd == AT_FDCWD) { |
Al Viro | e41f7d4 | 2011-02-22 14:02:58 -0500 | [diff] [blame] | 2278 | if (flags & LOOKUP_RCU) { |
| 2279 | struct fs_struct *fs = current->fs; |
| 2280 | unsigned seq; |
| 2281 | |
Al Viro | e41f7d4 | 2011-02-22 14:02:58 -0500 | [diff] [blame] | 2282 | do { |
| 2283 | seq = read_seqcount_begin(&fs->seq); |
| 2284 | nd->path = fs->pwd; |
Al Viro | ef55d91 | 2015-12-05 20:25:06 -0500 | [diff] [blame] | 2285 | nd->inode = nd->path.dentry->d_inode; |
Al Viro | e41f7d4 | 2011-02-22 14:02:58 -0500 | [diff] [blame] | 2286 | nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq); |
| 2287 | } while (read_seqcount_retry(&fs->seq, seq)); |
| 2288 | } else { |
| 2289 | get_fs_pwd(current->fs, &nd->path); |
Al Viro | ef55d91 | 2015-12-05 20:25:06 -0500 | [diff] [blame] | 2290 | nd->inode = nd->path.dentry->d_inode; |
Al Viro | e41f7d4 | 2011-02-22 14:02:58 -0500 | [diff] [blame] | 2291 | } |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 2292 | } else { |
Jeff Layton | 582aa64 | 2012-12-11 08:56:16 -0500 | [diff] [blame] | 2293 | /* Caller must check execute permissions on the starting path component */ |
Al Viro | c8a53ee | 2015-05-12 18:43:07 -0400 | [diff] [blame] | 2294 | struct fd f = fdget_raw(nd->dfd); |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 2295 | struct dentry *dentry; |
| 2296 | |
Al Viro | 2903ff0 | 2012-08-28 12:52:22 -0400 | [diff] [blame] | 2297 | if (!f.file) |
Al Viro | 368ee9b | 2015-05-08 17:19:59 -0400 | [diff] [blame] | 2298 | return ERR_PTR(-EBADF); |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 2299 | |
Al Viro | 2903ff0 | 2012-08-28 12:52:22 -0400 | [diff] [blame] | 2300 | dentry = f.file->f_path.dentry; |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 2301 | |
Al Viro | edc2b1d | 2018-07-09 16:27:23 -0400 | [diff] [blame] | 2302 | if (*s && unlikely(!d_can_lookup(dentry))) { |
| 2303 | fdput(f); |
| 2304 | return ERR_PTR(-ENOTDIR); |
Al Viro | f52e0c1 | 2011-03-14 18:56:51 -0400 | [diff] [blame] | 2305 | } |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 2306 | |
Al Viro | 2903ff0 | 2012-08-28 12:52:22 -0400 | [diff] [blame] | 2307 | nd->path = f.file->f_path; |
Al Viro | e41f7d4 | 2011-02-22 14:02:58 -0500 | [diff] [blame] | 2308 | if (flags & LOOKUP_RCU) { |
Al Viro | 34a26b9 | 2015-05-11 08:05:05 -0400 | [diff] [blame] | 2309 | nd->inode = nd->path.dentry->d_inode; |
| 2310 | nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq); |
Al Viro | e41f7d4 | 2011-02-22 14:02:58 -0500 | [diff] [blame] | 2311 | } else { |
Al Viro | 2903ff0 | 2012-08-28 12:52:22 -0400 | [diff] [blame] | 2312 | path_get(&nd->path); |
Al Viro | 34a26b9 | 2015-05-11 08:05:05 -0400 | [diff] [blame] | 2313 | nd->inode = nd->path.dentry->d_inode; |
Al Viro | e41f7d4 | 2011-02-22 14:02:58 -0500 | [diff] [blame] | 2314 | } |
Al Viro | 34a26b9 | 2015-05-11 08:05:05 -0400 | [diff] [blame] | 2315 | fdput(f); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2316 | } |
Aleksa Sarai | 8db52c7 | 2019-12-07 01:13:34 +1100 | [diff] [blame] | 2317 | |
Aleksa Sarai | adb21d2 | 2019-12-07 01:13:33 +1100 | [diff] [blame] | 2318 | /* For scoped-lookups we need to set the root to the dirfd as well. */ |
| 2319 | if (flags & LOOKUP_IS_SCOPED) { |
| 2320 | nd->root = nd->path; |
| 2321 | if (flags & LOOKUP_RCU) { |
| 2322 | nd->root_seq = nd->seq; |
| 2323 | } else { |
| 2324 | path_get(&nd->root); |
| 2325 | nd->flags |= LOOKUP_ROOT_GRABBED; |
| 2326 | } |
| 2327 | } |
| 2328 | return s; |
Al Viro | 9b4a9b1 | 2009-04-07 11:44:16 -0400 | [diff] [blame] | 2329 | } |
| 2330 | |
Al Viro | 1ccac62 | 2020-01-14 10:13:40 -0500 | [diff] [blame] | 2331 | static inline const char *lookup_last(struct nameidata *nd) |
Al Viro | 95fa25d | 2015-04-22 13:46:57 -0400 | [diff] [blame] | 2332 | { |
Al Viro | 92d2701 | 2020-01-14 13:24:17 -0500 | [diff] [blame] | 2333 | const char *link; |
Al Viro | bd92d7f | 2011-03-14 19:54:59 -0400 | [diff] [blame] | 2334 | if (nd->last_type == LAST_NORM && nd->last.name[nd->last.len]) |
| 2335 | nd->flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY; |
| 2336 | |
| 2337 | nd->flags &= ~LOOKUP_PARENT; |
Al Viro | 92d2701 | 2020-01-14 13:24:17 -0500 | [diff] [blame] | 2338 | link = walk_component(nd, 0); |
| 2339 | if (link) { |
| 2340 | nd->flags |= LOOKUP_PARENT; |
| 2341 | nd->stack[0].name = NULL; |
Al Viro | 1ccac62 | 2020-01-14 10:13:40 -0500 | [diff] [blame] | 2342 | } |
Al Viro | 92d2701 | 2020-01-14 13:24:17 -0500 | [diff] [blame] | 2343 | return link; |
Al Viro | bd92d7f | 2011-03-14 19:54:59 -0400 | [diff] [blame] | 2344 | } |
| 2345 | |
Al Viro | 4f757f3 | 2017-04-15 17:31:22 -0400 | [diff] [blame] | 2346 | static int handle_lookup_down(struct nameidata *nd) |
| 2347 | { |
Al Viro | c153007 | 2020-01-09 14:50:18 -0500 | [diff] [blame] | 2348 | if (!(nd->flags & LOOKUP_RCU)) |
Al Viro | db3c9ad | 2020-01-09 14:41:00 -0500 | [diff] [blame] | 2349 | dget(nd->path.dentry); |
Al Viro | b0417d2 | 2020-01-14 13:34:20 -0500 | [diff] [blame] | 2350 | return PTR_ERR(step_into(nd, WALK_NOFOLLOW, |
| 2351 | nd->path.dentry, nd->inode, nd->seq)); |
Al Viro | 4f757f3 | 2017-04-15 17:31:22 -0400 | [diff] [blame] | 2352 | } |
| 2353 | |
Al Viro | 9b4a9b1 | 2009-04-07 11:44:16 -0400 | [diff] [blame] | 2354 | /* Returns 0 and nd will be valid on success; Retuns error, otherwise. */ |
Al Viro | c8a53ee | 2015-05-12 18:43:07 -0400 | [diff] [blame] | 2355 | static int path_lookupat(struct nameidata *nd, unsigned flags, struct path *path) |
Al Viro | 9b4a9b1 | 2009-04-07 11:44:16 -0400 | [diff] [blame] | 2356 | { |
Al Viro | c8a53ee | 2015-05-12 18:43:07 -0400 | [diff] [blame] | 2357 | const char *s = path_init(nd, flags); |
Al Viro | bd92d7f | 2011-03-14 19:54:59 -0400 | [diff] [blame] | 2358 | int err; |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 2359 | |
Al Viro | 9b5858e | 2018-07-09 16:33:23 -0400 | [diff] [blame] | 2360 | if (unlikely(flags & LOOKUP_DOWN) && !IS_ERR(s)) { |
Al Viro | 4f757f3 | 2017-04-15 17:31:22 -0400 | [diff] [blame] | 2361 | err = handle_lookup_down(nd); |
Al Viro | 5f336e7 | 2018-07-09 16:38:06 -0400 | [diff] [blame] | 2362 | if (unlikely(err < 0)) |
| 2363 | s = ERR_PTR(err); |
Al Viro | 4f757f3 | 2017-04-15 17:31:22 -0400 | [diff] [blame] | 2364 | } |
| 2365 | |
Al Viro | 1ccac62 | 2020-01-14 10:13:40 -0500 | [diff] [blame] | 2366 | while (!(err = link_path_walk(s, nd)) && |
| 2367 | (s = lookup_last(nd)) != NULL) |
| 2368 | ; |
Al Viro | 9f1fafe | 2011-03-25 11:00:12 -0400 | [diff] [blame] | 2369 | if (!err) |
| 2370 | err = complete_walk(nd); |
Al Viro | bd92d7f | 2011-03-14 19:54:59 -0400 | [diff] [blame] | 2371 | |
Al Viro | deb106c | 2015-05-08 18:05:21 -0400 | [diff] [blame] | 2372 | if (!err && nd->flags & LOOKUP_DIRECTORY) |
| 2373 | if (!d_can_lookup(nd->path.dentry)) |
Al Viro | bd23a53 | 2011-03-23 09:56:30 -0400 | [diff] [blame] | 2374 | err = -ENOTDIR; |
Al Viro | 161aff1 | 2020-01-11 22:52:26 -0500 | [diff] [blame] | 2375 | if (!err && unlikely(nd->flags & LOOKUP_MOUNTPOINT)) { |
| 2376 | err = handle_lookup_down(nd); |
| 2377 | nd->flags &= ~LOOKUP_JUMPED; // no d_weak_revalidate(), please... |
| 2378 | } |
Al Viro | 625b6d1 | 2015-05-12 16:36:12 -0400 | [diff] [blame] | 2379 | if (!err) { |
| 2380 | *path = nd->path; |
| 2381 | nd->path.mnt = NULL; |
| 2382 | nd->path.dentry = NULL; |
| 2383 | } |
| 2384 | terminate_walk(nd); |
Al Viro | bd92d7f | 2011-03-14 19:54:59 -0400 | [diff] [blame] | 2385 | return err; |
Al Viro | ee0827c | 2011-02-21 23:38:09 -0500 | [diff] [blame] | 2386 | } |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 2387 | |
David Howells | 31d921c | 2018-11-01 23:07:24 +0000 | [diff] [blame] | 2388 | int filename_lookup(int dfd, struct filename *name, unsigned flags, |
| 2389 | struct path *path, struct path *root) |
Jeff Layton | 873f1ee | 2012-10-10 15:25:29 -0400 | [diff] [blame] | 2390 | { |
Al Viro | 894bc8c | 2015-05-02 07:16:16 -0400 | [diff] [blame] | 2391 | int retval; |
Al Viro | 9883d18 | 2015-05-13 07:28:08 -0400 | [diff] [blame] | 2392 | struct nameidata nd; |
Al Viro | abc9f5b | 2015-05-12 16:53:42 -0400 | [diff] [blame] | 2393 | if (IS_ERR(name)) |
| 2394 | return PTR_ERR(name); |
Al Viro | 9ad1aaa | 2015-05-12 16:44:39 -0400 | [diff] [blame] | 2395 | if (unlikely(root)) { |
| 2396 | nd.root = *root; |
| 2397 | flags |= LOOKUP_ROOT; |
| 2398 | } |
Al Viro | 9883d18 | 2015-05-13 07:28:08 -0400 | [diff] [blame] | 2399 | set_nameidata(&nd, dfd, name); |
Al Viro | c8a53ee | 2015-05-12 18:43:07 -0400 | [diff] [blame] | 2400 | retval = path_lookupat(&nd, flags | LOOKUP_RCU, path); |
Jeff Layton | 873f1ee | 2012-10-10 15:25:29 -0400 | [diff] [blame] | 2401 | if (unlikely(retval == -ECHILD)) |
Al Viro | c8a53ee | 2015-05-12 18:43:07 -0400 | [diff] [blame] | 2402 | retval = path_lookupat(&nd, flags, path); |
Jeff Layton | 873f1ee | 2012-10-10 15:25:29 -0400 | [diff] [blame] | 2403 | if (unlikely(retval == -ESTALE)) |
Al Viro | c8a53ee | 2015-05-12 18:43:07 -0400 | [diff] [blame] | 2404 | retval = path_lookupat(&nd, flags | LOOKUP_REVAL, path); |
Jeff Layton | 873f1ee | 2012-10-10 15:25:29 -0400 | [diff] [blame] | 2405 | |
| 2406 | if (likely(!retval)) |
Al Viro | 161aff1 | 2020-01-11 22:52:26 -0500 | [diff] [blame] | 2407 | audit_inode(name, path->dentry, |
| 2408 | flags & LOOKUP_MOUNTPOINT ? AUDIT_INODE_NOEVAL : 0); |
Al Viro | 9883d18 | 2015-05-13 07:28:08 -0400 | [diff] [blame] | 2409 | restore_nameidata(); |
Al Viro | e4bd1c1 | 2015-05-12 16:40:39 -0400 | [diff] [blame] | 2410 | putname(name); |
Jeff Layton | 873f1ee | 2012-10-10 15:25:29 -0400 | [diff] [blame] | 2411 | return retval; |
| 2412 | } |
| 2413 | |
Al Viro | 8bcb77f | 2015-05-08 16:59:20 -0400 | [diff] [blame] | 2414 | /* Returns 0 and nd will be valid on success; Retuns error, otherwise. */ |
Al Viro | c8a53ee | 2015-05-12 18:43:07 -0400 | [diff] [blame] | 2415 | static int path_parentat(struct nameidata *nd, unsigned flags, |
Al Viro | 391172c | 2015-05-09 11:19:16 -0400 | [diff] [blame] | 2416 | struct path *parent) |
Al Viro | 8bcb77f | 2015-05-08 16:59:20 -0400 | [diff] [blame] | 2417 | { |
Al Viro | c8a53ee | 2015-05-12 18:43:07 -0400 | [diff] [blame] | 2418 | const char *s = path_init(nd, flags); |
Al Viro | 9b5858e | 2018-07-09 16:33:23 -0400 | [diff] [blame] | 2419 | int err = link_path_walk(s, nd); |
Al Viro | 8bcb77f | 2015-05-08 16:59:20 -0400 | [diff] [blame] | 2420 | if (!err) |
| 2421 | err = complete_walk(nd); |
Al Viro | 391172c | 2015-05-09 11:19:16 -0400 | [diff] [blame] | 2422 | if (!err) { |
| 2423 | *parent = nd->path; |
| 2424 | nd->path.mnt = NULL; |
| 2425 | nd->path.dentry = NULL; |
| 2426 | } |
| 2427 | terminate_walk(nd); |
Al Viro | 8bcb77f | 2015-05-08 16:59:20 -0400 | [diff] [blame] | 2428 | return err; |
| 2429 | } |
| 2430 | |
Al Viro | 5c31b6c | 2015-05-12 17:32:54 -0400 | [diff] [blame] | 2431 | static struct filename *filename_parentat(int dfd, struct filename *name, |
Al Viro | 391172c | 2015-05-09 11:19:16 -0400 | [diff] [blame] | 2432 | unsigned int flags, struct path *parent, |
| 2433 | struct qstr *last, int *type) |
Al Viro | 8bcb77f | 2015-05-08 16:59:20 -0400 | [diff] [blame] | 2434 | { |
| 2435 | int retval; |
Al Viro | 9883d18 | 2015-05-13 07:28:08 -0400 | [diff] [blame] | 2436 | struct nameidata nd; |
Al Viro | 8bcb77f | 2015-05-08 16:59:20 -0400 | [diff] [blame] | 2437 | |
Al Viro | 5c31b6c | 2015-05-12 17:32:54 -0400 | [diff] [blame] | 2438 | if (IS_ERR(name)) |
| 2439 | return name; |
Al Viro | 9883d18 | 2015-05-13 07:28:08 -0400 | [diff] [blame] | 2440 | set_nameidata(&nd, dfd, name); |
Al Viro | c8a53ee | 2015-05-12 18:43:07 -0400 | [diff] [blame] | 2441 | retval = path_parentat(&nd, flags | LOOKUP_RCU, parent); |
Al Viro | 8bcb77f | 2015-05-08 16:59:20 -0400 | [diff] [blame] | 2442 | if (unlikely(retval == -ECHILD)) |
Al Viro | c8a53ee | 2015-05-12 18:43:07 -0400 | [diff] [blame] | 2443 | retval = path_parentat(&nd, flags, parent); |
Al Viro | 8bcb77f | 2015-05-08 16:59:20 -0400 | [diff] [blame] | 2444 | if (unlikely(retval == -ESTALE)) |
Al Viro | c8a53ee | 2015-05-12 18:43:07 -0400 | [diff] [blame] | 2445 | retval = path_parentat(&nd, flags | LOOKUP_REVAL, parent); |
Al Viro | 391172c | 2015-05-09 11:19:16 -0400 | [diff] [blame] | 2446 | if (likely(!retval)) { |
| 2447 | *last = nd.last; |
| 2448 | *type = nd.last_type; |
Al Viro | c9b07ea | 2019-07-14 13:22:27 -0400 | [diff] [blame] | 2449 | audit_inode(name, parent->dentry, AUDIT_INODE_PARENT); |
Al Viro | 5c31b6c | 2015-05-12 17:32:54 -0400 | [diff] [blame] | 2450 | } else { |
| 2451 | putname(name); |
| 2452 | name = ERR_PTR(retval); |
Al Viro | 391172c | 2015-05-09 11:19:16 -0400 | [diff] [blame] | 2453 | } |
Al Viro | 9883d18 | 2015-05-13 07:28:08 -0400 | [diff] [blame] | 2454 | restore_nameidata(); |
Al Viro | 5c31b6c | 2015-05-12 17:32:54 -0400 | [diff] [blame] | 2455 | return name; |
Al Viro | 8bcb77f | 2015-05-08 16:59:20 -0400 | [diff] [blame] | 2456 | } |
| 2457 | |
Al Viro | 79714f7 | 2012-06-15 03:01:42 +0400 | [diff] [blame] | 2458 | /* does lookup, returns the object with parent locked */ |
| 2459 | struct dentry *kern_path_locked(const char *name, struct path *path) |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 2460 | { |
Al Viro | 5c31b6c | 2015-05-12 17:32:54 -0400 | [diff] [blame] | 2461 | struct filename *filename; |
| 2462 | struct dentry *d; |
Al Viro | 391172c | 2015-05-09 11:19:16 -0400 | [diff] [blame] | 2463 | struct qstr last; |
| 2464 | int type; |
Paul Moore | 5168910 | 2015-01-22 00:00:03 -0500 | [diff] [blame] | 2465 | |
Al Viro | 5c31b6c | 2015-05-12 17:32:54 -0400 | [diff] [blame] | 2466 | filename = filename_parentat(AT_FDCWD, getname_kernel(name), 0, path, |
| 2467 | &last, &type); |
Paul Moore | 5168910 | 2015-01-22 00:00:03 -0500 | [diff] [blame] | 2468 | if (IS_ERR(filename)) |
| 2469 | return ERR_CAST(filename); |
Al Viro | 5c31b6c | 2015-05-12 17:32:54 -0400 | [diff] [blame] | 2470 | if (unlikely(type != LAST_NORM)) { |
Al Viro | 391172c | 2015-05-09 11:19:16 -0400 | [diff] [blame] | 2471 | path_put(path); |
Al Viro | 5c31b6c | 2015-05-12 17:32:54 -0400 | [diff] [blame] | 2472 | putname(filename); |
| 2473 | return ERR_PTR(-EINVAL); |
Al Viro | 79714f7 | 2012-06-15 03:01:42 +0400 | [diff] [blame] | 2474 | } |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 2475 | inode_lock_nested(path->dentry->d_inode, I_MUTEX_PARENT); |
Al Viro | 391172c | 2015-05-09 11:19:16 -0400 | [diff] [blame] | 2476 | d = __lookup_hash(&last, path->dentry, 0); |
Al Viro | 79714f7 | 2012-06-15 03:01:42 +0400 | [diff] [blame] | 2477 | if (IS_ERR(d)) { |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 2478 | inode_unlock(path->dentry->d_inode); |
Al Viro | 391172c | 2015-05-09 11:19:16 -0400 | [diff] [blame] | 2479 | path_put(path); |
Al Viro | 79714f7 | 2012-06-15 03:01:42 +0400 | [diff] [blame] | 2480 | } |
Paul Moore | 5168910 | 2015-01-22 00:00:03 -0500 | [diff] [blame] | 2481 | putname(filename); |
Al Viro | 79714f7 | 2012-06-15 03:01:42 +0400 | [diff] [blame] | 2482 | return d; |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 2483 | } |
| 2484 | |
Al Viro | d181146 | 2008-08-02 00:49:18 -0400 | [diff] [blame] | 2485 | int kern_path(const char *name, unsigned int flags, struct path *path) |
| 2486 | { |
Al Viro | abc9f5b | 2015-05-12 16:53:42 -0400 | [diff] [blame] | 2487 | return filename_lookup(AT_FDCWD, getname_kernel(name), |
| 2488 | flags, path, NULL); |
Al Viro | d181146 | 2008-08-02 00:49:18 -0400 | [diff] [blame] | 2489 | } |
Al Viro | 4d35950 | 2014-03-14 12:20:17 -0400 | [diff] [blame] | 2490 | EXPORT_SYMBOL(kern_path); |
Al Viro | d181146 | 2008-08-02 00:49:18 -0400 | [diff] [blame] | 2491 | |
Josef 'Jeff' Sipek | 16f1820 | 2007-07-19 01:48:18 -0700 | [diff] [blame] | 2492 | /** |
| 2493 | * vfs_path_lookup - lookup a file path relative to a dentry-vfsmount pair |
| 2494 | * @dentry: pointer to dentry of the base directory |
| 2495 | * @mnt: pointer to vfs mount of the base directory |
| 2496 | * @name: pointer to file name |
| 2497 | * @flags: lookup flags |
Al Viro | e0a0124 | 2011-06-27 17:00:37 -0400 | [diff] [blame] | 2498 | * @path: pointer to struct path to fill |
Josef 'Jeff' Sipek | 16f1820 | 2007-07-19 01:48:18 -0700 | [diff] [blame] | 2499 | */ |
| 2500 | int vfs_path_lookup(struct dentry *dentry, struct vfsmount *mnt, |
| 2501 | const char *name, unsigned int flags, |
Al Viro | e0a0124 | 2011-06-27 17:00:37 -0400 | [diff] [blame] | 2502 | struct path *path) |
Josef 'Jeff' Sipek | 16f1820 | 2007-07-19 01:48:18 -0700 | [diff] [blame] | 2503 | { |
Al Viro | 9ad1aaa | 2015-05-12 16:44:39 -0400 | [diff] [blame] | 2504 | struct path root = {.mnt = mnt, .dentry = dentry}; |
Al Viro | 9ad1aaa | 2015-05-12 16:44:39 -0400 | [diff] [blame] | 2505 | /* the first argument of filename_lookup() is ignored with root */ |
Al Viro | abc9f5b | 2015-05-12 16:53:42 -0400 | [diff] [blame] | 2506 | return filename_lookup(AT_FDCWD, getname_kernel(name), |
| 2507 | flags , path, &root); |
Josef 'Jeff' Sipek | 16f1820 | 2007-07-19 01:48:18 -0700 | [diff] [blame] | 2508 | } |
Al Viro | 4d35950 | 2014-03-14 12:20:17 -0400 | [diff] [blame] | 2509 | EXPORT_SYMBOL(vfs_path_lookup); |
Josef 'Jeff' Sipek | 16f1820 | 2007-07-19 01:48:18 -0700 | [diff] [blame] | 2510 | |
Al Viro | 3c95f0d | 2018-04-06 16:32:38 -0400 | [diff] [blame] | 2511 | static int lookup_one_len_common(const char *name, struct dentry *base, |
| 2512 | int len, struct qstr *this) |
| 2513 | { |
| 2514 | this->name = name; |
| 2515 | this->len = len; |
| 2516 | this->hash = full_name_hash(base, name, len); |
| 2517 | if (!len) |
| 2518 | return -EACCES; |
| 2519 | |
| 2520 | if (unlikely(name[0] == '.')) { |
| 2521 | if (len < 2 || (len == 2 && name[1] == '.')) |
| 2522 | return -EACCES; |
| 2523 | } |
| 2524 | |
| 2525 | while (len--) { |
| 2526 | unsigned int c = *(const unsigned char *)name++; |
| 2527 | if (c == '/' || c == '\0') |
| 2528 | return -EACCES; |
| 2529 | } |
| 2530 | /* |
| 2531 | * See if the low-level filesystem might want |
| 2532 | * to use its own hash.. |
| 2533 | */ |
| 2534 | if (base->d_flags & DCACHE_OP_HASH) { |
| 2535 | int err = base->d_op->d_hash(base, this); |
| 2536 | if (err < 0) |
| 2537 | return err; |
| 2538 | } |
| 2539 | |
| 2540 | return inode_permission(base->d_inode, MAY_EXEC); |
| 2541 | } |
| 2542 | |
Christoph Hellwig | eead191 | 2007-10-16 23:25:38 -0700 | [diff] [blame] | 2543 | /** |
David Howells | 0da0b7f | 2018-06-15 15:19:22 +0100 | [diff] [blame] | 2544 | * try_lookup_one_len - filesystem helper to lookup single pathname component |
| 2545 | * @name: pathname component to lookup |
| 2546 | * @base: base directory to lookup from |
| 2547 | * @len: maximum length @len should be interpreted to |
| 2548 | * |
| 2549 | * Look up a dentry by name in the dcache, returning NULL if it does not |
| 2550 | * currently exist. The function does not try to create a dentry. |
| 2551 | * |
| 2552 | * Note that this routine is purely a helper for filesystem usage and should |
| 2553 | * not be called by generic code. |
| 2554 | * |
| 2555 | * The caller must hold base->i_mutex. |
| 2556 | */ |
| 2557 | struct dentry *try_lookup_one_len(const char *name, struct dentry *base, int len) |
| 2558 | { |
| 2559 | struct qstr this; |
| 2560 | int err; |
| 2561 | |
| 2562 | WARN_ON_ONCE(!inode_is_locked(base->d_inode)); |
| 2563 | |
| 2564 | err = lookup_one_len_common(name, base, len, &this); |
| 2565 | if (err) |
| 2566 | return ERR_PTR(err); |
| 2567 | |
| 2568 | return lookup_dcache(&this, base, 0); |
| 2569 | } |
| 2570 | EXPORT_SYMBOL(try_lookup_one_len); |
| 2571 | |
| 2572 | /** |
Randy Dunlap | a6b9191 | 2008-03-19 17:01:00 -0700 | [diff] [blame] | 2573 | * lookup_one_len - filesystem helper to lookup single pathname component |
Christoph Hellwig | eead191 | 2007-10-16 23:25:38 -0700 | [diff] [blame] | 2574 | * @name: pathname component to lookup |
| 2575 | * @base: base directory to lookup from |
| 2576 | * @len: maximum length @len should be interpreted to |
| 2577 | * |
Randy Dunlap | a6b9191 | 2008-03-19 17:01:00 -0700 | [diff] [blame] | 2578 | * 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] | 2579 | * not be called by generic code. |
NeilBrown | bbddca8 | 2016-01-07 16:08:20 -0500 | [diff] [blame] | 2580 | * |
| 2581 | * The caller must hold base->i_mutex. |
Christoph Hellwig | eead191 | 2007-10-16 23:25:38 -0700 | [diff] [blame] | 2582 | */ |
James Morris | 057f6c0 | 2007-04-26 00:12:05 -0700 | [diff] [blame] | 2583 | struct dentry *lookup_one_len(const char *name, struct dentry *base, int len) |
| 2584 | { |
Al Viro | 8613a20 | 2018-04-06 16:45:33 -0400 | [diff] [blame] | 2585 | struct dentry *dentry; |
James Morris | 057f6c0 | 2007-04-26 00:12:05 -0700 | [diff] [blame] | 2586 | struct qstr this; |
Miklos Szeredi | cda309d | 2012-03-26 12:54:21 +0200 | [diff] [blame] | 2587 | int err; |
James Morris | 057f6c0 | 2007-04-26 00:12:05 -0700 | [diff] [blame] | 2588 | |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 2589 | WARN_ON_ONCE(!inode_is_locked(base->d_inode)); |
David Woodhouse | 2f9092e | 2009-04-20 23:18:37 +0100 | [diff] [blame] | 2590 | |
Al Viro | 3c95f0d | 2018-04-06 16:32:38 -0400 | [diff] [blame] | 2591 | err = lookup_one_len_common(name, base, len, &this); |
Miklos Szeredi | cda309d | 2012-03-26 12:54:21 +0200 | [diff] [blame] | 2592 | if (err) |
| 2593 | return ERR_PTR(err); |
| 2594 | |
Al Viro | 8613a20 | 2018-04-06 16:45:33 -0400 | [diff] [blame] | 2595 | dentry = lookup_dcache(&this, base, 0); |
| 2596 | return dentry ? dentry : __lookup_slow(&this, base, 0); |
James Morris | 057f6c0 | 2007-04-26 00:12:05 -0700 | [diff] [blame] | 2597 | } |
Al Viro | 4d35950 | 2014-03-14 12:20:17 -0400 | [diff] [blame] | 2598 | EXPORT_SYMBOL(lookup_one_len); |
James Morris | 057f6c0 | 2007-04-26 00:12:05 -0700 | [diff] [blame] | 2599 | |
NeilBrown | bbddca8 | 2016-01-07 16:08:20 -0500 | [diff] [blame] | 2600 | /** |
| 2601 | * lookup_one_len_unlocked - filesystem helper to lookup single pathname component |
| 2602 | * @name: pathname component to lookup |
| 2603 | * @base: base directory to lookup from |
| 2604 | * @len: maximum length @len should be interpreted to |
| 2605 | * |
| 2606 | * Note that this routine is purely a helper for filesystem usage and should |
| 2607 | * not be called by generic code. |
| 2608 | * |
| 2609 | * Unlike lookup_one_len, it should be called without the parent |
| 2610 | * i_mutex held, and will take the i_mutex itself if necessary. |
| 2611 | */ |
| 2612 | struct dentry *lookup_one_len_unlocked(const char *name, |
| 2613 | struct dentry *base, int len) |
| 2614 | { |
| 2615 | struct qstr this; |
NeilBrown | bbddca8 | 2016-01-07 16:08:20 -0500 | [diff] [blame] | 2616 | int err; |
Linus Torvalds | 20d00ee | 2016-07-29 12:17:52 -0700 | [diff] [blame] | 2617 | struct dentry *ret; |
NeilBrown | bbddca8 | 2016-01-07 16:08:20 -0500 | [diff] [blame] | 2618 | |
Al Viro | 3c95f0d | 2018-04-06 16:32:38 -0400 | [diff] [blame] | 2619 | err = lookup_one_len_common(name, base, len, &this); |
NeilBrown | bbddca8 | 2016-01-07 16:08:20 -0500 | [diff] [blame] | 2620 | if (err) |
| 2621 | return ERR_PTR(err); |
| 2622 | |
Linus Torvalds | 20d00ee | 2016-07-29 12:17:52 -0700 | [diff] [blame] | 2623 | ret = lookup_dcache(&this, base, 0); |
| 2624 | if (!ret) |
| 2625 | ret = lookup_slow(&this, base, 0); |
| 2626 | return ret; |
NeilBrown | bbddca8 | 2016-01-07 16:08:20 -0500 | [diff] [blame] | 2627 | } |
| 2628 | EXPORT_SYMBOL(lookup_one_len_unlocked); |
| 2629 | |
Al Viro | 6c2d4798 | 2019-10-31 01:21:58 -0400 | [diff] [blame] | 2630 | /* |
| 2631 | * Like lookup_one_len_unlocked(), except that it yields ERR_PTR(-ENOENT) |
| 2632 | * on negatives. Returns known positive or ERR_PTR(); that's what |
| 2633 | * most of the users want. Note that pinned negative with unlocked parent |
| 2634 | * _can_ become positive at any time, so callers of lookup_one_len_unlocked() |
| 2635 | * need to be very careful; pinned positives have ->d_inode stable, so |
| 2636 | * this one avoids such problems. |
| 2637 | */ |
| 2638 | struct dentry *lookup_positive_unlocked(const char *name, |
| 2639 | struct dentry *base, int len) |
| 2640 | { |
| 2641 | struct dentry *ret = lookup_one_len_unlocked(name, base, len); |
Al Viro | 2fa6b1e | 2019-11-12 16:13:06 -0500 | [diff] [blame] | 2642 | 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] | 2643 | dput(ret); |
| 2644 | ret = ERR_PTR(-ENOENT); |
| 2645 | } |
| 2646 | return ret; |
| 2647 | } |
| 2648 | EXPORT_SYMBOL(lookup_positive_unlocked); |
| 2649 | |
Eric W. Biederman | eedf265 | 2016-06-02 10:29:47 -0500 | [diff] [blame] | 2650 | #ifdef CONFIG_UNIX98_PTYS |
| 2651 | int path_pts(struct path *path) |
| 2652 | { |
| 2653 | /* Find something mounted on "pts" in the same directory as |
| 2654 | * the input path. |
| 2655 | */ |
| 2656 | struct dentry *child, *parent; |
| 2657 | struct qstr this; |
| 2658 | int ret; |
| 2659 | |
| 2660 | ret = path_parent_directory(path); |
| 2661 | if (ret) |
| 2662 | return ret; |
| 2663 | |
| 2664 | parent = path->dentry; |
| 2665 | this.name = "pts"; |
| 2666 | this.len = 3; |
| 2667 | child = d_hash_and_lookup(parent, &this); |
| 2668 | if (!child) |
| 2669 | return -ENOENT; |
| 2670 | |
| 2671 | path->dentry = child; |
| 2672 | dput(parent); |
| 2673 | follow_mount(path); |
| 2674 | return 0; |
| 2675 | } |
| 2676 | #endif |
| 2677 | |
Andy Whitcroft | 1fa1e7f | 2011-11-02 09:44:39 +0100 | [diff] [blame] | 2678 | int user_path_at_empty(int dfd, const char __user *name, unsigned flags, |
| 2679 | struct path *path, int *empty) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2680 | { |
Al Viro | abc9f5b | 2015-05-12 16:53:42 -0400 | [diff] [blame] | 2681 | return filename_lookup(dfd, getname_flags(name, flags, empty), |
| 2682 | flags, path, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2683 | } |
Al Viro | b853a16 | 2015-05-13 09:12:02 -0400 | [diff] [blame] | 2684 | EXPORT_SYMBOL(user_path_at_empty); |
Andy Whitcroft | 1fa1e7f | 2011-11-02 09:44:39 +0100 | [diff] [blame] | 2685 | |
Miklos Szeredi | cbdf35b | 2014-10-24 00:14:36 +0200 | [diff] [blame] | 2686 | int __check_sticky(struct inode *dir, struct inode *inode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2687 | { |
Eric W. Biederman | 8e96e3b | 2012-03-03 21:17:15 -0800 | [diff] [blame] | 2688 | kuid_t fsuid = current_fsuid(); |
David Howells | da9592e | 2008-11-14 10:39:05 +1100 | [diff] [blame] | 2689 | |
Eric W. Biederman | 8e96e3b | 2012-03-03 21:17:15 -0800 | [diff] [blame] | 2690 | if (uid_eq(inode->i_uid, fsuid)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2691 | return 0; |
Eric W. Biederman | 8e96e3b | 2012-03-03 21:17:15 -0800 | [diff] [blame] | 2692 | if (uid_eq(dir->i_uid, fsuid)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2693 | return 0; |
Andy Lutomirski | 23adbe1 | 2014-06-10 12:45:42 -0700 | [diff] [blame] | 2694 | return !capable_wrt_inode_uidgid(inode, CAP_FOWNER); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2695 | } |
Miklos Szeredi | cbdf35b | 2014-10-24 00:14:36 +0200 | [diff] [blame] | 2696 | EXPORT_SYMBOL(__check_sticky); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2697 | |
| 2698 | /* |
| 2699 | * Check whether we can remove a link victim from directory dir, check |
| 2700 | * whether the type of victim is right. |
| 2701 | * 1. We can't do it if dir is read-only (done in permission()) |
| 2702 | * 2. We should have write and exec permissions on dir |
| 2703 | * 3. We can't remove anything from append-only dir |
| 2704 | * 4. We can't do anything with immutable dir (done in permission()) |
| 2705 | * 5. If the sticky bit on dir is set we should either |
| 2706 | * a. be owner of dir, or |
| 2707 | * b. be owner of victim, or |
| 2708 | * c. have CAP_FOWNER capability |
| 2709 | * 6. If the victim is append-only or immutable we can't do antyhing with |
| 2710 | * links pointing to it. |
Eric W. Biederman | 0bd23d09 | 2016-06-29 14:54:46 -0500 | [diff] [blame] | 2711 | * 7. If the victim has an unknown uid or gid we can't change the inode. |
| 2712 | * 8. If we were asked to remove a directory and victim isn't one - ENOTDIR. |
| 2713 | * 9. If we were asked to remove a non-directory and victim isn't one - EISDIR. |
| 2714 | * 10. We can't remove a root or mountpoint. |
| 2715 | * 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] | 2716 | * nfs_async_unlink(). |
| 2717 | */ |
David Howells | b18825a | 2013-09-12 19:22:53 +0100 | [diff] [blame] | 2718 | static int may_delete(struct inode *dir, struct dentry *victim, bool isdir) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2719 | { |
David Howells | 63afdfc | 2015-05-06 15:59:00 +0100 | [diff] [blame] | 2720 | struct inode *inode = d_backing_inode(victim); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2721 | int error; |
| 2722 | |
David Howells | b18825a | 2013-09-12 19:22:53 +0100 | [diff] [blame] | 2723 | if (d_is_negative(victim)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2724 | return -ENOENT; |
David Howells | b18825a | 2013-09-12 19:22:53 +0100 | [diff] [blame] | 2725 | BUG_ON(!inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2726 | |
| 2727 | BUG_ON(victim->d_parent->d_inode != dir); |
Eric W. Biederman | 593d1ce | 2017-09-14 12:07:32 -0500 | [diff] [blame] | 2728 | |
| 2729 | /* Inode writeback is not safe when the uid or gid are invalid. */ |
| 2730 | if (!uid_valid(inode->i_uid) || !gid_valid(inode->i_gid)) |
| 2731 | return -EOVERFLOW; |
| 2732 | |
Jeff Layton | 4fa6b5e | 2012-10-10 15:25:25 -0400 | [diff] [blame] | 2733 | audit_inode_child(dir, victim, AUDIT_TYPE_CHILD_DELETE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2734 | |
Al Viro | f419a2e | 2008-07-22 00:07:17 -0400 | [diff] [blame] | 2735 | error = inode_permission(dir, MAY_WRITE | MAY_EXEC); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2736 | if (error) |
| 2737 | return error; |
| 2738 | if (IS_APPEND(dir)) |
| 2739 | return -EPERM; |
David Howells | b18825a | 2013-09-12 19:22:53 +0100 | [diff] [blame] | 2740 | |
| 2741 | if (check_sticky(dir, inode) || IS_APPEND(inode) || |
Eric W. Biederman | 0bd23d09 | 2016-06-29 14:54:46 -0500 | [diff] [blame] | 2742 | IS_IMMUTABLE(inode) || IS_SWAPFILE(inode) || HAS_UNMAPPED_ID(inode)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2743 | return -EPERM; |
| 2744 | if (isdir) { |
Miklos Szeredi | 44b1d53 | 2014-04-01 17:08:41 +0200 | [diff] [blame] | 2745 | if (!d_is_dir(victim)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2746 | return -ENOTDIR; |
| 2747 | if (IS_ROOT(victim)) |
| 2748 | return -EBUSY; |
Miklos Szeredi | 44b1d53 | 2014-04-01 17:08:41 +0200 | [diff] [blame] | 2749 | } else if (d_is_dir(victim)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2750 | return -EISDIR; |
| 2751 | if (IS_DEADDIR(dir)) |
| 2752 | return -ENOENT; |
| 2753 | if (victim->d_flags & DCACHE_NFSFS_RENAMED) |
| 2754 | return -EBUSY; |
| 2755 | return 0; |
| 2756 | } |
| 2757 | |
| 2758 | /* Check whether we can create an object with dentry child in directory |
| 2759 | * dir. |
| 2760 | * 1. We can't do it if child already exists (open has special treatment for |
| 2761 | * this case, but since we are inlined it's OK) |
| 2762 | * 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] | 2763 | * 3. We can't do it if the fs can't represent the fsuid or fsgid. |
| 2764 | * 4. We should have write and exec permissions on dir |
| 2765 | * 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] | 2766 | */ |
Miklos Szeredi | a95164d | 2008-07-30 15:08:48 +0200 | [diff] [blame] | 2767 | static inline int may_create(struct inode *dir, struct dentry *child) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2768 | { |
Eric W. Biederman | 036d523 | 2016-07-01 12:52:06 -0500 | [diff] [blame] | 2769 | struct user_namespace *s_user_ns; |
Jeff Layton | 14e972b | 2013-05-08 10:25:58 -0400 | [diff] [blame] | 2770 | audit_inode_child(dir, child, AUDIT_TYPE_CHILD_CREATE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2771 | if (child->d_inode) |
| 2772 | return -EEXIST; |
| 2773 | if (IS_DEADDIR(dir)) |
| 2774 | return -ENOENT; |
Eric W. Biederman | 036d523 | 2016-07-01 12:52:06 -0500 | [diff] [blame] | 2775 | s_user_ns = dir->i_sb->s_user_ns; |
| 2776 | if (!kuid_has_mapping(s_user_ns, current_fsuid()) || |
| 2777 | !kgid_has_mapping(s_user_ns, current_fsgid())) |
| 2778 | return -EOVERFLOW; |
Al Viro | f419a2e | 2008-07-22 00:07:17 -0400 | [diff] [blame] | 2779 | return inode_permission(dir, MAY_WRITE | MAY_EXEC); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2780 | } |
| 2781 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2782 | /* |
| 2783 | * p1 and p2 should be directories on the same fs. |
| 2784 | */ |
| 2785 | struct dentry *lock_rename(struct dentry *p1, struct dentry *p2) |
| 2786 | { |
| 2787 | struct dentry *p; |
| 2788 | |
| 2789 | if (p1 == p2) { |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 2790 | inode_lock_nested(p1->d_inode, I_MUTEX_PARENT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2791 | return NULL; |
| 2792 | } |
| 2793 | |
Al Viro | fc64005 | 2016-04-10 01:33:30 -0400 | [diff] [blame] | 2794 | mutex_lock(&p1->d_sb->s_vfs_rename_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2795 | |
OGAWA Hirofumi | e2761a1 | 2008-10-16 07:50:28 +0900 | [diff] [blame] | 2796 | p = d_ancestor(p2, p1); |
| 2797 | if (p) { |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 2798 | inode_lock_nested(p2->d_inode, I_MUTEX_PARENT); |
| 2799 | inode_lock_nested(p1->d_inode, I_MUTEX_CHILD); |
OGAWA Hirofumi | e2761a1 | 2008-10-16 07:50:28 +0900 | [diff] [blame] | 2800 | return p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2801 | } |
| 2802 | |
OGAWA Hirofumi | e2761a1 | 2008-10-16 07:50:28 +0900 | [diff] [blame] | 2803 | p = d_ancestor(p1, p2); |
| 2804 | if (p) { |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 2805 | inode_lock_nested(p1->d_inode, I_MUTEX_PARENT); |
| 2806 | inode_lock_nested(p2->d_inode, I_MUTEX_CHILD); |
OGAWA Hirofumi | e2761a1 | 2008-10-16 07:50:28 +0900 | [diff] [blame] | 2807 | return p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2808 | } |
| 2809 | |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 2810 | inode_lock_nested(p1->d_inode, I_MUTEX_PARENT); |
| 2811 | inode_lock_nested(p2->d_inode, I_MUTEX_PARENT2); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2812 | return NULL; |
| 2813 | } |
Al Viro | 4d35950 | 2014-03-14 12:20:17 -0400 | [diff] [blame] | 2814 | EXPORT_SYMBOL(lock_rename); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2815 | |
| 2816 | void unlock_rename(struct dentry *p1, struct dentry *p2) |
| 2817 | { |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 2818 | inode_unlock(p1->d_inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2819 | if (p1 != p2) { |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 2820 | inode_unlock(p2->d_inode); |
Al Viro | fc64005 | 2016-04-10 01:33:30 -0400 | [diff] [blame] | 2821 | mutex_unlock(&p1->d_sb->s_vfs_rename_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2822 | } |
| 2823 | } |
Al Viro | 4d35950 | 2014-03-14 12:20:17 -0400 | [diff] [blame] | 2824 | EXPORT_SYMBOL(unlock_rename); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2825 | |
Al Viro | 4acdaf2 | 2011-07-26 01:42:34 -0400 | [diff] [blame] | 2826 | int vfs_create(struct inode *dir, struct dentry *dentry, umode_t mode, |
Al Viro | 312b63f | 2012-06-10 18:09:36 -0400 | [diff] [blame] | 2827 | bool want_excl) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2828 | { |
Miklos Szeredi | a95164d | 2008-07-30 15:08:48 +0200 | [diff] [blame] | 2829 | int error = may_create(dir, dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2830 | if (error) |
| 2831 | return error; |
| 2832 | |
Al Viro | acfa438 | 2008-12-04 10:06:33 -0500 | [diff] [blame] | 2833 | if (!dir->i_op->create) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2834 | return -EACCES; /* shouldn't it be ENOSYS? */ |
| 2835 | mode &= S_IALLUGO; |
| 2836 | mode |= S_IFREG; |
| 2837 | error = security_inode_create(dir, dentry, mode); |
| 2838 | if (error) |
| 2839 | return error; |
Al Viro | 312b63f | 2012-06-10 18:09:36 -0400 | [diff] [blame] | 2840 | error = dir->i_op->create(dir, dentry, mode, want_excl); |
Stephen Smalley | a74574a | 2005-09-09 13:01:44 -0700 | [diff] [blame] | 2841 | if (!error) |
Amy Griffis | f38aa94 | 2005-11-03 15:57:06 +0000 | [diff] [blame] | 2842 | fsnotify_create(dir, dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2843 | return error; |
| 2844 | } |
Al Viro | 4d35950 | 2014-03-14 12:20:17 -0400 | [diff] [blame] | 2845 | EXPORT_SYMBOL(vfs_create); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2846 | |
Al Viro | 8e6c848 | 2017-12-01 17:12:45 -0500 | [diff] [blame] | 2847 | int vfs_mkobj(struct dentry *dentry, umode_t mode, |
| 2848 | int (*f)(struct dentry *, umode_t, void *), |
| 2849 | void *arg) |
| 2850 | { |
| 2851 | struct inode *dir = dentry->d_parent->d_inode; |
| 2852 | int error = may_create(dir, dentry); |
| 2853 | if (error) |
| 2854 | return error; |
| 2855 | |
| 2856 | mode &= S_IALLUGO; |
| 2857 | mode |= S_IFREG; |
| 2858 | error = security_inode_create(dir, dentry, mode); |
| 2859 | if (error) |
| 2860 | return error; |
| 2861 | error = f(dentry, mode, arg); |
| 2862 | if (!error) |
| 2863 | fsnotify_create(dir, dentry); |
| 2864 | return error; |
| 2865 | } |
| 2866 | EXPORT_SYMBOL(vfs_mkobj); |
| 2867 | |
Eric W. Biederman | a2982cc | 2016-06-09 15:34:02 -0500 | [diff] [blame] | 2868 | bool may_open_dev(const struct path *path) |
| 2869 | { |
| 2870 | return !(path->mnt->mnt_flags & MNT_NODEV) && |
| 2871 | !(path->mnt->mnt_sb->s_iflags & SB_I_NODEV); |
| 2872 | } |
| 2873 | |
Al Viro | f0bb5aa | 2016-11-20 20:27:12 -0500 | [diff] [blame] | 2874 | 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] | 2875 | { |
Christoph Hellwig | 3fb6419 | 2008-10-24 09:58:10 +0200 | [diff] [blame] | 2876 | struct dentry *dentry = path->dentry; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2877 | struct inode *inode = dentry->d_inode; |
| 2878 | int error; |
| 2879 | |
| 2880 | if (!inode) |
| 2881 | return -ENOENT; |
| 2882 | |
Christoph Hellwig | c8fe8f3 | 2009-01-05 19:27:23 +0100 | [diff] [blame] | 2883 | switch (inode->i_mode & S_IFMT) { |
| 2884 | case S_IFLNK: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2885 | return -ELOOP; |
Christoph Hellwig | c8fe8f3 | 2009-01-05 19:27:23 +0100 | [diff] [blame] | 2886 | case S_IFDIR: |
| 2887 | if (acc_mode & MAY_WRITE) |
| 2888 | return -EISDIR; |
| 2889 | break; |
| 2890 | case S_IFBLK: |
| 2891 | case S_IFCHR: |
Eric W. Biederman | a2982cc | 2016-06-09 15:34:02 -0500 | [diff] [blame] | 2892 | if (!may_open_dev(path)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2893 | return -EACCES; |
Christoph Hellwig | c8fe8f3 | 2009-01-05 19:27:23 +0100 | [diff] [blame] | 2894 | /*FALLTHRU*/ |
| 2895 | case S_IFIFO: |
| 2896 | case S_IFSOCK: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2897 | flag &= ~O_TRUNC; |
Christoph Hellwig | c8fe8f3 | 2009-01-05 19:27:23 +0100 | [diff] [blame] | 2898 | break; |
Dave Hansen | 4a3fd21 | 2008-02-15 14:37:48 -0800 | [diff] [blame] | 2899 | } |
Dave Hansen | b41572e | 2007-10-16 23:31:14 -0700 | [diff] [blame] | 2900 | |
Al Viro | 62fb4a1 | 2015-12-26 22:33:24 -0500 | [diff] [blame] | 2901 | error = inode_permission(inode, MAY_OPEN | acc_mode); |
Dave Hansen | b41572e | 2007-10-16 23:31:14 -0700 | [diff] [blame] | 2902 | if (error) |
| 2903 | return error; |
Mimi Zohar | 6146f0d | 2009-02-04 09:06:57 -0500 | [diff] [blame] | 2904 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2905 | /* |
| 2906 | * An append-only file must be opened in append mode for writing. |
| 2907 | */ |
| 2908 | if (IS_APPEND(inode)) { |
Al Viro | 8737c93 | 2009-12-24 06:47:55 -0500 | [diff] [blame] | 2909 | if ((flag & O_ACCMODE) != O_RDONLY && !(flag & O_APPEND)) |
Al Viro | 7715b52 | 2009-12-16 03:54:00 -0500 | [diff] [blame] | 2910 | return -EPERM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2911 | if (flag & O_TRUNC) |
Al Viro | 7715b52 | 2009-12-16 03:54:00 -0500 | [diff] [blame] | 2912 | return -EPERM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2913 | } |
| 2914 | |
| 2915 | /* O_NOATIME can only be set by the owner or superuser */ |
Serge E. Hallyn | 2e14967 | 2011-03-23 16:43:26 -0700 | [diff] [blame] | 2916 | if (flag & O_NOATIME && !inode_owner_or_capable(inode)) |
Al Viro | 7715b52 | 2009-12-16 03:54:00 -0500 | [diff] [blame] | 2917 | return -EPERM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2918 | |
J. Bruce Fields | f3c7691e | 2011-09-21 10:58:13 -0400 | [diff] [blame] | 2919 | return 0; |
Al Viro | 7715b52 | 2009-12-16 03:54:00 -0500 | [diff] [blame] | 2920 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2921 | |
Jeff Layton | e1181ee | 2010-12-07 16:19:50 -0500 | [diff] [blame] | 2922 | static int handle_truncate(struct file *filp) |
Al Viro | 7715b52 | 2009-12-16 03:54:00 -0500 | [diff] [blame] | 2923 | { |
Al Viro | f0bb5aa | 2016-11-20 20:27:12 -0500 | [diff] [blame] | 2924 | const struct path *path = &filp->f_path; |
Al Viro | 7715b52 | 2009-12-16 03:54:00 -0500 | [diff] [blame] | 2925 | struct inode *inode = path->dentry->d_inode; |
| 2926 | int error = get_write_access(inode); |
| 2927 | if (error) |
| 2928 | return error; |
| 2929 | /* |
| 2930 | * Refuse to truncate files with mandatory locks held on them. |
| 2931 | */ |
Jeff Layton | d7a0698 | 2014-03-10 09:54:15 -0400 | [diff] [blame] | 2932 | error = locks_verify_locked(filp); |
Al Viro | 7715b52 | 2009-12-16 03:54:00 -0500 | [diff] [blame] | 2933 | if (!error) |
Tetsuo Handa | ea0d3ab | 2010-06-02 13:24:43 +0900 | [diff] [blame] | 2934 | error = security_path_truncate(path); |
Al Viro | 7715b52 | 2009-12-16 03:54:00 -0500 | [diff] [blame] | 2935 | if (!error) { |
| 2936 | error = do_truncate(path->dentry, 0, |
| 2937 | ATTR_MTIME|ATTR_CTIME|ATTR_OPEN, |
Jeff Layton | e1181ee | 2010-12-07 16:19:50 -0500 | [diff] [blame] | 2938 | filp); |
Al Viro | 7715b52 | 2009-12-16 03:54:00 -0500 | [diff] [blame] | 2939 | } |
| 2940 | put_write_access(inode); |
Mimi Zohar | acd0c93 | 2009-09-04 13:08:46 -0400 | [diff] [blame] | 2941 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2942 | } |
| 2943 | |
Dave Hansen | d57999e | 2008-02-15 14:37:27 -0800 | [diff] [blame] | 2944 | static inline int open_to_namei_flags(int flag) |
| 2945 | { |
Al Viro | 8a5e929 | 2011-06-25 19:15:54 -0400 | [diff] [blame] | 2946 | if ((flag & O_ACCMODE) == 3) |
| 2947 | flag--; |
Dave Hansen | d57999e | 2008-02-15 14:37:27 -0800 | [diff] [blame] | 2948 | return flag; |
| 2949 | } |
| 2950 | |
Al Viro | d360775 | 2016-03-25 15:21:09 -0400 | [diff] [blame] | 2951 | 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] | 2952 | { |
Seth Forshee | 1328c72 | 2017-01-26 14:33:46 -0600 | [diff] [blame] | 2953 | struct user_namespace *s_user_ns; |
Miklos Szeredi | d18e900 | 2012-06-05 15:10:17 +0200 | [diff] [blame] | 2954 | int error = security_path_mknod(dir, dentry, mode, 0); |
| 2955 | if (error) |
| 2956 | return error; |
| 2957 | |
Seth Forshee | 1328c72 | 2017-01-26 14:33:46 -0600 | [diff] [blame] | 2958 | s_user_ns = dir->dentry->d_sb->s_user_ns; |
| 2959 | if (!kuid_has_mapping(s_user_ns, current_fsuid()) || |
| 2960 | !kgid_has_mapping(s_user_ns, current_fsgid())) |
| 2961 | return -EOVERFLOW; |
| 2962 | |
Miklos Szeredi | d18e900 | 2012-06-05 15:10:17 +0200 | [diff] [blame] | 2963 | error = inode_permission(dir->dentry->d_inode, MAY_WRITE | MAY_EXEC); |
| 2964 | if (error) |
| 2965 | return error; |
| 2966 | |
| 2967 | return security_inode_create(dir->dentry->d_inode, dentry, mode); |
| 2968 | } |
| 2969 | |
David Howells | 1acf0af | 2012-06-14 16:13:46 +0100 | [diff] [blame] | 2970 | /* |
| 2971 | * Attempt to atomically look up, create and open a file from a negative |
| 2972 | * dentry. |
| 2973 | * |
| 2974 | * Returns 0 if successful. The file will have been created and attached to |
| 2975 | * @file by the filesystem calling finish_open(). |
| 2976 | * |
Al Viro | 00a07c1 | 2018-07-09 19:30:20 -0400 | [diff] [blame] | 2977 | * If the file was looked up only or didn't need creating, FMODE_OPENED won't |
| 2978 | * be set. The caller will need to perform the open themselves. @path will |
| 2979 | * 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] | 2980 | * |
| 2981 | * Returns an error code otherwise. |
| 2982 | */ |
Al Viro | 239eb98 | 2020-01-09 14:12:40 -0500 | [diff] [blame] | 2983 | static struct dentry *atomic_open(struct nameidata *nd, struct dentry *dentry, |
| 2984 | struct file *file, |
| 2985 | const struct open_flags *op, |
| 2986 | int open_flag, umode_t mode) |
Miklos Szeredi | d18e900 | 2012-06-05 15:10:17 +0200 | [diff] [blame] | 2987 | { |
Miklos Szeredi | d18e900 | 2012-06-05 15:10:17 +0200 | [diff] [blame] | 2988 | struct dentry *const DENTRY_NOT_SET = (void *) -1UL; |
Miklos Szeredi | d18e900 | 2012-06-05 15:10:17 +0200 | [diff] [blame] | 2989 | struct inode *dir = nd->path.dentry->d_inode; |
Miklos Szeredi | d18e900 | 2012-06-05 15:10:17 +0200 | [diff] [blame] | 2990 | int error; |
Miklos Szeredi | d18e900 | 2012-06-05 15:10:17 +0200 | [diff] [blame] | 2991 | |
Al Viro | 384f26e | 2016-04-28 02:03:55 -0400 | [diff] [blame] | 2992 | 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] | 2993 | open_flag &= ~O_TRUNC; |
Miklos Szeredi | d18e900 | 2012-06-05 15:10:17 +0200 | [diff] [blame] | 2994 | |
Miklos Szeredi | d18e900 | 2012-06-05 15:10:17 +0200 | [diff] [blame] | 2995 | if (nd->flags & LOOKUP_DIRECTORY) |
| 2996 | open_flag |= O_DIRECTORY; |
| 2997 | |
Al Viro | 30d9049 | 2012-06-22 12:40:19 +0400 | [diff] [blame] | 2998 | file->f_path.dentry = DENTRY_NOT_SET; |
| 2999 | file->f_path.mnt = nd->path.mnt; |
Al Viro | 0fb1ea0 | 2016-04-27 14:13:10 -0400 | [diff] [blame] | 3000 | error = dir->i_op->atomic_open(dir, dentry, file, |
Al Viro | 44907d7 | 2018-06-08 13:32:02 -0400 | [diff] [blame] | 3001 | open_to_namei_flags(open_flag), mode); |
Al Viro | 6fbd071 | 2016-04-28 11:50:59 -0400 | [diff] [blame] | 3002 | d_lookup_done(dentry); |
Al Viro | 384f26e | 2016-04-28 02:03:55 -0400 | [diff] [blame] | 3003 | if (!error) { |
Al Viro | 64e1ac4 | 2018-07-09 19:17:52 -0400 | [diff] [blame] | 3004 | if (file->f_mode & FMODE_OPENED) { |
| 3005 | /* |
| 3006 | * We didn't have the inode before the open, so check open |
| 3007 | * permission here. |
| 3008 | */ |
| 3009 | int acc_mode = op->acc_mode; |
| 3010 | if (file->f_mode & FMODE_CREATED) { |
| 3011 | WARN_ON(!(open_flag & O_CREAT)); |
| 3012 | fsnotify_create(dir, dentry); |
| 3013 | acc_mode = 0; |
| 3014 | } |
| 3015 | error = may_open(&file->f_path, acc_mode, open_flag); |
| 3016 | if (WARN_ON(error > 0)) |
| 3017 | error = -EINVAL; |
| 3018 | } else if (WARN_ON(file->f_path.dentry == DENTRY_NOT_SET)) { |
Al Viro | 2675a4e | 2012-06-22 12:41:10 +0400 | [diff] [blame] | 3019 | error = -EIO; |
Al Viro | 03da633 | 2013-09-16 19:22:33 -0400 | [diff] [blame] | 3020 | } else { |
Al Viro | 384f26e | 2016-04-28 02:03:55 -0400 | [diff] [blame] | 3021 | if (file->f_path.dentry) { |
| 3022 | dput(dentry); |
| 3023 | dentry = file->f_path.dentry; |
Al Viro | 03da633 | 2013-09-16 19:22:33 -0400 | [diff] [blame] | 3024 | } |
Al Viro | 73a09dd | 2018-06-08 13:22:02 -0400 | [diff] [blame] | 3025 | if (file->f_mode & FMODE_CREATED) |
Al Viro | 384f26e | 2016-04-28 02:03:55 -0400 | [diff] [blame] | 3026 | fsnotify_create(dir, dentry); |
Al Viro | 239eb98 | 2020-01-09 14:12:40 -0500 | [diff] [blame] | 3027 | if (unlikely(d_is_negative(dentry))) |
Al Viro | a01e718 | 2016-06-07 21:53:51 -0400 | [diff] [blame] | 3028 | error = -ENOENT; |
Sage Weil | 62b2ce9 | 2012-08-15 13:30:12 -0700 | [diff] [blame] | 3029 | } |
Miklos Szeredi | d18e900 | 2012-06-05 15:10:17 +0200 | [diff] [blame] | 3030 | } |
Al Viro | 239eb98 | 2020-01-09 14:12:40 -0500 | [diff] [blame] | 3031 | if (error) { |
| 3032 | dput(dentry); |
| 3033 | dentry = ERR_PTR(error); |
| 3034 | } |
| 3035 | return dentry; |
Miklos Szeredi | d18e900 | 2012-06-05 15:10:17 +0200 | [diff] [blame] | 3036 | } |
| 3037 | |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 3038 | /* |
David Howells | 1acf0af | 2012-06-14 16:13:46 +0100 | [diff] [blame] | 3039 | * Look up and maybe create and open the last component. |
Miklos Szeredi | d58ffd3 | 2012-06-05 15:10:15 +0200 | [diff] [blame] | 3040 | * |
Al Viro | 00a07c1 | 2018-07-09 19:30:20 -0400 | [diff] [blame] | 3041 | * Must be called with parent locked (exclusive in O_CREAT case). |
Miklos Szeredi | d58ffd3 | 2012-06-05 15:10:15 +0200 | [diff] [blame] | 3042 | * |
Al Viro | 00a07c1 | 2018-07-09 19:30:20 -0400 | [diff] [blame] | 3043 | * Returns 0 on success, that is, if |
| 3044 | * the file was successfully atomically created (if necessary) and opened, or |
| 3045 | * the file was not completely opened at this time, though lookups and |
| 3046 | * creations were performed. |
| 3047 | * These case are distinguished by presence of FMODE_OPENED on file->f_mode. |
| 3048 | * In the latter case dentry returned in @path might be negative if O_CREAT |
| 3049 | * hadn't been specified. |
David Howells | 1acf0af | 2012-06-14 16:13:46 +0100 | [diff] [blame] | 3050 | * |
Al Viro | 00a07c1 | 2018-07-09 19:30:20 -0400 | [diff] [blame] | 3051 | * An error code is returned on failure. |
Miklos Szeredi | d58ffd3 | 2012-06-05 15:10:15 +0200 | [diff] [blame] | 3052 | */ |
Al Viro | da5ebf5 | 2020-01-09 14:25:14 -0500 | [diff] [blame] | 3053 | static struct dentry *lookup_open(struct nameidata *nd, struct file *file, |
| 3054 | const struct open_flags *op, |
| 3055 | bool got_write) |
Miklos Szeredi | d58ffd3 | 2012-06-05 15:10:15 +0200 | [diff] [blame] | 3056 | { |
| 3057 | struct dentry *dir = nd->path.dentry; |
Miklos Szeredi | 54ef487 | 2012-06-05 15:10:16 +0200 | [diff] [blame] | 3058 | struct inode *dir_inode = dir->d_inode; |
Al Viro | 1643b43 | 2016-04-27 19:14:10 -0400 | [diff] [blame] | 3059 | int open_flag = op->open_flag; |
Miklos Szeredi | d58ffd3 | 2012-06-05 15:10:15 +0200 | [diff] [blame] | 3060 | struct dentry *dentry; |
Al Viro | 1643b43 | 2016-04-27 19:14:10 -0400 | [diff] [blame] | 3061 | int error, create_error = 0; |
Al Viro | 1643b43 | 2016-04-27 19:14:10 -0400 | [diff] [blame] | 3062 | umode_t mode = op->mode; |
Al Viro | 6fbd071 | 2016-04-28 11:50:59 -0400 | [diff] [blame] | 3063 | DECLARE_WAIT_QUEUE_HEAD_ONSTACK(wq); |
Miklos Szeredi | d58ffd3 | 2012-06-05 15:10:15 +0200 | [diff] [blame] | 3064 | |
Al Viro | ce8644f | 2016-04-26 14:17:56 -0400 | [diff] [blame] | 3065 | if (unlikely(IS_DEADDIR(dir_inode))) |
Al Viro | da5ebf5 | 2020-01-09 14:25:14 -0500 | [diff] [blame] | 3066 | return ERR_PTR(-ENOENT); |
Miklos Szeredi | d58ffd3 | 2012-06-05 15:10:15 +0200 | [diff] [blame] | 3067 | |
Al Viro | 73a09dd | 2018-06-08 13:22:02 -0400 | [diff] [blame] | 3068 | file->f_mode &= ~FMODE_CREATED; |
Al Viro | 6fbd071 | 2016-04-28 11:50:59 -0400 | [diff] [blame] | 3069 | dentry = d_lookup(dir, &nd->last); |
| 3070 | for (;;) { |
| 3071 | if (!dentry) { |
| 3072 | dentry = d_alloc_parallel(dir, &nd->last, &wq); |
| 3073 | if (IS_ERR(dentry)) |
Al Viro | da5ebf5 | 2020-01-09 14:25:14 -0500 | [diff] [blame] | 3074 | return dentry; |
Al Viro | 6fbd071 | 2016-04-28 11:50:59 -0400 | [diff] [blame] | 3075 | } |
| 3076 | if (d_in_lookup(dentry)) |
| 3077 | break; |
Miklos Szeredi | d58ffd3 | 2012-06-05 15:10:15 +0200 | [diff] [blame] | 3078 | |
Al Viro | 6fbd071 | 2016-04-28 11:50:59 -0400 | [diff] [blame] | 3079 | error = d_revalidate(dentry, nd->flags); |
| 3080 | if (likely(error > 0)) |
| 3081 | break; |
| 3082 | if (error) |
| 3083 | goto out_dput; |
| 3084 | d_invalidate(dentry); |
| 3085 | dput(dentry); |
| 3086 | dentry = NULL; |
| 3087 | } |
| 3088 | if (dentry->d_inode) { |
Al Viro | 6c51e51 | 2016-03-05 20:09:32 -0500 | [diff] [blame] | 3089 | /* Cached positive dentry: will open in f_op->open */ |
Al Viro | da5ebf5 | 2020-01-09 14:25:14 -0500 | [diff] [blame] | 3090 | return dentry; |
Al Viro | 6c51e51 | 2016-03-05 20:09:32 -0500 | [diff] [blame] | 3091 | } |
Miklos Szeredi | d18e900 | 2012-06-05 15:10:17 +0200 | [diff] [blame] | 3092 | |
Al Viro | 1643b43 | 2016-04-27 19:14:10 -0400 | [diff] [blame] | 3093 | /* |
| 3094 | * Checking write permission is tricky, bacuse we don't know if we are |
| 3095 | * going to actually need it: O_CREAT opens should work as long as the |
| 3096 | * file exists. But checking existence breaks atomicity. The trick is |
| 3097 | * to check access and if not granted clear O_CREAT from the flags. |
| 3098 | * |
| 3099 | * Another problem is returing the "right" error value (e.g. for an |
| 3100 | * O_EXCL open we want to return EEXIST not EROFS). |
| 3101 | */ |
| 3102 | if (open_flag & O_CREAT) { |
| 3103 | if (!IS_POSIXACL(dir->d_inode)) |
| 3104 | mode &= ~current_umask(); |
| 3105 | if (unlikely(!got_write)) { |
| 3106 | create_error = -EROFS; |
| 3107 | open_flag &= ~O_CREAT; |
| 3108 | if (open_flag & (O_EXCL | O_TRUNC)) |
| 3109 | goto no_open; |
| 3110 | /* No side effects, safe to clear O_CREAT */ |
| 3111 | } else { |
| 3112 | create_error = may_o_create(&nd->path, dentry, mode); |
| 3113 | if (create_error) { |
| 3114 | open_flag &= ~O_CREAT; |
| 3115 | if (open_flag & O_EXCL) |
| 3116 | goto no_open; |
| 3117 | } |
| 3118 | } |
| 3119 | } else if ((open_flag & (O_TRUNC|O_WRONLY|O_RDWR)) && |
| 3120 | unlikely(!got_write)) { |
| 3121 | /* |
| 3122 | * No O_CREATE -> atomicity not a requirement -> fall |
| 3123 | * back to lookup + open |
| 3124 | */ |
| 3125 | goto no_open; |
Miklos Szeredi | d18e900 | 2012-06-05 15:10:17 +0200 | [diff] [blame] | 3126 | } |
| 3127 | |
Al Viro | 1643b43 | 2016-04-27 19:14:10 -0400 | [diff] [blame] | 3128 | if (dir_inode->i_op->atomic_open) { |
Al Viro | 239eb98 | 2020-01-09 14:12:40 -0500 | [diff] [blame] | 3129 | dentry = atomic_open(nd, dentry, file, op, open_flag, mode); |
Al Viro | da5ebf5 | 2020-01-09 14:25:14 -0500 | [diff] [blame] | 3130 | if (unlikely(create_error) && dentry == ERR_PTR(-ENOENT)) |
| 3131 | dentry = ERR_PTR(create_error); |
| 3132 | return dentry; |
Al Viro | 1643b43 | 2016-04-27 19:14:10 -0400 | [diff] [blame] | 3133 | } |
Miklos Szeredi | 54ef487 | 2012-06-05 15:10:16 +0200 | [diff] [blame] | 3134 | |
Al Viro | 1643b43 | 2016-04-27 19:14:10 -0400 | [diff] [blame] | 3135 | no_open: |
Al Viro | 6fbd071 | 2016-04-28 11:50:59 -0400 | [diff] [blame] | 3136 | if (d_in_lookup(dentry)) { |
Al Viro | 12fa5e2 | 2016-04-28 11:19:43 -0400 | [diff] [blame] | 3137 | struct dentry *res = dir_inode->i_op->lookup(dir_inode, dentry, |
| 3138 | nd->flags); |
Al Viro | 6fbd071 | 2016-04-28 11:50:59 -0400 | [diff] [blame] | 3139 | d_lookup_done(dentry); |
Al Viro | 12fa5e2 | 2016-04-28 11:19:43 -0400 | [diff] [blame] | 3140 | if (unlikely(res)) { |
| 3141 | if (IS_ERR(res)) { |
| 3142 | error = PTR_ERR(res); |
| 3143 | goto out_dput; |
| 3144 | } |
| 3145 | dput(dentry); |
| 3146 | dentry = res; |
| 3147 | } |
Miklos Szeredi | 54ef487 | 2012-06-05 15:10:16 +0200 | [diff] [blame] | 3148 | } |
| 3149 | |
Miklos Szeredi | d58ffd3 | 2012-06-05 15:10:15 +0200 | [diff] [blame] | 3150 | /* Negative dentry, just create the file */ |
Al Viro | 1643b43 | 2016-04-27 19:14:10 -0400 | [diff] [blame] | 3151 | if (!dentry->d_inode && (open_flag & O_CREAT)) { |
Al Viro | 73a09dd | 2018-06-08 13:22:02 -0400 | [diff] [blame] | 3152 | file->f_mode |= FMODE_CREATED; |
Al Viro | ce8644f | 2016-04-26 14:17:56 -0400 | [diff] [blame] | 3153 | audit_inode_child(dir_inode, dentry, AUDIT_TYPE_CHILD_CREATE); |
Al Viro | ce8644f | 2016-04-26 14:17:56 -0400 | [diff] [blame] | 3154 | if (!dir_inode->i_op->create) { |
| 3155 | error = -EACCES; |
Miklos Szeredi | d58ffd3 | 2012-06-05 15:10:15 +0200 | [diff] [blame] | 3156 | goto out_dput; |
Al Viro | 64894cf | 2012-07-31 00:53:35 +0400 | [diff] [blame] | 3157 | } |
Al Viro | ce8644f | 2016-04-26 14:17:56 -0400 | [diff] [blame] | 3158 | error = dir_inode->i_op->create(dir_inode, dentry, mode, |
Al Viro | 1643b43 | 2016-04-27 19:14:10 -0400 | [diff] [blame] | 3159 | open_flag & O_EXCL); |
Miklos Szeredi | d58ffd3 | 2012-06-05 15:10:15 +0200 | [diff] [blame] | 3160 | if (error) |
| 3161 | goto out_dput; |
Al Viro | ce8644f | 2016-04-26 14:17:56 -0400 | [diff] [blame] | 3162 | fsnotify_create(dir_inode, dentry); |
Miklos Szeredi | d58ffd3 | 2012-06-05 15:10:15 +0200 | [diff] [blame] | 3163 | } |
Al Viro | 1643b43 | 2016-04-27 19:14:10 -0400 | [diff] [blame] | 3164 | if (unlikely(create_error) && !dentry->d_inode) { |
| 3165 | error = create_error; |
| 3166 | goto out_dput; |
Miklos Szeredi | d58ffd3 | 2012-06-05 15:10:15 +0200 | [diff] [blame] | 3167 | } |
Al Viro | da5ebf5 | 2020-01-09 14:25:14 -0500 | [diff] [blame] | 3168 | return dentry; |
Miklos Szeredi | d58ffd3 | 2012-06-05 15:10:15 +0200 | [diff] [blame] | 3169 | |
| 3170 | out_dput: |
| 3171 | dput(dentry); |
Al Viro | da5ebf5 | 2020-01-09 14:25:14 -0500 | [diff] [blame] | 3172 | return ERR_PTR(error); |
Miklos Szeredi | d58ffd3 | 2012-06-05 15:10:15 +0200 | [diff] [blame] | 3173 | } |
| 3174 | |
| 3175 | /* |
Al Viro | fe2d35f | 2011-03-05 22:58:25 -0500 | [diff] [blame] | 3176 | * Handle the last step of open() |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 3177 | */ |
Al Viro | 1ccac62 | 2020-01-14 10:13:40 -0500 | [diff] [blame] | 3178 | static const char *do_last(struct nameidata *nd, |
Al Viro | 3ec2eef | 2018-06-08 13:43:47 -0400 | [diff] [blame] | 3179 | struct file *file, const struct open_flags *op) |
Al Viro | fb1cc55 | 2009-12-24 01:58:28 -0500 | [diff] [blame] | 3180 | { |
Al Viro | a1e2803 | 2009-12-24 02:12:06 -0500 | [diff] [blame] | 3181 | struct dentry *dir = nd->path.dentry; |
Al Viro | 6404674 | 2020-02-01 16:26:45 +0000 | [diff] [blame] | 3182 | kuid_t dir_uid = nd->inode->i_uid; |
| 3183 | umode_t dir_mode = nd->inode->i_mode; |
Al Viro | ca344a89 | 2011-03-09 00:36:45 -0500 | [diff] [blame] | 3184 | int open_flag = op->open_flag; |
Miklos Szeredi | 77d660a | 2012-06-05 15:10:30 +0200 | [diff] [blame] | 3185 | bool will_truncate = (open_flag & O_TRUNC) != 0; |
Al Viro | 64894cf | 2012-07-31 00:53:35 +0400 | [diff] [blame] | 3186 | bool got_write = false; |
Al Viro | bcda765 | 2011-03-13 16:42:14 -0400 | [diff] [blame] | 3187 | int acc_mode = op->acc_mode; |
Al Viro | 254cf58 | 2015-05-05 09:40:46 -0400 | [diff] [blame] | 3188 | unsigned seq; |
Miklos Szeredi | a1eb331 | 2012-05-21 17:30:07 +0200 | [diff] [blame] | 3189 | struct inode *inode; |
Al Viro | da5ebf5 | 2020-01-09 14:25:14 -0500 | [diff] [blame] | 3190 | struct dentry *dentry; |
Al Viro | b0417d2 | 2020-01-14 13:34:20 -0500 | [diff] [blame] | 3191 | const char *res; |
Al Viro | 16c2cd7 | 2011-02-22 15:50:10 -0500 | [diff] [blame] | 3192 | int error; |
Al Viro | fb1cc55 | 2009-12-24 01:58:28 -0500 | [diff] [blame] | 3193 | |
Al Viro | c3e380b | 2011-02-23 13:39:45 -0500 | [diff] [blame] | 3194 | nd->flags &= ~LOOKUP_PARENT; |
| 3195 | nd->flags |= op->intent; |
| 3196 | |
Al Viro | bc77daa | 2013-06-06 09:12:33 -0400 | [diff] [blame] | 3197 | if (nd->last_type != LAST_NORM) { |
Al Viro | 56676ec | 2020-03-10 21:54:54 -0400 | [diff] [blame] | 3198 | if (nd->depth) |
| 3199 | put_link(nd); |
Al Viro | fe2d35f | 2011-03-05 22:58:25 -0500 | [diff] [blame] | 3200 | error = handle_dots(nd, nd->last_type); |
Al Viro | deb106c | 2015-05-08 18:05:21 -0400 | [diff] [blame] | 3201 | if (unlikely(error)) |
Al Viro | 1ccac62 | 2020-01-14 10:13:40 -0500 | [diff] [blame] | 3202 | return ERR_PTR(error); |
Miklos Szeredi | e83db16 | 2012-06-05 15:10:29 +0200 | [diff] [blame] | 3203 | goto finish_open; |
Al Viro | 1f36f77 | 2009-12-26 10:56:19 -0500 | [diff] [blame] | 3204 | } |
Al Viro | 67ee3ad | 2009-12-26 07:01:01 -0500 | [diff] [blame] | 3205 | |
Al Viro | ca344a89 | 2011-03-09 00:36:45 -0500 | [diff] [blame] | 3206 | if (!(open_flag & O_CREAT)) { |
Al Viro | fe2d35f | 2011-03-05 22:58:25 -0500 | [diff] [blame] | 3207 | if (nd->last.name[nd->last.len]) |
| 3208 | nd->flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY; |
| 3209 | /* we _can_ be in RCU mode here */ |
Al Viro | 20e3435 | 2020-01-09 14:58:31 -0500 | [diff] [blame] | 3210 | dentry = lookup_fast(nd, &inode, &seq); |
| 3211 | if (IS_ERR(dentry)) |
Al Viro | 1ccac62 | 2020-01-14 10:13:40 -0500 | [diff] [blame] | 3212 | return ERR_CAST(dentry); |
Al Viro | 20e3435 | 2020-01-09 14:58:31 -0500 | [diff] [blame] | 3213 | if (likely(dentry)) |
Miklos Szeredi | 7157486 | 2012-06-05 15:10:14 +0200 | [diff] [blame] | 3214 | goto finish_lookup; |
Miklos Szeredi | a1eb331 | 2012-05-21 17:30:07 +0200 | [diff] [blame] | 3215 | |
Miklos Szeredi | 7157486 | 2012-06-05 15:10:14 +0200 | [diff] [blame] | 3216 | BUG_ON(nd->inode != dir->d_inode); |
Al Viro | 6583fe2 | 2016-03-05 18:14:03 -0500 | [diff] [blame] | 3217 | BUG_ON(nd->flags & LOOKUP_RCU); |
Miklos Szeredi | b6183df | 2012-06-05 15:10:13 +0200 | [diff] [blame] | 3218 | } else { |
| 3219 | /* create side of things */ |
| 3220 | /* |
| 3221 | * This will *only* deal with leaving RCU mode - LOOKUP_JUMPED |
| 3222 | * has been cleared when we got to the last component we are |
| 3223 | * about to look up |
| 3224 | */ |
| 3225 | error = complete_walk(nd); |
Al Viro | e8bb73d | 2015-05-08 16:28:42 -0400 | [diff] [blame] | 3226 | if (error) |
Al Viro | 1ccac62 | 2020-01-14 10:13:40 -0500 | [diff] [blame] | 3227 | return ERR_PTR(error); |
Miklos Szeredi | b6183df | 2012-06-05 15:10:13 +0200 | [diff] [blame] | 3228 | |
Al Viro | c9b07ea | 2019-07-14 13:22:27 -0400 | [diff] [blame] | 3229 | audit_inode(nd->name, dir, AUDIT_INODE_PARENT); |
Miklos Szeredi | b6183df | 2012-06-05 15:10:13 +0200 | [diff] [blame] | 3230 | /* trailing slashes? */ |
Al Viro | deb106c | 2015-05-08 18:05:21 -0400 | [diff] [blame] | 3231 | if (unlikely(nd->last.name[nd->last.len])) |
Al Viro | 1ccac62 | 2020-01-14 10:13:40 -0500 | [diff] [blame] | 3232 | return ERR_PTR(-EISDIR); |
Al Viro | fe2d35f | 2011-03-05 22:58:25 -0500 | [diff] [blame] | 3233 | } |
| 3234 | |
Al Viro | 9cf843e | 2016-04-28 19:35:16 -0400 | [diff] [blame] | 3235 | if (open_flag & (O_CREAT | O_TRUNC | O_WRONLY | O_RDWR)) { |
Al Viro | 64894cf | 2012-07-31 00:53:35 +0400 | [diff] [blame] | 3236 | error = mnt_want_write(nd->path.mnt); |
| 3237 | if (!error) |
| 3238 | got_write = true; |
| 3239 | /* |
| 3240 | * do _not_ fail yet - we might not need that or fail with |
| 3241 | * a different error; let lookup_open() decide; we'll be |
| 3242 | * dropping this one anyway. |
| 3243 | */ |
| 3244 | } |
Al Viro | 9cf843e | 2016-04-28 19:35:16 -0400 | [diff] [blame] | 3245 | if (open_flag & O_CREAT) |
| 3246 | inode_lock(dir->d_inode); |
| 3247 | else |
| 3248 | inode_lock_shared(dir->d_inode); |
Al Viro | da5ebf5 | 2020-01-09 14:25:14 -0500 | [diff] [blame] | 3249 | dentry = lookup_open(nd, file, op, got_write); |
Al Viro | 9cf843e | 2016-04-28 19:35:16 -0400 | [diff] [blame] | 3250 | if (open_flag & O_CREAT) |
| 3251 | inode_unlock(dir->d_inode); |
| 3252 | else |
| 3253 | inode_unlock_shared(dir->d_inode); |
Al Viro | a1e2803 | 2009-12-24 02:12:06 -0500 | [diff] [blame] | 3254 | |
Al Viro | da5ebf5 | 2020-01-09 14:25:14 -0500 | [diff] [blame] | 3255 | if (IS_ERR(dentry)) { |
| 3256 | error = PTR_ERR(dentry); |
Al Viro | 00a07c1 | 2018-07-09 19:30:20 -0400 | [diff] [blame] | 3257 | goto out; |
Al Viro | da5ebf5 | 2020-01-09 14:25:14 -0500 | [diff] [blame] | 3258 | } |
Miklos Szeredi | d18e900 | 2012-06-05 15:10:17 +0200 | [diff] [blame] | 3259 | |
Al Viro | 00a07c1 | 2018-07-09 19:30:20 -0400 | [diff] [blame] | 3260 | if (file->f_mode & FMODE_OPENED) { |
Al Viro | 73a09dd | 2018-06-08 13:22:02 -0400 | [diff] [blame] | 3261 | if ((file->f_mode & FMODE_CREATED) || |
Al Viro | 496ad9a | 2013-01-23 17:07:38 -0500 | [diff] [blame] | 3262 | !S_ISREG(file_inode(file)->i_mode)) |
Miklos Szeredi | 77d660a | 2012-06-05 15:10:30 +0200 | [diff] [blame] | 3263 | will_truncate = false; |
Miklos Szeredi | d18e900 | 2012-06-05 15:10:17 +0200 | [diff] [blame] | 3264 | |
Al Viro | 76ae2a5 | 2015-05-12 18:44:32 -0400 | [diff] [blame] | 3265 | audit_inode(nd->name, file->f_path.dentry, 0); |
Al Viro | da5ebf5 | 2020-01-09 14:25:14 -0500 | [diff] [blame] | 3266 | dput(dentry); |
Miklos Szeredi | d18e900 | 2012-06-05 15:10:17 +0200 | [diff] [blame] | 3267 | goto opened; |
| 3268 | } |
Al Viro | fb1cc55 | 2009-12-24 01:58:28 -0500 | [diff] [blame] | 3269 | |
Al Viro | 73a09dd | 2018-06-08 13:22:02 -0400 | [diff] [blame] | 3270 | if (file->f_mode & FMODE_CREATED) { |
Al Viro | 9b44f1b | 2011-03-09 00:17:27 -0500 | [diff] [blame] | 3271 | /* Don't check for write permission, don't truncate */ |
Al Viro | ca344a89 | 2011-03-09 00:36:45 -0500 | [diff] [blame] | 3272 | open_flag &= ~O_TRUNC; |
Miklos Szeredi | 77d660a | 2012-06-05 15:10:30 +0200 | [diff] [blame] | 3273 | will_truncate = false; |
Al Viro | 62fb4a1 | 2015-12-26 22:33:24 -0500 | [diff] [blame] | 3274 | acc_mode = 0; |
Al Viro | e73cabf | 2020-01-09 14:30:08 -0500 | [diff] [blame] | 3275 | dput(nd->path.dentry); |
| 3276 | nd->path.dentry = dentry; |
Miklos Szeredi | e83db16 | 2012-06-05 15:10:29 +0200 | [diff] [blame] | 3277 | goto finish_open_created; |
Al Viro | fb1cc55 | 2009-12-24 01:58:28 -0500 | [diff] [blame] | 3278 | } |
| 3279 | |
| 3280 | /* |
Miklos Szeredi | d18e900 | 2012-06-05 15:10:17 +0200 | [diff] [blame] | 3281 | * If atomic_open() acquired write access it is dropped now due to |
| 3282 | * possible mount and symlink following (this might be optimized away if |
| 3283 | * necessary...) |
| 3284 | */ |
Al Viro | 64894cf | 2012-07-31 00:53:35 +0400 | [diff] [blame] | 3285 | if (got_write) { |
Miklos Szeredi | d18e900 | 2012-06-05 15:10:17 +0200 | [diff] [blame] | 3286 | mnt_drop_write(nd->path.mnt); |
Al Viro | 64894cf | 2012-07-31 00:53:35 +0400 | [diff] [blame] | 3287 | got_write = false; |
Miklos Szeredi | d18e900 | 2012-06-05 15:10:17 +0200 | [diff] [blame] | 3288 | } |
| 3289 | |
Al Viro | 20e3435 | 2020-01-09 14:58:31 -0500 | [diff] [blame] | 3290 | finish_lookup: |
Al Viro | 56676ec | 2020-03-10 21:54:54 -0400 | [diff] [blame] | 3291 | if (nd->depth) |
| 3292 | put_link(nd); |
Al Viro | b0417d2 | 2020-01-14 13:34:20 -0500 | [diff] [blame] | 3293 | res = step_into(nd, 0, dentry, inode, seq); |
| 3294 | if (unlikely(res)) { |
| 3295 | nd->flags |= LOOKUP_PARENT; |
| 3296 | nd->flags &= ~(LOOKUP_OPEN|LOOKUP_CREATE|LOOKUP_EXCL); |
| 3297 | nd->stack[0].name = NULL; |
| 3298 | return res; |
Al Viro | 1ccac62 | 2020-01-14 10:13:40 -0500 | [diff] [blame] | 3299 | } |
Al Viro | 31d1726 | 2020-01-08 20:19:38 -0500 | [diff] [blame] | 3300 | |
| 3301 | if (unlikely((open_flag & (O_EXCL | O_CREAT)) == (O_EXCL | O_CREAT))) { |
| 3302 | audit_inode(nd->name, nd->path.dentry, 0); |
Al Viro | 1ccac62 | 2020-01-14 10:13:40 -0500 | [diff] [blame] | 3303 | return ERR_PTR(-EEXIST); |
Al Viro | 31d1726 | 2020-01-08 20:19:38 -0500 | [diff] [blame] | 3304 | } |
Al Viro | bc77daa | 2013-06-06 09:12:33 -0400 | [diff] [blame] | 3305 | finish_open: |
Al Viro | 8f64fb1 | 2016-11-14 01:50:26 -0500 | [diff] [blame] | 3306 | /* Why this, you ask? _Now_ we might have grown LOOKUP_JUMPED... */ |
Al Viro | a3fbbde | 2011-11-07 21:21:26 +0000 | [diff] [blame] | 3307 | error = complete_walk(nd); |
Al Viro | fac7d19 | 2016-06-04 11:41:49 -0400 | [diff] [blame] | 3308 | if (error) |
Al Viro | 1ccac62 | 2020-01-14 10:13:40 -0500 | [diff] [blame] | 3309 | return ERR_PTR(error); |
Al Viro | 76ae2a5 | 2015-05-12 18:44:32 -0400 | [diff] [blame] | 3310 | audit_inode(nd->name, nd->path.dentry, 0); |
Salvatore Mesoraca | 30aba66 | 2018-08-23 17:00:35 -0700 | [diff] [blame] | 3311 | if (open_flag & O_CREAT) { |
| 3312 | error = -EISDIR; |
| 3313 | if (d_is_dir(nd->path.dentry)) |
| 3314 | goto out; |
Al Viro | d0cb501 | 2020-01-26 09:29:34 -0500 | [diff] [blame] | 3315 | error = may_create_in_sticky(dir_mode, dir_uid, |
Salvatore Mesoraca | 30aba66 | 2018-08-23 17:00:35 -0700 | [diff] [blame] | 3316 | d_backing_inode(nd->path.dentry)); |
| 3317 | if (unlikely(error)) |
| 3318 | goto out; |
| 3319 | } |
Miklos Szeredi | af2f554 | 2012-05-21 17:30:11 +0200 | [diff] [blame] | 3320 | error = -ENOTDIR; |
Miklos Szeredi | 44b1d53 | 2014-04-01 17:08:41 +0200 | [diff] [blame] | 3321 | if ((nd->flags & LOOKUP_DIRECTORY) && !d_can_lookup(nd->path.dentry)) |
Al Viro | 2675a4e | 2012-06-22 12:41:10 +0400 | [diff] [blame] | 3322 | goto out; |
David Howells | 4bbcbd3b | 2015-03-17 22:16:40 +0000 | [diff] [blame] | 3323 | if (!d_is_reg(nd->path.dentry)) |
Miklos Szeredi | 77d660a | 2012-06-05 15:10:30 +0200 | [diff] [blame] | 3324 | will_truncate = false; |
Al Viro | 6c0d46c | 2011-03-09 00:59:59 -0500 | [diff] [blame] | 3325 | |
Al Viro | 0f9d1a1 | 2011-03-09 00:13:14 -0500 | [diff] [blame] | 3326 | if (will_truncate) { |
| 3327 | error = mnt_want_write(nd->path.mnt); |
| 3328 | if (error) |
Al Viro | 2675a4e | 2012-06-22 12:41:10 +0400 | [diff] [blame] | 3329 | goto out; |
Al Viro | 64894cf | 2012-07-31 00:53:35 +0400 | [diff] [blame] | 3330 | got_write = true; |
Al Viro | 0f9d1a1 | 2011-03-09 00:13:14 -0500 | [diff] [blame] | 3331 | } |
Miklos Szeredi | e83db16 | 2012-06-05 15:10:29 +0200 | [diff] [blame] | 3332 | finish_open_created: |
Al Viro | 6ac0870 | 2016-04-26 00:02:50 -0400 | [diff] [blame] | 3333 | error = may_open(&nd->path, acc_mode, open_flag); |
| 3334 | if (error) |
| 3335 | goto out; |
Al Viro | aad888f | 2018-06-08 12:58:04 -0400 | [diff] [blame] | 3336 | 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] | 3337 | error = vfs_open(&nd->path, file); |
Al Viro | fac7d19 | 2016-06-04 11:41:49 -0400 | [diff] [blame] | 3338 | if (error) |
Miklos Szeredi | 015c3bb | 2012-06-05 15:10:27 +0200 | [diff] [blame] | 3339 | goto out; |
Miklos Szeredi | a8277b9 | 2012-06-05 15:10:32 +0200 | [diff] [blame] | 3340 | opened: |
Al Viro | 6035a27 | 2018-06-08 13:40:10 -0400 | [diff] [blame] | 3341 | error = ima_file_check(file, op->acc_mode); |
Al Viro | fe9ec82 | 2016-04-27 03:14:20 -0400 | [diff] [blame] | 3342 | if (!error && will_truncate) |
Al Viro | 2675a4e | 2012-06-22 12:41:10 +0400 | [diff] [blame] | 3343 | error = handle_truncate(file); |
Al Viro | ca344a89 | 2011-03-09 00:36:45 -0500 | [diff] [blame] | 3344 | out: |
Al Viro | c80567c | 2016-02-27 19:17:33 -0500 | [diff] [blame] | 3345 | if (unlikely(error > 0)) { |
| 3346 | WARN_ON(1); |
| 3347 | error = -EINVAL; |
| 3348 | } |
Al Viro | 64894cf | 2012-07-31 00:53:35 +0400 | [diff] [blame] | 3349 | if (got_write) |
Al Viro | 0f9d1a1 | 2011-03-09 00:13:14 -0500 | [diff] [blame] | 3350 | mnt_drop_write(nd->path.mnt); |
Al Viro | 1ccac62 | 2020-01-14 10:13:40 -0500 | [diff] [blame] | 3351 | return ERR_PTR(error); |
Al Viro | fb1cc55 | 2009-12-24 01:58:28 -0500 | [diff] [blame] | 3352 | } |
| 3353 | |
Amir Goldstein | af7bd4d | 2017-01-17 06:34:52 +0200 | [diff] [blame] | 3354 | struct dentry *vfs_tmpfile(struct dentry *dentry, umode_t mode, int open_flag) |
| 3355 | { |
Amir Goldstein | af7bd4d | 2017-01-17 06:34:52 +0200 | [diff] [blame] | 3356 | struct dentry *child = NULL; |
| 3357 | struct inode *dir = dentry->d_inode; |
| 3358 | struct inode *inode; |
| 3359 | int error; |
| 3360 | |
| 3361 | /* we want directory to be writable */ |
| 3362 | error = inode_permission(dir, MAY_WRITE | MAY_EXEC); |
| 3363 | if (error) |
| 3364 | goto out_err; |
| 3365 | error = -EOPNOTSUPP; |
| 3366 | if (!dir->i_op->tmpfile) |
| 3367 | goto out_err; |
| 3368 | error = -ENOMEM; |
David Howells | cdf0122 | 2017-07-04 17:25:22 +0100 | [diff] [blame] | 3369 | child = d_alloc(dentry, &slash_name); |
Amir Goldstein | af7bd4d | 2017-01-17 06:34:52 +0200 | [diff] [blame] | 3370 | if (unlikely(!child)) |
| 3371 | goto out_err; |
| 3372 | error = dir->i_op->tmpfile(dir, child, mode); |
| 3373 | if (error) |
| 3374 | goto out_err; |
| 3375 | error = -ENOENT; |
| 3376 | inode = child->d_inode; |
| 3377 | if (unlikely(!inode)) |
| 3378 | goto out_err; |
| 3379 | if (!(open_flag & O_EXCL)) { |
| 3380 | spin_lock(&inode->i_lock); |
| 3381 | inode->i_state |= I_LINKABLE; |
| 3382 | spin_unlock(&inode->i_lock); |
| 3383 | } |
Mimi Zohar | fdb2410 | 2019-01-22 14:06:49 -0600 | [diff] [blame] | 3384 | ima_post_create_tmpfile(inode); |
Amir Goldstein | af7bd4d | 2017-01-17 06:34:52 +0200 | [diff] [blame] | 3385 | return child; |
| 3386 | |
| 3387 | out_err: |
| 3388 | dput(child); |
| 3389 | return ERR_PTR(error); |
| 3390 | } |
| 3391 | EXPORT_SYMBOL(vfs_tmpfile); |
| 3392 | |
Al Viro | c8a53ee | 2015-05-12 18:43:07 -0400 | [diff] [blame] | 3393 | static int do_tmpfile(struct nameidata *nd, unsigned flags, |
Al Viro | 60545d0 | 2013-06-07 01:20:27 -0400 | [diff] [blame] | 3394 | const struct open_flags *op, |
Al Viro | 3ec2eef | 2018-06-08 13:43:47 -0400 | [diff] [blame] | 3395 | struct file *file) |
Al Viro | 60545d0 | 2013-06-07 01:20:27 -0400 | [diff] [blame] | 3396 | { |
Al Viro | 625b6d1 | 2015-05-12 16:36:12 -0400 | [diff] [blame] | 3397 | struct dentry *child; |
Al Viro | 625b6d1 | 2015-05-12 16:36:12 -0400 | [diff] [blame] | 3398 | struct path path; |
Al Viro | c8a53ee | 2015-05-12 18:43:07 -0400 | [diff] [blame] | 3399 | int error = path_lookupat(nd, flags | LOOKUP_DIRECTORY, &path); |
Al Viro | 60545d0 | 2013-06-07 01:20:27 -0400 | [diff] [blame] | 3400 | if (unlikely(error)) |
| 3401 | return error; |
Al Viro | 625b6d1 | 2015-05-12 16:36:12 -0400 | [diff] [blame] | 3402 | error = mnt_want_write(path.mnt); |
Al Viro | 60545d0 | 2013-06-07 01:20:27 -0400 | [diff] [blame] | 3403 | if (unlikely(error)) |
| 3404 | goto out; |
Amir Goldstein | af7bd4d | 2017-01-17 06:34:52 +0200 | [diff] [blame] | 3405 | child = vfs_tmpfile(path.dentry, op->mode, op->open_flag); |
| 3406 | error = PTR_ERR(child); |
Hirofumi Nakagawa | 684e73b | 2017-09-26 03:21:26 +0900 | [diff] [blame] | 3407 | if (IS_ERR(child)) |
Al Viro | 60545d0 | 2013-06-07 01:20:27 -0400 | [diff] [blame] | 3408 | goto out2; |
Al Viro | 625b6d1 | 2015-05-12 16:36:12 -0400 | [diff] [blame] | 3409 | dput(path.dentry); |
| 3410 | path.dentry = child; |
Al Viro | c8a53ee | 2015-05-12 18:43:07 -0400 | [diff] [blame] | 3411 | audit_inode(nd->name, child, 0); |
Eric Rannaud | 69a91c2 | 2014-10-30 01:51:01 -0700 | [diff] [blame] | 3412 | /* Don't check for other permissions, the inode was just created */ |
Al Viro | 62fb4a1 | 2015-12-26 22:33:24 -0500 | [diff] [blame] | 3413 | error = may_open(&path, 0, op->open_flag); |
Al Viro | 60545d0 | 2013-06-07 01:20:27 -0400 | [diff] [blame] | 3414 | if (error) |
| 3415 | goto out2; |
Al Viro | 625b6d1 | 2015-05-12 16:36:12 -0400 | [diff] [blame] | 3416 | file->f_path.mnt = path.mnt; |
Al Viro | be12af3 | 2018-06-08 11:44:56 -0400 | [diff] [blame] | 3417 | error = finish_open(file, child, NULL); |
Al Viro | 60545d0 | 2013-06-07 01:20:27 -0400 | [diff] [blame] | 3418 | out2: |
Al Viro | 625b6d1 | 2015-05-12 16:36:12 -0400 | [diff] [blame] | 3419 | mnt_drop_write(path.mnt); |
Al Viro | 60545d0 | 2013-06-07 01:20:27 -0400 | [diff] [blame] | 3420 | out: |
Al Viro | 625b6d1 | 2015-05-12 16:36:12 -0400 | [diff] [blame] | 3421 | path_put(&path); |
Al Viro | 60545d0 | 2013-06-07 01:20:27 -0400 | [diff] [blame] | 3422 | return error; |
| 3423 | } |
| 3424 | |
Al Viro | 6ac0870 | 2016-04-26 00:02:50 -0400 | [diff] [blame] | 3425 | static int do_o_path(struct nameidata *nd, unsigned flags, struct file *file) |
| 3426 | { |
| 3427 | struct path path; |
| 3428 | int error = path_lookupat(nd, flags, &path); |
| 3429 | if (!error) { |
| 3430 | audit_inode(nd->name, path.dentry, 0); |
Al Viro | ae2bb29 | 2018-07-10 13:22:28 -0400 | [diff] [blame] | 3431 | error = vfs_open(&path, file); |
Al Viro | 6ac0870 | 2016-04-26 00:02:50 -0400 | [diff] [blame] | 3432 | path_put(&path); |
| 3433 | } |
| 3434 | return error; |
| 3435 | } |
| 3436 | |
Al Viro | c8a53ee | 2015-05-12 18:43:07 -0400 | [diff] [blame] | 3437 | static struct file *path_openat(struct nameidata *nd, |
| 3438 | const struct open_flags *op, unsigned flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3439 | { |
Al Viro | 30d9049 | 2012-06-22 12:40:19 +0400 | [diff] [blame] | 3440 | struct file *file; |
Al Viro | 13aab42 | 2011-02-23 17:54:08 -0500 | [diff] [blame] | 3441 | int error; |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 3442 | |
Al Viro | ea73ea7 | 2018-07-11 15:00:04 -0400 | [diff] [blame] | 3443 | file = alloc_empty_file(op->open_flag, current_cred()); |
Al Viro | 1afc99b | 2013-02-14 20:41:04 -0500 | [diff] [blame] | 3444 | if (IS_ERR(file)) |
| 3445 | return file; |
Nick Piggin | 31e6b01 | 2011-01-07 17:49:52 +1100 | [diff] [blame] | 3446 | |
Al Viro | bb458c6 | 2013-07-13 13:26:37 +0400 | [diff] [blame] | 3447 | if (unlikely(file->f_flags & __O_TMPFILE)) { |
Al Viro | 3ec2eef | 2018-06-08 13:43:47 -0400 | [diff] [blame] | 3448 | error = do_tmpfile(nd, flags, op, file); |
Al Viro | 5f336e7 | 2018-07-09 16:38:06 -0400 | [diff] [blame] | 3449 | } else if (unlikely(file->f_flags & O_PATH)) { |
Al Viro | 6ac0870 | 2016-04-26 00:02:50 -0400 | [diff] [blame] | 3450 | error = do_o_path(nd, flags, file); |
Al Viro | 5f336e7 | 2018-07-09 16:38:06 -0400 | [diff] [blame] | 3451 | } else { |
| 3452 | const char *s = path_init(nd, flags); |
| 3453 | while (!(error = link_path_walk(s, nd)) && |
Al Viro | 1ccac62 | 2020-01-14 10:13:40 -0500 | [diff] [blame] | 3454 | (s = do_last(nd, file, op)) != NULL) |
| 3455 | ; |
Al Viro | 5f336e7 | 2018-07-09 16:38:06 -0400 | [diff] [blame] | 3456 | terminate_walk(nd); |
Al Viro | 6ac0870 | 2016-04-26 00:02:50 -0400 | [diff] [blame] | 3457 | } |
Al Viro | 7c1c01e | 2018-06-08 12:56:55 -0400 | [diff] [blame] | 3458 | if (likely(!error)) { |
Al Viro | aad888f | 2018-06-08 12:58:04 -0400 | [diff] [blame] | 3459 | if (likely(file->f_mode & FMODE_OPENED)) |
Al Viro | 7c1c01e | 2018-06-08 12:56:55 -0400 | [diff] [blame] | 3460 | return file; |
| 3461 | WARN_ON(1); |
| 3462 | error = -EINVAL; |
Miklos Szeredi | 015c3bb | 2012-06-05 15:10:27 +0200 | [diff] [blame] | 3463 | } |
Al Viro | 7c1c01e | 2018-06-08 12:56:55 -0400 | [diff] [blame] | 3464 | fput(file); |
| 3465 | if (error == -EOPENSTALE) { |
| 3466 | if (flags & LOOKUP_RCU) |
| 3467 | error = -ECHILD; |
| 3468 | else |
| 3469 | error = -ESTALE; |
Al Viro | 2675a4e | 2012-06-22 12:41:10 +0400 | [diff] [blame] | 3470 | } |
Al Viro | 7c1c01e | 2018-06-08 12:56:55 -0400 | [diff] [blame] | 3471 | return ERR_PTR(error); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3472 | } |
| 3473 | |
Jeff Layton | 669abf4 | 2012-10-10 16:43:10 -0400 | [diff] [blame] | 3474 | struct file *do_filp_open(int dfd, struct filename *pathname, |
Al Viro | f9652e1 | 2013-06-11 08:23:01 +0400 | [diff] [blame] | 3475 | const struct open_flags *op) |
Al Viro | 13aab42 | 2011-02-23 17:54:08 -0500 | [diff] [blame] | 3476 | { |
Al Viro | 9883d18 | 2015-05-13 07:28:08 -0400 | [diff] [blame] | 3477 | struct nameidata nd; |
Al Viro | f9652e1 | 2013-06-11 08:23:01 +0400 | [diff] [blame] | 3478 | int flags = op->lookup_flags; |
Al Viro | 13aab42 | 2011-02-23 17:54:08 -0500 | [diff] [blame] | 3479 | struct file *filp; |
| 3480 | |
Al Viro | 9883d18 | 2015-05-13 07:28:08 -0400 | [diff] [blame] | 3481 | set_nameidata(&nd, dfd, pathname); |
Al Viro | c8a53ee | 2015-05-12 18:43:07 -0400 | [diff] [blame] | 3482 | filp = path_openat(&nd, op, flags | LOOKUP_RCU); |
Al Viro | 13aab42 | 2011-02-23 17:54:08 -0500 | [diff] [blame] | 3483 | if (unlikely(filp == ERR_PTR(-ECHILD))) |
Al Viro | c8a53ee | 2015-05-12 18:43:07 -0400 | [diff] [blame] | 3484 | filp = path_openat(&nd, op, flags); |
Al Viro | 13aab42 | 2011-02-23 17:54:08 -0500 | [diff] [blame] | 3485 | if (unlikely(filp == ERR_PTR(-ESTALE))) |
Al Viro | c8a53ee | 2015-05-12 18:43:07 -0400 | [diff] [blame] | 3486 | filp = path_openat(&nd, op, flags | LOOKUP_REVAL); |
Al Viro | 9883d18 | 2015-05-13 07:28:08 -0400 | [diff] [blame] | 3487 | restore_nameidata(); |
Al Viro | 13aab42 | 2011-02-23 17:54:08 -0500 | [diff] [blame] | 3488 | return filp; |
| 3489 | } |
| 3490 | |
Al Viro | 73d049a | 2011-03-11 12:08:24 -0500 | [diff] [blame] | 3491 | struct file *do_file_open_root(struct dentry *dentry, struct vfsmount *mnt, |
Al Viro | f9652e1 | 2013-06-11 08:23:01 +0400 | [diff] [blame] | 3492 | const char *name, const struct open_flags *op) |
Al Viro | 73d049a | 2011-03-11 12:08:24 -0500 | [diff] [blame] | 3493 | { |
Al Viro | 9883d18 | 2015-05-13 07:28:08 -0400 | [diff] [blame] | 3494 | struct nameidata nd; |
Al Viro | 73d049a | 2011-03-11 12:08:24 -0500 | [diff] [blame] | 3495 | struct file *file; |
Paul Moore | 5168910 | 2015-01-22 00:00:03 -0500 | [diff] [blame] | 3496 | struct filename *filename; |
Al Viro | f9652e1 | 2013-06-11 08:23:01 +0400 | [diff] [blame] | 3497 | int flags = op->lookup_flags | LOOKUP_ROOT; |
Al Viro | 73d049a | 2011-03-11 12:08:24 -0500 | [diff] [blame] | 3498 | |
| 3499 | nd.root.mnt = mnt; |
| 3500 | nd.root.dentry = dentry; |
| 3501 | |
David Howells | b18825a | 2013-09-12 19:22:53 +0100 | [diff] [blame] | 3502 | if (d_is_symlink(dentry) && op->intent & LOOKUP_OPEN) |
Al Viro | 73d049a | 2011-03-11 12:08:24 -0500 | [diff] [blame] | 3503 | return ERR_PTR(-ELOOP); |
| 3504 | |
Paul Moore | 5168910 | 2015-01-22 00:00:03 -0500 | [diff] [blame] | 3505 | filename = getname_kernel(name); |
Viresh Kumar | a1c8368 | 2015-08-12 15:59:44 +0530 | [diff] [blame] | 3506 | if (IS_ERR(filename)) |
Paul Moore | 5168910 | 2015-01-22 00:00:03 -0500 | [diff] [blame] | 3507 | return ERR_CAST(filename); |
| 3508 | |
Al Viro | 9883d18 | 2015-05-13 07:28:08 -0400 | [diff] [blame] | 3509 | set_nameidata(&nd, -1, filename); |
Al Viro | c8a53ee | 2015-05-12 18:43:07 -0400 | [diff] [blame] | 3510 | file = path_openat(&nd, op, flags | LOOKUP_RCU); |
Al Viro | 73d049a | 2011-03-11 12:08:24 -0500 | [diff] [blame] | 3511 | if (unlikely(file == ERR_PTR(-ECHILD))) |
Al Viro | c8a53ee | 2015-05-12 18:43:07 -0400 | [diff] [blame] | 3512 | file = path_openat(&nd, op, flags); |
Al Viro | 73d049a | 2011-03-11 12:08:24 -0500 | [diff] [blame] | 3513 | if (unlikely(file == ERR_PTR(-ESTALE))) |
Al Viro | c8a53ee | 2015-05-12 18:43:07 -0400 | [diff] [blame] | 3514 | file = path_openat(&nd, op, flags | LOOKUP_REVAL); |
Al Viro | 9883d18 | 2015-05-13 07:28:08 -0400 | [diff] [blame] | 3515 | restore_nameidata(); |
Paul Moore | 5168910 | 2015-01-22 00:00:03 -0500 | [diff] [blame] | 3516 | putname(filename); |
Al Viro | 73d049a | 2011-03-11 12:08:24 -0500 | [diff] [blame] | 3517 | return file; |
| 3518 | } |
| 3519 | |
Al Viro | fa14a0b | 2015-01-22 02:16:49 -0500 | [diff] [blame] | 3520 | static struct dentry *filename_create(int dfd, struct filename *name, |
Jeff Layton | 1ac12b4 | 2012-12-11 12:10:06 -0500 | [diff] [blame] | 3521 | struct path *path, unsigned int lookup_flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3522 | { |
Christoph Hellwig | c663e5d | 2005-06-23 00:09:49 -0700 | [diff] [blame] | 3523 | struct dentry *dentry = ERR_PTR(-EEXIST); |
Al Viro | 391172c | 2015-05-09 11:19:16 -0400 | [diff] [blame] | 3524 | struct qstr last; |
| 3525 | int type; |
Jan Kara | c30dabf | 2012-06-12 16:20:30 +0200 | [diff] [blame] | 3526 | int err2; |
Jeff Layton | 1ac12b4 | 2012-12-11 12:10:06 -0500 | [diff] [blame] | 3527 | int error; |
| 3528 | bool is_dir = (lookup_flags & LOOKUP_DIRECTORY); |
| 3529 | |
| 3530 | /* |
| 3531 | * Note that only LOOKUP_REVAL and LOOKUP_DIRECTORY matter here. Any |
| 3532 | * other flags passed in are ignored! |
| 3533 | */ |
| 3534 | lookup_flags &= LOOKUP_REVAL; |
| 3535 | |
Al Viro | 5c31b6c | 2015-05-12 17:32:54 -0400 | [diff] [blame] | 3536 | name = filename_parentat(dfd, name, lookup_flags, path, &last, &type); |
| 3537 | if (IS_ERR(name)) |
| 3538 | return ERR_CAST(name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3539 | |
Christoph Hellwig | c663e5d | 2005-06-23 00:09:49 -0700 | [diff] [blame] | 3540 | /* |
| 3541 | * Yucky last component or no last component at all? |
| 3542 | * (foo/., foo/.., /////) |
| 3543 | */ |
Al Viro | 5c31b6c | 2015-05-12 17:32:54 -0400 | [diff] [blame] | 3544 | if (unlikely(type != LAST_NORM)) |
Al Viro | ed75e95 | 2011-06-27 16:53:43 -0400 | [diff] [blame] | 3545 | goto out; |
Christoph Hellwig | c663e5d | 2005-06-23 00:09:49 -0700 | [diff] [blame] | 3546 | |
Jan Kara | c30dabf | 2012-06-12 16:20:30 +0200 | [diff] [blame] | 3547 | /* 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] | 3548 | err2 = mnt_want_write(path->mnt); |
Christoph Hellwig | c663e5d | 2005-06-23 00:09:49 -0700 | [diff] [blame] | 3549 | /* |
| 3550 | * Do the final lookup. |
| 3551 | */ |
Al Viro | 391172c | 2015-05-09 11:19:16 -0400 | [diff] [blame] | 3552 | lookup_flags |= LOOKUP_CREATE | LOOKUP_EXCL; |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 3553 | inode_lock_nested(path->dentry->d_inode, I_MUTEX_PARENT); |
Al Viro | 391172c | 2015-05-09 11:19:16 -0400 | [diff] [blame] | 3554 | dentry = __lookup_hash(&last, path->dentry, lookup_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3555 | if (IS_ERR(dentry)) |
Al Viro | a8104a9 | 2012-07-20 02:25:00 +0400 | [diff] [blame] | 3556 | goto unlock; |
Christoph Hellwig | c663e5d | 2005-06-23 00:09:49 -0700 | [diff] [blame] | 3557 | |
Al Viro | a8104a9 | 2012-07-20 02:25:00 +0400 | [diff] [blame] | 3558 | error = -EEXIST; |
David Howells | b18825a | 2013-09-12 19:22:53 +0100 | [diff] [blame] | 3559 | if (d_is_positive(dentry)) |
Al Viro | a8104a9 | 2012-07-20 02:25:00 +0400 | [diff] [blame] | 3560 | goto fail; |
David Howells | b18825a | 2013-09-12 19:22:53 +0100 | [diff] [blame] | 3561 | |
Christoph Hellwig | c663e5d | 2005-06-23 00:09:49 -0700 | [diff] [blame] | 3562 | /* |
| 3563 | * Special case - lookup gave negative, but... we had foo/bar/ |
| 3564 | * From the vfs_mknod() POV we just have a negative dentry - |
| 3565 | * all is fine. Let's be bastards - you had / on the end, you've |
| 3566 | * been asking for (non-existent) directory. -ENOENT for you. |
| 3567 | */ |
Al Viro | 391172c | 2015-05-09 11:19:16 -0400 | [diff] [blame] | 3568 | if (unlikely(!is_dir && last.name[last.len])) { |
Al Viro | a8104a9 | 2012-07-20 02:25:00 +0400 | [diff] [blame] | 3569 | error = -ENOENT; |
Al Viro | ed75e95 | 2011-06-27 16:53:43 -0400 | [diff] [blame] | 3570 | goto fail; |
Al Viro | e9baf6e | 2008-05-15 04:49:12 -0400 | [diff] [blame] | 3571 | } |
Jan Kara | c30dabf | 2012-06-12 16:20:30 +0200 | [diff] [blame] | 3572 | if (unlikely(err2)) { |
| 3573 | error = err2; |
Al Viro | a8104a9 | 2012-07-20 02:25:00 +0400 | [diff] [blame] | 3574 | goto fail; |
Jan Kara | c30dabf | 2012-06-12 16:20:30 +0200 | [diff] [blame] | 3575 | } |
Al Viro | 181c37b | 2015-05-12 17:21:25 -0400 | [diff] [blame] | 3576 | putname(name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3577 | return dentry; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3578 | fail: |
Al Viro | a8104a9 | 2012-07-20 02:25:00 +0400 | [diff] [blame] | 3579 | dput(dentry); |
| 3580 | dentry = ERR_PTR(error); |
| 3581 | unlock: |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 3582 | inode_unlock(path->dentry->d_inode); |
Jan Kara | c30dabf | 2012-06-12 16:20:30 +0200 | [diff] [blame] | 3583 | if (!err2) |
Al Viro | 391172c | 2015-05-09 11:19:16 -0400 | [diff] [blame] | 3584 | mnt_drop_write(path->mnt); |
Al Viro | ed75e95 | 2011-06-27 16:53:43 -0400 | [diff] [blame] | 3585 | out: |
Al Viro | 391172c | 2015-05-09 11:19:16 -0400 | [diff] [blame] | 3586 | path_put(path); |
Al Viro | 181c37b | 2015-05-12 17:21:25 -0400 | [diff] [blame] | 3587 | putname(name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3588 | return dentry; |
| 3589 | } |
Al Viro | fa14a0b | 2015-01-22 02:16:49 -0500 | [diff] [blame] | 3590 | |
| 3591 | struct dentry *kern_path_create(int dfd, const char *pathname, |
| 3592 | struct path *path, unsigned int lookup_flags) |
| 3593 | { |
Al Viro | 181c37b | 2015-05-12 17:21:25 -0400 | [diff] [blame] | 3594 | return filename_create(dfd, getname_kernel(pathname), |
| 3595 | path, lookup_flags); |
Al Viro | fa14a0b | 2015-01-22 02:16:49 -0500 | [diff] [blame] | 3596 | } |
Al Viro | dae6ad8 | 2011-06-26 11:50:15 -0400 | [diff] [blame] | 3597 | EXPORT_SYMBOL(kern_path_create); |
| 3598 | |
Al Viro | 921a165 | 2012-07-20 01:15:31 +0400 | [diff] [blame] | 3599 | void done_path_create(struct path *path, struct dentry *dentry) |
| 3600 | { |
| 3601 | dput(dentry); |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 3602 | inode_unlock(path->dentry->d_inode); |
Al Viro | a8104a9 | 2012-07-20 02:25:00 +0400 | [diff] [blame] | 3603 | mnt_drop_write(path->mnt); |
Al Viro | 921a165 | 2012-07-20 01:15:31 +0400 | [diff] [blame] | 3604 | path_put(path); |
| 3605 | } |
| 3606 | EXPORT_SYMBOL(done_path_create); |
| 3607 | |
Al Viro | 520ae68 | 2015-05-13 07:00:28 -0400 | [diff] [blame] | 3608 | inline struct dentry *user_path_create(int dfd, const char __user *pathname, |
Jeff Layton | 1ac12b4 | 2012-12-11 12:10:06 -0500 | [diff] [blame] | 3609 | struct path *path, unsigned int lookup_flags) |
Al Viro | dae6ad8 | 2011-06-26 11:50:15 -0400 | [diff] [blame] | 3610 | { |
Al Viro | 181c37b | 2015-05-12 17:21:25 -0400 | [diff] [blame] | 3611 | return filename_create(dfd, getname(pathname), path, lookup_flags); |
Al Viro | dae6ad8 | 2011-06-26 11:50:15 -0400 | [diff] [blame] | 3612 | } |
| 3613 | EXPORT_SYMBOL(user_path_create); |
| 3614 | |
Al Viro | 1a67aaf | 2011-07-26 01:52:52 -0400 | [diff] [blame] | 3615 | 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] | 3616 | { |
Miklos Szeredi | a95164d | 2008-07-30 15:08:48 +0200 | [diff] [blame] | 3617 | int error = may_create(dir, dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3618 | |
| 3619 | if (error) |
| 3620 | return error; |
| 3621 | |
Christian Brauner | 94f8200 | 2018-07-05 17:51:20 +0200 | [diff] [blame] | 3622 | if ((S_ISCHR(mode) || S_ISBLK(mode)) && !capable(CAP_MKNOD)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3623 | return -EPERM; |
| 3624 | |
Al Viro | acfa438 | 2008-12-04 10:06:33 -0500 | [diff] [blame] | 3625 | if (!dir->i_op->mknod) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3626 | return -EPERM; |
| 3627 | |
Serge E. Hallyn | 08ce5f1 | 2008-04-29 01:00:10 -0700 | [diff] [blame] | 3628 | error = devcgroup_inode_mknod(mode, dev); |
| 3629 | if (error) |
| 3630 | return error; |
| 3631 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3632 | error = security_inode_mknod(dir, dentry, mode, dev); |
| 3633 | if (error) |
| 3634 | return error; |
| 3635 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3636 | error = dir->i_op->mknod(dir, dentry, mode, dev); |
Stephen Smalley | a74574a | 2005-09-09 13:01:44 -0700 | [diff] [blame] | 3637 | if (!error) |
Amy Griffis | f38aa94 | 2005-11-03 15:57:06 +0000 | [diff] [blame] | 3638 | fsnotify_create(dir, dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3639 | return error; |
| 3640 | } |
Al Viro | 4d35950 | 2014-03-14 12:20:17 -0400 | [diff] [blame] | 3641 | EXPORT_SYMBOL(vfs_mknod); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3642 | |
Al Viro | f69aac0 | 2011-07-26 04:31:40 -0400 | [diff] [blame] | 3643 | static int may_mknod(umode_t mode) |
Dave Hansen | 463c319 | 2008-02-15 14:37:57 -0800 | [diff] [blame] | 3644 | { |
| 3645 | switch (mode & S_IFMT) { |
| 3646 | case S_IFREG: |
| 3647 | case S_IFCHR: |
| 3648 | case S_IFBLK: |
| 3649 | case S_IFIFO: |
| 3650 | case S_IFSOCK: |
| 3651 | case 0: /* zero mode translates to S_IFREG */ |
| 3652 | return 0; |
| 3653 | case S_IFDIR: |
| 3654 | return -EPERM; |
| 3655 | default: |
| 3656 | return -EINVAL; |
| 3657 | } |
| 3658 | } |
| 3659 | |
Dominik Brodowski | 87c4e19 | 2018-03-11 11:34:50 +0100 | [diff] [blame] | 3660 | long do_mknodat(int dfd, const char __user *filename, umode_t mode, |
| 3661 | unsigned int dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3662 | { |
Al Viro | 2ad94ae | 2008-07-21 09:32:51 -0400 | [diff] [blame] | 3663 | struct dentry *dentry; |
Al Viro | dae6ad8 | 2011-06-26 11:50:15 -0400 | [diff] [blame] | 3664 | struct path path; |
| 3665 | int error; |
Jeff Layton | 972567f | 2012-12-20 16:00:10 -0500 | [diff] [blame] | 3666 | unsigned int lookup_flags = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3667 | |
Al Viro | 8e4bfca | 2012-07-20 01:17:26 +0400 | [diff] [blame] | 3668 | error = may_mknod(mode); |
| 3669 | if (error) |
| 3670 | return error; |
Jeff Layton | 972567f | 2012-12-20 16:00:10 -0500 | [diff] [blame] | 3671 | retry: |
| 3672 | dentry = user_path_create(dfd, filename, &path, lookup_flags); |
Al Viro | dae6ad8 | 2011-06-26 11:50:15 -0400 | [diff] [blame] | 3673 | if (IS_ERR(dentry)) |
| 3674 | return PTR_ERR(dentry); |
Al Viro | 2ad94ae | 2008-07-21 09:32:51 -0400 | [diff] [blame] | 3675 | |
Al Viro | dae6ad8 | 2011-06-26 11:50:15 -0400 | [diff] [blame] | 3676 | if (!IS_POSIXACL(path.dentry->d_inode)) |
Al Viro | ce3b0f8 | 2009-03-29 19:08:22 -0400 | [diff] [blame] | 3677 | mode &= ~current_umask(); |
Al Viro | dae6ad8 | 2011-06-26 11:50:15 -0400 | [diff] [blame] | 3678 | error = security_path_mknod(&path, dentry, mode, dev); |
Kentaro Takeda | be6d3e5 | 2008-12-17 13:24:15 +0900 | [diff] [blame] | 3679 | if (error) |
Al Viro | a8104a9 | 2012-07-20 02:25:00 +0400 | [diff] [blame] | 3680 | goto out; |
Dave Hansen | 463c319 | 2008-02-15 14:37:57 -0800 | [diff] [blame] | 3681 | switch (mode & S_IFMT) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3682 | case 0: case S_IFREG: |
Al Viro | 312b63f | 2012-06-10 18:09:36 -0400 | [diff] [blame] | 3683 | error = vfs_create(path.dentry->d_inode,dentry,mode,true); |
Mimi Zohar | 05d1a71 | 2016-02-29 19:52:05 -0500 | [diff] [blame] | 3684 | if (!error) |
| 3685 | ima_post_path_mknod(dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3686 | break; |
| 3687 | case S_IFCHR: case S_IFBLK: |
Al Viro | dae6ad8 | 2011-06-26 11:50:15 -0400 | [diff] [blame] | 3688 | error = vfs_mknod(path.dentry->d_inode,dentry,mode, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3689 | new_decode_dev(dev)); |
| 3690 | break; |
| 3691 | case S_IFIFO: case S_IFSOCK: |
Al Viro | dae6ad8 | 2011-06-26 11:50:15 -0400 | [diff] [blame] | 3692 | error = vfs_mknod(path.dentry->d_inode,dentry,mode,0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3693 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3694 | } |
Al Viro | a8104a9 | 2012-07-20 02:25:00 +0400 | [diff] [blame] | 3695 | out: |
Al Viro | 921a165 | 2012-07-20 01:15:31 +0400 | [diff] [blame] | 3696 | done_path_create(&path, dentry); |
Jeff Layton | 972567f | 2012-12-20 16:00:10 -0500 | [diff] [blame] | 3697 | if (retry_estale(error, lookup_flags)) { |
| 3698 | lookup_flags |= LOOKUP_REVAL; |
| 3699 | goto retry; |
| 3700 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3701 | return error; |
| 3702 | } |
| 3703 | |
Dominik Brodowski | 87c4e19 | 2018-03-11 11:34:50 +0100 | [diff] [blame] | 3704 | SYSCALL_DEFINE4(mknodat, int, dfd, const char __user *, filename, umode_t, mode, |
| 3705 | unsigned int, dev) |
| 3706 | { |
| 3707 | return do_mknodat(dfd, filename, mode, dev); |
| 3708 | } |
| 3709 | |
Al Viro | 8208a22 | 2011-07-25 17:32:17 -0400 | [diff] [blame] | 3710 | SYSCALL_DEFINE3(mknod, const char __user *, filename, umode_t, mode, unsigned, dev) |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 3711 | { |
Dominik Brodowski | 87c4e19 | 2018-03-11 11:34:50 +0100 | [diff] [blame] | 3712 | return do_mknodat(AT_FDCWD, filename, mode, dev); |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 3713 | } |
| 3714 | |
Al Viro | 18bb1db | 2011-07-26 01:41:39 -0400 | [diff] [blame] | 3715 | int vfs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3716 | { |
Miklos Szeredi | a95164d | 2008-07-30 15:08:48 +0200 | [diff] [blame] | 3717 | int error = may_create(dir, dentry); |
Al Viro | 8de5277 | 2012-02-06 12:45:27 -0500 | [diff] [blame] | 3718 | unsigned max_links = dir->i_sb->s_max_links; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3719 | |
| 3720 | if (error) |
| 3721 | return error; |
| 3722 | |
Al Viro | acfa438 | 2008-12-04 10:06:33 -0500 | [diff] [blame] | 3723 | if (!dir->i_op->mkdir) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3724 | return -EPERM; |
| 3725 | |
| 3726 | mode &= (S_IRWXUGO|S_ISVTX); |
| 3727 | error = security_inode_mkdir(dir, dentry, mode); |
| 3728 | if (error) |
| 3729 | return error; |
| 3730 | |
Al Viro | 8de5277 | 2012-02-06 12:45:27 -0500 | [diff] [blame] | 3731 | if (max_links && dir->i_nlink >= max_links) |
| 3732 | return -EMLINK; |
| 3733 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3734 | error = dir->i_op->mkdir(dir, dentry, mode); |
Stephen Smalley | a74574a | 2005-09-09 13:01:44 -0700 | [diff] [blame] | 3735 | if (!error) |
Amy Griffis | f38aa94 | 2005-11-03 15:57:06 +0000 | [diff] [blame] | 3736 | fsnotify_mkdir(dir, dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3737 | return error; |
| 3738 | } |
Al Viro | 4d35950 | 2014-03-14 12:20:17 -0400 | [diff] [blame] | 3739 | EXPORT_SYMBOL(vfs_mkdir); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3740 | |
Dominik Brodowski | 0101db7 | 2018-03-11 11:34:49 +0100 | [diff] [blame] | 3741 | long do_mkdirat(int dfd, const char __user *pathname, umode_t mode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3742 | { |
Dave Hansen | 6902d92 | 2006-09-30 23:29:01 -0700 | [diff] [blame] | 3743 | struct dentry *dentry; |
Al Viro | dae6ad8 | 2011-06-26 11:50:15 -0400 | [diff] [blame] | 3744 | struct path path; |
| 3745 | int error; |
Jeff Layton | b76d8b8 | 2012-12-20 16:04:09 -0500 | [diff] [blame] | 3746 | unsigned int lookup_flags = LOOKUP_DIRECTORY; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3747 | |
Jeff Layton | b76d8b8 | 2012-12-20 16:04:09 -0500 | [diff] [blame] | 3748 | retry: |
| 3749 | dentry = user_path_create(dfd, pathname, &path, lookup_flags); |
Dave Hansen | 6902d92 | 2006-09-30 23:29:01 -0700 | [diff] [blame] | 3750 | if (IS_ERR(dentry)) |
Al Viro | dae6ad8 | 2011-06-26 11:50:15 -0400 | [diff] [blame] | 3751 | return PTR_ERR(dentry); |
Dave Hansen | 6902d92 | 2006-09-30 23:29:01 -0700 | [diff] [blame] | 3752 | |
Al Viro | dae6ad8 | 2011-06-26 11:50:15 -0400 | [diff] [blame] | 3753 | if (!IS_POSIXACL(path.dentry->d_inode)) |
Al Viro | ce3b0f8 | 2009-03-29 19:08:22 -0400 | [diff] [blame] | 3754 | mode &= ~current_umask(); |
Al Viro | dae6ad8 | 2011-06-26 11:50:15 -0400 | [diff] [blame] | 3755 | error = security_path_mkdir(&path, dentry, mode); |
Al Viro | a8104a9 | 2012-07-20 02:25:00 +0400 | [diff] [blame] | 3756 | if (!error) |
| 3757 | error = vfs_mkdir(path.dentry->d_inode, dentry, mode); |
Al Viro | 921a165 | 2012-07-20 01:15:31 +0400 | [diff] [blame] | 3758 | done_path_create(&path, dentry); |
Jeff Layton | b76d8b8 | 2012-12-20 16:04:09 -0500 | [diff] [blame] | 3759 | if (retry_estale(error, lookup_flags)) { |
| 3760 | lookup_flags |= LOOKUP_REVAL; |
| 3761 | goto retry; |
| 3762 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3763 | return error; |
| 3764 | } |
| 3765 | |
Dominik Brodowski | 0101db7 | 2018-03-11 11:34:49 +0100 | [diff] [blame] | 3766 | SYSCALL_DEFINE3(mkdirat, int, dfd, const char __user *, pathname, umode_t, mode) |
| 3767 | { |
| 3768 | return do_mkdirat(dfd, pathname, mode); |
| 3769 | } |
| 3770 | |
Al Viro | a218d0f | 2011-11-21 14:59:34 -0500 | [diff] [blame] | 3771 | SYSCALL_DEFINE2(mkdir, const char __user *, pathname, umode_t, mode) |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 3772 | { |
Dominik Brodowski | 0101db7 | 2018-03-11 11:34:49 +0100 | [diff] [blame] | 3773 | return do_mkdirat(AT_FDCWD, pathname, mode); |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 3774 | } |
| 3775 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3776 | int vfs_rmdir(struct inode *dir, struct dentry *dentry) |
| 3777 | { |
| 3778 | int error = may_delete(dir, dentry, 1); |
| 3779 | |
| 3780 | if (error) |
| 3781 | return error; |
| 3782 | |
Al Viro | acfa438 | 2008-12-04 10:06:33 -0500 | [diff] [blame] | 3783 | if (!dir->i_op->rmdir) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3784 | return -EPERM; |
| 3785 | |
Al Viro | 1d2ef59 | 2011-09-14 18:55:41 +0100 | [diff] [blame] | 3786 | dget(dentry); |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 3787 | inode_lock(dentry->d_inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3788 | |
Sage Weil | 912dbc1 | 2011-05-24 13:06:11 -0700 | [diff] [blame] | 3789 | error = -EBUSY; |
Eric W. Biederman | 7af1364 | 2013-10-04 19:15:13 -0700 | [diff] [blame] | 3790 | if (is_local_mountpoint(dentry)) |
Sage Weil | 912dbc1 | 2011-05-24 13:06:11 -0700 | [diff] [blame] | 3791 | goto out; |
| 3792 | |
| 3793 | error = security_inode_rmdir(dir, dentry); |
| 3794 | if (error) |
| 3795 | goto out; |
| 3796 | |
| 3797 | error = dir->i_op->rmdir(dir, dentry); |
| 3798 | if (error) |
| 3799 | goto out; |
| 3800 | |
Al Viro | 8767712 | 2018-05-27 16:23:51 -0400 | [diff] [blame] | 3801 | shrink_dcache_parent(dentry); |
Sage Weil | 912dbc1 | 2011-05-24 13:06:11 -0700 | [diff] [blame] | 3802 | dentry->d_inode->i_flags |= S_DEAD; |
| 3803 | dont_mount(dentry); |
Eric W. Biederman | 8ed936b | 2013-10-01 18:33:48 -0700 | [diff] [blame] | 3804 | detach_mounts(dentry); |
Amir Goldstein | 116b973 | 2019-05-26 17:34:02 +0300 | [diff] [blame] | 3805 | fsnotify_rmdir(dir, dentry); |
Sage Weil | 912dbc1 | 2011-05-24 13:06:11 -0700 | [diff] [blame] | 3806 | |
| 3807 | out: |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 3808 | inode_unlock(dentry->d_inode); |
Al Viro | 1d2ef59 | 2011-09-14 18:55:41 +0100 | [diff] [blame] | 3809 | dput(dentry); |
Sage Weil | 912dbc1 | 2011-05-24 13:06:11 -0700 | [diff] [blame] | 3810 | if (!error) |
| 3811 | d_delete(dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3812 | return error; |
| 3813 | } |
Al Viro | 4d35950 | 2014-03-14 12:20:17 -0400 | [diff] [blame] | 3814 | EXPORT_SYMBOL(vfs_rmdir); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3815 | |
Dominik Brodowski | f459dffa | 2018-03-11 11:34:48 +0100 | [diff] [blame] | 3816 | long do_rmdir(int dfd, const char __user *pathname) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3817 | { |
| 3818 | int error = 0; |
Jeff Layton | 91a27b2 | 2012-10-10 15:25:28 -0400 | [diff] [blame] | 3819 | struct filename *name; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3820 | struct dentry *dentry; |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 3821 | struct path path; |
| 3822 | struct qstr last; |
| 3823 | int type; |
Jeff Layton | c6ee920 | 2012-12-20 16:28:33 -0500 | [diff] [blame] | 3824 | unsigned int lookup_flags = 0; |
| 3825 | retry: |
Al Viro | c1d4dd2 | 2016-06-05 16:38:18 -0400 | [diff] [blame] | 3826 | name = filename_parentat(dfd, getname(pathname), lookup_flags, |
| 3827 | &path, &last, &type); |
Jeff Layton | 91a27b2 | 2012-10-10 15:25:28 -0400 | [diff] [blame] | 3828 | if (IS_ERR(name)) |
| 3829 | return PTR_ERR(name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3830 | |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 3831 | switch (type) { |
OGAWA Hirofumi | 0612d9f | 2008-10-16 07:50:29 +0900 | [diff] [blame] | 3832 | case LAST_DOTDOT: |
| 3833 | error = -ENOTEMPTY; |
| 3834 | goto exit1; |
| 3835 | case LAST_DOT: |
| 3836 | error = -EINVAL; |
| 3837 | goto exit1; |
| 3838 | case LAST_ROOT: |
| 3839 | error = -EBUSY; |
| 3840 | goto exit1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3841 | } |
OGAWA Hirofumi | 0612d9f | 2008-10-16 07:50:29 +0900 | [diff] [blame] | 3842 | |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 3843 | error = mnt_want_write(path.mnt); |
Jan Kara | c30dabf | 2012-06-12 16:20:30 +0200 | [diff] [blame] | 3844 | if (error) |
| 3845 | goto exit1; |
OGAWA Hirofumi | 0612d9f | 2008-10-16 07:50:29 +0900 | [diff] [blame] | 3846 | |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 3847 | inode_lock_nested(path.dentry->d_inode, I_MUTEX_PARENT); |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 3848 | dentry = __lookup_hash(&last, path.dentry, lookup_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3849 | error = PTR_ERR(dentry); |
Dave Hansen | 6902d92 | 2006-09-30 23:29:01 -0700 | [diff] [blame] | 3850 | if (IS_ERR(dentry)) |
| 3851 | goto exit2; |
Theodore Ts'o | e6bc45d | 2011-06-06 19:19:40 -0400 | [diff] [blame] | 3852 | if (!dentry->d_inode) { |
| 3853 | error = -ENOENT; |
| 3854 | goto exit3; |
| 3855 | } |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 3856 | error = security_path_rmdir(&path, dentry); |
Kentaro Takeda | be6d3e5 | 2008-12-17 13:24:15 +0900 | [diff] [blame] | 3857 | if (error) |
Jan Kara | c30dabf | 2012-06-12 16:20:30 +0200 | [diff] [blame] | 3858 | goto exit3; |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 3859 | error = vfs_rmdir(path.dentry->d_inode, dentry); |
Dave Hansen | 0622753 | 2008-02-15 14:37:34 -0800 | [diff] [blame] | 3860 | exit3: |
Dave Hansen | 6902d92 | 2006-09-30 23:29:01 -0700 | [diff] [blame] | 3861 | dput(dentry); |
| 3862 | exit2: |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 3863 | inode_unlock(path.dentry->d_inode); |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 3864 | mnt_drop_write(path.mnt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3865 | exit1: |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 3866 | path_put(&path); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3867 | putname(name); |
Jeff Layton | c6ee920 | 2012-12-20 16:28:33 -0500 | [diff] [blame] | 3868 | if (retry_estale(error, lookup_flags)) { |
| 3869 | lookup_flags |= LOOKUP_REVAL; |
| 3870 | goto retry; |
| 3871 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3872 | return error; |
| 3873 | } |
| 3874 | |
Heiko Carstens | 3cdad42 | 2009-01-14 14:14:22 +0100 | [diff] [blame] | 3875 | SYSCALL_DEFINE1(rmdir, const char __user *, pathname) |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 3876 | { |
| 3877 | return do_rmdir(AT_FDCWD, pathname); |
| 3878 | } |
| 3879 | |
J. Bruce Fields | b21996e | 2011-09-20 09:14:34 -0400 | [diff] [blame] | 3880 | /** |
| 3881 | * vfs_unlink - unlink a filesystem object |
| 3882 | * @dir: parent directory |
| 3883 | * @dentry: victim |
| 3884 | * @delegated_inode: returns victim inode, if the inode is delegated. |
| 3885 | * |
| 3886 | * The caller must hold dir->i_mutex. |
| 3887 | * |
| 3888 | * If vfs_unlink discovers a delegation, it will return -EWOULDBLOCK and |
| 3889 | * return a reference to the inode in delegated_inode. The caller |
| 3890 | * should then break the delegation on that inode and retry. Because |
| 3891 | * breaking a delegation may take a long time, the caller should drop |
| 3892 | * dir->i_mutex before doing so. |
| 3893 | * |
| 3894 | * Alternatively, a caller may pass NULL for delegated_inode. This may |
| 3895 | * be appropriate for callers that expect the underlying filesystem not |
| 3896 | * to be NFS exported. |
| 3897 | */ |
| 3898 | 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] | 3899 | { |
J. Bruce Fields | 9accbb9 | 2012-08-28 07:03:24 -0400 | [diff] [blame] | 3900 | struct inode *target = dentry->d_inode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3901 | int error = may_delete(dir, dentry, 0); |
| 3902 | |
| 3903 | if (error) |
| 3904 | return error; |
| 3905 | |
Al Viro | acfa438 | 2008-12-04 10:06:33 -0500 | [diff] [blame] | 3906 | if (!dir->i_op->unlink) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3907 | return -EPERM; |
| 3908 | |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 3909 | inode_lock(target); |
Eric W. Biederman | 8ed936b | 2013-10-01 18:33:48 -0700 | [diff] [blame] | 3910 | if (is_local_mountpoint(dentry)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3911 | error = -EBUSY; |
| 3912 | else { |
| 3913 | error = security_inode_unlink(dir, dentry); |
Al Viro | bec1052 | 2010-03-03 14:12:08 -0500 | [diff] [blame] | 3914 | if (!error) { |
J. Bruce Fields | 5a14696 | 2012-08-28 07:50:40 -0700 | [diff] [blame] | 3915 | error = try_break_deleg(target, delegated_inode); |
| 3916 | if (error) |
J. Bruce Fields | b21996e | 2011-09-20 09:14:34 -0400 | [diff] [blame] | 3917 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3918 | error = dir->i_op->unlink(dir, dentry); |
Eric W. Biederman | 8ed936b | 2013-10-01 18:33:48 -0700 | [diff] [blame] | 3919 | if (!error) { |
Al Viro | d83c49f | 2010-04-30 17:17:09 -0400 | [diff] [blame] | 3920 | dont_mount(dentry); |
Eric W. Biederman | 8ed936b | 2013-10-01 18:33:48 -0700 | [diff] [blame] | 3921 | detach_mounts(dentry); |
Amir Goldstein | 116b973 | 2019-05-26 17:34:02 +0300 | [diff] [blame] | 3922 | fsnotify_unlink(dir, dentry); |
Eric W. Biederman | 8ed936b | 2013-10-01 18:33:48 -0700 | [diff] [blame] | 3923 | } |
Al Viro | bec1052 | 2010-03-03 14:12:08 -0500 | [diff] [blame] | 3924 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3925 | } |
J. Bruce Fields | b21996e | 2011-09-20 09:14:34 -0400 | [diff] [blame] | 3926 | out: |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 3927 | inode_unlock(target); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3928 | |
| 3929 | /* We don't d_delete() NFS sillyrenamed files--they still exist. */ |
| 3930 | if (!error && !(dentry->d_flags & DCACHE_NFSFS_RENAMED)) { |
J. Bruce Fields | 9accbb9 | 2012-08-28 07:03:24 -0400 | [diff] [blame] | 3931 | fsnotify_link_count(target); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3932 | d_delete(dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3933 | } |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 3934 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3935 | return error; |
| 3936 | } |
Al Viro | 4d35950 | 2014-03-14 12:20:17 -0400 | [diff] [blame] | 3937 | EXPORT_SYMBOL(vfs_unlink); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3938 | |
| 3939 | /* |
| 3940 | * 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] | 3941 | * 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] | 3942 | * writeout happening, and we don't want to prevent access to the directory |
| 3943 | * while waiting on the I/O. |
| 3944 | */ |
Christoph Hellwig | da2f136 | 2017-11-04 13:44:45 +0300 | [diff] [blame] | 3945 | long do_unlinkat(int dfd, struct filename *name) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3946 | { |
Al Viro | 2ad94ae | 2008-07-21 09:32:51 -0400 | [diff] [blame] | 3947 | int error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3948 | struct dentry *dentry; |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 3949 | struct path path; |
| 3950 | struct qstr last; |
| 3951 | int type; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3952 | struct inode *inode = NULL; |
J. Bruce Fields | b21996e | 2011-09-20 09:14:34 -0400 | [diff] [blame] | 3953 | struct inode *delegated_inode = NULL; |
Jeff Layton | 5d18f81 | 2012-12-20 16:38:04 -0500 | [diff] [blame] | 3954 | unsigned int lookup_flags = 0; |
| 3955 | retry: |
Christoph Hellwig | da2f136 | 2017-11-04 13:44:45 +0300 | [diff] [blame] | 3956 | name = filename_parentat(dfd, name, lookup_flags, &path, &last, &type); |
Jeff Layton | 91a27b2 | 2012-10-10 15:25:28 -0400 | [diff] [blame] | 3957 | if (IS_ERR(name)) |
| 3958 | return PTR_ERR(name); |
Al Viro | 2ad94ae | 2008-07-21 09:32:51 -0400 | [diff] [blame] | 3959 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3960 | error = -EISDIR; |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 3961 | if (type != LAST_NORM) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3962 | goto exit1; |
OGAWA Hirofumi | 0612d9f | 2008-10-16 07:50:29 +0900 | [diff] [blame] | 3963 | |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 3964 | error = mnt_want_write(path.mnt); |
Jan Kara | c30dabf | 2012-06-12 16:20:30 +0200 | [diff] [blame] | 3965 | if (error) |
| 3966 | goto exit1; |
J. Bruce Fields | b21996e | 2011-09-20 09:14:34 -0400 | [diff] [blame] | 3967 | retry_deleg: |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 3968 | inode_lock_nested(path.dentry->d_inode, I_MUTEX_PARENT); |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 3969 | dentry = __lookup_hash(&last, path.dentry, lookup_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3970 | error = PTR_ERR(dentry); |
| 3971 | if (!IS_ERR(dentry)) { |
| 3972 | /* Why not before? Because we want correct error value */ |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 3973 | if (last.name[last.len]) |
Török Edwin | 50338b8 | 2011-06-16 00:06:14 +0300 | [diff] [blame] | 3974 | goto slashes; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3975 | inode = dentry->d_inode; |
David Howells | b18825a | 2013-09-12 19:22:53 +0100 | [diff] [blame] | 3976 | if (d_is_negative(dentry)) |
Theodore Ts'o | e6bc45d | 2011-06-06 19:19:40 -0400 | [diff] [blame] | 3977 | goto slashes; |
| 3978 | ihold(inode); |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 3979 | error = security_path_unlink(&path, dentry); |
Kentaro Takeda | be6d3e5 | 2008-12-17 13:24:15 +0900 | [diff] [blame] | 3980 | if (error) |
Jan Kara | c30dabf | 2012-06-12 16:20:30 +0200 | [diff] [blame] | 3981 | goto exit2; |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 3982 | error = vfs_unlink(path.dentry->d_inode, dentry, &delegated_inode); |
Jan Kara | c30dabf | 2012-06-12 16:20:30 +0200 | [diff] [blame] | 3983 | exit2: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3984 | dput(dentry); |
| 3985 | } |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 3986 | inode_unlock(path.dentry->d_inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3987 | if (inode) |
| 3988 | iput(inode); /* truncate the inode here */ |
J. Bruce Fields | b21996e | 2011-09-20 09:14:34 -0400 | [diff] [blame] | 3989 | inode = NULL; |
| 3990 | if (delegated_inode) { |
J. Bruce Fields | 5a14696 | 2012-08-28 07:50:40 -0700 | [diff] [blame] | 3991 | error = break_deleg_wait(&delegated_inode); |
J. Bruce Fields | b21996e | 2011-09-20 09:14:34 -0400 | [diff] [blame] | 3992 | if (!error) |
| 3993 | goto retry_deleg; |
| 3994 | } |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 3995 | mnt_drop_write(path.mnt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3996 | exit1: |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 3997 | path_put(&path); |
Jeff Layton | 5d18f81 | 2012-12-20 16:38:04 -0500 | [diff] [blame] | 3998 | if (retry_estale(error, lookup_flags)) { |
| 3999 | lookup_flags |= LOOKUP_REVAL; |
| 4000 | inode = NULL; |
| 4001 | goto retry; |
| 4002 | } |
Christoph Hellwig | da2f136 | 2017-11-04 13:44:45 +0300 | [diff] [blame] | 4003 | putname(name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4004 | return error; |
| 4005 | |
| 4006 | slashes: |
David Howells | b18825a | 2013-09-12 19:22:53 +0100 | [diff] [blame] | 4007 | if (d_is_negative(dentry)) |
| 4008 | error = -ENOENT; |
Miklos Szeredi | 44b1d53 | 2014-04-01 17:08:41 +0200 | [diff] [blame] | 4009 | else if (d_is_dir(dentry)) |
David Howells | b18825a | 2013-09-12 19:22:53 +0100 | [diff] [blame] | 4010 | error = -EISDIR; |
| 4011 | else |
| 4012 | error = -ENOTDIR; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4013 | goto exit2; |
| 4014 | } |
| 4015 | |
Heiko Carstens | 2e4d092 | 2009-01-14 14:14:31 +0100 | [diff] [blame] | 4016 | SYSCALL_DEFINE3(unlinkat, int, dfd, const char __user *, pathname, int, flag) |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 4017 | { |
| 4018 | if ((flag & ~AT_REMOVEDIR) != 0) |
| 4019 | return -EINVAL; |
| 4020 | |
| 4021 | if (flag & AT_REMOVEDIR) |
| 4022 | return do_rmdir(dfd, pathname); |
| 4023 | |
Christoph Hellwig | da2f136 | 2017-11-04 13:44:45 +0300 | [diff] [blame] | 4024 | return do_unlinkat(dfd, getname(pathname)); |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 4025 | } |
| 4026 | |
Heiko Carstens | 3480b25 | 2009-01-14 14:14:16 +0100 | [diff] [blame] | 4027 | SYSCALL_DEFINE1(unlink, const char __user *, pathname) |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 4028 | { |
Christoph Hellwig | da2f136 | 2017-11-04 13:44:45 +0300 | [diff] [blame] | 4029 | return do_unlinkat(AT_FDCWD, getname(pathname)); |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 4030 | } |
| 4031 | |
Miklos Szeredi | db2e747 | 2008-06-24 16:50:16 +0200 | [diff] [blame] | 4032 | int vfs_symlink(struct inode *dir, struct dentry *dentry, const char *oldname) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4033 | { |
Miklos Szeredi | a95164d | 2008-07-30 15:08:48 +0200 | [diff] [blame] | 4034 | int error = may_create(dir, dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4035 | |
| 4036 | if (error) |
| 4037 | return error; |
| 4038 | |
Al Viro | acfa438 | 2008-12-04 10:06:33 -0500 | [diff] [blame] | 4039 | if (!dir->i_op->symlink) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4040 | return -EPERM; |
| 4041 | |
| 4042 | error = security_inode_symlink(dir, dentry, oldname); |
| 4043 | if (error) |
| 4044 | return error; |
| 4045 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4046 | error = dir->i_op->symlink(dir, dentry, oldname); |
Stephen Smalley | a74574a | 2005-09-09 13:01:44 -0700 | [diff] [blame] | 4047 | if (!error) |
Amy Griffis | f38aa94 | 2005-11-03 15:57:06 +0000 | [diff] [blame] | 4048 | fsnotify_create(dir, dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4049 | return error; |
| 4050 | } |
Al Viro | 4d35950 | 2014-03-14 12:20:17 -0400 | [diff] [blame] | 4051 | EXPORT_SYMBOL(vfs_symlink); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4052 | |
Dominik Brodowski | b724e84 | 2018-03-11 11:34:49 +0100 | [diff] [blame] | 4053 | long do_symlinkat(const char __user *oldname, int newdfd, |
| 4054 | const char __user *newname) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4055 | { |
Al Viro | 2ad94ae | 2008-07-21 09:32:51 -0400 | [diff] [blame] | 4056 | int error; |
Jeff Layton | 91a27b2 | 2012-10-10 15:25:28 -0400 | [diff] [blame] | 4057 | struct filename *from; |
Dave Hansen | 6902d92 | 2006-09-30 23:29:01 -0700 | [diff] [blame] | 4058 | struct dentry *dentry; |
Al Viro | dae6ad8 | 2011-06-26 11:50:15 -0400 | [diff] [blame] | 4059 | struct path path; |
Jeff Layton | f46d356 | 2012-12-11 12:10:08 -0500 | [diff] [blame] | 4060 | unsigned int lookup_flags = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4061 | |
| 4062 | from = getname(oldname); |
Al Viro | 2ad94ae | 2008-07-21 09:32:51 -0400 | [diff] [blame] | 4063 | if (IS_ERR(from)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4064 | return PTR_ERR(from); |
Jeff Layton | f46d356 | 2012-12-11 12:10:08 -0500 | [diff] [blame] | 4065 | retry: |
| 4066 | dentry = user_path_create(newdfd, newname, &path, lookup_flags); |
Dave Hansen | 6902d92 | 2006-09-30 23:29:01 -0700 | [diff] [blame] | 4067 | error = PTR_ERR(dentry); |
| 4068 | if (IS_ERR(dentry)) |
Al Viro | dae6ad8 | 2011-06-26 11:50:15 -0400 | [diff] [blame] | 4069 | goto out_putname; |
Dave Hansen | 6902d92 | 2006-09-30 23:29:01 -0700 | [diff] [blame] | 4070 | |
Jeff Layton | 91a27b2 | 2012-10-10 15:25:28 -0400 | [diff] [blame] | 4071 | error = security_path_symlink(&path, dentry, from->name); |
Al Viro | a8104a9 | 2012-07-20 02:25:00 +0400 | [diff] [blame] | 4072 | if (!error) |
Jeff Layton | 91a27b2 | 2012-10-10 15:25:28 -0400 | [diff] [blame] | 4073 | error = vfs_symlink(path.dentry->d_inode, dentry, from->name); |
Al Viro | 921a165 | 2012-07-20 01:15:31 +0400 | [diff] [blame] | 4074 | done_path_create(&path, dentry); |
Jeff Layton | f46d356 | 2012-12-11 12:10:08 -0500 | [diff] [blame] | 4075 | if (retry_estale(error, lookup_flags)) { |
| 4076 | lookup_flags |= LOOKUP_REVAL; |
| 4077 | goto retry; |
| 4078 | } |
Dave Hansen | 6902d92 | 2006-09-30 23:29:01 -0700 | [diff] [blame] | 4079 | out_putname: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4080 | putname(from); |
| 4081 | return error; |
| 4082 | } |
| 4083 | |
Dominik Brodowski | b724e84 | 2018-03-11 11:34:49 +0100 | [diff] [blame] | 4084 | SYSCALL_DEFINE3(symlinkat, const char __user *, oldname, |
| 4085 | int, newdfd, const char __user *, newname) |
| 4086 | { |
| 4087 | return do_symlinkat(oldname, newdfd, newname); |
| 4088 | } |
| 4089 | |
Heiko Carstens | 3480b25 | 2009-01-14 14:14:16 +0100 | [diff] [blame] | 4090 | SYSCALL_DEFINE2(symlink, const char __user *, oldname, const char __user *, newname) |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 4091 | { |
Dominik Brodowski | b724e84 | 2018-03-11 11:34:49 +0100 | [diff] [blame] | 4092 | return do_symlinkat(oldname, AT_FDCWD, newname); |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 4093 | } |
| 4094 | |
J. Bruce Fields | 146a859 | 2011-09-20 17:14:31 -0400 | [diff] [blame] | 4095 | /** |
| 4096 | * vfs_link - create a new link |
| 4097 | * @old_dentry: object to be linked |
| 4098 | * @dir: new parent |
| 4099 | * @new_dentry: where to create the new link |
| 4100 | * @delegated_inode: returns inode needing a delegation break |
| 4101 | * |
| 4102 | * The caller must hold dir->i_mutex |
| 4103 | * |
| 4104 | * If vfs_link discovers a delegation on the to-be-linked file in need |
| 4105 | * of breaking, it will return -EWOULDBLOCK and return a reference to the |
| 4106 | * inode in delegated_inode. The caller should then break the delegation |
| 4107 | * and retry. Because breaking a delegation may take a long time, the |
| 4108 | * caller should drop the i_mutex before doing so. |
| 4109 | * |
| 4110 | * Alternatively, a caller may pass NULL for delegated_inode. This may |
| 4111 | * be appropriate for callers that expect the underlying filesystem not |
| 4112 | * to be NFS exported. |
| 4113 | */ |
| 4114 | 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] | 4115 | { |
| 4116 | struct inode *inode = old_dentry->d_inode; |
Al Viro | 8de5277 | 2012-02-06 12:45:27 -0500 | [diff] [blame] | 4117 | unsigned max_links = dir->i_sb->s_max_links; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4118 | int error; |
| 4119 | |
| 4120 | if (!inode) |
| 4121 | return -ENOENT; |
| 4122 | |
Miklos Szeredi | a95164d | 2008-07-30 15:08:48 +0200 | [diff] [blame] | 4123 | error = may_create(dir, new_dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4124 | if (error) |
| 4125 | return error; |
| 4126 | |
| 4127 | if (dir->i_sb != inode->i_sb) |
| 4128 | return -EXDEV; |
| 4129 | |
| 4130 | /* |
| 4131 | * A link to an append-only or immutable file cannot be created. |
| 4132 | */ |
| 4133 | if (IS_APPEND(inode) || IS_IMMUTABLE(inode)) |
| 4134 | return -EPERM; |
Eric W. Biederman | 0bd23d09 | 2016-06-29 14:54:46 -0500 | [diff] [blame] | 4135 | /* |
| 4136 | * Updating the link count will likely cause i_uid and i_gid to |
| 4137 | * be writen back improperly if their true value is unknown to |
| 4138 | * the vfs. |
| 4139 | */ |
| 4140 | if (HAS_UNMAPPED_ID(inode)) |
| 4141 | return -EPERM; |
Al Viro | acfa438 | 2008-12-04 10:06:33 -0500 | [diff] [blame] | 4142 | if (!dir->i_op->link) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4143 | return -EPERM; |
Tetsuo Handa | 7e79eed | 2008-06-24 16:50:15 +0200 | [diff] [blame] | 4144 | if (S_ISDIR(inode->i_mode)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4145 | return -EPERM; |
| 4146 | |
| 4147 | error = security_inode_link(old_dentry, dir, new_dentry); |
| 4148 | if (error) |
| 4149 | return error; |
| 4150 | |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 4151 | inode_lock(inode); |
Aneesh Kumar K.V | aae8a97 | 2011-01-29 18:43:27 +0530 | [diff] [blame] | 4152 | /* Make sure we don't allow creating hardlink to an unlinked file */ |
Al Viro | f4e0c30 | 2013-06-11 08:34:36 +0400 | [diff] [blame] | 4153 | if (inode->i_nlink == 0 && !(inode->i_state & I_LINKABLE)) |
Aneesh Kumar K.V | aae8a97 | 2011-01-29 18:43:27 +0530 | [diff] [blame] | 4154 | error = -ENOENT; |
Al Viro | 8de5277 | 2012-02-06 12:45:27 -0500 | [diff] [blame] | 4155 | else if (max_links && inode->i_nlink >= max_links) |
| 4156 | error = -EMLINK; |
J. Bruce Fields | 146a859 | 2011-09-20 17:14:31 -0400 | [diff] [blame] | 4157 | else { |
| 4158 | error = try_break_deleg(inode, delegated_inode); |
| 4159 | if (!error) |
| 4160 | error = dir->i_op->link(old_dentry, dir, new_dentry); |
| 4161 | } |
Al Viro | f4e0c30 | 2013-06-11 08:34:36 +0400 | [diff] [blame] | 4162 | |
| 4163 | if (!error && (inode->i_state & I_LINKABLE)) { |
| 4164 | spin_lock(&inode->i_lock); |
| 4165 | inode->i_state &= ~I_LINKABLE; |
| 4166 | spin_unlock(&inode->i_lock); |
| 4167 | } |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 4168 | inode_unlock(inode); |
Stephen Smalley | e31e14e | 2005-09-09 13:01:45 -0700 | [diff] [blame] | 4169 | if (!error) |
Tetsuo Handa | 7e79eed | 2008-06-24 16:50:15 +0200 | [diff] [blame] | 4170 | fsnotify_link(dir, inode, new_dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4171 | return error; |
| 4172 | } |
Al Viro | 4d35950 | 2014-03-14 12:20:17 -0400 | [diff] [blame] | 4173 | EXPORT_SYMBOL(vfs_link); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4174 | |
| 4175 | /* |
| 4176 | * Hardlinks are often used in delicate situations. We avoid |
| 4177 | * security-related surprises by not following symlinks on the |
| 4178 | * newname. --KAB |
| 4179 | * |
| 4180 | * We don't follow them on the oldname either to be compatible |
| 4181 | * with linux 2.0, and to avoid hard-linking to directories |
| 4182 | * and other special files. --ADM |
| 4183 | */ |
Dominik Brodowski | 46ea89e | 2018-03-11 11:34:53 +0100 | [diff] [blame] | 4184 | int do_linkat(int olddfd, const char __user *oldname, int newdfd, |
| 4185 | const char __user *newname, int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4186 | { |
| 4187 | struct dentry *new_dentry; |
Al Viro | dae6ad8 | 2011-06-26 11:50:15 -0400 | [diff] [blame] | 4188 | struct path old_path, new_path; |
J. Bruce Fields | 146a859 | 2011-09-20 17:14:31 -0400 | [diff] [blame] | 4189 | struct inode *delegated_inode = NULL; |
Aneesh Kumar K.V | 11a7b37 | 2011-01-29 18:43:42 +0530 | [diff] [blame] | 4190 | int how = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4191 | int error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4192 | |
Aneesh Kumar K.V | 11a7b37 | 2011-01-29 18:43:42 +0530 | [diff] [blame] | 4193 | if ((flags & ~(AT_SYMLINK_FOLLOW | AT_EMPTY_PATH)) != 0) |
Ulrich Drepper | c04030e | 2006-02-24 13:04:21 -0800 | [diff] [blame] | 4194 | return -EINVAL; |
Aneesh Kumar K.V | 11a7b37 | 2011-01-29 18:43:42 +0530 | [diff] [blame] | 4195 | /* |
Linus Torvalds | f0cc6ff | 2013-08-28 09:18:05 -0700 | [diff] [blame] | 4196 | * To use null names we require CAP_DAC_READ_SEARCH |
| 4197 | * This ensures that not everyone will be able to create |
| 4198 | * handlink using the passed filedescriptor. |
Aneesh Kumar K.V | 11a7b37 | 2011-01-29 18:43:42 +0530 | [diff] [blame] | 4199 | */ |
Linus Torvalds | f0cc6ff | 2013-08-28 09:18:05 -0700 | [diff] [blame] | 4200 | if (flags & AT_EMPTY_PATH) { |
| 4201 | if (!capable(CAP_DAC_READ_SEARCH)) |
| 4202 | return -ENOENT; |
Aneesh Kumar K.V | 11a7b37 | 2011-01-29 18:43:42 +0530 | [diff] [blame] | 4203 | how = LOOKUP_EMPTY; |
Linus Torvalds | f0cc6ff | 2013-08-28 09:18:05 -0700 | [diff] [blame] | 4204 | } |
Ulrich Drepper | c04030e | 2006-02-24 13:04:21 -0800 | [diff] [blame] | 4205 | |
Aneesh Kumar K.V | 11a7b37 | 2011-01-29 18:43:42 +0530 | [diff] [blame] | 4206 | if (flags & AT_SYMLINK_FOLLOW) |
| 4207 | how |= LOOKUP_FOLLOW; |
Jeff Layton | 442e31c | 2012-12-20 16:15:38 -0500 | [diff] [blame] | 4208 | retry: |
Aneesh Kumar K.V | 11a7b37 | 2011-01-29 18:43:42 +0530 | [diff] [blame] | 4209 | error = user_path_at(olddfd, oldname, how, &old_path); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4210 | if (error) |
Al Viro | 2ad94ae | 2008-07-21 09:32:51 -0400 | [diff] [blame] | 4211 | return error; |
| 4212 | |
Jeff Layton | 442e31c | 2012-12-20 16:15:38 -0500 | [diff] [blame] | 4213 | new_dentry = user_path_create(newdfd, newname, &new_path, |
| 4214 | (how & LOOKUP_REVAL)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4215 | error = PTR_ERR(new_dentry); |
Dave Hansen | 6902d92 | 2006-09-30 23:29:01 -0700 | [diff] [blame] | 4216 | if (IS_ERR(new_dentry)) |
Al Viro | dae6ad8 | 2011-06-26 11:50:15 -0400 | [diff] [blame] | 4217 | goto out; |
| 4218 | |
| 4219 | error = -EXDEV; |
| 4220 | if (old_path.mnt != new_path.mnt) |
| 4221 | goto out_dput; |
Kees Cook | 800179c | 2012-07-25 17:29:07 -0700 | [diff] [blame] | 4222 | error = may_linkat(&old_path); |
| 4223 | if (unlikely(error)) |
| 4224 | goto out_dput; |
Al Viro | dae6ad8 | 2011-06-26 11:50:15 -0400 | [diff] [blame] | 4225 | error = security_path_link(old_path.dentry, &new_path, new_dentry); |
Kentaro Takeda | be6d3e5 | 2008-12-17 13:24:15 +0900 | [diff] [blame] | 4226 | if (error) |
Al Viro | a8104a9 | 2012-07-20 02:25:00 +0400 | [diff] [blame] | 4227 | goto out_dput; |
J. Bruce Fields | 146a859 | 2011-09-20 17:14:31 -0400 | [diff] [blame] | 4228 | 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] | 4229 | out_dput: |
Al Viro | 921a165 | 2012-07-20 01:15:31 +0400 | [diff] [blame] | 4230 | done_path_create(&new_path, new_dentry); |
J. Bruce Fields | 146a859 | 2011-09-20 17:14:31 -0400 | [diff] [blame] | 4231 | if (delegated_inode) { |
| 4232 | error = break_deleg_wait(&delegated_inode); |
Oleg Drokin | d22e633 | 2014-01-31 15:41:58 -0500 | [diff] [blame] | 4233 | if (!error) { |
| 4234 | path_put(&old_path); |
J. Bruce Fields | 146a859 | 2011-09-20 17:14:31 -0400 | [diff] [blame] | 4235 | goto retry; |
Oleg Drokin | d22e633 | 2014-01-31 15:41:58 -0500 | [diff] [blame] | 4236 | } |
J. Bruce Fields | 146a859 | 2011-09-20 17:14:31 -0400 | [diff] [blame] | 4237 | } |
Jeff Layton | 442e31c | 2012-12-20 16:15:38 -0500 | [diff] [blame] | 4238 | if (retry_estale(error, how)) { |
Oleg Drokin | d22e633 | 2014-01-31 15:41:58 -0500 | [diff] [blame] | 4239 | path_put(&old_path); |
Jeff Layton | 442e31c | 2012-12-20 16:15:38 -0500 | [diff] [blame] | 4240 | how |= LOOKUP_REVAL; |
| 4241 | goto retry; |
| 4242 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4243 | out: |
Al Viro | 2d8f303 | 2008-07-22 09:59:21 -0400 | [diff] [blame] | 4244 | path_put(&old_path); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4245 | |
| 4246 | return error; |
| 4247 | } |
| 4248 | |
Dominik Brodowski | 46ea89e | 2018-03-11 11:34:53 +0100 | [diff] [blame] | 4249 | SYSCALL_DEFINE5(linkat, int, olddfd, const char __user *, oldname, |
| 4250 | int, newdfd, const char __user *, newname, int, flags) |
| 4251 | { |
| 4252 | return do_linkat(olddfd, oldname, newdfd, newname, flags); |
| 4253 | } |
| 4254 | |
Heiko Carstens | 3480b25 | 2009-01-14 14:14:16 +0100 | [diff] [blame] | 4255 | SYSCALL_DEFINE2(link, const char __user *, oldname, const char __user *, newname) |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 4256 | { |
Dominik Brodowski | 46ea89e | 2018-03-11 11:34:53 +0100 | [diff] [blame] | 4257 | return do_linkat(AT_FDCWD, oldname, AT_FDCWD, newname, 0); |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 4258 | } |
| 4259 | |
Miklos Szeredi | bc27027 | 2014-04-01 17:08:42 +0200 | [diff] [blame] | 4260 | /** |
| 4261 | * vfs_rename - rename a filesystem object |
| 4262 | * @old_dir: parent of source |
| 4263 | * @old_dentry: source |
| 4264 | * @new_dir: parent of destination |
| 4265 | * @new_dentry: destination |
| 4266 | * @delegated_inode: returns an inode needing a delegation break |
Miklos Szeredi | 520c8b1 | 2014-04-01 17:08:42 +0200 | [diff] [blame] | 4267 | * @flags: rename flags |
Miklos Szeredi | bc27027 | 2014-04-01 17:08:42 +0200 | [diff] [blame] | 4268 | * |
| 4269 | * The caller must hold multiple mutexes--see lock_rename()). |
| 4270 | * |
| 4271 | * If vfs_rename discovers a delegation in need of breaking at either |
| 4272 | * the source or destination, it will return -EWOULDBLOCK and return a |
| 4273 | * reference to the inode in delegated_inode. The caller should then |
| 4274 | * break the delegation and retry. Because breaking a delegation may |
| 4275 | * take a long time, the caller should drop all locks before doing |
| 4276 | * so. |
| 4277 | * |
| 4278 | * Alternatively, a caller may pass NULL for delegated_inode. This may |
| 4279 | * be appropriate for callers that expect the underlying filesystem not |
| 4280 | * to be NFS exported. |
| 4281 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4282 | * The worst of all namespace operations - renaming directory. "Perverted" |
| 4283 | * doesn't even start to describe it. Somebody in UCB had a heck of a trip... |
| 4284 | * Problems: |
Mauro Carvalho Chehab | 0117d42 | 2017-05-12 07:45:42 -0300 | [diff] [blame] | 4285 | * |
J. Bruce Fields | d03b29a | 2014-02-17 16:52:33 -0500 | [diff] [blame] | 4286 | * a) we can get into loop creation. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4287 | * b) race potential - two innocent renames can create a loop together. |
| 4288 | * 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] | 4289 | * 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] | 4290 | * story. |
J. Bruce Fields | 6cedba8 | 2012-03-05 11:40:41 -0500 | [diff] [blame] | 4291 | * c) we have to lock _four_ objects - parents and victim (if it exists), |
| 4292 | * and source (if it is not a directory). |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 4293 | * 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] | 4294 | * whether the target exists). Solution: try to be smart with locking |
| 4295 | * 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] | 4296 | * 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] | 4297 | * move will be locked. Thus we can rank directories by the tree |
| 4298 | * (ancestors first) and rank all non-directories after them. |
| 4299 | * That works since everybody except rename does "lock parent, lookup, |
Arjan van de Ven | a11f3a0 | 2006-03-23 03:00:33 -0800 | [diff] [blame] | 4300 | * lock child" and rename is under ->s_vfs_rename_mutex. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4301 | * HOWEVER, it relies on the assumption that any object with ->lookup() |
| 4302 | * has no more than 1 dentry. If "hybrid" objects will ever appear, |
| 4303 | * 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] | 4304 | * 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] | 4305 | * 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] | 4306 | * in the fhandle_to_dentry code. [FIXME - current nfsfh.c relies on |
Adam Buchbinder | c41b20e | 2009-12-11 16:35:39 -0500 | [diff] [blame] | 4307 | * ->i_mutex on parents, which works but leads to some truly excessive |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4308 | * locking]. |
| 4309 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4310 | int vfs_rename(struct inode *old_dir, struct dentry *old_dentry, |
J. Bruce Fields | 8e6d782 | 2011-09-20 16:59:58 -0400 | [diff] [blame] | 4311 | struct inode *new_dir, struct dentry *new_dentry, |
Miklos Szeredi | 520c8b1 | 2014-04-01 17:08:42 +0200 | [diff] [blame] | 4312 | struct inode **delegated_inode, unsigned int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4313 | { |
| 4314 | int error; |
Miklos Szeredi | bc27027 | 2014-04-01 17:08:42 +0200 | [diff] [blame] | 4315 | bool is_dir = d_is_dir(old_dentry); |
Miklos Szeredi | bc27027 | 2014-04-01 17:08:42 +0200 | [diff] [blame] | 4316 | struct inode *source = old_dentry->d_inode; |
| 4317 | struct inode *target = new_dentry->d_inode; |
Miklos Szeredi | da1ce06 | 2014-04-01 17:08:43 +0200 | [diff] [blame] | 4318 | bool new_is_dir = false; |
| 4319 | unsigned max_links = new_dir->i_sb->s_max_links; |
Al Viro | 49d31c2 | 2017-07-07 14:51:19 -0400 | [diff] [blame] | 4320 | struct name_snapshot old_name; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4321 | |
Miklos Szeredi | 8d3e293 | 2016-12-16 11:02:54 +0100 | [diff] [blame] | 4322 | if (source == target) |
Miklos Szeredi | bc27027 | 2014-04-01 17:08:42 +0200 | [diff] [blame] | 4323 | return 0; |
| 4324 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4325 | error = may_delete(old_dir, old_dentry, is_dir); |
| 4326 | if (error) |
| 4327 | return error; |
| 4328 | |
Miklos Szeredi | da1ce06 | 2014-04-01 17:08:43 +0200 | [diff] [blame] | 4329 | if (!target) { |
Miklos Szeredi | a95164d | 2008-07-30 15:08:48 +0200 | [diff] [blame] | 4330 | error = may_create(new_dir, new_dentry); |
Miklos Szeredi | da1ce06 | 2014-04-01 17:08:43 +0200 | [diff] [blame] | 4331 | } else { |
| 4332 | new_is_dir = d_is_dir(new_dentry); |
| 4333 | |
| 4334 | if (!(flags & RENAME_EXCHANGE)) |
| 4335 | error = may_delete(new_dir, new_dentry, is_dir); |
| 4336 | else |
| 4337 | error = may_delete(new_dir, new_dentry, new_is_dir); |
| 4338 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4339 | if (error) |
| 4340 | return error; |
| 4341 | |
Miklos Szeredi | 2773bf0 | 2016-09-27 11:03:58 +0200 | [diff] [blame] | 4342 | if (!old_dir->i_op->rename) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4343 | return -EPERM; |
| 4344 | |
Miklos Szeredi | bc27027 | 2014-04-01 17:08:42 +0200 | [diff] [blame] | 4345 | /* |
| 4346 | * If we are going to change the parent - check write permissions, |
| 4347 | * we'll need to flip '..'. |
| 4348 | */ |
Miklos Szeredi | da1ce06 | 2014-04-01 17:08:43 +0200 | [diff] [blame] | 4349 | if (new_dir != old_dir) { |
| 4350 | if (is_dir) { |
| 4351 | error = inode_permission(source, MAY_WRITE); |
| 4352 | if (error) |
| 4353 | return error; |
| 4354 | } |
| 4355 | if ((flags & RENAME_EXCHANGE) && new_is_dir) { |
| 4356 | error = inode_permission(target, MAY_WRITE); |
| 4357 | if (error) |
| 4358 | return error; |
| 4359 | } |
Miklos Szeredi | bc27027 | 2014-04-01 17:08:42 +0200 | [diff] [blame] | 4360 | } |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 4361 | |
Miklos Szeredi | 0b3974e | 2014-04-01 17:08:43 +0200 | [diff] [blame] | 4362 | error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry, |
| 4363 | flags); |
Miklos Szeredi | bc27027 | 2014-04-01 17:08:42 +0200 | [diff] [blame] | 4364 | if (error) |
| 4365 | return error; |
| 4366 | |
Al Viro | 49d31c2 | 2017-07-07 14:51:19 -0400 | [diff] [blame] | 4367 | take_dentry_name_snapshot(&old_name, old_dentry); |
Miklos Szeredi | bc27027 | 2014-04-01 17:08:42 +0200 | [diff] [blame] | 4368 | dget(new_dentry); |
Miklos Szeredi | da1ce06 | 2014-04-01 17:08:43 +0200 | [diff] [blame] | 4369 | if (!is_dir || (flags & RENAME_EXCHANGE)) |
Miklos Szeredi | bc27027 | 2014-04-01 17:08:42 +0200 | [diff] [blame] | 4370 | lock_two_nondirectories(source, target); |
| 4371 | else if (target) |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 4372 | inode_lock(target); |
Miklos Szeredi | bc27027 | 2014-04-01 17:08:42 +0200 | [diff] [blame] | 4373 | |
| 4374 | error = -EBUSY; |
Eric W. Biederman | 7af1364 | 2013-10-04 19:15:13 -0700 | [diff] [blame] | 4375 | if (is_local_mountpoint(old_dentry) || is_local_mountpoint(new_dentry)) |
Miklos Szeredi | bc27027 | 2014-04-01 17:08:42 +0200 | [diff] [blame] | 4376 | goto out; |
| 4377 | |
Miklos Szeredi | da1ce06 | 2014-04-01 17:08:43 +0200 | [diff] [blame] | 4378 | if (max_links && new_dir != old_dir) { |
Miklos Szeredi | bc27027 | 2014-04-01 17:08:42 +0200 | [diff] [blame] | 4379 | error = -EMLINK; |
Miklos Szeredi | da1ce06 | 2014-04-01 17:08:43 +0200 | [diff] [blame] | 4380 | if (is_dir && !new_is_dir && new_dir->i_nlink >= max_links) |
Miklos Szeredi | bc27027 | 2014-04-01 17:08:42 +0200 | [diff] [blame] | 4381 | goto out; |
Miklos Szeredi | da1ce06 | 2014-04-01 17:08:43 +0200 | [diff] [blame] | 4382 | if ((flags & RENAME_EXCHANGE) && !is_dir && new_is_dir && |
| 4383 | old_dir->i_nlink >= max_links) |
| 4384 | goto out; |
| 4385 | } |
Miklos Szeredi | da1ce06 | 2014-04-01 17:08:43 +0200 | [diff] [blame] | 4386 | if (!is_dir) { |
Miklos Szeredi | bc27027 | 2014-04-01 17:08:42 +0200 | [diff] [blame] | 4387 | error = try_break_deleg(source, delegated_inode); |
| 4388 | if (error) |
| 4389 | goto out; |
Miklos Szeredi | da1ce06 | 2014-04-01 17:08:43 +0200 | [diff] [blame] | 4390 | } |
| 4391 | if (target && !new_is_dir) { |
| 4392 | error = try_break_deleg(target, delegated_inode); |
| 4393 | if (error) |
| 4394 | goto out; |
Miklos Szeredi | bc27027 | 2014-04-01 17:08:42 +0200 | [diff] [blame] | 4395 | } |
Miklos Szeredi | 2773bf0 | 2016-09-27 11:03:58 +0200 | [diff] [blame] | 4396 | error = old_dir->i_op->rename(old_dir, old_dentry, |
Miklos Szeredi | 18fc84d | 2016-09-27 11:03:58 +0200 | [diff] [blame] | 4397 | new_dir, new_dentry, flags); |
Miklos Szeredi | bc27027 | 2014-04-01 17:08:42 +0200 | [diff] [blame] | 4398 | if (error) |
| 4399 | goto out; |
| 4400 | |
Miklos Szeredi | da1ce06 | 2014-04-01 17:08:43 +0200 | [diff] [blame] | 4401 | if (!(flags & RENAME_EXCHANGE) && target) { |
Al Viro | 8767712 | 2018-05-27 16:23:51 -0400 | [diff] [blame] | 4402 | if (is_dir) { |
| 4403 | shrink_dcache_parent(new_dentry); |
Miklos Szeredi | bc27027 | 2014-04-01 17:08:42 +0200 | [diff] [blame] | 4404 | target->i_flags |= S_DEAD; |
Al Viro | 8767712 | 2018-05-27 16:23:51 -0400 | [diff] [blame] | 4405 | } |
Miklos Szeredi | bc27027 | 2014-04-01 17:08:42 +0200 | [diff] [blame] | 4406 | dont_mount(new_dentry); |
Eric W. Biederman | 8ed936b | 2013-10-01 18:33:48 -0700 | [diff] [blame] | 4407 | detach_mounts(new_dentry); |
Miklos Szeredi | bc27027 | 2014-04-01 17:08:42 +0200 | [diff] [blame] | 4408 | } |
Miklos Szeredi | da1ce06 | 2014-04-01 17:08:43 +0200 | [diff] [blame] | 4409 | if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE)) { |
| 4410 | if (!(flags & RENAME_EXCHANGE)) |
| 4411 | d_move(old_dentry, new_dentry); |
| 4412 | else |
| 4413 | d_exchange(old_dentry, new_dentry); |
| 4414 | } |
Miklos Szeredi | bc27027 | 2014-04-01 17:08:42 +0200 | [diff] [blame] | 4415 | out: |
Miklos Szeredi | da1ce06 | 2014-04-01 17:08:43 +0200 | [diff] [blame] | 4416 | if (!is_dir || (flags & RENAME_EXCHANGE)) |
Miklos Szeredi | bc27027 | 2014-04-01 17:08:42 +0200 | [diff] [blame] | 4417 | unlock_two_nondirectories(source, target); |
| 4418 | else if (target) |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 4419 | inode_unlock(target); |
Miklos Szeredi | bc27027 | 2014-04-01 17:08:42 +0200 | [diff] [blame] | 4420 | dput(new_dentry); |
Miklos Szeredi | da1ce06 | 2014-04-01 17:08:43 +0200 | [diff] [blame] | 4421 | if (!error) { |
Al Viro | f4ec3a3 | 2019-04-26 13:21:24 -0400 | [diff] [blame] | 4422 | fsnotify_move(old_dir, new_dir, &old_name.name, is_dir, |
Miklos Szeredi | da1ce06 | 2014-04-01 17:08:43 +0200 | [diff] [blame] | 4423 | !(flags & RENAME_EXCHANGE) ? target : NULL, old_dentry); |
| 4424 | if (flags & RENAME_EXCHANGE) { |
Al Viro | f4ec3a3 | 2019-04-26 13:21:24 -0400 | [diff] [blame] | 4425 | fsnotify_move(new_dir, old_dir, &old_dentry->d_name, |
Miklos Szeredi | da1ce06 | 2014-04-01 17:08:43 +0200 | [diff] [blame] | 4426 | new_is_dir, NULL, new_dentry); |
| 4427 | } |
| 4428 | } |
Al Viro | 49d31c2 | 2017-07-07 14:51:19 -0400 | [diff] [blame] | 4429 | release_dentry_name_snapshot(&old_name); |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 4430 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4431 | return error; |
| 4432 | } |
Al Viro | 4d35950 | 2014-03-14 12:20:17 -0400 | [diff] [blame] | 4433 | EXPORT_SYMBOL(vfs_rename); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4434 | |
Dominik Brodowski | ee81feb | 2018-03-11 11:34:28 +0100 | [diff] [blame] | 4435 | static int do_renameat2(int olddfd, const char __user *oldname, int newdfd, |
| 4436 | const char __user *newname, unsigned int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4437 | { |
Al Viro | 2ad94ae | 2008-07-21 09:32:51 -0400 | [diff] [blame] | 4438 | struct dentry *old_dentry, *new_dentry; |
| 4439 | struct dentry *trap; |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 4440 | struct path old_path, new_path; |
| 4441 | struct qstr old_last, new_last; |
| 4442 | int old_type, new_type; |
J. Bruce Fields | 8e6d782 | 2011-09-20 16:59:58 -0400 | [diff] [blame] | 4443 | struct inode *delegated_inode = NULL; |
Jeff Layton | 91a27b2 | 2012-10-10 15:25:28 -0400 | [diff] [blame] | 4444 | struct filename *from; |
| 4445 | struct filename *to; |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 4446 | unsigned int lookup_flags = 0, target_flags = LOOKUP_RENAME_TARGET; |
Jeff Layton | c6a9428 | 2012-12-11 12:10:10 -0500 | [diff] [blame] | 4447 | bool should_retry = false; |
Al Viro | 2ad94ae | 2008-07-21 09:32:51 -0400 | [diff] [blame] | 4448 | int error; |
Miklos Szeredi | 520c8b1 | 2014-04-01 17:08:42 +0200 | [diff] [blame] | 4449 | |
Miklos Szeredi | 0d7a855 | 2014-10-24 00:14:37 +0200 | [diff] [blame] | 4450 | if (flags & ~(RENAME_NOREPLACE | RENAME_EXCHANGE | RENAME_WHITEOUT)) |
Miklos Szeredi | da1ce06 | 2014-04-01 17:08:43 +0200 | [diff] [blame] | 4451 | return -EINVAL; |
| 4452 | |
Miklos Szeredi | 0d7a855 | 2014-10-24 00:14:37 +0200 | [diff] [blame] | 4453 | if ((flags & (RENAME_NOREPLACE | RENAME_WHITEOUT)) && |
| 4454 | (flags & RENAME_EXCHANGE)) |
Miklos Szeredi | 520c8b1 | 2014-04-01 17:08:42 +0200 | [diff] [blame] | 4455 | return -EINVAL; |
| 4456 | |
Miklos Szeredi | 0d7a855 | 2014-10-24 00:14:37 +0200 | [diff] [blame] | 4457 | if ((flags & RENAME_WHITEOUT) && !capable(CAP_MKNOD)) |
| 4458 | return -EPERM; |
| 4459 | |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 4460 | if (flags & RENAME_EXCHANGE) |
| 4461 | target_flags = 0; |
| 4462 | |
Jeff Layton | c6a9428 | 2012-12-11 12:10:10 -0500 | [diff] [blame] | 4463 | retry: |
Al Viro | c1d4dd2 | 2016-06-05 16:38:18 -0400 | [diff] [blame] | 4464 | from = filename_parentat(olddfd, getname(oldname), lookup_flags, |
| 4465 | &old_path, &old_last, &old_type); |
Jeff Layton | 91a27b2 | 2012-10-10 15:25:28 -0400 | [diff] [blame] | 4466 | if (IS_ERR(from)) { |
| 4467 | error = PTR_ERR(from); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4468 | goto exit; |
Jeff Layton | 91a27b2 | 2012-10-10 15:25:28 -0400 | [diff] [blame] | 4469 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4470 | |
Al Viro | c1d4dd2 | 2016-06-05 16:38:18 -0400 | [diff] [blame] | 4471 | to = filename_parentat(newdfd, getname(newname), lookup_flags, |
| 4472 | &new_path, &new_last, &new_type); |
Jeff Layton | 91a27b2 | 2012-10-10 15:25:28 -0400 | [diff] [blame] | 4473 | if (IS_ERR(to)) { |
| 4474 | error = PTR_ERR(to); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4475 | goto exit1; |
Jeff Layton | 91a27b2 | 2012-10-10 15:25:28 -0400 | [diff] [blame] | 4476 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4477 | |
| 4478 | error = -EXDEV; |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 4479 | if (old_path.mnt != new_path.mnt) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4480 | goto exit2; |
| 4481 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4482 | error = -EBUSY; |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 4483 | if (old_type != LAST_NORM) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4484 | goto exit2; |
| 4485 | |
Miklos Szeredi | 0a7c393 | 2014-04-01 17:08:43 +0200 | [diff] [blame] | 4486 | if (flags & RENAME_NOREPLACE) |
| 4487 | error = -EEXIST; |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 4488 | if (new_type != LAST_NORM) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4489 | goto exit2; |
| 4490 | |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 4491 | error = mnt_want_write(old_path.mnt); |
Jan Kara | c30dabf | 2012-06-12 16:20:30 +0200 | [diff] [blame] | 4492 | if (error) |
| 4493 | goto exit2; |
| 4494 | |
J. Bruce Fields | 8e6d782 | 2011-09-20 16:59:58 -0400 | [diff] [blame] | 4495 | retry_deleg: |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 4496 | trap = lock_rename(new_path.dentry, old_path.dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4497 | |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 4498 | old_dentry = __lookup_hash(&old_last, old_path.dentry, lookup_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4499 | error = PTR_ERR(old_dentry); |
| 4500 | if (IS_ERR(old_dentry)) |
| 4501 | goto exit3; |
| 4502 | /* source must exist */ |
| 4503 | error = -ENOENT; |
David Howells | b18825a | 2013-09-12 19:22:53 +0100 | [diff] [blame] | 4504 | if (d_is_negative(old_dentry)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4505 | goto exit4; |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 4506 | 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] | 4507 | error = PTR_ERR(new_dentry); |
| 4508 | if (IS_ERR(new_dentry)) |
| 4509 | goto exit4; |
Miklos Szeredi | 0a7c393 | 2014-04-01 17:08:43 +0200 | [diff] [blame] | 4510 | error = -EEXIST; |
| 4511 | if ((flags & RENAME_NOREPLACE) && d_is_positive(new_dentry)) |
| 4512 | goto exit5; |
Miklos Szeredi | da1ce06 | 2014-04-01 17:08:43 +0200 | [diff] [blame] | 4513 | if (flags & RENAME_EXCHANGE) { |
| 4514 | error = -ENOENT; |
| 4515 | if (d_is_negative(new_dentry)) |
| 4516 | goto exit5; |
| 4517 | |
| 4518 | if (!d_is_dir(new_dentry)) { |
| 4519 | error = -ENOTDIR; |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 4520 | if (new_last.name[new_last.len]) |
Miklos Szeredi | da1ce06 | 2014-04-01 17:08:43 +0200 | [diff] [blame] | 4521 | goto exit5; |
| 4522 | } |
| 4523 | } |
Miklos Szeredi | 0a7c393 | 2014-04-01 17:08:43 +0200 | [diff] [blame] | 4524 | /* unless the source is a directory trailing slashes give -ENOTDIR */ |
| 4525 | if (!d_is_dir(old_dentry)) { |
| 4526 | error = -ENOTDIR; |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 4527 | if (old_last.name[old_last.len]) |
Miklos Szeredi | 0a7c393 | 2014-04-01 17:08:43 +0200 | [diff] [blame] | 4528 | goto exit5; |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 4529 | if (!(flags & RENAME_EXCHANGE) && new_last.name[new_last.len]) |
Miklos Szeredi | 0a7c393 | 2014-04-01 17:08:43 +0200 | [diff] [blame] | 4530 | goto exit5; |
| 4531 | } |
| 4532 | /* source should not be ancestor of target */ |
| 4533 | error = -EINVAL; |
| 4534 | if (old_dentry == trap) |
| 4535 | goto exit5; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4536 | /* target should not be an ancestor of source */ |
Miklos Szeredi | da1ce06 | 2014-04-01 17:08:43 +0200 | [diff] [blame] | 4537 | if (!(flags & RENAME_EXCHANGE)) |
| 4538 | error = -ENOTEMPTY; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4539 | if (new_dentry == trap) |
| 4540 | goto exit5; |
| 4541 | |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 4542 | error = security_path_rename(&old_path, old_dentry, |
| 4543 | &new_path, new_dentry, flags); |
Kentaro Takeda | be6d3e5 | 2008-12-17 13:24:15 +0900 | [diff] [blame] | 4544 | if (error) |
Jan Kara | c30dabf | 2012-06-12 16:20:30 +0200 | [diff] [blame] | 4545 | goto exit5; |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 4546 | error = vfs_rename(old_path.dentry->d_inode, old_dentry, |
| 4547 | new_path.dentry->d_inode, new_dentry, |
Miklos Szeredi | 520c8b1 | 2014-04-01 17:08:42 +0200 | [diff] [blame] | 4548 | &delegated_inode, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4549 | exit5: |
| 4550 | dput(new_dentry); |
| 4551 | exit4: |
| 4552 | dput(old_dentry); |
| 4553 | exit3: |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 4554 | unlock_rename(new_path.dentry, old_path.dentry); |
J. Bruce Fields | 8e6d782 | 2011-09-20 16:59:58 -0400 | [diff] [blame] | 4555 | if (delegated_inode) { |
| 4556 | error = break_deleg_wait(&delegated_inode); |
| 4557 | if (!error) |
| 4558 | goto retry_deleg; |
| 4559 | } |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 4560 | mnt_drop_write(old_path.mnt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4561 | exit2: |
Jeff Layton | c6a9428 | 2012-12-11 12:10:10 -0500 | [diff] [blame] | 4562 | if (retry_estale(error, lookup_flags)) |
| 4563 | should_retry = true; |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 4564 | path_put(&new_path); |
Al Viro | 2ad94ae | 2008-07-21 09:32:51 -0400 | [diff] [blame] | 4565 | putname(to); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4566 | exit1: |
Al Viro | f5beed7 | 2015-04-30 16:09:11 -0400 | [diff] [blame] | 4567 | path_put(&old_path); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4568 | putname(from); |
Jeff Layton | c6a9428 | 2012-12-11 12:10:10 -0500 | [diff] [blame] | 4569 | if (should_retry) { |
| 4570 | should_retry = false; |
| 4571 | lookup_flags |= LOOKUP_REVAL; |
| 4572 | goto retry; |
| 4573 | } |
Al Viro | 2ad94ae | 2008-07-21 09:32:51 -0400 | [diff] [blame] | 4574 | exit: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4575 | return error; |
| 4576 | } |
| 4577 | |
Dominik Brodowski | ee81feb | 2018-03-11 11:34:28 +0100 | [diff] [blame] | 4578 | SYSCALL_DEFINE5(renameat2, int, olddfd, const char __user *, oldname, |
| 4579 | int, newdfd, const char __user *, newname, unsigned int, flags) |
| 4580 | { |
| 4581 | return do_renameat2(olddfd, oldname, newdfd, newname, flags); |
| 4582 | } |
| 4583 | |
Miklos Szeredi | 520c8b1 | 2014-04-01 17:08:42 +0200 | [diff] [blame] | 4584 | SYSCALL_DEFINE4(renameat, int, olddfd, const char __user *, oldname, |
| 4585 | int, newdfd, const char __user *, newname) |
| 4586 | { |
Dominik Brodowski | ee81feb | 2018-03-11 11:34:28 +0100 | [diff] [blame] | 4587 | return do_renameat2(olddfd, oldname, newdfd, newname, 0); |
Miklos Szeredi | 520c8b1 | 2014-04-01 17:08:42 +0200 | [diff] [blame] | 4588 | } |
| 4589 | |
Heiko Carstens | a26eab2 | 2009-01-14 14:14:17 +0100 | [diff] [blame] | 4590 | SYSCALL_DEFINE2(rename, const char __user *, oldname, const char __user *, newname) |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 4591 | { |
Dominik Brodowski | ee81feb | 2018-03-11 11:34:28 +0100 | [diff] [blame] | 4592 | return do_renameat2(AT_FDCWD, oldname, AT_FDCWD, newname, 0); |
Ulrich Drepper | 5590ff0 | 2006-01-18 17:43:53 -0800 | [diff] [blame] | 4593 | } |
| 4594 | |
Miklos Szeredi | 787fb6b | 2014-10-24 00:14:36 +0200 | [diff] [blame] | 4595 | int vfs_whiteout(struct inode *dir, struct dentry *dentry) |
| 4596 | { |
| 4597 | int error = may_create(dir, dentry); |
| 4598 | if (error) |
| 4599 | return error; |
| 4600 | |
| 4601 | if (!dir->i_op->mknod) |
| 4602 | return -EPERM; |
| 4603 | |
| 4604 | return dir->i_op->mknod(dir, dentry, |
| 4605 | S_IFCHR | WHITEOUT_MODE, WHITEOUT_DEV); |
| 4606 | } |
| 4607 | EXPORT_SYMBOL(vfs_whiteout); |
| 4608 | |
Al Viro | 5d826c8 | 2014-03-14 13:42:45 -0400 | [diff] [blame] | 4609 | int readlink_copy(char __user *buffer, int buflen, const char *link) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4610 | { |
Al Viro | 5d826c8 | 2014-03-14 13:42:45 -0400 | [diff] [blame] | 4611 | int len = PTR_ERR(link); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4612 | if (IS_ERR(link)) |
| 4613 | goto out; |
| 4614 | |
| 4615 | len = strlen(link); |
| 4616 | if (len > (unsigned) buflen) |
| 4617 | len = buflen; |
| 4618 | if (copy_to_user(buffer, link, len)) |
| 4619 | len = -EFAULT; |
| 4620 | out: |
| 4621 | return len; |
| 4622 | } |
| 4623 | |
Miklos Szeredi | d60874c | 2016-10-04 14:40:45 +0200 | [diff] [blame] | 4624 | /** |
Miklos Szeredi | fd4a0ed | 2016-12-09 16:45:04 +0100 | [diff] [blame] | 4625 | * vfs_readlink - copy symlink body into userspace buffer |
| 4626 | * @dentry: dentry on which to get symbolic link |
| 4627 | * @buffer: user memory pointer |
| 4628 | * @buflen: size of buffer |
| 4629 | * |
| 4630 | * Does not touch atime. That's up to the caller if necessary |
| 4631 | * |
| 4632 | * Does not call security hook. |
| 4633 | */ |
| 4634 | int vfs_readlink(struct dentry *dentry, char __user *buffer, int buflen) |
| 4635 | { |
| 4636 | struct inode *inode = d_inode(dentry); |
Al Viro | f2df5da | 2018-07-19 17:35:51 -0400 | [diff] [blame] | 4637 | DEFINE_DELAYED_CALL(done); |
| 4638 | const char *link; |
| 4639 | int res; |
Miklos Szeredi | fd4a0ed | 2016-12-09 16:45:04 +0100 | [diff] [blame] | 4640 | |
Miklos Szeredi | 76fca90 | 2016-12-09 16:45:04 +0100 | [diff] [blame] | 4641 | if (unlikely(!(inode->i_opflags & IOP_DEFAULT_READLINK))) { |
| 4642 | if (unlikely(inode->i_op->readlink)) |
| 4643 | return inode->i_op->readlink(dentry, buffer, buflen); |
Miklos Szeredi | fd4a0ed | 2016-12-09 16:45:04 +0100 | [diff] [blame] | 4644 | |
Miklos Szeredi | 76fca90 | 2016-12-09 16:45:04 +0100 | [diff] [blame] | 4645 | if (!d_is_symlink(dentry)) |
| 4646 | return -EINVAL; |
| 4647 | |
| 4648 | spin_lock(&inode->i_lock); |
| 4649 | inode->i_opflags |= IOP_DEFAULT_READLINK; |
| 4650 | spin_unlock(&inode->i_lock); |
| 4651 | } |
| 4652 | |
Eric Biggers | 4c4f7c1 | 2019-04-10 13:21:14 -0700 | [diff] [blame] | 4653 | link = READ_ONCE(inode->i_link); |
Al Viro | f2df5da | 2018-07-19 17:35:51 -0400 | [diff] [blame] | 4654 | if (!link) { |
| 4655 | link = inode->i_op->get_link(dentry, inode, &done); |
| 4656 | if (IS_ERR(link)) |
| 4657 | return PTR_ERR(link); |
| 4658 | } |
| 4659 | res = readlink_copy(buffer, buflen, link); |
| 4660 | do_delayed_call(&done); |
| 4661 | return res; |
Miklos Szeredi | fd4a0ed | 2016-12-09 16:45:04 +0100 | [diff] [blame] | 4662 | } |
| 4663 | EXPORT_SYMBOL(vfs_readlink); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4664 | |
Miklos Szeredi | d60874c | 2016-10-04 14:40:45 +0200 | [diff] [blame] | 4665 | /** |
| 4666 | * vfs_get_link - get symlink body |
| 4667 | * @dentry: dentry on which to get symbolic link |
| 4668 | * @done: caller needs to free returned data with this |
| 4669 | * |
| 4670 | * Calls security hook and i_op->get_link() on the supplied inode. |
| 4671 | * |
| 4672 | * It does not touch atime. That's up to the caller if necessary. |
| 4673 | * |
| 4674 | * Does not work on "special" symlinks like /proc/$$/fd/N |
| 4675 | */ |
| 4676 | const char *vfs_get_link(struct dentry *dentry, struct delayed_call *done) |
| 4677 | { |
| 4678 | const char *res = ERR_PTR(-EINVAL); |
| 4679 | struct inode *inode = d_inode(dentry); |
| 4680 | |
| 4681 | if (d_is_symlink(dentry)) { |
| 4682 | res = ERR_PTR(security_inode_readlink(dentry)); |
| 4683 | if (!res) |
| 4684 | res = inode->i_op->get_link(dentry, inode, done); |
| 4685 | } |
| 4686 | return res; |
| 4687 | } |
| 4688 | EXPORT_SYMBOL(vfs_get_link); |
| 4689 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4690 | /* get the link contents into pagecache */ |
Al Viro | 6b25539 | 2015-11-17 10:20:54 -0500 | [diff] [blame] | 4691 | const char *page_get_link(struct dentry *dentry, struct inode *inode, |
Al Viro | fceef39 | 2015-12-29 15:58:39 -0500 | [diff] [blame] | 4692 | struct delayed_call *callback) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4693 | { |
Duane Griffin | ebd09ab | 2008-12-19 20:47:12 +0000 | [diff] [blame] | 4694 | char *kaddr; |
| 4695 | struct page *page; |
Al Viro | 6b25539 | 2015-11-17 10:20:54 -0500 | [diff] [blame] | 4696 | struct address_space *mapping = inode->i_mapping; |
| 4697 | |
Al Viro | d3883d4 | 2015-11-17 10:41:04 -0500 | [diff] [blame] | 4698 | if (!dentry) { |
| 4699 | page = find_get_page(mapping, 0); |
| 4700 | if (!page) |
| 4701 | return ERR_PTR(-ECHILD); |
| 4702 | if (!PageUptodate(page)) { |
| 4703 | put_page(page); |
| 4704 | return ERR_PTR(-ECHILD); |
| 4705 | } |
| 4706 | } else { |
| 4707 | page = read_mapping_page(mapping, 0, NULL); |
| 4708 | if (IS_ERR(page)) |
| 4709 | return (char*)page; |
| 4710 | } |
Al Viro | fceef39 | 2015-12-29 15:58:39 -0500 | [diff] [blame] | 4711 | set_delayed_call(callback, page_put_link, page); |
Al Viro | 21fc61c | 2015-11-17 01:07:57 -0500 | [diff] [blame] | 4712 | BUG_ON(mapping_gfp_mask(mapping) & __GFP_HIGHMEM); |
| 4713 | kaddr = page_address(page); |
Al Viro | 6b25539 | 2015-11-17 10:20:54 -0500 | [diff] [blame] | 4714 | nd_terminate_link(kaddr, inode->i_size, PAGE_SIZE - 1); |
Duane Griffin | ebd09ab | 2008-12-19 20:47:12 +0000 | [diff] [blame] | 4715 | return kaddr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4716 | } |
| 4717 | |
Al Viro | 6b25539 | 2015-11-17 10:20:54 -0500 | [diff] [blame] | 4718 | EXPORT_SYMBOL(page_get_link); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4719 | |
Al Viro | fceef39 | 2015-12-29 15:58:39 -0500 | [diff] [blame] | 4720 | void page_put_link(void *arg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4721 | { |
Al Viro | fceef39 | 2015-12-29 15:58:39 -0500 | [diff] [blame] | 4722 | put_page(arg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4723 | } |
Al Viro | 4d35950 | 2014-03-14 12:20:17 -0400 | [diff] [blame] | 4724 | EXPORT_SYMBOL(page_put_link); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4725 | |
Al Viro | aa80dea | 2015-11-16 18:26:34 -0500 | [diff] [blame] | 4726 | int page_readlink(struct dentry *dentry, char __user *buffer, int buflen) |
| 4727 | { |
Al Viro | fceef39 | 2015-12-29 15:58:39 -0500 | [diff] [blame] | 4728 | DEFINE_DELAYED_CALL(done); |
Al Viro | 6b25539 | 2015-11-17 10:20:54 -0500 | [diff] [blame] | 4729 | int res = readlink_copy(buffer, buflen, |
| 4730 | page_get_link(dentry, d_inode(dentry), |
Al Viro | fceef39 | 2015-12-29 15:58:39 -0500 | [diff] [blame] | 4731 | &done)); |
| 4732 | do_delayed_call(&done); |
Al Viro | aa80dea | 2015-11-16 18:26:34 -0500 | [diff] [blame] | 4733 | return res; |
| 4734 | } |
| 4735 | EXPORT_SYMBOL(page_readlink); |
| 4736 | |
Nick Piggin | 54566b2 | 2009-01-04 12:00:53 -0800 | [diff] [blame] | 4737 | /* |
| 4738 | * The nofs argument instructs pagecache_write_begin to pass AOP_FLAG_NOFS |
| 4739 | */ |
| 4740 | 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] | 4741 | { |
| 4742 | struct address_space *mapping = inode->i_mapping; |
Kirill Korotaev | 0adb25d | 2006-03-11 03:27:13 -0800 | [diff] [blame] | 4743 | struct page *page; |
Nick Piggin | afddba4 | 2007-10-16 01:25:01 -0700 | [diff] [blame] | 4744 | void *fsdata; |
Dmitriy Monakhov | beb497a | 2007-02-16 01:27:18 -0800 | [diff] [blame] | 4745 | int err; |
Tetsuo Handa | c718a97 | 2017-05-08 15:58:59 -0700 | [diff] [blame] | 4746 | unsigned int flags = 0; |
Nick Piggin | 54566b2 | 2009-01-04 12:00:53 -0800 | [diff] [blame] | 4747 | if (nofs) |
| 4748 | flags |= AOP_FLAG_NOFS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4749 | |
NeilBrown | 7e53cac | 2006-03-25 03:07:57 -0800 | [diff] [blame] | 4750 | retry: |
Nick Piggin | afddba4 | 2007-10-16 01:25:01 -0700 | [diff] [blame] | 4751 | err = pagecache_write_begin(NULL, mapping, 0, len-1, |
Nick Piggin | 54566b2 | 2009-01-04 12:00:53 -0800 | [diff] [blame] | 4752 | flags, &page, &fsdata); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4753 | if (err) |
Nick Piggin | afddba4 | 2007-10-16 01:25:01 -0700 | [diff] [blame] | 4754 | goto fail; |
| 4755 | |
Al Viro | 21fc61c | 2015-11-17 01:07:57 -0500 | [diff] [blame] | 4756 | memcpy(page_address(page), symname, len-1); |
Nick Piggin | afddba4 | 2007-10-16 01:25:01 -0700 | [diff] [blame] | 4757 | |
| 4758 | err = pagecache_write_end(NULL, mapping, 0, len-1, len-1, |
| 4759 | page, fsdata); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4760 | if (err < 0) |
| 4761 | goto fail; |
Nick Piggin | afddba4 | 2007-10-16 01:25:01 -0700 | [diff] [blame] | 4762 | if (err < len-1) |
| 4763 | goto retry; |
| 4764 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4765 | mark_inode_dirty(inode); |
| 4766 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4767 | fail: |
| 4768 | return err; |
| 4769 | } |
Al Viro | 4d35950 | 2014-03-14 12:20:17 -0400 | [diff] [blame] | 4770 | EXPORT_SYMBOL(__page_symlink); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4771 | |
Kirill Korotaev | 0adb25d | 2006-03-11 03:27:13 -0800 | [diff] [blame] | 4772 | int page_symlink(struct inode *inode, const char *symname, int len) |
| 4773 | { |
| 4774 | return __page_symlink(inode, symname, len, |
Michal Hocko | c62d255 | 2015-11-06 16:28:49 -0800 | [diff] [blame] | 4775 | !mapping_gfp_constraint(inode->i_mapping, __GFP_FS)); |
Kirill Korotaev | 0adb25d | 2006-03-11 03:27:13 -0800 | [diff] [blame] | 4776 | } |
Al Viro | 4d35950 | 2014-03-14 12:20:17 -0400 | [diff] [blame] | 4777 | EXPORT_SYMBOL(page_symlink); |
Kirill Korotaev | 0adb25d | 2006-03-11 03:27:13 -0800 | [diff] [blame] | 4778 | |
Arjan van de Ven | 92e1d5b | 2007-02-12 00:55:39 -0800 | [diff] [blame] | 4779 | const struct inode_operations page_symlink_inode_operations = { |
Al Viro | 6b25539 | 2015-11-17 10:20:54 -0500 | [diff] [blame] | 4780 | .get_link = page_get_link, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4781 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4782 | EXPORT_SYMBOL(page_symlink_inode_operations); |