blob: 8701bd9a5270329eeb043c7142f6bc37dd6195dd [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;
413 }
414
Linus Torvalds3ddcd052011-08-06 22:45:50 -0700415 retval = do_inode_permission(inode, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 if (retval)
417 return retval;
418
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700419 retval = devcgroup_inode_permission(inode, mask);
420 if (retval)
421 return retval;
422
Eric Parisd09ca732010-07-23 11:43:57 -0400423 return security_inode_permission(inode, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424}
Miklos Szeredibd5d0852014-10-24 00:14:35 +0200425EXPORT_SYMBOL(__inode_permission);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426
Al Virof4d6ff82011-06-19 13:14:21 -0400427/**
David Howells0bdaea92012-06-25 12:55:46 +0100428 * sb_permission - Check superblock-level permissions
429 * @sb: Superblock of inode to check permission on
Randy Dunlap55852632012-08-18 17:39:25 -0700430 * @inode: Inode to check permission on
David Howells0bdaea92012-06-25 12:55:46 +0100431 * @mask: Right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
432 *
433 * Separate out file-system wide checks from inode-specific permission checks.
434 */
435static int sb_permission(struct super_block *sb, struct inode *inode, int mask)
436{
437 if (unlikely(mask & MAY_WRITE)) {
438 umode_t mode = inode->i_mode;
439
440 /* Nobody gets write access to a read-only fs. */
441 if ((sb->s_flags & MS_RDONLY) &&
442 (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode)))
443 return -EROFS;
444 }
445 return 0;
446}
447
448/**
449 * inode_permission - Check for access rights to a given inode
450 * @inode: Inode to check permission on
451 * @mask: Right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
452 *
453 * Check for read/write/execute permissions on an inode. We use fs[ug]id for
454 * this, letting us set arbitrary permissions for filesystem access without
455 * changing the "normal" UIDs which are used for other things.
456 *
457 * When checking for MAY_APPEND, MAY_WRITE must also be set in @mask.
458 */
459int inode_permission(struct inode *inode, int mask)
460{
461 int retval;
462
463 retval = sb_permission(inode->i_sb, inode, mask);
464 if (retval)
465 return retval;
466 return __inode_permission(inode, mask);
467}
Al Viro4d359502014-03-14 12:20:17 -0400468EXPORT_SYMBOL(inode_permission);
David Howells0bdaea92012-06-25 12:55:46 +0100469
470/**
Jan Blunck5dd784d02008-02-14 19:34:38 -0800471 * path_get - get a reference to a path
472 * @path: path to get the reference to
473 *
474 * Given a path increment the reference count to the dentry and the vfsmount.
475 */
Al Virodcf787f2013-03-01 23:51:07 -0500476void path_get(const struct path *path)
Jan Blunck5dd784d02008-02-14 19:34:38 -0800477{
478 mntget(path->mnt);
479 dget(path->dentry);
480}
481EXPORT_SYMBOL(path_get);
482
483/**
Jan Blunck1d957f92008-02-14 19:34:35 -0800484 * path_put - put a reference to a path
485 * @path: path to put the reference to
486 *
487 * Given a path decrement the reference count to the dentry and the vfsmount.
488 */
Al Virodcf787f2013-03-01 23:51:07 -0500489void path_put(const struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490{
Jan Blunck1d957f92008-02-14 19:34:35 -0800491 dput(path->dentry);
492 mntput(path->mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493}
Jan Blunck1d957f92008-02-14 19:34:35 -0800494EXPORT_SYMBOL(path_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495
Al Viro894bc8c2015-05-02 07:16:16 -0400496#define EMBEDDED_LEVELS 2
Al Viro1f55a6e2014-11-01 19:30:41 -0400497struct nameidata {
498 struct path path;
Al Viro1cf26652015-05-06 16:01:56 -0400499 struct qstr last;
Al Viro1f55a6e2014-11-01 19:30:41 -0400500 struct path root;
501 struct inode *inode; /* path.dentry.d_inode */
502 unsigned int flags;
Al Viro9883d182015-05-13 07:28:08 -0400503 unsigned seq, m_seq;
Al Viro1f55a6e2014-11-01 19:30:41 -0400504 int last_type;
505 unsigned depth;
NeilBrown756daf22015-03-23 13:37:38 +1100506 int total_link_count;
Al Viro697fc6c2015-05-02 19:38:35 -0400507 struct saved {
508 struct path link;
Al Virofceef392015-12-29 15:58:39 -0500509 struct delayed_call done;
Al Viro697fc6c2015-05-02 19:38:35 -0400510 const char *name;
Al Viro0450b2d2015-05-08 13:23:53 -0400511 unsigned seq;
Al Viro894bc8c2015-05-02 07:16:16 -0400512 } *stack, internal[EMBEDDED_LEVELS];
Al Viro9883d182015-05-13 07:28:08 -0400513 struct filename *name;
514 struct nameidata *saved;
Al Virofceef392015-12-29 15:58:39 -0500515 struct inode *link_inode;
Al Viro9883d182015-05-13 07:28:08 -0400516 unsigned root_seq;
517 int dfd;
Al Viro1f55a6e2014-11-01 19:30:41 -0400518};
519
Al Viro9883d182015-05-13 07:28:08 -0400520static void set_nameidata(struct nameidata *p, int dfd, struct filename *name)
Al Viro894bc8c2015-05-02 07:16:16 -0400521{
NeilBrown756daf22015-03-23 13:37:38 +1100522 struct nameidata *old = current->nameidata;
523 p->stack = p->internal;
Al Viroc8a53ee2015-05-12 18:43:07 -0400524 p->dfd = dfd;
525 p->name = name;
NeilBrown756daf22015-03-23 13:37:38 +1100526 p->total_link_count = old ? old->total_link_count : 0;
Al Viro9883d182015-05-13 07:28:08 -0400527 p->saved = old;
NeilBrown756daf22015-03-23 13:37:38 +1100528 current->nameidata = p;
Al Viro894bc8c2015-05-02 07:16:16 -0400529}
530
Al Viro9883d182015-05-13 07:28:08 -0400531static void restore_nameidata(void)
Al Viro894bc8c2015-05-02 07:16:16 -0400532{
Al Viro9883d182015-05-13 07:28:08 -0400533 struct nameidata *now = current->nameidata, *old = now->saved;
NeilBrown756daf22015-03-23 13:37:38 +1100534
535 current->nameidata = old;
536 if (old)
537 old->total_link_count = now->total_link_count;
Al Viroe1a63bb2015-12-05 21:06:33 -0500538 if (now->stack != now->internal)
NeilBrown756daf22015-03-23 13:37:38 +1100539 kfree(now->stack);
Al Viro894bc8c2015-05-02 07:16:16 -0400540}
541
542static int __nd_alloc_stack(struct nameidata *nd)
543{
Al Virobc40aee2015-05-09 13:04:24 -0400544 struct saved *p;
545
546 if (nd->flags & LOOKUP_RCU) {
547 p= kmalloc(MAXSYMLINKS * sizeof(struct saved),
548 GFP_ATOMIC);
549 if (unlikely(!p))
550 return -ECHILD;
551 } else {
552 p= kmalloc(MAXSYMLINKS * sizeof(struct saved),
Al Viro894bc8c2015-05-02 07:16:16 -0400553 GFP_KERNEL);
Al Virobc40aee2015-05-09 13:04:24 -0400554 if (unlikely(!p))
555 return -ENOMEM;
556 }
Al Viro894bc8c2015-05-02 07:16:16 -0400557 memcpy(p, nd->internal, sizeof(nd->internal));
558 nd->stack = p;
559 return 0;
560}
561
Eric W. Biederman397d4252015-08-15 20:27:13 -0500562/**
563 * path_connected - Verify that a path->dentry is below path->mnt.mnt_root
564 * @path: nameidate to verify
565 *
566 * Rename can sometimes move a file or directory outside of a bind
567 * mount, path_connected allows those cases to be detected.
568 */
569static bool path_connected(const struct path *path)
570{
571 struct vfsmount *mnt = path->mnt;
572
573 /* Only bind mounts can have disconnected paths */
574 if (mnt->mnt_root == mnt->mnt_sb->s_root)
575 return true;
576
577 return is_subdir(path->dentry, mnt->mnt_root);
578}
579
Al Viro894bc8c2015-05-02 07:16:16 -0400580static inline int nd_alloc_stack(struct nameidata *nd)
581{
Al Viroda4e0be2015-05-03 20:52:15 -0400582 if (likely(nd->depth != EMBEDDED_LEVELS))
Al Viro894bc8c2015-05-02 07:16:16 -0400583 return 0;
584 if (likely(nd->stack != nd->internal))
585 return 0;
586 return __nd_alloc_stack(nd);
587}
588
Al Viro79733872015-05-09 12:55:43 -0400589static void drop_links(struct nameidata *nd)
590{
591 int i = nd->depth;
592 while (i--) {
593 struct saved *last = nd->stack + i;
Al Virofceef392015-12-29 15:58:39 -0500594 do_delayed_call(&last->done);
595 clear_delayed_call(&last->done);
Al Viro79733872015-05-09 12:55:43 -0400596 }
597}
598
599static void terminate_walk(struct nameidata *nd)
600{
601 drop_links(nd);
602 if (!(nd->flags & LOOKUP_RCU)) {
603 int i;
604 path_put(&nd->path);
605 for (i = 0; i < nd->depth; i++)
606 path_put(&nd->stack[i].link);
Al Viro102b8af2015-05-12 17:35:52 -0400607 if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT)) {
608 path_put(&nd->root);
609 nd->root.mnt = NULL;
610 }
Al Viro79733872015-05-09 12:55:43 -0400611 } else {
612 nd->flags &= ~LOOKUP_RCU;
613 if (!(nd->flags & LOOKUP_ROOT))
614 nd->root.mnt = NULL;
615 rcu_read_unlock();
616 }
617 nd->depth = 0;
618}
619
620/* path_put is needed afterwards regardless of success or failure */
621static bool legitimize_path(struct nameidata *nd,
622 struct path *path, unsigned seq)
623{
624 int res = __legitimize_mnt(path->mnt, nd->m_seq);
625 if (unlikely(res)) {
626 if (res > 0)
627 path->mnt = NULL;
628 path->dentry = NULL;
629 return false;
630 }
631 if (unlikely(!lockref_get_not_dead(&path->dentry->d_lockref))) {
632 path->dentry = NULL;
633 return false;
634 }
635 return !read_seqcount_retry(&path->dentry->d_seq, seq);
636}
637
638static bool legitimize_links(struct nameidata *nd)
639{
640 int i;
641 for (i = 0; i < nd->depth; i++) {
642 struct saved *last = nd->stack + i;
643 if (unlikely(!legitimize_path(nd, &last->link, last->seq))) {
644 drop_links(nd);
645 nd->depth = i + 1;
646 return false;
647 }
648 }
649 return true;
650}
651
Al Viro19660af2011-03-25 10:32:48 -0400652/*
Nick Piggin31e6b012011-01-07 17:49:52 +1100653 * Path walking has 2 modes, rcu-walk and ref-walk (see
Al Viro19660af2011-03-25 10:32:48 -0400654 * Documentation/filesystems/path-lookup.txt). In situations when we can't
655 * continue in RCU mode, we attempt to drop out of rcu-walk mode and grab
Mike Marshall57e37152015-11-30 11:11:59 -0500656 * normal reference counts on dentries and vfsmounts to transition to ref-walk
Al Viro19660af2011-03-25 10:32:48 -0400657 * mode. Refcounts are grabbed at the last known good point before rcu-walk
658 * got stuck, so ref-walk may continue from there. If this is not successful
659 * (eg. a seqcount has changed), then failure is returned and it's up to caller
660 * to restart the path walk from the beginning in ref-walk mode.
Nick Piggin31e6b012011-01-07 17:49:52 +1100661 */
Nick Piggin31e6b012011-01-07 17:49:52 +1100662
663/**
Al Viro19660af2011-03-25 10:32:48 -0400664 * unlazy_walk - try to switch to ref-walk mode.
665 * @nd: nameidata pathwalk data
666 * @dentry: child of nd->path.dentry or NULL
Al Viro6e9918b2015-05-05 09:26:05 -0400667 * @seq: seq number to check dentry against
Randy Dunlap39191622011-01-08 19:36:21 -0800668 * Returns: 0 on success, -ECHILD on failure
Nick Piggin31e6b012011-01-07 17:49:52 +1100669 *
Al Viro19660af2011-03-25 10:32:48 -0400670 * unlazy_walk attempts to legitimize the current nd->path, nd->root and dentry
671 * for ref-walk mode. @dentry must be a path found by a do_lookup call on
672 * @nd or NULL. Must be called from rcu-walk context.
Al Viro79733872015-05-09 12:55:43 -0400673 * Nothing should touch nameidata between unlazy_walk() failure and
674 * terminate_walk().
Nick Piggin31e6b012011-01-07 17:49:52 +1100675 */
Al Viro6e9918b2015-05-05 09:26:05 -0400676static int unlazy_walk(struct nameidata *nd, struct dentry *dentry, unsigned seq)
Nick Piggin31e6b012011-01-07 17:49:52 +1100677{
Nick Piggin31e6b012011-01-07 17:49:52 +1100678 struct dentry *parent = nd->path.dentry;
679
680 BUG_ON(!(nd->flags & LOOKUP_RCU));
Linus Torvaldse5c832d2013-09-08 18:13:49 -0700681
Linus Torvaldse5c832d2013-09-08 18:13:49 -0700682 nd->flags &= ~LOOKUP_RCU;
Al Viro79733872015-05-09 12:55:43 -0400683 if (unlikely(!legitimize_links(nd)))
684 goto out2;
685 if (unlikely(!legitimize_mnt(nd->path.mnt, nd->m_seq)))
686 goto out2;
687 if (unlikely(!lockref_get_not_dead(&parent->d_lockref)))
688 goto out1;
Al Viro48a066e2013-09-29 22:06:07 -0400689
Linus Torvalds15570082013-09-02 11:38:06 -0700690 /*
691 * For a negative lookup, the lookup sequence point is the parents
692 * sequence point, and it only needs to revalidate the parent dentry.
693 *
694 * For a positive lookup, we need to move both the parent and the
695 * dentry from the RCU domain to be properly refcounted. And the
696 * sequence number in the dentry validates *both* dentry counters,
697 * since we checked the sequence number of the parent after we got
698 * the child sequence number. So we know the parent must still
699 * be valid if the child sequence number is still valid.
700 */
Al Viro19660af2011-03-25 10:32:48 -0400701 if (!dentry) {
Linus Torvaldse5c832d2013-09-08 18:13:49 -0700702 if (read_seqcount_retry(&parent->d_seq, nd->seq))
703 goto out;
Al Viro19660af2011-03-25 10:32:48 -0400704 BUG_ON(nd->inode != parent->d_inode);
705 } else {
Linus Torvaldse5c832d2013-09-08 18:13:49 -0700706 if (!lockref_get_not_dead(&dentry->d_lockref))
707 goto out;
Al Viro6e9918b2015-05-05 09:26:05 -0400708 if (read_seqcount_retry(&dentry->d_seq, seq))
Linus Torvaldse5c832d2013-09-08 18:13:49 -0700709 goto drop_dentry;
Al Viro19660af2011-03-25 10:32:48 -0400710 }
Linus Torvaldse5c832d2013-09-08 18:13:49 -0700711
712 /*
713 * Sequence counts matched. Now make sure that the root is
714 * still valid and get it if required.
715 */
716 if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT)) {
Al Viro5a8d87e2015-05-12 00:10:18 -0400717 if (unlikely(!legitimize_path(nd, &nd->root, nd->root_seq))) {
718 rcu_read_unlock();
719 dput(dentry);
720 return -ECHILD;
Al Viro79733872015-05-09 12:55:43 -0400721 }
Nick Piggin31e6b012011-01-07 17:49:52 +1100722 }
Nick Piggin31e6b012011-01-07 17:49:52 +1100723
Al Viro8b61e742013-11-08 12:45:01 -0500724 rcu_read_unlock();
Nick Piggin31e6b012011-01-07 17:49:52 +1100725 return 0;
Al Viro19660af2011-03-25 10:32:48 -0400726
Linus Torvaldse5c832d2013-09-08 18:13:49 -0700727drop_dentry:
Al Viro8b61e742013-11-08 12:45:01 -0500728 rcu_read_unlock();
Linus Torvalds15570082013-09-02 11:38:06 -0700729 dput(dentry);
Linus Torvaldsd0d27272013-09-10 12:17:49 -0700730 goto drop_root_mnt;
Al Viro79733872015-05-09 12:55:43 -0400731out2:
732 nd->path.mnt = NULL;
733out1:
734 nd->path.dentry = NULL;
Linus Torvaldse5c832d2013-09-08 18:13:49 -0700735out:
Al Viro8b61e742013-11-08 12:45:01 -0500736 rcu_read_unlock();
Linus Torvaldsd0d27272013-09-10 12:17:49 -0700737drop_root_mnt:
738 if (!(nd->flags & LOOKUP_ROOT))
739 nd->root.mnt = NULL;
Nick Piggin31e6b012011-01-07 17:49:52 +1100740 return -ECHILD;
741}
742
Al Viro79733872015-05-09 12:55:43 -0400743static int unlazy_link(struct nameidata *nd, struct path *link, unsigned seq)
744{
745 if (unlikely(!legitimize_path(nd, link, seq))) {
746 drop_links(nd);
747 nd->depth = 0;
748 nd->flags &= ~LOOKUP_RCU;
749 nd->path.mnt = NULL;
750 nd->path.dentry = NULL;
751 if (!(nd->flags & LOOKUP_ROOT))
752 nd->root.mnt = NULL;
753 rcu_read_unlock();
754 } else if (likely(unlazy_walk(nd, NULL, 0)) == 0) {
755 return 0;
756 }
757 path_put(link);
758 return -ECHILD;
759}
760
Al Viro4ce16ef32012-06-10 16:10:59 -0400761static inline int d_revalidate(struct dentry *dentry, unsigned int flags)
Nick Piggin34286d62011-01-07 17:49:57 +1100762{
Al Viro4ce16ef32012-06-10 16:10:59 -0400763 return dentry->d_op->d_revalidate(dentry, flags);
Nick Piggin34286d62011-01-07 17:49:57 +1100764}
765
Al Viro9f1fafe2011-03-25 11:00:12 -0400766/**
767 * complete_walk - successful completion of path walk
768 * @nd: pointer nameidata
Jeff Layton39159de2009-12-07 12:01:50 -0500769 *
Al Viro9f1fafe2011-03-25 11:00:12 -0400770 * If we had been in RCU mode, drop out of it and legitimize nd->path.
771 * Revalidate the final result, unless we'd already done that during
772 * the path walk or the filesystem doesn't ask for it. Return 0 on
773 * success, -error on failure. In case of failure caller does not
774 * need to drop nd->path.
Jeff Layton39159de2009-12-07 12:01:50 -0500775 */
Al Viro9f1fafe2011-03-25 11:00:12 -0400776static int complete_walk(struct nameidata *nd)
Jeff Layton39159de2009-12-07 12:01:50 -0500777{
Al Viro16c2cd72011-02-22 15:50:10 -0500778 struct dentry *dentry = nd->path.dentry;
Jeff Layton39159de2009-12-07 12:01:50 -0500779 int status;
Jeff Layton39159de2009-12-07 12:01:50 -0500780
Al Viro9f1fafe2011-03-25 11:00:12 -0400781 if (nd->flags & LOOKUP_RCU) {
Al Viro9f1fafe2011-03-25 11:00:12 -0400782 if (!(nd->flags & LOOKUP_ROOT))
783 nd->root.mnt = NULL;
Al Viro6e9918b2015-05-05 09:26:05 -0400784 if (unlikely(unlazy_walk(nd, NULL, 0)))
Al Viro48a066e2013-09-29 22:06:07 -0400785 return -ECHILD;
Al Viro9f1fafe2011-03-25 11:00:12 -0400786 }
787
Al Viro16c2cd72011-02-22 15:50:10 -0500788 if (likely(!(nd->flags & LOOKUP_JUMPED)))
Jeff Layton39159de2009-12-07 12:01:50 -0500789 return 0;
790
Jeff Laytonecf3d1f2013-02-20 11:19:05 -0500791 if (likely(!(dentry->d_flags & DCACHE_OP_WEAK_REVALIDATE)))
Al Viro16c2cd72011-02-22 15:50:10 -0500792 return 0;
793
Jeff Laytonecf3d1f2013-02-20 11:19:05 -0500794 status = dentry->d_op->d_weak_revalidate(dentry, nd->flags);
Jeff Layton39159de2009-12-07 12:01:50 -0500795 if (status > 0)
796 return 0;
797
Al Viro16c2cd72011-02-22 15:50:10 -0500798 if (!status)
Jeff Layton39159de2009-12-07 12:01:50 -0500799 status = -ESTALE;
Al Viro16c2cd72011-02-22 15:50:10 -0500800
Jeff Layton39159de2009-12-07 12:01:50 -0500801 return status;
802}
803
Al Viro18d8c862015-05-12 16:32:34 -0400804static void set_root(struct nameidata *nd)
Al Viro2a737872009-04-07 11:49:53 -0400805{
Al Viro7bd88372014-09-13 21:55:46 -0400806 struct fs_struct *fs = current->fs;
Nick Pigginc28cc362011-01-07 17:49:53 +1100807
Al Viro9e6697e2015-12-05 20:07:21 -0500808 if (nd->flags & LOOKUP_RCU) {
809 unsigned seq;
810
811 do {
812 seq = read_seqcount_begin(&fs->seq);
813 nd->root = fs->root;
814 nd->root_seq = __read_seqcount_begin(&nd->root.dentry->d_seq);
815 } while (read_seqcount_retry(&fs->seq, seq));
816 } else {
817 get_fs_root(fs, &nd->root);
818 }
Nick Piggin31e6b012011-01-07 17:49:52 +1100819}
820
Jan Blunck1d957f92008-02-14 19:34:35 -0800821static void path_put_conditional(struct path *path, struct nameidata *nd)
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700822{
823 dput(path->dentry);
Jan Blunck4ac91372008-02-14 19:34:32 -0800824 if (path->mnt != nd->path.mnt)
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700825 mntput(path->mnt);
826}
827
Nick Piggin7b9337a2011-01-14 08:42:43 +0000828static inline void path_to_nameidata(const struct path *path,
829 struct nameidata *nd)
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700830{
Nick Piggin31e6b012011-01-07 17:49:52 +1100831 if (!(nd->flags & LOOKUP_RCU)) {
832 dput(nd->path.dentry);
833 if (nd->path.mnt != path->mnt)
834 mntput(nd->path.mnt);
Huang Shijie9a229682010-04-02 17:37:13 +0800835 }
Nick Piggin31e6b012011-01-07 17:49:52 +1100836 nd->path.mnt = path->mnt;
Jan Blunck4ac91372008-02-14 19:34:32 -0800837 nd->path.dentry = path->dentry;
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700838}
839
Al Viro248fb5b2015-12-05 20:51:58 -0500840static int nd_jump_root(struct nameidata *nd)
841{
842 if (nd->flags & LOOKUP_RCU) {
843 struct dentry *d;
844 nd->path = nd->root;
845 d = nd->path.dentry;
846 nd->inode = d->d_inode;
847 nd->seq = nd->root_seq;
848 if (unlikely(read_seqcount_retry(&d->d_seq, nd->seq)))
849 return -ECHILD;
850 } else {
851 path_put(&nd->path);
852 nd->path = nd->root;
853 path_get(&nd->path);
854 nd->inode = nd->path.dentry->d_inode;
855 }
856 nd->flags |= LOOKUP_JUMPED;
857 return 0;
858}
859
Christoph Hellwigb5fb63c12012-06-18 10:47:04 -0400860/*
Al Viro6b255392015-11-17 10:20:54 -0500861 * Helper to directly jump to a known parsed path from ->get_link,
Christoph Hellwigb5fb63c12012-06-18 10:47:04 -0400862 * caller must have taken a reference to path beforehand.
863 */
Al Viro6e771372015-05-02 13:37:52 -0400864void nd_jump_link(struct path *path)
Christoph Hellwigb5fb63c12012-06-18 10:47:04 -0400865{
Al Viro6e771372015-05-02 13:37:52 -0400866 struct nameidata *nd = current->nameidata;
Christoph Hellwigb5fb63c12012-06-18 10:47:04 -0400867 path_put(&nd->path);
868
869 nd->path = *path;
870 nd->inode = nd->path.dentry->d_inode;
871 nd->flags |= LOOKUP_JUMPED;
Christoph Hellwigb5fb63c12012-06-18 10:47:04 -0400872}
873
Al Virob9ff4422015-05-02 20:19:23 -0400874static inline void put_link(struct nameidata *nd)
Al Viro574197e2011-03-14 22:20:34 -0400875{
Al Viro21c30032015-05-03 21:06:24 -0400876 struct saved *last = nd->stack + --nd->depth;
Al Virofceef392015-12-29 15:58:39 -0500877 do_delayed_call(&last->done);
Al Viro6548fae2015-05-07 20:32:22 -0400878 if (!(nd->flags & LOOKUP_RCU))
879 path_put(&last->link);
Al Viro574197e2011-03-14 22:20:34 -0400880}
881
Linus Torvalds561ec642012-10-26 10:05:07 -0700882int sysctl_protected_symlinks __read_mostly = 0;
883int sysctl_protected_hardlinks __read_mostly = 0;
Kees Cook800179c2012-07-25 17:29:07 -0700884
885/**
886 * may_follow_link - Check symlink following for unsafe situations
Randy Dunlap55852632012-08-18 17:39:25 -0700887 * @nd: nameidata pathwalk data
Kees Cook800179c2012-07-25 17:29:07 -0700888 *
889 * In the case of the sysctl_protected_symlinks sysctl being enabled,
890 * CAP_DAC_OVERRIDE needs to be specifically ignored if the symlink is
891 * in a sticky world-writable directory. This is to protect privileged
892 * processes from failing races against path names that may change out
893 * from under them by way of other users creating malicious symlinks.
894 * It will permit symlinks to be followed only when outside a sticky
895 * world-writable directory, or when the uid of the symlink and follower
896 * match, or when the directory owner matches the symlink's owner.
897 *
898 * Returns 0 if following the symlink is allowed, -ve on error.
899 */
Al Virofec2fa22015-05-06 15:58:18 -0400900static inline int may_follow_link(struct nameidata *nd)
Kees Cook800179c2012-07-25 17:29:07 -0700901{
902 const struct inode *inode;
903 const struct inode *parent;
Seth Forshee2d7f9e22016-04-26 14:36:23 -0500904 kuid_t puid;
Kees Cook800179c2012-07-25 17:29:07 -0700905
906 if (!sysctl_protected_symlinks)
907 return 0;
908
909 /* Allowed if owner and follower match. */
Al Virofceef392015-12-29 15:58:39 -0500910 inode = nd->link_inode;
Eric W. Biederman81abe272012-08-03 09:38:08 -0700911 if (uid_eq(current_cred()->fsuid, inode->i_uid))
Kees Cook800179c2012-07-25 17:29:07 -0700912 return 0;
913
914 /* Allowed if parent directory not sticky and world-writable. */
Al Viroaa65fa32015-08-04 23:23:50 -0400915 parent = nd->inode;
Kees Cook800179c2012-07-25 17:29:07 -0700916 if ((parent->i_mode & (S_ISVTX|S_IWOTH)) != (S_ISVTX|S_IWOTH))
917 return 0;
918
919 /* Allowed if parent directory and link owner match. */
Seth Forshee2d7f9e22016-04-26 14:36:23 -0500920 puid = parent->i_uid;
921 if (uid_valid(puid) && uid_eq(puid, inode->i_uid))
Kees Cook800179c2012-07-25 17:29:07 -0700922 return 0;
923
Al Viro319565022015-05-07 20:37:40 -0400924 if (nd->flags & LOOKUP_RCU)
925 return -ECHILD;
926
Al Viro1cf26652015-05-06 16:01:56 -0400927 audit_log_link_denied("follow_link", &nd->stack[0].link);
Kees Cook800179c2012-07-25 17:29:07 -0700928 return -EACCES;
929}
930
931/**
932 * safe_hardlink_source - Check for safe hardlink conditions
933 * @inode: the source inode to hardlink from
934 *
935 * Return false if at least one of the following conditions:
936 * - inode is not a regular file
937 * - inode is setuid
938 * - inode is setgid and group-exec
939 * - access failure for read and write
940 *
941 * Otherwise returns true.
942 */
943static bool safe_hardlink_source(struct inode *inode)
944{
945 umode_t mode = inode->i_mode;
946
947 /* Special files should not get pinned to the filesystem. */
948 if (!S_ISREG(mode))
949 return false;
950
951 /* Setuid files should not get pinned to the filesystem. */
952 if (mode & S_ISUID)
953 return false;
954
955 /* Executable setgid files should not get pinned to the filesystem. */
956 if ((mode & (S_ISGID | S_IXGRP)) == (S_ISGID | S_IXGRP))
957 return false;
958
959 /* Hardlinking to unreadable or unwritable sources is dangerous. */
960 if (inode_permission(inode, MAY_READ | MAY_WRITE))
961 return false;
962
963 return true;
964}
965
966/**
967 * may_linkat - Check permissions for creating a hardlink
968 * @link: the source to hardlink from
969 *
970 * Block hardlink when all of:
971 * - sysctl_protected_hardlinks enabled
972 * - fsuid does not match inode
973 * - hardlink source is unsafe (see safe_hardlink_source() above)
Dirk Steinmetzf2ca3792015-10-20 16:09:19 +0200974 * - not CAP_FOWNER in a namespace with the inode owner uid mapped
Kees Cook800179c2012-07-25 17:29:07 -0700975 *
976 * Returns 0 if successful, -ve on error.
977 */
978static int may_linkat(struct path *link)
979{
Kees Cook800179c2012-07-25 17:29:07 -0700980 struct inode *inode;
981
982 if (!sysctl_protected_hardlinks)
983 return 0;
984
Kees Cook800179c2012-07-25 17:29:07 -0700985 inode = link->dentry->d_inode;
986
987 /* Source inode owner (or CAP_FOWNER) can hardlink all they like,
988 * otherwise, it must be a safe source.
989 */
Dirk Steinmetzf2ca3792015-10-20 16:09:19 +0200990 if (inode_owner_or_capable(inode) || safe_hardlink_source(inode))
Kees Cook800179c2012-07-25 17:29:07 -0700991 return 0;
992
Kees Cooka51d9ea2012-07-25 17:29:08 -0700993 audit_log_link_denied("linkat", link);
Kees Cook800179c2012-07-25 17:29:07 -0700994 return -EPERM;
995}
996
Al Viro3b2e7f72015-04-19 00:53:50 -0400997static __always_inline
998const char *get_link(struct nameidata *nd)
Ian Kent051d3812006-03-27 01:14:53 -0800999{
Al Viroab104922015-05-10 11:50:01 -04001000 struct saved *last = nd->stack + nd->depth - 1;
Al Viro1cf26652015-05-06 16:01:56 -04001001 struct dentry *dentry = last->link.dentry;
Al Virofceef392015-12-29 15:58:39 -05001002 struct inode *inode = nd->link_inode;
Al Viro6d7b5aa2012-06-10 04:15:17 -04001003 int error;
Al Viro0a959df2015-04-18 18:23:41 -04001004 const char *res;
Ian Kent051d3812006-03-27 01:14:53 -08001005
NeilBrown8fa9dd22015-03-23 13:37:40 +11001006 if (!(nd->flags & LOOKUP_RCU)) {
1007 touch_atime(&last->link);
1008 cond_resched();
1009 } else if (atime_needs_update(&last->link, inode)) {
1010 if (unlikely(unlazy_walk(nd, NULL, 0)))
1011 return ERR_PTR(-ECHILD);
1012 touch_atime(&last->link);
1013 }
1014
NeilBrownbda0be72015-03-23 13:37:39 +11001015 error = security_inode_follow_link(dentry, inode,
1016 nd->flags & LOOKUP_RCU);
1017 if (unlikely(error))
Al Viro6920a442015-05-10 10:43:46 -04001018 return ERR_PTR(error);
Al Viro36f3b4f2011-02-22 21:24:38 -05001019
Al Viro86acdca12009-12-22 23:45:11 -05001020 nd->last_type = LAST_BIND;
Al Virod4dee482015-04-30 20:08:02 -04001021 res = inode->i_link;
1022 if (!res) {
Al Virofceef392015-12-29 15:58:39 -05001023 const char * (*get)(struct dentry *, struct inode *,
1024 struct delayed_call *);
1025 get = inode->i_op->get_link;
Al Viro8c1b4562015-05-09 18:15:21 -04001026 if (nd->flags & LOOKUP_RCU) {
Al Virofceef392015-12-29 15:58:39 -05001027 res = get(NULL, inode, &last->done);
Al Viro6b255392015-11-17 10:20:54 -05001028 if (res == ERR_PTR(-ECHILD)) {
1029 if (unlikely(unlazy_walk(nd, NULL, 0)))
1030 return ERR_PTR(-ECHILD);
Al Virofceef392015-12-29 15:58:39 -05001031 res = get(dentry, inode, &last->done);
Al Viro6b255392015-11-17 10:20:54 -05001032 }
1033 } else {
Al Virofceef392015-12-29 15:58:39 -05001034 res = get(dentry, inode, &last->done);
Al Viro8c1b4562015-05-09 18:15:21 -04001035 }
Al Virofceef392015-12-29 15:58:39 -05001036 if (IS_ERR_OR_NULL(res))
Al Virofab51e82015-05-10 11:01:00 -04001037 return res;
Ian Kent051d3812006-03-27 01:14:53 -08001038 }
Al Virofab51e82015-05-10 11:01:00 -04001039 if (*res == '/') {
Al Viro9e6697e2015-12-05 20:07:21 -05001040 if (!nd->root.mnt)
1041 set_root(nd);
Al Viro248fb5b2015-12-05 20:51:58 -05001042 if (unlikely(nd_jump_root(nd)))
1043 return ERR_PTR(-ECHILD);
Al Virofab51e82015-05-10 11:01:00 -04001044 while (unlikely(*++res == '/'))
1045 ;
1046 }
1047 if (!*res)
1048 res = NULL;
Al Viro0a959df2015-04-18 18:23:41 -04001049 return res;
1050}
Al Viro6d7b5aa2012-06-10 04:15:17 -04001051
David Howellsf015f1262012-06-25 12:55:28 +01001052/*
1053 * follow_up - Find the mountpoint of path's vfsmount
1054 *
1055 * Given a path, find the mountpoint of its source file system.
1056 * Replace @path with the path of the mountpoint in the parent mount.
1057 * Up is towards /.
1058 *
1059 * Return 1 if we went up a level and 0 if we were already at the
1060 * root.
1061 */
Al Virobab77eb2009-04-18 03:26:48 -04001062int follow_up(struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063{
Al Viro0714a532011-11-24 22:19:58 -05001064 struct mount *mnt = real_mount(path->mnt);
1065 struct mount *parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 struct dentry *mountpoint;
Nick Piggin99b7db72010-08-18 04:37:39 +10001067
Al Viro48a066e2013-09-29 22:06:07 -04001068 read_seqlock_excl(&mount_lock);
Al Viro0714a532011-11-24 22:19:58 -05001069 parent = mnt->mnt_parent;
Al Viro3c0a6162012-07-18 17:32:50 +04001070 if (parent == mnt) {
Al Viro48a066e2013-09-29 22:06:07 -04001071 read_sequnlock_excl(&mount_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 return 0;
1073 }
Al Viro0714a532011-11-24 22:19:58 -05001074 mntget(&parent->mnt);
Al Viroa73324d2011-11-24 22:25:07 -05001075 mountpoint = dget(mnt->mnt_mountpoint);
Al Viro48a066e2013-09-29 22:06:07 -04001076 read_sequnlock_excl(&mount_lock);
Al Virobab77eb2009-04-18 03:26:48 -04001077 dput(path->dentry);
1078 path->dentry = mountpoint;
1079 mntput(path->mnt);
Al Viro0714a532011-11-24 22:19:58 -05001080 path->mnt = &parent->mnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 return 1;
1082}
Al Viro4d359502014-03-14 12:20:17 -04001083EXPORT_SYMBOL(follow_up);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084
Nick Pigginb5c84bf2011-01-07 17:49:38 +11001085/*
David Howells9875cf82011-01-14 18:45:21 +00001086 * Perform an automount
1087 * - return -EISDIR to tell follow_managed() to stop and return the path we
1088 * were called with.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 */
NeilBrown756daf22015-03-23 13:37:38 +11001090static int follow_automount(struct path *path, struct nameidata *nd,
David Howells9875cf82011-01-14 18:45:21 +00001091 bool *need_mntput)
Nick Piggin31e6b012011-01-07 17:49:52 +11001092{
David Howells9875cf82011-01-14 18:45:21 +00001093 struct vfsmount *mnt;
David Howellsea5b7782011-01-14 19:10:03 +00001094 int err;
Nick Piggin31e6b012011-01-07 17:49:52 +11001095
David Howells9875cf82011-01-14 18:45:21 +00001096 if (!path->dentry->d_op || !path->dentry->d_op->d_automount)
1097 return -EREMOTE;
Al Viro463ffb22005-06-06 13:36:05 -07001098
Miklos Szeredi0ec26fd2011-09-05 18:06:26 +02001099 /* We don't want to mount if someone's just doing a stat -
1100 * unless they're stat'ing a directory and appended a '/' to
1101 * the name.
1102 *
1103 * We do, however, want to mount if someone wants to open or
1104 * create a file of any type under the mountpoint, wants to
1105 * traverse through the mountpoint or wants to open the
1106 * mounted directory. Also, autofs may mark negative dentries
1107 * as being automount points. These will need the attentions
1108 * of the daemon to instantiate them before they can be used.
David Howells9875cf82011-01-14 18:45:21 +00001109 */
NeilBrown756daf22015-03-23 13:37:38 +11001110 if (!(nd->flags & (LOOKUP_PARENT | LOOKUP_DIRECTORY |
1111 LOOKUP_OPEN | LOOKUP_CREATE | LOOKUP_AUTOMOUNT)) &&
Miklos Szeredi0ec26fd2011-09-05 18:06:26 +02001112 path->dentry->d_inode)
1113 return -EISDIR;
1114
NeilBrown756daf22015-03-23 13:37:38 +11001115 nd->total_link_count++;
1116 if (nd->total_link_count >= 40)
David Howells9875cf82011-01-14 18:45:21 +00001117 return -ELOOP;
1118
1119 mnt = path->dentry->d_op->d_automount(path);
1120 if (IS_ERR(mnt)) {
1121 /*
1122 * The filesystem is allowed to return -EISDIR here to indicate
1123 * it doesn't want to automount. For instance, autofs would do
1124 * this so that its userspace daemon can mount on this dentry.
1125 *
1126 * However, we can only permit this if it's a terminal point in
1127 * the path being looked up; if it wasn't then the remainder of
1128 * the path is inaccessible and we should say so.
1129 */
NeilBrown756daf22015-03-23 13:37:38 +11001130 if (PTR_ERR(mnt) == -EISDIR && (nd->flags & LOOKUP_PARENT))
David Howells9875cf82011-01-14 18:45:21 +00001131 return -EREMOTE;
1132 return PTR_ERR(mnt);
1133 }
David Howellsea5b7782011-01-14 19:10:03 +00001134
David Howells9875cf82011-01-14 18:45:21 +00001135 if (!mnt) /* mount collision */
1136 return 0;
1137
Al Viro8aef1882011-06-16 15:10:06 +01001138 if (!*need_mntput) {
1139 /* lock_mount() may release path->mnt on error */
1140 mntget(path->mnt);
1141 *need_mntput = true;
1142 }
Al Viro19a167a2011-01-17 01:35:23 -05001143 err = finish_automount(mnt, path);
David Howellsea5b7782011-01-14 19:10:03 +00001144
David Howellsea5b7782011-01-14 19:10:03 +00001145 switch (err) {
1146 case -EBUSY:
1147 /* Someone else made a mount here whilst we were busy */
Al Viro19a167a2011-01-17 01:35:23 -05001148 return 0;
David Howellsea5b7782011-01-14 19:10:03 +00001149 case 0:
Al Viro8aef1882011-06-16 15:10:06 +01001150 path_put(path);
David Howellsea5b7782011-01-14 19:10:03 +00001151 path->mnt = mnt;
1152 path->dentry = dget(mnt->mnt_root);
David Howellsea5b7782011-01-14 19:10:03 +00001153 return 0;
Al Viro19a167a2011-01-17 01:35:23 -05001154 default:
1155 return err;
David Howellsea5b7782011-01-14 19:10:03 +00001156 }
Al Viro19a167a2011-01-17 01:35:23 -05001157
David Howells9875cf82011-01-14 18:45:21 +00001158}
1159
1160/*
1161 * Handle a dentry that is managed in some way.
David Howellscc53ce52011-01-14 18:45:26 +00001162 * - Flagged for transit management (autofs)
David Howells9875cf82011-01-14 18:45:21 +00001163 * - Flagged as mountpoint
1164 * - Flagged as automount point
1165 *
1166 * This may only be called in refwalk mode.
1167 *
1168 * Serialization is taken care of in namespace.c
1169 */
NeilBrown756daf22015-03-23 13:37:38 +11001170static int follow_managed(struct path *path, struct nameidata *nd)
David Howells9875cf82011-01-14 18:45:21 +00001171{
Al Viro8aef1882011-06-16 15:10:06 +01001172 struct vfsmount *mnt = path->mnt; /* held by caller, must be left alone */
David Howells9875cf82011-01-14 18:45:21 +00001173 unsigned managed;
1174 bool need_mntput = false;
Al Viro8aef1882011-06-16 15:10:06 +01001175 int ret = 0;
David Howells9875cf82011-01-14 18:45:21 +00001176
1177 /* Given that we're not holding a lock here, we retain the value in a
1178 * local variable for each dentry as we look at it so that we don't see
1179 * the components of that value change under us */
1180 while (managed = ACCESS_ONCE(path->dentry->d_flags),
1181 managed &= DCACHE_MANAGED_DENTRY,
1182 unlikely(managed != 0)) {
David Howellscc53ce52011-01-14 18:45:26 +00001183 /* Allow the filesystem to manage the transit without i_mutex
1184 * being held. */
1185 if (managed & DCACHE_MANAGE_TRANSIT) {
1186 BUG_ON(!path->dentry->d_op);
1187 BUG_ON(!path->dentry->d_op->d_manage);
Al Viro1aed3e42011-03-18 09:09:02 -04001188 ret = path->dentry->d_op->d_manage(path->dentry, false);
David Howellscc53ce52011-01-14 18:45:26 +00001189 if (ret < 0)
Al Viro8aef1882011-06-16 15:10:06 +01001190 break;
David Howellscc53ce52011-01-14 18:45:26 +00001191 }
1192
David Howells9875cf82011-01-14 18:45:21 +00001193 /* Transit to a mounted filesystem. */
1194 if (managed & DCACHE_MOUNTED) {
1195 struct vfsmount *mounted = lookup_mnt(path);
1196 if (mounted) {
1197 dput(path->dentry);
1198 if (need_mntput)
1199 mntput(path->mnt);
1200 path->mnt = mounted;
1201 path->dentry = dget(mounted->mnt_root);
1202 need_mntput = true;
1203 continue;
1204 }
1205
1206 /* Something is mounted on this dentry in another
1207 * namespace and/or whatever was mounted there in this
Al Viro48a066e2013-09-29 22:06:07 -04001208 * namespace got unmounted before lookup_mnt() could
1209 * get it */
David Howells9875cf82011-01-14 18:45:21 +00001210 }
1211
1212 /* Handle an automount point */
1213 if (managed & DCACHE_NEED_AUTOMOUNT) {
NeilBrown756daf22015-03-23 13:37:38 +11001214 ret = follow_automount(path, nd, &need_mntput);
David Howells9875cf82011-01-14 18:45:21 +00001215 if (ret < 0)
Al Viro8aef1882011-06-16 15:10:06 +01001216 break;
David Howells9875cf82011-01-14 18:45:21 +00001217 continue;
1218 }
1219
1220 /* We didn't change the current path point */
1221 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 }
Al Viro8aef1882011-06-16 15:10:06 +01001223
1224 if (need_mntput && path->mnt == mnt)
1225 mntput(path->mnt);
Al Viroe9742b52016-03-05 22:04:59 -05001226 if (ret == -EISDIR || !ret)
1227 ret = 1;
Al Viro84027522015-04-22 10:30:08 -04001228 if (need_mntput)
1229 nd->flags |= LOOKUP_JUMPED;
1230 if (unlikely(ret < 0))
1231 path_put_conditional(path, nd);
1232 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233}
1234
David Howellscc53ce52011-01-14 18:45:26 +00001235int follow_down_one(struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236{
1237 struct vfsmount *mounted;
1238
Al Viro1c755af2009-04-18 14:06:57 -04001239 mounted = lookup_mnt(path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 if (mounted) {
Al Viro9393bd02009-04-18 13:58:15 -04001241 dput(path->dentry);
1242 mntput(path->mnt);
1243 path->mnt = mounted;
1244 path->dentry = dget(mounted->mnt_root);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 return 1;
1246 }
1247 return 0;
1248}
Al Viro4d359502014-03-14 12:20:17 -04001249EXPORT_SYMBOL(follow_down_one);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250
NeilBrownb8faf032014-08-04 17:06:29 +10001251static inline int managed_dentry_rcu(struct dentry *dentry)
Ian Kent62a73752011-03-25 01:51:02 +08001252{
NeilBrownb8faf032014-08-04 17:06:29 +10001253 return (dentry->d_flags & DCACHE_MANAGE_TRANSIT) ?
1254 dentry->d_op->d_manage(dentry, true) : 0;
Ian Kent62a73752011-03-25 01:51:02 +08001255}
1256
David Howells9875cf82011-01-14 18:45:21 +00001257/*
Al Viro287548e2011-05-27 06:50:06 -04001258 * Try to skip to top of mountpoint pile in rcuwalk mode. Fail if
1259 * we meet a managed dentry that would need blocking.
David Howells9875cf82011-01-14 18:45:21 +00001260 */
1261static bool __follow_mount_rcu(struct nameidata *nd, struct path *path,
Al Viro254cf582015-05-05 09:40:46 -04001262 struct inode **inode, unsigned *seqp)
David Howells9875cf82011-01-14 18:45:21 +00001263{
Ian Kent62a73752011-03-25 01:51:02 +08001264 for (;;) {
Al Viroc7105362011-11-24 18:22:03 -05001265 struct mount *mounted;
Ian Kent62a73752011-03-25 01:51:02 +08001266 /*
1267 * Don't forget we might have a non-mountpoint managed dentry
1268 * that wants to block transit.
1269 */
NeilBrownb8faf032014-08-04 17:06:29 +10001270 switch (managed_dentry_rcu(path->dentry)) {
1271 case -ECHILD:
1272 default:
David Howellsab909112011-01-14 18:46:51 +00001273 return false;
NeilBrownb8faf032014-08-04 17:06:29 +10001274 case -EISDIR:
1275 return true;
1276 case 0:
1277 break;
1278 }
Ian Kent62a73752011-03-25 01:51:02 +08001279
1280 if (!d_mountpoint(path->dentry))
NeilBrownb8faf032014-08-04 17:06:29 +10001281 return !(path->dentry->d_flags & DCACHE_NEED_AUTOMOUNT);
Ian Kent62a73752011-03-25 01:51:02 +08001282
Al Viro474279d2013-10-01 16:11:26 -04001283 mounted = __lookup_mnt(path->mnt, path->dentry);
David Howells9875cf82011-01-14 18:45:21 +00001284 if (!mounted)
1285 break;
Al Viroc7105362011-11-24 18:22:03 -05001286 path->mnt = &mounted->mnt;
1287 path->dentry = mounted->mnt.mnt_root;
Al Viroa3fbbde2011-11-07 21:21:26 +00001288 nd->flags |= LOOKUP_JUMPED;
Al Viro254cf582015-05-05 09:40:46 -04001289 *seqp = read_seqcount_begin(&path->dentry->d_seq);
Linus Torvalds59430262011-07-18 15:43:29 -07001290 /*
1291 * Update the inode too. We don't need to re-check the
1292 * dentry sequence number here after this d_inode read,
1293 * because a mount-point is always pinned.
1294 */
1295 *inode = path->dentry->d_inode;
David Howells9875cf82011-01-14 18:45:21 +00001296 }
Al Virof5be3e29122014-09-13 21:50:45 -04001297 return !read_seqretry(&mount_lock, nd->m_seq) &&
NeilBrownb8faf032014-08-04 17:06:29 +10001298 !(path->dentry->d_flags & DCACHE_NEED_AUTOMOUNT);
Al Viro287548e2011-05-27 06:50:06 -04001299}
1300
Nick Piggin31e6b012011-01-07 17:49:52 +11001301static int follow_dotdot_rcu(struct nameidata *nd)
1302{
Al Viro4023bfc2014-09-13 21:59:43 -04001303 struct inode *inode = nd->inode;
Nick Piggin31e6b012011-01-07 17:49:52 +11001304
David Howells9875cf82011-01-14 18:45:21 +00001305 while (1) {
Al Viroaed434a2015-05-12 12:22:47 -04001306 if (path_equal(&nd->path, &nd->root))
Nick Piggin31e6b012011-01-07 17:49:52 +11001307 break;
Nick Piggin31e6b012011-01-07 17:49:52 +11001308 if (nd->path.dentry != nd->path.mnt->mnt_root) {
1309 struct dentry *old = nd->path.dentry;
1310 struct dentry *parent = old->d_parent;
1311 unsigned seq;
1312
Al Viro4023bfc2014-09-13 21:59:43 -04001313 inode = parent->d_inode;
Nick Piggin31e6b012011-01-07 17:49:52 +11001314 seq = read_seqcount_begin(&parent->d_seq);
Al Viroaed434a2015-05-12 12:22:47 -04001315 if (unlikely(read_seqcount_retry(&old->d_seq, nd->seq)))
1316 return -ECHILD;
Nick Piggin31e6b012011-01-07 17:49:52 +11001317 nd->path.dentry = parent;
1318 nd->seq = seq;
Eric W. Biederman397d4252015-08-15 20:27:13 -05001319 if (unlikely(!path_connected(&nd->path)))
1320 return -ENOENT;
Nick Piggin31e6b012011-01-07 17:49:52 +11001321 break;
Al Viroaed434a2015-05-12 12:22:47 -04001322 } else {
1323 struct mount *mnt = real_mount(nd->path.mnt);
1324 struct mount *mparent = mnt->mnt_parent;
1325 struct dentry *mountpoint = mnt->mnt_mountpoint;
1326 struct inode *inode2 = mountpoint->d_inode;
1327 unsigned seq = read_seqcount_begin(&mountpoint->d_seq);
1328 if (unlikely(read_seqretry(&mount_lock, nd->m_seq)))
1329 return -ECHILD;
1330 if (&mparent->mnt == nd->path.mnt)
1331 break;
1332 /* we know that mountpoint was pinned */
1333 nd->path.dentry = mountpoint;
1334 nd->path.mnt = &mparent->mnt;
1335 inode = inode2;
1336 nd->seq = seq;
Nick Piggin31e6b012011-01-07 17:49:52 +11001337 }
Nick Piggin31e6b012011-01-07 17:49:52 +11001338 }
Al Viroaed434a2015-05-12 12:22:47 -04001339 while (unlikely(d_mountpoint(nd->path.dentry))) {
Al Virob37199e2014-03-20 15:18:22 -04001340 struct mount *mounted;
1341 mounted = __lookup_mnt(nd->path.mnt, nd->path.dentry);
Al Viroaed434a2015-05-12 12:22:47 -04001342 if (unlikely(read_seqretry(&mount_lock, nd->m_seq)))
1343 return -ECHILD;
Al Virob37199e2014-03-20 15:18:22 -04001344 if (!mounted)
1345 break;
1346 nd->path.mnt = &mounted->mnt;
1347 nd->path.dentry = mounted->mnt.mnt_root;
Al Viro4023bfc2014-09-13 21:59:43 -04001348 inode = nd->path.dentry->d_inode;
Al Virob37199e2014-03-20 15:18:22 -04001349 nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq);
Al Virob37199e2014-03-20 15:18:22 -04001350 }
Al Viro4023bfc2014-09-13 21:59:43 -04001351 nd->inode = inode;
Nick Piggin31e6b012011-01-07 17:49:52 +11001352 return 0;
1353}
1354
David Howells9875cf82011-01-14 18:45:21 +00001355/*
David Howellscc53ce52011-01-14 18:45:26 +00001356 * Follow down to the covering mount currently visible to userspace. At each
1357 * point, the filesystem owning that dentry may be queried as to whether the
1358 * caller is permitted to proceed or not.
David Howellscc53ce52011-01-14 18:45:26 +00001359 */
Al Viro7cc90cc2011-03-18 09:04:20 -04001360int follow_down(struct path *path)
David Howellscc53ce52011-01-14 18:45:26 +00001361{
1362 unsigned managed;
1363 int ret;
1364
1365 while (managed = ACCESS_ONCE(path->dentry->d_flags),
1366 unlikely(managed & DCACHE_MANAGED_DENTRY)) {
1367 /* Allow the filesystem to manage the transit without i_mutex
1368 * being held.
1369 *
1370 * We indicate to the filesystem if someone is trying to mount
1371 * something here. This gives autofs the chance to deny anyone
1372 * other than its daemon the right to mount on its
1373 * superstructure.
1374 *
1375 * The filesystem may sleep at this point.
1376 */
1377 if (managed & DCACHE_MANAGE_TRANSIT) {
1378 BUG_ON(!path->dentry->d_op);
1379 BUG_ON(!path->dentry->d_op->d_manage);
David Howellsab909112011-01-14 18:46:51 +00001380 ret = path->dentry->d_op->d_manage(
Al Viro1aed3e42011-03-18 09:09:02 -04001381 path->dentry, false);
David Howellscc53ce52011-01-14 18:45:26 +00001382 if (ret < 0)
1383 return ret == -EISDIR ? 0 : ret;
1384 }
1385
1386 /* Transit to a mounted filesystem. */
1387 if (managed & DCACHE_MOUNTED) {
1388 struct vfsmount *mounted = lookup_mnt(path);
1389 if (!mounted)
1390 break;
1391 dput(path->dentry);
1392 mntput(path->mnt);
1393 path->mnt = mounted;
1394 path->dentry = dget(mounted->mnt_root);
1395 continue;
1396 }
1397
1398 /* Don't handle automount points here */
1399 break;
1400 }
1401 return 0;
1402}
Al Viro4d359502014-03-14 12:20:17 -04001403EXPORT_SYMBOL(follow_down);
David Howellscc53ce52011-01-14 18:45:26 +00001404
1405/*
David Howells9875cf82011-01-14 18:45:21 +00001406 * Skip to top of mountpoint pile in refwalk mode for follow_dotdot()
1407 */
1408static void follow_mount(struct path *path)
1409{
1410 while (d_mountpoint(path->dentry)) {
1411 struct vfsmount *mounted = lookup_mnt(path);
1412 if (!mounted)
1413 break;
1414 dput(path->dentry);
1415 mntput(path->mnt);
1416 path->mnt = mounted;
1417 path->dentry = dget(mounted->mnt_root);
1418 }
1419}
1420
Eric W. Biedermaneedf2652016-06-02 10:29:47 -05001421static int path_parent_directory(struct path *path)
1422{
1423 struct dentry *old = path->dentry;
1424 /* rare case of legitimate dget_parent()... */
1425 path->dentry = dget_parent(path->dentry);
1426 dput(old);
1427 if (unlikely(!path_connected(path)))
1428 return -ENOENT;
1429 return 0;
1430}
1431
Eric W. Biederman397d4252015-08-15 20:27:13 -05001432static int follow_dotdot(struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433{
1434 while(1) {
Al Viro2a737872009-04-07 11:49:53 -04001435 if (nd->path.dentry == nd->root.dentry &&
1436 nd->path.mnt == nd->root.mnt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 break;
1438 }
Jan Blunck4ac91372008-02-14 19:34:32 -08001439 if (nd->path.dentry != nd->path.mnt->mnt_root) {
Eric W. Biedermaneedf2652016-06-02 10:29:47 -05001440 int ret = path_parent_directory(&nd->path);
1441 if (ret)
1442 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 break;
1444 }
Al Viro3088dd72010-01-30 15:47:29 -05001445 if (!follow_up(&nd->path))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 }
Al Viro79ed0222009-04-18 13:59:41 -04001448 follow_mount(&nd->path);
Nick Piggin31e6b012011-01-07 17:49:52 +11001449 nd->inode = nd->path.dentry->d_inode;
Eric W. Biederman397d4252015-08-15 20:27:13 -05001450 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451}
1452
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453/*
Miklos Szeredibad61182012-03-26 12:54:24 +02001454 * This looks up the name in dcache, possibly revalidates the old dentry and
1455 * allocates a new one if not found or not valid. In the need_lookup argument
1456 * returns whether i_op->lookup is necessary.
Nick Pigginbaa03892010-08-18 04:37:31 +10001457 */
Al Viroe3c13922016-03-06 14:03:27 -05001458static struct dentry *lookup_dcache(const struct qstr *name,
1459 struct dentry *dir,
Al Viro6c51e512016-03-05 20:09:32 -05001460 unsigned int flags)
Nick Pigginbaa03892010-08-18 04:37:31 +10001461{
Nick Pigginbaa03892010-08-18 04:37:31 +10001462 struct dentry *dentry;
Miklos Szeredibad61182012-03-26 12:54:24 +02001463 int error;
Nick Pigginbaa03892010-08-18 04:37:31 +10001464
Miklos Szeredibad61182012-03-26 12:54:24 +02001465 dentry = d_lookup(dir, name);
1466 if (dentry) {
Jeff Layton39e3c952012-11-28 11:30:53 -05001467 if (dentry->d_flags & DCACHE_OP_REVALIDATE) {
Al Viro201f9562012-06-22 12:42:10 +04001468 error = d_revalidate(dentry, flags);
Miklos Szeredibad61182012-03-26 12:54:24 +02001469 if (unlikely(error <= 0)) {
Al Viro74ff0ff2016-03-05 22:37:46 -05001470 if (!error)
Eric W. Biederman5542aa22014-02-13 09:46:25 -08001471 d_invalidate(dentry);
Al Viro74ff0ff2016-03-05 22:37:46 -05001472 dput(dentry);
1473 return ERR_PTR(error);
Miklos Szeredibad61182012-03-26 12:54:24 +02001474 }
1475 }
1476 }
Nick Pigginbaa03892010-08-18 04:37:31 +10001477 return dentry;
1478}
1479
1480/*
J. Bruce Fields13a2c3b2013-10-23 16:09:16 -04001481 * Call i_op->lookup on the dentry. The dentry must be negative and
1482 * unhashed.
Miklos Szeredibad61182012-03-26 12:54:24 +02001483 *
1484 * dir->d_inode->i_mutex must be held
Josef Bacik44396f42011-05-31 11:58:49 -04001485 */
Miklos Szeredibad61182012-03-26 12:54:24 +02001486static struct dentry *lookup_real(struct inode *dir, struct dentry *dentry,
Al Viro72bd8662012-06-10 17:17:17 -04001487 unsigned int flags)
Josef Bacik44396f42011-05-31 11:58:49 -04001488{
Josef Bacik44396f42011-05-31 11:58:49 -04001489 struct dentry *old;
1490
1491 /* Don't create child dentry for a dead directory. */
Miklos Szeredibad61182012-03-26 12:54:24 +02001492 if (unlikely(IS_DEADDIR(dir))) {
Miklos Szeredie188dc02012-02-03 14:25:18 +01001493 dput(dentry);
Josef Bacik44396f42011-05-31 11:58:49 -04001494 return ERR_PTR(-ENOENT);
Miklos Szeredie188dc02012-02-03 14:25:18 +01001495 }
Josef Bacik44396f42011-05-31 11:58:49 -04001496
Al Viro72bd8662012-06-10 17:17:17 -04001497 old = dir->i_op->lookup(dir, dentry, flags);
Josef Bacik44396f42011-05-31 11:58:49 -04001498 if (unlikely(old)) {
1499 dput(dentry);
1500 dentry = old;
1501 }
1502 return dentry;
1503}
1504
Al Viroe3c13922016-03-06 14:03:27 -05001505static struct dentry *__lookup_hash(const struct qstr *name,
Al Viro72bd8662012-06-10 17:17:17 -04001506 struct dentry *base, unsigned int flags)
Al Viroa3255542012-03-30 14:41:51 -04001507{
Al Viro6c51e512016-03-05 20:09:32 -05001508 struct dentry *dentry = lookup_dcache(name, base, flags);
Al Viroa3255542012-03-30 14:41:51 -04001509
Al Viro6c51e512016-03-05 20:09:32 -05001510 if (dentry)
Miklos Szeredibad61182012-03-26 12:54:24 +02001511 return dentry;
Al Viroa3255542012-03-30 14:41:51 -04001512
Al Viro6c51e512016-03-05 20:09:32 -05001513 dentry = d_alloc(base, name);
1514 if (unlikely(!dentry))
1515 return ERR_PTR(-ENOMEM);
1516
Al Viro72bd8662012-06-10 17:17:17 -04001517 return lookup_real(base->d_inode, dentry, flags);
Al Viroa3255542012-03-30 14:41:51 -04001518}
1519
Al Viroe97cdc82013-01-24 18:16:00 -05001520static int lookup_fast(struct nameidata *nd,
Al Viro254cf582015-05-05 09:40:46 -04001521 struct path *path, struct inode **inode,
1522 unsigned *seqp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523{
Jan Blunck4ac91372008-02-14 19:34:32 -08001524 struct vfsmount *mnt = nd->path.mnt;
Nick Piggin31e6b012011-01-07 17:49:52 +11001525 struct dentry *dentry, *parent = nd->path.dentry;
Al Viro5a18fff2011-03-11 04:44:53 -05001526 int status = 1;
David Howells9875cf82011-01-14 18:45:21 +00001527 int err;
1528
Al Viro3cac2602009-08-13 18:27:43 +04001529 /*
Nick Pigginb04f7842010-08-18 04:37:34 +10001530 * Rename seqlock is not required here because in the off chance
Al Viro5d0f49c2016-03-05 21:32:53 -05001531 * of a false negative due to a concurrent rename, the caller is
1532 * going to fall back to non-racy lookup.
Nick Pigginb04f7842010-08-18 04:37:34 +10001533 */
Nick Piggin31e6b012011-01-07 17:49:52 +11001534 if (nd->flags & LOOKUP_RCU) {
1535 unsigned seq;
Al Viro766c4cb2015-05-07 19:24:57 -04001536 bool negative;
Linus Torvaldsda53be12013-05-21 15:22:44 -07001537 dentry = __d_lookup_rcu(parent, &nd->last, &seq);
Al Viro5d0f49c2016-03-05 21:32:53 -05001538 if (unlikely(!dentry)) {
1539 if (unlazy_walk(nd, NULL, 0))
1540 return -ECHILD;
Al Viroe9742b52016-03-05 22:04:59 -05001541 return 0;
Al Viro5d0f49c2016-03-05 21:32:53 -05001542 }
Al Viro5a18fff2011-03-11 04:44:53 -05001543
Linus Torvalds12f8ad42012-05-04 14:59:14 -07001544 /*
1545 * This sequence count validates that the inode matches
1546 * the dentry name information from lookup.
1547 */
David Howells63afdfc2015-05-06 15:59:00 +01001548 *inode = d_backing_inode(dentry);
Al Viro766c4cb2015-05-07 19:24:57 -04001549 negative = d_is_negative(dentry);
Al Viro5d0f49c2016-03-05 21:32:53 -05001550 if (unlikely(read_seqcount_retry(&dentry->d_seq, seq)))
Linus Torvalds12f8ad42012-05-04 14:59:14 -07001551 return -ECHILD;
1552
1553 /*
1554 * This sequence count validates that the parent had no
1555 * changes while we did the lookup of the dentry above.
1556 *
1557 * The memory barrier in read_seqcount_begin of child is
1558 * enough, we can use __read_seqcount_retry here.
1559 */
Al Viro5d0f49c2016-03-05 21:32:53 -05001560 if (unlikely(__read_seqcount_retry(&parent->d_seq, nd->seq)))
Nick Piggin31e6b012011-01-07 17:49:52 +11001561 return -ECHILD;
Al Viro5a18fff2011-03-11 04:44:53 -05001562
Al Viro254cf582015-05-05 09:40:46 -04001563 *seqp = seq;
Al Viro5d0f49c2016-03-05 21:32:53 -05001564 if (unlikely(dentry->d_flags & DCACHE_OP_REVALIDATE))
Al Viro4ce16ef32012-06-10 16:10:59 -04001565 status = d_revalidate(dentry, nd->flags);
Al Viro5d0f49c2016-03-05 21:32:53 -05001566 if (unlikely(status <= 0)) {
1567 if (unlazy_walk(nd, dentry, seq))
1568 return -ECHILD;
1569 if (status == -ECHILD)
1570 status = d_revalidate(dentry, nd->flags);
1571 } else {
1572 /*
1573 * Note: do negative dentry check after revalidation in
1574 * case that drops it.
1575 */
1576 if (unlikely(negative))
1577 return -ENOENT;
1578 path->mnt = mnt;
1579 path->dentry = dentry;
1580 if (likely(__follow_mount_rcu(nd, path, inode, seqp)))
Al Viroe9742b52016-03-05 22:04:59 -05001581 return 1;
Al Viro5d0f49c2016-03-05 21:32:53 -05001582 if (unlazy_walk(nd, dentry, seq))
1583 return -ECHILD;
Al Viro24643082011-02-15 01:26:22 -05001584 }
Al Viro5a18fff2011-03-11 04:44:53 -05001585 } else {
Al Viroe97cdc82013-01-24 18:16:00 -05001586 dentry = __d_lookup(parent, &nd->last);
Al Viro5d0f49c2016-03-05 21:32:53 -05001587 if (unlikely(!dentry))
Al Viroe9742b52016-03-05 22:04:59 -05001588 return 0;
Al Viro5d0f49c2016-03-05 21:32:53 -05001589 if (unlikely(dentry->d_flags & DCACHE_OP_REVALIDATE))
1590 status = d_revalidate(dentry, nd->flags);
Nick Piggin31e6b012011-01-07 17:49:52 +11001591 }
Al Viro5a18fff2011-03-11 04:44:53 -05001592 if (unlikely(status <= 0)) {
Al Viroe9742b52016-03-05 22:04:59 -05001593 if (!status)
Al Viro5d0f49c2016-03-05 21:32:53 -05001594 d_invalidate(dentry);
Eric W. Biederman5542aa22014-02-13 09:46:25 -08001595 dput(dentry);
Al Viro5d0f49c2016-03-05 21:32:53 -05001596 return status;
Al Viro5a18fff2011-03-11 04:44:53 -05001597 }
Al Viro766c4cb2015-05-07 19:24:57 -04001598 if (unlikely(d_is_negative(dentry))) {
1599 dput(dentry);
1600 return -ENOENT;
1601 }
Al Viro5d0f49c2016-03-05 21:32:53 -05001602
David Howells9875cf82011-01-14 18:45:21 +00001603 path->mnt = mnt;
1604 path->dentry = dentry;
NeilBrown756daf22015-03-23 13:37:38 +11001605 err = follow_managed(path, nd);
Al Viroe9742b52016-03-05 22:04:59 -05001606 if (likely(err > 0))
David Howells63afdfc2015-05-06 15:59:00 +01001607 *inode = d_backing_inode(path->dentry);
Al Viro84027522015-04-22 10:30:08 -04001608 return err;
Miklos Szeredi697f5142012-05-21 17:30:05 +02001609}
1610
1611/* Fast lookup failed, do it the slow way */
Al Viroe3c13922016-03-06 14:03:27 -05001612static struct dentry *lookup_slow(const struct qstr *name,
1613 struct dentry *dir,
1614 unsigned int flags)
Miklos Szeredi697f5142012-05-21 17:30:05 +02001615{
Al Viro94bdd652016-04-15 02:42:04 -04001616 struct dentry *dentry = ERR_PTR(-ENOENT), *old;
Al Viro19363862016-04-14 19:33:34 -04001617 struct inode *inode = dir->d_inode;
Al Virod9171b92016-04-15 03:33:13 -04001618 DECLARE_WAIT_QUEUE_HEAD_ONSTACK(wq);
Al Viro19363862016-04-14 19:33:34 -04001619
Al Viro9902af72016-04-15 15:08:36 -04001620 inode_lock_shared(inode);
Al Viro19363862016-04-14 19:33:34 -04001621 /* Don't go there if it's already dead */
Al Viro94bdd652016-04-15 02:42:04 -04001622 if (unlikely(IS_DEADDIR(inode)))
1623 goto out;
1624again:
Al Virod9171b92016-04-15 03:33:13 -04001625 dentry = d_alloc_parallel(dir, name, &wq);
Al Viro94bdd652016-04-15 02:42:04 -04001626 if (IS_ERR(dentry))
1627 goto out;
1628 if (unlikely(!d_in_lookup(dentry))) {
Al Viro949a8522016-03-06 14:20:52 -05001629 if ((dentry->d_flags & DCACHE_OP_REVALIDATE) &&
1630 !(flags & LOOKUP_NO_REVAL)) {
1631 int error = d_revalidate(dentry, flags);
1632 if (unlikely(error <= 0)) {
Al Viro94bdd652016-04-15 02:42:04 -04001633 if (!error) {
Al Viro949a8522016-03-06 14:20:52 -05001634 d_invalidate(dentry);
Al Viro94bdd652016-04-15 02:42:04 -04001635 dput(dentry);
1636 goto again;
1637 }
Al Viro949a8522016-03-06 14:20:52 -05001638 dput(dentry);
1639 dentry = ERR_PTR(error);
1640 }
1641 }
Al Viro94bdd652016-04-15 02:42:04 -04001642 } else {
1643 old = inode->i_op->lookup(inode, dentry, flags);
1644 d_lookup_done(dentry);
1645 if (unlikely(old)) {
1646 dput(dentry);
1647 dentry = old;
Al Viro949a8522016-03-06 14:20:52 -05001648 }
1649 }
Al Viro94bdd652016-04-15 02:42:04 -04001650out:
Al Viro9902af72016-04-15 15:08:36 -04001651 inode_unlock_shared(inode);
Al Viroe3c13922016-03-06 14:03:27 -05001652 return dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653}
1654
Al Viro52094c82011-02-21 21:34:47 -05001655static inline int may_lookup(struct nameidata *nd)
1656{
1657 if (nd->flags & LOOKUP_RCU) {
Al Viro4ad5abb2011-06-20 19:57:03 -04001658 int err = inode_permission(nd->inode, MAY_EXEC|MAY_NOT_BLOCK);
Al Viro52094c82011-02-21 21:34:47 -05001659 if (err != -ECHILD)
1660 return err;
Al Viro6e9918b2015-05-05 09:26:05 -04001661 if (unlazy_walk(nd, NULL, 0))
Al Viro52094c82011-02-21 21:34:47 -05001662 return -ECHILD;
1663 }
Al Viro4ad5abb2011-06-20 19:57:03 -04001664 return inode_permission(nd->inode, MAY_EXEC);
Al Viro52094c82011-02-21 21:34:47 -05001665}
1666
Al Viro9856fa12011-03-04 14:22:06 -05001667static inline int handle_dots(struct nameidata *nd, int type)
1668{
1669 if (type == LAST_DOTDOT) {
Al Viro9e6697e2015-12-05 20:07:21 -05001670 if (!nd->root.mnt)
1671 set_root(nd);
Al Viro9856fa12011-03-04 14:22:06 -05001672 if (nd->flags & LOOKUP_RCU) {
Al Viro70291ae2015-05-04 07:53:00 -04001673 return follow_dotdot_rcu(nd);
Al Viro9856fa12011-03-04 14:22:06 -05001674 } else
Eric W. Biederman397d4252015-08-15 20:27:13 -05001675 return follow_dotdot(nd);
Al Viro9856fa12011-03-04 14:22:06 -05001676 }
1677 return 0;
1678}
1679
Al Viro181548c2015-05-07 19:54:34 -04001680static int pick_link(struct nameidata *nd, struct path *link,
1681 struct inode *inode, unsigned seq)
Al Virod63ff282015-05-04 18:13:23 -04001682{
Al Viro626de992015-05-04 18:26:59 -04001683 int error;
Al Viro1cf26652015-05-06 16:01:56 -04001684 struct saved *last;
NeilBrown756daf22015-03-23 13:37:38 +11001685 if (unlikely(nd->total_link_count++ >= MAXSYMLINKS)) {
Al Viro626de992015-05-04 18:26:59 -04001686 path_to_nameidata(link, nd);
1687 return -ELOOP;
1688 }
Al Virobc40aee2015-05-09 13:04:24 -04001689 if (!(nd->flags & LOOKUP_RCU)) {
Al Viro79733872015-05-09 12:55:43 -04001690 if (link->mnt == nd->path.mnt)
1691 mntget(link->mnt);
Al Virod63ff282015-05-04 18:13:23 -04001692 }
Al Viro626de992015-05-04 18:26:59 -04001693 error = nd_alloc_stack(nd);
1694 if (unlikely(error)) {
Al Virobc40aee2015-05-09 13:04:24 -04001695 if (error == -ECHILD) {
1696 if (unlikely(unlazy_link(nd, link, seq)))
1697 return -ECHILD;
1698 error = nd_alloc_stack(nd);
1699 }
1700 if (error) {
1701 path_put(link);
1702 return error;
1703 }
Al Viro626de992015-05-04 18:26:59 -04001704 }
1705
Al Viroab104922015-05-10 11:50:01 -04001706 last = nd->stack + nd->depth++;
Al Viro1cf26652015-05-06 16:01:56 -04001707 last->link = *link;
Al Virofceef392015-12-29 15:58:39 -05001708 clear_delayed_call(&last->done);
1709 nd->link_inode = inode;
Al Viro0450b2d2015-05-08 13:23:53 -04001710 last->seq = seq;
Al Virod63ff282015-05-04 18:13:23 -04001711 return 1;
1712}
1713
Linus Torvalds3ddcd052011-08-06 22:45:50 -07001714/*
1715 * Do we need to follow links? We _really_ want to be able
1716 * to do this check without having to look at inode->i_op,
1717 * so we keep a cache of "no, this doesn't need follow_link"
1718 * for the common case.
1719 */
Al Viro254cf582015-05-05 09:40:46 -04001720static inline int should_follow_link(struct nameidata *nd, struct path *link,
Al Viro181548c2015-05-07 19:54:34 -04001721 int follow,
1722 struct inode *inode, unsigned seq)
Linus Torvalds3ddcd052011-08-06 22:45:50 -07001723{
Al Virod63ff282015-05-04 18:13:23 -04001724 if (likely(!d_is_symlink(link->dentry)))
1725 return 0;
1726 if (!follow)
1727 return 0;
Al Viroa7f77542016-02-27 19:31:01 -05001728 /* make sure that d_is_symlink above matches inode */
1729 if (nd->flags & LOOKUP_RCU) {
1730 if (read_seqcount_retry(&link->dentry->d_seq, seq))
1731 return -ECHILD;
1732 }
Al Viro181548c2015-05-07 19:54:34 -04001733 return pick_link(nd, link, inode, seq);
Linus Torvalds3ddcd052011-08-06 22:45:50 -07001734}
1735
Al Viro4693a542015-05-04 17:47:11 -04001736enum {WALK_GET = 1, WALK_PUT = 2};
1737
1738static int walk_component(struct nameidata *nd, int flags)
Al Viroce57dfc2011-03-13 19:58:58 -04001739{
Al Virocaa85632015-04-22 17:52:47 -04001740 struct path path;
Al Viroce57dfc2011-03-13 19:58:58 -04001741 struct inode *inode;
Al Viro254cf582015-05-05 09:40:46 -04001742 unsigned seq;
Al Viroce57dfc2011-03-13 19:58:58 -04001743 int err;
1744 /*
1745 * "." and ".." are special - ".." especially so because it has
1746 * to be able to know about the current root directory and
1747 * parent relationships.
1748 */
Al Viro4693a542015-05-04 17:47:11 -04001749 if (unlikely(nd->last_type != LAST_NORM)) {
1750 err = handle_dots(nd, nd->last_type);
1751 if (flags & WALK_PUT)
1752 put_link(nd);
1753 return err;
1754 }
Al Viro254cf582015-05-05 09:40:46 -04001755 err = lookup_fast(nd, &path, &inode, &seq);
Al Viroe9742b52016-03-05 22:04:59 -05001756 if (unlikely(err <= 0)) {
Miklos Szeredi697f5142012-05-21 17:30:05 +02001757 if (err < 0)
Al Virof0a9ba72015-05-04 07:59:30 -04001758 return err;
Al Viroe3c13922016-03-06 14:03:27 -05001759 path.dentry = lookup_slow(&nd->last, nd->path.dentry,
1760 nd->flags);
1761 if (IS_ERR(path.dentry))
1762 return PTR_ERR(path.dentry);
Al Viro7500c382016-03-31 00:23:05 -04001763
Al Viroe3c13922016-03-06 14:03:27 -05001764 path.mnt = nd->path.mnt;
1765 err = follow_managed(&path, nd);
1766 if (unlikely(err < 0))
Al Virof0a9ba72015-05-04 07:59:30 -04001767 return err;
Miklos Szeredi697f5142012-05-21 17:30:05 +02001768
Al Viro7500c382016-03-31 00:23:05 -04001769 if (unlikely(d_is_negative(path.dentry))) {
1770 path_to_nameidata(&path, nd);
1771 return -ENOENT;
1772 }
1773
Al Viro254cf582015-05-05 09:40:46 -04001774 seq = 0; /* we are already out of RCU mode */
Al Virod4565642016-02-27 19:23:16 -05001775 inode = d_backing_inode(path.dentry);
Al Viroce57dfc2011-03-13 19:58:58 -04001776 }
Miklos Szeredi697f5142012-05-21 17:30:05 +02001777
Al Viro4693a542015-05-04 17:47:11 -04001778 if (flags & WALK_PUT)
1779 put_link(nd);
Al Viro181548c2015-05-07 19:54:34 -04001780 err = should_follow_link(nd, &path, flags & WALK_GET, inode, seq);
Al Virod63ff282015-05-04 18:13:23 -04001781 if (unlikely(err))
1782 return err;
Al Virocaa85632015-04-22 17:52:47 -04001783 path_to_nameidata(&path, nd);
Al Viroce57dfc2011-03-13 19:58:58 -04001784 nd->inode = inode;
Al Viro254cf582015-05-05 09:40:46 -04001785 nd->seq = seq;
Al Viroce57dfc2011-03-13 19:58:58 -04001786 return 0;
1787}
1788
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789/*
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001790 * We can do the critical dentry name comparison and hashing
1791 * operations one word at a time, but we are limited to:
1792 *
1793 * - Architectures with fast unaligned word accesses. We could
1794 * do a "get_unaligned()" if this helps and is sufficiently
1795 * fast.
1796 *
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001797 * - non-CONFIG_DEBUG_PAGEALLOC configurations (so that we
1798 * do not trap on the (extremely unlikely) case of a page
1799 * crossing operation.
1800 *
1801 * - Furthermore, we need an efficient 64-bit compile for the
1802 * 64-bit case in order to generate the "number of bytes in
1803 * the final mask". Again, that could be replaced with a
1804 * efficient population count instruction or similar.
1805 */
1806#ifdef CONFIG_DCACHE_WORD_ACCESS
1807
Linus Torvaldsf68e5562012-04-06 13:54:56 -07001808#include <asm/word-at-a-time.h>
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001809
George Spelvin468a9422016-05-26 22:11:51 -04001810#ifdef HASH_MIX
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001811
George Spelvin468a9422016-05-26 22:11:51 -04001812/* Architecture provides HASH_MIX and fold_hash() in <asm/hash.h> */
1813
1814#elif defined(CONFIG_64BIT)
George Spelvin2a18da7a2016-05-23 07:43:58 -04001815/*
1816 * Register pressure in the mixing function is an issue, particularly
1817 * on 32-bit x86, but almost any function requires one state value and
1818 * one temporary. Instead, use a function designed for two state values
1819 * and no temporaries.
1820 *
1821 * This function cannot create a collision in only two iterations, so
1822 * we have two iterations to achieve avalanche. In those two iterations,
1823 * we have six layers of mixing, which is enough to spread one bit's
1824 * influence out to 2^6 = 64 state bits.
1825 *
1826 * Rotate constants are scored by considering either 64 one-bit input
1827 * deltas or 64*63/2 = 2016 two-bit input deltas, and finding the
1828 * probability of that delta causing a change to each of the 128 output
1829 * bits, using a sample of random initial states.
1830 *
1831 * The Shannon entropy of the computed probabilities is then summed
1832 * to produce a score. Ideally, any input change has a 50% chance of
1833 * toggling any given output bit.
1834 *
1835 * Mixing scores (in bits) for (12,45):
1836 * Input delta: 1-bit 2-bit
1837 * 1 round: 713.3 42542.6
1838 * 2 rounds: 2753.7 140389.8
1839 * 3 rounds: 5954.1 233458.2
1840 * 4 rounds: 7862.6 256672.2
1841 * Perfect: 8192 258048
1842 * (64*128) (64*63/2 * 128)
1843 */
1844#define HASH_MIX(x, y, a) \
1845 ( x ^= (a), \
1846 y ^= x, x = rol64(x,12),\
1847 x += y, y = rol64(y,45),\
1848 y *= 9 )
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001849
George Spelvin0fed3ac2016-05-02 06:31:01 -04001850/*
George Spelvin2a18da7a2016-05-23 07:43:58 -04001851 * Fold two longs into one 32-bit hash value. This must be fast, but
1852 * latency isn't quite as critical, as there is a fair bit of additional
1853 * work done before the hash value is used.
George Spelvin0fed3ac2016-05-02 06:31:01 -04001854 */
George Spelvin2a18da7a2016-05-23 07:43:58 -04001855static inline unsigned int fold_hash(unsigned long x, unsigned long y)
George Spelvin0fed3ac2016-05-02 06:31:01 -04001856{
George Spelvin2a18da7a2016-05-23 07:43:58 -04001857 y ^= x * GOLDEN_RATIO_64;
1858 y *= GOLDEN_RATIO_64;
1859 return y >> 32;
George Spelvin0fed3ac2016-05-02 06:31:01 -04001860}
1861
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001862#else /* 32-bit case */
1863
George Spelvin2a18da7a2016-05-23 07:43:58 -04001864/*
1865 * Mixing scores (in bits) for (7,20):
1866 * Input delta: 1-bit 2-bit
1867 * 1 round: 330.3 9201.6
1868 * 2 rounds: 1246.4 25475.4
1869 * 3 rounds: 1907.1 31295.1
1870 * 4 rounds: 2042.3 31718.6
1871 * Perfect: 2048 31744
1872 * (32*64) (32*31/2 * 64)
1873 */
1874#define HASH_MIX(x, y, a) \
1875 ( x ^= (a), \
1876 y ^= x, x = rol32(x, 7),\
1877 x += y, y = rol32(y,20),\
1878 y *= 9 )
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001879
George Spelvin2a18da7a2016-05-23 07:43:58 -04001880static inline unsigned int fold_hash(unsigned long x, unsigned long y)
George Spelvin0fed3ac2016-05-02 06:31:01 -04001881{
George Spelvin2a18da7a2016-05-23 07:43:58 -04001882 /* Use arch-optimized multiply if one exists */
1883 return __hash_32(y ^ __hash_32(x));
George Spelvin0fed3ac2016-05-02 06:31:01 -04001884}
1885
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001886#endif
1887
George Spelvin2a18da7a2016-05-23 07:43:58 -04001888/*
1889 * Return the hash of a string of known length. This is carfully
1890 * designed to match hash_name(), which is the more critical function.
1891 * In particular, we must end by hashing a final word containing 0..7
1892 * payload bytes, to match the way that hash_name() iterates until it
1893 * finds the delimiter after the name.
1894 */
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001895unsigned int full_name_hash(const char *name, unsigned int len)
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001896{
George Spelvin2a18da7a2016-05-23 07:43:58 -04001897 unsigned long a, x = 0, y = 0;
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001898
1899 for (;;) {
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001900 if (!len)
1901 goto done;
Linus Torvaldse419b4c2012-05-03 10:16:43 -07001902 a = load_unaligned_zeropad(name);
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001903 if (len < sizeof(unsigned long))
1904 break;
George Spelvin2a18da7a2016-05-23 07:43:58 -04001905 HASH_MIX(x, y, a);
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001906 name += sizeof(unsigned long);
1907 len -= sizeof(unsigned long);
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001908 }
George Spelvin2a18da7a2016-05-23 07:43:58 -04001909 x ^= a & bytemask_from_count(len);
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001910done:
George Spelvin2a18da7a2016-05-23 07:43:58 -04001911 return fold_hash(x, y);
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001912}
1913EXPORT_SYMBOL(full_name_hash);
1914
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001915/* Return the "hash_len" (hash and length) of a null-terminated string */
1916u64 hashlen_string(const char *name)
1917{
George Spelvin2a18da7a2016-05-23 07:43:58 -04001918 unsigned long a = 0, x = 0, y = 0, adata, mask, len;
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001919 const struct word_at_a_time constants = WORD_AT_A_TIME_CONSTANTS;
1920
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001921 len = -sizeof(unsigned long);
1922 do {
George Spelvin2a18da7a2016-05-23 07:43:58 -04001923 HASH_MIX(x, y, a);
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001924 len += sizeof(unsigned long);
1925 a = load_unaligned_zeropad(name+len);
1926 } while (!has_zero(a, &adata, &constants));
1927
1928 adata = prep_zero_mask(a, adata, &constants);
1929 mask = create_zero_mask(adata);
George Spelvin2a18da7a2016-05-23 07:43:58 -04001930 x ^= a & zero_bytemask(mask);
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001931
George Spelvin2a18da7a2016-05-23 07:43:58 -04001932 return hashlen_create(fold_hash(x, y), len + find_zero(mask));
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001933}
1934EXPORT_SYMBOL(hashlen_string);
1935
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001936/*
1937 * Calculate the length and hash of the path component, and
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07001938 * return the "hash_len" as the result.
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001939 */
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07001940static inline u64 hash_name(const char *name)
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001941{
George Spelvin2a18da7a2016-05-23 07:43:58 -04001942 unsigned long a = 0, b, x = 0, y = 0, adata, bdata, mask, len;
Linus Torvalds36126f82012-05-26 10:43:17 -07001943 const struct word_at_a_time constants = WORD_AT_A_TIME_CONSTANTS;
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001944
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001945 len = -sizeof(unsigned long);
1946 do {
George Spelvin2a18da7a2016-05-23 07:43:58 -04001947 HASH_MIX(x, y, a);
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001948 len += sizeof(unsigned long);
Linus Torvaldse419b4c2012-05-03 10:16:43 -07001949 a = load_unaligned_zeropad(name+len);
Linus Torvalds36126f82012-05-26 10:43:17 -07001950 b = a ^ REPEAT_BYTE('/');
1951 } while (!(has_zero(a, &adata, &constants) | has_zero(b, &bdata, &constants)));
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001952
Linus Torvalds36126f82012-05-26 10:43:17 -07001953 adata = prep_zero_mask(a, adata, &constants);
1954 bdata = prep_zero_mask(b, bdata, &constants);
Linus Torvalds36126f82012-05-26 10:43:17 -07001955 mask = create_zero_mask(adata | bdata);
George Spelvin2a18da7a2016-05-23 07:43:58 -04001956 x ^= a & zero_bytemask(mask);
Linus Torvalds36126f82012-05-26 10:43:17 -07001957
George Spelvin2a18da7a2016-05-23 07:43:58 -04001958 return hashlen_create(fold_hash(x, y), len + find_zero(mask));
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001959}
1960
George Spelvin2a18da7a2016-05-23 07:43:58 -04001961#else /* !CONFIG_DCACHE_WORD_ACCESS: Slow, byte-at-a-time version */
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001962
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001963/* Return the hash of a string of known length */
1964unsigned int full_name_hash(const char *name, unsigned int len)
Linus Torvalds0145acc2012-03-02 14:32:59 -08001965{
1966 unsigned long hash = init_name_hash();
1967 while (len--)
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001968 hash = partial_name_hash((unsigned char)*name++, hash);
Linus Torvalds0145acc2012-03-02 14:32:59 -08001969 return end_name_hash(hash);
1970}
Linus Torvaldsae942ae2012-03-02 19:40:57 -08001971EXPORT_SYMBOL(full_name_hash);
Linus Torvalds0145acc2012-03-02 14:32:59 -08001972
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001973/* Return the "hash_len" (hash and length) of a null-terminated string */
George Spelvinf2a031b2016-05-29 01:26:41 -04001974u64 hashlen_string(const char *name)
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001975{
1976 unsigned long hash = init_name_hash();
1977 unsigned long len = 0, c;
1978
1979 c = (unsigned char)*name;
George Spelvine0ab7af2016-05-29 08:05:56 -04001980 while (c) {
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001981 len++;
1982 hash = partial_name_hash(c, hash);
1983 c = (unsigned char)name[len];
George Spelvine0ab7af2016-05-29 08:05:56 -04001984 }
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001985 return hashlen_create(end_name_hash(hash), len);
1986}
George Spelvinf2a031b2016-05-29 01:26:41 -04001987EXPORT_SYMBOL(hashlen_string);
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001988
Linus Torvalds3ddcd052011-08-06 22:45:50 -07001989/*
Linus Torvalds200e9ef2012-03-02 14:49:24 -08001990 * We know there's a real path component here of at least
1991 * one character.
1992 */
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07001993static inline u64 hash_name(const char *name)
Linus Torvalds200e9ef2012-03-02 14:49:24 -08001994{
1995 unsigned long hash = init_name_hash();
1996 unsigned long len = 0, c;
1997
1998 c = (unsigned char)*name;
1999 do {
2000 len++;
2001 hash = partial_name_hash(c, hash);
2002 c = (unsigned char)name[len];
2003 } while (c && c != '/');
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07002004 return hashlen_create(end_name_hash(hash), len);
Linus Torvalds200e9ef2012-03-02 14:49:24 -08002005}
2006
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08002007#endif
2008
Linus Torvalds200e9ef2012-03-02 14:49:24 -08002009/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010 * Name resolution.
Prasanna Medaea3834d2005-04-29 16:00:17 +01002011 * This is the basic name resolution function, turning a pathname into
2012 * the final dentry. We expect 'base' to be positive and a directory.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013 *
Prasanna Medaea3834d2005-04-29 16:00:17 +01002014 * Returns 0 and nd will have valid dentry and mnt on success.
2015 * Returns error and drops reference to input namei data on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016 */
Al Viro6de88d72009-08-09 01:41:57 +04002017static int link_path_walk(const char *name, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019 int err;
Al Viro32cd7462015-04-18 20:30:49 -04002020
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021 while (*name=='/')
2022 name++;
2023 if (!*name)
Al Viro9e18f102015-04-18 20:44:34 -04002024 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026 /* At this point we know we have a real path component. */
2027 for(;;) {
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07002028 u64 hash_len;
Al Virofe479a52011-02-22 15:10:03 -05002029 int type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030
Al Viro52094c82011-02-21 21:34:47 -05002031 err = may_lookup(nd);
George Spelvin2a18da7a2016-05-23 07:43:58 -04002032 if (err)
Al Viro3595e232015-05-09 16:54:45 -04002033 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07002035 hash_len = hash_name(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036
Al Virofe479a52011-02-22 15:10:03 -05002037 type = LAST_NORM;
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07002038 if (name[0] == '.') switch (hashlen_len(hash_len)) {
Al Virofe479a52011-02-22 15:10:03 -05002039 case 2:
Linus Torvalds200e9ef2012-03-02 14:49:24 -08002040 if (name[1] == '.') {
Al Virofe479a52011-02-22 15:10:03 -05002041 type = LAST_DOTDOT;
Al Viro16c2cd72011-02-22 15:50:10 -05002042 nd->flags |= LOOKUP_JUMPED;
2043 }
Al Virofe479a52011-02-22 15:10:03 -05002044 break;
2045 case 1:
2046 type = LAST_DOT;
2047 }
Al Viro5a202bc2011-03-08 14:17:44 -05002048 if (likely(type == LAST_NORM)) {
2049 struct dentry *parent = nd->path.dentry;
Al Viro16c2cd72011-02-22 15:50:10 -05002050 nd->flags &= ~LOOKUP_JUMPED;
Al Viro5a202bc2011-03-08 14:17:44 -05002051 if (unlikely(parent->d_flags & DCACHE_OP_HASH)) {
James Hogana060dc52014-09-16 13:07:35 +01002052 struct qstr this = { { .hash_len = hash_len }, .name = name };
Linus Torvaldsda53be12013-05-21 15:22:44 -07002053 err = parent->d_op->d_hash(parent, &this);
Al Viro5a202bc2011-03-08 14:17:44 -05002054 if (err < 0)
Al Viro3595e232015-05-09 16:54:45 -04002055 return err;
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07002056 hash_len = this.hash_len;
2057 name = this.name;
Al Viro5a202bc2011-03-08 14:17:44 -05002058 }
2059 }
Al Virofe479a52011-02-22 15:10:03 -05002060
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07002061 nd->last.hash_len = hash_len;
2062 nd->last.name = name;
Al Viro5f4a6a62013-01-24 18:04:22 -05002063 nd->last_type = type;
2064
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07002065 name += hashlen_len(hash_len);
2066 if (!*name)
Al Virobdf6cbf2015-04-18 20:21:40 -04002067 goto OK;
Linus Torvalds200e9ef2012-03-02 14:49:24 -08002068 /*
2069 * If it wasn't NUL, we know it was '/'. Skip that
2070 * slash, and continue until no more slashes.
2071 */
2072 do {
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07002073 name++;
2074 } while (unlikely(*name == '/'));
Al Viro8620c232015-05-04 08:58:35 -04002075 if (unlikely(!*name)) {
2076OK:
Al Viro368ee9b2015-05-08 17:19:59 -04002077 /* pathname body, done */
Al Viro8620c232015-05-04 08:58:35 -04002078 if (!nd->depth)
2079 return 0;
2080 name = nd->stack[nd->depth - 1].name;
Al Viro368ee9b2015-05-08 17:19:59 -04002081 /* trailing symlink, done */
Al Viro8620c232015-05-04 08:58:35 -04002082 if (!name)
2083 return 0;
2084 /* last component of nested symlink */
Al Viro4693a542015-05-04 17:47:11 -04002085 err = walk_component(nd, WALK_GET | WALK_PUT);
Al Viro8620c232015-05-04 08:58:35 -04002086 } else {
Al Viro4693a542015-05-04 17:47:11 -04002087 err = walk_component(nd, WALK_GET);
Al Viro8620c232015-05-04 08:58:35 -04002088 }
Al Viroce57dfc2011-03-13 19:58:58 -04002089 if (err < 0)
Al Viro3595e232015-05-09 16:54:45 -04002090 return err;
Al Virofe479a52011-02-22 15:10:03 -05002091
Al Viroce57dfc2011-03-13 19:58:58 -04002092 if (err) {
Al Viro626de992015-05-04 18:26:59 -04002093 const char *s = get_link(nd);
Al Viro5a460272015-04-17 23:44:45 -04002094
Viresh Kumara1c83682015-08-12 15:59:44 +05302095 if (IS_ERR(s))
Al Viro3595e232015-05-09 16:54:45 -04002096 return PTR_ERR(s);
Al Virod40bcc02015-04-18 20:03:03 -04002097 err = 0;
2098 if (unlikely(!s)) {
2099 /* jumped */
Al Virob9ff4422015-05-02 20:19:23 -04002100 put_link(nd);
Al Virod40bcc02015-04-18 20:03:03 -04002101 } else {
Al Virofab51e82015-05-10 11:01:00 -04002102 nd->stack[nd->depth - 1].name = name;
2103 name = s;
2104 continue;
Al Virod40bcc02015-04-18 20:03:03 -04002105 }
Nick Piggin31e6b012011-01-07 17:49:52 +11002106 }
Al Viro97242f92015-08-01 19:59:28 -04002107 if (unlikely(!d_can_lookup(nd->path.dentry))) {
2108 if (nd->flags & LOOKUP_RCU) {
2109 if (unlazy_walk(nd, NULL, 0))
2110 return -ECHILD;
2111 }
Al Viro3595e232015-05-09 16:54:45 -04002112 return -ENOTDIR;
Al Viro97242f92015-08-01 19:59:28 -04002113 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115}
2116
Al Viroc8a53ee2015-05-12 18:43:07 -04002117static const char *path_init(struct nameidata *nd, unsigned flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118{
Prasanna Medaea3834d2005-04-29 16:00:17 +01002119 int retval = 0;
Al Viroc8a53ee2015-05-12 18:43:07 -04002120 const char *s = nd->name->name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121
2122 nd->last_type = LAST_ROOT; /* if there are only slashes... */
Al Viro980f3ea2014-11-20 14:20:24 -05002123 nd->flags = flags | LOOKUP_JUMPED | LOOKUP_PARENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124 nd->depth = 0;
Al Viro5b6ca022011-03-09 23:04:47 -05002125 if (flags & LOOKUP_ROOT) {
David Howellsb18825a2013-09-12 19:22:53 +01002126 struct dentry *root = nd->root.dentry;
2127 struct inode *inode = root->d_inode;
Al Virofd2f7cb2015-02-22 20:07:13 -05002128 if (*s) {
Miklos Szeredi44b1d532014-04-01 17:08:41 +02002129 if (!d_can_lookup(root))
Al Viro368ee9b2015-05-08 17:19:59 -04002130 return ERR_PTR(-ENOTDIR);
Al Viro73d049a2011-03-11 12:08:24 -05002131 retval = inode_permission(inode, MAY_EXEC);
2132 if (retval)
Al Viro368ee9b2015-05-08 17:19:59 -04002133 return ERR_PTR(retval);
Al Viro73d049a2011-03-11 12:08:24 -05002134 }
Al Viro5b6ca022011-03-09 23:04:47 -05002135 nd->path = nd->root;
2136 nd->inode = inode;
2137 if (flags & LOOKUP_RCU) {
Al Viro8b61e742013-11-08 12:45:01 -05002138 rcu_read_lock();
Al Viro5b6ca022011-03-09 23:04:47 -05002139 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
Al Viro8f47a0162015-05-09 19:02:01 -04002140 nd->root_seq = nd->seq;
Al Viro48a066e2013-09-29 22:06:07 -04002141 nd->m_seq = read_seqbegin(&mount_lock);
Al Viro5b6ca022011-03-09 23:04:47 -05002142 } else {
2143 path_get(&nd->path);
2144 }
Al Viro368ee9b2015-05-08 17:19:59 -04002145 return s;
Al Viro5b6ca022011-03-09 23:04:47 -05002146 }
2147
Al Viro2a737872009-04-07 11:49:53 -04002148 nd->root.mnt = NULL;
Al Viro248fb5b2015-12-05 20:51:58 -05002149 nd->path.mnt = NULL;
2150 nd->path.dentry = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151
Al Viro48a066e2013-09-29 22:06:07 -04002152 nd->m_seq = read_seqbegin(&mount_lock);
Al Virofd2f7cb2015-02-22 20:07:13 -05002153 if (*s == '/') {
Al Viro9e6697e2015-12-05 20:07:21 -05002154 if (flags & LOOKUP_RCU)
Al Viro8b61e742013-11-08 12:45:01 -05002155 rcu_read_lock();
Al Viro9e6697e2015-12-05 20:07:21 -05002156 set_root(nd);
Al Viro248fb5b2015-12-05 20:51:58 -05002157 if (likely(!nd_jump_root(nd)))
Al Viroef55d912015-12-05 20:25:06 -05002158 return s;
Al Viro248fb5b2015-12-05 20:51:58 -05002159 nd->root.mnt = NULL;
Al Viroef55d912015-12-05 20:25:06 -05002160 rcu_read_unlock();
2161 return ERR_PTR(-ECHILD);
Al Viroc8a53ee2015-05-12 18:43:07 -04002162 } else if (nd->dfd == AT_FDCWD) {
Al Viroe41f7d42011-02-22 14:02:58 -05002163 if (flags & LOOKUP_RCU) {
2164 struct fs_struct *fs = current->fs;
2165 unsigned seq;
2166
Al Viro8b61e742013-11-08 12:45:01 -05002167 rcu_read_lock();
Al Viroe41f7d42011-02-22 14:02:58 -05002168
2169 do {
2170 seq = read_seqcount_begin(&fs->seq);
2171 nd->path = fs->pwd;
Al Viroef55d912015-12-05 20:25:06 -05002172 nd->inode = nd->path.dentry->d_inode;
Al Viroe41f7d42011-02-22 14:02:58 -05002173 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
2174 } while (read_seqcount_retry(&fs->seq, seq));
2175 } else {
2176 get_fs_pwd(current->fs, &nd->path);
Al Viroef55d912015-12-05 20:25:06 -05002177 nd->inode = nd->path.dentry->d_inode;
Al Viroe41f7d42011-02-22 14:02:58 -05002178 }
Al Viroef55d912015-12-05 20:25:06 -05002179 return s;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002180 } else {
Jeff Layton582aa642012-12-11 08:56:16 -05002181 /* Caller must check execute permissions on the starting path component */
Al Viroc8a53ee2015-05-12 18:43:07 -04002182 struct fd f = fdget_raw(nd->dfd);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002183 struct dentry *dentry;
2184
Al Viro2903ff02012-08-28 12:52:22 -04002185 if (!f.file)
Al Viro368ee9b2015-05-08 17:19:59 -04002186 return ERR_PTR(-EBADF);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002187
Al Viro2903ff02012-08-28 12:52:22 -04002188 dentry = f.file->f_path.dentry;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002189
Al Virofd2f7cb2015-02-22 20:07:13 -05002190 if (*s) {
Miklos Szeredi44b1d532014-04-01 17:08:41 +02002191 if (!d_can_lookup(dentry)) {
Al Viro2903ff02012-08-28 12:52:22 -04002192 fdput(f);
Al Viro368ee9b2015-05-08 17:19:59 -04002193 return ERR_PTR(-ENOTDIR);
Al Viro2903ff02012-08-28 12:52:22 -04002194 }
Al Virof52e0c12011-03-14 18:56:51 -04002195 }
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002196
Al Viro2903ff02012-08-28 12:52:22 -04002197 nd->path = f.file->f_path;
Al Viroe41f7d42011-02-22 14:02:58 -05002198 if (flags & LOOKUP_RCU) {
Al Viro8b61e742013-11-08 12:45:01 -05002199 rcu_read_lock();
Al Viro34a26b92015-05-11 08:05:05 -04002200 nd->inode = nd->path.dentry->d_inode;
2201 nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq);
Al Viroe41f7d42011-02-22 14:02:58 -05002202 } else {
Al Viro2903ff02012-08-28 12:52:22 -04002203 path_get(&nd->path);
Al Viro34a26b92015-05-11 08:05:05 -04002204 nd->inode = nd->path.dentry->d_inode;
Al Viroe41f7d42011-02-22 14:02:58 -05002205 }
Al Viro34a26b92015-05-11 08:05:05 -04002206 fdput(f);
Al Viro368ee9b2015-05-08 17:19:59 -04002207 return s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208 }
Al Viro9b4a9b12009-04-07 11:44:16 -04002209}
2210
Al Viro3bdba282015-05-08 17:37:07 -04002211static const char *trailing_symlink(struct nameidata *nd)
Al Viro95fa25d2015-04-22 13:46:57 -04002212{
2213 const char *s;
Al Virofec2fa22015-05-06 15:58:18 -04002214 int error = may_follow_link(nd);
Al Virodeb106c2015-05-08 18:05:21 -04002215 if (unlikely(error))
Al Viro3bdba282015-05-08 17:37:07 -04002216 return ERR_PTR(error);
Al Viro95fa25d2015-04-22 13:46:57 -04002217 nd->flags |= LOOKUP_PARENT;
Al Virofab51e82015-05-10 11:01:00 -04002218 nd->stack[0].name = NULL;
Al Viro3b2e7f72015-04-19 00:53:50 -04002219 s = get_link(nd);
Al Virodeb106c2015-05-08 18:05:21 -04002220 return s ? s : "";
Al Viro95fa25d2015-04-22 13:46:57 -04002221}
2222
Al Virocaa85632015-04-22 17:52:47 -04002223static inline int lookup_last(struct nameidata *nd)
Al Virobd92d7f2011-03-14 19:54:59 -04002224{
2225 if (nd->last_type == LAST_NORM && nd->last.name[nd->last.len])
2226 nd->flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
2227
2228 nd->flags &= ~LOOKUP_PARENT;
Al Virodeb106c2015-05-08 18:05:21 -04002229 return walk_component(nd,
Al Viro4693a542015-05-04 17:47:11 -04002230 nd->flags & LOOKUP_FOLLOW
2231 ? nd->depth
2232 ? WALK_PUT | WALK_GET
2233 : WALK_GET
2234 : 0);
Al Virobd92d7f2011-03-14 19:54:59 -04002235}
2236
Al Viro9b4a9b12009-04-07 11:44:16 -04002237/* Returns 0 and nd will be valid on success; Retuns error, otherwise. */
Al Viroc8a53ee2015-05-12 18:43:07 -04002238static int path_lookupat(struct nameidata *nd, unsigned flags, struct path *path)
Al Viro9b4a9b12009-04-07 11:44:16 -04002239{
Al Viroc8a53ee2015-05-12 18:43:07 -04002240 const char *s = path_init(nd, flags);
Al Virobd92d7f2011-03-14 19:54:59 -04002241 int err;
Nick Piggin31e6b012011-01-07 17:49:52 +11002242
Al Viro368ee9b2015-05-08 17:19:59 -04002243 if (IS_ERR(s))
2244 return PTR_ERR(s);
Al Viro3bdba282015-05-08 17:37:07 -04002245 while (!(err = link_path_walk(s, nd))
2246 && ((err = lookup_last(nd)) > 0)) {
2247 s = trailing_symlink(nd);
2248 if (IS_ERR(s)) {
2249 err = PTR_ERR(s);
2250 break;
Al Virobd92d7f2011-03-14 19:54:59 -04002251 }
2252 }
Al Viro9f1fafe2011-03-25 11:00:12 -04002253 if (!err)
2254 err = complete_walk(nd);
Al Virobd92d7f2011-03-14 19:54:59 -04002255
Al Virodeb106c2015-05-08 18:05:21 -04002256 if (!err && nd->flags & LOOKUP_DIRECTORY)
2257 if (!d_can_lookup(nd->path.dentry))
Al Virobd23a532011-03-23 09:56:30 -04002258 err = -ENOTDIR;
Al Viro625b6d12015-05-12 16:36:12 -04002259 if (!err) {
2260 *path = nd->path;
2261 nd->path.mnt = NULL;
2262 nd->path.dentry = NULL;
2263 }
2264 terminate_walk(nd);
Al Virobd92d7f2011-03-14 19:54:59 -04002265 return err;
Al Viroee0827c2011-02-21 23:38:09 -05002266}
Nick Piggin31e6b012011-01-07 17:49:52 +11002267
Al Viro625b6d12015-05-12 16:36:12 -04002268static int filename_lookup(int dfd, struct filename *name, unsigned flags,
Al Viro9ad1aaa2015-05-12 16:44:39 -04002269 struct path *path, struct path *root)
Jeff Layton873f1ee2012-10-10 15:25:29 -04002270{
Al Viro894bc8c2015-05-02 07:16:16 -04002271 int retval;
Al Viro9883d182015-05-13 07:28:08 -04002272 struct nameidata nd;
Al Viroabc9f5b2015-05-12 16:53:42 -04002273 if (IS_ERR(name))
2274 return PTR_ERR(name);
Al Viro9ad1aaa2015-05-12 16:44:39 -04002275 if (unlikely(root)) {
2276 nd.root = *root;
2277 flags |= LOOKUP_ROOT;
2278 }
Al Viro9883d182015-05-13 07:28:08 -04002279 set_nameidata(&nd, dfd, name);
Al Viroc8a53ee2015-05-12 18:43:07 -04002280 retval = path_lookupat(&nd, flags | LOOKUP_RCU, path);
Jeff Layton873f1ee2012-10-10 15:25:29 -04002281 if (unlikely(retval == -ECHILD))
Al Viroc8a53ee2015-05-12 18:43:07 -04002282 retval = path_lookupat(&nd, flags, path);
Jeff Layton873f1ee2012-10-10 15:25:29 -04002283 if (unlikely(retval == -ESTALE))
Al Viroc8a53ee2015-05-12 18:43:07 -04002284 retval = path_lookupat(&nd, flags | LOOKUP_REVAL, path);
Jeff Layton873f1ee2012-10-10 15:25:29 -04002285
2286 if (likely(!retval))
Al Viro625b6d12015-05-12 16:36:12 -04002287 audit_inode(name, path->dentry, flags & LOOKUP_PARENT);
Al Viro9883d182015-05-13 07:28:08 -04002288 restore_nameidata();
Al Viroe4bd1c12015-05-12 16:40:39 -04002289 putname(name);
Jeff Layton873f1ee2012-10-10 15:25:29 -04002290 return retval;
2291}
2292
Al Viro8bcb77f2015-05-08 16:59:20 -04002293/* Returns 0 and nd will be valid on success; Retuns error, otherwise. */
Al Viroc8a53ee2015-05-12 18:43:07 -04002294static int path_parentat(struct nameidata *nd, unsigned flags,
Al Viro391172c2015-05-09 11:19:16 -04002295 struct path *parent)
Al Viro8bcb77f2015-05-08 16:59:20 -04002296{
Al Viroc8a53ee2015-05-12 18:43:07 -04002297 const char *s = path_init(nd, flags);
Al Viro368ee9b2015-05-08 17:19:59 -04002298 int err;
2299 if (IS_ERR(s))
2300 return PTR_ERR(s);
2301 err = link_path_walk(s, nd);
Al Viro8bcb77f2015-05-08 16:59:20 -04002302 if (!err)
2303 err = complete_walk(nd);
Al Viro391172c2015-05-09 11:19:16 -04002304 if (!err) {
2305 *parent = nd->path;
2306 nd->path.mnt = NULL;
2307 nd->path.dentry = NULL;
2308 }
2309 terminate_walk(nd);
Al Viro8bcb77f2015-05-08 16:59:20 -04002310 return err;
2311}
2312
Al Viro5c31b6c2015-05-12 17:32:54 -04002313static struct filename *filename_parentat(int dfd, struct filename *name,
Al Viro391172c2015-05-09 11:19:16 -04002314 unsigned int flags, struct path *parent,
2315 struct qstr *last, int *type)
Al Viro8bcb77f2015-05-08 16:59:20 -04002316{
2317 int retval;
Al Viro9883d182015-05-13 07:28:08 -04002318 struct nameidata nd;
Al Viro8bcb77f2015-05-08 16:59:20 -04002319
Al Viro5c31b6c2015-05-12 17:32:54 -04002320 if (IS_ERR(name))
2321 return name;
Al Viro9883d182015-05-13 07:28:08 -04002322 set_nameidata(&nd, dfd, name);
Al Viroc8a53ee2015-05-12 18:43:07 -04002323 retval = path_parentat(&nd, flags | LOOKUP_RCU, parent);
Al Viro8bcb77f2015-05-08 16:59:20 -04002324 if (unlikely(retval == -ECHILD))
Al Viroc8a53ee2015-05-12 18:43:07 -04002325 retval = path_parentat(&nd, flags, parent);
Al Viro8bcb77f2015-05-08 16:59:20 -04002326 if (unlikely(retval == -ESTALE))
Al Viroc8a53ee2015-05-12 18:43:07 -04002327 retval = path_parentat(&nd, flags | LOOKUP_REVAL, parent);
Al Viro391172c2015-05-09 11:19:16 -04002328 if (likely(!retval)) {
2329 *last = nd.last;
2330 *type = nd.last_type;
2331 audit_inode(name, parent->dentry, LOOKUP_PARENT);
Al Viro5c31b6c2015-05-12 17:32:54 -04002332 } else {
2333 putname(name);
2334 name = ERR_PTR(retval);
Al Viro391172c2015-05-09 11:19:16 -04002335 }
Al Viro9883d182015-05-13 07:28:08 -04002336 restore_nameidata();
Al Viro5c31b6c2015-05-12 17:32:54 -04002337 return name;
Al Viro8bcb77f2015-05-08 16:59:20 -04002338}
2339
Al Viro79714f72012-06-15 03:01:42 +04002340/* does lookup, returns the object with parent locked */
2341struct dentry *kern_path_locked(const char *name, struct path *path)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002342{
Al Viro5c31b6c2015-05-12 17:32:54 -04002343 struct filename *filename;
2344 struct dentry *d;
Al Viro391172c2015-05-09 11:19:16 -04002345 struct qstr last;
2346 int type;
Paul Moore51689102015-01-22 00:00:03 -05002347
Al Viro5c31b6c2015-05-12 17:32:54 -04002348 filename = filename_parentat(AT_FDCWD, getname_kernel(name), 0, path,
2349 &last, &type);
Paul Moore51689102015-01-22 00:00:03 -05002350 if (IS_ERR(filename))
2351 return ERR_CAST(filename);
Al Viro5c31b6c2015-05-12 17:32:54 -04002352 if (unlikely(type != LAST_NORM)) {
Al Viro391172c2015-05-09 11:19:16 -04002353 path_put(path);
Al Viro5c31b6c2015-05-12 17:32:54 -04002354 putname(filename);
2355 return ERR_PTR(-EINVAL);
Al Viro79714f72012-06-15 03:01:42 +04002356 }
Al Viro59551022016-01-22 15:40:57 -05002357 inode_lock_nested(path->dentry->d_inode, I_MUTEX_PARENT);
Al Viro391172c2015-05-09 11:19:16 -04002358 d = __lookup_hash(&last, path->dentry, 0);
Al Viro79714f72012-06-15 03:01:42 +04002359 if (IS_ERR(d)) {
Al Viro59551022016-01-22 15:40:57 -05002360 inode_unlock(path->dentry->d_inode);
Al Viro391172c2015-05-09 11:19:16 -04002361 path_put(path);
Al Viro79714f72012-06-15 03:01:42 +04002362 }
Paul Moore51689102015-01-22 00:00:03 -05002363 putname(filename);
Al Viro79714f72012-06-15 03:01:42 +04002364 return d;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002365}
2366
Al Virod1811462008-08-02 00:49:18 -04002367int kern_path(const char *name, unsigned int flags, struct path *path)
2368{
Al Viroabc9f5b2015-05-12 16:53:42 -04002369 return filename_lookup(AT_FDCWD, getname_kernel(name),
2370 flags, path, NULL);
Al Virod1811462008-08-02 00:49:18 -04002371}
Al Viro4d359502014-03-14 12:20:17 -04002372EXPORT_SYMBOL(kern_path);
Al Virod1811462008-08-02 00:49:18 -04002373
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07002374/**
2375 * vfs_path_lookup - lookup a file path relative to a dentry-vfsmount pair
2376 * @dentry: pointer to dentry of the base directory
2377 * @mnt: pointer to vfs mount of the base directory
2378 * @name: pointer to file name
2379 * @flags: lookup flags
Al Viroe0a01242011-06-27 17:00:37 -04002380 * @path: pointer to struct path to fill
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07002381 */
2382int vfs_path_lookup(struct dentry *dentry, struct vfsmount *mnt,
2383 const char *name, unsigned int flags,
Al Viroe0a01242011-06-27 17:00:37 -04002384 struct path *path)
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07002385{
Al Viro9ad1aaa2015-05-12 16:44:39 -04002386 struct path root = {.mnt = mnt, .dentry = dentry};
Al Viro9ad1aaa2015-05-12 16:44:39 -04002387 /* the first argument of filename_lookup() is ignored with root */
Al Viroabc9f5b2015-05-12 16:53:42 -04002388 return filename_lookup(AT_FDCWD, getname_kernel(name),
2389 flags , path, &root);
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07002390}
Al Viro4d359502014-03-14 12:20:17 -04002391EXPORT_SYMBOL(vfs_path_lookup);
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07002392
Christoph Hellwigeead1912007-10-16 23:25:38 -07002393/**
Miklos Szeredi3c9fe8c2016-05-11 01:16:37 +02002394 * lookup_hash - lookup single pathname component on already hashed name
2395 * @name: name and hash to lookup
2396 * @base: base directory to lookup from
2397 *
2398 * The name must have been verified and hashed (see lookup_one_len()). Using
2399 * this after just full_name_hash() is unsafe.
2400 *
2401 * This function also doesn't check for search permission on base directory.
2402 *
2403 * Use lookup_one_len_unlocked() instead, unless you really know what you are
2404 * doing.
2405 *
2406 * Do not hold i_mutex; this helper takes i_mutex if necessary.
2407 */
2408struct dentry *lookup_hash(const struct qstr *name, struct dentry *base)
2409{
2410 struct dentry *ret;
2411
2412 ret = lookup_dcache(name, base, 0);
2413 if (!ret)
2414 ret = lookup_slow(name, base, 0);
2415
2416 return ret;
2417}
2418EXPORT_SYMBOL(lookup_hash);
2419
2420/**
Randy Dunlapa6b91912008-03-19 17:01:00 -07002421 * lookup_one_len - filesystem helper to lookup single pathname component
Christoph Hellwigeead1912007-10-16 23:25:38 -07002422 * @name: pathname component to lookup
2423 * @base: base directory to lookup from
2424 * @len: maximum length @len should be interpreted to
2425 *
Randy Dunlapa6b91912008-03-19 17:01:00 -07002426 * Note that this routine is purely a helper for filesystem usage and should
Al Viro9e7543e2015-02-23 02:49:48 -05002427 * not be called by generic code.
NeilBrownbbddca82016-01-07 16:08:20 -05002428 *
2429 * The caller must hold base->i_mutex.
Christoph Hellwigeead1912007-10-16 23:25:38 -07002430 */
James Morris057f6c02007-04-26 00:12:05 -07002431struct dentry *lookup_one_len(const char *name, struct dentry *base, int len)
2432{
James Morris057f6c02007-04-26 00:12:05 -07002433 struct qstr this;
Al Viro6a96ba52011-03-07 23:49:20 -05002434 unsigned int c;
Miklos Szeredicda309d2012-03-26 12:54:21 +02002435 int err;
James Morris057f6c02007-04-26 00:12:05 -07002436
Al Viro59551022016-01-22 15:40:57 -05002437 WARN_ON_ONCE(!inode_is_locked(base->d_inode));
David Woodhouse2f9092e2009-04-20 23:18:37 +01002438
Al Viro6a96ba52011-03-07 23:49:20 -05002439 this.name = name;
2440 this.len = len;
Linus Torvalds0145acc2012-03-02 14:32:59 -08002441 this.hash = full_name_hash(name, len);
Al Viro6a96ba52011-03-07 23:49:20 -05002442 if (!len)
2443 return ERR_PTR(-EACCES);
2444
Al Viro21d8a152012-11-29 22:17:21 -05002445 if (unlikely(name[0] == '.')) {
2446 if (len < 2 || (len == 2 && name[1] == '.'))
2447 return ERR_PTR(-EACCES);
2448 }
2449
Al Viro6a96ba52011-03-07 23:49:20 -05002450 while (len--) {
2451 c = *(const unsigned char *)name++;
2452 if (c == '/' || c == '\0')
2453 return ERR_PTR(-EACCES);
Al Viro6a96ba52011-03-07 23:49:20 -05002454 }
Al Viro5a202bc2011-03-08 14:17:44 -05002455 /*
2456 * See if the low-level filesystem might want
2457 * to use its own hash..
2458 */
2459 if (base->d_flags & DCACHE_OP_HASH) {
Linus Torvaldsda53be12013-05-21 15:22:44 -07002460 int err = base->d_op->d_hash(base, &this);
Al Viro5a202bc2011-03-08 14:17:44 -05002461 if (err < 0)
2462 return ERR_PTR(err);
2463 }
Christoph Hellwigeead1912007-10-16 23:25:38 -07002464
Miklos Szeredicda309d2012-03-26 12:54:21 +02002465 err = inode_permission(base->d_inode, MAY_EXEC);
2466 if (err)
2467 return ERR_PTR(err);
2468
Al Viro72bd8662012-06-10 17:17:17 -04002469 return __lookup_hash(&this, base, 0);
James Morris057f6c02007-04-26 00:12:05 -07002470}
Al Viro4d359502014-03-14 12:20:17 -04002471EXPORT_SYMBOL(lookup_one_len);
James Morris057f6c02007-04-26 00:12:05 -07002472
NeilBrownbbddca82016-01-07 16:08:20 -05002473/**
2474 * lookup_one_len_unlocked - filesystem helper to lookup single pathname component
2475 * @name: pathname component to lookup
2476 * @base: base directory to lookup from
2477 * @len: maximum length @len should be interpreted to
2478 *
2479 * Note that this routine is purely a helper for filesystem usage and should
2480 * not be called by generic code.
2481 *
2482 * Unlike lookup_one_len, it should be called without the parent
2483 * i_mutex held, and will take the i_mutex itself if necessary.
2484 */
2485struct dentry *lookup_one_len_unlocked(const char *name,
2486 struct dentry *base, int len)
2487{
2488 struct qstr this;
2489 unsigned int c;
2490 int err;
NeilBrownbbddca82016-01-07 16:08:20 -05002491
2492 this.name = name;
2493 this.len = len;
2494 this.hash = full_name_hash(name, len);
2495 if (!len)
2496 return ERR_PTR(-EACCES);
2497
2498 if (unlikely(name[0] == '.')) {
2499 if (len < 2 || (len == 2 && name[1] == '.'))
2500 return ERR_PTR(-EACCES);
2501 }
2502
2503 while (len--) {
2504 c = *(const unsigned char *)name++;
2505 if (c == '/' || c == '\0')
2506 return ERR_PTR(-EACCES);
2507 }
2508 /*
2509 * See if the low-level filesystem might want
2510 * to use its own hash..
2511 */
2512 if (base->d_flags & DCACHE_OP_HASH) {
2513 int err = base->d_op->d_hash(base, &this);
2514 if (err < 0)
2515 return ERR_PTR(err);
2516 }
2517
2518 err = inode_permission(base->d_inode, MAY_EXEC);
2519 if (err)
2520 return ERR_PTR(err);
2521
Miklos Szeredi3c9fe8c2016-05-11 01:16:37 +02002522 return lookup_hash(&this, base);
NeilBrownbbddca82016-01-07 16:08:20 -05002523}
2524EXPORT_SYMBOL(lookup_one_len_unlocked);
2525
Eric W. Biedermaneedf2652016-06-02 10:29:47 -05002526#ifdef CONFIG_UNIX98_PTYS
2527int path_pts(struct path *path)
2528{
2529 /* Find something mounted on "pts" in the same directory as
2530 * the input path.
2531 */
2532 struct dentry *child, *parent;
2533 struct qstr this;
2534 int ret;
2535
2536 ret = path_parent_directory(path);
2537 if (ret)
2538 return ret;
2539
2540 parent = path->dentry;
2541 this.name = "pts";
2542 this.len = 3;
2543 child = d_hash_and_lookup(parent, &this);
2544 if (!child)
2545 return -ENOENT;
2546
2547 path->dentry = child;
2548 dput(parent);
2549 follow_mount(path);
2550 return 0;
2551}
2552#endif
2553
Andy Whitcroft1fa1e7f2011-11-02 09:44:39 +01002554int user_path_at_empty(int dfd, const char __user *name, unsigned flags,
2555 struct path *path, int *empty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556{
Al Viroabc9f5b2015-05-12 16:53:42 -04002557 return filename_lookup(dfd, getname_flags(name, flags, empty),
2558 flags, path, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002559}
Al Virob853a162015-05-13 09:12:02 -04002560EXPORT_SYMBOL(user_path_at_empty);
Andy Whitcroft1fa1e7f2011-11-02 09:44:39 +01002561
Jeff Layton873f1ee2012-10-10 15:25:29 -04002562/*
2563 * NB: most callers don't do anything directly with the reference to the
2564 * to struct filename, but the nd->last pointer points into the name string
2565 * allocated by getname. So we must hold the reference to it until all
2566 * path-walking is complete.
2567 */
Al Viroa2ec4a22015-05-13 06:57:49 -04002568static inline struct filename *
Al Virof5beed72015-04-30 16:09:11 -04002569user_path_parent(int dfd, const char __user *path,
2570 struct path *parent,
2571 struct qstr *last,
2572 int *type,
Jeff Layton9e790bd2012-12-11 12:10:09 -05002573 unsigned int flags)
Al Viro2ad94ae2008-07-21 09:32:51 -04002574{
Jeff Layton9e790bd2012-12-11 12:10:09 -05002575 /* only LOOKUP_REVAL is allowed in extra flags */
Al Viro5c31b6c2015-05-12 17:32:54 -04002576 return filename_parentat(dfd, getname(path), flags & LOOKUP_REVAL,
2577 parent, last, type);
Al Viro2ad94ae2008-07-21 09:32:51 -04002578}
2579
Jeff Layton80334262013-07-26 06:23:25 -04002580/**
Al Viro197df042013-09-08 14:03:27 -04002581 * mountpoint_last - look up last component for umount
Jeff Layton80334262013-07-26 06:23:25 -04002582 * @nd: pathwalk nameidata - currently pointing at parent directory of "last"
2583 * @path: pointer to container for result
2584 *
2585 * This is a special lookup_last function just for umount. In this case, we
2586 * need to resolve the path without doing any revalidation.
2587 *
2588 * The nameidata should be the result of doing a LOOKUP_PARENT pathwalk. Since
2589 * mountpoints are always pinned in the dcache, their ancestors are too. Thus,
2590 * in almost all cases, this lookup will be served out of the dcache. The only
2591 * cases where it won't are if nd->last refers to a symlink or the path is
2592 * bogus and it doesn't exist.
2593 *
2594 * Returns:
2595 * -error: if there was an error during lookup. This includes -ENOENT if the
2596 * lookup found a negative dentry. The nd->path reference will also be
2597 * put in this case.
2598 *
2599 * 0: if we successfully resolved nd->path and found it to not to be a
2600 * symlink that needs to be followed. "path" will also be populated.
2601 * The nd->path reference will also be put.
2602 *
2603 * 1: if we successfully resolved nd->last and found it to be a symlink
2604 * that needs to be followed. "path" will be populated with the path
2605 * to the link, and nd->path will *not* be put.
2606 */
2607static int
Al Viro197df042013-09-08 14:03:27 -04002608mountpoint_last(struct nameidata *nd, struct path *path)
Jeff Layton80334262013-07-26 06:23:25 -04002609{
2610 int error = 0;
2611 struct dentry *dentry;
2612 struct dentry *dir = nd->path.dentry;
2613
Al Viro35759522013-09-08 13:41:33 -04002614 /* If we're in rcuwalk, drop out of it to handle last component */
2615 if (nd->flags & LOOKUP_RCU) {
Al Viro6e9918b2015-05-05 09:26:05 -04002616 if (unlazy_walk(nd, NULL, 0))
Al Virodeb106c2015-05-08 18:05:21 -04002617 return -ECHILD;
Jeff Layton80334262013-07-26 06:23:25 -04002618 }
2619
2620 nd->flags &= ~LOOKUP_PARENT;
2621
2622 if (unlikely(nd->last_type != LAST_NORM)) {
2623 error = handle_dots(nd, nd->last_type);
Al Viro35759522013-09-08 13:41:33 -04002624 if (error)
Al Virodeb106c2015-05-08 18:05:21 -04002625 return error;
Al Viro35759522013-09-08 13:41:33 -04002626 dentry = dget(nd->path.dentry);
Al Viro949a8522016-03-06 14:20:52 -05002627 } else {
2628 dentry = d_lookup(dir, &nd->last);
Jeff Layton80334262013-07-26 06:23:25 -04002629 if (!dentry) {
Al Viro949a8522016-03-06 14:20:52 -05002630 /*
2631 * No cached dentry. Mounted dentries are pinned in the
2632 * cache, so that means that this dentry is probably
2633 * a symlink or the path doesn't actually point
2634 * to a mounted dentry.
2635 */
2636 dentry = lookup_slow(&nd->last, dir,
2637 nd->flags | LOOKUP_NO_REVAL);
2638 if (IS_ERR(dentry))
2639 return PTR_ERR(dentry);
Dave Jonesbcceeeb2013-09-10 17:04:25 -04002640 }
Jeff Layton80334262013-07-26 06:23:25 -04002641 }
David Howells698934d2015-03-17 17:33:52 +00002642 if (d_is_negative(dentry)) {
Al Viro35759522013-09-08 13:41:33 -04002643 dput(dentry);
Al Virodeb106c2015-05-08 18:05:21 -04002644 return -ENOENT;
Jeff Layton80334262013-07-26 06:23:25 -04002645 }
Al Viro191d7f72015-05-04 08:26:45 -04002646 if (nd->depth)
2647 put_link(nd);
Al Viro35759522013-09-08 13:41:33 -04002648 path->dentry = dentry;
Vasily Averin295dc392014-07-21 12:30:23 +04002649 path->mnt = nd->path.mnt;
Al Viro181548c2015-05-07 19:54:34 -04002650 error = should_follow_link(nd, path, nd->flags & LOOKUP_FOLLOW,
2651 d_backing_inode(dentry), 0);
Al Virodeb106c2015-05-08 18:05:21 -04002652 if (unlikely(error))
Al Virod63ff282015-05-04 18:13:23 -04002653 return error;
Vasily Averin295dc392014-07-21 12:30:23 +04002654 mntget(path->mnt);
Al Viro35759522013-09-08 13:41:33 -04002655 follow_mount(path);
Al Virodeb106c2015-05-08 18:05:21 -04002656 return 0;
Jeff Layton80334262013-07-26 06:23:25 -04002657}
2658
2659/**
Al Viro197df042013-09-08 14:03:27 -04002660 * path_mountpoint - look up a path to be umounted
Masanari Iida2a78b852015-09-09 15:39:23 -07002661 * @nd: lookup context
Jeff Layton80334262013-07-26 06:23:25 -04002662 * @flags: lookup flags
Al Viroc8a53ee2015-05-12 18:43:07 -04002663 * @path: pointer to container for result
Jeff Layton80334262013-07-26 06:23:25 -04002664 *
2665 * Look up the given name, but don't attempt to revalidate the last component.
Randy Dunlap606d6fe2013-10-19 14:56:55 -07002666 * Returns 0 and "path" will be valid on success; Returns error otherwise.
Jeff Layton80334262013-07-26 06:23:25 -04002667 */
2668static int
Al Viroc8a53ee2015-05-12 18:43:07 -04002669path_mountpoint(struct nameidata *nd, unsigned flags, struct path *path)
Jeff Layton80334262013-07-26 06:23:25 -04002670{
Al Viroc8a53ee2015-05-12 18:43:07 -04002671 const char *s = path_init(nd, flags);
Al Viro368ee9b2015-05-08 17:19:59 -04002672 int err;
2673 if (IS_ERR(s))
2674 return PTR_ERR(s);
Al Viro3bdba282015-05-08 17:37:07 -04002675 while (!(err = link_path_walk(s, nd)) &&
2676 (err = mountpoint_last(nd, path)) > 0) {
2677 s = trailing_symlink(nd);
2678 if (IS_ERR(s)) {
2679 err = PTR_ERR(s);
Jeff Layton80334262013-07-26 06:23:25 -04002680 break;
Al Viro3bdba282015-05-08 17:37:07 -04002681 }
Jeff Layton80334262013-07-26 06:23:25 -04002682 }
Al Virodeb106c2015-05-08 18:05:21 -04002683 terminate_walk(nd);
Jeff Layton80334262013-07-26 06:23:25 -04002684 return err;
2685}
2686
Al Viro2d864652013-09-08 20:18:44 -04002687static int
Al Viro668696d2015-02-22 19:44:00 -05002688filename_mountpoint(int dfd, struct filename *name, struct path *path,
Al Viro2d864652013-09-08 20:18:44 -04002689 unsigned int flags)
2690{
Al Viro9883d182015-05-13 07:28:08 -04002691 struct nameidata nd;
Al Virocbaab2d2015-01-22 02:49:00 -05002692 int error;
Al Viro668696d2015-02-22 19:44:00 -05002693 if (IS_ERR(name))
2694 return PTR_ERR(name);
Al Viro9883d182015-05-13 07:28:08 -04002695 set_nameidata(&nd, dfd, name);
Al Viroc8a53ee2015-05-12 18:43:07 -04002696 error = path_mountpoint(&nd, flags | LOOKUP_RCU, path);
Al Viro2d864652013-09-08 20:18:44 -04002697 if (unlikely(error == -ECHILD))
Al Viroc8a53ee2015-05-12 18:43:07 -04002698 error = path_mountpoint(&nd, flags, path);
Al Viro2d864652013-09-08 20:18:44 -04002699 if (unlikely(error == -ESTALE))
Al Viroc8a53ee2015-05-12 18:43:07 -04002700 error = path_mountpoint(&nd, flags | LOOKUP_REVAL, path);
Al Viro2d864652013-09-08 20:18:44 -04002701 if (likely(!error))
Al Viro668696d2015-02-22 19:44:00 -05002702 audit_inode(name, path->dentry, 0);
Al Viro9883d182015-05-13 07:28:08 -04002703 restore_nameidata();
Al Viro668696d2015-02-22 19:44:00 -05002704 putname(name);
Al Viro2d864652013-09-08 20:18:44 -04002705 return error;
2706}
2707
Jeff Layton80334262013-07-26 06:23:25 -04002708/**
Al Viro197df042013-09-08 14:03:27 -04002709 * user_path_mountpoint_at - lookup a path from userland in order to umount it
Jeff Layton80334262013-07-26 06:23:25 -04002710 * @dfd: directory file descriptor
2711 * @name: pathname from userland
2712 * @flags: lookup flags
2713 * @path: pointer to container to hold result
2714 *
2715 * A umount is a special case for path walking. We're not actually interested
2716 * in the inode in this situation, and ESTALE errors can be a problem. We
2717 * simply want track down the dentry and vfsmount attached at the mountpoint
2718 * and avoid revalidating the last component.
2719 *
2720 * Returns 0 and populates "path" on success.
2721 */
2722int
Al Viro197df042013-09-08 14:03:27 -04002723user_path_mountpoint_at(int dfd, const char __user *name, unsigned int flags,
Jeff Layton80334262013-07-26 06:23:25 -04002724 struct path *path)
2725{
Al Virocbaab2d2015-01-22 02:49:00 -05002726 return filename_mountpoint(dfd, getname(name), path, flags);
Jeff Layton80334262013-07-26 06:23:25 -04002727}
2728
Al Viro2d864652013-09-08 20:18:44 -04002729int
2730kern_path_mountpoint(int dfd, const char *name, struct path *path,
2731 unsigned int flags)
2732{
Al Virocbaab2d2015-01-22 02:49:00 -05002733 return filename_mountpoint(dfd, getname_kernel(name), path, flags);
Al Viro2d864652013-09-08 20:18:44 -04002734}
2735EXPORT_SYMBOL(kern_path_mountpoint);
2736
Miklos Szeredicbdf35b2014-10-24 00:14:36 +02002737int __check_sticky(struct inode *dir, struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002738{
Eric W. Biederman8e96e3b2012-03-03 21:17:15 -08002739 kuid_t fsuid = current_fsuid();
David Howellsda9592e2008-11-14 10:39:05 +11002740
Eric W. Biederman8e96e3b2012-03-03 21:17:15 -08002741 if (uid_eq(inode->i_uid, fsuid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002742 return 0;
Eric W. Biederman8e96e3b2012-03-03 21:17:15 -08002743 if (uid_eq(dir->i_uid, fsuid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002744 return 0;
Andy Lutomirski23adbe12014-06-10 12:45:42 -07002745 return !capable_wrt_inode_uidgid(inode, CAP_FOWNER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002746}
Miklos Szeredicbdf35b2014-10-24 00:14:36 +02002747EXPORT_SYMBOL(__check_sticky);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002748
2749/*
2750 * Check whether we can remove a link victim from directory dir, check
2751 * whether the type of victim is right.
2752 * 1. We can't do it if dir is read-only (done in permission())
2753 * 2. We should have write and exec permissions on dir
2754 * 3. We can't remove anything from append-only dir
2755 * 4. We can't do anything with immutable dir (done in permission())
2756 * 5. If the sticky bit on dir is set we should either
2757 * a. be owner of dir, or
2758 * b. be owner of victim, or
2759 * c. have CAP_FOWNER capability
2760 * 6. If the victim is append-only or immutable we can't do antyhing with
2761 * links pointing to it.
2762 * 7. If we were asked to remove a directory and victim isn't one - ENOTDIR.
2763 * 8. If we were asked to remove a non-directory and victim isn't one - EISDIR.
2764 * 9. We can't remove a root or mountpoint.
2765 * 10. We don't allow removal of NFS sillyrenamed files; it's handled by
2766 * nfs_async_unlink().
2767 */
David Howellsb18825a2013-09-12 19:22:53 +01002768static int may_delete(struct inode *dir, struct dentry *victim, bool isdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002769{
David Howells63afdfc2015-05-06 15:59:00 +01002770 struct inode *inode = d_backing_inode(victim);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002771 int error;
2772
David Howellsb18825a2013-09-12 19:22:53 +01002773 if (d_is_negative(victim))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002774 return -ENOENT;
David Howellsb18825a2013-09-12 19:22:53 +01002775 BUG_ON(!inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002776
2777 BUG_ON(victim->d_parent->d_inode != dir);
Jeff Layton4fa6b5e2012-10-10 15:25:25 -04002778 audit_inode_child(dir, victim, AUDIT_TYPE_CHILD_DELETE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002779
Al Virof419a2e2008-07-22 00:07:17 -04002780 error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002781 if (error)
2782 return error;
2783 if (IS_APPEND(dir))
2784 return -EPERM;
David Howellsb18825a2013-09-12 19:22:53 +01002785
2786 if (check_sticky(dir, inode) || IS_APPEND(inode) ||
2787 IS_IMMUTABLE(inode) || IS_SWAPFILE(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002788 return -EPERM;
2789 if (isdir) {
Miklos Szeredi44b1d532014-04-01 17:08:41 +02002790 if (!d_is_dir(victim))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791 return -ENOTDIR;
2792 if (IS_ROOT(victim))
2793 return -EBUSY;
Miklos Szeredi44b1d532014-04-01 17:08:41 +02002794 } else if (d_is_dir(victim))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002795 return -EISDIR;
2796 if (IS_DEADDIR(dir))
2797 return -ENOENT;
2798 if (victim->d_flags & DCACHE_NFSFS_RENAMED)
2799 return -EBUSY;
2800 return 0;
2801}
2802
2803/* Check whether we can create an object with dentry child in directory
2804 * dir.
2805 * 1. We can't do it if child already exists (open has special treatment for
2806 * this case, but since we are inlined it's OK)
2807 * 2. We can't do it if dir is read-only (done in permission())
2808 * 3. We should have write and exec permissions on dir
2809 * 4. We can't do it if dir is immutable (done in permission())
2810 */
Miklos Szeredia95164d2008-07-30 15:08:48 +02002811static inline int may_create(struct inode *dir, struct dentry *child)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812{
Jeff Layton14e972b2013-05-08 10:25:58 -04002813 audit_inode_child(dir, child, AUDIT_TYPE_CHILD_CREATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002814 if (child->d_inode)
2815 return -EEXIST;
2816 if (IS_DEADDIR(dir))
2817 return -ENOENT;
Al Virof419a2e2008-07-22 00:07:17 -04002818 return inode_permission(dir, MAY_WRITE | MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002819}
2820
Linus Torvalds1da177e2005-04-16 15:20:36 -07002821/*
2822 * p1 and p2 should be directories on the same fs.
2823 */
2824struct dentry *lock_rename(struct dentry *p1, struct dentry *p2)
2825{
2826 struct dentry *p;
2827
2828 if (p1 == p2) {
Al Viro59551022016-01-22 15:40:57 -05002829 inode_lock_nested(p1->d_inode, I_MUTEX_PARENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002830 return NULL;
2831 }
2832
Al Virofc640052016-04-10 01:33:30 -04002833 mutex_lock(&p1->d_sb->s_vfs_rename_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002834
OGAWA Hirofumie2761a12008-10-16 07:50:28 +09002835 p = d_ancestor(p2, p1);
2836 if (p) {
Al Viro59551022016-01-22 15:40:57 -05002837 inode_lock_nested(p2->d_inode, I_MUTEX_PARENT);
2838 inode_lock_nested(p1->d_inode, I_MUTEX_CHILD);
OGAWA Hirofumie2761a12008-10-16 07:50:28 +09002839 return p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002840 }
2841
OGAWA Hirofumie2761a12008-10-16 07:50:28 +09002842 p = d_ancestor(p1, p2);
2843 if (p) {
Al Viro59551022016-01-22 15:40:57 -05002844 inode_lock_nested(p1->d_inode, I_MUTEX_PARENT);
2845 inode_lock_nested(p2->d_inode, I_MUTEX_CHILD);
OGAWA Hirofumie2761a12008-10-16 07:50:28 +09002846 return p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002847 }
2848
Al Viro59551022016-01-22 15:40:57 -05002849 inode_lock_nested(p1->d_inode, I_MUTEX_PARENT);
2850 inode_lock_nested(p2->d_inode, I_MUTEX_PARENT2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002851 return NULL;
2852}
Al Viro4d359502014-03-14 12:20:17 -04002853EXPORT_SYMBOL(lock_rename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002854
2855void unlock_rename(struct dentry *p1, struct dentry *p2)
2856{
Al Viro59551022016-01-22 15:40:57 -05002857 inode_unlock(p1->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002858 if (p1 != p2) {
Al Viro59551022016-01-22 15:40:57 -05002859 inode_unlock(p2->d_inode);
Al Virofc640052016-04-10 01:33:30 -04002860 mutex_unlock(&p1->d_sb->s_vfs_rename_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002861 }
2862}
Al Viro4d359502014-03-14 12:20:17 -04002863EXPORT_SYMBOL(unlock_rename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002864
Al Viro4acdaf22011-07-26 01:42:34 -04002865int vfs_create(struct inode *dir, struct dentry *dentry, umode_t mode,
Al Viro312b63f2012-06-10 18:09:36 -04002866 bool want_excl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002867{
Miklos Szeredia95164d2008-07-30 15:08:48 +02002868 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002869 if (error)
2870 return error;
2871
Al Viroacfa4382008-12-04 10:06:33 -05002872 if (!dir->i_op->create)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002873 return -EACCES; /* shouldn't it be ENOSYS? */
2874 mode &= S_IALLUGO;
2875 mode |= S_IFREG;
2876 error = security_inode_create(dir, dentry, mode);
2877 if (error)
2878 return error;
Al Viro312b63f2012-06-10 18:09:36 -04002879 error = dir->i_op->create(dir, dentry, mode, want_excl);
Stephen Smalleya74574a2005-09-09 13:01:44 -07002880 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00002881 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002882 return error;
2883}
Al Viro4d359502014-03-14 12:20:17 -04002884EXPORT_SYMBOL(vfs_create);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002885
Eric W. Biedermana2982cc2016-06-09 15:34:02 -05002886bool may_open_dev(const struct path *path)
2887{
2888 return !(path->mnt->mnt_flags & MNT_NODEV) &&
2889 !(path->mnt->mnt_sb->s_iflags & SB_I_NODEV);
2890}
2891
Al Viro73d049a2011-03-11 12:08:24 -05002892static int may_open(struct path *path, int acc_mode, int flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002893{
Christoph Hellwig3fb64192008-10-24 09:58:10 +02002894 struct dentry *dentry = path->dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002895 struct inode *inode = dentry->d_inode;
2896 int error;
2897
2898 if (!inode)
2899 return -ENOENT;
2900
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01002901 switch (inode->i_mode & S_IFMT) {
2902 case S_IFLNK:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002903 return -ELOOP;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01002904 case S_IFDIR:
2905 if (acc_mode & MAY_WRITE)
2906 return -EISDIR;
2907 break;
2908 case S_IFBLK:
2909 case S_IFCHR:
Eric W. Biedermana2982cc2016-06-09 15:34:02 -05002910 if (!may_open_dev(path))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002911 return -EACCES;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01002912 /*FALLTHRU*/
2913 case S_IFIFO:
2914 case S_IFSOCK:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002915 flag &= ~O_TRUNC;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01002916 break;
Dave Hansen4a3fd212008-02-15 14:37:48 -08002917 }
Dave Hansenb41572e2007-10-16 23:31:14 -07002918
Al Viro62fb4a12015-12-26 22:33:24 -05002919 error = inode_permission(inode, MAY_OPEN | acc_mode);
Dave Hansenb41572e2007-10-16 23:31:14 -07002920 if (error)
2921 return error;
Mimi Zohar6146f0d2009-02-04 09:06:57 -05002922
Linus Torvalds1da177e2005-04-16 15:20:36 -07002923 /*
2924 * An append-only file must be opened in append mode for writing.
2925 */
2926 if (IS_APPEND(inode)) {
Al Viro8737c932009-12-24 06:47:55 -05002927 if ((flag & O_ACCMODE) != O_RDONLY && !(flag & O_APPEND))
Al Viro7715b522009-12-16 03:54:00 -05002928 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002929 if (flag & O_TRUNC)
Al Viro7715b522009-12-16 03:54:00 -05002930 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002931 }
2932
2933 /* O_NOATIME can only be set by the owner or superuser */
Serge E. Hallyn2e149672011-03-23 16:43:26 -07002934 if (flag & O_NOATIME && !inode_owner_or_capable(inode))
Al Viro7715b522009-12-16 03:54:00 -05002935 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002936
J. Bruce Fieldsf3c7691e2011-09-21 10:58:13 -04002937 return 0;
Al Viro7715b522009-12-16 03:54:00 -05002938}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002939
Jeff Laytone1181ee2010-12-07 16:19:50 -05002940static int handle_truncate(struct file *filp)
Al Viro7715b522009-12-16 03:54:00 -05002941{
Jeff Laytone1181ee2010-12-07 16:19:50 -05002942 struct path *path = &filp->f_path;
Al Viro7715b522009-12-16 03:54:00 -05002943 struct inode *inode = path->dentry->d_inode;
2944 int error = get_write_access(inode);
2945 if (error)
2946 return error;
2947 /*
2948 * Refuse to truncate files with mandatory locks held on them.
2949 */
Jeff Laytond7a06982014-03-10 09:54:15 -04002950 error = locks_verify_locked(filp);
Al Viro7715b522009-12-16 03:54:00 -05002951 if (!error)
Tetsuo Handaea0d3ab2010-06-02 13:24:43 +09002952 error = security_path_truncate(path);
Al Viro7715b522009-12-16 03:54:00 -05002953 if (!error) {
2954 error = do_truncate(path->dentry, 0,
2955 ATTR_MTIME|ATTR_CTIME|ATTR_OPEN,
Jeff Laytone1181ee2010-12-07 16:19:50 -05002956 filp);
Al Viro7715b522009-12-16 03:54:00 -05002957 }
2958 put_write_access(inode);
Mimi Zoharacd0c932009-09-04 13:08:46 -04002959 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002960}
2961
Dave Hansend57999e2008-02-15 14:37:27 -08002962static inline int open_to_namei_flags(int flag)
2963{
Al Viro8a5e9292011-06-25 19:15:54 -04002964 if ((flag & O_ACCMODE) == 3)
2965 flag--;
Dave Hansend57999e2008-02-15 14:37:27 -08002966 return flag;
2967}
2968
Al Virod3607752016-03-25 15:21:09 -04002969static int may_o_create(const struct path *dir, struct dentry *dentry, umode_t mode)
Miklos Szeredid18e9002012-06-05 15:10:17 +02002970{
2971 int error = security_path_mknod(dir, dentry, mode, 0);
2972 if (error)
2973 return error;
2974
2975 error = inode_permission(dir->dentry->d_inode, MAY_WRITE | MAY_EXEC);
2976 if (error)
2977 return error;
2978
2979 return security_inode_create(dir->dentry->d_inode, dentry, mode);
2980}
2981
David Howells1acf0af2012-06-14 16:13:46 +01002982/*
2983 * Attempt to atomically look up, create and open a file from a negative
2984 * dentry.
2985 *
2986 * Returns 0 if successful. The file will have been created and attached to
2987 * @file by the filesystem calling finish_open().
2988 *
2989 * Returns 1 if the file was looked up only or didn't need creating. The
2990 * caller will need to perform the open themselves. @path will have been
2991 * updated to point to the new dentry. This may be negative.
2992 *
2993 * Returns an error code otherwise.
2994 */
Al Viro2675a4e2012-06-22 12:41:10 +04002995static int atomic_open(struct nameidata *nd, struct dentry *dentry,
2996 struct path *path, struct file *file,
2997 const struct open_flags *op,
Al Viro1643b432016-04-27 19:14:10 -04002998 int open_flag, umode_t mode,
Al Viro2675a4e2012-06-22 12:41:10 +04002999 int *opened)
Miklos Szeredid18e9002012-06-05 15:10:17 +02003000{
Miklos Szeredid18e9002012-06-05 15:10:17 +02003001 struct dentry *const DENTRY_NOT_SET = (void *) -1UL;
Miklos Szeredid18e9002012-06-05 15:10:17 +02003002 struct inode *dir = nd->path.dentry->d_inode;
Miklos Szeredid18e9002012-06-05 15:10:17 +02003003 int error;
Miklos Szeredid18e9002012-06-05 15:10:17 +02003004
Al Viro384f26e2016-04-28 02:03:55 -04003005 if (!(~open_flag & (O_EXCL | O_CREAT))) /* both O_EXCL and O_CREAT */
Miklos Szeredid18e9002012-06-05 15:10:17 +02003006 open_flag &= ~O_TRUNC;
Miklos Szeredid18e9002012-06-05 15:10:17 +02003007
Miklos Szeredid18e9002012-06-05 15:10:17 +02003008 if (nd->flags & LOOKUP_DIRECTORY)
3009 open_flag |= O_DIRECTORY;
3010
Al Viro30d90492012-06-22 12:40:19 +04003011 file->f_path.dentry = DENTRY_NOT_SET;
3012 file->f_path.mnt = nd->path.mnt;
Al Viro0fb1ea02016-04-27 14:13:10 -04003013 error = dir->i_op->atomic_open(dir, dentry, file,
3014 open_to_namei_flags(open_flag),
3015 mode, opened);
Al Viro6fbd0712016-04-28 11:50:59 -04003016 d_lookup_done(dentry);
Al Viro384f26e2016-04-28 02:03:55 -04003017 if (!error) {
3018 /*
3019 * We didn't have the inode before the open, so check open
3020 * permission here.
3021 */
3022 int acc_mode = op->acc_mode;
3023 if (*opened & FILE_CREATED) {
3024 WARN_ON(!(open_flag & O_CREAT));
3025 fsnotify_create(dir, dentry);
3026 acc_mode = 0;
3027 }
3028 error = may_open(&file->f_path, acc_mode, open_flag);
3029 if (WARN_ON(error > 0))
3030 error = -EINVAL;
3031 } else if (error > 0) {
Al Viro30d90492012-06-22 12:40:19 +04003032 if (WARN_ON(file->f_path.dentry == DENTRY_NOT_SET)) {
Al Viro2675a4e2012-06-22 12:41:10 +04003033 error = -EIO;
Al Viro03da6332013-09-16 19:22:33 -04003034 } else {
Al Viro384f26e2016-04-28 02:03:55 -04003035 if (file->f_path.dentry) {
3036 dput(dentry);
3037 dentry = file->f_path.dentry;
Al Viro03da6332013-09-16 19:22:33 -04003038 }
Al Viro384f26e2016-04-28 02:03:55 -04003039 if (*opened & FILE_CREATED)
3040 fsnotify_create(dir, dentry);
3041 path->dentry = dentry;
3042 path->mnt = nd->path.mnt;
3043 return 1;
Sage Weil62b2ce92012-08-15 13:30:12 -07003044 }
Miklos Szeredid18e9002012-06-05 15:10:17 +02003045 }
Miklos Szeredid18e9002012-06-05 15:10:17 +02003046 dput(dentry);
Al Viro2675a4e2012-06-22 12:41:10 +04003047 return error;
Miklos Szeredid18e9002012-06-05 15:10:17 +02003048}
3049
Nick Piggin31e6b012011-01-07 17:49:52 +11003050/*
David Howells1acf0af2012-06-14 16:13:46 +01003051 * Look up and maybe create and open the last component.
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003052 *
3053 * Must be called with i_mutex held on parent.
3054 *
David Howells1acf0af2012-06-14 16:13:46 +01003055 * Returns 0 if the file was successfully atomically created (if necessary) and
3056 * opened. In this case the file will be returned attached to @file.
3057 *
3058 * Returns 1 if the file was not completely opened at this time, though lookups
3059 * and creations will have been performed and the dentry returned in @path will
3060 * be positive upon return if O_CREAT was specified. If O_CREAT wasn't
3061 * specified then a negative dentry may be returned.
3062 *
3063 * An error code is returned otherwise.
3064 *
3065 * FILE_CREATE will be set in @*opened if the dentry was created and will be
3066 * cleared otherwise prior to returning.
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003067 */
Al Viro2675a4e2012-06-22 12:41:10 +04003068static int lookup_open(struct nameidata *nd, struct path *path,
3069 struct file *file,
3070 const struct open_flags *op,
Al Viro64894cf2012-07-31 00:53:35 +04003071 bool got_write, int *opened)
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003072{
3073 struct dentry *dir = nd->path.dentry;
Miklos Szeredi54ef4872012-06-05 15:10:16 +02003074 struct inode *dir_inode = dir->d_inode;
Al Viro1643b432016-04-27 19:14:10 -04003075 int open_flag = op->open_flag;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003076 struct dentry *dentry;
Al Viro1643b432016-04-27 19:14:10 -04003077 int error, create_error = 0;
Al Viro1643b432016-04-27 19:14:10 -04003078 umode_t mode = op->mode;
Al Viro6fbd0712016-04-28 11:50:59 -04003079 DECLARE_WAIT_QUEUE_HEAD_ONSTACK(wq);
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003080
Al Viroce8644f2016-04-26 14:17:56 -04003081 if (unlikely(IS_DEADDIR(dir_inode)))
3082 return -ENOENT;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003083
Al Viro47237682012-06-10 05:01:45 -04003084 *opened &= ~FILE_CREATED;
Al Viro6fbd0712016-04-28 11:50:59 -04003085 dentry = d_lookup(dir, &nd->last);
3086 for (;;) {
3087 if (!dentry) {
3088 dentry = d_alloc_parallel(dir, &nd->last, &wq);
3089 if (IS_ERR(dentry))
3090 return PTR_ERR(dentry);
3091 }
3092 if (d_in_lookup(dentry))
3093 break;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003094
Al Viro6fbd0712016-04-28 11:50:59 -04003095 if (!(dentry->d_flags & DCACHE_OP_REVALIDATE))
3096 break;
3097
3098 error = d_revalidate(dentry, nd->flags);
3099 if (likely(error > 0))
3100 break;
3101 if (error)
3102 goto out_dput;
3103 d_invalidate(dentry);
3104 dput(dentry);
3105 dentry = NULL;
3106 }
3107 if (dentry->d_inode) {
Al Viro6c51e512016-03-05 20:09:32 -05003108 /* Cached positive dentry: will open in f_op->open */
Miklos Szeredid18e9002012-06-05 15:10:17 +02003109 goto out_no_open;
Al Viro6c51e512016-03-05 20:09:32 -05003110 }
Miklos Szeredid18e9002012-06-05 15:10:17 +02003111
Al Viro1643b432016-04-27 19:14:10 -04003112 /*
3113 * Checking write permission is tricky, bacuse we don't know if we are
3114 * going to actually need it: O_CREAT opens should work as long as the
3115 * file exists. But checking existence breaks atomicity. The trick is
3116 * to check access and if not granted clear O_CREAT from the flags.
3117 *
3118 * Another problem is returing the "right" error value (e.g. for an
3119 * O_EXCL open we want to return EEXIST not EROFS).
3120 */
3121 if (open_flag & O_CREAT) {
3122 if (!IS_POSIXACL(dir->d_inode))
3123 mode &= ~current_umask();
3124 if (unlikely(!got_write)) {
3125 create_error = -EROFS;
3126 open_flag &= ~O_CREAT;
3127 if (open_flag & (O_EXCL | O_TRUNC))
3128 goto no_open;
3129 /* No side effects, safe to clear O_CREAT */
3130 } else {
3131 create_error = may_o_create(&nd->path, dentry, mode);
3132 if (create_error) {
3133 open_flag &= ~O_CREAT;
3134 if (open_flag & O_EXCL)
3135 goto no_open;
3136 }
3137 }
3138 } else if ((open_flag & (O_TRUNC|O_WRONLY|O_RDWR)) &&
3139 unlikely(!got_write)) {
3140 /*
3141 * No O_CREATE -> atomicity not a requirement -> fall
3142 * back to lookup + open
3143 */
3144 goto no_open;
Miklos Szeredid18e9002012-06-05 15:10:17 +02003145 }
3146
Al Viro1643b432016-04-27 19:14:10 -04003147 if (dir_inode->i_op->atomic_open) {
3148 error = atomic_open(nd, dentry, path, file, op, open_flag,
3149 mode, opened);
3150 if (unlikely(error == -ENOENT) && create_error)
3151 error = create_error;
3152 return error;
3153 }
Miklos Szeredi54ef4872012-06-05 15:10:16 +02003154
Al Viro1643b432016-04-27 19:14:10 -04003155no_open:
Al Viro6fbd0712016-04-28 11:50:59 -04003156 if (d_in_lookup(dentry)) {
Al Viro12fa5e22016-04-28 11:19:43 -04003157 struct dentry *res = dir_inode->i_op->lookup(dir_inode, dentry,
3158 nd->flags);
Al Viro6fbd0712016-04-28 11:50:59 -04003159 d_lookup_done(dentry);
Al Viro12fa5e22016-04-28 11:19:43 -04003160 if (unlikely(res)) {
3161 if (IS_ERR(res)) {
3162 error = PTR_ERR(res);
3163 goto out_dput;
3164 }
3165 dput(dentry);
3166 dentry = res;
3167 }
Miklos Szeredi54ef4872012-06-05 15:10:16 +02003168 }
3169
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003170 /* Negative dentry, just create the file */
Al Viro1643b432016-04-27 19:14:10 -04003171 if (!dentry->d_inode && (open_flag & O_CREAT)) {
Al Viro47237682012-06-10 05:01:45 -04003172 *opened |= FILE_CREATED;
Al Viroce8644f2016-04-26 14:17:56 -04003173 audit_inode_child(dir_inode, dentry, AUDIT_TYPE_CHILD_CREATE);
Al Viroce8644f2016-04-26 14:17:56 -04003174 if (!dir_inode->i_op->create) {
3175 error = -EACCES;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003176 goto out_dput;
Miklos Szeredi77d660a2012-06-05 15:10:30 +02003177 }
Al Viroce8644f2016-04-26 14:17:56 -04003178 error = dir_inode->i_op->create(dir_inode, dentry, mode,
Al Viro1643b432016-04-27 19:14:10 -04003179 open_flag & O_EXCL);
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003180 if (error)
3181 goto out_dput;
Al Viroce8644f2016-04-26 14:17:56 -04003182 fsnotify_create(dir_inode, dentry);
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003183 }
Al Viro1643b432016-04-27 19:14:10 -04003184 if (unlikely(create_error) && !dentry->d_inode) {
3185 error = create_error;
3186 goto out_dput;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003187 }
Miklos Szeredid18e9002012-06-05 15:10:17 +02003188out_no_open:
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003189 path->dentry = dentry;
3190 path->mnt = nd->path.mnt;
Al Viro2675a4e2012-06-22 12:41:10 +04003191 return 1;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003192
3193out_dput:
3194 dput(dentry);
Al Viro2675a4e2012-06-22 12:41:10 +04003195 return error;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003196}
3197
3198/*
Al Virofe2d35f2011-03-05 22:58:25 -05003199 * Handle the last step of open()
Nick Piggin31e6b012011-01-07 17:49:52 +11003200 */
Al Viro896475d2015-04-22 18:02:17 -04003201static int do_last(struct nameidata *nd,
Al Viro2675a4e2012-06-22 12:41:10 +04003202 struct file *file, const struct open_flags *op,
Al Viro76ae2a52015-05-12 18:44:32 -04003203 int *opened)
Al Virofb1cc552009-12-24 01:58:28 -05003204{
Al Viroa1e28032009-12-24 02:12:06 -05003205 struct dentry *dir = nd->path.dentry;
Al Viroca344a892011-03-09 00:36:45 -05003206 int open_flag = op->open_flag;
Miklos Szeredi77d660a2012-06-05 15:10:30 +02003207 bool will_truncate = (open_flag & O_TRUNC) != 0;
Al Viro64894cf2012-07-31 00:53:35 +04003208 bool got_write = false;
Al Virobcda7652011-03-13 16:42:14 -04003209 int acc_mode = op->acc_mode;
Al Viro254cf582015-05-05 09:40:46 -04003210 unsigned seq;
Miklos Szeredia1eb3312012-05-21 17:30:07 +02003211 struct inode *inode;
Miklos Szeredi16b1c1c2012-05-21 17:30:19 +02003212 struct path save_parent = { .dentry = NULL, .mnt = NULL };
Al Viro896475d2015-04-22 18:02:17 -04003213 struct path path;
Miklos Szeredi16b1c1c2012-05-21 17:30:19 +02003214 bool retried = false;
Al Viro16c2cd72011-02-22 15:50:10 -05003215 int error;
Al Virofb1cc552009-12-24 01:58:28 -05003216
Al Viroc3e380b2011-02-23 13:39:45 -05003217 nd->flags &= ~LOOKUP_PARENT;
3218 nd->flags |= op->intent;
3219
Al Virobc77daa2013-06-06 09:12:33 -04003220 if (nd->last_type != LAST_NORM) {
Al Virofe2d35f2011-03-05 22:58:25 -05003221 error = handle_dots(nd, nd->last_type);
Al Virodeb106c2015-05-08 18:05:21 -04003222 if (unlikely(error))
Al Viro2675a4e2012-06-22 12:41:10 +04003223 return error;
Miklos Szeredie83db162012-06-05 15:10:29 +02003224 goto finish_open;
Al Viro1f36f772009-12-26 10:56:19 -05003225 }
Al Viro67ee3ad2009-12-26 07:01:01 -05003226
Al Viroca344a892011-03-09 00:36:45 -05003227 if (!(open_flag & O_CREAT)) {
Al Virofe2d35f2011-03-05 22:58:25 -05003228 if (nd->last.name[nd->last.len])
3229 nd->flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
3230 /* we _can_ be in RCU mode here */
Al Viro254cf582015-05-05 09:40:46 -04003231 error = lookup_fast(nd, &path, &inode, &seq);
Al Viroe9742b52016-03-05 22:04:59 -05003232 if (likely(error > 0))
Miklos Szeredi71574862012-06-05 15:10:14 +02003233 goto finish_lookup;
Miklos Szeredia1eb3312012-05-21 17:30:07 +02003234
Miklos Szeredi71574862012-06-05 15:10:14 +02003235 if (error < 0)
Al Virodeb106c2015-05-08 18:05:21 -04003236 return error;
Miklos Szeredi37d7fff2012-06-05 15:10:12 +02003237
Miklos Szeredi71574862012-06-05 15:10:14 +02003238 BUG_ON(nd->inode != dir->d_inode);
Al Viro6583fe22016-03-05 18:14:03 -05003239 BUG_ON(nd->flags & LOOKUP_RCU);
Miklos Szeredib6183df2012-06-05 15:10:13 +02003240 } else {
3241 /* create side of things */
3242 /*
3243 * This will *only* deal with leaving RCU mode - LOOKUP_JUMPED
3244 * has been cleared when we got to the last component we are
3245 * about to look up
3246 */
3247 error = complete_walk(nd);
Al Viroe8bb73d2015-05-08 16:28:42 -04003248 if (error)
Al Viro2675a4e2012-06-22 12:41:10 +04003249 return error;
Miklos Szeredib6183df2012-06-05 15:10:13 +02003250
Al Viro76ae2a52015-05-12 18:44:32 -04003251 audit_inode(nd->name, dir, LOOKUP_PARENT);
Miklos Szeredib6183df2012-06-05 15:10:13 +02003252 /* trailing slashes? */
Al Virodeb106c2015-05-08 18:05:21 -04003253 if (unlikely(nd->last.name[nd->last.len]))
3254 return -EISDIR;
Al Virofe2d35f2011-03-05 22:58:25 -05003255 }
3256
Miklos Szeredi16b1c1c2012-05-21 17:30:19 +02003257retry_lookup:
Al Viro9cf843e2016-04-28 19:35:16 -04003258 if (open_flag & (O_CREAT | O_TRUNC | O_WRONLY | O_RDWR)) {
Al Viro64894cf2012-07-31 00:53:35 +04003259 error = mnt_want_write(nd->path.mnt);
3260 if (!error)
3261 got_write = true;
3262 /*
3263 * do _not_ fail yet - we might not need that or fail with
3264 * a different error; let lookup_open() decide; we'll be
3265 * dropping this one anyway.
3266 */
3267 }
Al Viro9cf843e2016-04-28 19:35:16 -04003268 if (open_flag & O_CREAT)
3269 inode_lock(dir->d_inode);
3270 else
3271 inode_lock_shared(dir->d_inode);
Al Viro896475d2015-04-22 18:02:17 -04003272 error = lookup_open(nd, &path, file, op, got_write, opened);
Al Viro9cf843e2016-04-28 19:35:16 -04003273 if (open_flag & O_CREAT)
3274 inode_unlock(dir->d_inode);
3275 else
3276 inode_unlock_shared(dir->d_inode);
Al Viroa1e28032009-12-24 02:12:06 -05003277
Al Viro2675a4e2012-06-22 12:41:10 +04003278 if (error <= 0) {
3279 if (error)
Miklos Szeredid18e9002012-06-05 15:10:17 +02003280 goto out;
3281
Al Viro47237682012-06-10 05:01:45 -04003282 if ((*opened & FILE_CREATED) ||
Al Viro496ad9a2013-01-23 17:07:38 -05003283 !S_ISREG(file_inode(file)->i_mode))
Miklos Szeredi77d660a2012-06-05 15:10:30 +02003284 will_truncate = false;
Miklos Szeredid18e9002012-06-05 15:10:17 +02003285
Al Viro76ae2a52015-05-12 18:44:32 -04003286 audit_inode(nd->name, file->f_path.dentry, 0);
Miklos Szeredid18e9002012-06-05 15:10:17 +02003287 goto opened;
3288 }
Al Virofb1cc552009-12-24 01:58:28 -05003289
Al Viro47237682012-06-10 05:01:45 -04003290 if (*opened & FILE_CREATED) {
Al Viro9b44f1b2011-03-09 00:17:27 -05003291 /* Don't check for write permission, don't truncate */
Al Viroca344a892011-03-09 00:36:45 -05003292 open_flag &= ~O_TRUNC;
Miklos Szeredi77d660a2012-06-05 15:10:30 +02003293 will_truncate = false;
Al Viro62fb4a12015-12-26 22:33:24 -05003294 acc_mode = 0;
Al Viro896475d2015-04-22 18:02:17 -04003295 path_to_nameidata(&path, nd);
Miklos Szeredie83db162012-06-05 15:10:29 +02003296 goto finish_open_created;
Al Virofb1cc552009-12-24 01:58:28 -05003297 }
3298
3299 /*
Miklos Szeredid18e9002012-06-05 15:10:17 +02003300 * If atomic_open() acquired write access it is dropped now due to
3301 * possible mount and symlink following (this might be optimized away if
3302 * necessary...)
3303 */
Al Viro64894cf2012-07-31 00:53:35 +04003304 if (got_write) {
Miklos Szeredid18e9002012-06-05 15:10:17 +02003305 mnt_drop_write(nd->path.mnt);
Al Viro64894cf2012-07-31 00:53:35 +04003306 got_write = false;
Miklos Szeredid18e9002012-06-05 15:10:17 +02003307 }
3308
Al Viro6583fe22016-03-05 18:14:03 -05003309 if (unlikely(d_is_negative(path.dentry))) {
3310 path_to_nameidata(&path, nd);
3311 return -ENOENT;
3312 }
3313
3314 /*
3315 * create/update audit record if it already exists.
3316 */
3317 audit_inode(nd->name, path.dentry, 0);
3318
Al Virodeb106c2015-05-08 18:05:21 -04003319 if (unlikely((open_flag & (O_EXCL | O_CREAT)) == (O_EXCL | O_CREAT))) {
3320 path_to_nameidata(&path, nd);
3321 return -EEXIST;
3322 }
Al Virofb1cc552009-12-24 01:58:28 -05003323
NeilBrown756daf22015-03-23 13:37:38 +11003324 error = follow_managed(&path, nd);
Al Virodeb106c2015-05-08 18:05:21 -04003325 if (unlikely(error < 0))
3326 return error;
Al Viroa3fbbde2011-11-07 21:21:26 +00003327
Al Viro254cf582015-05-05 09:40:46 -04003328 seq = 0; /* out of RCU mode, so the value doesn't matter */
Al Virod4565642016-02-27 19:23:16 -05003329 inode = d_backing_inode(path.dentry);
Al Viro766c4cb2015-05-07 19:24:57 -04003330finish_lookup:
Al Virod63ff282015-05-04 18:13:23 -04003331 if (nd->depth)
3332 put_link(nd);
Al Viro181548c2015-05-07 19:54:34 -04003333 error = should_follow_link(nd, &path, nd->flags & LOOKUP_FOLLOW,
3334 inode, seq);
Al Virodeb106c2015-05-08 18:05:21 -04003335 if (unlikely(error))
Al Virod63ff282015-05-04 18:13:23 -04003336 return error;
Al Virofb1cc552009-12-24 01:58:28 -05003337
Al Viro896475d2015-04-22 18:02:17 -04003338 if ((nd->flags & LOOKUP_RCU) || nd->path.mnt != path.mnt) {
3339 path_to_nameidata(&path, nd);
Miklos Szeredi16b1c1c2012-05-21 17:30:19 +02003340 } else {
3341 save_parent.dentry = nd->path.dentry;
Al Viro896475d2015-04-22 18:02:17 -04003342 save_parent.mnt = mntget(path.mnt);
3343 nd->path.dentry = path.dentry;
Miklos Szeredi16b1c1c2012-05-21 17:30:19 +02003344
3345 }
Miklos Szeredidecf3402012-05-21 17:30:08 +02003346 nd->inode = inode;
Al Viro254cf582015-05-05 09:40:46 -04003347 nd->seq = seq;
Al Viroa3fbbde2011-11-07 21:21:26 +00003348 /* Why this, you ask? _Now_ we might have grown LOOKUP_JUMPED... */
Al Virobc77daa2013-06-06 09:12:33 -04003349finish_open:
Al Viroa3fbbde2011-11-07 21:21:26 +00003350 error = complete_walk(nd);
Miklos Szeredi16b1c1c2012-05-21 17:30:19 +02003351 if (error) {
3352 path_put(&save_parent);
Al Viro2675a4e2012-06-22 12:41:10 +04003353 return error;
Miklos Szeredi16b1c1c2012-05-21 17:30:19 +02003354 }
Al Viro76ae2a52015-05-12 18:44:32 -04003355 audit_inode(nd->name, nd->path.dentry, 0);
Al Virofb1cc552009-12-24 01:58:28 -05003356 error = -EISDIR;
Miklos Szeredi44b1d532014-04-01 17:08:41 +02003357 if ((open_flag & O_CREAT) && d_is_dir(nd->path.dentry))
Al Viro2675a4e2012-06-22 12:41:10 +04003358 goto out;
Miklos Szerediaf2f5542012-05-21 17:30:11 +02003359 error = -ENOTDIR;
Miklos Szeredi44b1d532014-04-01 17:08:41 +02003360 if ((nd->flags & LOOKUP_DIRECTORY) && !d_can_lookup(nd->path.dentry))
Al Viro2675a4e2012-06-22 12:41:10 +04003361 goto out;
David Howells4bbcbd32015-03-17 22:16:40 +00003362 if (!d_is_reg(nd->path.dentry))
Miklos Szeredi77d660a2012-06-05 15:10:30 +02003363 will_truncate = false;
Al Viro6c0d46c2011-03-09 00:59:59 -05003364
Al Viro0f9d1a12011-03-09 00:13:14 -05003365 if (will_truncate) {
3366 error = mnt_want_write(nd->path.mnt);
3367 if (error)
Al Viro2675a4e2012-06-22 12:41:10 +04003368 goto out;
Al Viro64894cf2012-07-31 00:53:35 +04003369 got_write = true;
Al Viro0f9d1a12011-03-09 00:13:14 -05003370 }
Miklos Szeredie83db162012-06-05 15:10:29 +02003371finish_open_created:
Al Viro6ac08702016-04-26 00:02:50 -04003372 error = may_open(&nd->path, acc_mode, open_flag);
3373 if (error)
3374 goto out;
Miklos Szeredi4aa7c632014-10-24 00:14:35 +02003375 BUG_ON(*opened & FILE_OPENED); /* once it's opened, it's opened */
3376 error = vfs_open(&nd->path, file, current_cred());
3377 if (!error) {
3378 *opened |= FILE_OPENED;
3379 } else {
Al Viro30d90492012-06-22 12:40:19 +04003380 if (error == -EOPENSTALE)
Miklos Szeredif60dc3d2012-06-05 15:10:31 +02003381 goto stale_open;
Miklos Szeredi015c3bb2012-06-05 15:10:27 +02003382 goto out;
Miklos Szeredif60dc3d2012-06-05 15:10:31 +02003383 }
Miklos Szeredia8277b92012-06-05 15:10:32 +02003384opened:
Al Viro2675a4e2012-06-22 12:41:10 +04003385 error = open_check_o_direct(file);
Al Virofe9ec822016-04-27 03:14:20 -04003386 if (!error)
3387 error = ima_file_check(file, op->acc_mode, *opened);
3388 if (!error && will_truncate)
Al Viro2675a4e2012-06-22 12:41:10 +04003389 error = handle_truncate(file);
Al Viroca344a892011-03-09 00:36:45 -05003390out:
Al Virofe9ec822016-04-27 03:14:20 -04003391 if (unlikely(error) && (*opened & FILE_OPENED))
3392 fput(file);
Al Viroc80567c2016-02-27 19:17:33 -05003393 if (unlikely(error > 0)) {
3394 WARN_ON(1);
3395 error = -EINVAL;
3396 }
Al Viro64894cf2012-07-31 00:53:35 +04003397 if (got_write)
Al Viro0f9d1a12011-03-09 00:13:14 -05003398 mnt_drop_write(nd->path.mnt);
Miklos Szeredi16b1c1c2012-05-21 17:30:19 +02003399 path_put(&save_parent);
Al Viro2675a4e2012-06-22 12:41:10 +04003400 return error;
Al Virofb1cc552009-12-24 01:58:28 -05003401
Miklos Szeredif60dc3d2012-06-05 15:10:31 +02003402stale_open:
3403 /* If no saved parent or already retried then can't retry */
3404 if (!save_parent.dentry || retried)
3405 goto out;
3406
3407 BUG_ON(save_parent.dentry != dir);
3408 path_put(&nd->path);
3409 nd->path = save_parent;
3410 nd->inode = dir->d_inode;
3411 save_parent.mnt = NULL;
3412 save_parent.dentry = NULL;
Al Viro64894cf2012-07-31 00:53:35 +04003413 if (got_write) {
Miklos Szeredif60dc3d2012-06-05 15:10:31 +02003414 mnt_drop_write(nd->path.mnt);
Al Viro64894cf2012-07-31 00:53:35 +04003415 got_write = false;
Miklos Szeredif60dc3d2012-06-05 15:10:31 +02003416 }
3417 retried = true;
3418 goto retry_lookup;
Al Virofb1cc552009-12-24 01:58:28 -05003419}
3420
Al Viroc8a53ee2015-05-12 18:43:07 -04003421static int do_tmpfile(struct nameidata *nd, unsigned flags,
Al Viro60545d02013-06-07 01:20:27 -04003422 const struct open_flags *op,
3423 struct file *file, int *opened)
3424{
3425 static const struct qstr name = QSTR_INIT("/", 1);
Al Viro625b6d12015-05-12 16:36:12 -04003426 struct dentry *child;
Al Viro60545d02013-06-07 01:20:27 -04003427 struct inode *dir;
Al Viro625b6d12015-05-12 16:36:12 -04003428 struct path path;
Al Viroc8a53ee2015-05-12 18:43:07 -04003429 int error = path_lookupat(nd, flags | LOOKUP_DIRECTORY, &path);
Al Viro60545d02013-06-07 01:20:27 -04003430 if (unlikely(error))
3431 return error;
Al Viro625b6d12015-05-12 16:36:12 -04003432 error = mnt_want_write(path.mnt);
Al Viro60545d02013-06-07 01:20:27 -04003433 if (unlikely(error))
3434 goto out;
Al Viro625b6d12015-05-12 16:36:12 -04003435 dir = path.dentry->d_inode;
Al Viro60545d02013-06-07 01:20:27 -04003436 /* we want directory to be writable */
Al Viro625b6d12015-05-12 16:36:12 -04003437 error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
Al Viro60545d02013-06-07 01:20:27 -04003438 if (error)
3439 goto out2;
Al Viro60545d02013-06-07 01:20:27 -04003440 if (!dir->i_op->tmpfile) {
3441 error = -EOPNOTSUPP;
3442 goto out2;
3443 }
Al Viro625b6d12015-05-12 16:36:12 -04003444 child = d_alloc(path.dentry, &name);
Al Viro60545d02013-06-07 01:20:27 -04003445 if (unlikely(!child)) {
3446 error = -ENOMEM;
3447 goto out2;
3448 }
Al Viro625b6d12015-05-12 16:36:12 -04003449 dput(path.dentry);
3450 path.dentry = child;
3451 error = dir->i_op->tmpfile(dir, child, op->mode);
Al Viro60545d02013-06-07 01:20:27 -04003452 if (error)
3453 goto out2;
Al Viroc8a53ee2015-05-12 18:43:07 -04003454 audit_inode(nd->name, child, 0);
Eric Rannaud69a91c22014-10-30 01:51:01 -07003455 /* Don't check for other permissions, the inode was just created */
Al Viro62fb4a12015-12-26 22:33:24 -05003456 error = may_open(&path, 0, op->open_flag);
Al Viro60545d02013-06-07 01:20:27 -04003457 if (error)
3458 goto out2;
Al Viro625b6d12015-05-12 16:36:12 -04003459 file->f_path.mnt = path.mnt;
3460 error = finish_open(file, child, NULL, opened);
Al Viro60545d02013-06-07 01:20:27 -04003461 if (error)
3462 goto out2;
3463 error = open_check_o_direct(file);
Al Virof4e0c302013-06-11 08:34:36 +04003464 if (error) {
Al Viro60545d02013-06-07 01:20:27 -04003465 fput(file);
Al Virof4e0c302013-06-11 08:34:36 +04003466 } else if (!(op->open_flag & O_EXCL)) {
3467 struct inode *inode = file_inode(file);
3468 spin_lock(&inode->i_lock);
3469 inode->i_state |= I_LINKABLE;
3470 spin_unlock(&inode->i_lock);
3471 }
Al Viro60545d02013-06-07 01:20:27 -04003472out2:
Al Viro625b6d12015-05-12 16:36:12 -04003473 mnt_drop_write(path.mnt);
Al Viro60545d02013-06-07 01:20:27 -04003474out:
Al Viro625b6d12015-05-12 16:36:12 -04003475 path_put(&path);
Al Viro60545d02013-06-07 01:20:27 -04003476 return error;
3477}
3478
Al Viro6ac08702016-04-26 00:02:50 -04003479static int do_o_path(struct nameidata *nd, unsigned flags, struct file *file)
3480{
3481 struct path path;
3482 int error = path_lookupat(nd, flags, &path);
3483 if (!error) {
3484 audit_inode(nd->name, path.dentry, 0);
3485 error = vfs_open(&path, file, current_cred());
3486 path_put(&path);
3487 }
3488 return error;
3489}
3490
Al Viroc8a53ee2015-05-12 18:43:07 -04003491static struct file *path_openat(struct nameidata *nd,
3492 const struct open_flags *op, unsigned flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003493{
Al Viro368ee9b2015-05-08 17:19:59 -04003494 const char *s;
Al Viro30d90492012-06-22 12:40:19 +04003495 struct file *file;
Al Viro47237682012-06-10 05:01:45 -04003496 int opened = 0;
Al Viro13aab422011-02-23 17:54:08 -05003497 int error;
Nick Piggin31e6b012011-01-07 17:49:52 +11003498
Al Viro30d90492012-06-22 12:40:19 +04003499 file = get_empty_filp();
Al Viro1afc99b2013-02-14 20:41:04 -05003500 if (IS_ERR(file))
3501 return file;
Nick Piggin31e6b012011-01-07 17:49:52 +11003502
Al Viro30d90492012-06-22 12:40:19 +04003503 file->f_flags = op->open_flag;
Nick Piggin31e6b012011-01-07 17:49:52 +11003504
Al Virobb458c62013-07-13 13:26:37 +04003505 if (unlikely(file->f_flags & __O_TMPFILE)) {
Al Viroc8a53ee2015-05-12 18:43:07 -04003506 error = do_tmpfile(nd, flags, op, file, &opened);
Al Virof15133d2015-05-08 22:53:15 -04003507 goto out2;
Al Viro60545d02013-06-07 01:20:27 -04003508 }
3509
Al Viro6ac08702016-04-26 00:02:50 -04003510 if (unlikely(file->f_flags & O_PATH)) {
3511 error = do_o_path(nd, flags, file);
3512 if (!error)
3513 opened |= FILE_OPENED;
3514 goto out2;
3515 }
3516
Al Viroc8a53ee2015-05-12 18:43:07 -04003517 s = path_init(nd, flags);
Al Viro368ee9b2015-05-08 17:19:59 -04003518 if (IS_ERR(s)) {
3519 put_filp(file);
3520 return ERR_CAST(s);
3521 }
Al Viro3bdba282015-05-08 17:37:07 -04003522 while (!(error = link_path_walk(s, nd)) &&
Al Viro76ae2a52015-05-12 18:44:32 -04003523 (error = do_last(nd, file, op, &opened)) > 0) {
Al Viro73d049a2011-03-11 12:08:24 -05003524 nd->flags &= ~(LOOKUP_OPEN|LOOKUP_CREATE|LOOKUP_EXCL);
Al Viro3bdba282015-05-08 17:37:07 -04003525 s = trailing_symlink(nd);
3526 if (IS_ERR(s)) {
3527 error = PTR_ERR(s);
Al Viro2675a4e2012-06-22 12:41:10 +04003528 break;
Al Viro3bdba282015-05-08 17:37:07 -04003529 }
Al Viro806b6812009-12-26 07:16:40 -05003530 }
Al Virodeb106c2015-05-08 18:05:21 -04003531 terminate_walk(nd);
Al Virof15133d2015-05-08 22:53:15 -04003532out2:
Al Viro2675a4e2012-06-22 12:41:10 +04003533 if (!(opened & FILE_OPENED)) {
3534 BUG_ON(!error);
Al Viro30d90492012-06-22 12:40:19 +04003535 put_filp(file);
Miklos Szeredi015c3bb2012-06-05 15:10:27 +02003536 }
Al Viro2675a4e2012-06-22 12:41:10 +04003537 if (unlikely(error)) {
3538 if (error == -EOPENSTALE) {
3539 if (flags & LOOKUP_RCU)
3540 error = -ECHILD;
3541 else
3542 error = -ESTALE;
3543 }
3544 file = ERR_PTR(error);
3545 }
3546 return file;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003547}
3548
Jeff Layton669abf42012-10-10 16:43:10 -04003549struct file *do_filp_open(int dfd, struct filename *pathname,
Al Virof9652e12013-06-11 08:23:01 +04003550 const struct open_flags *op)
Al Viro13aab422011-02-23 17:54:08 -05003551{
Al Viro9883d182015-05-13 07:28:08 -04003552 struct nameidata nd;
Al Virof9652e12013-06-11 08:23:01 +04003553 int flags = op->lookup_flags;
Al Viro13aab422011-02-23 17:54:08 -05003554 struct file *filp;
3555
Al Viro9883d182015-05-13 07:28:08 -04003556 set_nameidata(&nd, dfd, pathname);
Al Viroc8a53ee2015-05-12 18:43:07 -04003557 filp = path_openat(&nd, op, flags | LOOKUP_RCU);
Al Viro13aab422011-02-23 17:54:08 -05003558 if (unlikely(filp == ERR_PTR(-ECHILD)))
Al Viroc8a53ee2015-05-12 18:43:07 -04003559 filp = path_openat(&nd, op, flags);
Al Viro13aab422011-02-23 17:54:08 -05003560 if (unlikely(filp == ERR_PTR(-ESTALE)))
Al Viroc8a53ee2015-05-12 18:43:07 -04003561 filp = path_openat(&nd, op, flags | LOOKUP_REVAL);
Al Viro9883d182015-05-13 07:28:08 -04003562 restore_nameidata();
Al Viro13aab422011-02-23 17:54:08 -05003563 return filp;
3564}
3565
Al Viro73d049a2011-03-11 12:08:24 -05003566struct file *do_file_open_root(struct dentry *dentry, struct vfsmount *mnt,
Al Virof9652e12013-06-11 08:23:01 +04003567 const char *name, const struct open_flags *op)
Al Viro73d049a2011-03-11 12:08:24 -05003568{
Al Viro9883d182015-05-13 07:28:08 -04003569 struct nameidata nd;
Al Viro73d049a2011-03-11 12:08:24 -05003570 struct file *file;
Paul Moore51689102015-01-22 00:00:03 -05003571 struct filename *filename;
Al Virof9652e12013-06-11 08:23:01 +04003572 int flags = op->lookup_flags | LOOKUP_ROOT;
Al Viro73d049a2011-03-11 12:08:24 -05003573
3574 nd.root.mnt = mnt;
3575 nd.root.dentry = dentry;
3576
David Howellsb18825a2013-09-12 19:22:53 +01003577 if (d_is_symlink(dentry) && op->intent & LOOKUP_OPEN)
Al Viro73d049a2011-03-11 12:08:24 -05003578 return ERR_PTR(-ELOOP);
3579
Paul Moore51689102015-01-22 00:00:03 -05003580 filename = getname_kernel(name);
Viresh Kumara1c83682015-08-12 15:59:44 +05303581 if (IS_ERR(filename))
Paul Moore51689102015-01-22 00:00:03 -05003582 return ERR_CAST(filename);
3583
Al Viro9883d182015-05-13 07:28:08 -04003584 set_nameidata(&nd, -1, filename);
Al Viroc8a53ee2015-05-12 18:43:07 -04003585 file = path_openat(&nd, op, flags | LOOKUP_RCU);
Al Viro73d049a2011-03-11 12:08:24 -05003586 if (unlikely(file == ERR_PTR(-ECHILD)))
Al Viroc8a53ee2015-05-12 18:43:07 -04003587 file = path_openat(&nd, op, flags);
Al Viro73d049a2011-03-11 12:08:24 -05003588 if (unlikely(file == ERR_PTR(-ESTALE)))
Al Viroc8a53ee2015-05-12 18:43:07 -04003589 file = path_openat(&nd, op, flags | LOOKUP_REVAL);
Al Viro9883d182015-05-13 07:28:08 -04003590 restore_nameidata();
Paul Moore51689102015-01-22 00:00:03 -05003591 putname(filename);
Al Viro73d049a2011-03-11 12:08:24 -05003592 return file;
3593}
3594
Al Virofa14a0b2015-01-22 02:16:49 -05003595static struct dentry *filename_create(int dfd, struct filename *name,
Jeff Layton1ac12b42012-12-11 12:10:06 -05003596 struct path *path, unsigned int lookup_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003597{
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07003598 struct dentry *dentry = ERR_PTR(-EEXIST);
Al Viro391172c2015-05-09 11:19:16 -04003599 struct qstr last;
3600 int type;
Jan Karac30dabf2012-06-12 16:20:30 +02003601 int err2;
Jeff Layton1ac12b42012-12-11 12:10:06 -05003602 int error;
3603 bool is_dir = (lookup_flags & LOOKUP_DIRECTORY);
3604
3605 /*
3606 * Note that only LOOKUP_REVAL and LOOKUP_DIRECTORY matter here. Any
3607 * other flags passed in are ignored!
3608 */
3609 lookup_flags &= LOOKUP_REVAL;
3610
Al Viro5c31b6c2015-05-12 17:32:54 -04003611 name = filename_parentat(dfd, name, lookup_flags, path, &last, &type);
3612 if (IS_ERR(name))
3613 return ERR_CAST(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003614
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07003615 /*
3616 * Yucky last component or no last component at all?
3617 * (foo/., foo/.., /////)
3618 */
Al Viro5c31b6c2015-05-12 17:32:54 -04003619 if (unlikely(type != LAST_NORM))
Al Viroed75e952011-06-27 16:53:43 -04003620 goto out;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07003621
Jan Karac30dabf2012-06-12 16:20:30 +02003622 /* don't fail immediately if it's r/o, at least try to report other errors */
Al Viro391172c2015-05-09 11:19:16 -04003623 err2 = mnt_want_write(path->mnt);
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07003624 /*
3625 * Do the final lookup.
3626 */
Al Viro391172c2015-05-09 11:19:16 -04003627 lookup_flags |= LOOKUP_CREATE | LOOKUP_EXCL;
Al Viro59551022016-01-22 15:40:57 -05003628 inode_lock_nested(path->dentry->d_inode, I_MUTEX_PARENT);
Al Viro391172c2015-05-09 11:19:16 -04003629 dentry = __lookup_hash(&last, path->dentry, lookup_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003630 if (IS_ERR(dentry))
Al Viroa8104a92012-07-20 02:25:00 +04003631 goto unlock;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07003632
Al Viroa8104a92012-07-20 02:25:00 +04003633 error = -EEXIST;
David Howellsb18825a2013-09-12 19:22:53 +01003634 if (d_is_positive(dentry))
Al Viroa8104a92012-07-20 02:25:00 +04003635 goto fail;
David Howellsb18825a2013-09-12 19:22:53 +01003636
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07003637 /*
3638 * Special case - lookup gave negative, but... we had foo/bar/
3639 * From the vfs_mknod() POV we just have a negative dentry -
3640 * all is fine. Let's be bastards - you had / on the end, you've
3641 * been asking for (non-existent) directory. -ENOENT for you.
3642 */
Al Viro391172c2015-05-09 11:19:16 -04003643 if (unlikely(!is_dir && last.name[last.len])) {
Al Viroa8104a92012-07-20 02:25:00 +04003644 error = -ENOENT;
Al Viroed75e952011-06-27 16:53:43 -04003645 goto fail;
Al Viroe9baf6e2008-05-15 04:49:12 -04003646 }
Jan Karac30dabf2012-06-12 16:20:30 +02003647 if (unlikely(err2)) {
3648 error = err2;
Al Viroa8104a92012-07-20 02:25:00 +04003649 goto fail;
Jan Karac30dabf2012-06-12 16:20:30 +02003650 }
Al Viro181c37b2015-05-12 17:21:25 -04003651 putname(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003652 return dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003653fail:
Al Viroa8104a92012-07-20 02:25:00 +04003654 dput(dentry);
3655 dentry = ERR_PTR(error);
3656unlock:
Al Viro59551022016-01-22 15:40:57 -05003657 inode_unlock(path->dentry->d_inode);
Jan Karac30dabf2012-06-12 16:20:30 +02003658 if (!err2)
Al Viro391172c2015-05-09 11:19:16 -04003659 mnt_drop_write(path->mnt);
Al Viroed75e952011-06-27 16:53:43 -04003660out:
Al Viro391172c2015-05-09 11:19:16 -04003661 path_put(path);
Al Viro181c37b2015-05-12 17:21:25 -04003662 putname(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003663 return dentry;
3664}
Al Virofa14a0b2015-01-22 02:16:49 -05003665
3666struct dentry *kern_path_create(int dfd, const char *pathname,
3667 struct path *path, unsigned int lookup_flags)
3668{
Al Viro181c37b2015-05-12 17:21:25 -04003669 return filename_create(dfd, getname_kernel(pathname),
3670 path, lookup_flags);
Al Virofa14a0b2015-01-22 02:16:49 -05003671}
Al Virodae6ad82011-06-26 11:50:15 -04003672EXPORT_SYMBOL(kern_path_create);
3673
Al Viro921a1652012-07-20 01:15:31 +04003674void done_path_create(struct path *path, struct dentry *dentry)
3675{
3676 dput(dentry);
Al Viro59551022016-01-22 15:40:57 -05003677 inode_unlock(path->dentry->d_inode);
Al Viroa8104a92012-07-20 02:25:00 +04003678 mnt_drop_write(path->mnt);
Al Viro921a1652012-07-20 01:15:31 +04003679 path_put(path);
3680}
3681EXPORT_SYMBOL(done_path_create);
3682
Al Viro520ae682015-05-13 07:00:28 -04003683inline struct dentry *user_path_create(int dfd, const char __user *pathname,
Jeff Layton1ac12b42012-12-11 12:10:06 -05003684 struct path *path, unsigned int lookup_flags)
Al Virodae6ad82011-06-26 11:50:15 -04003685{
Al Viro181c37b2015-05-12 17:21:25 -04003686 return filename_create(dfd, getname(pathname), path, lookup_flags);
Al Virodae6ad82011-06-26 11:50:15 -04003687}
3688EXPORT_SYMBOL(user_path_create);
3689
Al Viro1a67aaf2011-07-26 01:52:52 -04003690int vfs_mknod(struct inode *dir, struct dentry *dentry, umode_t mode, dev_t dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003691{
Miklos Szeredia95164d2008-07-30 15:08:48 +02003692 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003693
3694 if (error)
3695 return error;
3696
Eric W. Biederman975d6b32011-11-13 12:16:43 -08003697 if ((S_ISCHR(mode) || S_ISBLK(mode)) && !capable(CAP_MKNOD))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003698 return -EPERM;
3699
Al Viroacfa4382008-12-04 10:06:33 -05003700 if (!dir->i_op->mknod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003701 return -EPERM;
3702
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -07003703 error = devcgroup_inode_mknod(mode, dev);
3704 if (error)
3705 return error;
3706
Linus Torvalds1da177e2005-04-16 15:20:36 -07003707 error = security_inode_mknod(dir, dentry, mode, dev);
3708 if (error)
3709 return error;
3710
Linus Torvalds1da177e2005-04-16 15:20:36 -07003711 error = dir->i_op->mknod(dir, dentry, mode, dev);
Stephen Smalleya74574a2005-09-09 13:01:44 -07003712 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00003713 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003714 return error;
3715}
Al Viro4d359502014-03-14 12:20:17 -04003716EXPORT_SYMBOL(vfs_mknod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003717
Al Virof69aac02011-07-26 04:31:40 -04003718static int may_mknod(umode_t mode)
Dave Hansen463c3192008-02-15 14:37:57 -08003719{
3720 switch (mode & S_IFMT) {
3721 case S_IFREG:
3722 case S_IFCHR:
3723 case S_IFBLK:
3724 case S_IFIFO:
3725 case S_IFSOCK:
3726 case 0: /* zero mode translates to S_IFREG */
3727 return 0;
3728 case S_IFDIR:
3729 return -EPERM;
3730 default:
3731 return -EINVAL;
3732 }
3733}
3734
Al Viro8208a222011-07-25 17:32:17 -04003735SYSCALL_DEFINE4(mknodat, int, dfd, const char __user *, filename, umode_t, mode,
Heiko Carstens2e4d0922009-01-14 14:14:31 +01003736 unsigned, dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003737{
Al Viro2ad94ae2008-07-21 09:32:51 -04003738 struct dentry *dentry;
Al Virodae6ad82011-06-26 11:50:15 -04003739 struct path path;
3740 int error;
Jeff Layton972567f2012-12-20 16:00:10 -05003741 unsigned int lookup_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003742
Al Viro8e4bfca2012-07-20 01:17:26 +04003743 error = may_mknod(mode);
3744 if (error)
3745 return error;
Jeff Layton972567f2012-12-20 16:00:10 -05003746retry:
3747 dentry = user_path_create(dfd, filename, &path, lookup_flags);
Al Virodae6ad82011-06-26 11:50:15 -04003748 if (IS_ERR(dentry))
3749 return PTR_ERR(dentry);
Al Viro2ad94ae2008-07-21 09:32:51 -04003750
Al Virodae6ad82011-06-26 11:50:15 -04003751 if (!IS_POSIXACL(path.dentry->d_inode))
Al Viroce3b0f82009-03-29 19:08:22 -04003752 mode &= ~current_umask();
Al Virodae6ad82011-06-26 11:50:15 -04003753 error = security_path_mknod(&path, dentry, mode, dev);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09003754 if (error)
Al Viroa8104a92012-07-20 02:25:00 +04003755 goto out;
Dave Hansen463c3192008-02-15 14:37:57 -08003756 switch (mode & S_IFMT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003757 case 0: case S_IFREG:
Al Viro312b63f2012-06-10 18:09:36 -04003758 error = vfs_create(path.dentry->d_inode,dentry,mode,true);
Mimi Zohar05d1a712016-02-29 19:52:05 -05003759 if (!error)
3760 ima_post_path_mknod(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003761 break;
3762 case S_IFCHR: case S_IFBLK:
Al Virodae6ad82011-06-26 11:50:15 -04003763 error = vfs_mknod(path.dentry->d_inode,dentry,mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003764 new_decode_dev(dev));
3765 break;
3766 case S_IFIFO: case S_IFSOCK:
Al Virodae6ad82011-06-26 11:50:15 -04003767 error = vfs_mknod(path.dentry->d_inode,dentry,mode,0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003768 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003769 }
Al Viroa8104a92012-07-20 02:25:00 +04003770out:
Al Viro921a1652012-07-20 01:15:31 +04003771 done_path_create(&path, dentry);
Jeff Layton972567f2012-12-20 16:00:10 -05003772 if (retry_estale(error, lookup_flags)) {
3773 lookup_flags |= LOOKUP_REVAL;
3774 goto retry;
3775 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003776 return error;
3777}
3778
Al Viro8208a222011-07-25 17:32:17 -04003779SYSCALL_DEFINE3(mknod, const char __user *, filename, umode_t, mode, unsigned, dev)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003780{
3781 return sys_mknodat(AT_FDCWD, filename, mode, dev);
3782}
3783
Al Viro18bb1db2011-07-26 01:41:39 -04003784int vfs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003785{
Miklos Szeredia95164d2008-07-30 15:08:48 +02003786 int error = may_create(dir, dentry);
Al Viro8de52772012-02-06 12:45:27 -05003787 unsigned max_links = dir->i_sb->s_max_links;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003788
3789 if (error)
3790 return error;
3791
Al Viroacfa4382008-12-04 10:06:33 -05003792 if (!dir->i_op->mkdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003793 return -EPERM;
3794
3795 mode &= (S_IRWXUGO|S_ISVTX);
3796 error = security_inode_mkdir(dir, dentry, mode);
3797 if (error)
3798 return error;
3799
Al Viro8de52772012-02-06 12:45:27 -05003800 if (max_links && dir->i_nlink >= max_links)
3801 return -EMLINK;
3802
Linus Torvalds1da177e2005-04-16 15:20:36 -07003803 error = dir->i_op->mkdir(dir, dentry, mode);
Stephen Smalleya74574a2005-09-09 13:01:44 -07003804 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00003805 fsnotify_mkdir(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003806 return error;
3807}
Al Viro4d359502014-03-14 12:20:17 -04003808EXPORT_SYMBOL(vfs_mkdir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003809
Al Viroa218d0f2011-11-21 14:59:34 -05003810SYSCALL_DEFINE3(mkdirat, int, dfd, const char __user *, pathname, umode_t, mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003811{
Dave Hansen6902d922006-09-30 23:29:01 -07003812 struct dentry *dentry;
Al Virodae6ad82011-06-26 11:50:15 -04003813 struct path path;
3814 int error;
Jeff Laytonb76d8b82012-12-20 16:04:09 -05003815 unsigned int lookup_flags = LOOKUP_DIRECTORY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003816
Jeff Laytonb76d8b82012-12-20 16:04:09 -05003817retry:
3818 dentry = user_path_create(dfd, pathname, &path, lookup_flags);
Dave Hansen6902d922006-09-30 23:29:01 -07003819 if (IS_ERR(dentry))
Al Virodae6ad82011-06-26 11:50:15 -04003820 return PTR_ERR(dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07003821
Al Virodae6ad82011-06-26 11:50:15 -04003822 if (!IS_POSIXACL(path.dentry->d_inode))
Al Viroce3b0f82009-03-29 19:08:22 -04003823 mode &= ~current_umask();
Al Virodae6ad82011-06-26 11:50:15 -04003824 error = security_path_mkdir(&path, dentry, mode);
Al Viroa8104a92012-07-20 02:25:00 +04003825 if (!error)
3826 error = vfs_mkdir(path.dentry->d_inode, dentry, mode);
Al Viro921a1652012-07-20 01:15:31 +04003827 done_path_create(&path, dentry);
Jeff Laytonb76d8b82012-12-20 16:04:09 -05003828 if (retry_estale(error, lookup_flags)) {
3829 lookup_flags |= LOOKUP_REVAL;
3830 goto retry;
3831 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003832 return error;
3833}
3834
Al Viroa218d0f2011-11-21 14:59:34 -05003835SYSCALL_DEFINE2(mkdir, const char __user *, pathname, umode_t, mode)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003836{
3837 return sys_mkdirat(AT_FDCWD, pathname, mode);
3838}
3839
Linus Torvalds1da177e2005-04-16 15:20:36 -07003840int vfs_rmdir(struct inode *dir, struct dentry *dentry)
3841{
3842 int error = may_delete(dir, dentry, 1);
3843
3844 if (error)
3845 return error;
3846
Al Viroacfa4382008-12-04 10:06:33 -05003847 if (!dir->i_op->rmdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003848 return -EPERM;
3849
Al Viro1d2ef592011-09-14 18:55:41 +01003850 dget(dentry);
Al Viro59551022016-01-22 15:40:57 -05003851 inode_lock(dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003852
Sage Weil912dbc12011-05-24 13:06:11 -07003853 error = -EBUSY;
Eric W. Biederman7af13642013-10-04 19:15:13 -07003854 if (is_local_mountpoint(dentry))
Sage Weil912dbc12011-05-24 13:06:11 -07003855 goto out;
3856
3857 error = security_inode_rmdir(dir, dentry);
3858 if (error)
3859 goto out;
3860
Sage Weil3cebde22011-05-29 21:20:59 -07003861 shrink_dcache_parent(dentry);
Sage Weil912dbc12011-05-24 13:06:11 -07003862 error = dir->i_op->rmdir(dir, dentry);
3863 if (error)
3864 goto out;
3865
3866 dentry->d_inode->i_flags |= S_DEAD;
3867 dont_mount(dentry);
Eric W. Biederman8ed936b2013-10-01 18:33:48 -07003868 detach_mounts(dentry);
Sage Weil912dbc12011-05-24 13:06:11 -07003869
3870out:
Al Viro59551022016-01-22 15:40:57 -05003871 inode_unlock(dentry->d_inode);
Al Viro1d2ef592011-09-14 18:55:41 +01003872 dput(dentry);
Sage Weil912dbc12011-05-24 13:06:11 -07003873 if (!error)
3874 d_delete(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003875 return error;
3876}
Al Viro4d359502014-03-14 12:20:17 -04003877EXPORT_SYMBOL(vfs_rmdir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003878
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003879static long do_rmdir(int dfd, const char __user *pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003880{
3881 int error = 0;
Jeff Layton91a27b22012-10-10 15:25:28 -04003882 struct filename *name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003883 struct dentry *dentry;
Al Virof5beed72015-04-30 16:09:11 -04003884 struct path path;
3885 struct qstr last;
3886 int type;
Jeff Laytonc6ee9202012-12-20 16:28:33 -05003887 unsigned int lookup_flags = 0;
3888retry:
Al Virof5beed72015-04-30 16:09:11 -04003889 name = user_path_parent(dfd, pathname,
3890 &path, &last, &type, lookup_flags);
Jeff Layton91a27b22012-10-10 15:25:28 -04003891 if (IS_ERR(name))
3892 return PTR_ERR(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003893
Al Virof5beed72015-04-30 16:09:11 -04003894 switch (type) {
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003895 case LAST_DOTDOT:
3896 error = -ENOTEMPTY;
3897 goto exit1;
3898 case LAST_DOT:
3899 error = -EINVAL;
3900 goto exit1;
3901 case LAST_ROOT:
3902 error = -EBUSY;
3903 goto exit1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003904 }
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003905
Al Virof5beed72015-04-30 16:09:11 -04003906 error = mnt_want_write(path.mnt);
Jan Karac30dabf2012-06-12 16:20:30 +02003907 if (error)
3908 goto exit1;
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003909
Al Viro59551022016-01-22 15:40:57 -05003910 inode_lock_nested(path.dentry->d_inode, I_MUTEX_PARENT);
Al Virof5beed72015-04-30 16:09:11 -04003911 dentry = __lookup_hash(&last, path.dentry, lookup_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003912 error = PTR_ERR(dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07003913 if (IS_ERR(dentry))
3914 goto exit2;
Theodore Ts'oe6bc45d2011-06-06 19:19:40 -04003915 if (!dentry->d_inode) {
3916 error = -ENOENT;
3917 goto exit3;
3918 }
Al Virof5beed72015-04-30 16:09:11 -04003919 error = security_path_rmdir(&path, dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09003920 if (error)
Jan Karac30dabf2012-06-12 16:20:30 +02003921 goto exit3;
Al Virof5beed72015-04-30 16:09:11 -04003922 error = vfs_rmdir(path.dentry->d_inode, dentry);
Dave Hansen06227532008-02-15 14:37:34 -08003923exit3:
Dave Hansen6902d922006-09-30 23:29:01 -07003924 dput(dentry);
3925exit2:
Al Viro59551022016-01-22 15:40:57 -05003926 inode_unlock(path.dentry->d_inode);
Al Virof5beed72015-04-30 16:09:11 -04003927 mnt_drop_write(path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003928exit1:
Al Virof5beed72015-04-30 16:09:11 -04003929 path_put(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003930 putname(name);
Jeff Laytonc6ee9202012-12-20 16:28:33 -05003931 if (retry_estale(error, lookup_flags)) {
3932 lookup_flags |= LOOKUP_REVAL;
3933 goto retry;
3934 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003935 return error;
3936}
3937
Heiko Carstens3cdad422009-01-14 14:14:22 +01003938SYSCALL_DEFINE1(rmdir, const char __user *, pathname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003939{
3940 return do_rmdir(AT_FDCWD, pathname);
3941}
3942
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04003943/**
3944 * vfs_unlink - unlink a filesystem object
3945 * @dir: parent directory
3946 * @dentry: victim
3947 * @delegated_inode: returns victim inode, if the inode is delegated.
3948 *
3949 * The caller must hold dir->i_mutex.
3950 *
3951 * If vfs_unlink discovers a delegation, it will return -EWOULDBLOCK and
3952 * return a reference to the inode in delegated_inode. The caller
3953 * should then break the delegation on that inode and retry. Because
3954 * breaking a delegation may take a long time, the caller should drop
3955 * dir->i_mutex before doing so.
3956 *
3957 * Alternatively, a caller may pass NULL for delegated_inode. This may
3958 * be appropriate for callers that expect the underlying filesystem not
3959 * to be NFS exported.
3960 */
3961int vfs_unlink(struct inode *dir, struct dentry *dentry, struct inode **delegated_inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003962{
J. Bruce Fields9accbb92012-08-28 07:03:24 -04003963 struct inode *target = dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003964 int error = may_delete(dir, dentry, 0);
3965
3966 if (error)
3967 return error;
3968
Al Viroacfa4382008-12-04 10:06:33 -05003969 if (!dir->i_op->unlink)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003970 return -EPERM;
3971
Al Viro59551022016-01-22 15:40:57 -05003972 inode_lock(target);
Eric W. Biederman8ed936b2013-10-01 18:33:48 -07003973 if (is_local_mountpoint(dentry))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003974 error = -EBUSY;
3975 else {
3976 error = security_inode_unlink(dir, dentry);
Al Virobec10522010-03-03 14:12:08 -05003977 if (!error) {
J. Bruce Fields5a146962012-08-28 07:50:40 -07003978 error = try_break_deleg(target, delegated_inode);
3979 if (error)
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04003980 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003981 error = dir->i_op->unlink(dir, dentry);
Eric W. Biederman8ed936b2013-10-01 18:33:48 -07003982 if (!error) {
Al Virod83c49f2010-04-30 17:17:09 -04003983 dont_mount(dentry);
Eric W. Biederman8ed936b2013-10-01 18:33:48 -07003984 detach_mounts(dentry);
3985 }
Al Virobec10522010-03-03 14:12:08 -05003986 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003987 }
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04003988out:
Al Viro59551022016-01-22 15:40:57 -05003989 inode_unlock(target);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003990
3991 /* We don't d_delete() NFS sillyrenamed files--they still exist. */
3992 if (!error && !(dentry->d_flags & DCACHE_NFSFS_RENAMED)) {
J. Bruce Fields9accbb92012-08-28 07:03:24 -04003993 fsnotify_link_count(target);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003994 d_delete(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003995 }
Robert Love0eeca282005-07-12 17:06:03 -04003996
Linus Torvalds1da177e2005-04-16 15:20:36 -07003997 return error;
3998}
Al Viro4d359502014-03-14 12:20:17 -04003999EXPORT_SYMBOL(vfs_unlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004000
4001/*
4002 * Make sure that the actual truncation of the file will occur outside its
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08004003 * directory's i_mutex. Truncate can take a long time if there is a lot of
Linus Torvalds1da177e2005-04-16 15:20:36 -07004004 * writeout happening, and we don't want to prevent access to the directory
4005 * while waiting on the I/O.
4006 */
Ulrich Drepper5590ff02006-01-18 17:43:53 -08004007static long do_unlinkat(int dfd, const char __user *pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004008{
Al Viro2ad94ae2008-07-21 09:32:51 -04004009 int error;
Jeff Layton91a27b22012-10-10 15:25:28 -04004010 struct filename *name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004011 struct dentry *dentry;
Al Virof5beed72015-04-30 16:09:11 -04004012 struct path path;
4013 struct qstr last;
4014 int type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004015 struct inode *inode = NULL;
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04004016 struct inode *delegated_inode = NULL;
Jeff Layton5d18f812012-12-20 16:38:04 -05004017 unsigned int lookup_flags = 0;
4018retry:
Al Virof5beed72015-04-30 16:09:11 -04004019 name = user_path_parent(dfd, pathname,
4020 &path, &last, &type, lookup_flags);
Jeff Layton91a27b22012-10-10 15:25:28 -04004021 if (IS_ERR(name))
4022 return PTR_ERR(name);
Al Viro2ad94ae2008-07-21 09:32:51 -04004023
Linus Torvalds1da177e2005-04-16 15:20:36 -07004024 error = -EISDIR;
Al Virof5beed72015-04-30 16:09:11 -04004025 if (type != LAST_NORM)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004026 goto exit1;
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09004027
Al Virof5beed72015-04-30 16:09:11 -04004028 error = mnt_want_write(path.mnt);
Jan Karac30dabf2012-06-12 16:20:30 +02004029 if (error)
4030 goto exit1;
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04004031retry_deleg:
Al Viro59551022016-01-22 15:40:57 -05004032 inode_lock_nested(path.dentry->d_inode, I_MUTEX_PARENT);
Al Virof5beed72015-04-30 16:09:11 -04004033 dentry = __lookup_hash(&last, path.dentry, lookup_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004034 error = PTR_ERR(dentry);
4035 if (!IS_ERR(dentry)) {
4036 /* Why not before? Because we want correct error value */
Al Virof5beed72015-04-30 16:09:11 -04004037 if (last.name[last.len])
Török Edwin50338b82011-06-16 00:06:14 +03004038 goto slashes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004039 inode = dentry->d_inode;
David Howellsb18825a2013-09-12 19:22:53 +01004040 if (d_is_negative(dentry))
Theodore Ts'oe6bc45d2011-06-06 19:19:40 -04004041 goto slashes;
4042 ihold(inode);
Al Virof5beed72015-04-30 16:09:11 -04004043 error = security_path_unlink(&path, dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09004044 if (error)
Jan Karac30dabf2012-06-12 16:20:30 +02004045 goto exit2;
Al Virof5beed72015-04-30 16:09:11 -04004046 error = vfs_unlink(path.dentry->d_inode, dentry, &delegated_inode);
Jan Karac30dabf2012-06-12 16:20:30 +02004047exit2:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004048 dput(dentry);
4049 }
Al Viro59551022016-01-22 15:40:57 -05004050 inode_unlock(path.dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004051 if (inode)
4052 iput(inode); /* truncate the inode here */
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04004053 inode = NULL;
4054 if (delegated_inode) {
J. Bruce Fields5a146962012-08-28 07:50:40 -07004055 error = break_deleg_wait(&delegated_inode);
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04004056 if (!error)
4057 goto retry_deleg;
4058 }
Al Virof5beed72015-04-30 16:09:11 -04004059 mnt_drop_write(path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004060exit1:
Al Virof5beed72015-04-30 16:09:11 -04004061 path_put(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004062 putname(name);
Jeff Layton5d18f812012-12-20 16:38:04 -05004063 if (retry_estale(error, lookup_flags)) {
4064 lookup_flags |= LOOKUP_REVAL;
4065 inode = NULL;
4066 goto retry;
4067 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004068 return error;
4069
4070slashes:
David Howellsb18825a2013-09-12 19:22:53 +01004071 if (d_is_negative(dentry))
4072 error = -ENOENT;
Miklos Szeredi44b1d532014-04-01 17:08:41 +02004073 else if (d_is_dir(dentry))
David Howellsb18825a2013-09-12 19:22:53 +01004074 error = -EISDIR;
4075 else
4076 error = -ENOTDIR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004077 goto exit2;
4078}
4079
Heiko Carstens2e4d0922009-01-14 14:14:31 +01004080SYSCALL_DEFINE3(unlinkat, int, dfd, const char __user *, pathname, int, flag)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08004081{
4082 if ((flag & ~AT_REMOVEDIR) != 0)
4083 return -EINVAL;
4084
4085 if (flag & AT_REMOVEDIR)
4086 return do_rmdir(dfd, pathname);
4087
4088 return do_unlinkat(dfd, pathname);
4089}
4090
Heiko Carstens3480b252009-01-14 14:14:16 +01004091SYSCALL_DEFINE1(unlink, const char __user *, pathname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08004092{
4093 return do_unlinkat(AT_FDCWD, pathname);
4094}
4095
Miklos Szeredidb2e7472008-06-24 16:50:16 +02004096int vfs_symlink(struct inode *dir, struct dentry *dentry, const char *oldname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004097{
Miklos Szeredia95164d2008-07-30 15:08:48 +02004098 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004099
4100 if (error)
4101 return error;
4102
Al Viroacfa4382008-12-04 10:06:33 -05004103 if (!dir->i_op->symlink)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004104 return -EPERM;
4105
4106 error = security_inode_symlink(dir, dentry, oldname);
4107 if (error)
4108 return error;
4109
Linus Torvalds1da177e2005-04-16 15:20:36 -07004110 error = dir->i_op->symlink(dir, dentry, oldname);
Stephen Smalleya74574a2005-09-09 13:01:44 -07004111 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00004112 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004113 return error;
4114}
Al Viro4d359502014-03-14 12:20:17 -04004115EXPORT_SYMBOL(vfs_symlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004116
Heiko Carstens2e4d0922009-01-14 14:14:31 +01004117SYSCALL_DEFINE3(symlinkat, const char __user *, oldname,
4118 int, newdfd, const char __user *, newname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004119{
Al Viro2ad94ae2008-07-21 09:32:51 -04004120 int error;
Jeff Layton91a27b22012-10-10 15:25:28 -04004121 struct filename *from;
Dave Hansen6902d922006-09-30 23:29:01 -07004122 struct dentry *dentry;
Al Virodae6ad82011-06-26 11:50:15 -04004123 struct path path;
Jeff Laytonf46d3562012-12-11 12:10:08 -05004124 unsigned int lookup_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004125
4126 from = getname(oldname);
Al Viro2ad94ae2008-07-21 09:32:51 -04004127 if (IS_ERR(from))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004128 return PTR_ERR(from);
Jeff Laytonf46d3562012-12-11 12:10:08 -05004129retry:
4130 dentry = user_path_create(newdfd, newname, &path, lookup_flags);
Dave Hansen6902d922006-09-30 23:29:01 -07004131 error = PTR_ERR(dentry);
4132 if (IS_ERR(dentry))
Al Virodae6ad82011-06-26 11:50:15 -04004133 goto out_putname;
Dave Hansen6902d922006-09-30 23:29:01 -07004134
Jeff Layton91a27b22012-10-10 15:25:28 -04004135 error = security_path_symlink(&path, dentry, from->name);
Al Viroa8104a92012-07-20 02:25:00 +04004136 if (!error)
Jeff Layton91a27b22012-10-10 15:25:28 -04004137 error = vfs_symlink(path.dentry->d_inode, dentry, from->name);
Al Viro921a1652012-07-20 01:15:31 +04004138 done_path_create(&path, dentry);
Jeff Laytonf46d3562012-12-11 12:10:08 -05004139 if (retry_estale(error, lookup_flags)) {
4140 lookup_flags |= LOOKUP_REVAL;
4141 goto retry;
4142 }
Dave Hansen6902d922006-09-30 23:29:01 -07004143out_putname:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004144 putname(from);
4145 return error;
4146}
4147
Heiko Carstens3480b252009-01-14 14:14:16 +01004148SYSCALL_DEFINE2(symlink, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08004149{
4150 return sys_symlinkat(oldname, AT_FDCWD, newname);
4151}
4152
J. Bruce Fields146a8592011-09-20 17:14:31 -04004153/**
4154 * vfs_link - create a new link
4155 * @old_dentry: object to be linked
4156 * @dir: new parent
4157 * @new_dentry: where to create the new link
4158 * @delegated_inode: returns inode needing a delegation break
4159 *
4160 * The caller must hold dir->i_mutex
4161 *
4162 * If vfs_link discovers a delegation on the to-be-linked file in need
4163 * of breaking, it will return -EWOULDBLOCK and return a reference to the
4164 * inode in delegated_inode. The caller should then break the delegation
4165 * and retry. Because breaking a delegation may take a long time, the
4166 * caller should drop the i_mutex before doing so.
4167 *
4168 * Alternatively, a caller may pass NULL for delegated_inode. This may
4169 * be appropriate for callers that expect the underlying filesystem not
4170 * to be NFS exported.
4171 */
4172int vfs_link(struct dentry *old_dentry, struct inode *dir, struct dentry *new_dentry, struct inode **delegated_inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004173{
4174 struct inode *inode = old_dentry->d_inode;
Al Viro8de52772012-02-06 12:45:27 -05004175 unsigned max_links = dir->i_sb->s_max_links;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004176 int error;
4177
4178 if (!inode)
4179 return -ENOENT;
4180
Miklos Szeredia95164d2008-07-30 15:08:48 +02004181 error = may_create(dir, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004182 if (error)
4183 return error;
4184
4185 if (dir->i_sb != inode->i_sb)
4186 return -EXDEV;
4187
4188 /*
4189 * A link to an append-only or immutable file cannot be created.
4190 */
4191 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
4192 return -EPERM;
Al Viroacfa4382008-12-04 10:06:33 -05004193 if (!dir->i_op->link)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004194 return -EPERM;
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02004195 if (S_ISDIR(inode->i_mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004196 return -EPERM;
4197
4198 error = security_inode_link(old_dentry, dir, new_dentry);
4199 if (error)
4200 return error;
4201
Al Viro59551022016-01-22 15:40:57 -05004202 inode_lock(inode);
Aneesh Kumar K.Vaae8a972011-01-29 18:43:27 +05304203 /* Make sure we don't allow creating hardlink to an unlinked file */
Al Virof4e0c302013-06-11 08:34:36 +04004204 if (inode->i_nlink == 0 && !(inode->i_state & I_LINKABLE))
Aneesh Kumar K.Vaae8a972011-01-29 18:43:27 +05304205 error = -ENOENT;
Al Viro8de52772012-02-06 12:45:27 -05004206 else if (max_links && inode->i_nlink >= max_links)
4207 error = -EMLINK;
J. Bruce Fields146a8592011-09-20 17:14:31 -04004208 else {
4209 error = try_break_deleg(inode, delegated_inode);
4210 if (!error)
4211 error = dir->i_op->link(old_dentry, dir, new_dentry);
4212 }
Al Virof4e0c302013-06-11 08:34:36 +04004213
4214 if (!error && (inode->i_state & I_LINKABLE)) {
4215 spin_lock(&inode->i_lock);
4216 inode->i_state &= ~I_LINKABLE;
4217 spin_unlock(&inode->i_lock);
4218 }
Al Viro59551022016-01-22 15:40:57 -05004219 inode_unlock(inode);
Stephen Smalleye31e14e2005-09-09 13:01:45 -07004220 if (!error)
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02004221 fsnotify_link(dir, inode, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004222 return error;
4223}
Al Viro4d359502014-03-14 12:20:17 -04004224EXPORT_SYMBOL(vfs_link);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004225
4226/*
4227 * Hardlinks are often used in delicate situations. We avoid
4228 * security-related surprises by not following symlinks on the
4229 * newname. --KAB
4230 *
4231 * We don't follow them on the oldname either to be compatible
4232 * with linux 2.0, and to avoid hard-linking to directories
4233 * and other special files. --ADM
4234 */
Heiko Carstens2e4d0922009-01-14 14:14:31 +01004235SYSCALL_DEFINE5(linkat, int, olddfd, const char __user *, oldname,
4236 int, newdfd, const char __user *, newname, int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004237{
4238 struct dentry *new_dentry;
Al Virodae6ad82011-06-26 11:50:15 -04004239 struct path old_path, new_path;
J. Bruce Fields146a8592011-09-20 17:14:31 -04004240 struct inode *delegated_inode = NULL;
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05304241 int how = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004242 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004243
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05304244 if ((flags & ~(AT_SYMLINK_FOLLOW | AT_EMPTY_PATH)) != 0)
Ulrich Drepperc04030e2006-02-24 13:04:21 -08004245 return -EINVAL;
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05304246 /*
Linus Torvaldsf0cc6ff2013-08-28 09:18:05 -07004247 * To use null names we require CAP_DAC_READ_SEARCH
4248 * This ensures that not everyone will be able to create
4249 * handlink using the passed filedescriptor.
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05304250 */
Linus Torvaldsf0cc6ff2013-08-28 09:18:05 -07004251 if (flags & AT_EMPTY_PATH) {
4252 if (!capable(CAP_DAC_READ_SEARCH))
4253 return -ENOENT;
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05304254 how = LOOKUP_EMPTY;
Linus Torvaldsf0cc6ff2013-08-28 09:18:05 -07004255 }
Ulrich Drepperc04030e2006-02-24 13:04:21 -08004256
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05304257 if (flags & AT_SYMLINK_FOLLOW)
4258 how |= LOOKUP_FOLLOW;
Jeff Layton442e31c2012-12-20 16:15:38 -05004259retry:
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05304260 error = user_path_at(olddfd, oldname, how, &old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004261 if (error)
Al Viro2ad94ae2008-07-21 09:32:51 -04004262 return error;
4263
Jeff Layton442e31c2012-12-20 16:15:38 -05004264 new_dentry = user_path_create(newdfd, newname, &new_path,
4265 (how & LOOKUP_REVAL));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004266 error = PTR_ERR(new_dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07004267 if (IS_ERR(new_dentry))
Al Virodae6ad82011-06-26 11:50:15 -04004268 goto out;
4269
4270 error = -EXDEV;
4271 if (old_path.mnt != new_path.mnt)
4272 goto out_dput;
Kees Cook800179c2012-07-25 17:29:07 -07004273 error = may_linkat(&old_path);
4274 if (unlikely(error))
4275 goto out_dput;
Al Virodae6ad82011-06-26 11:50:15 -04004276 error = security_path_link(old_path.dentry, &new_path, new_dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09004277 if (error)
Al Viroa8104a92012-07-20 02:25:00 +04004278 goto out_dput;
J. Bruce Fields146a8592011-09-20 17:14:31 -04004279 error = vfs_link(old_path.dentry, new_path.dentry->d_inode, new_dentry, &delegated_inode);
Dave Hansen75c3f292008-02-15 14:37:45 -08004280out_dput:
Al Viro921a1652012-07-20 01:15:31 +04004281 done_path_create(&new_path, new_dentry);
J. Bruce Fields146a8592011-09-20 17:14:31 -04004282 if (delegated_inode) {
4283 error = break_deleg_wait(&delegated_inode);
Oleg Drokind22e6332014-01-31 15:41:58 -05004284 if (!error) {
4285 path_put(&old_path);
J. Bruce Fields146a8592011-09-20 17:14:31 -04004286 goto retry;
Oleg Drokind22e6332014-01-31 15:41:58 -05004287 }
J. Bruce Fields146a8592011-09-20 17:14:31 -04004288 }
Jeff Layton442e31c2012-12-20 16:15:38 -05004289 if (retry_estale(error, how)) {
Oleg Drokind22e6332014-01-31 15:41:58 -05004290 path_put(&old_path);
Jeff Layton442e31c2012-12-20 16:15:38 -05004291 how |= LOOKUP_REVAL;
4292 goto retry;
4293 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004294out:
Al Viro2d8f3032008-07-22 09:59:21 -04004295 path_put(&old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004296
4297 return error;
4298}
4299
Heiko Carstens3480b252009-01-14 14:14:16 +01004300SYSCALL_DEFINE2(link, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08004301{
Ulrich Drepperc04030e2006-02-24 13:04:21 -08004302 return sys_linkat(AT_FDCWD, oldname, AT_FDCWD, newname, 0);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08004303}
4304
Miklos Szeredibc270272014-04-01 17:08:42 +02004305/**
4306 * vfs_rename - rename a filesystem object
4307 * @old_dir: parent of source
4308 * @old_dentry: source
4309 * @new_dir: parent of destination
4310 * @new_dentry: destination
4311 * @delegated_inode: returns an inode needing a delegation break
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004312 * @flags: rename flags
Miklos Szeredibc270272014-04-01 17:08:42 +02004313 *
4314 * The caller must hold multiple mutexes--see lock_rename()).
4315 *
4316 * If vfs_rename discovers a delegation in need of breaking at either
4317 * the source or destination, it will return -EWOULDBLOCK and return a
4318 * reference to the inode in delegated_inode. The caller should then
4319 * break the delegation and retry. Because breaking a delegation may
4320 * take a long time, the caller should drop all locks before doing
4321 * so.
4322 *
4323 * Alternatively, a caller may pass NULL for delegated_inode. This may
4324 * be appropriate for callers that expect the underlying filesystem not
4325 * to be NFS exported.
4326 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004327 * The worst of all namespace operations - renaming directory. "Perverted"
4328 * doesn't even start to describe it. Somebody in UCB had a heck of a trip...
4329 * Problems:
J. Bruce Fieldsd03b29a2014-02-17 16:52:33 -05004330 * a) we can get into loop creation.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004331 * b) race potential - two innocent renames can create a loop together.
4332 * That's where 4.4 screws up. Current fix: serialization on
Arjan van de Vena11f3a02006-03-23 03:00:33 -08004333 * sb->s_vfs_rename_mutex. We might be more accurate, but that's another
Linus Torvalds1da177e2005-04-16 15:20:36 -07004334 * story.
J. Bruce Fields6cedba82012-03-05 11:40:41 -05004335 * c) we have to lock _four_ objects - parents and victim (if it exists),
4336 * and source (if it is not a directory).
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08004337 * And that - after we got ->i_mutex on parents (until then we don't know
Linus Torvalds1da177e2005-04-16 15:20:36 -07004338 * whether the target exists). Solution: try to be smart with locking
4339 * order for inodes. We rely on the fact that tree topology may change
Arjan van de Vena11f3a02006-03-23 03:00:33 -08004340 * only under ->s_vfs_rename_mutex _and_ that parent of the object we
Linus Torvalds1da177e2005-04-16 15:20:36 -07004341 * move will be locked. Thus we can rank directories by the tree
4342 * (ancestors first) and rank all non-directories after them.
4343 * That works since everybody except rename does "lock parent, lookup,
Arjan van de Vena11f3a02006-03-23 03:00:33 -08004344 * lock child" and rename is under ->s_vfs_rename_mutex.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004345 * HOWEVER, it relies on the assumption that any object with ->lookup()
4346 * has no more than 1 dentry. If "hybrid" objects will ever appear,
4347 * we'd better make sure that there's no link(2) for them.
Sage Weile4eaac02011-05-24 13:06:07 -07004348 * d) conversion from fhandle to dentry may come in the wrong moment - when
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08004349 * we are removing the target. Solution: we will have to grab ->i_mutex
Linus Torvalds1da177e2005-04-16 15:20:36 -07004350 * in the fhandle_to_dentry code. [FIXME - current nfsfh.c relies on
Adam Buchbinderc41b20e2009-12-11 16:35:39 -05004351 * ->i_mutex on parents, which works but leads to some truly excessive
Linus Torvalds1da177e2005-04-16 15:20:36 -07004352 * locking].
4353 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004354int vfs_rename(struct inode *old_dir, struct dentry *old_dentry,
J. Bruce Fields8e6d7822011-09-20 16:59:58 -04004355 struct inode *new_dir, struct dentry *new_dentry,
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004356 struct inode **delegated_inode, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004357{
4358 int error;
Miklos Szeredibc270272014-04-01 17:08:42 +02004359 bool is_dir = d_is_dir(old_dentry);
Eric Paris59b0df22010-02-08 12:53:52 -05004360 const unsigned char *old_name;
Miklos Szeredibc270272014-04-01 17:08:42 +02004361 struct inode *source = old_dentry->d_inode;
4362 struct inode *target = new_dentry->d_inode;
Miklos Szeredida1ce062014-04-01 17:08:43 +02004363 bool new_is_dir = false;
4364 unsigned max_links = new_dir->i_sb->s_max_links;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004365
Miklos Szeredi9409e222016-05-11 01:16:37 +02004366 /*
4367 * Check source == target.
4368 * On overlayfs need to look at underlying inodes.
4369 */
4370 if (vfs_select_inode(old_dentry, 0) == vfs_select_inode(new_dentry, 0))
Miklos Szeredibc270272014-04-01 17:08:42 +02004371 return 0;
4372
Linus Torvalds1da177e2005-04-16 15:20:36 -07004373 error = may_delete(old_dir, old_dentry, is_dir);
4374 if (error)
4375 return error;
4376
Miklos Szeredida1ce062014-04-01 17:08:43 +02004377 if (!target) {
Miklos Szeredia95164d2008-07-30 15:08:48 +02004378 error = may_create(new_dir, new_dentry);
Miklos Szeredida1ce062014-04-01 17:08:43 +02004379 } else {
4380 new_is_dir = d_is_dir(new_dentry);
4381
4382 if (!(flags & RENAME_EXCHANGE))
4383 error = may_delete(new_dir, new_dentry, is_dir);
4384 else
4385 error = may_delete(new_dir, new_dentry, new_is_dir);
4386 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004387 if (error)
4388 return error;
4389
Miklos Szeredi7177a9c2014-07-23 15:15:30 +02004390 if (!old_dir->i_op->rename && !old_dir->i_op->rename2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004391 return -EPERM;
4392
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004393 if (flags && !old_dir->i_op->rename2)
4394 return -EINVAL;
4395
Miklos Szeredibc270272014-04-01 17:08:42 +02004396 /*
4397 * If we are going to change the parent - check write permissions,
4398 * we'll need to flip '..'.
4399 */
Miklos Szeredida1ce062014-04-01 17:08:43 +02004400 if (new_dir != old_dir) {
4401 if (is_dir) {
4402 error = inode_permission(source, MAY_WRITE);
4403 if (error)
4404 return error;
4405 }
4406 if ((flags & RENAME_EXCHANGE) && new_is_dir) {
4407 error = inode_permission(target, MAY_WRITE);
4408 if (error)
4409 return error;
4410 }
Miklos Szeredibc270272014-04-01 17:08:42 +02004411 }
Robert Love0eeca282005-07-12 17:06:03 -04004412
Miklos Szeredi0b3974e2014-04-01 17:08:43 +02004413 error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry,
4414 flags);
Miklos Szeredibc270272014-04-01 17:08:42 +02004415 if (error)
4416 return error;
4417
4418 old_name = fsnotify_oldname_init(old_dentry->d_name.name);
4419 dget(new_dentry);
Miklos Szeredida1ce062014-04-01 17:08:43 +02004420 if (!is_dir || (flags & RENAME_EXCHANGE))
Miklos Szeredibc270272014-04-01 17:08:42 +02004421 lock_two_nondirectories(source, target);
4422 else if (target)
Al Viro59551022016-01-22 15:40:57 -05004423 inode_lock(target);
Miklos Szeredibc270272014-04-01 17:08:42 +02004424
4425 error = -EBUSY;
Eric W. Biederman7af13642013-10-04 19:15:13 -07004426 if (is_local_mountpoint(old_dentry) || is_local_mountpoint(new_dentry))
Miklos Szeredibc270272014-04-01 17:08:42 +02004427 goto out;
4428
Miklos Szeredida1ce062014-04-01 17:08:43 +02004429 if (max_links && new_dir != old_dir) {
Miklos Szeredibc270272014-04-01 17:08:42 +02004430 error = -EMLINK;
Miklos Szeredida1ce062014-04-01 17:08:43 +02004431 if (is_dir && !new_is_dir && new_dir->i_nlink >= max_links)
Miklos Szeredibc270272014-04-01 17:08:42 +02004432 goto out;
Miklos Szeredida1ce062014-04-01 17:08:43 +02004433 if ((flags & RENAME_EXCHANGE) && !is_dir && new_is_dir &&
4434 old_dir->i_nlink >= max_links)
4435 goto out;
4436 }
4437 if (is_dir && !(flags & RENAME_EXCHANGE) && target)
4438 shrink_dcache_parent(new_dentry);
4439 if (!is_dir) {
Miklos Szeredibc270272014-04-01 17:08:42 +02004440 error = try_break_deleg(source, delegated_inode);
4441 if (error)
4442 goto out;
Miklos Szeredida1ce062014-04-01 17:08:43 +02004443 }
4444 if (target && !new_is_dir) {
4445 error = try_break_deleg(target, delegated_inode);
4446 if (error)
4447 goto out;
Miklos Szeredibc270272014-04-01 17:08:42 +02004448 }
Miklos Szeredi7177a9c2014-07-23 15:15:30 +02004449 if (!old_dir->i_op->rename2) {
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004450 error = old_dir->i_op->rename(old_dir, old_dentry,
4451 new_dir, new_dentry);
4452 } else {
Miklos Szeredi7177a9c2014-07-23 15:15:30 +02004453 WARN_ON(old_dir->i_op->rename != NULL);
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004454 error = old_dir->i_op->rename2(old_dir, old_dentry,
4455 new_dir, new_dentry, flags);
4456 }
Miklos Szeredibc270272014-04-01 17:08:42 +02004457 if (error)
4458 goto out;
4459
Miklos Szeredida1ce062014-04-01 17:08:43 +02004460 if (!(flags & RENAME_EXCHANGE) && target) {
Miklos Szeredibc270272014-04-01 17:08:42 +02004461 if (is_dir)
4462 target->i_flags |= S_DEAD;
4463 dont_mount(new_dentry);
Eric W. Biederman8ed936b2013-10-01 18:33:48 -07004464 detach_mounts(new_dentry);
Miklos Szeredibc270272014-04-01 17:08:42 +02004465 }
Miklos Szeredida1ce062014-04-01 17:08:43 +02004466 if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE)) {
4467 if (!(flags & RENAME_EXCHANGE))
4468 d_move(old_dentry, new_dentry);
4469 else
4470 d_exchange(old_dentry, new_dentry);
4471 }
Miklos Szeredibc270272014-04-01 17:08:42 +02004472out:
Miklos Szeredida1ce062014-04-01 17:08:43 +02004473 if (!is_dir || (flags & RENAME_EXCHANGE))
Miklos Szeredibc270272014-04-01 17:08:42 +02004474 unlock_two_nondirectories(source, target);
4475 else if (target)
Al Viro59551022016-01-22 15:40:57 -05004476 inode_unlock(target);
Miklos Szeredibc270272014-04-01 17:08:42 +02004477 dput(new_dentry);
Miklos Szeredida1ce062014-04-01 17:08:43 +02004478 if (!error) {
Al Viro123df292009-12-25 04:57:57 -05004479 fsnotify_move(old_dir, new_dir, old_name, is_dir,
Miklos Szeredida1ce062014-04-01 17:08:43 +02004480 !(flags & RENAME_EXCHANGE) ? target : NULL, old_dentry);
4481 if (flags & RENAME_EXCHANGE) {
4482 fsnotify_move(new_dir, old_dir, old_dentry->d_name.name,
4483 new_is_dir, NULL, new_dentry);
4484 }
4485 }
Robert Love0eeca282005-07-12 17:06:03 -04004486 fsnotify_oldname_free(old_name);
4487
Linus Torvalds1da177e2005-04-16 15:20:36 -07004488 return error;
4489}
Al Viro4d359502014-03-14 12:20:17 -04004490EXPORT_SYMBOL(vfs_rename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004491
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004492SYSCALL_DEFINE5(renameat2, int, olddfd, const char __user *, oldname,
4493 int, newdfd, const char __user *, newname, unsigned int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004494{
Al Viro2ad94ae2008-07-21 09:32:51 -04004495 struct dentry *old_dentry, *new_dentry;
4496 struct dentry *trap;
Al Virof5beed72015-04-30 16:09:11 -04004497 struct path old_path, new_path;
4498 struct qstr old_last, new_last;
4499 int old_type, new_type;
J. Bruce Fields8e6d7822011-09-20 16:59:58 -04004500 struct inode *delegated_inode = NULL;
Jeff Layton91a27b22012-10-10 15:25:28 -04004501 struct filename *from;
4502 struct filename *to;
Al Virof5beed72015-04-30 16:09:11 -04004503 unsigned int lookup_flags = 0, target_flags = LOOKUP_RENAME_TARGET;
Jeff Laytonc6a94282012-12-11 12:10:10 -05004504 bool should_retry = false;
Al Viro2ad94ae2008-07-21 09:32:51 -04004505 int error;
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004506
Miklos Szeredi0d7a8552014-10-24 00:14:37 +02004507 if (flags & ~(RENAME_NOREPLACE | RENAME_EXCHANGE | RENAME_WHITEOUT))
Miklos Szeredida1ce062014-04-01 17:08:43 +02004508 return -EINVAL;
4509
Miklos Szeredi0d7a8552014-10-24 00:14:37 +02004510 if ((flags & (RENAME_NOREPLACE | RENAME_WHITEOUT)) &&
4511 (flags & RENAME_EXCHANGE))
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004512 return -EINVAL;
4513
Miklos Szeredi0d7a8552014-10-24 00:14:37 +02004514 if ((flags & RENAME_WHITEOUT) && !capable(CAP_MKNOD))
4515 return -EPERM;
4516
Al Virof5beed72015-04-30 16:09:11 -04004517 if (flags & RENAME_EXCHANGE)
4518 target_flags = 0;
4519
Jeff Laytonc6a94282012-12-11 12:10:10 -05004520retry:
Al Virof5beed72015-04-30 16:09:11 -04004521 from = user_path_parent(olddfd, oldname,
4522 &old_path, &old_last, &old_type, lookup_flags);
Jeff Layton91a27b22012-10-10 15:25:28 -04004523 if (IS_ERR(from)) {
4524 error = PTR_ERR(from);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004525 goto exit;
Jeff Layton91a27b22012-10-10 15:25:28 -04004526 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004527
Al Virof5beed72015-04-30 16:09:11 -04004528 to = user_path_parent(newdfd, newname,
4529 &new_path, &new_last, &new_type, lookup_flags);
Jeff Layton91a27b22012-10-10 15:25:28 -04004530 if (IS_ERR(to)) {
4531 error = PTR_ERR(to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004532 goto exit1;
Jeff Layton91a27b22012-10-10 15:25:28 -04004533 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004534
4535 error = -EXDEV;
Al Virof5beed72015-04-30 16:09:11 -04004536 if (old_path.mnt != new_path.mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004537 goto exit2;
4538
Linus Torvalds1da177e2005-04-16 15:20:36 -07004539 error = -EBUSY;
Al Virof5beed72015-04-30 16:09:11 -04004540 if (old_type != LAST_NORM)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004541 goto exit2;
4542
Miklos Szeredi0a7c3932014-04-01 17:08:43 +02004543 if (flags & RENAME_NOREPLACE)
4544 error = -EEXIST;
Al Virof5beed72015-04-30 16:09:11 -04004545 if (new_type != LAST_NORM)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004546 goto exit2;
4547
Al Virof5beed72015-04-30 16:09:11 -04004548 error = mnt_want_write(old_path.mnt);
Jan Karac30dabf2012-06-12 16:20:30 +02004549 if (error)
4550 goto exit2;
4551
J. Bruce Fields8e6d7822011-09-20 16:59:58 -04004552retry_deleg:
Al Virof5beed72015-04-30 16:09:11 -04004553 trap = lock_rename(new_path.dentry, old_path.dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004554
Al Virof5beed72015-04-30 16:09:11 -04004555 old_dentry = __lookup_hash(&old_last, old_path.dentry, lookup_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004556 error = PTR_ERR(old_dentry);
4557 if (IS_ERR(old_dentry))
4558 goto exit3;
4559 /* source must exist */
4560 error = -ENOENT;
David Howellsb18825a2013-09-12 19:22:53 +01004561 if (d_is_negative(old_dentry))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004562 goto exit4;
Al Virof5beed72015-04-30 16:09:11 -04004563 new_dentry = __lookup_hash(&new_last, new_path.dentry, lookup_flags | target_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004564 error = PTR_ERR(new_dentry);
4565 if (IS_ERR(new_dentry))
4566 goto exit4;
Miklos Szeredi0a7c3932014-04-01 17:08:43 +02004567 error = -EEXIST;
4568 if ((flags & RENAME_NOREPLACE) && d_is_positive(new_dentry))
4569 goto exit5;
Miklos Szeredida1ce062014-04-01 17:08:43 +02004570 if (flags & RENAME_EXCHANGE) {
4571 error = -ENOENT;
4572 if (d_is_negative(new_dentry))
4573 goto exit5;
4574
4575 if (!d_is_dir(new_dentry)) {
4576 error = -ENOTDIR;
Al Virof5beed72015-04-30 16:09:11 -04004577 if (new_last.name[new_last.len])
Miklos Szeredida1ce062014-04-01 17:08:43 +02004578 goto exit5;
4579 }
4580 }
Miklos Szeredi0a7c3932014-04-01 17:08:43 +02004581 /* unless the source is a directory trailing slashes give -ENOTDIR */
4582 if (!d_is_dir(old_dentry)) {
4583 error = -ENOTDIR;
Al Virof5beed72015-04-30 16:09:11 -04004584 if (old_last.name[old_last.len])
Miklos Szeredi0a7c3932014-04-01 17:08:43 +02004585 goto exit5;
Al Virof5beed72015-04-30 16:09:11 -04004586 if (!(flags & RENAME_EXCHANGE) && new_last.name[new_last.len])
Miklos Szeredi0a7c3932014-04-01 17:08:43 +02004587 goto exit5;
4588 }
4589 /* source should not be ancestor of target */
4590 error = -EINVAL;
4591 if (old_dentry == trap)
4592 goto exit5;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004593 /* target should not be an ancestor of source */
Miklos Szeredida1ce062014-04-01 17:08:43 +02004594 if (!(flags & RENAME_EXCHANGE))
4595 error = -ENOTEMPTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004596 if (new_dentry == trap)
4597 goto exit5;
4598
Al Virof5beed72015-04-30 16:09:11 -04004599 error = security_path_rename(&old_path, old_dentry,
4600 &new_path, new_dentry, flags);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09004601 if (error)
Jan Karac30dabf2012-06-12 16:20:30 +02004602 goto exit5;
Al Virof5beed72015-04-30 16:09:11 -04004603 error = vfs_rename(old_path.dentry->d_inode, old_dentry,
4604 new_path.dentry->d_inode, new_dentry,
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004605 &delegated_inode, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004606exit5:
4607 dput(new_dentry);
4608exit4:
4609 dput(old_dentry);
4610exit3:
Al Virof5beed72015-04-30 16:09:11 -04004611 unlock_rename(new_path.dentry, old_path.dentry);
J. Bruce Fields8e6d7822011-09-20 16:59:58 -04004612 if (delegated_inode) {
4613 error = break_deleg_wait(&delegated_inode);
4614 if (!error)
4615 goto retry_deleg;
4616 }
Al Virof5beed72015-04-30 16:09:11 -04004617 mnt_drop_write(old_path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004618exit2:
Jeff Laytonc6a94282012-12-11 12:10:10 -05004619 if (retry_estale(error, lookup_flags))
4620 should_retry = true;
Al Virof5beed72015-04-30 16:09:11 -04004621 path_put(&new_path);
Al Viro2ad94ae2008-07-21 09:32:51 -04004622 putname(to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004623exit1:
Al Virof5beed72015-04-30 16:09:11 -04004624 path_put(&old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004625 putname(from);
Jeff Laytonc6a94282012-12-11 12:10:10 -05004626 if (should_retry) {
4627 should_retry = false;
4628 lookup_flags |= LOOKUP_REVAL;
4629 goto retry;
4630 }
Al Viro2ad94ae2008-07-21 09:32:51 -04004631exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004632 return error;
4633}
4634
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004635SYSCALL_DEFINE4(renameat, int, olddfd, const char __user *, oldname,
4636 int, newdfd, const char __user *, newname)
4637{
4638 return sys_renameat2(olddfd, oldname, newdfd, newname, 0);
4639}
4640
Heiko Carstensa26eab22009-01-14 14:14:17 +01004641SYSCALL_DEFINE2(rename, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08004642{
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004643 return sys_renameat2(AT_FDCWD, oldname, AT_FDCWD, newname, 0);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08004644}
4645
Miklos Szeredi787fb6b2014-10-24 00:14:36 +02004646int vfs_whiteout(struct inode *dir, struct dentry *dentry)
4647{
4648 int error = may_create(dir, dentry);
4649 if (error)
4650 return error;
4651
4652 if (!dir->i_op->mknod)
4653 return -EPERM;
4654
4655 return dir->i_op->mknod(dir, dentry,
4656 S_IFCHR | WHITEOUT_MODE, WHITEOUT_DEV);
4657}
4658EXPORT_SYMBOL(vfs_whiteout);
4659
Al Viro5d826c82014-03-14 13:42:45 -04004660int readlink_copy(char __user *buffer, int buflen, const char *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004661{
Al Viro5d826c82014-03-14 13:42:45 -04004662 int len = PTR_ERR(link);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004663 if (IS_ERR(link))
4664 goto out;
4665
4666 len = strlen(link);
4667 if (len > (unsigned) buflen)
4668 len = buflen;
4669 if (copy_to_user(buffer, link, len))
4670 len = -EFAULT;
4671out:
4672 return len;
4673}
4674
4675/*
4676 * A helper for ->readlink(). This should be used *ONLY* for symlinks that
Al Viro6b255392015-11-17 10:20:54 -05004677 * have ->get_link() not calling nd_jump_link(). Using (or not using) it
4678 * for any given inode is up to filesystem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004679 */
4680int generic_readlink(struct dentry *dentry, char __user *buffer, int buflen)
4681{
Al Virofceef392015-12-29 15:58:39 -05004682 DEFINE_DELAYED_CALL(done);
Al Viro5f2c4172015-05-07 11:14:26 -04004683 struct inode *inode = d_inode(dentry);
4684 const char *link = inode->i_link;
Marcin Slusarz694a1762008-06-09 16:40:37 -07004685 int res;
Linus Torvaldscc314ee2005-08-19 18:02:56 -07004686
Al Virod4dee482015-04-30 20:08:02 -04004687 if (!link) {
Al Virofceef392015-12-29 15:58:39 -05004688 link = inode->i_op->get_link(dentry, inode, &done);
Al Virod4dee482015-04-30 20:08:02 -04004689 if (IS_ERR(link))
4690 return PTR_ERR(link);
4691 }
Al Viro680baac2015-05-02 13:32:22 -04004692 res = readlink_copy(buffer, buflen, link);
Al Virofceef392015-12-29 15:58:39 -05004693 do_delayed_call(&done);
Marcin Slusarz694a1762008-06-09 16:40:37 -07004694 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004695}
Al Viro4d359502014-03-14 12:20:17 -04004696EXPORT_SYMBOL(generic_readlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004697
Linus Torvalds1da177e2005-04-16 15:20:36 -07004698/* get the link contents into pagecache */
Al Viro6b255392015-11-17 10:20:54 -05004699const char *page_get_link(struct dentry *dentry, struct inode *inode,
Al Virofceef392015-12-29 15:58:39 -05004700 struct delayed_call *callback)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004701{
Duane Griffinebd09ab2008-12-19 20:47:12 +00004702 char *kaddr;
4703 struct page *page;
Al Viro6b255392015-11-17 10:20:54 -05004704 struct address_space *mapping = inode->i_mapping;
4705
Al Virod3883d42015-11-17 10:41:04 -05004706 if (!dentry) {
4707 page = find_get_page(mapping, 0);
4708 if (!page)
4709 return ERR_PTR(-ECHILD);
4710 if (!PageUptodate(page)) {
4711 put_page(page);
4712 return ERR_PTR(-ECHILD);
4713 }
4714 } else {
4715 page = read_mapping_page(mapping, 0, NULL);
4716 if (IS_ERR(page))
4717 return (char*)page;
4718 }
Al Virofceef392015-12-29 15:58:39 -05004719 set_delayed_call(callback, page_put_link, page);
Al Viro21fc61c2015-11-17 01:07:57 -05004720 BUG_ON(mapping_gfp_mask(mapping) & __GFP_HIGHMEM);
4721 kaddr = page_address(page);
Al Viro6b255392015-11-17 10:20:54 -05004722 nd_terminate_link(kaddr, inode->i_size, PAGE_SIZE - 1);
Duane Griffinebd09ab2008-12-19 20:47:12 +00004723 return kaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004724}
4725
Al Viro6b255392015-11-17 10:20:54 -05004726EXPORT_SYMBOL(page_get_link);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004727
Al Virofceef392015-12-29 15:58:39 -05004728void page_put_link(void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004729{
Al Virofceef392015-12-29 15:58:39 -05004730 put_page(arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004731}
Al Viro4d359502014-03-14 12:20:17 -04004732EXPORT_SYMBOL(page_put_link);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004733
Al Viroaa80dea2015-11-16 18:26:34 -05004734int page_readlink(struct dentry *dentry, char __user *buffer, int buflen)
4735{
Al Virofceef392015-12-29 15:58:39 -05004736 DEFINE_DELAYED_CALL(done);
Al Viro6b255392015-11-17 10:20:54 -05004737 int res = readlink_copy(buffer, buflen,
4738 page_get_link(dentry, d_inode(dentry),
Al Virofceef392015-12-29 15:58:39 -05004739 &done));
4740 do_delayed_call(&done);
Al Viroaa80dea2015-11-16 18:26:34 -05004741 return res;
4742}
4743EXPORT_SYMBOL(page_readlink);
4744
Nick Piggin54566b22009-01-04 12:00:53 -08004745/*
4746 * The nofs argument instructs pagecache_write_begin to pass AOP_FLAG_NOFS
4747 */
4748int __page_symlink(struct inode *inode, const char *symname, int len, int nofs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004749{
4750 struct address_space *mapping = inode->i_mapping;
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08004751 struct page *page;
Nick Pigginafddba42007-10-16 01:25:01 -07004752 void *fsdata;
Dmitriy Monakhovbeb497a2007-02-16 01:27:18 -08004753 int err;
Nick Piggin54566b22009-01-04 12:00:53 -08004754 unsigned int flags = AOP_FLAG_UNINTERRUPTIBLE;
4755 if (nofs)
4756 flags |= AOP_FLAG_NOFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004757
NeilBrown7e53cac2006-03-25 03:07:57 -08004758retry:
Nick Pigginafddba42007-10-16 01:25:01 -07004759 err = pagecache_write_begin(NULL, mapping, 0, len-1,
Nick Piggin54566b22009-01-04 12:00:53 -08004760 flags, &page, &fsdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004761 if (err)
Nick Pigginafddba42007-10-16 01:25:01 -07004762 goto fail;
4763
Al Viro21fc61c2015-11-17 01:07:57 -05004764 memcpy(page_address(page), symname, len-1);
Nick Pigginafddba42007-10-16 01:25:01 -07004765
4766 err = pagecache_write_end(NULL, mapping, 0, len-1, len-1,
4767 page, fsdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004768 if (err < 0)
4769 goto fail;
Nick Pigginafddba42007-10-16 01:25:01 -07004770 if (err < len-1)
4771 goto retry;
4772
Linus Torvalds1da177e2005-04-16 15:20:36 -07004773 mark_inode_dirty(inode);
4774 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004775fail:
4776 return err;
4777}
Al Viro4d359502014-03-14 12:20:17 -04004778EXPORT_SYMBOL(__page_symlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004779
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08004780int page_symlink(struct inode *inode, const char *symname, int len)
4781{
4782 return __page_symlink(inode, symname, len,
Michal Hockoc62d2552015-11-06 16:28:49 -08004783 !mapping_gfp_constraint(inode->i_mapping, __GFP_FS));
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08004784}
Al Viro4d359502014-03-14 12:20:17 -04004785EXPORT_SYMBOL(page_symlink);
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08004786
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08004787const struct inode_operations page_symlink_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004788 .readlink = generic_readlink,
Al Viro6b255392015-11-17 10:20:54 -05004789 .get_link = page_get_link,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004790};
Linus Torvalds1da177e2005-04-16 15:20:36 -07004791EXPORT_SYMBOL(page_symlink_inode_operations);