blob: 840201c4c29062ff315cd71251a20ffb9bd71134 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/fs/namei.c
3 *
4 * Copyright (C) 1991, 1992 Linus Torvalds
5 */
6
7/*
8 * Some corrections by tytso.
9 */
10
11/* [Feb 1997 T. Schoebel-Theuer] Complete rewrite of the pathname
12 * lookup logic.
13 */
14/* [Feb-Apr 2000, AV] Rewrite to the new namespace architecture.
15 */
16
17#include <linux/init.h>
Paul Gortmaker630d9c42011-11-16 23:57:37 -050018#include <linux/export.h>
David S. Miller44696902012-05-23 20:12:50 -070019#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/slab.h>
21#include <linux/fs.h>
22#include <linux/namei.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/pagemap.h>
Robert Love0eeca282005-07-12 17:06:03 -040024#include <linux/fsnotify.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/personality.h>
26#include <linux/security.h>
Mimi Zohar6146f0d2009-02-04 09:06:57 -050027#include <linux/ima.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/syscalls.h>
29#include <linux/mount.h>
30#include <linux/audit.h>
Randy Dunlap16f7e0f2006-01-11 12:17:46 -080031#include <linux/capability.h>
Trond Myklebust834f2a42005-10-18 14:20:16 -070032#include <linux/file.h>
Ulrich Drepper5590ff02006-01-18 17:43:53 -080033#include <linux/fcntl.h>
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -070034#include <linux/device_cgroup.h>
Al Viro5ad4e532009-03-29 19:50:06 -040035#include <linux/fs_struct.h>
Linus Torvaldse77819e2011-07-22 19:30:19 -070036#include <linux/posix_acl.h>
Linus Torvalds99d263d2014-09-13 11:30:10 -070037#include <linux/hash.h>
George Spelvin2a18da7a2016-05-23 07:43:58 -040038#include <linux/bitops.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <asm/uaccess.h>
40
Eric Parise81e3f42009-12-04 15:47:36 -050041#include "internal.h"
Al Viroc7105362011-11-24 18:22:03 -050042#include "mount.h"
Eric Parise81e3f42009-12-04 15:47:36 -050043
Linus Torvalds1da177e2005-04-16 15:20:36 -070044/* [Feb-1997 T. Schoebel-Theuer]
45 * Fundamental changes in the pathname lookup mechanisms (namei)
46 * were necessary because of omirr. The reason is that omirr needs
47 * to know the _real_ pathname, not the user-supplied one, in case
48 * of symlinks (and also when transname replacements occur).
49 *
50 * The new code replaces the old recursive symlink resolution with
51 * an iterative one (in case of non-nested symlink chains). It does
52 * this with calls to <fs>_follow_link().
53 * As a side effect, dir_namei(), _namei() and follow_link() are now
54 * replaced with a single function lookup_dentry() that can handle all
55 * the special cases of the former code.
56 *
57 * With the new dcache, the pathname is stored at each inode, at least as
58 * long as the refcount of the inode is positive. As a side effect, the
59 * size of the dcache depends on the inode cache and thus is dynamic.
60 *
61 * [29-Apr-1998 C. Scott Ananian] Updated above description of symlink
62 * resolution to correspond with current state of the code.
63 *
64 * Note that the symlink resolution is not *completely* iterative.
65 * There is still a significant amount of tail- and mid- recursion in
66 * the algorithm. Also, note that <fs>_readlink() is not used in
67 * lookup_dentry(): lookup_dentry() on the result of <fs>_readlink()
68 * may return different results than <fs>_follow_link(). Many virtual
69 * filesystems (including /proc) exhibit this behavior.
70 */
71
72/* [24-Feb-97 T. Schoebel-Theuer] Side effects caused by new implementation:
73 * New symlink semantics: when open() is called with flags O_CREAT | O_EXCL
74 * and the name already exists in form of a symlink, try to create the new
75 * name indicated by the symlink. The old code always complained that the
76 * name already exists, due to not following the symlink even if its target
77 * is nonexistent. The new semantics affects also mknod() and link() when
Lucas De Marchi25985ed2011-03-30 22:57:33 -030078 * the name is a symlink pointing to a non-existent name.
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 *
80 * I don't know which semantics is the right one, since I have no access
81 * to standards. But I found by trial that HP-UX 9.0 has the full "new"
82 * semantics implemented, while SunOS 4.1.1 and Solaris (SunOS 5.4) have the
83 * "old" one. Personally, I think the new semantics is much more logical.
84 * Note that "ln old new" where "new" is a symlink pointing to a non-existing
85 * file does succeed in both HP-UX and SunOs, but not in Solaris
86 * and in the old Linux semantics.
87 */
88
89/* [16-Dec-97 Kevin Buhr] For security reasons, we change some symlink
90 * semantics. See the comments in "open_namei" and "do_link" below.
91 *
92 * [10-Sep-98 Alan Modra] Another symlink change.
93 */
94
95/* [Feb-Apr 2000 AV] Complete rewrite. Rules for symlinks:
96 * inside the path - always follow.
97 * in the last component in creation/removal/renaming - never follow.
98 * if LOOKUP_FOLLOW passed - follow.
99 * if the pathname has trailing slashes - follow.
100 * otherwise - don't follow.
101 * (applied in that order).
102 *
103 * [Jun 2000 AV] Inconsistent behaviour of open() in case if flags==O_CREAT
104 * restored for 2.4. This is the last surviving part of old 4.2BSD bug.
105 * During the 2.4 we need to fix the userland stuff depending on it -
106 * hopefully we will be able to get rid of that wart in 2.5. So far only
107 * XEmacs seems to be relying on it...
108 */
109/*
110 * [Sep 2001 AV] Single-semaphore locking scheme (kudos to David Holland)
Arjan van de Vena11f3a02006-03-23 03:00:33 -0800111 * implemented. Let's see if raised priority of ->s_vfs_rename_mutex gives
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 * any extra contention...
113 */
114
115/* In order to reduce some races, while at the same time doing additional
116 * checking and hopefully speeding things up, we copy filenames to the
117 * kernel data space before using them..
118 *
119 * POSIX.1 2.4: an empty pathname is invalid (ENOENT).
120 * PATH_MAX includes the nul terminator --RR.
121 */
Jeff Layton91a27b22012-10-10 15:25:28 -0400122
Al Virofd2f7cb2015-02-22 20:07:13 -0500123#define EMBEDDED_NAME_MAX (PATH_MAX - offsetof(struct filename, iname))
Jeff Layton7950e382012-10-10 16:43:13 -0400124
David Drysdale51f39a12014-12-12 16:57:29 -0800125struct filename *
Jeff Layton91a27b22012-10-10 15:25:28 -0400126getname_flags(const char __user *filename, int flags, int *empty)
127{
Al Viro94b5d262015-02-22 19:38:03 -0500128 struct filename *result;
Jeff Layton7950e382012-10-10 16:43:13 -0400129 char *kname;
Al Viro94b5d262015-02-22 19:38:03 -0500130 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
Jeff Layton7ac86262012-10-10 15:25:28 -0400132 result = audit_reusename(filename);
133 if (result)
134 return result;
135
Jeff Layton7950e382012-10-10 16:43:13 -0400136 result = __getname();
Linus Torvalds3f9f0aa2012-04-28 14:38:32 -0700137 if (unlikely(!result))
Eric Paris4043cde2012-01-03 14:23:08 -0500138 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
Jeff Layton7950e382012-10-10 16:43:13 -0400140 /*
141 * First, try to embed the struct filename inside the names_cache
142 * allocation
143 */
Al Virofd2f7cb2015-02-22 20:07:13 -0500144 kname = (char *)result->iname;
Jeff Layton91a27b22012-10-10 15:25:28 -0400145 result->name = kname;
Jeff Layton7950e382012-10-10 16:43:13 -0400146
Al Viro94b5d262015-02-22 19:38:03 -0500147 len = strncpy_from_user(kname, filename, EMBEDDED_NAME_MAX);
Jeff Layton91a27b22012-10-10 15:25:28 -0400148 if (unlikely(len < 0)) {
Al Viro94b5d262015-02-22 19:38:03 -0500149 __putname(result);
150 return ERR_PTR(len);
Jeff Layton91a27b22012-10-10 15:25:28 -0400151 }
Linus Torvalds3f9f0aa2012-04-28 14:38:32 -0700152
Jeff Layton7950e382012-10-10 16:43:13 -0400153 /*
154 * Uh-oh. We have a name that's approaching PATH_MAX. Allocate a
155 * separate struct filename so we can dedicate the entire
156 * names_cache allocation for the pathname, and re-do the copy from
157 * userland.
158 */
Al Viro94b5d262015-02-22 19:38:03 -0500159 if (unlikely(len == EMBEDDED_NAME_MAX)) {
Al Virofd2f7cb2015-02-22 20:07:13 -0500160 const size_t size = offsetof(struct filename, iname[1]);
Jeff Layton7950e382012-10-10 16:43:13 -0400161 kname = (char *)result;
162
Al Virofd2f7cb2015-02-22 20:07:13 -0500163 /*
164 * size is chosen that way we to guarantee that
165 * result->iname[0] is within the same object and that
166 * kname can't be equal to result->iname, no matter what.
167 */
168 result = kzalloc(size, GFP_KERNEL);
Al Viro94b5d262015-02-22 19:38:03 -0500169 if (unlikely(!result)) {
170 __putname(kname);
171 return ERR_PTR(-ENOMEM);
Jeff Layton7950e382012-10-10 16:43:13 -0400172 }
173 result->name = kname;
Al Viro94b5d262015-02-22 19:38:03 -0500174 len = strncpy_from_user(kname, filename, PATH_MAX);
175 if (unlikely(len < 0)) {
176 __putname(kname);
177 kfree(result);
178 return ERR_PTR(len);
179 }
180 if (unlikely(len == PATH_MAX)) {
181 __putname(kname);
182 kfree(result);
183 return ERR_PTR(-ENAMETOOLONG);
184 }
Jeff Layton7950e382012-10-10 16:43:13 -0400185 }
186
Al Viro94b5d262015-02-22 19:38:03 -0500187 result->refcnt = 1;
Linus Torvalds3f9f0aa2012-04-28 14:38:32 -0700188 /* The empty path is special. */
189 if (unlikely(!len)) {
190 if (empty)
Eric Paris4043cde2012-01-03 14:23:08 -0500191 *empty = 1;
Al Viro94b5d262015-02-22 19:38:03 -0500192 if (!(flags & LOOKUP_EMPTY)) {
193 putname(result);
194 return ERR_PTR(-ENOENT);
195 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 }
Linus Torvalds3f9f0aa2012-04-28 14:38:32 -0700197
Jeff Layton7950e382012-10-10 16:43:13 -0400198 result->uptr = filename;
Linus Torvaldsc4ad8f92014-02-05 12:54:53 -0800199 result->aname = NULL;
Jeff Layton7950e382012-10-10 16:43:13 -0400200 audit_getname(result);
201 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202}
203
Jeff Layton91a27b22012-10-10 15:25:28 -0400204struct filename *
205getname(const char __user * filename)
Al Virof52e0c12011-03-14 18:56:51 -0400206{
Linus Torvaldsf7493e52012-03-22 16:10:40 -0700207 return getname_flags(filename, 0, NULL);
Al Virof52e0c12011-03-14 18:56:51 -0400208}
209
Linus Torvaldsc4ad8f92014-02-05 12:54:53 -0800210struct filename *
211getname_kernel(const char * filename)
212{
213 struct filename *result;
Paul Moore08518542015-01-21 23:59:56 -0500214 int len = strlen(filename) + 1;
Linus Torvaldsc4ad8f92014-02-05 12:54:53 -0800215
216 result = __getname();
217 if (unlikely(!result))
218 return ERR_PTR(-ENOMEM);
219
Paul Moore08518542015-01-21 23:59:56 -0500220 if (len <= EMBEDDED_NAME_MAX) {
Al Virofd2f7cb2015-02-22 20:07:13 -0500221 result->name = (char *)result->iname;
Paul Moore08518542015-01-21 23:59:56 -0500222 } else if (len <= PATH_MAX) {
223 struct filename *tmp;
224
225 tmp = kmalloc(sizeof(*tmp), GFP_KERNEL);
226 if (unlikely(!tmp)) {
227 __putname(result);
228 return ERR_PTR(-ENOMEM);
229 }
230 tmp->name = (char *)result;
Paul Moore08518542015-01-21 23:59:56 -0500231 result = tmp;
232 } else {
233 __putname(result);
234 return ERR_PTR(-ENAMETOOLONG);
235 }
236 memcpy((char *)result->name, filename, len);
Linus Torvaldsc4ad8f92014-02-05 12:54:53 -0800237 result->uptr = NULL;
238 result->aname = NULL;
Paul Moore55422d02015-01-22 00:00:23 -0500239 result->refcnt = 1;
Paul Moorefd3522f2015-01-22 00:00:10 -0500240 audit_getname(result);
Linus Torvaldsc4ad8f92014-02-05 12:54:53 -0800241
Linus Torvaldsc4ad8f92014-02-05 12:54:53 -0800242 return result;
243}
244
Jeff Layton91a27b22012-10-10 15:25:28 -0400245void putname(struct filename *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246{
Paul Moore55422d02015-01-22 00:00:23 -0500247 BUG_ON(name->refcnt <= 0);
248
249 if (--name->refcnt > 0)
250 return;
251
Al Virofd2f7cb2015-02-22 20:07:13 -0500252 if (name->name != name->iname) {
Paul Moore55422d02015-01-22 00:00:23 -0500253 __putname(name->name);
254 kfree(name);
255 } else
256 __putname(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
Linus Torvaldse77819e2011-07-22 19:30:19 -0700259static int check_acl(struct inode *inode, int mask)
260{
Linus Torvalds84635d62011-07-25 22:47:03 -0700261#ifdef CONFIG_FS_POSIX_ACL
Linus Torvaldse77819e2011-07-22 19:30:19 -0700262 struct posix_acl *acl;
263
Linus Torvaldse77819e2011-07-22 19:30:19 -0700264 if (mask & MAY_NOT_BLOCK) {
Al Viro35678662011-08-02 21:32:13 -0400265 acl = get_cached_acl_rcu(inode, ACL_TYPE_ACCESS);
266 if (!acl)
Linus Torvaldse77819e2011-07-22 19:30:19 -0700267 return -EAGAIN;
Al Viro35678662011-08-02 21:32:13 -0400268 /* no ->get_acl() calls in RCU mode... */
Andreas Gruenbacherb8a7a3a2016-03-24 14:38:37 +0100269 if (is_uncached_acl(acl))
Al Viro35678662011-08-02 21:32:13 -0400270 return -ECHILD;
Ari Savolainen206b1d02011-08-06 19:43:07 +0300271 return posix_acl_permission(inode, acl, mask & ~MAY_NOT_BLOCK);
Linus Torvaldse77819e2011-07-22 19:30:19 -0700272 }
273
Christoph Hellwig2982baa2013-12-20 05:16:38 -0800274 acl = get_acl(inode, ACL_TYPE_ACCESS);
275 if (IS_ERR(acl))
276 return PTR_ERR(acl);
Linus Torvaldse77819e2011-07-22 19:30:19 -0700277 if (acl) {
278 int error = posix_acl_permission(inode, acl, mask);
279 posix_acl_release(acl);
280 return error;
281 }
Linus Torvalds84635d62011-07-25 22:47:03 -0700282#endif
Linus Torvaldse77819e2011-07-22 19:30:19 -0700283
284 return -EAGAIN;
285}
286
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700287/*
Andreas Gruenbacher948409c2011-10-23 23:13:33 +0530288 * This does the basic permission checking
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700289 */
Al Viro7e401452011-06-20 19:12:17 -0400290static int acl_permission_check(struct inode *inode, int mask)
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700291{
Linus Torvalds26cf46b2011-05-13 11:51:01 -0700292 unsigned int mode = inode->i_mode;
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700293
Eric W. Biederman8e96e3b2012-03-03 21:17:15 -0800294 if (likely(uid_eq(current_fsuid(), inode->i_uid)))
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700295 mode >>= 6;
296 else {
Linus Torvaldse77819e2011-07-22 19:30:19 -0700297 if (IS_POSIXACL(inode) && (mode & S_IRWXG)) {
Al Viro7e401452011-06-20 19:12:17 -0400298 int error = check_acl(inode, mask);
Nick Pigginb74c79e2011-01-07 17:49:58 +1100299 if (error != -EAGAIN)
300 return error;
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700301 }
302
303 if (in_group_p(inode->i_gid))
304 mode >>= 3;
305 }
306
307 /*
308 * If the DACs are ok we don't need any capability check.
309 */
Al Viro9c2c7032011-06-20 19:06:22 -0400310 if ((mask & ~mode & (MAY_READ | MAY_WRITE | MAY_EXEC)) == 0)
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700311 return 0;
312 return -EACCES;
313}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
315/**
Nick Pigginb74c79e2011-01-07 17:49:58 +1100316 * generic_permission - check for access rights on a Posix-like filesystem
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 * @inode: inode to check access rights for
Andreas Gruenbacher8fd90c82011-10-23 23:13:30 +0530318 * @mask: right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 *
320 * Used to check for read/write/execute permissions on a file.
321 * We use "fsuid" for this, letting us set arbitrary permissions
322 * for filesystem access without changing the "normal" uids which
Nick Pigginb74c79e2011-01-07 17:49:58 +1100323 * are used for other things.
324 *
325 * generic_permission is rcu-walk aware. It returns -ECHILD in case an rcu-walk
326 * request cannot be satisfied (eg. requires blocking or too much complexity).
327 * It would then be called again in ref-walk mode.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 */
Al Viro2830ba72011-06-20 19:16:29 -0400329int generic_permission(struct inode *inode, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330{
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700331 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332
333 /*
Andreas Gruenbacher948409c2011-10-23 23:13:33 +0530334 * Do the basic permission checks.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 */
Al Viro7e401452011-06-20 19:12:17 -0400336 ret = acl_permission_check(inode, mask);
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700337 if (ret != -EACCES)
338 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339
Al Virod594e7e2011-06-20 19:55:42 -0400340 if (S_ISDIR(inode->i_mode)) {
341 /* DACs are overridable for directories */
Andy Lutomirski23adbe12014-06-10 12:45:42 -0700342 if (capable_wrt_inode_uidgid(inode, CAP_DAC_OVERRIDE))
Al Virod594e7e2011-06-20 19:55:42 -0400343 return 0;
344 if (!(mask & MAY_WRITE))
Andy Lutomirski23adbe12014-06-10 12:45:42 -0700345 if (capable_wrt_inode_uidgid(inode,
346 CAP_DAC_READ_SEARCH))
Al Virod594e7e2011-06-20 19:55:42 -0400347 return 0;
348 return -EACCES;
349 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 /*
351 * Read/write DACs are always overridable.
Al Virod594e7e2011-06-20 19:55:42 -0400352 * Executable DACs are overridable when there is
353 * at least one exec bit set.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 */
Al Virod594e7e2011-06-20 19:55:42 -0400355 if (!(mask & MAY_EXEC) || (inode->i_mode & S_IXUGO))
Andy Lutomirski23adbe12014-06-10 12:45:42 -0700356 if (capable_wrt_inode_uidgid(inode, CAP_DAC_OVERRIDE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 return 0;
358
359 /*
360 * Searching includes executable on directories, else just read.
361 */
Serge E. Hallyn7ea66002009-12-29 14:50:19 -0600362 mask &= MAY_READ | MAY_WRITE | MAY_EXEC;
Al Virod594e7e2011-06-20 19:55:42 -0400363 if (mask == MAY_READ)
Andy Lutomirski23adbe12014-06-10 12:45:42 -0700364 if (capable_wrt_inode_uidgid(inode, CAP_DAC_READ_SEARCH))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 return 0;
366
367 return -EACCES;
368}
Al Viro4d359502014-03-14 12:20:17 -0400369EXPORT_SYMBOL(generic_permission);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
Linus Torvalds3ddcd052011-08-06 22:45:50 -0700371/*
372 * We _really_ want to just do "generic_permission()" without
373 * even looking at the inode->i_op values. So we keep a cache
374 * flag in inode->i_opflags, that says "this has not special
375 * permission function, use the fast case".
376 */
377static inline int do_inode_permission(struct inode *inode, int mask)
378{
379 if (unlikely(!(inode->i_opflags & IOP_FASTPERM))) {
380 if (likely(inode->i_op->permission))
381 return inode->i_op->permission(inode, mask);
382
383 /* This gets set once for the inode lifetime */
384 spin_lock(&inode->i_lock);
385 inode->i_opflags |= IOP_FASTPERM;
386 spin_unlock(&inode->i_lock);
387 }
388 return generic_permission(inode, mask);
389}
390
Christoph Hellwigcb23beb2008-10-24 09:59:29 +0200391/**
David Howells0bdaea92012-06-25 12:55:46 +0100392 * __inode_permission - Check for access rights to a given inode
393 * @inode: Inode to check permission on
394 * @mask: Right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
Christoph Hellwigcb23beb2008-10-24 09:59:29 +0200395 *
David Howells0bdaea92012-06-25 12:55:46 +0100396 * Check for read/write/execute permissions on an inode.
Andreas Gruenbacher948409c2011-10-23 23:13:33 +0530397 *
398 * When checking for MAY_APPEND, MAY_WRITE must also be set in @mask.
David Howells0bdaea92012-06-25 12:55:46 +0100399 *
400 * This does not check for a read-only file system. You probably want
401 * inode_permission().
Christoph Hellwigcb23beb2008-10-24 09:59:29 +0200402 */
David Howells0bdaea92012-06-25 12:55:46 +0100403int __inode_permission(struct inode *inode, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404{
Al Viroe6305c42008-07-15 21:03:57 -0400405 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406
Linus Torvalds3ddcd052011-08-06 22:45:50 -0700407 if (unlikely(mask & MAY_WRITE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 /*
409 * Nobody gets write access to an immutable file.
410 */
411 if (IS_IMMUTABLE(inode))
412 return -EACCES;
Eric W. Biederman0bd23d092016-06-29 14:54:46 -0500413
414 /*
415 * Updating mtime will likely cause i_uid and i_gid to be
416 * written back improperly if their true value is unknown
417 * to the vfs.
418 */
419 if (HAS_UNMAPPED_ID(inode))
420 return -EACCES;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 }
422
Linus Torvalds3ddcd052011-08-06 22:45:50 -0700423 retval = do_inode_permission(inode, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 if (retval)
425 return retval;
426
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700427 retval = devcgroup_inode_permission(inode, mask);
428 if (retval)
429 return retval;
430
Eric Parisd09ca732010-07-23 11:43:57 -0400431 return security_inode_permission(inode, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432}
Miklos Szeredibd5d0852014-10-24 00:14:35 +0200433EXPORT_SYMBOL(__inode_permission);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434
Al Virof4d6ff82011-06-19 13:14:21 -0400435/**
David Howells0bdaea92012-06-25 12:55:46 +0100436 * sb_permission - Check superblock-level permissions
437 * @sb: Superblock of inode to check permission on
Randy Dunlap55852632012-08-18 17:39:25 -0700438 * @inode: Inode to check permission on
David Howells0bdaea92012-06-25 12:55:46 +0100439 * @mask: Right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
440 *
441 * Separate out file-system wide checks from inode-specific permission checks.
442 */
443static int sb_permission(struct super_block *sb, struct inode *inode, int mask)
444{
445 if (unlikely(mask & MAY_WRITE)) {
446 umode_t mode = inode->i_mode;
447
448 /* Nobody gets write access to a read-only fs. */
449 if ((sb->s_flags & MS_RDONLY) &&
450 (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode)))
451 return -EROFS;
452 }
453 return 0;
454}
455
456/**
457 * inode_permission - Check for access rights to a given inode
458 * @inode: Inode to check permission on
459 * @mask: Right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
460 *
461 * Check for read/write/execute permissions on an inode. We use fs[ug]id for
462 * this, letting us set arbitrary permissions for filesystem access without
463 * changing the "normal" UIDs which are used for other things.
464 *
465 * When checking for MAY_APPEND, MAY_WRITE must also be set in @mask.
466 */
467int inode_permission(struct inode *inode, int mask)
468{
469 int retval;
470
471 retval = sb_permission(inode->i_sb, inode, mask);
472 if (retval)
473 return retval;
474 return __inode_permission(inode, mask);
475}
Al Viro4d359502014-03-14 12:20:17 -0400476EXPORT_SYMBOL(inode_permission);
David Howells0bdaea92012-06-25 12:55:46 +0100477
478/**
Jan Blunck5dd784d02008-02-14 19:34:38 -0800479 * path_get - get a reference to a path
480 * @path: path to get the reference to
481 *
482 * Given a path increment the reference count to the dentry and the vfsmount.
483 */
Al Virodcf787f2013-03-01 23:51:07 -0500484void path_get(const struct path *path)
Jan Blunck5dd784d02008-02-14 19:34:38 -0800485{
486 mntget(path->mnt);
487 dget(path->dentry);
488}
489EXPORT_SYMBOL(path_get);
490
491/**
Jan Blunck1d957f92008-02-14 19:34:35 -0800492 * path_put - put a reference to a path
493 * @path: path to put the reference to
494 *
495 * Given a path decrement the reference count to the dentry and the vfsmount.
496 */
Al Virodcf787f2013-03-01 23:51:07 -0500497void path_put(const struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498{
Jan Blunck1d957f92008-02-14 19:34:35 -0800499 dput(path->dentry);
500 mntput(path->mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501}
Jan Blunck1d957f92008-02-14 19:34:35 -0800502EXPORT_SYMBOL(path_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503
Al Viro894bc8c2015-05-02 07:16:16 -0400504#define EMBEDDED_LEVELS 2
Al Viro1f55a6e2014-11-01 19:30:41 -0400505struct nameidata {
506 struct path path;
Al Viro1cf26652015-05-06 16:01:56 -0400507 struct qstr last;
Al Viro1f55a6e2014-11-01 19:30:41 -0400508 struct path root;
509 struct inode *inode; /* path.dentry.d_inode */
510 unsigned int flags;
Al Viro9883d182015-05-13 07:28:08 -0400511 unsigned seq, m_seq;
Al Viro1f55a6e2014-11-01 19:30:41 -0400512 int last_type;
513 unsigned depth;
NeilBrown756daf22015-03-23 13:37:38 +1100514 int total_link_count;
Al Viro697fc6c2015-05-02 19:38:35 -0400515 struct saved {
516 struct path link;
Al Virofceef392015-12-29 15:58:39 -0500517 struct delayed_call done;
Al Viro697fc6c2015-05-02 19:38:35 -0400518 const char *name;
Al Viro0450b2d2015-05-08 13:23:53 -0400519 unsigned seq;
Al Viro894bc8c2015-05-02 07:16:16 -0400520 } *stack, internal[EMBEDDED_LEVELS];
Al Viro9883d182015-05-13 07:28:08 -0400521 struct filename *name;
522 struct nameidata *saved;
Al Virofceef392015-12-29 15:58:39 -0500523 struct inode *link_inode;
Al Viro9883d182015-05-13 07:28:08 -0400524 unsigned root_seq;
525 int dfd;
Al Viro1f55a6e2014-11-01 19:30:41 -0400526};
527
Al Viro9883d182015-05-13 07:28:08 -0400528static void set_nameidata(struct nameidata *p, int dfd, struct filename *name)
Al Viro894bc8c2015-05-02 07:16:16 -0400529{
NeilBrown756daf22015-03-23 13:37:38 +1100530 struct nameidata *old = current->nameidata;
531 p->stack = p->internal;
Al Viroc8a53ee2015-05-12 18:43:07 -0400532 p->dfd = dfd;
533 p->name = name;
NeilBrown756daf22015-03-23 13:37:38 +1100534 p->total_link_count = old ? old->total_link_count : 0;
Al Viro9883d182015-05-13 07:28:08 -0400535 p->saved = old;
NeilBrown756daf22015-03-23 13:37:38 +1100536 current->nameidata = p;
Al Viro894bc8c2015-05-02 07:16:16 -0400537}
538
Al Viro9883d182015-05-13 07:28:08 -0400539static void restore_nameidata(void)
Al Viro894bc8c2015-05-02 07:16:16 -0400540{
Al Viro9883d182015-05-13 07:28:08 -0400541 struct nameidata *now = current->nameidata, *old = now->saved;
NeilBrown756daf22015-03-23 13:37:38 +1100542
543 current->nameidata = old;
544 if (old)
545 old->total_link_count = now->total_link_count;
Al Viroe1a63bb2015-12-05 21:06:33 -0500546 if (now->stack != now->internal)
NeilBrown756daf22015-03-23 13:37:38 +1100547 kfree(now->stack);
Al Viro894bc8c2015-05-02 07:16:16 -0400548}
549
550static int __nd_alloc_stack(struct nameidata *nd)
551{
Al Virobc40aee2015-05-09 13:04:24 -0400552 struct saved *p;
553
554 if (nd->flags & LOOKUP_RCU) {
555 p= kmalloc(MAXSYMLINKS * sizeof(struct saved),
556 GFP_ATOMIC);
557 if (unlikely(!p))
558 return -ECHILD;
559 } else {
560 p= kmalloc(MAXSYMLINKS * sizeof(struct saved),
Al Viro894bc8c2015-05-02 07:16:16 -0400561 GFP_KERNEL);
Al Virobc40aee2015-05-09 13:04:24 -0400562 if (unlikely(!p))
563 return -ENOMEM;
564 }
Al Viro894bc8c2015-05-02 07:16:16 -0400565 memcpy(p, nd->internal, sizeof(nd->internal));
566 nd->stack = p;
567 return 0;
568}
569
Eric W. Biederman397d4252015-08-15 20:27:13 -0500570/**
571 * path_connected - Verify that a path->dentry is below path->mnt.mnt_root
572 * @path: nameidate to verify
573 *
574 * Rename can sometimes move a file or directory outside of a bind
575 * mount, path_connected allows those cases to be detected.
576 */
577static bool path_connected(const struct path *path)
578{
579 struct vfsmount *mnt = path->mnt;
580
581 /* Only bind mounts can have disconnected paths */
582 if (mnt->mnt_root == mnt->mnt_sb->s_root)
583 return true;
584
585 return is_subdir(path->dentry, mnt->mnt_root);
586}
587
Al Viro894bc8c2015-05-02 07:16:16 -0400588static inline int nd_alloc_stack(struct nameidata *nd)
589{
Al Viroda4e0be2015-05-03 20:52:15 -0400590 if (likely(nd->depth != EMBEDDED_LEVELS))
Al Viro894bc8c2015-05-02 07:16:16 -0400591 return 0;
592 if (likely(nd->stack != nd->internal))
593 return 0;
594 return __nd_alloc_stack(nd);
595}
596
Al Viro79733872015-05-09 12:55:43 -0400597static void drop_links(struct nameidata *nd)
598{
599 int i = nd->depth;
600 while (i--) {
601 struct saved *last = nd->stack + i;
Al Virofceef392015-12-29 15:58:39 -0500602 do_delayed_call(&last->done);
603 clear_delayed_call(&last->done);
Al Viro79733872015-05-09 12:55:43 -0400604 }
605}
606
607static void terminate_walk(struct nameidata *nd)
608{
609 drop_links(nd);
610 if (!(nd->flags & LOOKUP_RCU)) {
611 int i;
612 path_put(&nd->path);
613 for (i = 0; i < nd->depth; i++)
614 path_put(&nd->stack[i].link);
Al Viro102b8af2015-05-12 17:35:52 -0400615 if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT)) {
616 path_put(&nd->root);
617 nd->root.mnt = NULL;
618 }
Al Viro79733872015-05-09 12:55:43 -0400619 } else {
620 nd->flags &= ~LOOKUP_RCU;
621 if (!(nd->flags & LOOKUP_ROOT))
622 nd->root.mnt = NULL;
623 rcu_read_unlock();
624 }
625 nd->depth = 0;
626}
627
628/* path_put is needed afterwards regardless of success or failure */
629static bool legitimize_path(struct nameidata *nd,
630 struct path *path, unsigned seq)
631{
632 int res = __legitimize_mnt(path->mnt, nd->m_seq);
633 if (unlikely(res)) {
634 if (res > 0)
635 path->mnt = NULL;
636 path->dentry = NULL;
637 return false;
638 }
639 if (unlikely(!lockref_get_not_dead(&path->dentry->d_lockref))) {
640 path->dentry = NULL;
641 return false;
642 }
643 return !read_seqcount_retry(&path->dentry->d_seq, seq);
644}
645
646static bool legitimize_links(struct nameidata *nd)
647{
648 int i;
649 for (i = 0; i < nd->depth; i++) {
650 struct saved *last = nd->stack + i;
651 if (unlikely(!legitimize_path(nd, &last->link, last->seq))) {
652 drop_links(nd);
653 nd->depth = i + 1;
654 return false;
655 }
656 }
657 return true;
658}
659
Al Viro19660af2011-03-25 10:32:48 -0400660/*
Nick Piggin31e6b012011-01-07 17:49:52 +1100661 * Path walking has 2 modes, rcu-walk and ref-walk (see
Al Viro19660af2011-03-25 10:32:48 -0400662 * Documentation/filesystems/path-lookup.txt). In situations when we can't
663 * continue in RCU mode, we attempt to drop out of rcu-walk mode and grab
Mike Marshall57e37152015-11-30 11:11:59 -0500664 * normal reference counts on dentries and vfsmounts to transition to ref-walk
Al Viro19660af2011-03-25 10:32:48 -0400665 * mode. Refcounts are grabbed at the last known good point before rcu-walk
666 * got stuck, so ref-walk may continue from there. If this is not successful
667 * (eg. a seqcount has changed), then failure is returned and it's up to caller
668 * to restart the path walk from the beginning in ref-walk mode.
Nick Piggin31e6b012011-01-07 17:49:52 +1100669 */
Nick Piggin31e6b012011-01-07 17:49:52 +1100670
671/**
Al Viro19660af2011-03-25 10:32:48 -0400672 * unlazy_walk - try to switch to ref-walk mode.
673 * @nd: nameidata pathwalk data
674 * @dentry: child of nd->path.dentry or NULL
Al Viro6e9918b2015-05-05 09:26:05 -0400675 * @seq: seq number to check dentry against
Randy Dunlap39191622011-01-08 19:36:21 -0800676 * Returns: 0 on success, -ECHILD on failure
Nick Piggin31e6b012011-01-07 17:49:52 +1100677 *
Al Viro19660af2011-03-25 10:32:48 -0400678 * unlazy_walk attempts to legitimize the current nd->path, nd->root and dentry
679 * for ref-walk mode. @dentry must be a path found by a do_lookup call on
680 * @nd or NULL. Must be called from rcu-walk context.
Al Viro79733872015-05-09 12:55:43 -0400681 * Nothing should touch nameidata between unlazy_walk() failure and
682 * terminate_walk().
Nick Piggin31e6b012011-01-07 17:49:52 +1100683 */
Al Viro6e9918b2015-05-05 09:26:05 -0400684static int unlazy_walk(struct nameidata *nd, struct dentry *dentry, unsigned seq)
Nick Piggin31e6b012011-01-07 17:49:52 +1100685{
Nick Piggin31e6b012011-01-07 17:49:52 +1100686 struct dentry *parent = nd->path.dentry;
687
688 BUG_ON(!(nd->flags & LOOKUP_RCU));
Linus Torvaldse5c832d2013-09-08 18:13:49 -0700689
Linus Torvaldse5c832d2013-09-08 18:13:49 -0700690 nd->flags &= ~LOOKUP_RCU;
Al Viro79733872015-05-09 12:55:43 -0400691 if (unlikely(!legitimize_links(nd)))
692 goto out2;
693 if (unlikely(!legitimize_mnt(nd->path.mnt, nd->m_seq)))
694 goto out2;
695 if (unlikely(!lockref_get_not_dead(&parent->d_lockref)))
696 goto out1;
Al Viro48a066e2013-09-29 22:06:07 -0400697
Linus Torvalds15570082013-09-02 11:38:06 -0700698 /*
699 * For a negative lookup, the lookup sequence point is the parents
700 * sequence point, and it only needs to revalidate the parent dentry.
701 *
702 * For a positive lookup, we need to move both the parent and the
703 * dentry from the RCU domain to be properly refcounted. And the
704 * sequence number in the dentry validates *both* dentry counters,
705 * since we checked the sequence number of the parent after we got
706 * the child sequence number. So we know the parent must still
707 * be valid if the child sequence number is still valid.
708 */
Al Viro19660af2011-03-25 10:32:48 -0400709 if (!dentry) {
Linus Torvaldse5c832d2013-09-08 18:13:49 -0700710 if (read_seqcount_retry(&parent->d_seq, nd->seq))
711 goto out;
Al Viro19660af2011-03-25 10:32:48 -0400712 BUG_ON(nd->inode != parent->d_inode);
713 } else {
Linus Torvaldse5c832d2013-09-08 18:13:49 -0700714 if (!lockref_get_not_dead(&dentry->d_lockref))
715 goto out;
Al Viro6e9918b2015-05-05 09:26:05 -0400716 if (read_seqcount_retry(&dentry->d_seq, seq))
Linus Torvaldse5c832d2013-09-08 18:13:49 -0700717 goto drop_dentry;
Al Viro19660af2011-03-25 10:32:48 -0400718 }
Linus Torvaldse5c832d2013-09-08 18:13:49 -0700719
720 /*
721 * Sequence counts matched. Now make sure that the root is
722 * still valid and get it if required.
723 */
724 if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT)) {
Al Viro5a8d87e2015-05-12 00:10:18 -0400725 if (unlikely(!legitimize_path(nd, &nd->root, nd->root_seq))) {
726 rcu_read_unlock();
727 dput(dentry);
728 return -ECHILD;
Al Viro79733872015-05-09 12:55:43 -0400729 }
Nick Piggin31e6b012011-01-07 17:49:52 +1100730 }
Nick Piggin31e6b012011-01-07 17:49:52 +1100731
Al Viro8b61e742013-11-08 12:45:01 -0500732 rcu_read_unlock();
Nick Piggin31e6b012011-01-07 17:49:52 +1100733 return 0;
Al Viro19660af2011-03-25 10:32:48 -0400734
Linus Torvaldse5c832d2013-09-08 18:13:49 -0700735drop_dentry:
Al Viro8b61e742013-11-08 12:45:01 -0500736 rcu_read_unlock();
Linus Torvalds15570082013-09-02 11:38:06 -0700737 dput(dentry);
Linus Torvaldsd0d27272013-09-10 12:17:49 -0700738 goto drop_root_mnt;
Al Viro79733872015-05-09 12:55:43 -0400739out2:
740 nd->path.mnt = NULL;
741out1:
742 nd->path.dentry = NULL;
Linus Torvaldse5c832d2013-09-08 18:13:49 -0700743out:
Al Viro8b61e742013-11-08 12:45:01 -0500744 rcu_read_unlock();
Linus Torvaldsd0d27272013-09-10 12:17:49 -0700745drop_root_mnt:
746 if (!(nd->flags & LOOKUP_ROOT))
747 nd->root.mnt = NULL;
Nick Piggin31e6b012011-01-07 17:49:52 +1100748 return -ECHILD;
749}
750
Al Viro79733872015-05-09 12:55:43 -0400751static int unlazy_link(struct nameidata *nd, struct path *link, unsigned seq)
752{
753 if (unlikely(!legitimize_path(nd, link, seq))) {
754 drop_links(nd);
755 nd->depth = 0;
756 nd->flags &= ~LOOKUP_RCU;
757 nd->path.mnt = NULL;
758 nd->path.dentry = NULL;
759 if (!(nd->flags & LOOKUP_ROOT))
760 nd->root.mnt = NULL;
761 rcu_read_unlock();
762 } else if (likely(unlazy_walk(nd, NULL, 0)) == 0) {
763 return 0;
764 }
765 path_put(link);
766 return -ECHILD;
767}
768
Al Viro4ce16ef32012-06-10 16:10:59 -0400769static inline int d_revalidate(struct dentry *dentry, unsigned int flags)
Nick Piggin34286d62011-01-07 17:49:57 +1100770{
Al Viro4ce16ef32012-06-10 16:10:59 -0400771 return dentry->d_op->d_revalidate(dentry, flags);
Nick Piggin34286d62011-01-07 17:49:57 +1100772}
773
Al Viro9f1fafe2011-03-25 11:00:12 -0400774/**
775 * complete_walk - successful completion of path walk
776 * @nd: pointer nameidata
Jeff Layton39159de2009-12-07 12:01:50 -0500777 *
Al Viro9f1fafe2011-03-25 11:00:12 -0400778 * If we had been in RCU mode, drop out of it and legitimize nd->path.
779 * Revalidate the final result, unless we'd already done that during
780 * the path walk or the filesystem doesn't ask for it. Return 0 on
781 * success, -error on failure. In case of failure caller does not
782 * need to drop nd->path.
Jeff Layton39159de2009-12-07 12:01:50 -0500783 */
Al Viro9f1fafe2011-03-25 11:00:12 -0400784static int complete_walk(struct nameidata *nd)
Jeff Layton39159de2009-12-07 12:01:50 -0500785{
Al Viro16c2cd72011-02-22 15:50:10 -0500786 struct dentry *dentry = nd->path.dentry;
Jeff Layton39159de2009-12-07 12:01:50 -0500787 int status;
Jeff Layton39159de2009-12-07 12:01:50 -0500788
Al Viro9f1fafe2011-03-25 11:00:12 -0400789 if (nd->flags & LOOKUP_RCU) {
Al Viro9f1fafe2011-03-25 11:00:12 -0400790 if (!(nd->flags & LOOKUP_ROOT))
791 nd->root.mnt = NULL;
Al Viro6e9918b2015-05-05 09:26:05 -0400792 if (unlikely(unlazy_walk(nd, NULL, 0)))
Al Viro48a066e2013-09-29 22:06:07 -0400793 return -ECHILD;
Al Viro9f1fafe2011-03-25 11:00:12 -0400794 }
795
Al Viro16c2cd72011-02-22 15:50:10 -0500796 if (likely(!(nd->flags & LOOKUP_JUMPED)))
Jeff Layton39159de2009-12-07 12:01:50 -0500797 return 0;
798
Jeff Laytonecf3d1f2013-02-20 11:19:05 -0500799 if (likely(!(dentry->d_flags & DCACHE_OP_WEAK_REVALIDATE)))
Al Viro16c2cd72011-02-22 15:50:10 -0500800 return 0;
801
Jeff Laytonecf3d1f2013-02-20 11:19:05 -0500802 status = dentry->d_op->d_weak_revalidate(dentry, nd->flags);
Jeff Layton39159de2009-12-07 12:01:50 -0500803 if (status > 0)
804 return 0;
805
Al Viro16c2cd72011-02-22 15:50:10 -0500806 if (!status)
Jeff Layton39159de2009-12-07 12:01:50 -0500807 status = -ESTALE;
Al Viro16c2cd72011-02-22 15:50:10 -0500808
Jeff Layton39159de2009-12-07 12:01:50 -0500809 return status;
810}
811
Al Viro18d8c862015-05-12 16:32:34 -0400812static void set_root(struct nameidata *nd)
Al Viro2a737872009-04-07 11:49:53 -0400813{
Al Viro7bd88372014-09-13 21:55:46 -0400814 struct fs_struct *fs = current->fs;
Nick Pigginc28cc362011-01-07 17:49:53 +1100815
Al Viro9e6697e2015-12-05 20:07:21 -0500816 if (nd->flags & LOOKUP_RCU) {
817 unsigned seq;
818
819 do {
820 seq = read_seqcount_begin(&fs->seq);
821 nd->root = fs->root;
822 nd->root_seq = __read_seqcount_begin(&nd->root.dentry->d_seq);
823 } while (read_seqcount_retry(&fs->seq, seq));
824 } else {
825 get_fs_root(fs, &nd->root);
826 }
Nick Piggin31e6b012011-01-07 17:49:52 +1100827}
828
Jan Blunck1d957f92008-02-14 19:34:35 -0800829static void path_put_conditional(struct path *path, struct nameidata *nd)
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700830{
831 dput(path->dentry);
Jan Blunck4ac91372008-02-14 19:34:32 -0800832 if (path->mnt != nd->path.mnt)
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700833 mntput(path->mnt);
834}
835
Nick Piggin7b9337a2011-01-14 08:42:43 +0000836static inline void path_to_nameidata(const struct path *path,
837 struct nameidata *nd)
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700838{
Nick Piggin31e6b012011-01-07 17:49:52 +1100839 if (!(nd->flags & LOOKUP_RCU)) {
840 dput(nd->path.dentry);
841 if (nd->path.mnt != path->mnt)
842 mntput(nd->path.mnt);
Huang Shijie9a229682010-04-02 17:37:13 +0800843 }
Nick Piggin31e6b012011-01-07 17:49:52 +1100844 nd->path.mnt = path->mnt;
Jan Blunck4ac91372008-02-14 19:34:32 -0800845 nd->path.dentry = path->dentry;
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700846}
847
Al Viro248fb5b2015-12-05 20:51:58 -0500848static int nd_jump_root(struct nameidata *nd)
849{
850 if (nd->flags & LOOKUP_RCU) {
851 struct dentry *d;
852 nd->path = nd->root;
853 d = nd->path.dentry;
854 nd->inode = d->d_inode;
855 nd->seq = nd->root_seq;
856 if (unlikely(read_seqcount_retry(&d->d_seq, nd->seq)))
857 return -ECHILD;
858 } else {
859 path_put(&nd->path);
860 nd->path = nd->root;
861 path_get(&nd->path);
862 nd->inode = nd->path.dentry->d_inode;
863 }
864 nd->flags |= LOOKUP_JUMPED;
865 return 0;
866}
867
Christoph Hellwigb5fb63c12012-06-18 10:47:04 -0400868/*
Al Viro6b255392015-11-17 10:20:54 -0500869 * Helper to directly jump to a known parsed path from ->get_link,
Christoph Hellwigb5fb63c12012-06-18 10:47:04 -0400870 * caller must have taken a reference to path beforehand.
871 */
Al Viro6e77137b2015-05-02 13:37:52 -0400872void nd_jump_link(struct path *path)
Christoph Hellwigb5fb63c12012-06-18 10:47:04 -0400873{
Al Viro6e77137b2015-05-02 13:37:52 -0400874 struct nameidata *nd = current->nameidata;
Christoph Hellwigb5fb63c12012-06-18 10:47:04 -0400875 path_put(&nd->path);
876
877 nd->path = *path;
878 nd->inode = nd->path.dentry->d_inode;
879 nd->flags |= LOOKUP_JUMPED;
Christoph Hellwigb5fb63c12012-06-18 10:47:04 -0400880}
881
Al Virob9ff4422015-05-02 20:19:23 -0400882static inline void put_link(struct nameidata *nd)
Al Viro574197e2011-03-14 22:20:34 -0400883{
Al Viro21c30032015-05-03 21:06:24 -0400884 struct saved *last = nd->stack + --nd->depth;
Al Virofceef392015-12-29 15:58:39 -0500885 do_delayed_call(&last->done);
Al Viro6548fae2015-05-07 20:32:22 -0400886 if (!(nd->flags & LOOKUP_RCU))
887 path_put(&last->link);
Al Viro574197e2011-03-14 22:20:34 -0400888}
889
Linus Torvalds561ec642012-10-26 10:05:07 -0700890int sysctl_protected_symlinks __read_mostly = 0;
891int sysctl_protected_hardlinks __read_mostly = 0;
Kees Cook800179c2012-07-25 17:29:07 -0700892
893/**
894 * may_follow_link - Check symlink following for unsafe situations
Randy Dunlap55852632012-08-18 17:39:25 -0700895 * @nd: nameidata pathwalk data
Kees Cook800179c2012-07-25 17:29:07 -0700896 *
897 * In the case of the sysctl_protected_symlinks sysctl being enabled,
898 * CAP_DAC_OVERRIDE needs to be specifically ignored if the symlink is
899 * in a sticky world-writable directory. This is to protect privileged
900 * processes from failing races against path names that may change out
901 * from under them by way of other users creating malicious symlinks.
902 * It will permit symlinks to be followed only when outside a sticky
903 * world-writable directory, or when the uid of the symlink and follower
904 * match, or when the directory owner matches the symlink's owner.
905 *
906 * Returns 0 if following the symlink is allowed, -ve on error.
907 */
Al Virofec2fa22015-05-06 15:58:18 -0400908static inline int may_follow_link(struct nameidata *nd)
Kees Cook800179c2012-07-25 17:29:07 -0700909{
910 const struct inode *inode;
911 const struct inode *parent;
Seth Forshee2d7f9e22016-04-26 14:36:23 -0500912 kuid_t puid;
Kees Cook800179c2012-07-25 17:29:07 -0700913
914 if (!sysctl_protected_symlinks)
915 return 0;
916
917 /* Allowed if owner and follower match. */
Al Virofceef392015-12-29 15:58:39 -0500918 inode = nd->link_inode;
Eric W. Biederman81abe272012-08-03 09:38:08 -0700919 if (uid_eq(current_cred()->fsuid, inode->i_uid))
Kees Cook800179c2012-07-25 17:29:07 -0700920 return 0;
921
922 /* Allowed if parent directory not sticky and world-writable. */
Al Viroaa65fa32015-08-04 23:23:50 -0400923 parent = nd->inode;
Kees Cook800179c2012-07-25 17:29:07 -0700924 if ((parent->i_mode & (S_ISVTX|S_IWOTH)) != (S_ISVTX|S_IWOTH))
925 return 0;
926
927 /* Allowed if parent directory and link owner match. */
Seth Forshee2d7f9e22016-04-26 14:36:23 -0500928 puid = parent->i_uid;
929 if (uid_valid(puid) && uid_eq(puid, inode->i_uid))
Kees Cook800179c2012-07-25 17:29:07 -0700930 return 0;
931
Al Viro319565022015-05-07 20:37:40 -0400932 if (nd->flags & LOOKUP_RCU)
933 return -ECHILD;
934
Al Viro1cf26652015-05-06 16:01:56 -0400935 audit_log_link_denied("follow_link", &nd->stack[0].link);
Kees Cook800179c2012-07-25 17:29:07 -0700936 return -EACCES;
937}
938
939/**
940 * safe_hardlink_source - Check for safe hardlink conditions
941 * @inode: the source inode to hardlink from
942 *
943 * Return false if at least one of the following conditions:
944 * - inode is not a regular file
945 * - inode is setuid
946 * - inode is setgid and group-exec
947 * - access failure for read and write
948 *
949 * Otherwise returns true.
950 */
951static bool safe_hardlink_source(struct inode *inode)
952{
953 umode_t mode = inode->i_mode;
954
955 /* Special files should not get pinned to the filesystem. */
956 if (!S_ISREG(mode))
957 return false;
958
959 /* Setuid files should not get pinned to the filesystem. */
960 if (mode & S_ISUID)
961 return false;
962
963 /* Executable setgid files should not get pinned to the filesystem. */
964 if ((mode & (S_ISGID | S_IXGRP)) == (S_ISGID | S_IXGRP))
965 return false;
966
967 /* Hardlinking to unreadable or unwritable sources is dangerous. */
968 if (inode_permission(inode, MAY_READ | MAY_WRITE))
969 return false;
970
971 return true;
972}
973
974/**
975 * may_linkat - Check permissions for creating a hardlink
976 * @link: the source to hardlink from
977 *
978 * Block hardlink when all of:
979 * - sysctl_protected_hardlinks enabled
980 * - fsuid does not match inode
981 * - hardlink source is unsafe (see safe_hardlink_source() above)
Dirk Steinmetzf2ca3792015-10-20 16:09:19 +0200982 * - not CAP_FOWNER in a namespace with the inode owner uid mapped
Kees Cook800179c2012-07-25 17:29:07 -0700983 *
984 * Returns 0 if successful, -ve on error.
985 */
986static int may_linkat(struct path *link)
987{
Kees Cook800179c2012-07-25 17:29:07 -0700988 struct inode *inode;
989
990 if (!sysctl_protected_hardlinks)
991 return 0;
992
Kees Cook800179c2012-07-25 17:29:07 -0700993 inode = link->dentry->d_inode;
994
995 /* Source inode owner (or CAP_FOWNER) can hardlink all they like,
996 * otherwise, it must be a safe source.
997 */
Dirk Steinmetzf2ca3792015-10-20 16:09:19 +0200998 if (inode_owner_or_capable(inode) || safe_hardlink_source(inode))
Kees Cook800179c2012-07-25 17:29:07 -0700999 return 0;
1000
Kees Cooka51d9ea2012-07-25 17:29:08 -07001001 audit_log_link_denied("linkat", link);
Kees Cook800179c2012-07-25 17:29:07 -07001002 return -EPERM;
1003}
1004
Al Viro3b2e7f72015-04-19 00:53:50 -04001005static __always_inline
1006const char *get_link(struct nameidata *nd)
Ian Kent051d3812006-03-27 01:14:53 -08001007{
Al Viroab104922015-05-10 11:50:01 -04001008 struct saved *last = nd->stack + nd->depth - 1;
Al Viro1cf26652015-05-06 16:01:56 -04001009 struct dentry *dentry = last->link.dentry;
Al Virofceef392015-12-29 15:58:39 -05001010 struct inode *inode = nd->link_inode;
Al Viro6d7b5aa2012-06-10 04:15:17 -04001011 int error;
Al Viro0a959df2015-04-18 18:23:41 -04001012 const char *res;
Ian Kent051d3812006-03-27 01:14:53 -08001013
NeilBrown8fa9dd22015-03-23 13:37:40 +11001014 if (!(nd->flags & LOOKUP_RCU)) {
1015 touch_atime(&last->link);
1016 cond_resched();
1017 } else if (atime_needs_update(&last->link, inode)) {
1018 if (unlikely(unlazy_walk(nd, NULL, 0)))
1019 return ERR_PTR(-ECHILD);
1020 touch_atime(&last->link);
1021 }
1022
NeilBrownbda0be72015-03-23 13:37:39 +11001023 error = security_inode_follow_link(dentry, inode,
1024 nd->flags & LOOKUP_RCU);
1025 if (unlikely(error))
Al Viro6920a442015-05-10 10:43:46 -04001026 return ERR_PTR(error);
Al Viro36f3b4f2011-02-22 21:24:38 -05001027
Al Viro86acdca12009-12-22 23:45:11 -05001028 nd->last_type = LAST_BIND;
Al Virod4dee482015-04-30 20:08:02 -04001029 res = inode->i_link;
1030 if (!res) {
Al Virofceef392015-12-29 15:58:39 -05001031 const char * (*get)(struct dentry *, struct inode *,
1032 struct delayed_call *);
1033 get = inode->i_op->get_link;
Al Viro8c1b4562015-05-09 18:15:21 -04001034 if (nd->flags & LOOKUP_RCU) {
Al Virofceef392015-12-29 15:58:39 -05001035 res = get(NULL, inode, &last->done);
Al Viro6b255392015-11-17 10:20:54 -05001036 if (res == ERR_PTR(-ECHILD)) {
1037 if (unlikely(unlazy_walk(nd, NULL, 0)))
1038 return ERR_PTR(-ECHILD);
Al Virofceef392015-12-29 15:58:39 -05001039 res = get(dentry, inode, &last->done);
Al Viro6b255392015-11-17 10:20:54 -05001040 }
1041 } else {
Al Virofceef392015-12-29 15:58:39 -05001042 res = get(dentry, inode, &last->done);
Al Viro8c1b4562015-05-09 18:15:21 -04001043 }
Al Virofceef392015-12-29 15:58:39 -05001044 if (IS_ERR_OR_NULL(res))
Al Virofab51e82015-05-10 11:01:00 -04001045 return res;
Ian Kent051d3812006-03-27 01:14:53 -08001046 }
Al Virofab51e82015-05-10 11:01:00 -04001047 if (*res == '/') {
Al Viro9e6697e2015-12-05 20:07:21 -05001048 if (!nd->root.mnt)
1049 set_root(nd);
Al Viro248fb5b2015-12-05 20:51:58 -05001050 if (unlikely(nd_jump_root(nd)))
1051 return ERR_PTR(-ECHILD);
Al Virofab51e82015-05-10 11:01:00 -04001052 while (unlikely(*++res == '/'))
1053 ;
1054 }
1055 if (!*res)
1056 res = NULL;
Al Viro0a959df2015-04-18 18:23:41 -04001057 return res;
1058}
Al Viro6d7b5aa2012-06-10 04:15:17 -04001059
David Howellsf015f1262012-06-25 12:55:28 +01001060/*
1061 * follow_up - Find the mountpoint of path's vfsmount
1062 *
1063 * Given a path, find the mountpoint of its source file system.
1064 * Replace @path with the path of the mountpoint in the parent mount.
1065 * Up is towards /.
1066 *
1067 * Return 1 if we went up a level and 0 if we were already at the
1068 * root.
1069 */
Al Virobab77eb2009-04-18 03:26:48 -04001070int follow_up(struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071{
Al Viro0714a532011-11-24 22:19:58 -05001072 struct mount *mnt = real_mount(path->mnt);
1073 struct mount *parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 struct dentry *mountpoint;
Nick Piggin99b7db72010-08-18 04:37:39 +10001075
Al Viro48a066e2013-09-29 22:06:07 -04001076 read_seqlock_excl(&mount_lock);
Al Viro0714a532011-11-24 22:19:58 -05001077 parent = mnt->mnt_parent;
Al Viro3c0a6162012-07-18 17:32:50 +04001078 if (parent == mnt) {
Al Viro48a066e2013-09-29 22:06:07 -04001079 read_sequnlock_excl(&mount_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 return 0;
1081 }
Al Viro0714a532011-11-24 22:19:58 -05001082 mntget(&parent->mnt);
Al Viroa73324d2011-11-24 22:25:07 -05001083 mountpoint = dget(mnt->mnt_mountpoint);
Al Viro48a066e2013-09-29 22:06:07 -04001084 read_sequnlock_excl(&mount_lock);
Al Virobab77eb2009-04-18 03:26:48 -04001085 dput(path->dentry);
1086 path->dentry = mountpoint;
1087 mntput(path->mnt);
Al Viro0714a532011-11-24 22:19:58 -05001088 path->mnt = &parent->mnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 return 1;
1090}
Al Viro4d359502014-03-14 12:20:17 -04001091EXPORT_SYMBOL(follow_up);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092
Nick Pigginb5c84bf2011-01-07 17:49:38 +11001093/*
David Howells9875cf82011-01-14 18:45:21 +00001094 * Perform an automount
1095 * - return -EISDIR to tell follow_managed() to stop and return the path we
1096 * were called with.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 */
NeilBrown756daf22015-03-23 13:37:38 +11001098static int follow_automount(struct path *path, struct nameidata *nd,
David Howells9875cf82011-01-14 18:45:21 +00001099 bool *need_mntput)
Nick Piggin31e6b012011-01-07 17:49:52 +11001100{
David Howells9875cf82011-01-14 18:45:21 +00001101 struct vfsmount *mnt;
David Howellsea5b7782011-01-14 19:10:03 +00001102 int err;
Nick Piggin31e6b012011-01-07 17:49:52 +11001103
David Howells9875cf82011-01-14 18:45:21 +00001104 if (!path->dentry->d_op || !path->dentry->d_op->d_automount)
1105 return -EREMOTE;
Al Viro463ffb22005-06-06 13:36:05 -07001106
Miklos Szeredi0ec26fd2011-09-05 18:06:26 +02001107 /* We don't want to mount if someone's just doing a stat -
1108 * unless they're stat'ing a directory and appended a '/' to
1109 * the name.
1110 *
1111 * We do, however, want to mount if someone wants to open or
1112 * create a file of any type under the mountpoint, wants to
1113 * traverse through the mountpoint or wants to open the
1114 * mounted directory. Also, autofs may mark negative dentries
1115 * as being automount points. These will need the attentions
1116 * of the daemon to instantiate them before they can be used.
David Howells9875cf82011-01-14 18:45:21 +00001117 */
NeilBrown756daf22015-03-23 13:37:38 +11001118 if (!(nd->flags & (LOOKUP_PARENT | LOOKUP_DIRECTORY |
1119 LOOKUP_OPEN | LOOKUP_CREATE | LOOKUP_AUTOMOUNT)) &&
Miklos Szeredi0ec26fd2011-09-05 18:06:26 +02001120 path->dentry->d_inode)
1121 return -EISDIR;
1122
NeilBrown756daf22015-03-23 13:37:38 +11001123 nd->total_link_count++;
1124 if (nd->total_link_count >= 40)
David Howells9875cf82011-01-14 18:45:21 +00001125 return -ELOOP;
1126
1127 mnt = path->dentry->d_op->d_automount(path);
1128 if (IS_ERR(mnt)) {
1129 /*
1130 * The filesystem is allowed to return -EISDIR here to indicate
1131 * it doesn't want to automount. For instance, autofs would do
1132 * this so that its userspace daemon can mount on this dentry.
1133 *
1134 * However, we can only permit this if it's a terminal point in
1135 * the path being looked up; if it wasn't then the remainder of
1136 * the path is inaccessible and we should say so.
1137 */
NeilBrown756daf22015-03-23 13:37:38 +11001138 if (PTR_ERR(mnt) == -EISDIR && (nd->flags & LOOKUP_PARENT))
David Howells9875cf82011-01-14 18:45:21 +00001139 return -EREMOTE;
1140 return PTR_ERR(mnt);
1141 }
David Howellsea5b7782011-01-14 19:10:03 +00001142
David Howells9875cf82011-01-14 18:45:21 +00001143 if (!mnt) /* mount collision */
1144 return 0;
1145
Al Viro8aef1882011-06-16 15:10:06 +01001146 if (!*need_mntput) {
1147 /* lock_mount() may release path->mnt on error */
1148 mntget(path->mnt);
1149 *need_mntput = true;
1150 }
Al Viro19a167a2011-01-17 01:35:23 -05001151 err = finish_automount(mnt, path);
David Howellsea5b7782011-01-14 19:10:03 +00001152
David Howellsea5b7782011-01-14 19:10:03 +00001153 switch (err) {
1154 case -EBUSY:
1155 /* Someone else made a mount here whilst we were busy */
Al Viro19a167a2011-01-17 01:35:23 -05001156 return 0;
David Howellsea5b7782011-01-14 19:10:03 +00001157 case 0:
Al Viro8aef1882011-06-16 15:10:06 +01001158 path_put(path);
David Howellsea5b7782011-01-14 19:10:03 +00001159 path->mnt = mnt;
1160 path->dentry = dget(mnt->mnt_root);
David Howellsea5b7782011-01-14 19:10:03 +00001161 return 0;
Al Viro19a167a2011-01-17 01:35:23 -05001162 default:
1163 return err;
David Howellsea5b7782011-01-14 19:10:03 +00001164 }
Al Viro19a167a2011-01-17 01:35:23 -05001165
David Howells9875cf82011-01-14 18:45:21 +00001166}
1167
1168/*
1169 * Handle a dentry that is managed in some way.
David Howellscc53ce52011-01-14 18:45:26 +00001170 * - Flagged for transit management (autofs)
David Howells9875cf82011-01-14 18:45:21 +00001171 * - Flagged as mountpoint
1172 * - Flagged as automount point
1173 *
1174 * This may only be called in refwalk mode.
1175 *
1176 * Serialization is taken care of in namespace.c
1177 */
NeilBrown756daf22015-03-23 13:37:38 +11001178static int follow_managed(struct path *path, struct nameidata *nd)
David Howells9875cf82011-01-14 18:45:21 +00001179{
Al Viro8aef1882011-06-16 15:10:06 +01001180 struct vfsmount *mnt = path->mnt; /* held by caller, must be left alone */
David Howells9875cf82011-01-14 18:45:21 +00001181 unsigned managed;
1182 bool need_mntput = false;
Al Viro8aef1882011-06-16 15:10:06 +01001183 int ret = 0;
David Howells9875cf82011-01-14 18:45:21 +00001184
1185 /* Given that we're not holding a lock here, we retain the value in a
1186 * local variable for each dentry as we look at it so that we don't see
1187 * the components of that value change under us */
1188 while (managed = ACCESS_ONCE(path->dentry->d_flags),
1189 managed &= DCACHE_MANAGED_DENTRY,
1190 unlikely(managed != 0)) {
David Howellscc53ce52011-01-14 18:45:26 +00001191 /* Allow the filesystem to manage the transit without i_mutex
1192 * being held. */
1193 if (managed & DCACHE_MANAGE_TRANSIT) {
1194 BUG_ON(!path->dentry->d_op);
1195 BUG_ON(!path->dentry->d_op->d_manage);
Al Viro1aed3e42011-03-18 09:09:02 -04001196 ret = path->dentry->d_op->d_manage(path->dentry, false);
David Howellscc53ce52011-01-14 18:45:26 +00001197 if (ret < 0)
Al Viro8aef1882011-06-16 15:10:06 +01001198 break;
David Howellscc53ce52011-01-14 18:45:26 +00001199 }
1200
David Howells9875cf82011-01-14 18:45:21 +00001201 /* Transit to a mounted filesystem. */
1202 if (managed & DCACHE_MOUNTED) {
1203 struct vfsmount *mounted = lookup_mnt(path);
1204 if (mounted) {
1205 dput(path->dentry);
1206 if (need_mntput)
1207 mntput(path->mnt);
1208 path->mnt = mounted;
1209 path->dentry = dget(mounted->mnt_root);
1210 need_mntput = true;
1211 continue;
1212 }
1213
1214 /* Something is mounted on this dentry in another
1215 * namespace and/or whatever was mounted there in this
Al Viro48a066e2013-09-29 22:06:07 -04001216 * namespace got unmounted before lookup_mnt() could
1217 * get it */
David Howells9875cf82011-01-14 18:45:21 +00001218 }
1219
1220 /* Handle an automount point */
1221 if (managed & DCACHE_NEED_AUTOMOUNT) {
NeilBrown756daf22015-03-23 13:37:38 +11001222 ret = follow_automount(path, nd, &need_mntput);
David Howells9875cf82011-01-14 18:45:21 +00001223 if (ret < 0)
Al Viro8aef1882011-06-16 15:10:06 +01001224 break;
David Howells9875cf82011-01-14 18:45:21 +00001225 continue;
1226 }
1227
1228 /* We didn't change the current path point */
1229 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 }
Al Viro8aef1882011-06-16 15:10:06 +01001231
1232 if (need_mntput && path->mnt == mnt)
1233 mntput(path->mnt);
Al Viroe9742b52016-03-05 22:04:59 -05001234 if (ret == -EISDIR || !ret)
1235 ret = 1;
Al Viro84027522015-04-22 10:30:08 -04001236 if (need_mntput)
1237 nd->flags |= LOOKUP_JUMPED;
1238 if (unlikely(ret < 0))
1239 path_put_conditional(path, nd);
1240 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241}
1242
David Howellscc53ce52011-01-14 18:45:26 +00001243int follow_down_one(struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244{
1245 struct vfsmount *mounted;
1246
Al Viro1c755af2009-04-18 14:06:57 -04001247 mounted = lookup_mnt(path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 if (mounted) {
Al Viro9393bd02009-04-18 13:58:15 -04001249 dput(path->dentry);
1250 mntput(path->mnt);
1251 path->mnt = mounted;
1252 path->dentry = dget(mounted->mnt_root);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 return 1;
1254 }
1255 return 0;
1256}
Al Viro4d359502014-03-14 12:20:17 -04001257EXPORT_SYMBOL(follow_down_one);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258
NeilBrownb8faf032014-08-04 17:06:29 +10001259static inline int managed_dentry_rcu(struct dentry *dentry)
Ian Kent62a73752011-03-25 01:51:02 +08001260{
NeilBrownb8faf032014-08-04 17:06:29 +10001261 return (dentry->d_flags & DCACHE_MANAGE_TRANSIT) ?
1262 dentry->d_op->d_manage(dentry, true) : 0;
Ian Kent62a73752011-03-25 01:51:02 +08001263}
1264
David Howells9875cf82011-01-14 18:45:21 +00001265/*
Al Viro287548e2011-05-27 06:50:06 -04001266 * Try to skip to top of mountpoint pile in rcuwalk mode. Fail if
1267 * we meet a managed dentry that would need blocking.
David Howells9875cf82011-01-14 18:45:21 +00001268 */
1269static bool __follow_mount_rcu(struct nameidata *nd, struct path *path,
Al Viro254cf582015-05-05 09:40:46 -04001270 struct inode **inode, unsigned *seqp)
David Howells9875cf82011-01-14 18:45:21 +00001271{
Ian Kent62a73752011-03-25 01:51:02 +08001272 for (;;) {
Al Viroc7105362011-11-24 18:22:03 -05001273 struct mount *mounted;
Ian Kent62a73752011-03-25 01:51:02 +08001274 /*
1275 * Don't forget we might have a non-mountpoint managed dentry
1276 * that wants to block transit.
1277 */
NeilBrownb8faf032014-08-04 17:06:29 +10001278 switch (managed_dentry_rcu(path->dentry)) {
1279 case -ECHILD:
1280 default:
David Howellsab909112011-01-14 18:46:51 +00001281 return false;
NeilBrownb8faf032014-08-04 17:06:29 +10001282 case -EISDIR:
1283 return true;
1284 case 0:
1285 break;
1286 }
Ian Kent62a73752011-03-25 01:51:02 +08001287
1288 if (!d_mountpoint(path->dentry))
NeilBrownb8faf032014-08-04 17:06:29 +10001289 return !(path->dentry->d_flags & DCACHE_NEED_AUTOMOUNT);
Ian Kent62a73752011-03-25 01:51:02 +08001290
Al Viro474279d2013-10-01 16:11:26 -04001291 mounted = __lookup_mnt(path->mnt, path->dentry);
David Howells9875cf82011-01-14 18:45:21 +00001292 if (!mounted)
1293 break;
Al Viroc7105362011-11-24 18:22:03 -05001294 path->mnt = &mounted->mnt;
1295 path->dentry = mounted->mnt.mnt_root;
Al Viroa3fbbde2011-11-07 21:21:26 +00001296 nd->flags |= LOOKUP_JUMPED;
Al Viro254cf582015-05-05 09:40:46 -04001297 *seqp = read_seqcount_begin(&path->dentry->d_seq);
Linus Torvalds59430262011-07-18 15:43:29 -07001298 /*
1299 * Update the inode too. We don't need to re-check the
1300 * dentry sequence number here after this d_inode read,
1301 * because a mount-point is always pinned.
1302 */
1303 *inode = path->dentry->d_inode;
David Howells9875cf82011-01-14 18:45:21 +00001304 }
Al Virof5be3e29122014-09-13 21:50:45 -04001305 return !read_seqretry(&mount_lock, nd->m_seq) &&
NeilBrownb8faf032014-08-04 17:06:29 +10001306 !(path->dentry->d_flags & DCACHE_NEED_AUTOMOUNT);
Al Viro287548e2011-05-27 06:50:06 -04001307}
1308
Nick Piggin31e6b012011-01-07 17:49:52 +11001309static int follow_dotdot_rcu(struct nameidata *nd)
1310{
Al Viro4023bfc2014-09-13 21:59:43 -04001311 struct inode *inode = nd->inode;
Nick Piggin31e6b012011-01-07 17:49:52 +11001312
David Howells9875cf82011-01-14 18:45:21 +00001313 while (1) {
Al Viroaed434a2015-05-12 12:22:47 -04001314 if (path_equal(&nd->path, &nd->root))
Nick Piggin31e6b012011-01-07 17:49:52 +11001315 break;
Nick Piggin31e6b012011-01-07 17:49:52 +11001316 if (nd->path.dentry != nd->path.mnt->mnt_root) {
1317 struct dentry *old = nd->path.dentry;
1318 struct dentry *parent = old->d_parent;
1319 unsigned seq;
1320
Al Viro4023bfc2014-09-13 21:59:43 -04001321 inode = parent->d_inode;
Nick Piggin31e6b012011-01-07 17:49:52 +11001322 seq = read_seqcount_begin(&parent->d_seq);
Al Viroaed434a2015-05-12 12:22:47 -04001323 if (unlikely(read_seqcount_retry(&old->d_seq, nd->seq)))
1324 return -ECHILD;
Nick Piggin31e6b012011-01-07 17:49:52 +11001325 nd->path.dentry = parent;
1326 nd->seq = seq;
Eric W. Biederman397d4252015-08-15 20:27:13 -05001327 if (unlikely(!path_connected(&nd->path)))
1328 return -ENOENT;
Nick Piggin31e6b012011-01-07 17:49:52 +11001329 break;
Al Viroaed434a2015-05-12 12:22:47 -04001330 } else {
1331 struct mount *mnt = real_mount(nd->path.mnt);
1332 struct mount *mparent = mnt->mnt_parent;
1333 struct dentry *mountpoint = mnt->mnt_mountpoint;
1334 struct inode *inode2 = mountpoint->d_inode;
1335 unsigned seq = read_seqcount_begin(&mountpoint->d_seq);
1336 if (unlikely(read_seqretry(&mount_lock, nd->m_seq)))
1337 return -ECHILD;
1338 if (&mparent->mnt == nd->path.mnt)
1339 break;
1340 /* we know that mountpoint was pinned */
1341 nd->path.dentry = mountpoint;
1342 nd->path.mnt = &mparent->mnt;
1343 inode = inode2;
1344 nd->seq = seq;
Nick Piggin31e6b012011-01-07 17:49:52 +11001345 }
Nick Piggin31e6b012011-01-07 17:49:52 +11001346 }
Al Viroaed434a2015-05-12 12:22:47 -04001347 while (unlikely(d_mountpoint(nd->path.dentry))) {
Al Virob37199e2014-03-20 15:18:22 -04001348 struct mount *mounted;
1349 mounted = __lookup_mnt(nd->path.mnt, nd->path.dentry);
Al Viroaed434a2015-05-12 12:22:47 -04001350 if (unlikely(read_seqretry(&mount_lock, nd->m_seq)))
1351 return -ECHILD;
Al Virob37199e2014-03-20 15:18:22 -04001352 if (!mounted)
1353 break;
1354 nd->path.mnt = &mounted->mnt;
1355 nd->path.dentry = mounted->mnt.mnt_root;
Al Viro4023bfc2014-09-13 21:59:43 -04001356 inode = nd->path.dentry->d_inode;
Al Virob37199e2014-03-20 15:18:22 -04001357 nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq);
Al Virob37199e2014-03-20 15:18:22 -04001358 }
Al Viro4023bfc2014-09-13 21:59:43 -04001359 nd->inode = inode;
Nick Piggin31e6b012011-01-07 17:49:52 +11001360 return 0;
1361}
1362
David Howells9875cf82011-01-14 18:45:21 +00001363/*
David Howellscc53ce52011-01-14 18:45:26 +00001364 * Follow down to the covering mount currently visible to userspace. At each
1365 * point, the filesystem owning that dentry may be queried as to whether the
1366 * caller is permitted to proceed or not.
David Howellscc53ce52011-01-14 18:45:26 +00001367 */
Al Viro7cc90cc2011-03-18 09:04:20 -04001368int follow_down(struct path *path)
David Howellscc53ce52011-01-14 18:45:26 +00001369{
1370 unsigned managed;
1371 int ret;
1372
1373 while (managed = ACCESS_ONCE(path->dentry->d_flags),
1374 unlikely(managed & DCACHE_MANAGED_DENTRY)) {
1375 /* Allow the filesystem to manage the transit without i_mutex
1376 * being held.
1377 *
1378 * We indicate to the filesystem if someone is trying to mount
1379 * something here. This gives autofs the chance to deny anyone
1380 * other than its daemon the right to mount on its
1381 * superstructure.
1382 *
1383 * The filesystem may sleep at this point.
1384 */
1385 if (managed & DCACHE_MANAGE_TRANSIT) {
1386 BUG_ON(!path->dentry->d_op);
1387 BUG_ON(!path->dentry->d_op->d_manage);
David Howellsab909112011-01-14 18:46:51 +00001388 ret = path->dentry->d_op->d_manage(
Al Viro1aed3e42011-03-18 09:09:02 -04001389 path->dentry, false);
David Howellscc53ce52011-01-14 18:45:26 +00001390 if (ret < 0)
1391 return ret == -EISDIR ? 0 : ret;
1392 }
1393
1394 /* Transit to a mounted filesystem. */
1395 if (managed & DCACHE_MOUNTED) {
1396 struct vfsmount *mounted = lookup_mnt(path);
1397 if (!mounted)
1398 break;
1399 dput(path->dentry);
1400 mntput(path->mnt);
1401 path->mnt = mounted;
1402 path->dentry = dget(mounted->mnt_root);
1403 continue;
1404 }
1405
1406 /* Don't handle automount points here */
1407 break;
1408 }
1409 return 0;
1410}
Al Viro4d359502014-03-14 12:20:17 -04001411EXPORT_SYMBOL(follow_down);
David Howellscc53ce52011-01-14 18:45:26 +00001412
1413/*
David Howells9875cf82011-01-14 18:45:21 +00001414 * Skip to top of mountpoint pile in refwalk mode for follow_dotdot()
1415 */
1416static void follow_mount(struct path *path)
1417{
1418 while (d_mountpoint(path->dentry)) {
1419 struct vfsmount *mounted = lookup_mnt(path);
1420 if (!mounted)
1421 break;
1422 dput(path->dentry);
1423 mntput(path->mnt);
1424 path->mnt = mounted;
1425 path->dentry = dget(mounted->mnt_root);
1426 }
1427}
1428
Eric W. Biedermaneedf2652016-06-02 10:29:47 -05001429static int path_parent_directory(struct path *path)
1430{
1431 struct dentry *old = path->dentry;
1432 /* rare case of legitimate dget_parent()... */
1433 path->dentry = dget_parent(path->dentry);
1434 dput(old);
1435 if (unlikely(!path_connected(path)))
1436 return -ENOENT;
1437 return 0;
1438}
1439
Eric W. Biederman397d4252015-08-15 20:27:13 -05001440static int follow_dotdot(struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441{
1442 while(1) {
Al Viro2a737872009-04-07 11:49:53 -04001443 if (nd->path.dentry == nd->root.dentry &&
1444 nd->path.mnt == nd->root.mnt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 break;
1446 }
Jan Blunck4ac91372008-02-14 19:34:32 -08001447 if (nd->path.dentry != nd->path.mnt->mnt_root) {
Eric W. Biedermaneedf2652016-06-02 10:29:47 -05001448 int ret = path_parent_directory(&nd->path);
1449 if (ret)
1450 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 break;
1452 }
Al Viro3088dd72010-01-30 15:47:29 -05001453 if (!follow_up(&nd->path))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 }
Al Viro79ed0222009-04-18 13:59:41 -04001456 follow_mount(&nd->path);
Nick Piggin31e6b012011-01-07 17:49:52 +11001457 nd->inode = nd->path.dentry->d_inode;
Eric W. Biederman397d4252015-08-15 20:27:13 -05001458 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459}
1460
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461/*
Miklos Szeredibad61182012-03-26 12:54:24 +02001462 * This looks up the name in dcache, possibly revalidates the old dentry and
1463 * allocates a new one if not found or not valid. In the need_lookup argument
1464 * returns whether i_op->lookup is necessary.
Nick Pigginbaa03892010-08-18 04:37:31 +10001465 */
Al Viroe3c13922016-03-06 14:03:27 -05001466static struct dentry *lookup_dcache(const struct qstr *name,
1467 struct dentry *dir,
Al Viro6c51e512016-03-05 20:09:32 -05001468 unsigned int flags)
Nick Pigginbaa03892010-08-18 04:37:31 +10001469{
Nick Pigginbaa03892010-08-18 04:37:31 +10001470 struct dentry *dentry;
Miklos Szeredibad61182012-03-26 12:54:24 +02001471 int error;
Nick Pigginbaa03892010-08-18 04:37:31 +10001472
Miklos Szeredibad61182012-03-26 12:54:24 +02001473 dentry = d_lookup(dir, name);
1474 if (dentry) {
Jeff Layton39e3c952012-11-28 11:30:53 -05001475 if (dentry->d_flags & DCACHE_OP_REVALIDATE) {
Al Viro201f9562012-06-22 12:42:10 +04001476 error = d_revalidate(dentry, flags);
Miklos Szeredibad61182012-03-26 12:54:24 +02001477 if (unlikely(error <= 0)) {
Al Viro74ff0ff2016-03-05 22:37:46 -05001478 if (!error)
Eric W. Biederman5542aa22014-02-13 09:46:25 -08001479 d_invalidate(dentry);
Al Viro74ff0ff2016-03-05 22:37:46 -05001480 dput(dentry);
1481 return ERR_PTR(error);
Miklos Szeredibad61182012-03-26 12:54:24 +02001482 }
1483 }
1484 }
Nick Pigginbaa03892010-08-18 04:37:31 +10001485 return dentry;
1486}
1487
1488/*
J. Bruce Fields13a2c3b2013-10-23 16:09:16 -04001489 * Call i_op->lookup on the dentry. The dentry must be negative and
1490 * unhashed.
Miklos Szeredibad61182012-03-26 12:54:24 +02001491 *
1492 * dir->d_inode->i_mutex must be held
Josef Bacik44396f42011-05-31 11:58:49 -04001493 */
Miklos Szeredibad61182012-03-26 12:54:24 +02001494static struct dentry *lookup_real(struct inode *dir, struct dentry *dentry,
Al Viro72bd8662012-06-10 17:17:17 -04001495 unsigned int flags)
Josef Bacik44396f42011-05-31 11:58:49 -04001496{
Josef Bacik44396f42011-05-31 11:58:49 -04001497 struct dentry *old;
1498
1499 /* Don't create child dentry for a dead directory. */
Miklos Szeredibad61182012-03-26 12:54:24 +02001500 if (unlikely(IS_DEADDIR(dir))) {
Miklos Szeredie188dc02012-02-03 14:25:18 +01001501 dput(dentry);
Josef Bacik44396f42011-05-31 11:58:49 -04001502 return ERR_PTR(-ENOENT);
Miklos Szeredie188dc02012-02-03 14:25:18 +01001503 }
Josef Bacik44396f42011-05-31 11:58:49 -04001504
Al Viro72bd8662012-06-10 17:17:17 -04001505 old = dir->i_op->lookup(dir, dentry, flags);
Josef Bacik44396f42011-05-31 11:58:49 -04001506 if (unlikely(old)) {
1507 dput(dentry);
1508 dentry = old;
1509 }
1510 return dentry;
1511}
1512
Al Viroe3c13922016-03-06 14:03:27 -05001513static struct dentry *__lookup_hash(const struct qstr *name,
Al Viro72bd8662012-06-10 17:17:17 -04001514 struct dentry *base, unsigned int flags)
Al Viroa3255542012-03-30 14:41:51 -04001515{
Al Viro6c51e512016-03-05 20:09:32 -05001516 struct dentry *dentry = lookup_dcache(name, base, flags);
Al Viroa3255542012-03-30 14:41:51 -04001517
Al Viro6c51e512016-03-05 20:09:32 -05001518 if (dentry)
Miklos Szeredibad61182012-03-26 12:54:24 +02001519 return dentry;
Al Viroa3255542012-03-30 14:41:51 -04001520
Al Viro6c51e512016-03-05 20:09:32 -05001521 dentry = d_alloc(base, name);
1522 if (unlikely(!dentry))
1523 return ERR_PTR(-ENOMEM);
1524
Al Viro72bd8662012-06-10 17:17:17 -04001525 return lookup_real(base->d_inode, dentry, flags);
Al Viroa3255542012-03-30 14:41:51 -04001526}
1527
Al Viroe97cdc82013-01-24 18:16:00 -05001528static int lookup_fast(struct nameidata *nd,
Al Viro254cf582015-05-05 09:40:46 -04001529 struct path *path, struct inode **inode,
1530 unsigned *seqp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531{
Jan Blunck4ac91372008-02-14 19:34:32 -08001532 struct vfsmount *mnt = nd->path.mnt;
Nick Piggin31e6b012011-01-07 17:49:52 +11001533 struct dentry *dentry, *parent = nd->path.dentry;
Al Viro5a18fff2011-03-11 04:44:53 -05001534 int status = 1;
David Howells9875cf82011-01-14 18:45:21 +00001535 int err;
1536
Al Viro3cac2602009-08-13 18:27:43 +04001537 /*
Nick Pigginb04f7842010-08-18 04:37:34 +10001538 * Rename seqlock is not required here because in the off chance
Al Viro5d0f49c2016-03-05 21:32:53 -05001539 * of a false negative due to a concurrent rename, the caller is
1540 * going to fall back to non-racy lookup.
Nick Pigginb04f7842010-08-18 04:37:34 +10001541 */
Nick Piggin31e6b012011-01-07 17:49:52 +11001542 if (nd->flags & LOOKUP_RCU) {
1543 unsigned seq;
Al Viro766c4cb2015-05-07 19:24:57 -04001544 bool negative;
Linus Torvaldsda53be12013-05-21 15:22:44 -07001545 dentry = __d_lookup_rcu(parent, &nd->last, &seq);
Al Viro5d0f49c2016-03-05 21:32:53 -05001546 if (unlikely(!dentry)) {
1547 if (unlazy_walk(nd, NULL, 0))
1548 return -ECHILD;
Al Viroe9742b52016-03-05 22:04:59 -05001549 return 0;
Al Viro5d0f49c2016-03-05 21:32:53 -05001550 }
Al Viro5a18fff2011-03-11 04:44:53 -05001551
Linus Torvalds12f8ad42012-05-04 14:59:14 -07001552 /*
1553 * This sequence count validates that the inode matches
1554 * the dentry name information from lookup.
1555 */
David Howells63afdfc2015-05-06 15:59:00 +01001556 *inode = d_backing_inode(dentry);
Al Viro766c4cb2015-05-07 19:24:57 -04001557 negative = d_is_negative(dentry);
Al Viro5d0f49c2016-03-05 21:32:53 -05001558 if (unlikely(read_seqcount_retry(&dentry->d_seq, seq)))
Linus Torvalds12f8ad42012-05-04 14:59:14 -07001559 return -ECHILD;
1560
1561 /*
1562 * This sequence count validates that the parent had no
1563 * changes while we did the lookup of the dentry above.
1564 *
1565 * The memory barrier in read_seqcount_begin of child is
1566 * enough, we can use __read_seqcount_retry here.
1567 */
Al Viro5d0f49c2016-03-05 21:32:53 -05001568 if (unlikely(__read_seqcount_retry(&parent->d_seq, nd->seq)))
Nick Piggin31e6b012011-01-07 17:49:52 +11001569 return -ECHILD;
Al Viro5a18fff2011-03-11 04:44:53 -05001570
Al Viro254cf582015-05-05 09:40:46 -04001571 *seqp = seq;
Al Viro5d0f49c2016-03-05 21:32:53 -05001572 if (unlikely(dentry->d_flags & DCACHE_OP_REVALIDATE))
Al Viro4ce16ef32012-06-10 16:10:59 -04001573 status = d_revalidate(dentry, nd->flags);
Al Viro5d0f49c2016-03-05 21:32:53 -05001574 if (unlikely(status <= 0)) {
1575 if (unlazy_walk(nd, dentry, seq))
1576 return -ECHILD;
1577 if (status == -ECHILD)
1578 status = d_revalidate(dentry, nd->flags);
1579 } else {
1580 /*
1581 * Note: do negative dentry check after revalidation in
1582 * case that drops it.
1583 */
1584 if (unlikely(negative))
1585 return -ENOENT;
1586 path->mnt = mnt;
1587 path->dentry = dentry;
1588 if (likely(__follow_mount_rcu(nd, path, inode, seqp)))
Al Viroe9742b52016-03-05 22:04:59 -05001589 return 1;
Al Viro5d0f49c2016-03-05 21:32:53 -05001590 if (unlazy_walk(nd, dentry, seq))
1591 return -ECHILD;
Al Viro24643082011-02-15 01:26:22 -05001592 }
Al Viro5a18fff2011-03-11 04:44:53 -05001593 } else {
Al Viroe97cdc82013-01-24 18:16:00 -05001594 dentry = __d_lookup(parent, &nd->last);
Al Viro5d0f49c2016-03-05 21:32:53 -05001595 if (unlikely(!dentry))
Al Viroe9742b52016-03-05 22:04:59 -05001596 return 0;
Al Viro5d0f49c2016-03-05 21:32:53 -05001597 if (unlikely(dentry->d_flags & DCACHE_OP_REVALIDATE))
1598 status = d_revalidate(dentry, nd->flags);
Nick Piggin31e6b012011-01-07 17:49:52 +11001599 }
Al Viro5a18fff2011-03-11 04:44:53 -05001600 if (unlikely(status <= 0)) {
Al Viroe9742b52016-03-05 22:04:59 -05001601 if (!status)
Al Viro5d0f49c2016-03-05 21:32:53 -05001602 d_invalidate(dentry);
Eric W. Biederman5542aa22014-02-13 09:46:25 -08001603 dput(dentry);
Al Viro5d0f49c2016-03-05 21:32:53 -05001604 return status;
Al Viro5a18fff2011-03-11 04:44:53 -05001605 }
Al Viro766c4cb2015-05-07 19:24:57 -04001606 if (unlikely(d_is_negative(dentry))) {
1607 dput(dentry);
1608 return -ENOENT;
1609 }
Al Viro5d0f49c2016-03-05 21:32:53 -05001610
David Howells9875cf82011-01-14 18:45:21 +00001611 path->mnt = mnt;
1612 path->dentry = dentry;
NeilBrown756daf22015-03-23 13:37:38 +11001613 err = follow_managed(path, nd);
Al Viroe9742b52016-03-05 22:04:59 -05001614 if (likely(err > 0))
David Howells63afdfc2015-05-06 15:59:00 +01001615 *inode = d_backing_inode(path->dentry);
Al Viro84027522015-04-22 10:30:08 -04001616 return err;
Miklos Szeredi697f5142012-05-21 17:30:05 +02001617}
1618
1619/* Fast lookup failed, do it the slow way */
Al Viroe3c13922016-03-06 14:03:27 -05001620static struct dentry *lookup_slow(const struct qstr *name,
1621 struct dentry *dir,
1622 unsigned int flags)
Miklos Szeredi697f5142012-05-21 17:30:05 +02001623{
Al Viro94bdd652016-04-15 02:42:04 -04001624 struct dentry *dentry = ERR_PTR(-ENOENT), *old;
Al Viro19363862016-04-14 19:33:34 -04001625 struct inode *inode = dir->d_inode;
Al Virod9171b92016-04-15 03:33:13 -04001626 DECLARE_WAIT_QUEUE_HEAD_ONSTACK(wq);
Al Viro19363862016-04-14 19:33:34 -04001627
Al Viro9902af72016-04-15 15:08:36 -04001628 inode_lock_shared(inode);
Al Viro19363862016-04-14 19:33:34 -04001629 /* Don't go there if it's already dead */
Al Viro94bdd652016-04-15 02:42:04 -04001630 if (unlikely(IS_DEADDIR(inode)))
1631 goto out;
1632again:
Al Virod9171b92016-04-15 03:33:13 -04001633 dentry = d_alloc_parallel(dir, name, &wq);
Al Viro94bdd652016-04-15 02:42:04 -04001634 if (IS_ERR(dentry))
1635 goto out;
1636 if (unlikely(!d_in_lookup(dentry))) {
Al Viro949a8522016-03-06 14:20:52 -05001637 if ((dentry->d_flags & DCACHE_OP_REVALIDATE) &&
1638 !(flags & LOOKUP_NO_REVAL)) {
1639 int error = d_revalidate(dentry, flags);
1640 if (unlikely(error <= 0)) {
Al Viro94bdd652016-04-15 02:42:04 -04001641 if (!error) {
Al Viro949a8522016-03-06 14:20:52 -05001642 d_invalidate(dentry);
Al Viro94bdd652016-04-15 02:42:04 -04001643 dput(dentry);
1644 goto again;
1645 }
Al Viro949a8522016-03-06 14:20:52 -05001646 dput(dentry);
1647 dentry = ERR_PTR(error);
1648 }
1649 }
Al Viro94bdd652016-04-15 02:42:04 -04001650 } else {
1651 old = inode->i_op->lookup(inode, dentry, flags);
1652 d_lookup_done(dentry);
1653 if (unlikely(old)) {
1654 dput(dentry);
1655 dentry = old;
Al Viro949a8522016-03-06 14:20:52 -05001656 }
1657 }
Al Viro94bdd652016-04-15 02:42:04 -04001658out:
Al Viro9902af72016-04-15 15:08:36 -04001659 inode_unlock_shared(inode);
Al Viroe3c13922016-03-06 14:03:27 -05001660 return dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661}
1662
Al Viro52094c82011-02-21 21:34:47 -05001663static inline int may_lookup(struct nameidata *nd)
1664{
1665 if (nd->flags & LOOKUP_RCU) {
Al Viro4ad5abb2011-06-20 19:57:03 -04001666 int err = inode_permission(nd->inode, MAY_EXEC|MAY_NOT_BLOCK);
Al Viro52094c82011-02-21 21:34:47 -05001667 if (err != -ECHILD)
1668 return err;
Al Viro6e9918b2015-05-05 09:26:05 -04001669 if (unlazy_walk(nd, NULL, 0))
Al Viro52094c82011-02-21 21:34:47 -05001670 return -ECHILD;
1671 }
Al Viro4ad5abb2011-06-20 19:57:03 -04001672 return inode_permission(nd->inode, MAY_EXEC);
Al Viro52094c82011-02-21 21:34:47 -05001673}
1674
Al Viro9856fa12011-03-04 14:22:06 -05001675static inline int handle_dots(struct nameidata *nd, int type)
1676{
1677 if (type == LAST_DOTDOT) {
Al Viro9e6697e2015-12-05 20:07:21 -05001678 if (!nd->root.mnt)
1679 set_root(nd);
Al Viro9856fa12011-03-04 14:22:06 -05001680 if (nd->flags & LOOKUP_RCU) {
Al Viro70291ae2015-05-04 07:53:00 -04001681 return follow_dotdot_rcu(nd);
Al Viro9856fa12011-03-04 14:22:06 -05001682 } else
Eric W. Biederman397d4252015-08-15 20:27:13 -05001683 return follow_dotdot(nd);
Al Viro9856fa12011-03-04 14:22:06 -05001684 }
1685 return 0;
1686}
1687
Al Viro181548c2015-05-07 19:54:34 -04001688static int pick_link(struct nameidata *nd, struct path *link,
1689 struct inode *inode, unsigned seq)
Al Virod63ff282015-05-04 18:13:23 -04001690{
Al Viro626de992015-05-04 18:26:59 -04001691 int error;
Al Viro1cf26652015-05-06 16:01:56 -04001692 struct saved *last;
NeilBrown756daf22015-03-23 13:37:38 +11001693 if (unlikely(nd->total_link_count++ >= MAXSYMLINKS)) {
Al Viro626de992015-05-04 18:26:59 -04001694 path_to_nameidata(link, nd);
1695 return -ELOOP;
1696 }
Al Virobc40aee2015-05-09 13:04:24 -04001697 if (!(nd->flags & LOOKUP_RCU)) {
Al Viro79733872015-05-09 12:55:43 -04001698 if (link->mnt == nd->path.mnt)
1699 mntget(link->mnt);
Al Virod63ff282015-05-04 18:13:23 -04001700 }
Al Viro626de992015-05-04 18:26:59 -04001701 error = nd_alloc_stack(nd);
1702 if (unlikely(error)) {
Al Virobc40aee2015-05-09 13:04:24 -04001703 if (error == -ECHILD) {
1704 if (unlikely(unlazy_link(nd, link, seq)))
1705 return -ECHILD;
1706 error = nd_alloc_stack(nd);
1707 }
1708 if (error) {
1709 path_put(link);
1710 return error;
1711 }
Al Viro626de992015-05-04 18:26:59 -04001712 }
1713
Al Viroab104922015-05-10 11:50:01 -04001714 last = nd->stack + nd->depth++;
Al Viro1cf26652015-05-06 16:01:56 -04001715 last->link = *link;
Al Virofceef392015-12-29 15:58:39 -05001716 clear_delayed_call(&last->done);
1717 nd->link_inode = inode;
Al Viro0450b2d2015-05-08 13:23:53 -04001718 last->seq = seq;
Al Virod63ff282015-05-04 18:13:23 -04001719 return 1;
1720}
1721
Linus Torvalds3ddcd052011-08-06 22:45:50 -07001722/*
1723 * Do we need to follow links? We _really_ want to be able
1724 * to do this check without having to look at inode->i_op,
1725 * so we keep a cache of "no, this doesn't need follow_link"
1726 * for the common case.
1727 */
Al Viro254cf582015-05-05 09:40:46 -04001728static inline int should_follow_link(struct nameidata *nd, struct path *link,
Al Viro181548c2015-05-07 19:54:34 -04001729 int follow,
1730 struct inode *inode, unsigned seq)
Linus Torvalds3ddcd052011-08-06 22:45:50 -07001731{
Al Virod63ff282015-05-04 18:13:23 -04001732 if (likely(!d_is_symlink(link->dentry)))
1733 return 0;
1734 if (!follow)
1735 return 0;
Al Viroa7f77542016-02-27 19:31:01 -05001736 /* make sure that d_is_symlink above matches inode */
1737 if (nd->flags & LOOKUP_RCU) {
1738 if (read_seqcount_retry(&link->dentry->d_seq, seq))
1739 return -ECHILD;
1740 }
Al Viro181548c2015-05-07 19:54:34 -04001741 return pick_link(nd, link, inode, seq);
Linus Torvalds3ddcd052011-08-06 22:45:50 -07001742}
1743
Al Viro4693a542015-05-04 17:47:11 -04001744enum {WALK_GET = 1, WALK_PUT = 2};
1745
1746static int walk_component(struct nameidata *nd, int flags)
Al Viroce57dfc2011-03-13 19:58:58 -04001747{
Al Virocaa856342015-04-22 17:52:47 -04001748 struct path path;
Al Viroce57dfc2011-03-13 19:58:58 -04001749 struct inode *inode;
Al Viro254cf582015-05-05 09:40:46 -04001750 unsigned seq;
Al Viroce57dfc2011-03-13 19:58:58 -04001751 int err;
1752 /*
1753 * "." and ".." are special - ".." especially so because it has
1754 * to be able to know about the current root directory and
1755 * parent relationships.
1756 */
Al Viro4693a542015-05-04 17:47:11 -04001757 if (unlikely(nd->last_type != LAST_NORM)) {
1758 err = handle_dots(nd, nd->last_type);
1759 if (flags & WALK_PUT)
1760 put_link(nd);
1761 return err;
1762 }
Al Viro254cf582015-05-05 09:40:46 -04001763 err = lookup_fast(nd, &path, &inode, &seq);
Al Viroe9742b52016-03-05 22:04:59 -05001764 if (unlikely(err <= 0)) {
Miklos Szeredi697f5142012-05-21 17:30:05 +02001765 if (err < 0)
Al Virof0a9ba72015-05-04 07:59:30 -04001766 return err;
Al Viroe3c13922016-03-06 14:03:27 -05001767 path.dentry = lookup_slow(&nd->last, nd->path.dentry,
1768 nd->flags);
1769 if (IS_ERR(path.dentry))
1770 return PTR_ERR(path.dentry);
Al Viro7500c382016-03-31 00:23:05 -04001771
Al Viroe3c13922016-03-06 14:03:27 -05001772 path.mnt = nd->path.mnt;
1773 err = follow_managed(&path, nd);
1774 if (unlikely(err < 0))
Al Virof0a9ba72015-05-04 07:59:30 -04001775 return err;
Miklos Szeredi697f5142012-05-21 17:30:05 +02001776
Al Viro7500c382016-03-31 00:23:05 -04001777 if (unlikely(d_is_negative(path.dentry))) {
1778 path_to_nameidata(&path, nd);
1779 return -ENOENT;
1780 }
1781
Al Viro254cf582015-05-05 09:40:46 -04001782 seq = 0; /* we are already out of RCU mode */
Al Virod4565642016-02-27 19:23:16 -05001783 inode = d_backing_inode(path.dentry);
Al Viroce57dfc2011-03-13 19:58:58 -04001784 }
Miklos Szeredi697f5142012-05-21 17:30:05 +02001785
Al Viro4693a542015-05-04 17:47:11 -04001786 if (flags & WALK_PUT)
1787 put_link(nd);
Al Viro181548c2015-05-07 19:54:34 -04001788 err = should_follow_link(nd, &path, flags & WALK_GET, inode, seq);
Al Virod63ff282015-05-04 18:13:23 -04001789 if (unlikely(err))
1790 return err;
Al Virocaa856342015-04-22 17:52:47 -04001791 path_to_nameidata(&path, nd);
Al Viroce57dfc2011-03-13 19:58:58 -04001792 nd->inode = inode;
Al Viro254cf582015-05-05 09:40:46 -04001793 nd->seq = seq;
Al Viroce57dfc2011-03-13 19:58:58 -04001794 return 0;
1795}
1796
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797/*
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001798 * We can do the critical dentry name comparison and hashing
1799 * operations one word at a time, but we are limited to:
1800 *
1801 * - Architectures with fast unaligned word accesses. We could
1802 * do a "get_unaligned()" if this helps and is sufficiently
1803 * fast.
1804 *
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001805 * - non-CONFIG_DEBUG_PAGEALLOC configurations (so that we
1806 * do not trap on the (extremely unlikely) case of a page
1807 * crossing operation.
1808 *
1809 * - Furthermore, we need an efficient 64-bit compile for the
1810 * 64-bit case in order to generate the "number of bytes in
1811 * the final mask". Again, that could be replaced with a
1812 * efficient population count instruction or similar.
1813 */
1814#ifdef CONFIG_DCACHE_WORD_ACCESS
1815
Linus Torvaldsf68e5562012-04-06 13:54:56 -07001816#include <asm/word-at-a-time.h>
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001817
George Spelvin468a9422016-05-26 22:11:51 -04001818#ifdef HASH_MIX
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001819
George Spelvin468a9422016-05-26 22:11:51 -04001820/* Architecture provides HASH_MIX and fold_hash() in <asm/hash.h> */
1821
1822#elif defined(CONFIG_64BIT)
George Spelvin2a18da7a2016-05-23 07:43:58 -04001823/*
1824 * Register pressure in the mixing function is an issue, particularly
1825 * on 32-bit x86, but almost any function requires one state value and
1826 * one temporary. Instead, use a function designed for two state values
1827 * and no temporaries.
1828 *
1829 * This function cannot create a collision in only two iterations, so
1830 * we have two iterations to achieve avalanche. In those two iterations,
1831 * we have six layers of mixing, which is enough to spread one bit's
1832 * influence out to 2^6 = 64 state bits.
1833 *
1834 * Rotate constants are scored by considering either 64 one-bit input
1835 * deltas or 64*63/2 = 2016 two-bit input deltas, and finding the
1836 * probability of that delta causing a change to each of the 128 output
1837 * bits, using a sample of random initial states.
1838 *
1839 * The Shannon entropy of the computed probabilities is then summed
1840 * to produce a score. Ideally, any input change has a 50% chance of
1841 * toggling any given output bit.
1842 *
1843 * Mixing scores (in bits) for (12,45):
1844 * Input delta: 1-bit 2-bit
1845 * 1 round: 713.3 42542.6
1846 * 2 rounds: 2753.7 140389.8
1847 * 3 rounds: 5954.1 233458.2
1848 * 4 rounds: 7862.6 256672.2
1849 * Perfect: 8192 258048
1850 * (64*128) (64*63/2 * 128)
1851 */
1852#define HASH_MIX(x, y, a) \
1853 ( x ^= (a), \
1854 y ^= x, x = rol64(x,12),\
1855 x += y, y = rol64(y,45),\
1856 y *= 9 )
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001857
George Spelvin0fed3ac2016-05-02 06:31:01 -04001858/*
George Spelvin2a18da7a2016-05-23 07:43:58 -04001859 * Fold two longs into one 32-bit hash value. This must be fast, but
1860 * latency isn't quite as critical, as there is a fair bit of additional
1861 * work done before the hash value is used.
George Spelvin0fed3ac2016-05-02 06:31:01 -04001862 */
George Spelvin2a18da7a2016-05-23 07:43:58 -04001863static inline unsigned int fold_hash(unsigned long x, unsigned long y)
George Spelvin0fed3ac2016-05-02 06:31:01 -04001864{
George Spelvin2a18da7a2016-05-23 07:43:58 -04001865 y ^= x * GOLDEN_RATIO_64;
1866 y *= GOLDEN_RATIO_64;
1867 return y >> 32;
George Spelvin0fed3ac2016-05-02 06:31:01 -04001868}
1869
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001870#else /* 32-bit case */
1871
George Spelvin2a18da7a2016-05-23 07:43:58 -04001872/*
1873 * Mixing scores (in bits) for (7,20):
1874 * Input delta: 1-bit 2-bit
1875 * 1 round: 330.3 9201.6
1876 * 2 rounds: 1246.4 25475.4
1877 * 3 rounds: 1907.1 31295.1
1878 * 4 rounds: 2042.3 31718.6
1879 * Perfect: 2048 31744
1880 * (32*64) (32*31/2 * 64)
1881 */
1882#define HASH_MIX(x, y, a) \
1883 ( x ^= (a), \
1884 y ^= x, x = rol32(x, 7),\
1885 x += y, y = rol32(y,20),\
1886 y *= 9 )
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001887
George Spelvin2a18da7a2016-05-23 07:43:58 -04001888static inline unsigned int fold_hash(unsigned long x, unsigned long y)
George Spelvin0fed3ac2016-05-02 06:31:01 -04001889{
George Spelvin2a18da7a2016-05-23 07:43:58 -04001890 /* Use arch-optimized multiply if one exists */
1891 return __hash_32(y ^ __hash_32(x));
George Spelvin0fed3ac2016-05-02 06:31:01 -04001892}
1893
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001894#endif
1895
George Spelvin2a18da7a2016-05-23 07:43:58 -04001896/*
1897 * Return the hash of a string of known length. This is carfully
1898 * designed to match hash_name(), which is the more critical function.
1899 * In particular, we must end by hashing a final word containing 0..7
1900 * payload bytes, to match the way that hash_name() iterates until it
1901 * finds the delimiter after the name.
1902 */
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001903unsigned int full_name_hash(const char *name, unsigned int len)
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001904{
George Spelvin2a18da7a2016-05-23 07:43:58 -04001905 unsigned long a, x = 0, y = 0;
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001906
1907 for (;;) {
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001908 if (!len)
1909 goto done;
Linus Torvaldse419b4c2012-05-03 10:16:43 -07001910 a = load_unaligned_zeropad(name);
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001911 if (len < sizeof(unsigned long))
1912 break;
George Spelvin2a18da7a2016-05-23 07:43:58 -04001913 HASH_MIX(x, y, a);
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001914 name += sizeof(unsigned long);
1915 len -= sizeof(unsigned long);
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001916 }
George Spelvin2a18da7a2016-05-23 07:43:58 -04001917 x ^= a & bytemask_from_count(len);
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001918done:
George Spelvin2a18da7a2016-05-23 07:43:58 -04001919 return fold_hash(x, y);
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001920}
1921EXPORT_SYMBOL(full_name_hash);
1922
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001923/* Return the "hash_len" (hash and length) of a null-terminated string */
1924u64 hashlen_string(const char *name)
1925{
George Spelvin2a18da7a2016-05-23 07:43:58 -04001926 unsigned long a = 0, x = 0, y = 0, adata, mask, len;
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001927 const struct word_at_a_time constants = WORD_AT_A_TIME_CONSTANTS;
1928
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001929 len = -sizeof(unsigned long);
1930 do {
George Spelvin2a18da7a2016-05-23 07:43:58 -04001931 HASH_MIX(x, y, a);
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001932 len += sizeof(unsigned long);
1933 a = load_unaligned_zeropad(name+len);
1934 } while (!has_zero(a, &adata, &constants));
1935
1936 adata = prep_zero_mask(a, adata, &constants);
1937 mask = create_zero_mask(adata);
George Spelvin2a18da7a2016-05-23 07:43:58 -04001938 x ^= a & zero_bytemask(mask);
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001939
George Spelvin2a18da7a2016-05-23 07:43:58 -04001940 return hashlen_create(fold_hash(x, y), len + find_zero(mask));
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001941}
1942EXPORT_SYMBOL(hashlen_string);
1943
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001944/*
1945 * Calculate the length and hash of the path component, and
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07001946 * return the "hash_len" as the result.
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001947 */
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07001948static inline u64 hash_name(const char *name)
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001949{
George Spelvin2a18da7a2016-05-23 07:43:58 -04001950 unsigned long a = 0, b, x = 0, y = 0, adata, bdata, mask, len;
Linus Torvalds36126f82012-05-26 10:43:17 -07001951 const struct word_at_a_time constants = WORD_AT_A_TIME_CONSTANTS;
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001952
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001953 len = -sizeof(unsigned long);
1954 do {
George Spelvin2a18da7a2016-05-23 07:43:58 -04001955 HASH_MIX(x, y, a);
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001956 len += sizeof(unsigned long);
Linus Torvaldse419b4c2012-05-03 10:16:43 -07001957 a = load_unaligned_zeropad(name+len);
Linus Torvalds36126f82012-05-26 10:43:17 -07001958 b = a ^ REPEAT_BYTE('/');
1959 } while (!(has_zero(a, &adata, &constants) | has_zero(b, &bdata, &constants)));
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001960
Linus Torvalds36126f82012-05-26 10:43:17 -07001961 adata = prep_zero_mask(a, adata, &constants);
1962 bdata = prep_zero_mask(b, bdata, &constants);
Linus Torvalds36126f82012-05-26 10:43:17 -07001963 mask = create_zero_mask(adata | bdata);
George Spelvin2a18da7a2016-05-23 07:43:58 -04001964 x ^= a & zero_bytemask(mask);
Linus Torvalds36126f82012-05-26 10:43:17 -07001965
George Spelvin2a18da7a2016-05-23 07:43:58 -04001966 return hashlen_create(fold_hash(x, y), len + find_zero(mask));
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001967}
1968
George Spelvin2a18da7a2016-05-23 07:43:58 -04001969#else /* !CONFIG_DCACHE_WORD_ACCESS: Slow, byte-at-a-time version */
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001970
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001971/* Return the hash of a string of known length */
1972unsigned int full_name_hash(const char *name, unsigned int len)
Linus Torvalds0145acc2012-03-02 14:32:59 -08001973{
1974 unsigned long hash = init_name_hash();
1975 while (len--)
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001976 hash = partial_name_hash((unsigned char)*name++, hash);
Linus Torvalds0145acc2012-03-02 14:32:59 -08001977 return end_name_hash(hash);
1978}
Linus Torvaldsae942ae2012-03-02 19:40:57 -08001979EXPORT_SYMBOL(full_name_hash);
Linus Torvalds0145acc2012-03-02 14:32:59 -08001980
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001981/* Return the "hash_len" (hash and length) of a null-terminated string */
George Spelvinf2a031b2016-05-29 01:26:41 -04001982u64 hashlen_string(const char *name)
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001983{
1984 unsigned long hash = init_name_hash();
1985 unsigned long len = 0, c;
1986
1987 c = (unsigned char)*name;
George Spelvine0ab7af2016-05-29 08:05:56 -04001988 while (c) {
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001989 len++;
1990 hash = partial_name_hash(c, hash);
1991 c = (unsigned char)name[len];
George Spelvine0ab7af2016-05-29 08:05:56 -04001992 }
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001993 return hashlen_create(end_name_hash(hash), len);
1994}
George Spelvinf2a031b2016-05-29 01:26:41 -04001995EXPORT_SYMBOL(hashlen_string);
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001996
Linus Torvalds3ddcd052011-08-06 22:45:50 -07001997/*
Linus Torvalds200e9ef2012-03-02 14:49:24 -08001998 * We know there's a real path component here of at least
1999 * one character.
2000 */
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07002001static inline u64 hash_name(const char *name)
Linus Torvalds200e9ef2012-03-02 14:49:24 -08002002{
2003 unsigned long hash = init_name_hash();
2004 unsigned long len = 0, c;
2005
2006 c = (unsigned char)*name;
2007 do {
2008 len++;
2009 hash = partial_name_hash(c, hash);
2010 c = (unsigned char)name[len];
2011 } while (c && c != '/');
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07002012 return hashlen_create(end_name_hash(hash), len);
Linus Torvalds200e9ef2012-03-02 14:49:24 -08002013}
2014
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08002015#endif
2016
Linus Torvalds200e9ef2012-03-02 14:49:24 -08002017/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018 * Name resolution.
Prasanna Medaea3834d2005-04-29 16:00:17 +01002019 * This is the basic name resolution function, turning a pathname into
2020 * the final dentry. We expect 'base' to be positive and a directory.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021 *
Prasanna Medaea3834d2005-04-29 16:00:17 +01002022 * Returns 0 and nd will have valid dentry and mnt on success.
2023 * Returns error and drops reference to input namei data on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 */
Al Viro6de88d72009-08-09 01:41:57 +04002025static int link_path_walk(const char *name, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 int err;
Al Viro32cd7462015-04-18 20:30:49 -04002028
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029 while (*name=='/')
2030 name++;
2031 if (!*name)
Al Viro9e18f102015-04-18 20:44:34 -04002032 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034 /* At this point we know we have a real path component. */
2035 for(;;) {
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07002036 u64 hash_len;
Al Virofe479a52011-02-22 15:10:03 -05002037 int type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038
Al Viro52094c82011-02-21 21:34:47 -05002039 err = may_lookup(nd);
George Spelvin2a18da7a2016-05-23 07:43:58 -04002040 if (err)
Al Viro3595e232015-05-09 16:54:45 -04002041 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07002043 hash_len = hash_name(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044
Al Virofe479a52011-02-22 15:10:03 -05002045 type = LAST_NORM;
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07002046 if (name[0] == '.') switch (hashlen_len(hash_len)) {
Al Virofe479a52011-02-22 15:10:03 -05002047 case 2:
Linus Torvalds200e9ef2012-03-02 14:49:24 -08002048 if (name[1] == '.') {
Al Virofe479a52011-02-22 15:10:03 -05002049 type = LAST_DOTDOT;
Al Viro16c2cd72011-02-22 15:50:10 -05002050 nd->flags |= LOOKUP_JUMPED;
2051 }
Al Virofe479a52011-02-22 15:10:03 -05002052 break;
2053 case 1:
2054 type = LAST_DOT;
2055 }
Al Viro5a202bc2011-03-08 14:17:44 -05002056 if (likely(type == LAST_NORM)) {
2057 struct dentry *parent = nd->path.dentry;
Al Viro16c2cd72011-02-22 15:50:10 -05002058 nd->flags &= ~LOOKUP_JUMPED;
Al Viro5a202bc2011-03-08 14:17:44 -05002059 if (unlikely(parent->d_flags & DCACHE_OP_HASH)) {
James Hogana060dc52014-09-16 13:07:35 +01002060 struct qstr this = { { .hash_len = hash_len }, .name = name };
Linus Torvaldsda53be12013-05-21 15:22:44 -07002061 err = parent->d_op->d_hash(parent, &this);
Al Viro5a202bc2011-03-08 14:17:44 -05002062 if (err < 0)
Al Viro3595e232015-05-09 16:54:45 -04002063 return err;
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07002064 hash_len = this.hash_len;
2065 name = this.name;
Al Viro5a202bc2011-03-08 14:17:44 -05002066 }
2067 }
Al Virofe479a52011-02-22 15:10:03 -05002068
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07002069 nd->last.hash_len = hash_len;
2070 nd->last.name = name;
Al Viro5f4a6a62013-01-24 18:04:22 -05002071 nd->last_type = type;
2072
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07002073 name += hashlen_len(hash_len);
2074 if (!*name)
Al Virobdf6cbf2015-04-18 20:21:40 -04002075 goto OK;
Linus Torvalds200e9ef2012-03-02 14:49:24 -08002076 /*
2077 * If it wasn't NUL, we know it was '/'. Skip that
2078 * slash, and continue until no more slashes.
2079 */
2080 do {
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07002081 name++;
2082 } while (unlikely(*name == '/'));
Al Viro8620c232015-05-04 08:58:35 -04002083 if (unlikely(!*name)) {
2084OK:
Al Viro368ee9b2015-05-08 17:19:59 -04002085 /* pathname body, done */
Al Viro8620c232015-05-04 08:58:35 -04002086 if (!nd->depth)
2087 return 0;
2088 name = nd->stack[nd->depth - 1].name;
Al Viro368ee9b2015-05-08 17:19:59 -04002089 /* trailing symlink, done */
Al Viro8620c232015-05-04 08:58:35 -04002090 if (!name)
2091 return 0;
2092 /* last component of nested symlink */
Al Viro4693a542015-05-04 17:47:11 -04002093 err = walk_component(nd, WALK_GET | WALK_PUT);
Al Viro8620c232015-05-04 08:58:35 -04002094 } else {
Al Viro4693a542015-05-04 17:47:11 -04002095 err = walk_component(nd, WALK_GET);
Al Viro8620c232015-05-04 08:58:35 -04002096 }
Al Viroce57dfc2011-03-13 19:58:58 -04002097 if (err < 0)
Al Viro3595e232015-05-09 16:54:45 -04002098 return err;
Al Virofe479a52011-02-22 15:10:03 -05002099
Al Viroce57dfc2011-03-13 19:58:58 -04002100 if (err) {
Al Viro626de992015-05-04 18:26:59 -04002101 const char *s = get_link(nd);
Al Viro5a460272015-04-17 23:44:45 -04002102
Viresh Kumara1c83682015-08-12 15:59:44 +05302103 if (IS_ERR(s))
Al Viro3595e232015-05-09 16:54:45 -04002104 return PTR_ERR(s);
Al Virod40bcc02015-04-18 20:03:03 -04002105 err = 0;
2106 if (unlikely(!s)) {
2107 /* jumped */
Al Virob9ff4422015-05-02 20:19:23 -04002108 put_link(nd);
Al Virod40bcc02015-04-18 20:03:03 -04002109 } else {
Al Virofab51e82015-05-10 11:01:00 -04002110 nd->stack[nd->depth - 1].name = name;
2111 name = s;
2112 continue;
Al Virod40bcc02015-04-18 20:03:03 -04002113 }
Nick Piggin31e6b012011-01-07 17:49:52 +11002114 }
Al Viro97242f92015-08-01 19:59:28 -04002115 if (unlikely(!d_can_lookup(nd->path.dentry))) {
2116 if (nd->flags & LOOKUP_RCU) {
2117 if (unlazy_walk(nd, NULL, 0))
2118 return -ECHILD;
2119 }
Al Viro3595e232015-05-09 16:54:45 -04002120 return -ENOTDIR;
Al Viro97242f92015-08-01 19:59:28 -04002121 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123}
2124
Al Viroc8a53ee2015-05-12 18:43:07 -04002125static const char *path_init(struct nameidata *nd, unsigned flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126{
Prasanna Medaea3834d2005-04-29 16:00:17 +01002127 int retval = 0;
Al Viroc8a53ee2015-05-12 18:43:07 -04002128 const char *s = nd->name->name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129
2130 nd->last_type = LAST_ROOT; /* if there are only slashes... */
Al Viro980f3ea2014-11-20 14:20:24 -05002131 nd->flags = flags | LOOKUP_JUMPED | LOOKUP_PARENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132 nd->depth = 0;
Al Viro5b6ca022011-03-09 23:04:47 -05002133 if (flags & LOOKUP_ROOT) {
David Howellsb18825a2013-09-12 19:22:53 +01002134 struct dentry *root = nd->root.dentry;
2135 struct inode *inode = root->d_inode;
Al Virofd2f7cb2015-02-22 20:07:13 -05002136 if (*s) {
Miklos Szeredi44b1d532014-04-01 17:08:41 +02002137 if (!d_can_lookup(root))
Al Viro368ee9b2015-05-08 17:19:59 -04002138 return ERR_PTR(-ENOTDIR);
Al Viro73d049a2011-03-11 12:08:24 -05002139 retval = inode_permission(inode, MAY_EXEC);
2140 if (retval)
Al Viro368ee9b2015-05-08 17:19:59 -04002141 return ERR_PTR(retval);
Al Viro73d049a2011-03-11 12:08:24 -05002142 }
Al Viro5b6ca022011-03-09 23:04:47 -05002143 nd->path = nd->root;
2144 nd->inode = inode;
2145 if (flags & LOOKUP_RCU) {
Al Viro8b61e742013-11-08 12:45:01 -05002146 rcu_read_lock();
Al Viro5b6ca022011-03-09 23:04:47 -05002147 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
Al Viro8f47a0162015-05-09 19:02:01 -04002148 nd->root_seq = nd->seq;
Al Viro48a066e2013-09-29 22:06:07 -04002149 nd->m_seq = read_seqbegin(&mount_lock);
Al Viro5b6ca022011-03-09 23:04:47 -05002150 } else {
2151 path_get(&nd->path);
2152 }
Al Viro368ee9b2015-05-08 17:19:59 -04002153 return s;
Al Viro5b6ca022011-03-09 23:04:47 -05002154 }
2155
Al Viro2a737872009-04-07 11:49:53 -04002156 nd->root.mnt = NULL;
Al Viro248fb5b2015-12-05 20:51:58 -05002157 nd->path.mnt = NULL;
2158 nd->path.dentry = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159
Al Viro48a066e2013-09-29 22:06:07 -04002160 nd->m_seq = read_seqbegin(&mount_lock);
Al Virofd2f7cb2015-02-22 20:07:13 -05002161 if (*s == '/') {
Al Viro9e6697e2015-12-05 20:07:21 -05002162 if (flags & LOOKUP_RCU)
Al Viro8b61e742013-11-08 12:45:01 -05002163 rcu_read_lock();
Al Viro9e6697e2015-12-05 20:07:21 -05002164 set_root(nd);
Al Viro248fb5b2015-12-05 20:51:58 -05002165 if (likely(!nd_jump_root(nd)))
Al Viroef55d912015-12-05 20:25:06 -05002166 return s;
Al Viro248fb5b2015-12-05 20:51:58 -05002167 nd->root.mnt = NULL;
Al Viroef55d912015-12-05 20:25:06 -05002168 rcu_read_unlock();
2169 return ERR_PTR(-ECHILD);
Al Viroc8a53ee2015-05-12 18:43:07 -04002170 } else if (nd->dfd == AT_FDCWD) {
Al Viroe41f7d42011-02-22 14:02:58 -05002171 if (flags & LOOKUP_RCU) {
2172 struct fs_struct *fs = current->fs;
2173 unsigned seq;
2174
Al Viro8b61e742013-11-08 12:45:01 -05002175 rcu_read_lock();
Al Viroe41f7d42011-02-22 14:02:58 -05002176
2177 do {
2178 seq = read_seqcount_begin(&fs->seq);
2179 nd->path = fs->pwd;
Al Viroef55d912015-12-05 20:25:06 -05002180 nd->inode = nd->path.dentry->d_inode;
Al Viroe41f7d42011-02-22 14:02:58 -05002181 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
2182 } while (read_seqcount_retry(&fs->seq, seq));
2183 } else {
2184 get_fs_pwd(current->fs, &nd->path);
Al Viroef55d912015-12-05 20:25:06 -05002185 nd->inode = nd->path.dentry->d_inode;
Al Viroe41f7d42011-02-22 14:02:58 -05002186 }
Al Viroef55d912015-12-05 20:25:06 -05002187 return s;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002188 } else {
Jeff Layton582aa642012-12-11 08:56:16 -05002189 /* Caller must check execute permissions on the starting path component */
Al Viroc8a53ee2015-05-12 18:43:07 -04002190 struct fd f = fdget_raw(nd->dfd);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002191 struct dentry *dentry;
2192
Al Viro2903ff02012-08-28 12:52:22 -04002193 if (!f.file)
Al Viro368ee9b2015-05-08 17:19:59 -04002194 return ERR_PTR(-EBADF);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002195
Al Viro2903ff02012-08-28 12:52:22 -04002196 dentry = f.file->f_path.dentry;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002197
Al Virofd2f7cb2015-02-22 20:07:13 -05002198 if (*s) {
Miklos Szeredi44b1d532014-04-01 17:08:41 +02002199 if (!d_can_lookup(dentry)) {
Al Viro2903ff02012-08-28 12:52:22 -04002200 fdput(f);
Al Viro368ee9b2015-05-08 17:19:59 -04002201 return ERR_PTR(-ENOTDIR);
Al Viro2903ff02012-08-28 12:52:22 -04002202 }
Al Virof52e0c12011-03-14 18:56:51 -04002203 }
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002204
Al Viro2903ff02012-08-28 12:52:22 -04002205 nd->path = f.file->f_path;
Al Viroe41f7d42011-02-22 14:02:58 -05002206 if (flags & LOOKUP_RCU) {
Al Viro8b61e742013-11-08 12:45:01 -05002207 rcu_read_lock();
Al Viro34a26b92015-05-11 08:05:05 -04002208 nd->inode = nd->path.dentry->d_inode;
2209 nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq);
Al Viroe41f7d42011-02-22 14:02:58 -05002210 } else {
Al Viro2903ff02012-08-28 12:52:22 -04002211 path_get(&nd->path);
Al Viro34a26b92015-05-11 08:05:05 -04002212 nd->inode = nd->path.dentry->d_inode;
Al Viroe41f7d42011-02-22 14:02:58 -05002213 }
Al Viro34a26b92015-05-11 08:05:05 -04002214 fdput(f);
Al Viro368ee9b2015-05-08 17:19:59 -04002215 return s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216 }
Al Viro9b4a9b12009-04-07 11:44:16 -04002217}
2218
Al Viro3bdba282015-05-08 17:37:07 -04002219static const char *trailing_symlink(struct nameidata *nd)
Al Viro95fa25d2015-04-22 13:46:57 -04002220{
2221 const char *s;
Al Virofec2fa22015-05-06 15:58:18 -04002222 int error = may_follow_link(nd);
Al Virodeb106c2015-05-08 18:05:21 -04002223 if (unlikely(error))
Al Viro3bdba282015-05-08 17:37:07 -04002224 return ERR_PTR(error);
Al Viro95fa25d2015-04-22 13:46:57 -04002225 nd->flags |= LOOKUP_PARENT;
Al Virofab51e82015-05-10 11:01:00 -04002226 nd->stack[0].name = NULL;
Al Viro3b2e7f72015-04-19 00:53:50 -04002227 s = get_link(nd);
Al Virodeb106c2015-05-08 18:05:21 -04002228 return s ? s : "";
Al Viro95fa25d2015-04-22 13:46:57 -04002229}
2230
Al Virocaa856342015-04-22 17:52:47 -04002231static inline int lookup_last(struct nameidata *nd)
Al Virobd92d7f2011-03-14 19:54:59 -04002232{
2233 if (nd->last_type == LAST_NORM && nd->last.name[nd->last.len])
2234 nd->flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
2235
2236 nd->flags &= ~LOOKUP_PARENT;
Al Virodeb106c2015-05-08 18:05:21 -04002237 return walk_component(nd,
Al Viro4693a542015-05-04 17:47:11 -04002238 nd->flags & LOOKUP_FOLLOW
2239 ? nd->depth
2240 ? WALK_PUT | WALK_GET
2241 : WALK_GET
2242 : 0);
Al Virobd92d7f2011-03-14 19:54:59 -04002243}
2244
Al Viro9b4a9b12009-04-07 11:44:16 -04002245/* Returns 0 and nd will be valid on success; Retuns error, otherwise. */
Al Viroc8a53ee2015-05-12 18:43:07 -04002246static int path_lookupat(struct nameidata *nd, unsigned flags, struct path *path)
Al Viro9b4a9b12009-04-07 11:44:16 -04002247{
Al Viroc8a53ee2015-05-12 18:43:07 -04002248 const char *s = path_init(nd, flags);
Al Virobd92d7f2011-03-14 19:54:59 -04002249 int err;
Nick Piggin31e6b012011-01-07 17:49:52 +11002250
Al Viro368ee9b2015-05-08 17:19:59 -04002251 if (IS_ERR(s))
2252 return PTR_ERR(s);
Al Viro3bdba282015-05-08 17:37:07 -04002253 while (!(err = link_path_walk(s, nd))
2254 && ((err = lookup_last(nd)) > 0)) {
2255 s = trailing_symlink(nd);
2256 if (IS_ERR(s)) {
2257 err = PTR_ERR(s);
2258 break;
Al Virobd92d7f2011-03-14 19:54:59 -04002259 }
2260 }
Al Viro9f1fafe2011-03-25 11:00:12 -04002261 if (!err)
2262 err = complete_walk(nd);
Al Virobd92d7f2011-03-14 19:54:59 -04002263
Al Virodeb106c2015-05-08 18:05:21 -04002264 if (!err && nd->flags & LOOKUP_DIRECTORY)
2265 if (!d_can_lookup(nd->path.dentry))
Al Virobd23a532011-03-23 09:56:30 -04002266 err = -ENOTDIR;
Al Viro625b6d12015-05-12 16:36:12 -04002267 if (!err) {
2268 *path = nd->path;
2269 nd->path.mnt = NULL;
2270 nd->path.dentry = NULL;
2271 }
2272 terminate_walk(nd);
Al Virobd92d7f2011-03-14 19:54:59 -04002273 return err;
Al Viroee0827c2011-02-21 23:38:09 -05002274}
Nick Piggin31e6b012011-01-07 17:49:52 +11002275
Al Viro625b6d12015-05-12 16:36:12 -04002276static int filename_lookup(int dfd, struct filename *name, unsigned flags,
Al Viro9ad1aaa2015-05-12 16:44:39 -04002277 struct path *path, struct path *root)
Jeff Layton873f1ee2012-10-10 15:25:29 -04002278{
Al Viro894bc8c2015-05-02 07:16:16 -04002279 int retval;
Al Viro9883d182015-05-13 07:28:08 -04002280 struct nameidata nd;
Al Viroabc9f5b2015-05-12 16:53:42 -04002281 if (IS_ERR(name))
2282 return PTR_ERR(name);
Al Viro9ad1aaa2015-05-12 16:44:39 -04002283 if (unlikely(root)) {
2284 nd.root = *root;
2285 flags |= LOOKUP_ROOT;
2286 }
Al Viro9883d182015-05-13 07:28:08 -04002287 set_nameidata(&nd, dfd, name);
Al Viroc8a53ee2015-05-12 18:43:07 -04002288 retval = path_lookupat(&nd, flags | LOOKUP_RCU, path);
Jeff Layton873f1ee2012-10-10 15:25:29 -04002289 if (unlikely(retval == -ECHILD))
Al Viroc8a53ee2015-05-12 18:43:07 -04002290 retval = path_lookupat(&nd, flags, path);
Jeff Layton873f1ee2012-10-10 15:25:29 -04002291 if (unlikely(retval == -ESTALE))
Al Viroc8a53ee2015-05-12 18:43:07 -04002292 retval = path_lookupat(&nd, flags | LOOKUP_REVAL, path);
Jeff Layton873f1ee2012-10-10 15:25:29 -04002293
2294 if (likely(!retval))
Al Viro625b6d12015-05-12 16:36:12 -04002295 audit_inode(name, path->dentry, flags & LOOKUP_PARENT);
Al Viro9883d182015-05-13 07:28:08 -04002296 restore_nameidata();
Al Viroe4bd1c12015-05-12 16:40:39 -04002297 putname(name);
Jeff Layton873f1ee2012-10-10 15:25:29 -04002298 return retval;
2299}
2300
Al Viro8bcb77f2015-05-08 16:59:20 -04002301/* Returns 0 and nd will be valid on success; Retuns error, otherwise. */
Al Viroc8a53ee2015-05-12 18:43:07 -04002302static int path_parentat(struct nameidata *nd, unsigned flags,
Al Viro391172c2015-05-09 11:19:16 -04002303 struct path *parent)
Al Viro8bcb77f2015-05-08 16:59:20 -04002304{
Al Viroc8a53ee2015-05-12 18:43:07 -04002305 const char *s = path_init(nd, flags);
Al Viro368ee9b2015-05-08 17:19:59 -04002306 int err;
2307 if (IS_ERR(s))
2308 return PTR_ERR(s);
2309 err = link_path_walk(s, nd);
Al Viro8bcb77f2015-05-08 16:59:20 -04002310 if (!err)
2311 err = complete_walk(nd);
Al Viro391172c2015-05-09 11:19:16 -04002312 if (!err) {
2313 *parent = nd->path;
2314 nd->path.mnt = NULL;
2315 nd->path.dentry = NULL;
2316 }
2317 terminate_walk(nd);
Al Viro8bcb77f2015-05-08 16:59:20 -04002318 return err;
2319}
2320
Al Viro5c31b6c2015-05-12 17:32:54 -04002321static struct filename *filename_parentat(int dfd, struct filename *name,
Al Viro391172c2015-05-09 11:19:16 -04002322 unsigned int flags, struct path *parent,
2323 struct qstr *last, int *type)
Al Viro8bcb77f2015-05-08 16:59:20 -04002324{
2325 int retval;
Al Viro9883d182015-05-13 07:28:08 -04002326 struct nameidata nd;
Al Viro8bcb77f2015-05-08 16:59:20 -04002327
Al Viro5c31b6c2015-05-12 17:32:54 -04002328 if (IS_ERR(name))
2329 return name;
Al Viro9883d182015-05-13 07:28:08 -04002330 set_nameidata(&nd, dfd, name);
Al Viroc8a53ee2015-05-12 18:43:07 -04002331 retval = path_parentat(&nd, flags | LOOKUP_RCU, parent);
Al Viro8bcb77f2015-05-08 16:59:20 -04002332 if (unlikely(retval == -ECHILD))
Al Viroc8a53ee2015-05-12 18:43:07 -04002333 retval = path_parentat(&nd, flags, parent);
Al Viro8bcb77f2015-05-08 16:59:20 -04002334 if (unlikely(retval == -ESTALE))
Al Viroc8a53ee2015-05-12 18:43:07 -04002335 retval = path_parentat(&nd, flags | LOOKUP_REVAL, parent);
Al Viro391172c2015-05-09 11:19:16 -04002336 if (likely(!retval)) {
2337 *last = nd.last;
2338 *type = nd.last_type;
2339 audit_inode(name, parent->dentry, LOOKUP_PARENT);
Al Viro5c31b6c2015-05-12 17:32:54 -04002340 } else {
2341 putname(name);
2342 name = ERR_PTR(retval);
Al Viro391172c2015-05-09 11:19:16 -04002343 }
Al Viro9883d182015-05-13 07:28:08 -04002344 restore_nameidata();
Al Viro5c31b6c2015-05-12 17:32:54 -04002345 return name;
Al Viro8bcb77f2015-05-08 16:59:20 -04002346}
2347
Al Viro79714f72012-06-15 03:01:42 +04002348/* does lookup, returns the object with parent locked */
2349struct dentry *kern_path_locked(const char *name, struct path *path)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002350{
Al Viro5c31b6c2015-05-12 17:32:54 -04002351 struct filename *filename;
2352 struct dentry *d;
Al Viro391172c2015-05-09 11:19:16 -04002353 struct qstr last;
2354 int type;
Paul Moore51689102015-01-22 00:00:03 -05002355
Al Viro5c31b6c2015-05-12 17:32:54 -04002356 filename = filename_parentat(AT_FDCWD, getname_kernel(name), 0, path,
2357 &last, &type);
Paul Moore51689102015-01-22 00:00:03 -05002358 if (IS_ERR(filename))
2359 return ERR_CAST(filename);
Al Viro5c31b6c2015-05-12 17:32:54 -04002360 if (unlikely(type != LAST_NORM)) {
Al Viro391172c2015-05-09 11:19:16 -04002361 path_put(path);
Al Viro5c31b6c2015-05-12 17:32:54 -04002362 putname(filename);
2363 return ERR_PTR(-EINVAL);
Al Viro79714f72012-06-15 03:01:42 +04002364 }
Al Viro59551022016-01-22 15:40:57 -05002365 inode_lock_nested(path->dentry->d_inode, I_MUTEX_PARENT);
Al Viro391172c2015-05-09 11:19:16 -04002366 d = __lookup_hash(&last, path->dentry, 0);
Al Viro79714f72012-06-15 03:01:42 +04002367 if (IS_ERR(d)) {
Al Viro59551022016-01-22 15:40:57 -05002368 inode_unlock(path->dentry->d_inode);
Al Viro391172c2015-05-09 11:19:16 -04002369 path_put(path);
Al Viro79714f72012-06-15 03:01:42 +04002370 }
Paul Moore51689102015-01-22 00:00:03 -05002371 putname(filename);
Al Viro79714f72012-06-15 03:01:42 +04002372 return d;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002373}
2374
Al Virod1811462008-08-02 00:49:18 -04002375int kern_path(const char *name, unsigned int flags, struct path *path)
2376{
Al Viroabc9f5b2015-05-12 16:53:42 -04002377 return filename_lookup(AT_FDCWD, getname_kernel(name),
2378 flags, path, NULL);
Al Virod1811462008-08-02 00:49:18 -04002379}
Al Viro4d359502014-03-14 12:20:17 -04002380EXPORT_SYMBOL(kern_path);
Al Virod1811462008-08-02 00:49:18 -04002381
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07002382/**
2383 * vfs_path_lookup - lookup a file path relative to a dentry-vfsmount pair
2384 * @dentry: pointer to dentry of the base directory
2385 * @mnt: pointer to vfs mount of the base directory
2386 * @name: pointer to file name
2387 * @flags: lookup flags
Al Viroe0a01242011-06-27 17:00:37 -04002388 * @path: pointer to struct path to fill
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07002389 */
2390int vfs_path_lookup(struct dentry *dentry, struct vfsmount *mnt,
2391 const char *name, unsigned int flags,
Al Viroe0a01242011-06-27 17:00:37 -04002392 struct path *path)
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07002393{
Al Viro9ad1aaa2015-05-12 16:44:39 -04002394 struct path root = {.mnt = mnt, .dentry = dentry};
Al Viro9ad1aaa2015-05-12 16:44:39 -04002395 /* the first argument of filename_lookup() is ignored with root */
Al Viroabc9f5b2015-05-12 16:53:42 -04002396 return filename_lookup(AT_FDCWD, getname_kernel(name),
2397 flags , path, &root);
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07002398}
Al Viro4d359502014-03-14 12:20:17 -04002399EXPORT_SYMBOL(vfs_path_lookup);
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07002400
Christoph Hellwigeead1912007-10-16 23:25:38 -07002401/**
Miklos Szeredi3c9fe8c2016-05-11 01:16:37 +02002402 * lookup_hash - lookup single pathname component on already hashed name
2403 * @name: name and hash to lookup
2404 * @base: base directory to lookup from
2405 *
2406 * The name must have been verified and hashed (see lookup_one_len()). Using
2407 * this after just full_name_hash() is unsafe.
2408 *
2409 * This function also doesn't check for search permission on base directory.
2410 *
2411 * Use lookup_one_len_unlocked() instead, unless you really know what you are
2412 * doing.
2413 *
2414 * Do not hold i_mutex; this helper takes i_mutex if necessary.
2415 */
2416struct dentry *lookup_hash(const struct qstr *name, struct dentry *base)
2417{
2418 struct dentry *ret;
2419
2420 ret = lookup_dcache(name, base, 0);
2421 if (!ret)
2422 ret = lookup_slow(name, base, 0);
2423
2424 return ret;
2425}
2426EXPORT_SYMBOL(lookup_hash);
2427
2428/**
Randy Dunlapa6b91912008-03-19 17:01:00 -07002429 * lookup_one_len - filesystem helper to lookup single pathname component
Christoph Hellwigeead1912007-10-16 23:25:38 -07002430 * @name: pathname component to lookup
2431 * @base: base directory to lookup from
2432 * @len: maximum length @len should be interpreted to
2433 *
Randy Dunlapa6b91912008-03-19 17:01:00 -07002434 * Note that this routine is purely a helper for filesystem usage and should
Al Viro9e7543e2015-02-23 02:49:48 -05002435 * not be called by generic code.
NeilBrownbbddca82016-01-07 16:08:20 -05002436 *
2437 * The caller must hold base->i_mutex.
Christoph Hellwigeead1912007-10-16 23:25:38 -07002438 */
James Morris057f6c02007-04-26 00:12:05 -07002439struct dentry *lookup_one_len(const char *name, struct dentry *base, int len)
2440{
James Morris057f6c02007-04-26 00:12:05 -07002441 struct qstr this;
Al Viro6a96ba52011-03-07 23:49:20 -05002442 unsigned int c;
Miklos Szeredicda309d2012-03-26 12:54:21 +02002443 int err;
James Morris057f6c02007-04-26 00:12:05 -07002444
Al Viro59551022016-01-22 15:40:57 -05002445 WARN_ON_ONCE(!inode_is_locked(base->d_inode));
David Woodhouse2f9092e2009-04-20 23:18:37 +01002446
Al Viro6a96ba52011-03-07 23:49:20 -05002447 this.name = name;
2448 this.len = len;
Linus Torvalds0145acc2012-03-02 14:32:59 -08002449 this.hash = full_name_hash(name, len);
Al Viro6a96ba52011-03-07 23:49:20 -05002450 if (!len)
2451 return ERR_PTR(-EACCES);
2452
Al Viro21d8a152012-11-29 22:17:21 -05002453 if (unlikely(name[0] == '.')) {
2454 if (len < 2 || (len == 2 && name[1] == '.'))
2455 return ERR_PTR(-EACCES);
2456 }
2457
Al Viro6a96ba52011-03-07 23:49:20 -05002458 while (len--) {
2459 c = *(const unsigned char *)name++;
2460 if (c == '/' || c == '\0')
2461 return ERR_PTR(-EACCES);
Al Viro6a96ba52011-03-07 23:49:20 -05002462 }
Al Viro5a202bc2011-03-08 14:17:44 -05002463 /*
2464 * See if the low-level filesystem might want
2465 * to use its own hash..
2466 */
2467 if (base->d_flags & DCACHE_OP_HASH) {
Linus Torvaldsda53be12013-05-21 15:22:44 -07002468 int err = base->d_op->d_hash(base, &this);
Al Viro5a202bc2011-03-08 14:17:44 -05002469 if (err < 0)
2470 return ERR_PTR(err);
2471 }
Christoph Hellwigeead1912007-10-16 23:25:38 -07002472
Miklos Szeredicda309d2012-03-26 12:54:21 +02002473 err = inode_permission(base->d_inode, MAY_EXEC);
2474 if (err)
2475 return ERR_PTR(err);
2476
Al Viro72bd8662012-06-10 17:17:17 -04002477 return __lookup_hash(&this, base, 0);
James Morris057f6c02007-04-26 00:12:05 -07002478}
Al Viro4d359502014-03-14 12:20:17 -04002479EXPORT_SYMBOL(lookup_one_len);
James Morris057f6c02007-04-26 00:12:05 -07002480
NeilBrownbbddca82016-01-07 16:08:20 -05002481/**
2482 * lookup_one_len_unlocked - filesystem helper to lookup single pathname component
2483 * @name: pathname component to lookup
2484 * @base: base directory to lookup from
2485 * @len: maximum length @len should be interpreted to
2486 *
2487 * Note that this routine is purely a helper for filesystem usage and should
2488 * not be called by generic code.
2489 *
2490 * Unlike lookup_one_len, it should be called without the parent
2491 * i_mutex held, and will take the i_mutex itself if necessary.
2492 */
2493struct dentry *lookup_one_len_unlocked(const char *name,
2494 struct dentry *base, int len)
2495{
2496 struct qstr this;
2497 unsigned int c;
2498 int err;
NeilBrownbbddca82016-01-07 16:08:20 -05002499
2500 this.name = name;
2501 this.len = len;
2502 this.hash = full_name_hash(name, len);
2503 if (!len)
2504 return ERR_PTR(-EACCES);
2505
2506 if (unlikely(name[0] == '.')) {
2507 if (len < 2 || (len == 2 && name[1] == '.'))
2508 return ERR_PTR(-EACCES);
2509 }
2510
2511 while (len--) {
2512 c = *(const unsigned char *)name++;
2513 if (c == '/' || c == '\0')
2514 return ERR_PTR(-EACCES);
2515 }
2516 /*
2517 * See if the low-level filesystem might want
2518 * to use its own hash..
2519 */
2520 if (base->d_flags & DCACHE_OP_HASH) {
2521 int err = base->d_op->d_hash(base, &this);
2522 if (err < 0)
2523 return ERR_PTR(err);
2524 }
2525
2526 err = inode_permission(base->d_inode, MAY_EXEC);
2527 if (err)
2528 return ERR_PTR(err);
2529
Miklos Szeredi3c9fe8c2016-05-11 01:16:37 +02002530 return lookup_hash(&this, base);
NeilBrownbbddca82016-01-07 16:08:20 -05002531}
2532EXPORT_SYMBOL(lookup_one_len_unlocked);
2533
Eric W. Biedermaneedf2652016-06-02 10:29:47 -05002534#ifdef CONFIG_UNIX98_PTYS
2535int path_pts(struct path *path)
2536{
2537 /* Find something mounted on "pts" in the same directory as
2538 * the input path.
2539 */
2540 struct dentry *child, *parent;
2541 struct qstr this;
2542 int ret;
2543
2544 ret = path_parent_directory(path);
2545 if (ret)
2546 return ret;
2547
2548 parent = path->dentry;
2549 this.name = "pts";
2550 this.len = 3;
2551 child = d_hash_and_lookup(parent, &this);
2552 if (!child)
2553 return -ENOENT;
2554
2555 path->dentry = child;
2556 dput(parent);
2557 follow_mount(path);
2558 return 0;
2559}
2560#endif
2561
Andy Whitcroft1fa1e7f2011-11-02 09:44:39 +01002562int user_path_at_empty(int dfd, const char __user *name, unsigned flags,
2563 struct path *path, int *empty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002564{
Al Viroabc9f5b2015-05-12 16:53:42 -04002565 return filename_lookup(dfd, getname_flags(name, flags, empty),
2566 flags, path, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567}
Al Virob853a162015-05-13 09:12:02 -04002568EXPORT_SYMBOL(user_path_at_empty);
Andy Whitcroft1fa1e7f2011-11-02 09:44:39 +01002569
Jeff Layton873f1ee2012-10-10 15:25:29 -04002570/*
2571 * NB: most callers don't do anything directly with the reference to the
2572 * to struct filename, but the nd->last pointer points into the name string
2573 * allocated by getname. So we must hold the reference to it until all
2574 * path-walking is complete.
2575 */
Al Viroa2ec4a22015-05-13 06:57:49 -04002576static inline struct filename *
Al Virof5beed72015-04-30 16:09:11 -04002577user_path_parent(int dfd, const char __user *path,
2578 struct path *parent,
2579 struct qstr *last,
2580 int *type,
Jeff Layton9e790bd2012-12-11 12:10:09 -05002581 unsigned int flags)
Al Viro2ad94ae2008-07-21 09:32:51 -04002582{
Jeff Layton9e790bd2012-12-11 12:10:09 -05002583 /* only LOOKUP_REVAL is allowed in extra flags */
Al Viro5c31b6c2015-05-12 17:32:54 -04002584 return filename_parentat(dfd, getname(path), flags & LOOKUP_REVAL,
2585 parent, last, type);
Al Viro2ad94ae2008-07-21 09:32:51 -04002586}
2587
Jeff Layton80334262013-07-26 06:23:25 -04002588/**
Al Viro197df042013-09-08 14:03:27 -04002589 * mountpoint_last - look up last component for umount
Jeff Layton80334262013-07-26 06:23:25 -04002590 * @nd: pathwalk nameidata - currently pointing at parent directory of "last"
2591 * @path: pointer to container for result
2592 *
2593 * This is a special lookup_last function just for umount. In this case, we
2594 * need to resolve the path without doing any revalidation.
2595 *
2596 * The nameidata should be the result of doing a LOOKUP_PARENT pathwalk. Since
2597 * mountpoints are always pinned in the dcache, their ancestors are too. Thus,
2598 * in almost all cases, this lookup will be served out of the dcache. The only
2599 * cases where it won't are if nd->last refers to a symlink or the path is
2600 * bogus and it doesn't exist.
2601 *
2602 * Returns:
2603 * -error: if there was an error during lookup. This includes -ENOENT if the
2604 * lookup found a negative dentry. The nd->path reference will also be
2605 * put in this case.
2606 *
2607 * 0: if we successfully resolved nd->path and found it to not to be a
2608 * symlink that needs to be followed. "path" will also be populated.
2609 * The nd->path reference will also be put.
2610 *
2611 * 1: if we successfully resolved nd->last and found it to be a symlink
2612 * that needs to be followed. "path" will be populated with the path
2613 * to the link, and nd->path will *not* be put.
2614 */
2615static int
Al Viro197df042013-09-08 14:03:27 -04002616mountpoint_last(struct nameidata *nd, struct path *path)
Jeff Layton80334262013-07-26 06:23:25 -04002617{
2618 int error = 0;
2619 struct dentry *dentry;
2620 struct dentry *dir = nd->path.dentry;
2621
Al Viro35759522013-09-08 13:41:33 -04002622 /* If we're in rcuwalk, drop out of it to handle last component */
2623 if (nd->flags & LOOKUP_RCU) {
Al Viro6e9918b2015-05-05 09:26:05 -04002624 if (unlazy_walk(nd, NULL, 0))
Al Virodeb106c2015-05-08 18:05:21 -04002625 return -ECHILD;
Jeff Layton80334262013-07-26 06:23:25 -04002626 }
2627
2628 nd->flags &= ~LOOKUP_PARENT;
2629
2630 if (unlikely(nd->last_type != LAST_NORM)) {
2631 error = handle_dots(nd, nd->last_type);
Al Viro35759522013-09-08 13:41:33 -04002632 if (error)
Al Virodeb106c2015-05-08 18:05:21 -04002633 return error;
Al Viro35759522013-09-08 13:41:33 -04002634 dentry = dget(nd->path.dentry);
Al Viro949a8522016-03-06 14:20:52 -05002635 } else {
2636 dentry = d_lookup(dir, &nd->last);
Jeff Layton80334262013-07-26 06:23:25 -04002637 if (!dentry) {
Al Viro949a8522016-03-06 14:20:52 -05002638 /*
2639 * No cached dentry. Mounted dentries are pinned in the
2640 * cache, so that means that this dentry is probably
2641 * a symlink or the path doesn't actually point
2642 * to a mounted dentry.
2643 */
2644 dentry = lookup_slow(&nd->last, dir,
2645 nd->flags | LOOKUP_NO_REVAL);
2646 if (IS_ERR(dentry))
2647 return PTR_ERR(dentry);
Dave Jonesbcceeeb2013-09-10 17:04:25 -04002648 }
Jeff Layton80334262013-07-26 06:23:25 -04002649 }
David Howells698934d2015-03-17 17:33:52 +00002650 if (d_is_negative(dentry)) {
Al Viro35759522013-09-08 13:41:33 -04002651 dput(dentry);
Al Virodeb106c2015-05-08 18:05:21 -04002652 return -ENOENT;
Jeff Layton80334262013-07-26 06:23:25 -04002653 }
Al Viro191d7f72015-05-04 08:26:45 -04002654 if (nd->depth)
2655 put_link(nd);
Al Viro35759522013-09-08 13:41:33 -04002656 path->dentry = dentry;
Vasily Averin295dc392014-07-21 12:30:23 +04002657 path->mnt = nd->path.mnt;
Al Viro181548c2015-05-07 19:54:34 -04002658 error = should_follow_link(nd, path, nd->flags & LOOKUP_FOLLOW,
2659 d_backing_inode(dentry), 0);
Al Virodeb106c2015-05-08 18:05:21 -04002660 if (unlikely(error))
Al Virod63ff282015-05-04 18:13:23 -04002661 return error;
Vasily Averin295dc392014-07-21 12:30:23 +04002662 mntget(path->mnt);
Al Viro35759522013-09-08 13:41:33 -04002663 follow_mount(path);
Al Virodeb106c2015-05-08 18:05:21 -04002664 return 0;
Jeff Layton80334262013-07-26 06:23:25 -04002665}
2666
2667/**
Al Viro197df042013-09-08 14:03:27 -04002668 * path_mountpoint - look up a path to be umounted
Masanari Iida2a78b8572015-09-09 15:39:23 -07002669 * @nd: lookup context
Jeff Layton80334262013-07-26 06:23:25 -04002670 * @flags: lookup flags
Al Viroc8a53ee2015-05-12 18:43:07 -04002671 * @path: pointer to container for result
Jeff Layton80334262013-07-26 06:23:25 -04002672 *
2673 * Look up the given name, but don't attempt to revalidate the last component.
Randy Dunlap606d6fe2013-10-19 14:56:55 -07002674 * Returns 0 and "path" will be valid on success; Returns error otherwise.
Jeff Layton80334262013-07-26 06:23:25 -04002675 */
2676static int
Al Viroc8a53ee2015-05-12 18:43:07 -04002677path_mountpoint(struct nameidata *nd, unsigned flags, struct path *path)
Jeff Layton80334262013-07-26 06:23:25 -04002678{
Al Viroc8a53ee2015-05-12 18:43:07 -04002679 const char *s = path_init(nd, flags);
Al Viro368ee9b2015-05-08 17:19:59 -04002680 int err;
2681 if (IS_ERR(s))
2682 return PTR_ERR(s);
Al Viro3bdba282015-05-08 17:37:07 -04002683 while (!(err = link_path_walk(s, nd)) &&
2684 (err = mountpoint_last(nd, path)) > 0) {
2685 s = trailing_symlink(nd);
2686 if (IS_ERR(s)) {
2687 err = PTR_ERR(s);
Jeff Layton80334262013-07-26 06:23:25 -04002688 break;
Al Viro3bdba282015-05-08 17:37:07 -04002689 }
Jeff Layton80334262013-07-26 06:23:25 -04002690 }
Al Virodeb106c2015-05-08 18:05:21 -04002691 terminate_walk(nd);
Jeff Layton80334262013-07-26 06:23:25 -04002692 return err;
2693}
2694
Al Viro2d864652013-09-08 20:18:44 -04002695static int
Al Viro668696d2015-02-22 19:44:00 -05002696filename_mountpoint(int dfd, struct filename *name, struct path *path,
Al Viro2d864652013-09-08 20:18:44 -04002697 unsigned int flags)
2698{
Al Viro9883d182015-05-13 07:28:08 -04002699 struct nameidata nd;
Al Virocbaab2d2015-01-22 02:49:00 -05002700 int error;
Al Viro668696d2015-02-22 19:44:00 -05002701 if (IS_ERR(name))
2702 return PTR_ERR(name);
Al Viro9883d182015-05-13 07:28:08 -04002703 set_nameidata(&nd, dfd, name);
Al Viroc8a53ee2015-05-12 18:43:07 -04002704 error = path_mountpoint(&nd, flags | LOOKUP_RCU, path);
Al Viro2d864652013-09-08 20:18:44 -04002705 if (unlikely(error == -ECHILD))
Al Viroc8a53ee2015-05-12 18:43:07 -04002706 error = path_mountpoint(&nd, flags, path);
Al Viro2d864652013-09-08 20:18:44 -04002707 if (unlikely(error == -ESTALE))
Al Viroc8a53ee2015-05-12 18:43:07 -04002708 error = path_mountpoint(&nd, flags | LOOKUP_REVAL, path);
Al Viro2d864652013-09-08 20:18:44 -04002709 if (likely(!error))
Al Viro668696d2015-02-22 19:44:00 -05002710 audit_inode(name, path->dentry, 0);
Al Viro9883d182015-05-13 07:28:08 -04002711 restore_nameidata();
Al Viro668696d2015-02-22 19:44:00 -05002712 putname(name);
Al Viro2d864652013-09-08 20:18:44 -04002713 return error;
2714}
2715
Jeff Layton80334262013-07-26 06:23:25 -04002716/**
Al Viro197df042013-09-08 14:03:27 -04002717 * user_path_mountpoint_at - lookup a path from userland in order to umount it
Jeff Layton80334262013-07-26 06:23:25 -04002718 * @dfd: directory file descriptor
2719 * @name: pathname from userland
2720 * @flags: lookup flags
2721 * @path: pointer to container to hold result
2722 *
2723 * A umount is a special case for path walking. We're not actually interested
2724 * in the inode in this situation, and ESTALE errors can be a problem. We
2725 * simply want track down the dentry and vfsmount attached at the mountpoint
2726 * and avoid revalidating the last component.
2727 *
2728 * Returns 0 and populates "path" on success.
2729 */
2730int
Al Viro197df042013-09-08 14:03:27 -04002731user_path_mountpoint_at(int dfd, const char __user *name, unsigned int flags,
Jeff Layton80334262013-07-26 06:23:25 -04002732 struct path *path)
2733{
Al Virocbaab2d2015-01-22 02:49:00 -05002734 return filename_mountpoint(dfd, getname(name), path, flags);
Jeff Layton80334262013-07-26 06:23:25 -04002735}
2736
Al Viro2d864652013-09-08 20:18:44 -04002737int
2738kern_path_mountpoint(int dfd, const char *name, struct path *path,
2739 unsigned int flags)
2740{
Al Virocbaab2d2015-01-22 02:49:00 -05002741 return filename_mountpoint(dfd, getname_kernel(name), path, flags);
Al Viro2d864652013-09-08 20:18:44 -04002742}
2743EXPORT_SYMBOL(kern_path_mountpoint);
2744
Miklos Szeredicbdf35b2014-10-24 00:14:36 +02002745int __check_sticky(struct inode *dir, struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002746{
Eric W. Biederman8e96e3b2012-03-03 21:17:15 -08002747 kuid_t fsuid = current_fsuid();
David Howellsda9592e2008-11-14 10:39:05 +11002748
Eric W. Biederman8e96e3b2012-03-03 21:17:15 -08002749 if (uid_eq(inode->i_uid, fsuid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002750 return 0;
Eric W. Biederman8e96e3b2012-03-03 21:17:15 -08002751 if (uid_eq(dir->i_uid, fsuid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002752 return 0;
Andy Lutomirski23adbe12014-06-10 12:45:42 -07002753 return !capable_wrt_inode_uidgid(inode, CAP_FOWNER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002754}
Miklos Szeredicbdf35b2014-10-24 00:14:36 +02002755EXPORT_SYMBOL(__check_sticky);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002756
2757/*
2758 * Check whether we can remove a link victim from directory dir, check
2759 * whether the type of victim is right.
2760 * 1. We can't do it if dir is read-only (done in permission())
2761 * 2. We should have write and exec permissions on dir
2762 * 3. We can't remove anything from append-only dir
2763 * 4. We can't do anything with immutable dir (done in permission())
2764 * 5. If the sticky bit on dir is set we should either
2765 * a. be owner of dir, or
2766 * b. be owner of victim, or
2767 * c. have CAP_FOWNER capability
2768 * 6. If the victim is append-only or immutable we can't do antyhing with
2769 * links pointing to it.
Eric W. Biederman0bd23d092016-06-29 14:54:46 -05002770 * 7. If the victim has an unknown uid or gid we can't change the inode.
2771 * 8. If we were asked to remove a directory and victim isn't one - ENOTDIR.
2772 * 9. If we were asked to remove a non-directory and victim isn't one - EISDIR.
2773 * 10. We can't remove a root or mountpoint.
2774 * 11. We don't allow removal of NFS sillyrenamed files; it's handled by
Linus Torvalds1da177e2005-04-16 15:20:36 -07002775 * nfs_async_unlink().
2776 */
David Howellsb18825a2013-09-12 19:22:53 +01002777static int may_delete(struct inode *dir, struct dentry *victim, bool isdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002778{
David Howells63afdfc2015-05-06 15:59:00 +01002779 struct inode *inode = d_backing_inode(victim);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002780 int error;
2781
David Howellsb18825a2013-09-12 19:22:53 +01002782 if (d_is_negative(victim))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783 return -ENOENT;
David Howellsb18825a2013-09-12 19:22:53 +01002784 BUG_ON(!inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002785
2786 BUG_ON(victim->d_parent->d_inode != dir);
Jeff Layton4fa6b5e2012-10-10 15:25:25 -04002787 audit_inode_child(dir, victim, AUDIT_TYPE_CHILD_DELETE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002788
Al Virof419a2e2008-07-22 00:07:17 -04002789 error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002790 if (error)
2791 return error;
2792 if (IS_APPEND(dir))
2793 return -EPERM;
David Howellsb18825a2013-09-12 19:22:53 +01002794
2795 if (check_sticky(dir, inode) || IS_APPEND(inode) ||
Eric W. Biederman0bd23d092016-06-29 14:54:46 -05002796 IS_IMMUTABLE(inode) || IS_SWAPFILE(inode) || HAS_UNMAPPED_ID(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002797 return -EPERM;
2798 if (isdir) {
Miklos Szeredi44b1d532014-04-01 17:08:41 +02002799 if (!d_is_dir(victim))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002800 return -ENOTDIR;
2801 if (IS_ROOT(victim))
2802 return -EBUSY;
Miklos Szeredi44b1d532014-04-01 17:08:41 +02002803 } else if (d_is_dir(victim))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002804 return -EISDIR;
2805 if (IS_DEADDIR(dir))
2806 return -ENOENT;
2807 if (victim->d_flags & DCACHE_NFSFS_RENAMED)
2808 return -EBUSY;
2809 return 0;
2810}
2811
2812/* Check whether we can create an object with dentry child in directory
2813 * dir.
2814 * 1. We can't do it if child already exists (open has special treatment for
2815 * this case, but since we are inlined it's OK)
2816 * 2. We can't do it if dir is read-only (done in permission())
2817 * 3. We should have write and exec permissions on dir
2818 * 4. We can't do it if dir is immutable (done in permission())
2819 */
Miklos Szeredia95164d2008-07-30 15:08:48 +02002820static inline int may_create(struct inode *dir, struct dentry *child)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002821{
Jeff Layton14e972b2013-05-08 10:25:58 -04002822 audit_inode_child(dir, child, AUDIT_TYPE_CHILD_CREATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823 if (child->d_inode)
2824 return -EEXIST;
2825 if (IS_DEADDIR(dir))
2826 return -ENOENT;
Al Virof419a2e2008-07-22 00:07:17 -04002827 return inode_permission(dir, MAY_WRITE | MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002828}
2829
Linus Torvalds1da177e2005-04-16 15:20:36 -07002830/*
2831 * p1 and p2 should be directories on the same fs.
2832 */
2833struct dentry *lock_rename(struct dentry *p1, struct dentry *p2)
2834{
2835 struct dentry *p;
2836
2837 if (p1 == p2) {
Al Viro59551022016-01-22 15:40:57 -05002838 inode_lock_nested(p1->d_inode, I_MUTEX_PARENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002839 return NULL;
2840 }
2841
Al Virofc640052016-04-10 01:33:30 -04002842 mutex_lock(&p1->d_sb->s_vfs_rename_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002843
OGAWA Hirofumie2761a12008-10-16 07:50:28 +09002844 p = d_ancestor(p2, p1);
2845 if (p) {
Al Viro59551022016-01-22 15:40:57 -05002846 inode_lock_nested(p2->d_inode, I_MUTEX_PARENT);
2847 inode_lock_nested(p1->d_inode, I_MUTEX_CHILD);
OGAWA Hirofumie2761a12008-10-16 07:50:28 +09002848 return p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002849 }
2850
OGAWA Hirofumie2761a12008-10-16 07:50:28 +09002851 p = d_ancestor(p1, p2);
2852 if (p) {
Al Viro59551022016-01-22 15:40:57 -05002853 inode_lock_nested(p1->d_inode, I_MUTEX_PARENT);
2854 inode_lock_nested(p2->d_inode, I_MUTEX_CHILD);
OGAWA Hirofumie2761a12008-10-16 07:50:28 +09002855 return p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002856 }
2857
Al Viro59551022016-01-22 15:40:57 -05002858 inode_lock_nested(p1->d_inode, I_MUTEX_PARENT);
2859 inode_lock_nested(p2->d_inode, I_MUTEX_PARENT2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002860 return NULL;
2861}
Al Viro4d359502014-03-14 12:20:17 -04002862EXPORT_SYMBOL(lock_rename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002863
2864void unlock_rename(struct dentry *p1, struct dentry *p2)
2865{
Al Viro59551022016-01-22 15:40:57 -05002866 inode_unlock(p1->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002867 if (p1 != p2) {
Al Viro59551022016-01-22 15:40:57 -05002868 inode_unlock(p2->d_inode);
Al Virofc640052016-04-10 01:33:30 -04002869 mutex_unlock(&p1->d_sb->s_vfs_rename_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002870 }
2871}
Al Viro4d359502014-03-14 12:20:17 -04002872EXPORT_SYMBOL(unlock_rename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002873
Al Viro4acdaf22011-07-26 01:42:34 -04002874int vfs_create(struct inode *dir, struct dentry *dentry, umode_t mode,
Al Viro312b63f2012-06-10 18:09:36 -04002875 bool want_excl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002876{
Miklos Szeredia95164d2008-07-30 15:08:48 +02002877 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002878 if (error)
2879 return error;
2880
Al Viroacfa4382008-12-04 10:06:33 -05002881 if (!dir->i_op->create)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002882 return -EACCES; /* shouldn't it be ENOSYS? */
2883 mode &= S_IALLUGO;
2884 mode |= S_IFREG;
2885 error = security_inode_create(dir, dentry, mode);
2886 if (error)
2887 return error;
Al Viro312b63f2012-06-10 18:09:36 -04002888 error = dir->i_op->create(dir, dentry, mode, want_excl);
Stephen Smalleya74574a2005-09-09 13:01:44 -07002889 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00002890 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002891 return error;
2892}
Al Viro4d359502014-03-14 12:20:17 -04002893EXPORT_SYMBOL(vfs_create);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002894
Eric W. Biedermana2982cc2016-06-09 15:34:02 -05002895bool may_open_dev(const struct path *path)
2896{
2897 return !(path->mnt->mnt_flags & MNT_NODEV) &&
2898 !(path->mnt->mnt_sb->s_iflags & SB_I_NODEV);
2899}
2900
Al Viro73d049a2011-03-11 12:08:24 -05002901static int may_open(struct path *path, int acc_mode, int flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002902{
Christoph Hellwig3fb64192008-10-24 09:58:10 +02002903 struct dentry *dentry = path->dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002904 struct inode *inode = dentry->d_inode;
2905 int error;
2906
2907 if (!inode)
2908 return -ENOENT;
2909
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01002910 switch (inode->i_mode & S_IFMT) {
2911 case S_IFLNK:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002912 return -ELOOP;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01002913 case S_IFDIR:
2914 if (acc_mode & MAY_WRITE)
2915 return -EISDIR;
2916 break;
2917 case S_IFBLK:
2918 case S_IFCHR:
Eric W. Biedermana2982cc2016-06-09 15:34:02 -05002919 if (!may_open_dev(path))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002920 return -EACCES;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01002921 /*FALLTHRU*/
2922 case S_IFIFO:
2923 case S_IFSOCK:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002924 flag &= ~O_TRUNC;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01002925 break;
Dave Hansen4a3fd212008-02-15 14:37:48 -08002926 }
Dave Hansenb41572e2007-10-16 23:31:14 -07002927
Al Viro62fb4a12015-12-26 22:33:24 -05002928 error = inode_permission(inode, MAY_OPEN | acc_mode);
Dave Hansenb41572e2007-10-16 23:31:14 -07002929 if (error)
2930 return error;
Mimi Zohar6146f0d2009-02-04 09:06:57 -05002931
Linus Torvalds1da177e2005-04-16 15:20:36 -07002932 /*
2933 * An append-only file must be opened in append mode for writing.
2934 */
2935 if (IS_APPEND(inode)) {
Al Viro8737c932009-12-24 06:47:55 -05002936 if ((flag & O_ACCMODE) != O_RDONLY && !(flag & O_APPEND))
Al Viro7715b522009-12-16 03:54:00 -05002937 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002938 if (flag & O_TRUNC)
Al Viro7715b522009-12-16 03:54:00 -05002939 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002940 }
2941
2942 /* O_NOATIME can only be set by the owner or superuser */
Serge E. Hallyn2e149672011-03-23 16:43:26 -07002943 if (flag & O_NOATIME && !inode_owner_or_capable(inode))
Al Viro7715b522009-12-16 03:54:00 -05002944 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002945
J. Bruce Fieldsf3c7691e2011-09-21 10:58:13 -04002946 return 0;
Al Viro7715b522009-12-16 03:54:00 -05002947}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002948
Jeff Laytone1181ee2010-12-07 16:19:50 -05002949static int handle_truncate(struct file *filp)
Al Viro7715b522009-12-16 03:54:00 -05002950{
Jeff Laytone1181ee2010-12-07 16:19:50 -05002951 struct path *path = &filp->f_path;
Al Viro7715b522009-12-16 03:54:00 -05002952 struct inode *inode = path->dentry->d_inode;
2953 int error = get_write_access(inode);
2954 if (error)
2955 return error;
2956 /*
2957 * Refuse to truncate files with mandatory locks held on them.
2958 */
Jeff Laytond7a06982014-03-10 09:54:15 -04002959 error = locks_verify_locked(filp);
Al Viro7715b522009-12-16 03:54:00 -05002960 if (!error)
Tetsuo Handaea0d3ab2010-06-02 13:24:43 +09002961 error = security_path_truncate(path);
Al Viro7715b522009-12-16 03:54:00 -05002962 if (!error) {
2963 error = do_truncate(path->dentry, 0,
2964 ATTR_MTIME|ATTR_CTIME|ATTR_OPEN,
Jeff Laytone1181ee2010-12-07 16:19:50 -05002965 filp);
Al Viro7715b522009-12-16 03:54:00 -05002966 }
2967 put_write_access(inode);
Mimi Zoharacd0c932009-09-04 13:08:46 -04002968 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002969}
2970
Dave Hansend57999e2008-02-15 14:37:27 -08002971static inline int open_to_namei_flags(int flag)
2972{
Al Viro8a5e9292011-06-25 19:15:54 -04002973 if ((flag & O_ACCMODE) == 3)
2974 flag--;
Dave Hansend57999e2008-02-15 14:37:27 -08002975 return flag;
2976}
2977
Al Virod3607752016-03-25 15:21:09 -04002978static int may_o_create(const struct path *dir, struct dentry *dentry, umode_t mode)
Miklos Szeredid18e9002012-06-05 15:10:17 +02002979{
2980 int error = security_path_mknod(dir, dentry, mode, 0);
2981 if (error)
2982 return error;
2983
2984 error = inode_permission(dir->dentry->d_inode, MAY_WRITE | MAY_EXEC);
2985 if (error)
2986 return error;
2987
2988 return security_inode_create(dir->dentry->d_inode, dentry, mode);
2989}
2990
David Howells1acf0af2012-06-14 16:13:46 +01002991/*
2992 * Attempt to atomically look up, create and open a file from a negative
2993 * dentry.
2994 *
2995 * Returns 0 if successful. The file will have been created and attached to
2996 * @file by the filesystem calling finish_open().
2997 *
2998 * Returns 1 if the file was looked up only or didn't need creating. The
2999 * caller will need to perform the open themselves. @path will have been
3000 * updated to point to the new dentry. This may be negative.
3001 *
3002 * Returns an error code otherwise.
3003 */
Al Viro2675a4e2012-06-22 12:41:10 +04003004static int atomic_open(struct nameidata *nd, struct dentry *dentry,
3005 struct path *path, struct file *file,
3006 const struct open_flags *op,
Al Viro1643b432016-04-27 19:14:10 -04003007 int open_flag, umode_t mode,
Al Viro2675a4e2012-06-22 12:41:10 +04003008 int *opened)
Miklos Szeredid18e9002012-06-05 15:10:17 +02003009{
Miklos Szeredid18e9002012-06-05 15:10:17 +02003010 struct dentry *const DENTRY_NOT_SET = (void *) -1UL;
Miklos Szeredid18e9002012-06-05 15:10:17 +02003011 struct inode *dir = nd->path.dentry->d_inode;
Miklos Szeredid18e9002012-06-05 15:10:17 +02003012 int error;
Miklos Szeredid18e9002012-06-05 15:10:17 +02003013
Al Viro384f26e2016-04-28 02:03:55 -04003014 if (!(~open_flag & (O_EXCL | O_CREAT))) /* both O_EXCL and O_CREAT */
Miklos Szeredid18e9002012-06-05 15:10:17 +02003015 open_flag &= ~O_TRUNC;
Miklos Szeredid18e9002012-06-05 15:10:17 +02003016
Miklos Szeredid18e9002012-06-05 15:10:17 +02003017 if (nd->flags & LOOKUP_DIRECTORY)
3018 open_flag |= O_DIRECTORY;
3019
Al Viro30d90492012-06-22 12:40:19 +04003020 file->f_path.dentry = DENTRY_NOT_SET;
3021 file->f_path.mnt = nd->path.mnt;
Al Viro0fb1ea02016-04-27 14:13:10 -04003022 error = dir->i_op->atomic_open(dir, dentry, file,
3023 open_to_namei_flags(open_flag),
3024 mode, opened);
Al Viro6fbd0712016-04-28 11:50:59 -04003025 d_lookup_done(dentry);
Al Viro384f26e2016-04-28 02:03:55 -04003026 if (!error) {
3027 /*
3028 * We didn't have the inode before the open, so check open
3029 * permission here.
3030 */
3031 int acc_mode = op->acc_mode;
3032 if (*opened & FILE_CREATED) {
3033 WARN_ON(!(open_flag & O_CREAT));
3034 fsnotify_create(dir, dentry);
3035 acc_mode = 0;
3036 }
3037 error = may_open(&file->f_path, acc_mode, open_flag);
3038 if (WARN_ON(error > 0))
3039 error = -EINVAL;
3040 } else if (error > 0) {
Al Viro30d90492012-06-22 12:40:19 +04003041 if (WARN_ON(file->f_path.dentry == DENTRY_NOT_SET)) {
Al Viro2675a4e2012-06-22 12:41:10 +04003042 error = -EIO;
Al Viro03da6332013-09-16 19:22:33 -04003043 } else {
Al Viro384f26e2016-04-28 02:03:55 -04003044 if (file->f_path.dentry) {
3045 dput(dentry);
3046 dentry = file->f_path.dentry;
Al Viro03da6332013-09-16 19:22:33 -04003047 }
Al Viro384f26e2016-04-28 02:03:55 -04003048 if (*opened & FILE_CREATED)
3049 fsnotify_create(dir, dentry);
3050 path->dentry = dentry;
3051 path->mnt = nd->path.mnt;
3052 return 1;
Sage Weil62b2ce92012-08-15 13:30:12 -07003053 }
Miklos Szeredid18e9002012-06-05 15:10:17 +02003054 }
Miklos Szeredid18e9002012-06-05 15:10:17 +02003055 dput(dentry);
Al Viro2675a4e2012-06-22 12:41:10 +04003056 return error;
Miklos Szeredid18e9002012-06-05 15:10:17 +02003057}
3058
Nick Piggin31e6b012011-01-07 17:49:52 +11003059/*
David Howells1acf0af2012-06-14 16:13:46 +01003060 * Look up and maybe create and open the last component.
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003061 *
3062 * Must be called with i_mutex held on parent.
3063 *
David Howells1acf0af2012-06-14 16:13:46 +01003064 * Returns 0 if the file was successfully atomically created (if necessary) and
3065 * opened. In this case the file will be returned attached to @file.
3066 *
3067 * Returns 1 if the file was not completely opened at this time, though lookups
3068 * and creations will have been performed and the dentry returned in @path will
3069 * be positive upon return if O_CREAT was specified. If O_CREAT wasn't
3070 * specified then a negative dentry may be returned.
3071 *
3072 * An error code is returned otherwise.
3073 *
3074 * FILE_CREATE will be set in @*opened if the dentry was created and will be
3075 * cleared otherwise prior to returning.
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003076 */
Al Viro2675a4e2012-06-22 12:41:10 +04003077static int lookup_open(struct nameidata *nd, struct path *path,
3078 struct file *file,
3079 const struct open_flags *op,
Al Viro64894cf2012-07-31 00:53:35 +04003080 bool got_write, int *opened)
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003081{
3082 struct dentry *dir = nd->path.dentry;
Miklos Szeredi54ef4872012-06-05 15:10:16 +02003083 struct inode *dir_inode = dir->d_inode;
Al Viro1643b432016-04-27 19:14:10 -04003084 int open_flag = op->open_flag;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003085 struct dentry *dentry;
Al Viro1643b432016-04-27 19:14:10 -04003086 int error, create_error = 0;
Al Viro1643b432016-04-27 19:14:10 -04003087 umode_t mode = op->mode;
Al Viro6fbd0712016-04-28 11:50:59 -04003088 DECLARE_WAIT_QUEUE_HEAD_ONSTACK(wq);
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003089
Al Viroce8644f2016-04-26 14:17:56 -04003090 if (unlikely(IS_DEADDIR(dir_inode)))
3091 return -ENOENT;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003092
Al Viro47237682012-06-10 05:01:45 -04003093 *opened &= ~FILE_CREATED;
Al Viro6fbd0712016-04-28 11:50:59 -04003094 dentry = d_lookup(dir, &nd->last);
3095 for (;;) {
3096 if (!dentry) {
3097 dentry = d_alloc_parallel(dir, &nd->last, &wq);
3098 if (IS_ERR(dentry))
3099 return PTR_ERR(dentry);
3100 }
3101 if (d_in_lookup(dentry))
3102 break;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003103
Al Viro6fbd0712016-04-28 11:50:59 -04003104 if (!(dentry->d_flags & DCACHE_OP_REVALIDATE))
3105 break;
3106
3107 error = d_revalidate(dentry, nd->flags);
3108 if (likely(error > 0))
3109 break;
3110 if (error)
3111 goto out_dput;
3112 d_invalidate(dentry);
3113 dput(dentry);
3114 dentry = NULL;
3115 }
3116 if (dentry->d_inode) {
Al Viro6c51e512016-03-05 20:09:32 -05003117 /* Cached positive dentry: will open in f_op->open */
Miklos Szeredid18e9002012-06-05 15:10:17 +02003118 goto out_no_open;
Al Viro6c51e512016-03-05 20:09:32 -05003119 }
Miklos Szeredid18e9002012-06-05 15:10:17 +02003120
Al Viro1643b432016-04-27 19:14:10 -04003121 /*
3122 * Checking write permission is tricky, bacuse we don't know if we are
3123 * going to actually need it: O_CREAT opens should work as long as the
3124 * file exists. But checking existence breaks atomicity. The trick is
3125 * to check access and if not granted clear O_CREAT from the flags.
3126 *
3127 * Another problem is returing the "right" error value (e.g. for an
3128 * O_EXCL open we want to return EEXIST not EROFS).
3129 */
3130 if (open_flag & O_CREAT) {
3131 if (!IS_POSIXACL(dir->d_inode))
3132 mode &= ~current_umask();
3133 if (unlikely(!got_write)) {
3134 create_error = -EROFS;
3135 open_flag &= ~O_CREAT;
3136 if (open_flag & (O_EXCL | O_TRUNC))
3137 goto no_open;
3138 /* No side effects, safe to clear O_CREAT */
3139 } else {
3140 create_error = may_o_create(&nd->path, dentry, mode);
3141 if (create_error) {
3142 open_flag &= ~O_CREAT;
3143 if (open_flag & O_EXCL)
3144 goto no_open;
3145 }
3146 }
3147 } else if ((open_flag & (O_TRUNC|O_WRONLY|O_RDWR)) &&
3148 unlikely(!got_write)) {
3149 /*
3150 * No O_CREATE -> atomicity not a requirement -> fall
3151 * back to lookup + open
3152 */
3153 goto no_open;
Miklos Szeredid18e9002012-06-05 15:10:17 +02003154 }
3155
Al Viro1643b432016-04-27 19:14:10 -04003156 if (dir_inode->i_op->atomic_open) {
3157 error = atomic_open(nd, dentry, path, file, op, open_flag,
3158 mode, opened);
3159 if (unlikely(error == -ENOENT) && create_error)
3160 error = create_error;
3161 return error;
3162 }
Miklos Szeredi54ef4872012-06-05 15:10:16 +02003163
Al Viro1643b432016-04-27 19:14:10 -04003164no_open:
Al Viro6fbd0712016-04-28 11:50:59 -04003165 if (d_in_lookup(dentry)) {
Al Viro12fa5e22016-04-28 11:19:43 -04003166 struct dentry *res = dir_inode->i_op->lookup(dir_inode, dentry,
3167 nd->flags);
Al Viro6fbd0712016-04-28 11:50:59 -04003168 d_lookup_done(dentry);
Al Viro12fa5e22016-04-28 11:19:43 -04003169 if (unlikely(res)) {
3170 if (IS_ERR(res)) {
3171 error = PTR_ERR(res);
3172 goto out_dput;
3173 }
3174 dput(dentry);
3175 dentry = res;
3176 }
Miklos Szeredi54ef4872012-06-05 15:10:16 +02003177 }
3178
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003179 /* Negative dentry, just create the file */
Al Viro1643b432016-04-27 19:14:10 -04003180 if (!dentry->d_inode && (open_flag & O_CREAT)) {
Al Viro47237682012-06-10 05:01:45 -04003181 *opened |= FILE_CREATED;
Al Viroce8644f2016-04-26 14:17:56 -04003182 audit_inode_child(dir_inode, dentry, AUDIT_TYPE_CHILD_CREATE);
Al Viroce8644f2016-04-26 14:17:56 -04003183 if (!dir_inode->i_op->create) {
3184 error = -EACCES;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003185 goto out_dput;
Miklos Szeredi77d660a2012-06-05 15:10:30 +02003186 }
Al Viroce8644f2016-04-26 14:17:56 -04003187 error = dir_inode->i_op->create(dir_inode, dentry, mode,
Al Viro1643b432016-04-27 19:14:10 -04003188 open_flag & O_EXCL);
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003189 if (error)
3190 goto out_dput;
Al Viroce8644f2016-04-26 14:17:56 -04003191 fsnotify_create(dir_inode, dentry);
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003192 }
Al Viro1643b432016-04-27 19:14:10 -04003193 if (unlikely(create_error) && !dentry->d_inode) {
3194 error = create_error;
3195 goto out_dput;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003196 }
Miklos Szeredid18e9002012-06-05 15:10:17 +02003197out_no_open:
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003198 path->dentry = dentry;
3199 path->mnt = nd->path.mnt;
Al Viro2675a4e2012-06-22 12:41:10 +04003200 return 1;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003201
3202out_dput:
3203 dput(dentry);
Al Viro2675a4e2012-06-22 12:41:10 +04003204 return error;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003205}
3206
3207/*
Al Virofe2d35f2011-03-05 22:58:25 -05003208 * Handle the last step of open()
Nick Piggin31e6b012011-01-07 17:49:52 +11003209 */
Al Viro896475d2015-04-22 18:02:17 -04003210static int do_last(struct nameidata *nd,
Al Viro2675a4e2012-06-22 12:41:10 +04003211 struct file *file, const struct open_flags *op,
Al Viro76ae2a52015-05-12 18:44:32 -04003212 int *opened)
Al Virofb1cc552009-12-24 01:58:28 -05003213{
Al Viroa1e28032009-12-24 02:12:06 -05003214 struct dentry *dir = nd->path.dentry;
Al Viroca344a892011-03-09 00:36:45 -05003215 int open_flag = op->open_flag;
Miklos Szeredi77d660a2012-06-05 15:10:30 +02003216 bool will_truncate = (open_flag & O_TRUNC) != 0;
Al Viro64894cf2012-07-31 00:53:35 +04003217 bool got_write = false;
Al Virobcda7652011-03-13 16:42:14 -04003218 int acc_mode = op->acc_mode;
Al Viro254cf582015-05-05 09:40:46 -04003219 unsigned seq;
Miklos Szeredia1eb3312012-05-21 17:30:07 +02003220 struct inode *inode;
Miklos Szeredi16b1c1c2012-05-21 17:30:19 +02003221 struct path save_parent = { .dentry = NULL, .mnt = NULL };
Al Viro896475d2015-04-22 18:02:17 -04003222 struct path path;
Miklos Szeredi16b1c1c2012-05-21 17:30:19 +02003223 bool retried = false;
Al Viro16c2cd72011-02-22 15:50:10 -05003224 int error;
Al Virofb1cc552009-12-24 01:58:28 -05003225
Al Viroc3e380b2011-02-23 13:39:45 -05003226 nd->flags &= ~LOOKUP_PARENT;
3227 nd->flags |= op->intent;
3228
Al Virobc77daa2013-06-06 09:12:33 -04003229 if (nd->last_type != LAST_NORM) {
Al Virofe2d35f2011-03-05 22:58:25 -05003230 error = handle_dots(nd, nd->last_type);
Al Virodeb106c2015-05-08 18:05:21 -04003231 if (unlikely(error))
Al Viro2675a4e2012-06-22 12:41:10 +04003232 return error;
Miklos Szeredie83db162012-06-05 15:10:29 +02003233 goto finish_open;
Al Viro1f36f772009-12-26 10:56:19 -05003234 }
Al Viro67ee3ad2009-12-26 07:01:01 -05003235
Al Viroca344a892011-03-09 00:36:45 -05003236 if (!(open_flag & O_CREAT)) {
Al Virofe2d35f2011-03-05 22:58:25 -05003237 if (nd->last.name[nd->last.len])
3238 nd->flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
3239 /* we _can_ be in RCU mode here */
Al Viro254cf582015-05-05 09:40:46 -04003240 error = lookup_fast(nd, &path, &inode, &seq);
Al Viroe9742b52016-03-05 22:04:59 -05003241 if (likely(error > 0))
Miklos Szeredi71574862012-06-05 15:10:14 +02003242 goto finish_lookup;
Miklos Szeredia1eb3312012-05-21 17:30:07 +02003243
Miklos Szeredi71574862012-06-05 15:10:14 +02003244 if (error < 0)
Al Virodeb106c2015-05-08 18:05:21 -04003245 return error;
Miklos Szeredi37d7fff2012-06-05 15:10:12 +02003246
Miklos Szeredi71574862012-06-05 15:10:14 +02003247 BUG_ON(nd->inode != dir->d_inode);
Al Viro6583fe22016-03-05 18:14:03 -05003248 BUG_ON(nd->flags & LOOKUP_RCU);
Miklos Szeredib6183df2012-06-05 15:10:13 +02003249 } else {
3250 /* create side of things */
3251 /*
3252 * This will *only* deal with leaving RCU mode - LOOKUP_JUMPED
3253 * has been cleared when we got to the last component we are
3254 * about to look up
3255 */
3256 error = complete_walk(nd);
Al Viroe8bb73d2015-05-08 16:28:42 -04003257 if (error)
Al Viro2675a4e2012-06-22 12:41:10 +04003258 return error;
Miklos Szeredib6183df2012-06-05 15:10:13 +02003259
Al Viro76ae2a52015-05-12 18:44:32 -04003260 audit_inode(nd->name, dir, LOOKUP_PARENT);
Miklos Szeredib6183df2012-06-05 15:10:13 +02003261 /* trailing slashes? */
Al Virodeb106c2015-05-08 18:05:21 -04003262 if (unlikely(nd->last.name[nd->last.len]))
3263 return -EISDIR;
Al Virofe2d35f2011-03-05 22:58:25 -05003264 }
3265
Miklos Szeredi16b1c1c2012-05-21 17:30:19 +02003266retry_lookup:
Al Viro9cf843e2016-04-28 19:35:16 -04003267 if (open_flag & (O_CREAT | O_TRUNC | O_WRONLY | O_RDWR)) {
Al Viro64894cf2012-07-31 00:53:35 +04003268 error = mnt_want_write(nd->path.mnt);
3269 if (!error)
3270 got_write = true;
3271 /*
3272 * do _not_ fail yet - we might not need that or fail with
3273 * a different error; let lookup_open() decide; we'll be
3274 * dropping this one anyway.
3275 */
3276 }
Al Viro9cf843e2016-04-28 19:35:16 -04003277 if (open_flag & O_CREAT)
3278 inode_lock(dir->d_inode);
3279 else
3280 inode_lock_shared(dir->d_inode);
Al Viro896475d2015-04-22 18:02:17 -04003281 error = lookup_open(nd, &path, file, op, got_write, opened);
Al Viro9cf843e2016-04-28 19:35:16 -04003282 if (open_flag & O_CREAT)
3283 inode_unlock(dir->d_inode);
3284 else
3285 inode_unlock_shared(dir->d_inode);
Al Viroa1e28032009-12-24 02:12:06 -05003286
Al Viro2675a4e2012-06-22 12:41:10 +04003287 if (error <= 0) {
3288 if (error)
Miklos Szeredid18e9002012-06-05 15:10:17 +02003289 goto out;
3290
Al Viro47237682012-06-10 05:01:45 -04003291 if ((*opened & FILE_CREATED) ||
Al Viro496ad9a2013-01-23 17:07:38 -05003292 !S_ISREG(file_inode(file)->i_mode))
Miklos Szeredi77d660a2012-06-05 15:10:30 +02003293 will_truncate = false;
Miklos Szeredid18e9002012-06-05 15:10:17 +02003294
Al Viro76ae2a52015-05-12 18:44:32 -04003295 audit_inode(nd->name, file->f_path.dentry, 0);
Miklos Szeredid18e9002012-06-05 15:10:17 +02003296 goto opened;
3297 }
Al Virofb1cc552009-12-24 01:58:28 -05003298
Al Viro47237682012-06-10 05:01:45 -04003299 if (*opened & FILE_CREATED) {
Al Viro9b44f1b2011-03-09 00:17:27 -05003300 /* Don't check for write permission, don't truncate */
Al Viroca344a892011-03-09 00:36:45 -05003301 open_flag &= ~O_TRUNC;
Miklos Szeredi77d660a2012-06-05 15:10:30 +02003302 will_truncate = false;
Al Viro62fb4a12015-12-26 22:33:24 -05003303 acc_mode = 0;
Al Viro896475d2015-04-22 18:02:17 -04003304 path_to_nameidata(&path, nd);
Miklos Szeredie83db162012-06-05 15:10:29 +02003305 goto finish_open_created;
Al Virofb1cc552009-12-24 01:58:28 -05003306 }
3307
3308 /*
Miklos Szeredid18e9002012-06-05 15:10:17 +02003309 * If atomic_open() acquired write access it is dropped now due to
3310 * possible mount and symlink following (this might be optimized away if
3311 * necessary...)
3312 */
Al Viro64894cf2012-07-31 00:53:35 +04003313 if (got_write) {
Miklos Szeredid18e9002012-06-05 15:10:17 +02003314 mnt_drop_write(nd->path.mnt);
Al Viro64894cf2012-07-31 00:53:35 +04003315 got_write = false;
Miklos Szeredid18e9002012-06-05 15:10:17 +02003316 }
3317
Al Viro6583fe22016-03-05 18:14:03 -05003318 if (unlikely(d_is_negative(path.dentry))) {
3319 path_to_nameidata(&path, nd);
3320 return -ENOENT;
3321 }
3322
3323 /*
3324 * create/update audit record if it already exists.
3325 */
3326 audit_inode(nd->name, path.dentry, 0);
3327
Al Virodeb106c2015-05-08 18:05:21 -04003328 if (unlikely((open_flag & (O_EXCL | O_CREAT)) == (O_EXCL | O_CREAT))) {
3329 path_to_nameidata(&path, nd);
3330 return -EEXIST;
3331 }
Al Virofb1cc552009-12-24 01:58:28 -05003332
NeilBrown756daf22015-03-23 13:37:38 +11003333 error = follow_managed(&path, nd);
Al Virodeb106c2015-05-08 18:05:21 -04003334 if (unlikely(error < 0))
3335 return error;
Al Viroa3fbbde2011-11-07 21:21:26 +00003336
Al Viro254cf582015-05-05 09:40:46 -04003337 seq = 0; /* out of RCU mode, so the value doesn't matter */
Al Virod4565642016-02-27 19:23:16 -05003338 inode = d_backing_inode(path.dentry);
Al Viro766c4cb2015-05-07 19:24:57 -04003339finish_lookup:
Al Virod63ff282015-05-04 18:13:23 -04003340 if (nd->depth)
3341 put_link(nd);
Al Viro181548c2015-05-07 19:54:34 -04003342 error = should_follow_link(nd, &path, nd->flags & LOOKUP_FOLLOW,
3343 inode, seq);
Al Virodeb106c2015-05-08 18:05:21 -04003344 if (unlikely(error))
Al Virod63ff282015-05-04 18:13:23 -04003345 return error;
Al Virofb1cc552009-12-24 01:58:28 -05003346
Al Viro896475d2015-04-22 18:02:17 -04003347 if ((nd->flags & LOOKUP_RCU) || nd->path.mnt != path.mnt) {
3348 path_to_nameidata(&path, nd);
Miklos Szeredi16b1c1c2012-05-21 17:30:19 +02003349 } else {
3350 save_parent.dentry = nd->path.dentry;
Al Viro896475d2015-04-22 18:02:17 -04003351 save_parent.mnt = mntget(path.mnt);
3352 nd->path.dentry = path.dentry;
Miklos Szeredi16b1c1c2012-05-21 17:30:19 +02003353
3354 }
Miklos Szeredidecf3402012-05-21 17:30:08 +02003355 nd->inode = inode;
Al Viro254cf582015-05-05 09:40:46 -04003356 nd->seq = seq;
Al Viroa3fbbde2011-11-07 21:21:26 +00003357 /* Why this, you ask? _Now_ we might have grown LOOKUP_JUMPED... */
Al Virobc77daa2013-06-06 09:12:33 -04003358finish_open:
Al Viroa3fbbde2011-11-07 21:21:26 +00003359 error = complete_walk(nd);
Miklos Szeredi16b1c1c2012-05-21 17:30:19 +02003360 if (error) {
3361 path_put(&save_parent);
Al Viro2675a4e2012-06-22 12:41:10 +04003362 return error;
Miklos Szeredi16b1c1c2012-05-21 17:30:19 +02003363 }
Al Viro76ae2a52015-05-12 18:44:32 -04003364 audit_inode(nd->name, nd->path.dentry, 0);
Al Virofb1cc552009-12-24 01:58:28 -05003365 error = -EISDIR;
Miklos Szeredi44b1d532014-04-01 17:08:41 +02003366 if ((open_flag & O_CREAT) && d_is_dir(nd->path.dentry))
Al Viro2675a4e2012-06-22 12:41:10 +04003367 goto out;
Miklos Szerediaf2f5542012-05-21 17:30:11 +02003368 error = -ENOTDIR;
Miklos Szeredi44b1d532014-04-01 17:08:41 +02003369 if ((nd->flags & LOOKUP_DIRECTORY) && !d_can_lookup(nd->path.dentry))
Al Viro2675a4e2012-06-22 12:41:10 +04003370 goto out;
David Howells4bbcbd3b2015-03-17 22:16:40 +00003371 if (!d_is_reg(nd->path.dentry))
Miklos Szeredi77d660a2012-06-05 15:10:30 +02003372 will_truncate = false;
Al Viro6c0d46c2011-03-09 00:59:59 -05003373
Al Viro0f9d1a12011-03-09 00:13:14 -05003374 if (will_truncate) {
3375 error = mnt_want_write(nd->path.mnt);
3376 if (error)
Al Viro2675a4e2012-06-22 12:41:10 +04003377 goto out;
Al Viro64894cf2012-07-31 00:53:35 +04003378 got_write = true;
Al Viro0f9d1a12011-03-09 00:13:14 -05003379 }
Miklos Szeredie83db162012-06-05 15:10:29 +02003380finish_open_created:
Al Viro6ac08702016-04-26 00:02:50 -04003381 error = may_open(&nd->path, acc_mode, open_flag);
3382 if (error)
3383 goto out;
Miklos Szeredi4aa7c632014-10-24 00:14:35 +02003384 BUG_ON(*opened & FILE_OPENED); /* once it's opened, it's opened */
3385 error = vfs_open(&nd->path, file, current_cred());
3386 if (!error) {
3387 *opened |= FILE_OPENED;
3388 } else {
Al Viro30d90492012-06-22 12:40:19 +04003389 if (error == -EOPENSTALE)
Miklos Szeredif60dc3d2012-06-05 15:10:31 +02003390 goto stale_open;
Miklos Szeredi015c3bb2012-06-05 15:10:27 +02003391 goto out;
Miklos Szeredif60dc3d2012-06-05 15:10:31 +02003392 }
Miklos Szeredia8277b92012-06-05 15:10:32 +02003393opened:
Al Viro2675a4e2012-06-22 12:41:10 +04003394 error = open_check_o_direct(file);
Al Virofe9ec822016-04-27 03:14:20 -04003395 if (!error)
3396 error = ima_file_check(file, op->acc_mode, *opened);
3397 if (!error && will_truncate)
Al Viro2675a4e2012-06-22 12:41:10 +04003398 error = handle_truncate(file);
Al Viroca344a892011-03-09 00:36:45 -05003399out:
Al Virofe9ec822016-04-27 03:14:20 -04003400 if (unlikely(error) && (*opened & FILE_OPENED))
3401 fput(file);
Al Viroc80567c2016-02-27 19:17:33 -05003402 if (unlikely(error > 0)) {
3403 WARN_ON(1);
3404 error = -EINVAL;
3405 }
Al Viro64894cf2012-07-31 00:53:35 +04003406 if (got_write)
Al Viro0f9d1a12011-03-09 00:13:14 -05003407 mnt_drop_write(nd->path.mnt);
Miklos Szeredi16b1c1c2012-05-21 17:30:19 +02003408 path_put(&save_parent);
Al Viro2675a4e2012-06-22 12:41:10 +04003409 return error;
Al Virofb1cc552009-12-24 01:58:28 -05003410
Miklos Szeredif60dc3d2012-06-05 15:10:31 +02003411stale_open:
3412 /* If no saved parent or already retried then can't retry */
3413 if (!save_parent.dentry || retried)
3414 goto out;
3415
3416 BUG_ON(save_parent.dentry != dir);
3417 path_put(&nd->path);
3418 nd->path = save_parent;
3419 nd->inode = dir->d_inode;
3420 save_parent.mnt = NULL;
3421 save_parent.dentry = NULL;
Al Viro64894cf2012-07-31 00:53:35 +04003422 if (got_write) {
Miklos Szeredif60dc3d2012-06-05 15:10:31 +02003423 mnt_drop_write(nd->path.mnt);
Al Viro64894cf2012-07-31 00:53:35 +04003424 got_write = false;
Miklos Szeredif60dc3d2012-06-05 15:10:31 +02003425 }
3426 retried = true;
3427 goto retry_lookup;
Al Virofb1cc552009-12-24 01:58:28 -05003428}
3429
Al Viroc8a53ee2015-05-12 18:43:07 -04003430static int do_tmpfile(struct nameidata *nd, unsigned flags,
Al Viro60545d02013-06-07 01:20:27 -04003431 const struct open_flags *op,
3432 struct file *file, int *opened)
3433{
3434 static const struct qstr name = QSTR_INIT("/", 1);
Al Viro625b6d12015-05-12 16:36:12 -04003435 struct dentry *child;
Al Viro60545d02013-06-07 01:20:27 -04003436 struct inode *dir;
Al Viro625b6d12015-05-12 16:36:12 -04003437 struct path path;
Al Viroc8a53ee2015-05-12 18:43:07 -04003438 int error = path_lookupat(nd, flags | LOOKUP_DIRECTORY, &path);
Al Viro60545d02013-06-07 01:20:27 -04003439 if (unlikely(error))
3440 return error;
Al Viro625b6d12015-05-12 16:36:12 -04003441 error = mnt_want_write(path.mnt);
Al Viro60545d02013-06-07 01:20:27 -04003442 if (unlikely(error))
3443 goto out;
Al Viro625b6d12015-05-12 16:36:12 -04003444 dir = path.dentry->d_inode;
Al Viro60545d02013-06-07 01:20:27 -04003445 /* we want directory to be writable */
Al Viro625b6d12015-05-12 16:36:12 -04003446 error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
Al Viro60545d02013-06-07 01:20:27 -04003447 if (error)
3448 goto out2;
Al Viro60545d02013-06-07 01:20:27 -04003449 if (!dir->i_op->tmpfile) {
3450 error = -EOPNOTSUPP;
3451 goto out2;
3452 }
Al Viro625b6d12015-05-12 16:36:12 -04003453 child = d_alloc(path.dentry, &name);
Al Viro60545d02013-06-07 01:20:27 -04003454 if (unlikely(!child)) {
3455 error = -ENOMEM;
3456 goto out2;
3457 }
Al Viro625b6d12015-05-12 16:36:12 -04003458 dput(path.dentry);
3459 path.dentry = child;
3460 error = dir->i_op->tmpfile(dir, child, op->mode);
Al Viro60545d02013-06-07 01:20:27 -04003461 if (error)
3462 goto out2;
Al Viroc8a53ee2015-05-12 18:43:07 -04003463 audit_inode(nd->name, child, 0);
Eric Rannaud69a91c22014-10-30 01:51:01 -07003464 /* Don't check for other permissions, the inode was just created */
Al Viro62fb4a12015-12-26 22:33:24 -05003465 error = may_open(&path, 0, op->open_flag);
Al Viro60545d02013-06-07 01:20:27 -04003466 if (error)
3467 goto out2;
Al Viro625b6d12015-05-12 16:36:12 -04003468 file->f_path.mnt = path.mnt;
3469 error = finish_open(file, child, NULL, opened);
Al Viro60545d02013-06-07 01:20:27 -04003470 if (error)
3471 goto out2;
3472 error = open_check_o_direct(file);
Al Virof4e0c302013-06-11 08:34:36 +04003473 if (error) {
Al Viro60545d02013-06-07 01:20:27 -04003474 fput(file);
Al Virof4e0c302013-06-11 08:34:36 +04003475 } else if (!(op->open_flag & O_EXCL)) {
3476 struct inode *inode = file_inode(file);
3477 spin_lock(&inode->i_lock);
3478 inode->i_state |= I_LINKABLE;
3479 spin_unlock(&inode->i_lock);
3480 }
Al Viro60545d02013-06-07 01:20:27 -04003481out2:
Al Viro625b6d12015-05-12 16:36:12 -04003482 mnt_drop_write(path.mnt);
Al Viro60545d02013-06-07 01:20:27 -04003483out:
Al Viro625b6d12015-05-12 16:36:12 -04003484 path_put(&path);
Al Viro60545d02013-06-07 01:20:27 -04003485 return error;
3486}
3487
Al Viro6ac08702016-04-26 00:02:50 -04003488static int do_o_path(struct nameidata *nd, unsigned flags, struct file *file)
3489{
3490 struct path path;
3491 int error = path_lookupat(nd, flags, &path);
3492 if (!error) {
3493 audit_inode(nd->name, path.dentry, 0);
3494 error = vfs_open(&path, file, current_cred());
3495 path_put(&path);
3496 }
3497 return error;
3498}
3499
Al Viroc8a53ee2015-05-12 18:43:07 -04003500static struct file *path_openat(struct nameidata *nd,
3501 const struct open_flags *op, unsigned flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003502{
Al Viro368ee9b2015-05-08 17:19:59 -04003503 const char *s;
Al Viro30d90492012-06-22 12:40:19 +04003504 struct file *file;
Al Viro47237682012-06-10 05:01:45 -04003505 int opened = 0;
Al Viro13aab422011-02-23 17:54:08 -05003506 int error;
Nick Piggin31e6b012011-01-07 17:49:52 +11003507
Al Viro30d90492012-06-22 12:40:19 +04003508 file = get_empty_filp();
Al Viro1afc99b2013-02-14 20:41:04 -05003509 if (IS_ERR(file))
3510 return file;
Nick Piggin31e6b012011-01-07 17:49:52 +11003511
Al Viro30d90492012-06-22 12:40:19 +04003512 file->f_flags = op->open_flag;
Nick Piggin31e6b012011-01-07 17:49:52 +11003513
Al Virobb458c62013-07-13 13:26:37 +04003514 if (unlikely(file->f_flags & __O_TMPFILE)) {
Al Viroc8a53ee2015-05-12 18:43:07 -04003515 error = do_tmpfile(nd, flags, op, file, &opened);
Al Virof15133d2015-05-08 22:53:15 -04003516 goto out2;
Al Viro60545d02013-06-07 01:20:27 -04003517 }
3518
Al Viro6ac08702016-04-26 00:02:50 -04003519 if (unlikely(file->f_flags & O_PATH)) {
3520 error = do_o_path(nd, flags, file);
3521 if (!error)
3522 opened |= FILE_OPENED;
3523 goto out2;
3524 }
3525
Al Viroc8a53ee2015-05-12 18:43:07 -04003526 s = path_init(nd, flags);
Al Viro368ee9b2015-05-08 17:19:59 -04003527 if (IS_ERR(s)) {
3528 put_filp(file);
3529 return ERR_CAST(s);
3530 }
Al Viro3bdba282015-05-08 17:37:07 -04003531 while (!(error = link_path_walk(s, nd)) &&
Al Viro76ae2a52015-05-12 18:44:32 -04003532 (error = do_last(nd, file, op, &opened)) > 0) {
Al Viro73d049a2011-03-11 12:08:24 -05003533 nd->flags &= ~(LOOKUP_OPEN|LOOKUP_CREATE|LOOKUP_EXCL);
Al Viro3bdba282015-05-08 17:37:07 -04003534 s = trailing_symlink(nd);
3535 if (IS_ERR(s)) {
3536 error = PTR_ERR(s);
Al Viro2675a4e2012-06-22 12:41:10 +04003537 break;
Al Viro3bdba282015-05-08 17:37:07 -04003538 }
Al Viro806b6812009-12-26 07:16:40 -05003539 }
Al Virodeb106c2015-05-08 18:05:21 -04003540 terminate_walk(nd);
Al Virof15133d2015-05-08 22:53:15 -04003541out2:
Al Viro2675a4e2012-06-22 12:41:10 +04003542 if (!(opened & FILE_OPENED)) {
3543 BUG_ON(!error);
Al Viro30d90492012-06-22 12:40:19 +04003544 put_filp(file);
Miklos Szeredi015c3bb2012-06-05 15:10:27 +02003545 }
Al Viro2675a4e2012-06-22 12:41:10 +04003546 if (unlikely(error)) {
3547 if (error == -EOPENSTALE) {
3548 if (flags & LOOKUP_RCU)
3549 error = -ECHILD;
3550 else
3551 error = -ESTALE;
3552 }
3553 file = ERR_PTR(error);
3554 }
3555 return file;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003556}
3557
Jeff Layton669abf42012-10-10 16:43:10 -04003558struct file *do_filp_open(int dfd, struct filename *pathname,
Al Virof9652e12013-06-11 08:23:01 +04003559 const struct open_flags *op)
Al Viro13aab422011-02-23 17:54:08 -05003560{
Al Viro9883d182015-05-13 07:28:08 -04003561 struct nameidata nd;
Al Virof9652e12013-06-11 08:23:01 +04003562 int flags = op->lookup_flags;
Al Viro13aab422011-02-23 17:54:08 -05003563 struct file *filp;
3564
Al Viro9883d182015-05-13 07:28:08 -04003565 set_nameidata(&nd, dfd, pathname);
Al Viroc8a53ee2015-05-12 18:43:07 -04003566 filp = path_openat(&nd, op, flags | LOOKUP_RCU);
Al Viro13aab422011-02-23 17:54:08 -05003567 if (unlikely(filp == ERR_PTR(-ECHILD)))
Al Viroc8a53ee2015-05-12 18:43:07 -04003568 filp = path_openat(&nd, op, flags);
Al Viro13aab422011-02-23 17:54:08 -05003569 if (unlikely(filp == ERR_PTR(-ESTALE)))
Al Viroc8a53ee2015-05-12 18:43:07 -04003570 filp = path_openat(&nd, op, flags | LOOKUP_REVAL);
Al Viro9883d182015-05-13 07:28:08 -04003571 restore_nameidata();
Al Viro13aab422011-02-23 17:54:08 -05003572 return filp;
3573}
3574
Al Viro73d049a2011-03-11 12:08:24 -05003575struct file *do_file_open_root(struct dentry *dentry, struct vfsmount *mnt,
Al Virof9652e12013-06-11 08:23:01 +04003576 const char *name, const struct open_flags *op)
Al Viro73d049a2011-03-11 12:08:24 -05003577{
Al Viro9883d182015-05-13 07:28:08 -04003578 struct nameidata nd;
Al Viro73d049a2011-03-11 12:08:24 -05003579 struct file *file;
Paul Moore51689102015-01-22 00:00:03 -05003580 struct filename *filename;
Al Virof9652e12013-06-11 08:23:01 +04003581 int flags = op->lookup_flags | LOOKUP_ROOT;
Al Viro73d049a2011-03-11 12:08:24 -05003582
3583 nd.root.mnt = mnt;
3584 nd.root.dentry = dentry;
3585
David Howellsb18825a2013-09-12 19:22:53 +01003586 if (d_is_symlink(dentry) && op->intent & LOOKUP_OPEN)
Al Viro73d049a2011-03-11 12:08:24 -05003587 return ERR_PTR(-ELOOP);
3588
Paul Moore51689102015-01-22 00:00:03 -05003589 filename = getname_kernel(name);
Viresh Kumara1c83682015-08-12 15:59:44 +05303590 if (IS_ERR(filename))
Paul Moore51689102015-01-22 00:00:03 -05003591 return ERR_CAST(filename);
3592
Al Viro9883d182015-05-13 07:28:08 -04003593 set_nameidata(&nd, -1, filename);
Al Viroc8a53ee2015-05-12 18:43:07 -04003594 file = path_openat(&nd, op, flags | LOOKUP_RCU);
Al Viro73d049a2011-03-11 12:08:24 -05003595 if (unlikely(file == ERR_PTR(-ECHILD)))
Al Viroc8a53ee2015-05-12 18:43:07 -04003596 file = path_openat(&nd, op, flags);
Al Viro73d049a2011-03-11 12:08:24 -05003597 if (unlikely(file == ERR_PTR(-ESTALE)))
Al Viroc8a53ee2015-05-12 18:43:07 -04003598 file = path_openat(&nd, op, flags | LOOKUP_REVAL);
Al Viro9883d182015-05-13 07:28:08 -04003599 restore_nameidata();
Paul Moore51689102015-01-22 00:00:03 -05003600 putname(filename);
Al Viro73d049a2011-03-11 12:08:24 -05003601 return file;
3602}
3603
Al Virofa14a0b2015-01-22 02:16:49 -05003604static struct dentry *filename_create(int dfd, struct filename *name,
Jeff Layton1ac12b42012-12-11 12:10:06 -05003605 struct path *path, unsigned int lookup_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003606{
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07003607 struct dentry *dentry = ERR_PTR(-EEXIST);
Al Viro391172c2015-05-09 11:19:16 -04003608 struct qstr last;
3609 int type;
Jan Karac30dabf2012-06-12 16:20:30 +02003610 int err2;
Jeff Layton1ac12b42012-12-11 12:10:06 -05003611 int error;
3612 bool is_dir = (lookup_flags & LOOKUP_DIRECTORY);
3613
3614 /*
3615 * Note that only LOOKUP_REVAL and LOOKUP_DIRECTORY matter here. Any
3616 * other flags passed in are ignored!
3617 */
3618 lookup_flags &= LOOKUP_REVAL;
3619
Al Viro5c31b6c2015-05-12 17:32:54 -04003620 name = filename_parentat(dfd, name, lookup_flags, path, &last, &type);
3621 if (IS_ERR(name))
3622 return ERR_CAST(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003623
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07003624 /*
3625 * Yucky last component or no last component at all?
3626 * (foo/., foo/.., /////)
3627 */
Al Viro5c31b6c2015-05-12 17:32:54 -04003628 if (unlikely(type != LAST_NORM))
Al Viroed75e952011-06-27 16:53:43 -04003629 goto out;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07003630
Jan Karac30dabf2012-06-12 16:20:30 +02003631 /* don't fail immediately if it's r/o, at least try to report other errors */
Al Viro391172c2015-05-09 11:19:16 -04003632 err2 = mnt_want_write(path->mnt);
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07003633 /*
3634 * Do the final lookup.
3635 */
Al Viro391172c2015-05-09 11:19:16 -04003636 lookup_flags |= LOOKUP_CREATE | LOOKUP_EXCL;
Al Viro59551022016-01-22 15:40:57 -05003637 inode_lock_nested(path->dentry->d_inode, I_MUTEX_PARENT);
Al Viro391172c2015-05-09 11:19:16 -04003638 dentry = __lookup_hash(&last, path->dentry, lookup_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003639 if (IS_ERR(dentry))
Al Viroa8104a92012-07-20 02:25:00 +04003640 goto unlock;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07003641
Al Viroa8104a92012-07-20 02:25:00 +04003642 error = -EEXIST;
David Howellsb18825a2013-09-12 19:22:53 +01003643 if (d_is_positive(dentry))
Al Viroa8104a92012-07-20 02:25:00 +04003644 goto fail;
David Howellsb18825a2013-09-12 19:22:53 +01003645
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07003646 /*
3647 * Special case - lookup gave negative, but... we had foo/bar/
3648 * From the vfs_mknod() POV we just have a negative dentry -
3649 * all is fine. Let's be bastards - you had / on the end, you've
3650 * been asking for (non-existent) directory. -ENOENT for you.
3651 */
Al Viro391172c2015-05-09 11:19:16 -04003652 if (unlikely(!is_dir && last.name[last.len])) {
Al Viroa8104a92012-07-20 02:25:00 +04003653 error = -ENOENT;
Al Viroed75e952011-06-27 16:53:43 -04003654 goto fail;
Al Viroe9baf6e2008-05-15 04:49:12 -04003655 }
Jan Karac30dabf2012-06-12 16:20:30 +02003656 if (unlikely(err2)) {
3657 error = err2;
Al Viroa8104a92012-07-20 02:25:00 +04003658 goto fail;
Jan Karac30dabf2012-06-12 16:20:30 +02003659 }
Al Viro181c37b2015-05-12 17:21:25 -04003660 putname(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003661 return dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003662fail:
Al Viroa8104a92012-07-20 02:25:00 +04003663 dput(dentry);
3664 dentry = ERR_PTR(error);
3665unlock:
Al Viro59551022016-01-22 15:40:57 -05003666 inode_unlock(path->dentry->d_inode);
Jan Karac30dabf2012-06-12 16:20:30 +02003667 if (!err2)
Al Viro391172c2015-05-09 11:19:16 -04003668 mnt_drop_write(path->mnt);
Al Viroed75e952011-06-27 16:53:43 -04003669out:
Al Viro391172c2015-05-09 11:19:16 -04003670 path_put(path);
Al Viro181c37b2015-05-12 17:21:25 -04003671 putname(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003672 return dentry;
3673}
Al Virofa14a0b2015-01-22 02:16:49 -05003674
3675struct dentry *kern_path_create(int dfd, const char *pathname,
3676 struct path *path, unsigned int lookup_flags)
3677{
Al Viro181c37b2015-05-12 17:21:25 -04003678 return filename_create(dfd, getname_kernel(pathname),
3679 path, lookup_flags);
Al Virofa14a0b2015-01-22 02:16:49 -05003680}
Al Virodae6ad82011-06-26 11:50:15 -04003681EXPORT_SYMBOL(kern_path_create);
3682
Al Viro921a1652012-07-20 01:15:31 +04003683void done_path_create(struct path *path, struct dentry *dentry)
3684{
3685 dput(dentry);
Al Viro59551022016-01-22 15:40:57 -05003686 inode_unlock(path->dentry->d_inode);
Al Viroa8104a92012-07-20 02:25:00 +04003687 mnt_drop_write(path->mnt);
Al Viro921a1652012-07-20 01:15:31 +04003688 path_put(path);
3689}
3690EXPORT_SYMBOL(done_path_create);
3691
Al Viro520ae682015-05-13 07:00:28 -04003692inline struct dentry *user_path_create(int dfd, const char __user *pathname,
Jeff Layton1ac12b42012-12-11 12:10:06 -05003693 struct path *path, unsigned int lookup_flags)
Al Virodae6ad82011-06-26 11:50:15 -04003694{
Al Viro181c37b2015-05-12 17:21:25 -04003695 return filename_create(dfd, getname(pathname), path, lookup_flags);
Al Virodae6ad82011-06-26 11:50:15 -04003696}
3697EXPORT_SYMBOL(user_path_create);
3698
Al Viro1a67aaf2011-07-26 01:52:52 -04003699int vfs_mknod(struct inode *dir, struct dentry *dentry, umode_t mode, dev_t dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003700{
Miklos Szeredia95164d2008-07-30 15:08:48 +02003701 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003702
3703 if (error)
3704 return error;
3705
Eric W. Biederman975d6b32011-11-13 12:16:43 -08003706 if ((S_ISCHR(mode) || S_ISBLK(mode)) && !capable(CAP_MKNOD))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003707 return -EPERM;
3708
Al Viroacfa4382008-12-04 10:06:33 -05003709 if (!dir->i_op->mknod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003710 return -EPERM;
3711
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -07003712 error = devcgroup_inode_mknod(mode, dev);
3713 if (error)
3714 return error;
3715
Linus Torvalds1da177e2005-04-16 15:20:36 -07003716 error = security_inode_mknod(dir, dentry, mode, dev);
3717 if (error)
3718 return error;
3719
Linus Torvalds1da177e2005-04-16 15:20:36 -07003720 error = dir->i_op->mknod(dir, dentry, mode, dev);
Stephen Smalleya74574a2005-09-09 13:01:44 -07003721 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00003722 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003723 return error;
3724}
Al Viro4d359502014-03-14 12:20:17 -04003725EXPORT_SYMBOL(vfs_mknod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003726
Al Virof69aac02011-07-26 04:31:40 -04003727static int may_mknod(umode_t mode)
Dave Hansen463c3192008-02-15 14:37:57 -08003728{
3729 switch (mode & S_IFMT) {
3730 case S_IFREG:
3731 case S_IFCHR:
3732 case S_IFBLK:
3733 case S_IFIFO:
3734 case S_IFSOCK:
3735 case 0: /* zero mode translates to S_IFREG */
3736 return 0;
3737 case S_IFDIR:
3738 return -EPERM;
3739 default:
3740 return -EINVAL;
3741 }
3742}
3743
Al Viro8208a222011-07-25 17:32:17 -04003744SYSCALL_DEFINE4(mknodat, int, dfd, const char __user *, filename, umode_t, mode,
Heiko Carstens2e4d0922009-01-14 14:14:31 +01003745 unsigned, dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003746{
Al Viro2ad94ae2008-07-21 09:32:51 -04003747 struct dentry *dentry;
Al Virodae6ad82011-06-26 11:50:15 -04003748 struct path path;
3749 int error;
Jeff Layton972567f2012-12-20 16:00:10 -05003750 unsigned int lookup_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003751
Al Viro8e4bfca2012-07-20 01:17:26 +04003752 error = may_mknod(mode);
3753 if (error)
3754 return error;
Jeff Layton972567f2012-12-20 16:00:10 -05003755retry:
3756 dentry = user_path_create(dfd, filename, &path, lookup_flags);
Al Virodae6ad82011-06-26 11:50:15 -04003757 if (IS_ERR(dentry))
3758 return PTR_ERR(dentry);
Al Viro2ad94ae2008-07-21 09:32:51 -04003759
Al Virodae6ad82011-06-26 11:50:15 -04003760 if (!IS_POSIXACL(path.dentry->d_inode))
Al Viroce3b0f82009-03-29 19:08:22 -04003761 mode &= ~current_umask();
Al Virodae6ad82011-06-26 11:50:15 -04003762 error = security_path_mknod(&path, dentry, mode, dev);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09003763 if (error)
Al Viroa8104a92012-07-20 02:25:00 +04003764 goto out;
Dave Hansen463c3192008-02-15 14:37:57 -08003765 switch (mode & S_IFMT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003766 case 0: case S_IFREG:
Al Viro312b63f2012-06-10 18:09:36 -04003767 error = vfs_create(path.dentry->d_inode,dentry,mode,true);
Mimi Zohar05d1a712016-02-29 19:52:05 -05003768 if (!error)
3769 ima_post_path_mknod(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003770 break;
3771 case S_IFCHR: case S_IFBLK:
Al Virodae6ad82011-06-26 11:50:15 -04003772 error = vfs_mknod(path.dentry->d_inode,dentry,mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003773 new_decode_dev(dev));
3774 break;
3775 case S_IFIFO: case S_IFSOCK:
Al Virodae6ad82011-06-26 11:50:15 -04003776 error = vfs_mknod(path.dentry->d_inode,dentry,mode,0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003777 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003778 }
Al Viroa8104a92012-07-20 02:25:00 +04003779out:
Al Viro921a1652012-07-20 01:15:31 +04003780 done_path_create(&path, dentry);
Jeff Layton972567f2012-12-20 16:00:10 -05003781 if (retry_estale(error, lookup_flags)) {
3782 lookup_flags |= LOOKUP_REVAL;
3783 goto retry;
3784 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003785 return error;
3786}
3787
Al Viro8208a222011-07-25 17:32:17 -04003788SYSCALL_DEFINE3(mknod, const char __user *, filename, umode_t, mode, unsigned, dev)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003789{
3790 return sys_mknodat(AT_FDCWD, filename, mode, dev);
3791}
3792
Al Viro18bb1db2011-07-26 01:41:39 -04003793int vfs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003794{
Miklos Szeredia95164d2008-07-30 15:08:48 +02003795 int error = may_create(dir, dentry);
Al Viro8de52772012-02-06 12:45:27 -05003796 unsigned max_links = dir->i_sb->s_max_links;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003797
3798 if (error)
3799 return error;
3800
Al Viroacfa4382008-12-04 10:06:33 -05003801 if (!dir->i_op->mkdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003802 return -EPERM;
3803
3804 mode &= (S_IRWXUGO|S_ISVTX);
3805 error = security_inode_mkdir(dir, dentry, mode);
3806 if (error)
3807 return error;
3808
Al Viro8de52772012-02-06 12:45:27 -05003809 if (max_links && dir->i_nlink >= max_links)
3810 return -EMLINK;
3811
Linus Torvalds1da177e2005-04-16 15:20:36 -07003812 error = dir->i_op->mkdir(dir, dentry, mode);
Stephen Smalleya74574a2005-09-09 13:01:44 -07003813 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00003814 fsnotify_mkdir(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003815 return error;
3816}
Al Viro4d359502014-03-14 12:20:17 -04003817EXPORT_SYMBOL(vfs_mkdir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003818
Al Viroa218d0f2011-11-21 14:59:34 -05003819SYSCALL_DEFINE3(mkdirat, int, dfd, const char __user *, pathname, umode_t, mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003820{
Dave Hansen6902d922006-09-30 23:29:01 -07003821 struct dentry *dentry;
Al Virodae6ad82011-06-26 11:50:15 -04003822 struct path path;
3823 int error;
Jeff Laytonb76d8b82012-12-20 16:04:09 -05003824 unsigned int lookup_flags = LOOKUP_DIRECTORY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003825
Jeff Laytonb76d8b82012-12-20 16:04:09 -05003826retry:
3827 dentry = user_path_create(dfd, pathname, &path, lookup_flags);
Dave Hansen6902d922006-09-30 23:29:01 -07003828 if (IS_ERR(dentry))
Al Virodae6ad82011-06-26 11:50:15 -04003829 return PTR_ERR(dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07003830
Al Virodae6ad82011-06-26 11:50:15 -04003831 if (!IS_POSIXACL(path.dentry->d_inode))
Al Viroce3b0f82009-03-29 19:08:22 -04003832 mode &= ~current_umask();
Al Virodae6ad82011-06-26 11:50:15 -04003833 error = security_path_mkdir(&path, dentry, mode);
Al Viroa8104a92012-07-20 02:25:00 +04003834 if (!error)
3835 error = vfs_mkdir(path.dentry->d_inode, dentry, mode);
Al Viro921a1652012-07-20 01:15:31 +04003836 done_path_create(&path, dentry);
Jeff Laytonb76d8b82012-12-20 16:04:09 -05003837 if (retry_estale(error, lookup_flags)) {
3838 lookup_flags |= LOOKUP_REVAL;
3839 goto retry;
3840 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003841 return error;
3842}
3843
Al Viroa218d0f2011-11-21 14:59:34 -05003844SYSCALL_DEFINE2(mkdir, const char __user *, pathname, umode_t, mode)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003845{
3846 return sys_mkdirat(AT_FDCWD, pathname, mode);
3847}
3848
Linus Torvalds1da177e2005-04-16 15:20:36 -07003849int vfs_rmdir(struct inode *dir, struct dentry *dentry)
3850{
3851 int error = may_delete(dir, dentry, 1);
3852
3853 if (error)
3854 return error;
3855
Al Viroacfa4382008-12-04 10:06:33 -05003856 if (!dir->i_op->rmdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003857 return -EPERM;
3858
Al Viro1d2ef592011-09-14 18:55:41 +01003859 dget(dentry);
Al Viro59551022016-01-22 15:40:57 -05003860 inode_lock(dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003861
Sage Weil912dbc12011-05-24 13:06:11 -07003862 error = -EBUSY;
Eric W. Biederman7af13642013-10-04 19:15:13 -07003863 if (is_local_mountpoint(dentry))
Sage Weil912dbc12011-05-24 13:06:11 -07003864 goto out;
3865
3866 error = security_inode_rmdir(dir, dentry);
3867 if (error)
3868 goto out;
3869
Sage Weil3cebde22011-05-29 21:20:59 -07003870 shrink_dcache_parent(dentry);
Sage Weil912dbc12011-05-24 13:06:11 -07003871 error = dir->i_op->rmdir(dir, dentry);
3872 if (error)
3873 goto out;
3874
3875 dentry->d_inode->i_flags |= S_DEAD;
3876 dont_mount(dentry);
Eric W. Biederman8ed936b2013-10-01 18:33:48 -07003877 detach_mounts(dentry);
Sage Weil912dbc12011-05-24 13:06:11 -07003878
3879out:
Al Viro59551022016-01-22 15:40:57 -05003880 inode_unlock(dentry->d_inode);
Al Viro1d2ef592011-09-14 18:55:41 +01003881 dput(dentry);
Sage Weil912dbc12011-05-24 13:06:11 -07003882 if (!error)
3883 d_delete(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003884 return error;
3885}
Al Viro4d359502014-03-14 12:20:17 -04003886EXPORT_SYMBOL(vfs_rmdir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003887
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003888static long do_rmdir(int dfd, const char __user *pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003889{
3890 int error = 0;
Jeff Layton91a27b22012-10-10 15:25:28 -04003891 struct filename *name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003892 struct dentry *dentry;
Al Virof5beed72015-04-30 16:09:11 -04003893 struct path path;
3894 struct qstr last;
3895 int type;
Jeff Laytonc6ee9202012-12-20 16:28:33 -05003896 unsigned int lookup_flags = 0;
3897retry:
Al Virof5beed72015-04-30 16:09:11 -04003898 name = user_path_parent(dfd, pathname,
3899 &path, &last, &type, lookup_flags);
Jeff Layton91a27b22012-10-10 15:25:28 -04003900 if (IS_ERR(name))
3901 return PTR_ERR(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003902
Al Virof5beed72015-04-30 16:09:11 -04003903 switch (type) {
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003904 case LAST_DOTDOT:
3905 error = -ENOTEMPTY;
3906 goto exit1;
3907 case LAST_DOT:
3908 error = -EINVAL;
3909 goto exit1;
3910 case LAST_ROOT:
3911 error = -EBUSY;
3912 goto exit1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003913 }
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003914
Al Virof5beed72015-04-30 16:09:11 -04003915 error = mnt_want_write(path.mnt);
Jan Karac30dabf2012-06-12 16:20:30 +02003916 if (error)
3917 goto exit1;
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003918
Al Viro59551022016-01-22 15:40:57 -05003919 inode_lock_nested(path.dentry->d_inode, I_MUTEX_PARENT);
Al Virof5beed72015-04-30 16:09:11 -04003920 dentry = __lookup_hash(&last, path.dentry, lookup_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003921 error = PTR_ERR(dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07003922 if (IS_ERR(dentry))
3923 goto exit2;
Theodore Ts'oe6bc45d2011-06-06 19:19:40 -04003924 if (!dentry->d_inode) {
3925 error = -ENOENT;
3926 goto exit3;
3927 }
Al Virof5beed72015-04-30 16:09:11 -04003928 error = security_path_rmdir(&path, dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09003929 if (error)
Jan Karac30dabf2012-06-12 16:20:30 +02003930 goto exit3;
Al Virof5beed72015-04-30 16:09:11 -04003931 error = vfs_rmdir(path.dentry->d_inode, dentry);
Dave Hansen06227532008-02-15 14:37:34 -08003932exit3:
Dave Hansen6902d922006-09-30 23:29:01 -07003933 dput(dentry);
3934exit2:
Al Viro59551022016-01-22 15:40:57 -05003935 inode_unlock(path.dentry->d_inode);
Al Virof5beed72015-04-30 16:09:11 -04003936 mnt_drop_write(path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003937exit1:
Al Virof5beed72015-04-30 16:09:11 -04003938 path_put(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003939 putname(name);
Jeff Laytonc6ee9202012-12-20 16:28:33 -05003940 if (retry_estale(error, lookup_flags)) {
3941 lookup_flags |= LOOKUP_REVAL;
3942 goto retry;
3943 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003944 return error;
3945}
3946
Heiko Carstens3cdad422009-01-14 14:14:22 +01003947SYSCALL_DEFINE1(rmdir, const char __user *, pathname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003948{
3949 return do_rmdir(AT_FDCWD, pathname);
3950}
3951
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04003952/**
3953 * vfs_unlink - unlink a filesystem object
3954 * @dir: parent directory
3955 * @dentry: victim
3956 * @delegated_inode: returns victim inode, if the inode is delegated.
3957 *
3958 * The caller must hold dir->i_mutex.
3959 *
3960 * If vfs_unlink discovers a delegation, it will return -EWOULDBLOCK and
3961 * return a reference to the inode in delegated_inode. The caller
3962 * should then break the delegation on that inode and retry. Because
3963 * breaking a delegation may take a long time, the caller should drop
3964 * dir->i_mutex before doing so.
3965 *
3966 * Alternatively, a caller may pass NULL for delegated_inode. This may
3967 * be appropriate for callers that expect the underlying filesystem not
3968 * to be NFS exported.
3969 */
3970int vfs_unlink(struct inode *dir, struct dentry *dentry, struct inode **delegated_inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003971{
J. Bruce Fields9accbb92012-08-28 07:03:24 -04003972 struct inode *target = dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003973 int error = may_delete(dir, dentry, 0);
3974
3975 if (error)
3976 return error;
3977
Al Viroacfa4382008-12-04 10:06:33 -05003978 if (!dir->i_op->unlink)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003979 return -EPERM;
3980
Al Viro59551022016-01-22 15:40:57 -05003981 inode_lock(target);
Eric W. Biederman8ed936b2013-10-01 18:33:48 -07003982 if (is_local_mountpoint(dentry))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003983 error = -EBUSY;
3984 else {
3985 error = security_inode_unlink(dir, dentry);
Al Virobec10522010-03-03 14:12:08 -05003986 if (!error) {
J. Bruce Fields5a146962012-08-28 07:50:40 -07003987 error = try_break_deleg(target, delegated_inode);
3988 if (error)
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04003989 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003990 error = dir->i_op->unlink(dir, dentry);
Eric W. Biederman8ed936b2013-10-01 18:33:48 -07003991 if (!error) {
Al Virod83c49f2010-04-30 17:17:09 -04003992 dont_mount(dentry);
Eric W. Biederman8ed936b2013-10-01 18:33:48 -07003993 detach_mounts(dentry);
3994 }
Al Virobec10522010-03-03 14:12:08 -05003995 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003996 }
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04003997out:
Al Viro59551022016-01-22 15:40:57 -05003998 inode_unlock(target);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003999
4000 /* We don't d_delete() NFS sillyrenamed files--they still exist. */
4001 if (!error && !(dentry->d_flags & DCACHE_NFSFS_RENAMED)) {
J. Bruce Fields9accbb92012-08-28 07:03:24 -04004002 fsnotify_link_count(target);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004003 d_delete(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004004 }
Robert Love0eeca282005-07-12 17:06:03 -04004005
Linus Torvalds1da177e2005-04-16 15:20:36 -07004006 return error;
4007}
Al Viro4d359502014-03-14 12:20:17 -04004008EXPORT_SYMBOL(vfs_unlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004009
4010/*
4011 * Make sure that the actual truncation of the file will occur outside its
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08004012 * directory's i_mutex. Truncate can take a long time if there is a lot of
Linus Torvalds1da177e2005-04-16 15:20:36 -07004013 * writeout happening, and we don't want to prevent access to the directory
4014 * while waiting on the I/O.
4015 */
Ulrich Drepper5590ff02006-01-18 17:43:53 -08004016static long do_unlinkat(int dfd, const char __user *pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004017{
Al Viro2ad94ae2008-07-21 09:32:51 -04004018 int error;
Jeff Layton91a27b22012-10-10 15:25:28 -04004019 struct filename *name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004020 struct dentry *dentry;
Al Virof5beed72015-04-30 16:09:11 -04004021 struct path path;
4022 struct qstr last;
4023 int type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004024 struct inode *inode = NULL;
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04004025 struct inode *delegated_inode = NULL;
Jeff Layton5d18f812012-12-20 16:38:04 -05004026 unsigned int lookup_flags = 0;
4027retry:
Al Virof5beed72015-04-30 16:09:11 -04004028 name = user_path_parent(dfd, pathname,
4029 &path, &last, &type, lookup_flags);
Jeff Layton91a27b22012-10-10 15:25:28 -04004030 if (IS_ERR(name))
4031 return PTR_ERR(name);
Al Viro2ad94ae2008-07-21 09:32:51 -04004032
Linus Torvalds1da177e2005-04-16 15:20:36 -07004033 error = -EISDIR;
Al Virof5beed72015-04-30 16:09:11 -04004034 if (type != LAST_NORM)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004035 goto exit1;
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09004036
Al Virof5beed72015-04-30 16:09:11 -04004037 error = mnt_want_write(path.mnt);
Jan Karac30dabf2012-06-12 16:20:30 +02004038 if (error)
4039 goto exit1;
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04004040retry_deleg:
Al Viro59551022016-01-22 15:40:57 -05004041 inode_lock_nested(path.dentry->d_inode, I_MUTEX_PARENT);
Al Virof5beed72015-04-30 16:09:11 -04004042 dentry = __lookup_hash(&last, path.dentry, lookup_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004043 error = PTR_ERR(dentry);
4044 if (!IS_ERR(dentry)) {
4045 /* Why not before? Because we want correct error value */
Al Virof5beed72015-04-30 16:09:11 -04004046 if (last.name[last.len])
Török Edwin50338b82011-06-16 00:06:14 +03004047 goto slashes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004048 inode = dentry->d_inode;
David Howellsb18825a2013-09-12 19:22:53 +01004049 if (d_is_negative(dentry))
Theodore Ts'oe6bc45d2011-06-06 19:19:40 -04004050 goto slashes;
4051 ihold(inode);
Al Virof5beed72015-04-30 16:09:11 -04004052 error = security_path_unlink(&path, dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09004053 if (error)
Jan Karac30dabf2012-06-12 16:20:30 +02004054 goto exit2;
Al Virof5beed72015-04-30 16:09:11 -04004055 error = vfs_unlink(path.dentry->d_inode, dentry, &delegated_inode);
Jan Karac30dabf2012-06-12 16:20:30 +02004056exit2:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004057 dput(dentry);
4058 }
Al Viro59551022016-01-22 15:40:57 -05004059 inode_unlock(path.dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004060 if (inode)
4061 iput(inode); /* truncate the inode here */
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04004062 inode = NULL;
4063 if (delegated_inode) {
J. Bruce Fields5a146962012-08-28 07:50:40 -07004064 error = break_deleg_wait(&delegated_inode);
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04004065 if (!error)
4066 goto retry_deleg;
4067 }
Al Virof5beed72015-04-30 16:09:11 -04004068 mnt_drop_write(path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004069exit1:
Al Virof5beed72015-04-30 16:09:11 -04004070 path_put(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004071 putname(name);
Jeff Layton5d18f812012-12-20 16:38:04 -05004072 if (retry_estale(error, lookup_flags)) {
4073 lookup_flags |= LOOKUP_REVAL;
4074 inode = NULL;
4075 goto retry;
4076 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004077 return error;
4078
4079slashes:
David Howellsb18825a2013-09-12 19:22:53 +01004080 if (d_is_negative(dentry))
4081 error = -ENOENT;
Miklos Szeredi44b1d532014-04-01 17:08:41 +02004082 else if (d_is_dir(dentry))
David Howellsb18825a2013-09-12 19:22:53 +01004083 error = -EISDIR;
4084 else
4085 error = -ENOTDIR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004086 goto exit2;
4087}
4088
Heiko Carstens2e4d0922009-01-14 14:14:31 +01004089SYSCALL_DEFINE3(unlinkat, int, dfd, const char __user *, pathname, int, flag)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08004090{
4091 if ((flag & ~AT_REMOVEDIR) != 0)
4092 return -EINVAL;
4093
4094 if (flag & AT_REMOVEDIR)
4095 return do_rmdir(dfd, pathname);
4096
4097 return do_unlinkat(dfd, pathname);
4098}
4099
Heiko Carstens3480b252009-01-14 14:14:16 +01004100SYSCALL_DEFINE1(unlink, const char __user *, pathname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08004101{
4102 return do_unlinkat(AT_FDCWD, pathname);
4103}
4104
Miklos Szeredidb2e7472008-06-24 16:50:16 +02004105int vfs_symlink(struct inode *dir, struct dentry *dentry, const char *oldname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004106{
Miklos Szeredia95164d2008-07-30 15:08:48 +02004107 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004108
4109 if (error)
4110 return error;
4111
Al Viroacfa4382008-12-04 10:06:33 -05004112 if (!dir->i_op->symlink)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004113 return -EPERM;
4114
4115 error = security_inode_symlink(dir, dentry, oldname);
4116 if (error)
4117 return error;
4118
Linus Torvalds1da177e2005-04-16 15:20:36 -07004119 error = dir->i_op->symlink(dir, dentry, oldname);
Stephen Smalleya74574a2005-09-09 13:01:44 -07004120 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00004121 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004122 return error;
4123}
Al Viro4d359502014-03-14 12:20:17 -04004124EXPORT_SYMBOL(vfs_symlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004125
Heiko Carstens2e4d0922009-01-14 14:14:31 +01004126SYSCALL_DEFINE3(symlinkat, const char __user *, oldname,
4127 int, newdfd, const char __user *, newname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004128{
Al Viro2ad94ae2008-07-21 09:32:51 -04004129 int error;
Jeff Layton91a27b22012-10-10 15:25:28 -04004130 struct filename *from;
Dave Hansen6902d922006-09-30 23:29:01 -07004131 struct dentry *dentry;
Al Virodae6ad82011-06-26 11:50:15 -04004132 struct path path;
Jeff Laytonf46d3562012-12-11 12:10:08 -05004133 unsigned int lookup_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004134
4135 from = getname(oldname);
Al Viro2ad94ae2008-07-21 09:32:51 -04004136 if (IS_ERR(from))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004137 return PTR_ERR(from);
Jeff Laytonf46d3562012-12-11 12:10:08 -05004138retry:
4139 dentry = user_path_create(newdfd, newname, &path, lookup_flags);
Dave Hansen6902d922006-09-30 23:29:01 -07004140 error = PTR_ERR(dentry);
4141 if (IS_ERR(dentry))
Al Virodae6ad82011-06-26 11:50:15 -04004142 goto out_putname;
Dave Hansen6902d922006-09-30 23:29:01 -07004143
Jeff Layton91a27b22012-10-10 15:25:28 -04004144 error = security_path_symlink(&path, dentry, from->name);
Al Viroa8104a92012-07-20 02:25:00 +04004145 if (!error)
Jeff Layton91a27b22012-10-10 15:25:28 -04004146 error = vfs_symlink(path.dentry->d_inode, dentry, from->name);
Al Viro921a1652012-07-20 01:15:31 +04004147 done_path_create(&path, dentry);
Jeff Laytonf46d3562012-12-11 12:10:08 -05004148 if (retry_estale(error, lookup_flags)) {
4149 lookup_flags |= LOOKUP_REVAL;
4150 goto retry;
4151 }
Dave Hansen6902d922006-09-30 23:29:01 -07004152out_putname:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004153 putname(from);
4154 return error;
4155}
4156
Heiko Carstens3480b252009-01-14 14:14:16 +01004157SYSCALL_DEFINE2(symlink, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08004158{
4159 return sys_symlinkat(oldname, AT_FDCWD, newname);
4160}
4161
J. Bruce Fields146a8592011-09-20 17:14:31 -04004162/**
4163 * vfs_link - create a new link
4164 * @old_dentry: object to be linked
4165 * @dir: new parent
4166 * @new_dentry: where to create the new link
4167 * @delegated_inode: returns inode needing a delegation break
4168 *
4169 * The caller must hold dir->i_mutex
4170 *
4171 * If vfs_link discovers a delegation on the to-be-linked file in need
4172 * of breaking, it will return -EWOULDBLOCK and return a reference to the
4173 * inode in delegated_inode. The caller should then break the delegation
4174 * and retry. Because breaking a delegation may take a long time, the
4175 * caller should drop the i_mutex before doing so.
4176 *
4177 * Alternatively, a caller may pass NULL for delegated_inode. This may
4178 * be appropriate for callers that expect the underlying filesystem not
4179 * to be NFS exported.
4180 */
4181int vfs_link(struct dentry *old_dentry, struct inode *dir, struct dentry *new_dentry, struct inode **delegated_inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004182{
4183 struct inode *inode = old_dentry->d_inode;
Al Viro8de52772012-02-06 12:45:27 -05004184 unsigned max_links = dir->i_sb->s_max_links;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004185 int error;
4186
4187 if (!inode)
4188 return -ENOENT;
4189
Miklos Szeredia95164d2008-07-30 15:08:48 +02004190 error = may_create(dir, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004191 if (error)
4192 return error;
4193
4194 if (dir->i_sb != inode->i_sb)
4195 return -EXDEV;
4196
4197 /*
4198 * A link to an append-only or immutable file cannot be created.
4199 */
4200 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
4201 return -EPERM;
Eric W. Biederman0bd23d092016-06-29 14:54:46 -05004202 /*
4203 * Updating the link count will likely cause i_uid and i_gid to
4204 * be writen back improperly if their true value is unknown to
4205 * the vfs.
4206 */
4207 if (HAS_UNMAPPED_ID(inode))
4208 return -EPERM;
Al Viroacfa4382008-12-04 10:06:33 -05004209 if (!dir->i_op->link)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004210 return -EPERM;
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02004211 if (S_ISDIR(inode->i_mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004212 return -EPERM;
4213
4214 error = security_inode_link(old_dentry, dir, new_dentry);
4215 if (error)
4216 return error;
4217
Al Viro59551022016-01-22 15:40:57 -05004218 inode_lock(inode);
Aneesh Kumar K.Vaae8a972011-01-29 18:43:27 +05304219 /* Make sure we don't allow creating hardlink to an unlinked file */
Al Virof4e0c302013-06-11 08:34:36 +04004220 if (inode->i_nlink == 0 && !(inode->i_state & I_LINKABLE))
Aneesh Kumar K.Vaae8a972011-01-29 18:43:27 +05304221 error = -ENOENT;
Al Viro8de52772012-02-06 12:45:27 -05004222 else if (max_links && inode->i_nlink >= max_links)
4223 error = -EMLINK;
J. Bruce Fields146a8592011-09-20 17:14:31 -04004224 else {
4225 error = try_break_deleg(inode, delegated_inode);
4226 if (!error)
4227 error = dir->i_op->link(old_dentry, dir, new_dentry);
4228 }
Al Virof4e0c302013-06-11 08:34:36 +04004229
4230 if (!error && (inode->i_state & I_LINKABLE)) {
4231 spin_lock(&inode->i_lock);
4232 inode->i_state &= ~I_LINKABLE;
4233 spin_unlock(&inode->i_lock);
4234 }
Al Viro59551022016-01-22 15:40:57 -05004235 inode_unlock(inode);
Stephen Smalleye31e14e2005-09-09 13:01:45 -07004236 if (!error)
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02004237 fsnotify_link(dir, inode, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004238 return error;
4239}
Al Viro4d359502014-03-14 12:20:17 -04004240EXPORT_SYMBOL(vfs_link);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004241
4242/*
4243 * Hardlinks are often used in delicate situations. We avoid
4244 * security-related surprises by not following symlinks on the
4245 * newname. --KAB
4246 *
4247 * We don't follow them on the oldname either to be compatible
4248 * with linux 2.0, and to avoid hard-linking to directories
4249 * and other special files. --ADM
4250 */
Heiko Carstens2e4d0922009-01-14 14:14:31 +01004251SYSCALL_DEFINE5(linkat, int, olddfd, const char __user *, oldname,
4252 int, newdfd, const char __user *, newname, int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004253{
4254 struct dentry *new_dentry;
Al Virodae6ad82011-06-26 11:50:15 -04004255 struct path old_path, new_path;
J. Bruce Fields146a8592011-09-20 17:14:31 -04004256 struct inode *delegated_inode = NULL;
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05304257 int how = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004258 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004259
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05304260 if ((flags & ~(AT_SYMLINK_FOLLOW | AT_EMPTY_PATH)) != 0)
Ulrich Drepperc04030e2006-02-24 13:04:21 -08004261 return -EINVAL;
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05304262 /*
Linus Torvaldsf0cc6ff2013-08-28 09:18:05 -07004263 * To use null names we require CAP_DAC_READ_SEARCH
4264 * This ensures that not everyone will be able to create
4265 * handlink using the passed filedescriptor.
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05304266 */
Linus Torvaldsf0cc6ff2013-08-28 09:18:05 -07004267 if (flags & AT_EMPTY_PATH) {
4268 if (!capable(CAP_DAC_READ_SEARCH))
4269 return -ENOENT;
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05304270 how = LOOKUP_EMPTY;
Linus Torvaldsf0cc6ff2013-08-28 09:18:05 -07004271 }
Ulrich Drepperc04030e2006-02-24 13:04:21 -08004272
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05304273 if (flags & AT_SYMLINK_FOLLOW)
4274 how |= LOOKUP_FOLLOW;
Jeff Layton442e31c2012-12-20 16:15:38 -05004275retry:
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05304276 error = user_path_at(olddfd, oldname, how, &old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004277 if (error)
Al Viro2ad94ae2008-07-21 09:32:51 -04004278 return error;
4279
Jeff Layton442e31c2012-12-20 16:15:38 -05004280 new_dentry = user_path_create(newdfd, newname, &new_path,
4281 (how & LOOKUP_REVAL));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004282 error = PTR_ERR(new_dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07004283 if (IS_ERR(new_dentry))
Al Virodae6ad82011-06-26 11:50:15 -04004284 goto out;
4285
4286 error = -EXDEV;
4287 if (old_path.mnt != new_path.mnt)
4288 goto out_dput;
Kees Cook800179c2012-07-25 17:29:07 -07004289 error = may_linkat(&old_path);
4290 if (unlikely(error))
4291 goto out_dput;
Al Virodae6ad82011-06-26 11:50:15 -04004292 error = security_path_link(old_path.dentry, &new_path, new_dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09004293 if (error)
Al Viroa8104a92012-07-20 02:25:00 +04004294 goto out_dput;
J. Bruce Fields146a8592011-09-20 17:14:31 -04004295 error = vfs_link(old_path.dentry, new_path.dentry->d_inode, new_dentry, &delegated_inode);
Dave Hansen75c3f292008-02-15 14:37:45 -08004296out_dput:
Al Viro921a1652012-07-20 01:15:31 +04004297 done_path_create(&new_path, new_dentry);
J. Bruce Fields146a8592011-09-20 17:14:31 -04004298 if (delegated_inode) {
4299 error = break_deleg_wait(&delegated_inode);
Oleg Drokind22e6332014-01-31 15:41:58 -05004300 if (!error) {
4301 path_put(&old_path);
J. Bruce Fields146a8592011-09-20 17:14:31 -04004302 goto retry;
Oleg Drokind22e6332014-01-31 15:41:58 -05004303 }
J. Bruce Fields146a8592011-09-20 17:14:31 -04004304 }
Jeff Layton442e31c2012-12-20 16:15:38 -05004305 if (retry_estale(error, how)) {
Oleg Drokind22e6332014-01-31 15:41:58 -05004306 path_put(&old_path);
Jeff Layton442e31c2012-12-20 16:15:38 -05004307 how |= LOOKUP_REVAL;
4308 goto retry;
4309 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004310out:
Al Viro2d8f3032008-07-22 09:59:21 -04004311 path_put(&old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004312
4313 return error;
4314}
4315
Heiko Carstens3480b252009-01-14 14:14:16 +01004316SYSCALL_DEFINE2(link, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08004317{
Ulrich Drepperc04030e2006-02-24 13:04:21 -08004318 return sys_linkat(AT_FDCWD, oldname, AT_FDCWD, newname, 0);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08004319}
4320
Miklos Szeredibc270272014-04-01 17:08:42 +02004321/**
4322 * vfs_rename - rename a filesystem object
4323 * @old_dir: parent of source
4324 * @old_dentry: source
4325 * @new_dir: parent of destination
4326 * @new_dentry: destination
4327 * @delegated_inode: returns an inode needing a delegation break
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004328 * @flags: rename flags
Miklos Szeredibc270272014-04-01 17:08:42 +02004329 *
4330 * The caller must hold multiple mutexes--see lock_rename()).
4331 *
4332 * If vfs_rename discovers a delegation in need of breaking at either
4333 * the source or destination, it will return -EWOULDBLOCK and return a
4334 * reference to the inode in delegated_inode. The caller should then
4335 * break the delegation and retry. Because breaking a delegation may
4336 * take a long time, the caller should drop all locks before doing
4337 * so.
4338 *
4339 * Alternatively, a caller may pass NULL for delegated_inode. This may
4340 * be appropriate for callers that expect the underlying filesystem not
4341 * to be NFS exported.
4342 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004343 * The worst of all namespace operations - renaming directory. "Perverted"
4344 * doesn't even start to describe it. Somebody in UCB had a heck of a trip...
4345 * Problems:
J. Bruce Fieldsd03b29a2014-02-17 16:52:33 -05004346 * a) we can get into loop creation.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004347 * b) race potential - two innocent renames can create a loop together.
4348 * That's where 4.4 screws up. Current fix: serialization on
Arjan van de Vena11f3a02006-03-23 03:00:33 -08004349 * sb->s_vfs_rename_mutex. We might be more accurate, but that's another
Linus Torvalds1da177e2005-04-16 15:20:36 -07004350 * story.
J. Bruce Fields6cedba82012-03-05 11:40:41 -05004351 * c) we have to lock _four_ objects - parents and victim (if it exists),
4352 * and source (if it is not a directory).
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08004353 * And that - after we got ->i_mutex on parents (until then we don't know
Linus Torvalds1da177e2005-04-16 15:20:36 -07004354 * whether the target exists). Solution: try to be smart with locking
4355 * order for inodes. We rely on the fact that tree topology may change
Arjan van de Vena11f3a02006-03-23 03:00:33 -08004356 * only under ->s_vfs_rename_mutex _and_ that parent of the object we
Linus Torvalds1da177e2005-04-16 15:20:36 -07004357 * move will be locked. Thus we can rank directories by the tree
4358 * (ancestors first) and rank all non-directories after them.
4359 * That works since everybody except rename does "lock parent, lookup,
Arjan van de Vena11f3a02006-03-23 03:00:33 -08004360 * lock child" and rename is under ->s_vfs_rename_mutex.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004361 * HOWEVER, it relies on the assumption that any object with ->lookup()
4362 * has no more than 1 dentry. If "hybrid" objects will ever appear,
4363 * we'd better make sure that there's no link(2) for them.
Sage Weile4eaac02011-05-24 13:06:07 -07004364 * d) conversion from fhandle to dentry may come in the wrong moment - when
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08004365 * we are removing the target. Solution: we will have to grab ->i_mutex
Linus Torvalds1da177e2005-04-16 15:20:36 -07004366 * in the fhandle_to_dentry code. [FIXME - current nfsfh.c relies on
Adam Buchbinderc41b20e2009-12-11 16:35:39 -05004367 * ->i_mutex on parents, which works but leads to some truly excessive
Linus Torvalds1da177e2005-04-16 15:20:36 -07004368 * locking].
4369 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004370int vfs_rename(struct inode *old_dir, struct dentry *old_dentry,
J. Bruce Fields8e6d7822011-09-20 16:59:58 -04004371 struct inode *new_dir, struct dentry *new_dentry,
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004372 struct inode **delegated_inode, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004373{
4374 int error;
Miklos Szeredibc270272014-04-01 17:08:42 +02004375 bool is_dir = d_is_dir(old_dentry);
Eric Paris59b0df22010-02-08 12:53:52 -05004376 const unsigned char *old_name;
Miklos Szeredibc270272014-04-01 17:08:42 +02004377 struct inode *source = old_dentry->d_inode;
4378 struct inode *target = new_dentry->d_inode;
Miklos Szeredida1ce062014-04-01 17:08:43 +02004379 bool new_is_dir = false;
4380 unsigned max_links = new_dir->i_sb->s_max_links;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004381
Miklos Szeredi9409e222016-05-11 01:16:37 +02004382 /*
4383 * Check source == target.
4384 * On overlayfs need to look at underlying inodes.
4385 */
4386 if (vfs_select_inode(old_dentry, 0) == vfs_select_inode(new_dentry, 0))
Miklos Szeredibc270272014-04-01 17:08:42 +02004387 return 0;
4388
Linus Torvalds1da177e2005-04-16 15:20:36 -07004389 error = may_delete(old_dir, old_dentry, is_dir);
4390 if (error)
4391 return error;
4392
Miklos Szeredida1ce062014-04-01 17:08:43 +02004393 if (!target) {
Miklos Szeredia95164d2008-07-30 15:08:48 +02004394 error = may_create(new_dir, new_dentry);
Miklos Szeredida1ce062014-04-01 17:08:43 +02004395 } else {
4396 new_is_dir = d_is_dir(new_dentry);
4397
4398 if (!(flags & RENAME_EXCHANGE))
4399 error = may_delete(new_dir, new_dentry, is_dir);
4400 else
4401 error = may_delete(new_dir, new_dentry, new_is_dir);
4402 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004403 if (error)
4404 return error;
4405
Miklos Szeredi7177a9c2014-07-23 15:15:30 +02004406 if (!old_dir->i_op->rename && !old_dir->i_op->rename2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004407 return -EPERM;
4408
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004409 if (flags && !old_dir->i_op->rename2)
4410 return -EINVAL;
4411
Miklos Szeredibc270272014-04-01 17:08:42 +02004412 /*
4413 * If we are going to change the parent - check write permissions,
4414 * we'll need to flip '..'.
4415 */
Miklos Szeredida1ce062014-04-01 17:08:43 +02004416 if (new_dir != old_dir) {
4417 if (is_dir) {
4418 error = inode_permission(source, MAY_WRITE);
4419 if (error)
4420 return error;
4421 }
4422 if ((flags & RENAME_EXCHANGE) && new_is_dir) {
4423 error = inode_permission(target, MAY_WRITE);
4424 if (error)
4425 return error;
4426 }
Miklos Szeredibc270272014-04-01 17:08:42 +02004427 }
Robert Love0eeca282005-07-12 17:06:03 -04004428
Miklos Szeredi0b3974e2014-04-01 17:08:43 +02004429 error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry,
4430 flags);
Miklos Szeredibc270272014-04-01 17:08:42 +02004431 if (error)
4432 return error;
4433
4434 old_name = fsnotify_oldname_init(old_dentry->d_name.name);
4435 dget(new_dentry);
Miklos Szeredida1ce062014-04-01 17:08:43 +02004436 if (!is_dir || (flags & RENAME_EXCHANGE))
Miklos Szeredibc270272014-04-01 17:08:42 +02004437 lock_two_nondirectories(source, target);
4438 else if (target)
Al Viro59551022016-01-22 15:40:57 -05004439 inode_lock(target);
Miklos Szeredibc270272014-04-01 17:08:42 +02004440
4441 error = -EBUSY;
Eric W. Biederman7af13642013-10-04 19:15:13 -07004442 if (is_local_mountpoint(old_dentry) || is_local_mountpoint(new_dentry))
Miklos Szeredibc270272014-04-01 17:08:42 +02004443 goto out;
4444
Miklos Szeredida1ce062014-04-01 17:08:43 +02004445 if (max_links && new_dir != old_dir) {
Miklos Szeredibc270272014-04-01 17:08:42 +02004446 error = -EMLINK;
Miklos Szeredida1ce062014-04-01 17:08:43 +02004447 if (is_dir && !new_is_dir && new_dir->i_nlink >= max_links)
Miklos Szeredibc270272014-04-01 17:08:42 +02004448 goto out;
Miklos Szeredida1ce062014-04-01 17:08:43 +02004449 if ((flags & RENAME_EXCHANGE) && !is_dir && new_is_dir &&
4450 old_dir->i_nlink >= max_links)
4451 goto out;
4452 }
4453 if (is_dir && !(flags & RENAME_EXCHANGE) && target)
4454 shrink_dcache_parent(new_dentry);
4455 if (!is_dir) {
Miklos Szeredibc270272014-04-01 17:08:42 +02004456 error = try_break_deleg(source, delegated_inode);
4457 if (error)
4458 goto out;
Miklos Szeredida1ce062014-04-01 17:08:43 +02004459 }
4460 if (target && !new_is_dir) {
4461 error = try_break_deleg(target, delegated_inode);
4462 if (error)
4463 goto out;
Miklos Szeredibc270272014-04-01 17:08:42 +02004464 }
Miklos Szeredi7177a9c2014-07-23 15:15:30 +02004465 if (!old_dir->i_op->rename2) {
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004466 error = old_dir->i_op->rename(old_dir, old_dentry,
4467 new_dir, new_dentry);
4468 } else {
Miklos Szeredi7177a9c2014-07-23 15:15:30 +02004469 WARN_ON(old_dir->i_op->rename != NULL);
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004470 error = old_dir->i_op->rename2(old_dir, old_dentry,
4471 new_dir, new_dentry, flags);
4472 }
Miklos Szeredibc270272014-04-01 17:08:42 +02004473 if (error)
4474 goto out;
4475
Miklos Szeredida1ce062014-04-01 17:08:43 +02004476 if (!(flags & RENAME_EXCHANGE) && target) {
Miklos Szeredibc270272014-04-01 17:08:42 +02004477 if (is_dir)
4478 target->i_flags |= S_DEAD;
4479 dont_mount(new_dentry);
Eric W. Biederman8ed936b2013-10-01 18:33:48 -07004480 detach_mounts(new_dentry);
Miklos Szeredibc270272014-04-01 17:08:42 +02004481 }
Miklos Szeredida1ce062014-04-01 17:08:43 +02004482 if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE)) {
4483 if (!(flags & RENAME_EXCHANGE))
4484 d_move(old_dentry, new_dentry);
4485 else
4486 d_exchange(old_dentry, new_dentry);
4487 }
Miklos Szeredibc270272014-04-01 17:08:42 +02004488out:
Miklos Szeredida1ce062014-04-01 17:08:43 +02004489 if (!is_dir || (flags & RENAME_EXCHANGE))
Miklos Szeredibc270272014-04-01 17:08:42 +02004490 unlock_two_nondirectories(source, target);
4491 else if (target)
Al Viro59551022016-01-22 15:40:57 -05004492 inode_unlock(target);
Miklos Szeredibc270272014-04-01 17:08:42 +02004493 dput(new_dentry);
Miklos Szeredida1ce062014-04-01 17:08:43 +02004494 if (!error) {
Al Viro123df292009-12-25 04:57:57 -05004495 fsnotify_move(old_dir, new_dir, old_name, is_dir,
Miklos Szeredida1ce062014-04-01 17:08:43 +02004496 !(flags & RENAME_EXCHANGE) ? target : NULL, old_dentry);
4497 if (flags & RENAME_EXCHANGE) {
4498 fsnotify_move(new_dir, old_dir, old_dentry->d_name.name,
4499 new_is_dir, NULL, new_dentry);
4500 }
4501 }
Robert Love0eeca282005-07-12 17:06:03 -04004502 fsnotify_oldname_free(old_name);
4503
Linus Torvalds1da177e2005-04-16 15:20:36 -07004504 return error;
4505}
Al Viro4d359502014-03-14 12:20:17 -04004506EXPORT_SYMBOL(vfs_rename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004507
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004508SYSCALL_DEFINE5(renameat2, int, olddfd, const char __user *, oldname,
4509 int, newdfd, const char __user *, newname, unsigned int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004510{
Al Viro2ad94ae2008-07-21 09:32:51 -04004511 struct dentry *old_dentry, *new_dentry;
4512 struct dentry *trap;
Al Virof5beed72015-04-30 16:09:11 -04004513 struct path old_path, new_path;
4514 struct qstr old_last, new_last;
4515 int old_type, new_type;
J. Bruce Fields8e6d7822011-09-20 16:59:58 -04004516 struct inode *delegated_inode = NULL;
Jeff Layton91a27b22012-10-10 15:25:28 -04004517 struct filename *from;
4518 struct filename *to;
Al Virof5beed72015-04-30 16:09:11 -04004519 unsigned int lookup_flags = 0, target_flags = LOOKUP_RENAME_TARGET;
Jeff Laytonc6a94282012-12-11 12:10:10 -05004520 bool should_retry = false;
Al Viro2ad94ae2008-07-21 09:32:51 -04004521 int error;
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004522
Miklos Szeredi0d7a8552014-10-24 00:14:37 +02004523 if (flags & ~(RENAME_NOREPLACE | RENAME_EXCHANGE | RENAME_WHITEOUT))
Miklos Szeredida1ce062014-04-01 17:08:43 +02004524 return -EINVAL;
4525
Miklos Szeredi0d7a8552014-10-24 00:14:37 +02004526 if ((flags & (RENAME_NOREPLACE | RENAME_WHITEOUT)) &&
4527 (flags & RENAME_EXCHANGE))
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004528 return -EINVAL;
4529
Miklos Szeredi0d7a8552014-10-24 00:14:37 +02004530 if ((flags & RENAME_WHITEOUT) && !capable(CAP_MKNOD))
4531 return -EPERM;
4532
Al Virof5beed72015-04-30 16:09:11 -04004533 if (flags & RENAME_EXCHANGE)
4534 target_flags = 0;
4535
Jeff Laytonc6a94282012-12-11 12:10:10 -05004536retry:
Al Virof5beed72015-04-30 16:09:11 -04004537 from = user_path_parent(olddfd, oldname,
4538 &old_path, &old_last, &old_type, lookup_flags);
Jeff Layton91a27b22012-10-10 15:25:28 -04004539 if (IS_ERR(from)) {
4540 error = PTR_ERR(from);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004541 goto exit;
Jeff Layton91a27b22012-10-10 15:25:28 -04004542 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004543
Al Virof5beed72015-04-30 16:09:11 -04004544 to = user_path_parent(newdfd, newname,
4545 &new_path, &new_last, &new_type, lookup_flags);
Jeff Layton91a27b22012-10-10 15:25:28 -04004546 if (IS_ERR(to)) {
4547 error = PTR_ERR(to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004548 goto exit1;
Jeff Layton91a27b22012-10-10 15:25:28 -04004549 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004550
4551 error = -EXDEV;
Al Virof5beed72015-04-30 16:09:11 -04004552 if (old_path.mnt != new_path.mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004553 goto exit2;
4554
Linus Torvalds1da177e2005-04-16 15:20:36 -07004555 error = -EBUSY;
Al Virof5beed72015-04-30 16:09:11 -04004556 if (old_type != LAST_NORM)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004557 goto exit2;
4558
Miklos Szeredi0a7c3932014-04-01 17:08:43 +02004559 if (flags & RENAME_NOREPLACE)
4560 error = -EEXIST;
Al Virof5beed72015-04-30 16:09:11 -04004561 if (new_type != LAST_NORM)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004562 goto exit2;
4563
Al Virof5beed72015-04-30 16:09:11 -04004564 error = mnt_want_write(old_path.mnt);
Jan Karac30dabf2012-06-12 16:20:30 +02004565 if (error)
4566 goto exit2;
4567
J. Bruce Fields8e6d7822011-09-20 16:59:58 -04004568retry_deleg:
Al Virof5beed72015-04-30 16:09:11 -04004569 trap = lock_rename(new_path.dentry, old_path.dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004570
Al Virof5beed72015-04-30 16:09:11 -04004571 old_dentry = __lookup_hash(&old_last, old_path.dentry, lookup_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004572 error = PTR_ERR(old_dentry);
4573 if (IS_ERR(old_dentry))
4574 goto exit3;
4575 /* source must exist */
4576 error = -ENOENT;
David Howellsb18825a2013-09-12 19:22:53 +01004577 if (d_is_negative(old_dentry))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004578 goto exit4;
Al Virof5beed72015-04-30 16:09:11 -04004579 new_dentry = __lookup_hash(&new_last, new_path.dentry, lookup_flags | target_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004580 error = PTR_ERR(new_dentry);
4581 if (IS_ERR(new_dentry))
4582 goto exit4;
Miklos Szeredi0a7c3932014-04-01 17:08:43 +02004583 error = -EEXIST;
4584 if ((flags & RENAME_NOREPLACE) && d_is_positive(new_dentry))
4585 goto exit5;
Miklos Szeredida1ce062014-04-01 17:08:43 +02004586 if (flags & RENAME_EXCHANGE) {
4587 error = -ENOENT;
4588 if (d_is_negative(new_dentry))
4589 goto exit5;
4590
4591 if (!d_is_dir(new_dentry)) {
4592 error = -ENOTDIR;
Al Virof5beed72015-04-30 16:09:11 -04004593 if (new_last.name[new_last.len])
Miklos Szeredida1ce062014-04-01 17:08:43 +02004594 goto exit5;
4595 }
4596 }
Miklos Szeredi0a7c3932014-04-01 17:08:43 +02004597 /* unless the source is a directory trailing slashes give -ENOTDIR */
4598 if (!d_is_dir(old_dentry)) {
4599 error = -ENOTDIR;
Al Virof5beed72015-04-30 16:09:11 -04004600 if (old_last.name[old_last.len])
Miklos Szeredi0a7c3932014-04-01 17:08:43 +02004601 goto exit5;
Al Virof5beed72015-04-30 16:09:11 -04004602 if (!(flags & RENAME_EXCHANGE) && new_last.name[new_last.len])
Miklos Szeredi0a7c3932014-04-01 17:08:43 +02004603 goto exit5;
4604 }
4605 /* source should not be ancestor of target */
4606 error = -EINVAL;
4607 if (old_dentry == trap)
4608 goto exit5;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004609 /* target should not be an ancestor of source */
Miklos Szeredida1ce062014-04-01 17:08:43 +02004610 if (!(flags & RENAME_EXCHANGE))
4611 error = -ENOTEMPTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004612 if (new_dentry == trap)
4613 goto exit5;
4614
Al Virof5beed72015-04-30 16:09:11 -04004615 error = security_path_rename(&old_path, old_dentry,
4616 &new_path, new_dentry, flags);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09004617 if (error)
Jan Karac30dabf2012-06-12 16:20:30 +02004618 goto exit5;
Al Virof5beed72015-04-30 16:09:11 -04004619 error = vfs_rename(old_path.dentry->d_inode, old_dentry,
4620 new_path.dentry->d_inode, new_dentry,
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004621 &delegated_inode, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004622exit5:
4623 dput(new_dentry);
4624exit4:
4625 dput(old_dentry);
4626exit3:
Al Virof5beed72015-04-30 16:09:11 -04004627 unlock_rename(new_path.dentry, old_path.dentry);
J. Bruce Fields8e6d7822011-09-20 16:59:58 -04004628 if (delegated_inode) {
4629 error = break_deleg_wait(&delegated_inode);
4630 if (!error)
4631 goto retry_deleg;
4632 }
Al Virof5beed72015-04-30 16:09:11 -04004633 mnt_drop_write(old_path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004634exit2:
Jeff Laytonc6a94282012-12-11 12:10:10 -05004635 if (retry_estale(error, lookup_flags))
4636 should_retry = true;
Al Virof5beed72015-04-30 16:09:11 -04004637 path_put(&new_path);
Al Viro2ad94ae2008-07-21 09:32:51 -04004638 putname(to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004639exit1:
Al Virof5beed72015-04-30 16:09:11 -04004640 path_put(&old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004641 putname(from);
Jeff Laytonc6a94282012-12-11 12:10:10 -05004642 if (should_retry) {
4643 should_retry = false;
4644 lookup_flags |= LOOKUP_REVAL;
4645 goto retry;
4646 }
Al Viro2ad94ae2008-07-21 09:32:51 -04004647exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004648 return error;
4649}
4650
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004651SYSCALL_DEFINE4(renameat, int, olddfd, const char __user *, oldname,
4652 int, newdfd, const char __user *, newname)
4653{
4654 return sys_renameat2(olddfd, oldname, newdfd, newname, 0);
4655}
4656
Heiko Carstensa26eab22009-01-14 14:14:17 +01004657SYSCALL_DEFINE2(rename, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08004658{
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004659 return sys_renameat2(AT_FDCWD, oldname, AT_FDCWD, newname, 0);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08004660}
4661
Miklos Szeredi787fb6b2014-10-24 00:14:36 +02004662int vfs_whiteout(struct inode *dir, struct dentry *dentry)
4663{
4664 int error = may_create(dir, dentry);
4665 if (error)
4666 return error;
4667
4668 if (!dir->i_op->mknod)
4669 return -EPERM;
4670
4671 return dir->i_op->mknod(dir, dentry,
4672 S_IFCHR | WHITEOUT_MODE, WHITEOUT_DEV);
4673}
4674EXPORT_SYMBOL(vfs_whiteout);
4675
Al Viro5d826c82014-03-14 13:42:45 -04004676int readlink_copy(char __user *buffer, int buflen, const char *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004677{
Al Viro5d826c82014-03-14 13:42:45 -04004678 int len = PTR_ERR(link);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004679 if (IS_ERR(link))
4680 goto out;
4681
4682 len = strlen(link);
4683 if (len > (unsigned) buflen)
4684 len = buflen;
4685 if (copy_to_user(buffer, link, len))
4686 len = -EFAULT;
4687out:
4688 return len;
4689}
4690
4691/*
4692 * A helper for ->readlink(). This should be used *ONLY* for symlinks that
Al Viro6b255392015-11-17 10:20:54 -05004693 * have ->get_link() not calling nd_jump_link(). Using (or not using) it
4694 * for any given inode is up to filesystem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004695 */
4696int generic_readlink(struct dentry *dentry, char __user *buffer, int buflen)
4697{
Al Virofceef392015-12-29 15:58:39 -05004698 DEFINE_DELAYED_CALL(done);
Al Viro5f2c4172015-05-07 11:14:26 -04004699 struct inode *inode = d_inode(dentry);
4700 const char *link = inode->i_link;
Marcin Slusarz694a1762008-06-09 16:40:37 -07004701 int res;
Linus Torvaldscc314ee2005-08-19 18:02:56 -07004702
Al Virod4dee482015-04-30 20:08:02 -04004703 if (!link) {
Al Virofceef392015-12-29 15:58:39 -05004704 link = inode->i_op->get_link(dentry, inode, &done);
Al Virod4dee482015-04-30 20:08:02 -04004705 if (IS_ERR(link))
4706 return PTR_ERR(link);
4707 }
Al Viro680baac2015-05-02 13:32:22 -04004708 res = readlink_copy(buffer, buflen, link);
Al Virofceef392015-12-29 15:58:39 -05004709 do_delayed_call(&done);
Marcin Slusarz694a1762008-06-09 16:40:37 -07004710 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004711}
Al Viro4d359502014-03-14 12:20:17 -04004712EXPORT_SYMBOL(generic_readlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004713
Linus Torvalds1da177e2005-04-16 15:20:36 -07004714/* get the link contents into pagecache */
Al Viro6b255392015-11-17 10:20:54 -05004715const char *page_get_link(struct dentry *dentry, struct inode *inode,
Al Virofceef392015-12-29 15:58:39 -05004716 struct delayed_call *callback)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004717{
Duane Griffinebd09ab2008-12-19 20:47:12 +00004718 char *kaddr;
4719 struct page *page;
Al Viro6b255392015-11-17 10:20:54 -05004720 struct address_space *mapping = inode->i_mapping;
4721
Al Virod3883d42015-11-17 10:41:04 -05004722 if (!dentry) {
4723 page = find_get_page(mapping, 0);
4724 if (!page)
4725 return ERR_PTR(-ECHILD);
4726 if (!PageUptodate(page)) {
4727 put_page(page);
4728 return ERR_PTR(-ECHILD);
4729 }
4730 } else {
4731 page = read_mapping_page(mapping, 0, NULL);
4732 if (IS_ERR(page))
4733 return (char*)page;
4734 }
Al Virofceef392015-12-29 15:58:39 -05004735 set_delayed_call(callback, page_put_link, page);
Al Viro21fc61c2015-11-17 01:07:57 -05004736 BUG_ON(mapping_gfp_mask(mapping) & __GFP_HIGHMEM);
4737 kaddr = page_address(page);
Al Viro6b255392015-11-17 10:20:54 -05004738 nd_terminate_link(kaddr, inode->i_size, PAGE_SIZE - 1);
Duane Griffinebd09ab2008-12-19 20:47:12 +00004739 return kaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004740}
4741
Al Viro6b255392015-11-17 10:20:54 -05004742EXPORT_SYMBOL(page_get_link);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004743
Al Virofceef392015-12-29 15:58:39 -05004744void page_put_link(void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004745{
Al Virofceef392015-12-29 15:58:39 -05004746 put_page(arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004747}
Al Viro4d359502014-03-14 12:20:17 -04004748EXPORT_SYMBOL(page_put_link);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004749
Al Viroaa80dea2015-11-16 18:26:34 -05004750int page_readlink(struct dentry *dentry, char __user *buffer, int buflen)
4751{
Al Virofceef392015-12-29 15:58:39 -05004752 DEFINE_DELAYED_CALL(done);
Al Viro6b255392015-11-17 10:20:54 -05004753 int res = readlink_copy(buffer, buflen,
4754 page_get_link(dentry, d_inode(dentry),
Al Virofceef392015-12-29 15:58:39 -05004755 &done));
4756 do_delayed_call(&done);
Al Viroaa80dea2015-11-16 18:26:34 -05004757 return res;
4758}
4759EXPORT_SYMBOL(page_readlink);
4760
Nick Piggin54566b22009-01-04 12:00:53 -08004761/*
4762 * The nofs argument instructs pagecache_write_begin to pass AOP_FLAG_NOFS
4763 */
4764int __page_symlink(struct inode *inode, const char *symname, int len, int nofs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004765{
4766 struct address_space *mapping = inode->i_mapping;
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08004767 struct page *page;
Nick Pigginafddba42007-10-16 01:25:01 -07004768 void *fsdata;
Dmitriy Monakhovbeb497a2007-02-16 01:27:18 -08004769 int err;
Nick Piggin54566b22009-01-04 12:00:53 -08004770 unsigned int flags = AOP_FLAG_UNINTERRUPTIBLE;
4771 if (nofs)
4772 flags |= AOP_FLAG_NOFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004773
NeilBrown7e53cac2006-03-25 03:07:57 -08004774retry:
Nick Pigginafddba42007-10-16 01:25:01 -07004775 err = pagecache_write_begin(NULL, mapping, 0, len-1,
Nick Piggin54566b22009-01-04 12:00:53 -08004776 flags, &page, &fsdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004777 if (err)
Nick Pigginafddba42007-10-16 01:25:01 -07004778 goto fail;
4779
Al Viro21fc61c2015-11-17 01:07:57 -05004780 memcpy(page_address(page), symname, len-1);
Nick Pigginafddba42007-10-16 01:25:01 -07004781
4782 err = pagecache_write_end(NULL, mapping, 0, len-1, len-1,
4783 page, fsdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004784 if (err < 0)
4785 goto fail;
Nick Pigginafddba42007-10-16 01:25:01 -07004786 if (err < len-1)
4787 goto retry;
4788
Linus Torvalds1da177e2005-04-16 15:20:36 -07004789 mark_inode_dirty(inode);
4790 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004791fail:
4792 return err;
4793}
Al Viro4d359502014-03-14 12:20:17 -04004794EXPORT_SYMBOL(__page_symlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004795
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08004796int page_symlink(struct inode *inode, const char *symname, int len)
4797{
4798 return __page_symlink(inode, symname, len,
Michal Hockoc62d2552015-11-06 16:28:49 -08004799 !mapping_gfp_constraint(inode->i_mapping, __GFP_FS));
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08004800}
Al Viro4d359502014-03-14 12:20:17 -04004801EXPORT_SYMBOL(page_symlink);
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08004802
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08004803const struct inode_operations page_symlink_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004804 .readlink = generic_readlink,
Al Viro6b255392015-11-17 10:20:54 -05004805 .get_link = page_get_link,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004806};
Linus Torvalds1da177e2005-04-16 15:20:36 -07004807EXPORT_SYMBOL(page_symlink_inode_operations);