blob: 3d9511e656ab9f90ffbb03c1462e03e1623b79aa [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;
904
905 if (!sysctl_protected_symlinks)
906 return 0;
907
908 /* Allowed if owner and follower match. */
Al Virofceef392015-12-29 15:58:39 -0500909 inode = nd->link_inode;
Eric W. Biederman81abe272012-08-03 09:38:08 -0700910 if (uid_eq(current_cred()->fsuid, inode->i_uid))
Kees Cook800179c2012-07-25 17:29:07 -0700911 return 0;
912
913 /* Allowed if parent directory not sticky and world-writable. */
Al Viroaa65fa32015-08-04 23:23:50 -0400914 parent = nd->inode;
Kees Cook800179c2012-07-25 17:29:07 -0700915 if ((parent->i_mode & (S_ISVTX|S_IWOTH)) != (S_ISVTX|S_IWOTH))
916 return 0;
917
918 /* Allowed if parent directory and link owner match. */
Eric W. Biederman81abe272012-08-03 09:38:08 -0700919 if (uid_eq(parent->i_uid, inode->i_uid))
Kees Cook800179c2012-07-25 17:29:07 -0700920 return 0;
921
Al Viro319565022015-05-07 20:37:40 -0400922 if (nd->flags & LOOKUP_RCU)
923 return -ECHILD;
924
Al Viro1cf26652015-05-06 16:01:56 -0400925 audit_log_link_denied("follow_link", &nd->stack[0].link);
Kees Cook800179c2012-07-25 17:29:07 -0700926 return -EACCES;
927}
928
929/**
930 * safe_hardlink_source - Check for safe hardlink conditions
931 * @inode: the source inode to hardlink from
932 *
933 * Return false if at least one of the following conditions:
934 * - inode is not a regular file
935 * - inode is setuid
936 * - inode is setgid and group-exec
937 * - access failure for read and write
938 *
939 * Otherwise returns true.
940 */
941static bool safe_hardlink_source(struct inode *inode)
942{
943 umode_t mode = inode->i_mode;
944
945 /* Special files should not get pinned to the filesystem. */
946 if (!S_ISREG(mode))
947 return false;
948
949 /* Setuid files should not get pinned to the filesystem. */
950 if (mode & S_ISUID)
951 return false;
952
953 /* Executable setgid files should not get pinned to the filesystem. */
954 if ((mode & (S_ISGID | S_IXGRP)) == (S_ISGID | S_IXGRP))
955 return false;
956
957 /* Hardlinking to unreadable or unwritable sources is dangerous. */
958 if (inode_permission(inode, MAY_READ | MAY_WRITE))
959 return false;
960
961 return true;
962}
963
964/**
965 * may_linkat - Check permissions for creating a hardlink
966 * @link: the source to hardlink from
967 *
968 * Block hardlink when all of:
969 * - sysctl_protected_hardlinks enabled
970 * - fsuid does not match inode
971 * - hardlink source is unsafe (see safe_hardlink_source() above)
Dirk Steinmetzf2ca3792015-10-20 16:09:19 +0200972 * - not CAP_FOWNER in a namespace with the inode owner uid mapped
Kees Cook800179c2012-07-25 17:29:07 -0700973 *
974 * Returns 0 if successful, -ve on error.
975 */
976static int may_linkat(struct path *link)
977{
Kees Cook800179c2012-07-25 17:29:07 -0700978 struct inode *inode;
979
980 if (!sysctl_protected_hardlinks)
981 return 0;
982
Kees Cook800179c2012-07-25 17:29:07 -0700983 inode = link->dentry->d_inode;
984
985 /* Source inode owner (or CAP_FOWNER) can hardlink all they like,
986 * otherwise, it must be a safe source.
987 */
Dirk Steinmetzf2ca3792015-10-20 16:09:19 +0200988 if (inode_owner_or_capable(inode) || safe_hardlink_source(inode))
Kees Cook800179c2012-07-25 17:29:07 -0700989 return 0;
990
Kees Cooka51d9ea2012-07-25 17:29:08 -0700991 audit_log_link_denied("linkat", link);
Kees Cook800179c2012-07-25 17:29:07 -0700992 return -EPERM;
993}
994
Al Viro3b2e7f72015-04-19 00:53:50 -0400995static __always_inline
996const char *get_link(struct nameidata *nd)
Ian Kent051d3812006-03-27 01:14:53 -0800997{
Al Viroab104922015-05-10 11:50:01 -0400998 struct saved *last = nd->stack + nd->depth - 1;
Al Viro1cf26652015-05-06 16:01:56 -0400999 struct dentry *dentry = last->link.dentry;
Al Virofceef392015-12-29 15:58:39 -05001000 struct inode *inode = nd->link_inode;
Al Viro6d7b5aa2012-06-10 04:15:17 -04001001 int error;
Al Viro0a959df2015-04-18 18:23:41 -04001002 const char *res;
Ian Kent051d3812006-03-27 01:14:53 -08001003
NeilBrown8fa9dd22015-03-23 13:37:40 +11001004 if (!(nd->flags & LOOKUP_RCU)) {
1005 touch_atime(&last->link);
1006 cond_resched();
1007 } else if (atime_needs_update(&last->link, inode)) {
1008 if (unlikely(unlazy_walk(nd, NULL, 0)))
1009 return ERR_PTR(-ECHILD);
1010 touch_atime(&last->link);
1011 }
1012
NeilBrownbda0be72015-03-23 13:37:39 +11001013 error = security_inode_follow_link(dentry, inode,
1014 nd->flags & LOOKUP_RCU);
1015 if (unlikely(error))
Al Viro6920a442015-05-10 10:43:46 -04001016 return ERR_PTR(error);
Al Viro36f3b4f2011-02-22 21:24:38 -05001017
Al Viro86acdca12009-12-22 23:45:11 -05001018 nd->last_type = LAST_BIND;
Al Virod4dee482015-04-30 20:08:02 -04001019 res = inode->i_link;
1020 if (!res) {
Al Virofceef392015-12-29 15:58:39 -05001021 const char * (*get)(struct dentry *, struct inode *,
1022 struct delayed_call *);
1023 get = inode->i_op->get_link;
Al Viro8c1b4562015-05-09 18:15:21 -04001024 if (nd->flags & LOOKUP_RCU) {
Al Virofceef392015-12-29 15:58:39 -05001025 res = get(NULL, inode, &last->done);
Al Viro6b255392015-11-17 10:20:54 -05001026 if (res == ERR_PTR(-ECHILD)) {
1027 if (unlikely(unlazy_walk(nd, NULL, 0)))
1028 return ERR_PTR(-ECHILD);
Al Virofceef392015-12-29 15:58:39 -05001029 res = get(dentry, inode, &last->done);
Al Viro6b255392015-11-17 10:20:54 -05001030 }
1031 } else {
Al Virofceef392015-12-29 15:58:39 -05001032 res = get(dentry, inode, &last->done);
Al Viro8c1b4562015-05-09 18:15:21 -04001033 }
Al Virofceef392015-12-29 15:58:39 -05001034 if (IS_ERR_OR_NULL(res))
Al Virofab51e82015-05-10 11:01:00 -04001035 return res;
Ian Kent051d3812006-03-27 01:14:53 -08001036 }
Al Virofab51e82015-05-10 11:01:00 -04001037 if (*res == '/') {
Al Viro9e6697e2015-12-05 20:07:21 -05001038 if (!nd->root.mnt)
1039 set_root(nd);
Al Viro248fb5b2015-12-05 20:51:58 -05001040 if (unlikely(nd_jump_root(nd)))
1041 return ERR_PTR(-ECHILD);
Al Virofab51e82015-05-10 11:01:00 -04001042 while (unlikely(*++res == '/'))
1043 ;
1044 }
1045 if (!*res)
1046 res = NULL;
Al Viro0a959df2015-04-18 18:23:41 -04001047 return res;
1048}
Al Viro6d7b5aa2012-06-10 04:15:17 -04001049
David Howellsf015f1262012-06-25 12:55:28 +01001050/*
1051 * follow_up - Find the mountpoint of path's vfsmount
1052 *
1053 * Given a path, find the mountpoint of its source file system.
1054 * Replace @path with the path of the mountpoint in the parent mount.
1055 * Up is towards /.
1056 *
1057 * Return 1 if we went up a level and 0 if we were already at the
1058 * root.
1059 */
Al Virobab77eb2009-04-18 03:26:48 -04001060int follow_up(struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061{
Al Viro0714a532011-11-24 22:19:58 -05001062 struct mount *mnt = real_mount(path->mnt);
1063 struct mount *parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 struct dentry *mountpoint;
Nick Piggin99b7db72010-08-18 04:37:39 +10001065
Al Viro48a066e2013-09-29 22:06:07 -04001066 read_seqlock_excl(&mount_lock);
Al Viro0714a532011-11-24 22:19:58 -05001067 parent = mnt->mnt_parent;
Al Viro3c0a6162012-07-18 17:32:50 +04001068 if (parent == mnt) {
Al Viro48a066e2013-09-29 22:06:07 -04001069 read_sequnlock_excl(&mount_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 return 0;
1071 }
Al Viro0714a532011-11-24 22:19:58 -05001072 mntget(&parent->mnt);
Al Viroa73324d2011-11-24 22:25:07 -05001073 mountpoint = dget(mnt->mnt_mountpoint);
Al Viro48a066e2013-09-29 22:06:07 -04001074 read_sequnlock_excl(&mount_lock);
Al Virobab77eb2009-04-18 03:26:48 -04001075 dput(path->dentry);
1076 path->dentry = mountpoint;
1077 mntput(path->mnt);
Al Viro0714a532011-11-24 22:19:58 -05001078 path->mnt = &parent->mnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 return 1;
1080}
Al Viro4d359502014-03-14 12:20:17 -04001081EXPORT_SYMBOL(follow_up);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082
Nick Pigginb5c84bf2011-01-07 17:49:38 +11001083/*
David Howells9875cf82011-01-14 18:45:21 +00001084 * Perform an automount
1085 * - return -EISDIR to tell follow_managed() to stop and return the path we
1086 * were called with.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 */
NeilBrown756daf22015-03-23 13:37:38 +11001088static int follow_automount(struct path *path, struct nameidata *nd,
David Howells9875cf82011-01-14 18:45:21 +00001089 bool *need_mntput)
Nick Piggin31e6b012011-01-07 17:49:52 +11001090{
David Howells9875cf82011-01-14 18:45:21 +00001091 struct vfsmount *mnt;
David Howellsea5b7782011-01-14 19:10:03 +00001092 int err;
Nick Piggin31e6b012011-01-07 17:49:52 +11001093
David Howells9875cf82011-01-14 18:45:21 +00001094 if (!path->dentry->d_op || !path->dentry->d_op->d_automount)
1095 return -EREMOTE;
Al Viro463ffb22005-06-06 13:36:05 -07001096
Miklos Szeredi0ec26fd2011-09-05 18:06:26 +02001097 /* We don't want to mount if someone's just doing a stat -
1098 * unless they're stat'ing a directory and appended a '/' to
1099 * the name.
1100 *
1101 * We do, however, want to mount if someone wants to open or
1102 * create a file of any type under the mountpoint, wants to
1103 * traverse through the mountpoint or wants to open the
1104 * mounted directory. Also, autofs may mark negative dentries
1105 * as being automount points. These will need the attentions
1106 * of the daemon to instantiate them before they can be used.
David Howells9875cf82011-01-14 18:45:21 +00001107 */
NeilBrown756daf22015-03-23 13:37:38 +11001108 if (!(nd->flags & (LOOKUP_PARENT | LOOKUP_DIRECTORY |
1109 LOOKUP_OPEN | LOOKUP_CREATE | LOOKUP_AUTOMOUNT)) &&
Miklos Szeredi0ec26fd2011-09-05 18:06:26 +02001110 path->dentry->d_inode)
1111 return -EISDIR;
1112
NeilBrown756daf22015-03-23 13:37:38 +11001113 nd->total_link_count++;
1114 if (nd->total_link_count >= 40)
David Howells9875cf82011-01-14 18:45:21 +00001115 return -ELOOP;
1116
1117 mnt = path->dentry->d_op->d_automount(path);
1118 if (IS_ERR(mnt)) {
1119 /*
1120 * The filesystem is allowed to return -EISDIR here to indicate
1121 * it doesn't want to automount. For instance, autofs would do
1122 * this so that its userspace daemon can mount on this dentry.
1123 *
1124 * However, we can only permit this if it's a terminal point in
1125 * the path being looked up; if it wasn't then the remainder of
1126 * the path is inaccessible and we should say so.
1127 */
NeilBrown756daf22015-03-23 13:37:38 +11001128 if (PTR_ERR(mnt) == -EISDIR && (nd->flags & LOOKUP_PARENT))
David Howells9875cf82011-01-14 18:45:21 +00001129 return -EREMOTE;
1130 return PTR_ERR(mnt);
1131 }
David Howellsea5b7782011-01-14 19:10:03 +00001132
David Howells9875cf82011-01-14 18:45:21 +00001133 if (!mnt) /* mount collision */
1134 return 0;
1135
Al Viro8aef1882011-06-16 15:10:06 +01001136 if (!*need_mntput) {
1137 /* lock_mount() may release path->mnt on error */
1138 mntget(path->mnt);
1139 *need_mntput = true;
1140 }
Al Viro19a167a2011-01-17 01:35:23 -05001141 err = finish_automount(mnt, path);
David Howellsea5b7782011-01-14 19:10:03 +00001142
David Howellsea5b7782011-01-14 19:10:03 +00001143 switch (err) {
1144 case -EBUSY:
1145 /* Someone else made a mount here whilst we were busy */
Al Viro19a167a2011-01-17 01:35:23 -05001146 return 0;
David Howellsea5b7782011-01-14 19:10:03 +00001147 case 0:
Al Viro8aef1882011-06-16 15:10:06 +01001148 path_put(path);
David Howellsea5b7782011-01-14 19:10:03 +00001149 path->mnt = mnt;
1150 path->dentry = dget(mnt->mnt_root);
David Howellsea5b7782011-01-14 19:10:03 +00001151 return 0;
Al Viro19a167a2011-01-17 01:35:23 -05001152 default:
1153 return err;
David Howellsea5b7782011-01-14 19:10:03 +00001154 }
Al Viro19a167a2011-01-17 01:35:23 -05001155
David Howells9875cf82011-01-14 18:45:21 +00001156}
1157
1158/*
1159 * Handle a dentry that is managed in some way.
David Howellscc53ce52011-01-14 18:45:26 +00001160 * - Flagged for transit management (autofs)
David Howells9875cf82011-01-14 18:45:21 +00001161 * - Flagged as mountpoint
1162 * - Flagged as automount point
1163 *
1164 * This may only be called in refwalk mode.
1165 *
1166 * Serialization is taken care of in namespace.c
1167 */
NeilBrown756daf22015-03-23 13:37:38 +11001168static int follow_managed(struct path *path, struct nameidata *nd)
David Howells9875cf82011-01-14 18:45:21 +00001169{
Al Viro8aef1882011-06-16 15:10:06 +01001170 struct vfsmount *mnt = path->mnt; /* held by caller, must be left alone */
David Howells9875cf82011-01-14 18:45:21 +00001171 unsigned managed;
1172 bool need_mntput = false;
Al Viro8aef1882011-06-16 15:10:06 +01001173 int ret = 0;
David Howells9875cf82011-01-14 18:45:21 +00001174
1175 /* Given that we're not holding a lock here, we retain the value in a
1176 * local variable for each dentry as we look at it so that we don't see
1177 * the components of that value change under us */
1178 while (managed = ACCESS_ONCE(path->dentry->d_flags),
1179 managed &= DCACHE_MANAGED_DENTRY,
1180 unlikely(managed != 0)) {
David Howellscc53ce52011-01-14 18:45:26 +00001181 /* Allow the filesystem to manage the transit without i_mutex
1182 * being held. */
1183 if (managed & DCACHE_MANAGE_TRANSIT) {
1184 BUG_ON(!path->dentry->d_op);
1185 BUG_ON(!path->dentry->d_op->d_manage);
Al Viro1aed3e42011-03-18 09:09:02 -04001186 ret = path->dentry->d_op->d_manage(path->dentry, false);
David Howellscc53ce52011-01-14 18:45:26 +00001187 if (ret < 0)
Al Viro8aef1882011-06-16 15:10:06 +01001188 break;
David Howellscc53ce52011-01-14 18:45:26 +00001189 }
1190
David Howells9875cf82011-01-14 18:45:21 +00001191 /* Transit to a mounted filesystem. */
1192 if (managed & DCACHE_MOUNTED) {
1193 struct vfsmount *mounted = lookup_mnt(path);
1194 if (mounted) {
1195 dput(path->dentry);
1196 if (need_mntput)
1197 mntput(path->mnt);
1198 path->mnt = mounted;
1199 path->dentry = dget(mounted->mnt_root);
1200 need_mntput = true;
1201 continue;
1202 }
1203
1204 /* Something is mounted on this dentry in another
1205 * namespace and/or whatever was mounted there in this
Al Viro48a066e2013-09-29 22:06:07 -04001206 * namespace got unmounted before lookup_mnt() could
1207 * get it */
David Howells9875cf82011-01-14 18:45:21 +00001208 }
1209
1210 /* Handle an automount point */
1211 if (managed & DCACHE_NEED_AUTOMOUNT) {
NeilBrown756daf22015-03-23 13:37:38 +11001212 ret = follow_automount(path, nd, &need_mntput);
David Howells9875cf82011-01-14 18:45:21 +00001213 if (ret < 0)
Al Viro8aef1882011-06-16 15:10:06 +01001214 break;
David Howells9875cf82011-01-14 18:45:21 +00001215 continue;
1216 }
1217
1218 /* We didn't change the current path point */
1219 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 }
Al Viro8aef1882011-06-16 15:10:06 +01001221
1222 if (need_mntput && path->mnt == mnt)
1223 mntput(path->mnt);
Al Viroe9742b52016-03-05 22:04:59 -05001224 if (ret == -EISDIR || !ret)
1225 ret = 1;
Al Viro84027522015-04-22 10:30:08 -04001226 if (need_mntput)
1227 nd->flags |= LOOKUP_JUMPED;
1228 if (unlikely(ret < 0))
1229 path_put_conditional(path, nd);
1230 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231}
1232
David Howellscc53ce52011-01-14 18:45:26 +00001233int follow_down_one(struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234{
1235 struct vfsmount *mounted;
1236
Al Viro1c755af2009-04-18 14:06:57 -04001237 mounted = lookup_mnt(path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 if (mounted) {
Al Viro9393bd02009-04-18 13:58:15 -04001239 dput(path->dentry);
1240 mntput(path->mnt);
1241 path->mnt = mounted;
1242 path->dentry = dget(mounted->mnt_root);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 return 1;
1244 }
1245 return 0;
1246}
Al Viro4d359502014-03-14 12:20:17 -04001247EXPORT_SYMBOL(follow_down_one);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248
NeilBrownb8faf032014-08-04 17:06:29 +10001249static inline int managed_dentry_rcu(struct dentry *dentry)
Ian Kent62a73752011-03-25 01:51:02 +08001250{
NeilBrownb8faf032014-08-04 17:06:29 +10001251 return (dentry->d_flags & DCACHE_MANAGE_TRANSIT) ?
1252 dentry->d_op->d_manage(dentry, true) : 0;
Ian Kent62a73752011-03-25 01:51:02 +08001253}
1254
David Howells9875cf82011-01-14 18:45:21 +00001255/*
Al Viro287548e2011-05-27 06:50:06 -04001256 * Try to skip to top of mountpoint pile in rcuwalk mode. Fail if
1257 * we meet a managed dentry that would need blocking.
David Howells9875cf82011-01-14 18:45:21 +00001258 */
1259static bool __follow_mount_rcu(struct nameidata *nd, struct path *path,
Al Viro254cf582015-05-05 09:40:46 -04001260 struct inode **inode, unsigned *seqp)
David Howells9875cf82011-01-14 18:45:21 +00001261{
Ian Kent62a73752011-03-25 01:51:02 +08001262 for (;;) {
Al Viroc7105362011-11-24 18:22:03 -05001263 struct mount *mounted;
Ian Kent62a73752011-03-25 01:51:02 +08001264 /*
1265 * Don't forget we might have a non-mountpoint managed dentry
1266 * that wants to block transit.
1267 */
NeilBrownb8faf032014-08-04 17:06:29 +10001268 switch (managed_dentry_rcu(path->dentry)) {
1269 case -ECHILD:
1270 default:
David Howellsab909112011-01-14 18:46:51 +00001271 return false;
NeilBrownb8faf032014-08-04 17:06:29 +10001272 case -EISDIR:
1273 return true;
1274 case 0:
1275 break;
1276 }
Ian Kent62a73752011-03-25 01:51:02 +08001277
1278 if (!d_mountpoint(path->dentry))
NeilBrownb8faf032014-08-04 17:06:29 +10001279 return !(path->dentry->d_flags & DCACHE_NEED_AUTOMOUNT);
Ian Kent62a73752011-03-25 01:51:02 +08001280
Al Viro474279d2013-10-01 16:11:26 -04001281 mounted = __lookup_mnt(path->mnt, path->dentry);
David Howells9875cf82011-01-14 18:45:21 +00001282 if (!mounted)
1283 break;
Al Viroc7105362011-11-24 18:22:03 -05001284 path->mnt = &mounted->mnt;
1285 path->dentry = mounted->mnt.mnt_root;
Al Viroa3fbbde2011-11-07 21:21:26 +00001286 nd->flags |= LOOKUP_JUMPED;
Al Viro254cf582015-05-05 09:40:46 -04001287 *seqp = read_seqcount_begin(&path->dentry->d_seq);
Linus Torvalds59430262011-07-18 15:43:29 -07001288 /*
1289 * Update the inode too. We don't need to re-check the
1290 * dentry sequence number here after this d_inode read,
1291 * because a mount-point is always pinned.
1292 */
1293 *inode = path->dentry->d_inode;
David Howells9875cf82011-01-14 18:45:21 +00001294 }
Al Virof5be3e29122014-09-13 21:50:45 -04001295 return !read_seqretry(&mount_lock, nd->m_seq) &&
NeilBrownb8faf032014-08-04 17:06:29 +10001296 !(path->dentry->d_flags & DCACHE_NEED_AUTOMOUNT);
Al Viro287548e2011-05-27 06:50:06 -04001297}
1298
Nick Piggin31e6b012011-01-07 17:49:52 +11001299static int follow_dotdot_rcu(struct nameidata *nd)
1300{
Al Viro4023bfc2014-09-13 21:59:43 -04001301 struct inode *inode = nd->inode;
Nick Piggin31e6b012011-01-07 17:49:52 +11001302
David Howells9875cf82011-01-14 18:45:21 +00001303 while (1) {
Al Viroaed434a2015-05-12 12:22:47 -04001304 if (path_equal(&nd->path, &nd->root))
Nick Piggin31e6b012011-01-07 17:49:52 +11001305 break;
Nick Piggin31e6b012011-01-07 17:49:52 +11001306 if (nd->path.dentry != nd->path.mnt->mnt_root) {
1307 struct dentry *old = nd->path.dentry;
1308 struct dentry *parent = old->d_parent;
1309 unsigned seq;
1310
Al Viro4023bfc2014-09-13 21:59:43 -04001311 inode = parent->d_inode;
Nick Piggin31e6b012011-01-07 17:49:52 +11001312 seq = read_seqcount_begin(&parent->d_seq);
Al Viroaed434a2015-05-12 12:22:47 -04001313 if (unlikely(read_seqcount_retry(&old->d_seq, nd->seq)))
1314 return -ECHILD;
Nick Piggin31e6b012011-01-07 17:49:52 +11001315 nd->path.dentry = parent;
1316 nd->seq = seq;
Eric W. Biederman397d4252015-08-15 20:27:13 -05001317 if (unlikely(!path_connected(&nd->path)))
1318 return -ENOENT;
Nick Piggin31e6b012011-01-07 17:49:52 +11001319 break;
Al Viroaed434a2015-05-12 12:22:47 -04001320 } else {
1321 struct mount *mnt = real_mount(nd->path.mnt);
1322 struct mount *mparent = mnt->mnt_parent;
1323 struct dentry *mountpoint = mnt->mnt_mountpoint;
1324 struct inode *inode2 = mountpoint->d_inode;
1325 unsigned seq = read_seqcount_begin(&mountpoint->d_seq);
1326 if (unlikely(read_seqretry(&mount_lock, nd->m_seq)))
1327 return -ECHILD;
1328 if (&mparent->mnt == nd->path.mnt)
1329 break;
1330 /* we know that mountpoint was pinned */
1331 nd->path.dentry = mountpoint;
1332 nd->path.mnt = &mparent->mnt;
1333 inode = inode2;
1334 nd->seq = seq;
Nick Piggin31e6b012011-01-07 17:49:52 +11001335 }
Nick Piggin31e6b012011-01-07 17:49:52 +11001336 }
Al Viroaed434a2015-05-12 12:22:47 -04001337 while (unlikely(d_mountpoint(nd->path.dentry))) {
Al Virob37199e2014-03-20 15:18:22 -04001338 struct mount *mounted;
1339 mounted = __lookup_mnt(nd->path.mnt, nd->path.dentry);
Al Viroaed434a2015-05-12 12:22:47 -04001340 if (unlikely(read_seqretry(&mount_lock, nd->m_seq)))
1341 return -ECHILD;
Al Virob37199e2014-03-20 15:18:22 -04001342 if (!mounted)
1343 break;
1344 nd->path.mnt = &mounted->mnt;
1345 nd->path.dentry = mounted->mnt.mnt_root;
Al Viro4023bfc2014-09-13 21:59:43 -04001346 inode = nd->path.dentry->d_inode;
Al Virob37199e2014-03-20 15:18:22 -04001347 nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq);
Al Virob37199e2014-03-20 15:18:22 -04001348 }
Al Viro4023bfc2014-09-13 21:59:43 -04001349 nd->inode = inode;
Nick Piggin31e6b012011-01-07 17:49:52 +11001350 return 0;
1351}
1352
David Howells9875cf82011-01-14 18:45:21 +00001353/*
David Howellscc53ce52011-01-14 18:45:26 +00001354 * Follow down to the covering mount currently visible to userspace. At each
1355 * point, the filesystem owning that dentry may be queried as to whether the
1356 * caller is permitted to proceed or not.
David Howellscc53ce52011-01-14 18:45:26 +00001357 */
Al Viro7cc90cc2011-03-18 09:04:20 -04001358int follow_down(struct path *path)
David Howellscc53ce52011-01-14 18:45:26 +00001359{
1360 unsigned managed;
1361 int ret;
1362
1363 while (managed = ACCESS_ONCE(path->dentry->d_flags),
1364 unlikely(managed & DCACHE_MANAGED_DENTRY)) {
1365 /* Allow the filesystem to manage the transit without i_mutex
1366 * being held.
1367 *
1368 * We indicate to the filesystem if someone is trying to mount
1369 * something here. This gives autofs the chance to deny anyone
1370 * other than its daemon the right to mount on its
1371 * superstructure.
1372 *
1373 * The filesystem may sleep at this point.
1374 */
1375 if (managed & DCACHE_MANAGE_TRANSIT) {
1376 BUG_ON(!path->dentry->d_op);
1377 BUG_ON(!path->dentry->d_op->d_manage);
David Howellsab909112011-01-14 18:46:51 +00001378 ret = path->dentry->d_op->d_manage(
Al Viro1aed3e42011-03-18 09:09:02 -04001379 path->dentry, false);
David Howellscc53ce52011-01-14 18:45:26 +00001380 if (ret < 0)
1381 return ret == -EISDIR ? 0 : ret;
1382 }
1383
1384 /* Transit to a mounted filesystem. */
1385 if (managed & DCACHE_MOUNTED) {
1386 struct vfsmount *mounted = lookup_mnt(path);
1387 if (!mounted)
1388 break;
1389 dput(path->dentry);
1390 mntput(path->mnt);
1391 path->mnt = mounted;
1392 path->dentry = dget(mounted->mnt_root);
1393 continue;
1394 }
1395
1396 /* Don't handle automount points here */
1397 break;
1398 }
1399 return 0;
1400}
Al Viro4d359502014-03-14 12:20:17 -04001401EXPORT_SYMBOL(follow_down);
David Howellscc53ce52011-01-14 18:45:26 +00001402
1403/*
David Howells9875cf82011-01-14 18:45:21 +00001404 * Skip to top of mountpoint pile in refwalk mode for follow_dotdot()
1405 */
1406static void follow_mount(struct path *path)
1407{
1408 while (d_mountpoint(path->dentry)) {
1409 struct vfsmount *mounted = lookup_mnt(path);
1410 if (!mounted)
1411 break;
1412 dput(path->dentry);
1413 mntput(path->mnt);
1414 path->mnt = mounted;
1415 path->dentry = dget(mounted->mnt_root);
1416 }
1417}
1418
Eric W. Biederman397d4252015-08-15 20:27:13 -05001419static int follow_dotdot(struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420{
1421 while(1) {
Jan Blunck4ac91372008-02-14 19:34:32 -08001422 struct dentry *old = nd->path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423
Al Viro2a737872009-04-07 11:49:53 -04001424 if (nd->path.dentry == nd->root.dentry &&
1425 nd->path.mnt == nd->root.mnt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 break;
1427 }
Jan Blunck4ac91372008-02-14 19:34:32 -08001428 if (nd->path.dentry != nd->path.mnt->mnt_root) {
Al Viro3088dd72010-01-30 15:47:29 -05001429 /* rare case of legitimate dget_parent()... */
1430 nd->path.dentry = dget_parent(nd->path.dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 dput(old);
Eric W. Biederman397d4252015-08-15 20:27:13 -05001432 if (unlikely(!path_connected(&nd->path)))
1433 return -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434 break;
1435 }
Al Viro3088dd72010-01-30 15:47:29 -05001436 if (!follow_up(&nd->path))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 }
Al Viro79ed0222009-04-18 13:59:41 -04001439 follow_mount(&nd->path);
Nick Piggin31e6b012011-01-07 17:49:52 +11001440 nd->inode = nd->path.dentry->d_inode;
Eric W. Biederman397d4252015-08-15 20:27:13 -05001441 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442}
1443
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444/*
Miklos Szeredibad61182012-03-26 12:54:24 +02001445 * This looks up the name in dcache, possibly revalidates the old dentry and
1446 * allocates a new one if not found or not valid. In the need_lookup argument
1447 * returns whether i_op->lookup is necessary.
Nick Pigginbaa03892010-08-18 04:37:31 +10001448 */
Al Viroe3c13922016-03-06 14:03:27 -05001449static struct dentry *lookup_dcache(const struct qstr *name,
1450 struct dentry *dir,
Al Viro6c51e512016-03-05 20:09:32 -05001451 unsigned int flags)
Nick Pigginbaa03892010-08-18 04:37:31 +10001452{
Nick Pigginbaa03892010-08-18 04:37:31 +10001453 struct dentry *dentry;
Miklos Szeredibad61182012-03-26 12:54:24 +02001454 int error;
Nick Pigginbaa03892010-08-18 04:37:31 +10001455
Miklos Szeredibad61182012-03-26 12:54:24 +02001456 dentry = d_lookup(dir, name);
1457 if (dentry) {
Jeff Layton39e3c952012-11-28 11:30:53 -05001458 if (dentry->d_flags & DCACHE_OP_REVALIDATE) {
Al Viro201f9562012-06-22 12:42:10 +04001459 error = d_revalidate(dentry, flags);
Miklos Szeredibad61182012-03-26 12:54:24 +02001460 if (unlikely(error <= 0)) {
Al Viro74ff0ff2016-03-05 22:37:46 -05001461 if (!error)
Eric W. Biederman5542aa22014-02-13 09:46:25 -08001462 d_invalidate(dentry);
Al Viro74ff0ff2016-03-05 22:37:46 -05001463 dput(dentry);
1464 return ERR_PTR(error);
Miklos Szeredibad61182012-03-26 12:54:24 +02001465 }
1466 }
1467 }
Nick Pigginbaa03892010-08-18 04:37:31 +10001468 return dentry;
1469}
1470
1471/*
J. Bruce Fields13a2c3b2013-10-23 16:09:16 -04001472 * Call i_op->lookup on the dentry. The dentry must be negative and
1473 * unhashed.
Miklos Szeredibad61182012-03-26 12:54:24 +02001474 *
1475 * dir->d_inode->i_mutex must be held
Josef Bacik44396f42011-05-31 11:58:49 -04001476 */
Miklos Szeredibad61182012-03-26 12:54:24 +02001477static struct dentry *lookup_real(struct inode *dir, struct dentry *dentry,
Al Viro72bd8662012-06-10 17:17:17 -04001478 unsigned int flags)
Josef Bacik44396f42011-05-31 11:58:49 -04001479{
Josef Bacik44396f42011-05-31 11:58:49 -04001480 struct dentry *old;
1481
1482 /* Don't create child dentry for a dead directory. */
Miklos Szeredibad61182012-03-26 12:54:24 +02001483 if (unlikely(IS_DEADDIR(dir))) {
Miklos Szeredie188dc02012-02-03 14:25:18 +01001484 dput(dentry);
Josef Bacik44396f42011-05-31 11:58:49 -04001485 return ERR_PTR(-ENOENT);
Miklos Szeredie188dc02012-02-03 14:25:18 +01001486 }
Josef Bacik44396f42011-05-31 11:58:49 -04001487
Al Viro72bd8662012-06-10 17:17:17 -04001488 old = dir->i_op->lookup(dir, dentry, flags);
Josef Bacik44396f42011-05-31 11:58:49 -04001489 if (unlikely(old)) {
1490 dput(dentry);
1491 dentry = old;
1492 }
1493 return dentry;
1494}
1495
Al Viroe3c13922016-03-06 14:03:27 -05001496static struct dentry *__lookup_hash(const struct qstr *name,
Al Viro72bd8662012-06-10 17:17:17 -04001497 struct dentry *base, unsigned int flags)
Al Viroa3255542012-03-30 14:41:51 -04001498{
Al Viro6c51e512016-03-05 20:09:32 -05001499 struct dentry *dentry = lookup_dcache(name, base, flags);
Al Viroa3255542012-03-30 14:41:51 -04001500
Al Viro6c51e512016-03-05 20:09:32 -05001501 if (dentry)
Miklos Szeredibad61182012-03-26 12:54:24 +02001502 return dentry;
Al Viroa3255542012-03-30 14:41:51 -04001503
Al Viro6c51e512016-03-05 20:09:32 -05001504 dentry = d_alloc(base, name);
1505 if (unlikely(!dentry))
1506 return ERR_PTR(-ENOMEM);
1507
Al Viro72bd8662012-06-10 17:17:17 -04001508 return lookup_real(base->d_inode, dentry, flags);
Al Viroa3255542012-03-30 14:41:51 -04001509}
1510
Al Viroe97cdc82013-01-24 18:16:00 -05001511static int lookup_fast(struct nameidata *nd,
Al Viro254cf582015-05-05 09:40:46 -04001512 struct path *path, struct inode **inode,
1513 unsigned *seqp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514{
Jan Blunck4ac91372008-02-14 19:34:32 -08001515 struct vfsmount *mnt = nd->path.mnt;
Nick Piggin31e6b012011-01-07 17:49:52 +11001516 struct dentry *dentry, *parent = nd->path.dentry;
Al Viro5a18fff2011-03-11 04:44:53 -05001517 int status = 1;
David Howells9875cf82011-01-14 18:45:21 +00001518 int err;
1519
Al Viro3cac2602009-08-13 18:27:43 +04001520 /*
Nick Pigginb04f7842010-08-18 04:37:34 +10001521 * Rename seqlock is not required here because in the off chance
Al Viro5d0f49c2016-03-05 21:32:53 -05001522 * of a false negative due to a concurrent rename, the caller is
1523 * going to fall back to non-racy lookup.
Nick Pigginb04f7842010-08-18 04:37:34 +10001524 */
Nick Piggin31e6b012011-01-07 17:49:52 +11001525 if (nd->flags & LOOKUP_RCU) {
1526 unsigned seq;
Al Viro766c4cb2015-05-07 19:24:57 -04001527 bool negative;
Linus Torvaldsda53be12013-05-21 15:22:44 -07001528 dentry = __d_lookup_rcu(parent, &nd->last, &seq);
Al Viro5d0f49c2016-03-05 21:32:53 -05001529 if (unlikely(!dentry)) {
1530 if (unlazy_walk(nd, NULL, 0))
1531 return -ECHILD;
Al Viroe9742b52016-03-05 22:04:59 -05001532 return 0;
Al Viro5d0f49c2016-03-05 21:32:53 -05001533 }
Al Viro5a18fff2011-03-11 04:44:53 -05001534
Linus Torvalds12f8ad42012-05-04 14:59:14 -07001535 /*
1536 * This sequence count validates that the inode matches
1537 * the dentry name information from lookup.
1538 */
David Howells63afdfc2015-05-06 15:59:00 +01001539 *inode = d_backing_inode(dentry);
Al Viro766c4cb2015-05-07 19:24:57 -04001540 negative = d_is_negative(dentry);
Al Viro5d0f49c2016-03-05 21:32:53 -05001541 if (unlikely(read_seqcount_retry(&dentry->d_seq, seq)))
Linus Torvalds12f8ad42012-05-04 14:59:14 -07001542 return -ECHILD;
1543
1544 /*
1545 * This sequence count validates that the parent had no
1546 * changes while we did the lookup of the dentry above.
1547 *
1548 * The memory barrier in read_seqcount_begin of child is
1549 * enough, we can use __read_seqcount_retry here.
1550 */
Al Viro5d0f49c2016-03-05 21:32:53 -05001551 if (unlikely(__read_seqcount_retry(&parent->d_seq, nd->seq)))
Nick Piggin31e6b012011-01-07 17:49:52 +11001552 return -ECHILD;
Al Viro5a18fff2011-03-11 04:44:53 -05001553
Al Viro254cf582015-05-05 09:40:46 -04001554 *seqp = seq;
Al Viro5d0f49c2016-03-05 21:32:53 -05001555 if (unlikely(dentry->d_flags & DCACHE_OP_REVALIDATE))
Al Viro4ce16ef32012-06-10 16:10:59 -04001556 status = d_revalidate(dentry, nd->flags);
Al Viro5d0f49c2016-03-05 21:32:53 -05001557 if (unlikely(status <= 0)) {
1558 if (unlazy_walk(nd, dentry, seq))
1559 return -ECHILD;
1560 if (status == -ECHILD)
1561 status = d_revalidate(dentry, nd->flags);
1562 } else {
1563 /*
1564 * Note: do negative dentry check after revalidation in
1565 * case that drops it.
1566 */
1567 if (unlikely(negative))
1568 return -ENOENT;
1569 path->mnt = mnt;
1570 path->dentry = dentry;
1571 if (likely(__follow_mount_rcu(nd, path, inode, seqp)))
Al Viroe9742b52016-03-05 22:04:59 -05001572 return 1;
Al Viro5d0f49c2016-03-05 21:32:53 -05001573 if (unlazy_walk(nd, dentry, seq))
1574 return -ECHILD;
Al Viro24643082011-02-15 01:26:22 -05001575 }
Al Viro5a18fff2011-03-11 04:44:53 -05001576 } else {
Al Viroe97cdc82013-01-24 18:16:00 -05001577 dentry = __d_lookup(parent, &nd->last);
Al Viro5d0f49c2016-03-05 21:32:53 -05001578 if (unlikely(!dentry))
Al Viroe9742b52016-03-05 22:04:59 -05001579 return 0;
Al Viro5d0f49c2016-03-05 21:32:53 -05001580 if (unlikely(dentry->d_flags & DCACHE_OP_REVALIDATE))
1581 status = d_revalidate(dentry, nd->flags);
Nick Piggin31e6b012011-01-07 17:49:52 +11001582 }
Al Viro5a18fff2011-03-11 04:44:53 -05001583 if (unlikely(status <= 0)) {
Al Viroe9742b52016-03-05 22:04:59 -05001584 if (!status)
Al Viro5d0f49c2016-03-05 21:32:53 -05001585 d_invalidate(dentry);
Eric W. Biederman5542aa22014-02-13 09:46:25 -08001586 dput(dentry);
Al Viro5d0f49c2016-03-05 21:32:53 -05001587 return status;
Al Viro5a18fff2011-03-11 04:44:53 -05001588 }
Al Viro766c4cb2015-05-07 19:24:57 -04001589 if (unlikely(d_is_negative(dentry))) {
1590 dput(dentry);
1591 return -ENOENT;
1592 }
Al Viro5d0f49c2016-03-05 21:32:53 -05001593
David Howells9875cf82011-01-14 18:45:21 +00001594 path->mnt = mnt;
1595 path->dentry = dentry;
NeilBrown756daf22015-03-23 13:37:38 +11001596 err = follow_managed(path, nd);
Al Viroe9742b52016-03-05 22:04:59 -05001597 if (likely(err > 0))
David Howells63afdfc2015-05-06 15:59:00 +01001598 *inode = d_backing_inode(path->dentry);
Al Viro84027522015-04-22 10:30:08 -04001599 return err;
Miklos Szeredi697f5142012-05-21 17:30:05 +02001600}
1601
1602/* Fast lookup failed, do it the slow way */
Al Viroe3c13922016-03-06 14:03:27 -05001603static struct dentry *lookup_slow(const struct qstr *name,
1604 struct dentry *dir,
1605 unsigned int flags)
Miklos Szeredi697f5142012-05-21 17:30:05 +02001606{
Al Viro94bdd652016-04-15 02:42:04 -04001607 struct dentry *dentry = ERR_PTR(-ENOENT), *old;
Al Viro19363862016-04-14 19:33:34 -04001608 struct inode *inode = dir->d_inode;
Al Virod9171b92016-04-15 03:33:13 -04001609 DECLARE_WAIT_QUEUE_HEAD_ONSTACK(wq);
Al Viro19363862016-04-14 19:33:34 -04001610
Al Viro9902af72016-04-15 15:08:36 -04001611 inode_lock_shared(inode);
Al Viro19363862016-04-14 19:33:34 -04001612 /* Don't go there if it's already dead */
Al Viro94bdd652016-04-15 02:42:04 -04001613 if (unlikely(IS_DEADDIR(inode)))
1614 goto out;
1615again:
Al Virod9171b92016-04-15 03:33:13 -04001616 dentry = d_alloc_parallel(dir, name, &wq);
Al Viro94bdd652016-04-15 02:42:04 -04001617 if (IS_ERR(dentry))
1618 goto out;
1619 if (unlikely(!d_in_lookup(dentry))) {
Al Viro949a8522016-03-06 14:20:52 -05001620 if ((dentry->d_flags & DCACHE_OP_REVALIDATE) &&
1621 !(flags & LOOKUP_NO_REVAL)) {
1622 int error = d_revalidate(dentry, flags);
1623 if (unlikely(error <= 0)) {
Al Viro94bdd652016-04-15 02:42:04 -04001624 if (!error) {
Al Viro949a8522016-03-06 14:20:52 -05001625 d_invalidate(dentry);
Al Viro94bdd652016-04-15 02:42:04 -04001626 dput(dentry);
1627 goto again;
1628 }
Al Viro949a8522016-03-06 14:20:52 -05001629 dput(dentry);
1630 dentry = ERR_PTR(error);
1631 }
1632 }
Al Viro94bdd652016-04-15 02:42:04 -04001633 } else {
1634 old = inode->i_op->lookup(inode, dentry, flags);
1635 d_lookup_done(dentry);
1636 if (unlikely(old)) {
1637 dput(dentry);
1638 dentry = old;
Al Viro949a8522016-03-06 14:20:52 -05001639 }
1640 }
Al Viro94bdd652016-04-15 02:42:04 -04001641out:
Al Viro9902af72016-04-15 15:08:36 -04001642 inode_unlock_shared(inode);
Al Viroe3c13922016-03-06 14:03:27 -05001643 return dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644}
1645
Al Viro52094c82011-02-21 21:34:47 -05001646static inline int may_lookup(struct nameidata *nd)
1647{
1648 if (nd->flags & LOOKUP_RCU) {
Al Viro4ad5abb2011-06-20 19:57:03 -04001649 int err = inode_permission(nd->inode, MAY_EXEC|MAY_NOT_BLOCK);
Al Viro52094c82011-02-21 21:34:47 -05001650 if (err != -ECHILD)
1651 return err;
Al Viro6e9918b2015-05-05 09:26:05 -04001652 if (unlazy_walk(nd, NULL, 0))
Al Viro52094c82011-02-21 21:34:47 -05001653 return -ECHILD;
1654 }
Al Viro4ad5abb2011-06-20 19:57:03 -04001655 return inode_permission(nd->inode, MAY_EXEC);
Al Viro52094c82011-02-21 21:34:47 -05001656}
1657
Al Viro9856fa12011-03-04 14:22:06 -05001658static inline int handle_dots(struct nameidata *nd, int type)
1659{
1660 if (type == LAST_DOTDOT) {
Al Viro9e6697e2015-12-05 20:07:21 -05001661 if (!nd->root.mnt)
1662 set_root(nd);
Al Viro9856fa12011-03-04 14:22:06 -05001663 if (nd->flags & LOOKUP_RCU) {
Al Viro70291ae2015-05-04 07:53:00 -04001664 return follow_dotdot_rcu(nd);
Al Viro9856fa12011-03-04 14:22:06 -05001665 } else
Eric W. Biederman397d4252015-08-15 20:27:13 -05001666 return follow_dotdot(nd);
Al Viro9856fa12011-03-04 14:22:06 -05001667 }
1668 return 0;
1669}
1670
Al Viro181548c2015-05-07 19:54:34 -04001671static int pick_link(struct nameidata *nd, struct path *link,
1672 struct inode *inode, unsigned seq)
Al Virod63ff282015-05-04 18:13:23 -04001673{
Al Viro626de992015-05-04 18:26:59 -04001674 int error;
Al Viro1cf26652015-05-06 16:01:56 -04001675 struct saved *last;
NeilBrown756daf22015-03-23 13:37:38 +11001676 if (unlikely(nd->total_link_count++ >= MAXSYMLINKS)) {
Al Viro626de992015-05-04 18:26:59 -04001677 path_to_nameidata(link, nd);
1678 return -ELOOP;
1679 }
Al Virobc40aee2015-05-09 13:04:24 -04001680 if (!(nd->flags & LOOKUP_RCU)) {
Al Viro79733872015-05-09 12:55:43 -04001681 if (link->mnt == nd->path.mnt)
1682 mntget(link->mnt);
Al Virod63ff282015-05-04 18:13:23 -04001683 }
Al Viro626de992015-05-04 18:26:59 -04001684 error = nd_alloc_stack(nd);
1685 if (unlikely(error)) {
Al Virobc40aee2015-05-09 13:04:24 -04001686 if (error == -ECHILD) {
1687 if (unlikely(unlazy_link(nd, link, seq)))
1688 return -ECHILD;
1689 error = nd_alloc_stack(nd);
1690 }
1691 if (error) {
1692 path_put(link);
1693 return error;
1694 }
Al Viro626de992015-05-04 18:26:59 -04001695 }
1696
Al Viroab104922015-05-10 11:50:01 -04001697 last = nd->stack + nd->depth++;
Al Viro1cf26652015-05-06 16:01:56 -04001698 last->link = *link;
Al Virofceef392015-12-29 15:58:39 -05001699 clear_delayed_call(&last->done);
1700 nd->link_inode = inode;
Al Viro0450b2d2015-05-08 13:23:53 -04001701 last->seq = seq;
Al Virod63ff282015-05-04 18:13:23 -04001702 return 1;
1703}
1704
Linus Torvalds3ddcd052011-08-06 22:45:50 -07001705/*
1706 * Do we need to follow links? We _really_ want to be able
1707 * to do this check without having to look at inode->i_op,
1708 * so we keep a cache of "no, this doesn't need follow_link"
1709 * for the common case.
1710 */
Al Viro254cf582015-05-05 09:40:46 -04001711static inline int should_follow_link(struct nameidata *nd, struct path *link,
Al Viro181548c2015-05-07 19:54:34 -04001712 int follow,
1713 struct inode *inode, unsigned seq)
Linus Torvalds3ddcd052011-08-06 22:45:50 -07001714{
Al Virod63ff282015-05-04 18:13:23 -04001715 if (likely(!d_is_symlink(link->dentry)))
1716 return 0;
1717 if (!follow)
1718 return 0;
Al Viroa7f77542016-02-27 19:31:01 -05001719 /* make sure that d_is_symlink above matches inode */
1720 if (nd->flags & LOOKUP_RCU) {
1721 if (read_seqcount_retry(&link->dentry->d_seq, seq))
1722 return -ECHILD;
1723 }
Al Viro181548c2015-05-07 19:54:34 -04001724 return pick_link(nd, link, inode, seq);
Linus Torvalds3ddcd052011-08-06 22:45:50 -07001725}
1726
Al Viro4693a542015-05-04 17:47:11 -04001727enum {WALK_GET = 1, WALK_PUT = 2};
1728
1729static int walk_component(struct nameidata *nd, int flags)
Al Viroce57dfc2011-03-13 19:58:58 -04001730{
Al Virocaa85632015-04-22 17:52:47 -04001731 struct path path;
Al Viroce57dfc2011-03-13 19:58:58 -04001732 struct inode *inode;
Al Viro254cf582015-05-05 09:40:46 -04001733 unsigned seq;
Al Viroce57dfc2011-03-13 19:58:58 -04001734 int err;
1735 /*
1736 * "." and ".." are special - ".." especially so because it has
1737 * to be able to know about the current root directory and
1738 * parent relationships.
1739 */
Al Viro4693a542015-05-04 17:47:11 -04001740 if (unlikely(nd->last_type != LAST_NORM)) {
1741 err = handle_dots(nd, nd->last_type);
1742 if (flags & WALK_PUT)
1743 put_link(nd);
1744 return err;
1745 }
Al Viro254cf582015-05-05 09:40:46 -04001746 err = lookup_fast(nd, &path, &inode, &seq);
Al Viroe9742b52016-03-05 22:04:59 -05001747 if (unlikely(err <= 0)) {
Miklos Szeredi697f5142012-05-21 17:30:05 +02001748 if (err < 0)
Al Virof0a9ba72015-05-04 07:59:30 -04001749 return err;
Al Viroe3c13922016-03-06 14:03:27 -05001750 path.dentry = lookup_slow(&nd->last, nd->path.dentry,
1751 nd->flags);
1752 if (IS_ERR(path.dentry))
1753 return PTR_ERR(path.dentry);
Al Viro7500c382016-03-31 00:23:05 -04001754
Al Viroe3c13922016-03-06 14:03:27 -05001755 path.mnt = nd->path.mnt;
1756 err = follow_managed(&path, nd);
1757 if (unlikely(err < 0))
Al Virof0a9ba72015-05-04 07:59:30 -04001758 return err;
Miklos Szeredi697f5142012-05-21 17:30:05 +02001759
Al Viro7500c382016-03-31 00:23:05 -04001760 if (unlikely(d_is_negative(path.dentry))) {
1761 path_to_nameidata(&path, nd);
1762 return -ENOENT;
1763 }
1764
Al Viro254cf582015-05-05 09:40:46 -04001765 seq = 0; /* we are already out of RCU mode */
Al Virod4565642016-02-27 19:23:16 -05001766 inode = d_backing_inode(path.dentry);
Al Viroce57dfc2011-03-13 19:58:58 -04001767 }
Miklos Szeredi697f5142012-05-21 17:30:05 +02001768
Al Viro4693a542015-05-04 17:47:11 -04001769 if (flags & WALK_PUT)
1770 put_link(nd);
Al Viro181548c2015-05-07 19:54:34 -04001771 err = should_follow_link(nd, &path, flags & WALK_GET, inode, seq);
Al Virod63ff282015-05-04 18:13:23 -04001772 if (unlikely(err))
1773 return err;
Al Virocaa85632015-04-22 17:52:47 -04001774 path_to_nameidata(&path, nd);
Al Viroce57dfc2011-03-13 19:58:58 -04001775 nd->inode = inode;
Al Viro254cf582015-05-05 09:40:46 -04001776 nd->seq = seq;
Al Viroce57dfc2011-03-13 19:58:58 -04001777 return 0;
1778}
1779
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780/*
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001781 * We can do the critical dentry name comparison and hashing
1782 * operations one word at a time, but we are limited to:
1783 *
1784 * - Architectures with fast unaligned word accesses. We could
1785 * do a "get_unaligned()" if this helps and is sufficiently
1786 * fast.
1787 *
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001788 * - non-CONFIG_DEBUG_PAGEALLOC configurations (so that we
1789 * do not trap on the (extremely unlikely) case of a page
1790 * crossing operation.
1791 *
1792 * - Furthermore, we need an efficient 64-bit compile for the
1793 * 64-bit case in order to generate the "number of bytes in
1794 * the final mask". Again, that could be replaced with a
1795 * efficient population count instruction or similar.
1796 */
1797#ifdef CONFIG_DCACHE_WORD_ACCESS
1798
Linus Torvaldsf68e5562012-04-06 13:54:56 -07001799#include <asm/word-at-a-time.h>
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001800
George Spelvin468a9422016-05-26 22:11:51 -04001801#ifdef HASH_MIX
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001802
George Spelvin468a9422016-05-26 22:11:51 -04001803/* Architecture provides HASH_MIX and fold_hash() in <asm/hash.h> */
1804
1805#elif defined(CONFIG_64BIT)
George Spelvin2a18da7a2016-05-23 07:43:58 -04001806/*
1807 * Register pressure in the mixing function is an issue, particularly
1808 * on 32-bit x86, but almost any function requires one state value and
1809 * one temporary. Instead, use a function designed for two state values
1810 * and no temporaries.
1811 *
1812 * This function cannot create a collision in only two iterations, so
1813 * we have two iterations to achieve avalanche. In those two iterations,
1814 * we have six layers of mixing, which is enough to spread one bit's
1815 * influence out to 2^6 = 64 state bits.
1816 *
1817 * Rotate constants are scored by considering either 64 one-bit input
1818 * deltas or 64*63/2 = 2016 two-bit input deltas, and finding the
1819 * probability of that delta causing a change to each of the 128 output
1820 * bits, using a sample of random initial states.
1821 *
1822 * The Shannon entropy of the computed probabilities is then summed
1823 * to produce a score. Ideally, any input change has a 50% chance of
1824 * toggling any given output bit.
1825 *
1826 * Mixing scores (in bits) for (12,45):
1827 * Input delta: 1-bit 2-bit
1828 * 1 round: 713.3 42542.6
1829 * 2 rounds: 2753.7 140389.8
1830 * 3 rounds: 5954.1 233458.2
1831 * 4 rounds: 7862.6 256672.2
1832 * Perfect: 8192 258048
1833 * (64*128) (64*63/2 * 128)
1834 */
1835#define HASH_MIX(x, y, a) \
1836 ( x ^= (a), \
1837 y ^= x, x = rol64(x,12),\
1838 x += y, y = rol64(y,45),\
1839 y *= 9 )
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001840
George Spelvin0fed3ac2016-05-02 06:31:01 -04001841/*
George Spelvin2a18da7a2016-05-23 07:43:58 -04001842 * Fold two longs into one 32-bit hash value. This must be fast, but
1843 * latency isn't quite as critical, as there is a fair bit of additional
1844 * work done before the hash value is used.
George Spelvin0fed3ac2016-05-02 06:31:01 -04001845 */
George Spelvin2a18da7a2016-05-23 07:43:58 -04001846static inline unsigned int fold_hash(unsigned long x, unsigned long y)
George Spelvin0fed3ac2016-05-02 06:31:01 -04001847{
George Spelvin2a18da7a2016-05-23 07:43:58 -04001848 y ^= x * GOLDEN_RATIO_64;
1849 y *= GOLDEN_RATIO_64;
1850 return y >> 32;
George Spelvin0fed3ac2016-05-02 06:31:01 -04001851}
1852
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001853#else /* 32-bit case */
1854
George Spelvin2a18da7a2016-05-23 07:43:58 -04001855/*
1856 * Mixing scores (in bits) for (7,20):
1857 * Input delta: 1-bit 2-bit
1858 * 1 round: 330.3 9201.6
1859 * 2 rounds: 1246.4 25475.4
1860 * 3 rounds: 1907.1 31295.1
1861 * 4 rounds: 2042.3 31718.6
1862 * Perfect: 2048 31744
1863 * (32*64) (32*31/2 * 64)
1864 */
1865#define HASH_MIX(x, y, a) \
1866 ( x ^= (a), \
1867 y ^= x, x = rol32(x, 7),\
1868 x += y, y = rol32(y,20),\
1869 y *= 9 )
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001870
George Spelvin2a18da7a2016-05-23 07:43:58 -04001871static inline unsigned int fold_hash(unsigned long x, unsigned long y)
George Spelvin0fed3ac2016-05-02 06:31:01 -04001872{
George Spelvin2a18da7a2016-05-23 07:43:58 -04001873 /* Use arch-optimized multiply if one exists */
1874 return __hash_32(y ^ __hash_32(x));
George Spelvin0fed3ac2016-05-02 06:31:01 -04001875}
1876
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001877#endif
1878
George Spelvin2a18da7a2016-05-23 07:43:58 -04001879/*
1880 * Return the hash of a string of known length. This is carfully
1881 * designed to match hash_name(), which is the more critical function.
1882 * In particular, we must end by hashing a final word containing 0..7
1883 * payload bytes, to match the way that hash_name() iterates until it
1884 * finds the delimiter after the name.
1885 */
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001886unsigned int full_name_hash(const char *name, unsigned int len)
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001887{
George Spelvin2a18da7a2016-05-23 07:43:58 -04001888 unsigned long a, x = 0, y = 0;
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001889
1890 for (;;) {
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001891 if (!len)
1892 goto done;
Linus Torvaldse419b4c2012-05-03 10:16:43 -07001893 a = load_unaligned_zeropad(name);
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001894 if (len < sizeof(unsigned long))
1895 break;
George Spelvin2a18da7a2016-05-23 07:43:58 -04001896 HASH_MIX(x, y, a);
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001897 name += sizeof(unsigned long);
1898 len -= sizeof(unsigned long);
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001899 }
George Spelvin2a18da7a2016-05-23 07:43:58 -04001900 x ^= a & bytemask_from_count(len);
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001901done:
George Spelvin2a18da7a2016-05-23 07:43:58 -04001902 return fold_hash(x, y);
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001903}
1904EXPORT_SYMBOL(full_name_hash);
1905
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001906/* Return the "hash_len" (hash and length) of a null-terminated string */
1907u64 hashlen_string(const char *name)
1908{
George Spelvin2a18da7a2016-05-23 07:43:58 -04001909 unsigned long a = 0, x = 0, y = 0, adata, mask, len;
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001910 const struct word_at_a_time constants = WORD_AT_A_TIME_CONSTANTS;
1911
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001912 len = -sizeof(unsigned long);
1913 do {
George Spelvin2a18da7a2016-05-23 07:43:58 -04001914 HASH_MIX(x, y, a);
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001915 len += sizeof(unsigned long);
1916 a = load_unaligned_zeropad(name+len);
1917 } while (!has_zero(a, &adata, &constants));
1918
1919 adata = prep_zero_mask(a, adata, &constants);
1920 mask = create_zero_mask(adata);
George Spelvin2a18da7a2016-05-23 07:43:58 -04001921 x ^= a & zero_bytemask(mask);
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001922
George Spelvin2a18da7a2016-05-23 07:43:58 -04001923 return hashlen_create(fold_hash(x, y), len + find_zero(mask));
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001924}
1925EXPORT_SYMBOL(hashlen_string);
1926
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001927/*
1928 * Calculate the length and hash of the path component, and
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07001929 * return the "hash_len" as the result.
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001930 */
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07001931static inline u64 hash_name(const char *name)
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001932{
George Spelvin2a18da7a2016-05-23 07:43:58 -04001933 unsigned long a = 0, b, x = 0, y = 0, adata, bdata, mask, len;
Linus Torvalds36126f82012-05-26 10:43:17 -07001934 const struct word_at_a_time constants = WORD_AT_A_TIME_CONSTANTS;
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001935
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001936 len = -sizeof(unsigned long);
1937 do {
George Spelvin2a18da7a2016-05-23 07:43:58 -04001938 HASH_MIX(x, y, a);
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001939 len += sizeof(unsigned long);
Linus Torvaldse419b4c2012-05-03 10:16:43 -07001940 a = load_unaligned_zeropad(name+len);
Linus Torvalds36126f82012-05-26 10:43:17 -07001941 b = a ^ REPEAT_BYTE('/');
1942 } while (!(has_zero(a, &adata, &constants) | has_zero(b, &bdata, &constants)));
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001943
Linus Torvalds36126f82012-05-26 10:43:17 -07001944 adata = prep_zero_mask(a, adata, &constants);
1945 bdata = prep_zero_mask(b, bdata, &constants);
Linus Torvalds36126f82012-05-26 10:43:17 -07001946 mask = create_zero_mask(adata | bdata);
George Spelvin2a18da7a2016-05-23 07:43:58 -04001947 x ^= a & zero_bytemask(mask);
Linus Torvalds36126f82012-05-26 10:43:17 -07001948
George Spelvin2a18da7a2016-05-23 07:43:58 -04001949 return hashlen_create(fold_hash(x, y), len + find_zero(mask));
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001950}
1951
George Spelvin2a18da7a2016-05-23 07:43:58 -04001952#else /* !CONFIG_DCACHE_WORD_ACCESS: Slow, byte-at-a-time version */
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001953
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001954/* Return the hash of a string of known length */
1955unsigned int full_name_hash(const char *name, unsigned int len)
Linus Torvalds0145acc2012-03-02 14:32:59 -08001956{
1957 unsigned long hash = init_name_hash();
1958 while (len--)
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001959 hash = partial_name_hash((unsigned char)*name++, hash);
Linus Torvalds0145acc2012-03-02 14:32:59 -08001960 return end_name_hash(hash);
1961}
Linus Torvaldsae942ae2012-03-02 19:40:57 -08001962EXPORT_SYMBOL(full_name_hash);
Linus Torvalds0145acc2012-03-02 14:32:59 -08001963
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001964/* Return the "hash_len" (hash and length) of a null-terminated string */
George Spelvinf2a031b2016-05-29 01:26:41 -04001965u64 hashlen_string(const char *name)
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001966{
1967 unsigned long hash = init_name_hash();
1968 unsigned long len = 0, c;
1969
1970 c = (unsigned char)*name;
George Spelvine0ab7af2016-05-29 08:05:56 -04001971 while (c) {
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001972 len++;
1973 hash = partial_name_hash(c, hash);
1974 c = (unsigned char)name[len];
George Spelvine0ab7af2016-05-29 08:05:56 -04001975 }
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001976 return hashlen_create(end_name_hash(hash), len);
1977}
George Spelvinf2a031b2016-05-29 01:26:41 -04001978EXPORT_SYMBOL(hashlen_string);
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001979
Linus Torvalds3ddcd052011-08-06 22:45:50 -07001980/*
Linus Torvalds200e9ef2012-03-02 14:49:24 -08001981 * We know there's a real path component here of at least
1982 * one character.
1983 */
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07001984static inline u64 hash_name(const char *name)
Linus Torvalds200e9ef2012-03-02 14:49:24 -08001985{
1986 unsigned long hash = init_name_hash();
1987 unsigned long len = 0, c;
1988
1989 c = (unsigned char)*name;
1990 do {
1991 len++;
1992 hash = partial_name_hash(c, hash);
1993 c = (unsigned char)name[len];
1994 } while (c && c != '/');
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07001995 return hashlen_create(end_name_hash(hash), len);
Linus Torvalds200e9ef2012-03-02 14:49:24 -08001996}
1997
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001998#endif
1999
Linus Torvalds200e9ef2012-03-02 14:49:24 -08002000/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001 * Name resolution.
Prasanna Medaea3834d2005-04-29 16:00:17 +01002002 * This is the basic name resolution function, turning a pathname into
2003 * the final dentry. We expect 'base' to be positive and a directory.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004 *
Prasanna Medaea3834d2005-04-29 16:00:17 +01002005 * Returns 0 and nd will have valid dentry and mnt on success.
2006 * Returns error and drops reference to input namei data on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007 */
Al Viro6de88d72009-08-09 01:41:57 +04002008static int link_path_walk(const char *name, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010 int err;
Al Viro32cd7462015-04-18 20:30:49 -04002011
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012 while (*name=='/')
2013 name++;
2014 if (!*name)
Al Viro9e18f102015-04-18 20:44:34 -04002015 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017 /* At this point we know we have a real path component. */
2018 for(;;) {
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07002019 u64 hash_len;
Al Virofe479a52011-02-22 15:10:03 -05002020 int type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021
Al Viro52094c82011-02-21 21:34:47 -05002022 err = may_lookup(nd);
George Spelvin2a18da7a2016-05-23 07:43:58 -04002023 if (err)
Al Viro3595e232015-05-09 16:54:45 -04002024 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07002026 hash_len = hash_name(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027
Al Virofe479a52011-02-22 15:10:03 -05002028 type = LAST_NORM;
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07002029 if (name[0] == '.') switch (hashlen_len(hash_len)) {
Al Virofe479a52011-02-22 15:10:03 -05002030 case 2:
Linus Torvalds200e9ef2012-03-02 14:49:24 -08002031 if (name[1] == '.') {
Al Virofe479a52011-02-22 15:10:03 -05002032 type = LAST_DOTDOT;
Al Viro16c2cd72011-02-22 15:50:10 -05002033 nd->flags |= LOOKUP_JUMPED;
2034 }
Al Virofe479a52011-02-22 15:10:03 -05002035 break;
2036 case 1:
2037 type = LAST_DOT;
2038 }
Al Viro5a202bc2011-03-08 14:17:44 -05002039 if (likely(type == LAST_NORM)) {
2040 struct dentry *parent = nd->path.dentry;
Al Viro16c2cd72011-02-22 15:50:10 -05002041 nd->flags &= ~LOOKUP_JUMPED;
Al Viro5a202bc2011-03-08 14:17:44 -05002042 if (unlikely(parent->d_flags & DCACHE_OP_HASH)) {
James Hogana060dc52014-09-16 13:07:35 +01002043 struct qstr this = { { .hash_len = hash_len }, .name = name };
Linus Torvaldsda53be12013-05-21 15:22:44 -07002044 err = parent->d_op->d_hash(parent, &this);
Al Viro5a202bc2011-03-08 14:17:44 -05002045 if (err < 0)
Al Viro3595e232015-05-09 16:54:45 -04002046 return err;
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07002047 hash_len = this.hash_len;
2048 name = this.name;
Al Viro5a202bc2011-03-08 14:17:44 -05002049 }
2050 }
Al Virofe479a52011-02-22 15:10:03 -05002051
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07002052 nd->last.hash_len = hash_len;
2053 nd->last.name = name;
Al Viro5f4a6a62013-01-24 18:04:22 -05002054 nd->last_type = type;
2055
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07002056 name += hashlen_len(hash_len);
2057 if (!*name)
Al Virobdf6cbf2015-04-18 20:21:40 -04002058 goto OK;
Linus Torvalds200e9ef2012-03-02 14:49:24 -08002059 /*
2060 * If it wasn't NUL, we know it was '/'. Skip that
2061 * slash, and continue until no more slashes.
2062 */
2063 do {
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07002064 name++;
2065 } while (unlikely(*name == '/'));
Al Viro8620c232015-05-04 08:58:35 -04002066 if (unlikely(!*name)) {
2067OK:
Al Viro368ee9b2015-05-08 17:19:59 -04002068 /* pathname body, done */
Al Viro8620c232015-05-04 08:58:35 -04002069 if (!nd->depth)
2070 return 0;
2071 name = nd->stack[nd->depth - 1].name;
Al Viro368ee9b2015-05-08 17:19:59 -04002072 /* trailing symlink, done */
Al Viro8620c232015-05-04 08:58:35 -04002073 if (!name)
2074 return 0;
2075 /* last component of nested symlink */
Al Viro4693a542015-05-04 17:47:11 -04002076 err = walk_component(nd, WALK_GET | WALK_PUT);
Al Viro8620c232015-05-04 08:58:35 -04002077 } else {
Al Viro4693a542015-05-04 17:47:11 -04002078 err = walk_component(nd, WALK_GET);
Al Viro8620c232015-05-04 08:58:35 -04002079 }
Al Viroce57dfc2011-03-13 19:58:58 -04002080 if (err < 0)
Al Viro3595e232015-05-09 16:54:45 -04002081 return err;
Al Virofe479a52011-02-22 15:10:03 -05002082
Al Viroce57dfc2011-03-13 19:58:58 -04002083 if (err) {
Al Viro626de992015-05-04 18:26:59 -04002084 const char *s = get_link(nd);
Al Viro5a460272015-04-17 23:44:45 -04002085
Viresh Kumara1c83682015-08-12 15:59:44 +05302086 if (IS_ERR(s))
Al Viro3595e232015-05-09 16:54:45 -04002087 return PTR_ERR(s);
Al Virod40bcc02015-04-18 20:03:03 -04002088 err = 0;
2089 if (unlikely(!s)) {
2090 /* jumped */
Al Virob9ff4422015-05-02 20:19:23 -04002091 put_link(nd);
Al Virod40bcc02015-04-18 20:03:03 -04002092 } else {
Al Virofab51e82015-05-10 11:01:00 -04002093 nd->stack[nd->depth - 1].name = name;
2094 name = s;
2095 continue;
Al Virod40bcc02015-04-18 20:03:03 -04002096 }
Nick Piggin31e6b012011-01-07 17:49:52 +11002097 }
Al Viro97242f92015-08-01 19:59:28 -04002098 if (unlikely(!d_can_lookup(nd->path.dentry))) {
2099 if (nd->flags & LOOKUP_RCU) {
2100 if (unlazy_walk(nd, NULL, 0))
2101 return -ECHILD;
2102 }
Al Viro3595e232015-05-09 16:54:45 -04002103 return -ENOTDIR;
Al Viro97242f92015-08-01 19:59:28 -04002104 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106}
2107
Al Viroc8a53ee2015-05-12 18:43:07 -04002108static const char *path_init(struct nameidata *nd, unsigned flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109{
Prasanna Medaea3834d2005-04-29 16:00:17 +01002110 int retval = 0;
Al Viroc8a53ee2015-05-12 18:43:07 -04002111 const char *s = nd->name->name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112
2113 nd->last_type = LAST_ROOT; /* if there are only slashes... */
Al Viro980f3ea2014-11-20 14:20:24 -05002114 nd->flags = flags | LOOKUP_JUMPED | LOOKUP_PARENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115 nd->depth = 0;
Al Viro5b6ca022011-03-09 23:04:47 -05002116 if (flags & LOOKUP_ROOT) {
David Howellsb18825a2013-09-12 19:22:53 +01002117 struct dentry *root = nd->root.dentry;
2118 struct inode *inode = root->d_inode;
Al Virofd2f7cb2015-02-22 20:07:13 -05002119 if (*s) {
Miklos Szeredi44b1d532014-04-01 17:08:41 +02002120 if (!d_can_lookup(root))
Al Viro368ee9b2015-05-08 17:19:59 -04002121 return ERR_PTR(-ENOTDIR);
Al Viro73d049a2011-03-11 12:08:24 -05002122 retval = inode_permission(inode, MAY_EXEC);
2123 if (retval)
Al Viro368ee9b2015-05-08 17:19:59 -04002124 return ERR_PTR(retval);
Al Viro73d049a2011-03-11 12:08:24 -05002125 }
Al Viro5b6ca022011-03-09 23:04:47 -05002126 nd->path = nd->root;
2127 nd->inode = inode;
2128 if (flags & LOOKUP_RCU) {
Al Viro8b61e742013-11-08 12:45:01 -05002129 rcu_read_lock();
Al Viro5b6ca022011-03-09 23:04:47 -05002130 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
Al Viro8f47a0162015-05-09 19:02:01 -04002131 nd->root_seq = nd->seq;
Al Viro48a066e2013-09-29 22:06:07 -04002132 nd->m_seq = read_seqbegin(&mount_lock);
Al Viro5b6ca022011-03-09 23:04:47 -05002133 } else {
2134 path_get(&nd->path);
2135 }
Al Viro368ee9b2015-05-08 17:19:59 -04002136 return s;
Al Viro5b6ca022011-03-09 23:04:47 -05002137 }
2138
Al Viro2a737872009-04-07 11:49:53 -04002139 nd->root.mnt = NULL;
Al Viro248fb5b2015-12-05 20:51:58 -05002140 nd->path.mnt = NULL;
2141 nd->path.dentry = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142
Al Viro48a066e2013-09-29 22:06:07 -04002143 nd->m_seq = read_seqbegin(&mount_lock);
Al Virofd2f7cb2015-02-22 20:07:13 -05002144 if (*s == '/') {
Al Viro9e6697e2015-12-05 20:07:21 -05002145 if (flags & LOOKUP_RCU)
Al Viro8b61e742013-11-08 12:45:01 -05002146 rcu_read_lock();
Al Viro9e6697e2015-12-05 20:07:21 -05002147 set_root(nd);
Al Viro248fb5b2015-12-05 20:51:58 -05002148 if (likely(!nd_jump_root(nd)))
Al Viroef55d912015-12-05 20:25:06 -05002149 return s;
Al Viro248fb5b2015-12-05 20:51:58 -05002150 nd->root.mnt = NULL;
Al Viroef55d912015-12-05 20:25:06 -05002151 rcu_read_unlock();
2152 return ERR_PTR(-ECHILD);
Al Viroc8a53ee2015-05-12 18:43:07 -04002153 } else if (nd->dfd == AT_FDCWD) {
Al Viroe41f7d42011-02-22 14:02:58 -05002154 if (flags & LOOKUP_RCU) {
2155 struct fs_struct *fs = current->fs;
2156 unsigned seq;
2157
Al Viro8b61e742013-11-08 12:45:01 -05002158 rcu_read_lock();
Al Viroe41f7d42011-02-22 14:02:58 -05002159
2160 do {
2161 seq = read_seqcount_begin(&fs->seq);
2162 nd->path = fs->pwd;
Al Viroef55d912015-12-05 20:25:06 -05002163 nd->inode = nd->path.dentry->d_inode;
Al Viroe41f7d42011-02-22 14:02:58 -05002164 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
2165 } while (read_seqcount_retry(&fs->seq, seq));
2166 } else {
2167 get_fs_pwd(current->fs, &nd->path);
Al Viroef55d912015-12-05 20:25:06 -05002168 nd->inode = nd->path.dentry->d_inode;
Al Viroe41f7d42011-02-22 14:02:58 -05002169 }
Al Viroef55d912015-12-05 20:25:06 -05002170 return s;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002171 } else {
Jeff Layton582aa642012-12-11 08:56:16 -05002172 /* Caller must check execute permissions on the starting path component */
Al Viroc8a53ee2015-05-12 18:43:07 -04002173 struct fd f = fdget_raw(nd->dfd);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002174 struct dentry *dentry;
2175
Al Viro2903ff02012-08-28 12:52:22 -04002176 if (!f.file)
Al Viro368ee9b2015-05-08 17:19:59 -04002177 return ERR_PTR(-EBADF);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002178
Al Viro2903ff02012-08-28 12:52:22 -04002179 dentry = f.file->f_path.dentry;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002180
Al Virofd2f7cb2015-02-22 20:07:13 -05002181 if (*s) {
Miklos Szeredi44b1d532014-04-01 17:08:41 +02002182 if (!d_can_lookup(dentry)) {
Al Viro2903ff02012-08-28 12:52:22 -04002183 fdput(f);
Al Viro368ee9b2015-05-08 17:19:59 -04002184 return ERR_PTR(-ENOTDIR);
Al Viro2903ff02012-08-28 12:52:22 -04002185 }
Al Virof52e0c12011-03-14 18:56:51 -04002186 }
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002187
Al Viro2903ff02012-08-28 12:52:22 -04002188 nd->path = f.file->f_path;
Al Viroe41f7d42011-02-22 14:02:58 -05002189 if (flags & LOOKUP_RCU) {
Al Viro8b61e742013-11-08 12:45:01 -05002190 rcu_read_lock();
Al Viro34a26b92015-05-11 08:05:05 -04002191 nd->inode = nd->path.dentry->d_inode;
2192 nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq);
Al Viroe41f7d42011-02-22 14:02:58 -05002193 } else {
Al Viro2903ff02012-08-28 12:52:22 -04002194 path_get(&nd->path);
Al Viro34a26b92015-05-11 08:05:05 -04002195 nd->inode = nd->path.dentry->d_inode;
Al Viroe41f7d42011-02-22 14:02:58 -05002196 }
Al Viro34a26b92015-05-11 08:05:05 -04002197 fdput(f);
Al Viro368ee9b2015-05-08 17:19:59 -04002198 return s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199 }
Al Viro9b4a9b12009-04-07 11:44:16 -04002200}
2201
Al Viro3bdba282015-05-08 17:37:07 -04002202static const char *trailing_symlink(struct nameidata *nd)
Al Viro95fa25d2015-04-22 13:46:57 -04002203{
2204 const char *s;
Al Virofec2fa22015-05-06 15:58:18 -04002205 int error = may_follow_link(nd);
Al Virodeb106c2015-05-08 18:05:21 -04002206 if (unlikely(error))
Al Viro3bdba282015-05-08 17:37:07 -04002207 return ERR_PTR(error);
Al Viro95fa25d2015-04-22 13:46:57 -04002208 nd->flags |= LOOKUP_PARENT;
Al Virofab51e82015-05-10 11:01:00 -04002209 nd->stack[0].name = NULL;
Al Viro3b2e7f72015-04-19 00:53:50 -04002210 s = get_link(nd);
Al Virodeb106c2015-05-08 18:05:21 -04002211 return s ? s : "";
Al Viro95fa25d2015-04-22 13:46:57 -04002212}
2213
Al Virocaa85632015-04-22 17:52:47 -04002214static inline int lookup_last(struct nameidata *nd)
Al Virobd92d7f2011-03-14 19:54:59 -04002215{
2216 if (nd->last_type == LAST_NORM && nd->last.name[nd->last.len])
2217 nd->flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
2218
2219 nd->flags &= ~LOOKUP_PARENT;
Al Virodeb106c2015-05-08 18:05:21 -04002220 return walk_component(nd,
Al Viro4693a542015-05-04 17:47:11 -04002221 nd->flags & LOOKUP_FOLLOW
2222 ? nd->depth
2223 ? WALK_PUT | WALK_GET
2224 : WALK_GET
2225 : 0);
Al Virobd92d7f2011-03-14 19:54:59 -04002226}
2227
Al Viro9b4a9b12009-04-07 11:44:16 -04002228/* Returns 0 and nd will be valid on success; Retuns error, otherwise. */
Al Viroc8a53ee2015-05-12 18:43:07 -04002229static int path_lookupat(struct nameidata *nd, unsigned flags, struct path *path)
Al Viro9b4a9b12009-04-07 11:44:16 -04002230{
Al Viroc8a53ee2015-05-12 18:43:07 -04002231 const char *s = path_init(nd, flags);
Al Virobd92d7f2011-03-14 19:54:59 -04002232 int err;
Nick Piggin31e6b012011-01-07 17:49:52 +11002233
Al Viro368ee9b2015-05-08 17:19:59 -04002234 if (IS_ERR(s))
2235 return PTR_ERR(s);
Al Viro3bdba282015-05-08 17:37:07 -04002236 while (!(err = link_path_walk(s, nd))
2237 && ((err = lookup_last(nd)) > 0)) {
2238 s = trailing_symlink(nd);
2239 if (IS_ERR(s)) {
2240 err = PTR_ERR(s);
2241 break;
Al Virobd92d7f2011-03-14 19:54:59 -04002242 }
2243 }
Al Viro9f1fafe2011-03-25 11:00:12 -04002244 if (!err)
2245 err = complete_walk(nd);
Al Virobd92d7f2011-03-14 19:54:59 -04002246
Al Virodeb106c2015-05-08 18:05:21 -04002247 if (!err && nd->flags & LOOKUP_DIRECTORY)
2248 if (!d_can_lookup(nd->path.dentry))
Al Virobd23a532011-03-23 09:56:30 -04002249 err = -ENOTDIR;
Al Viro625b6d12015-05-12 16:36:12 -04002250 if (!err) {
2251 *path = nd->path;
2252 nd->path.mnt = NULL;
2253 nd->path.dentry = NULL;
2254 }
2255 terminate_walk(nd);
Al Virobd92d7f2011-03-14 19:54:59 -04002256 return err;
Al Viroee0827c2011-02-21 23:38:09 -05002257}
Nick Piggin31e6b012011-01-07 17:49:52 +11002258
Al Viro625b6d12015-05-12 16:36:12 -04002259static int filename_lookup(int dfd, struct filename *name, unsigned flags,
Al Viro9ad1aaa2015-05-12 16:44:39 -04002260 struct path *path, struct path *root)
Jeff Layton873f1ee2012-10-10 15:25:29 -04002261{
Al Viro894bc8c2015-05-02 07:16:16 -04002262 int retval;
Al Viro9883d182015-05-13 07:28:08 -04002263 struct nameidata nd;
Al Viroabc9f5b2015-05-12 16:53:42 -04002264 if (IS_ERR(name))
2265 return PTR_ERR(name);
Al Viro9ad1aaa2015-05-12 16:44:39 -04002266 if (unlikely(root)) {
2267 nd.root = *root;
2268 flags |= LOOKUP_ROOT;
2269 }
Al Viro9883d182015-05-13 07:28:08 -04002270 set_nameidata(&nd, dfd, name);
Al Viroc8a53ee2015-05-12 18:43:07 -04002271 retval = path_lookupat(&nd, flags | LOOKUP_RCU, path);
Jeff Layton873f1ee2012-10-10 15:25:29 -04002272 if (unlikely(retval == -ECHILD))
Al Viroc8a53ee2015-05-12 18:43:07 -04002273 retval = path_lookupat(&nd, flags, path);
Jeff Layton873f1ee2012-10-10 15:25:29 -04002274 if (unlikely(retval == -ESTALE))
Al Viroc8a53ee2015-05-12 18:43:07 -04002275 retval = path_lookupat(&nd, flags | LOOKUP_REVAL, path);
Jeff Layton873f1ee2012-10-10 15:25:29 -04002276
2277 if (likely(!retval))
Al Viro625b6d12015-05-12 16:36:12 -04002278 audit_inode(name, path->dentry, flags & LOOKUP_PARENT);
Al Viro9883d182015-05-13 07:28:08 -04002279 restore_nameidata();
Al Viroe4bd1c12015-05-12 16:40:39 -04002280 putname(name);
Jeff Layton873f1ee2012-10-10 15:25:29 -04002281 return retval;
2282}
2283
Al Viro8bcb77f2015-05-08 16:59:20 -04002284/* Returns 0 and nd will be valid on success; Retuns error, otherwise. */
Al Viroc8a53ee2015-05-12 18:43:07 -04002285static int path_parentat(struct nameidata *nd, unsigned flags,
Al Viro391172c2015-05-09 11:19:16 -04002286 struct path *parent)
Al Viro8bcb77f2015-05-08 16:59:20 -04002287{
Al Viroc8a53ee2015-05-12 18:43:07 -04002288 const char *s = path_init(nd, flags);
Al Viro368ee9b2015-05-08 17:19:59 -04002289 int err;
2290 if (IS_ERR(s))
2291 return PTR_ERR(s);
2292 err = link_path_walk(s, nd);
Al Viro8bcb77f2015-05-08 16:59:20 -04002293 if (!err)
2294 err = complete_walk(nd);
Al Viro391172c2015-05-09 11:19:16 -04002295 if (!err) {
2296 *parent = nd->path;
2297 nd->path.mnt = NULL;
2298 nd->path.dentry = NULL;
2299 }
2300 terminate_walk(nd);
Al Viro8bcb77f2015-05-08 16:59:20 -04002301 return err;
2302}
2303
Al Viro5c31b6c2015-05-12 17:32:54 -04002304static struct filename *filename_parentat(int dfd, struct filename *name,
Al Viro391172c2015-05-09 11:19:16 -04002305 unsigned int flags, struct path *parent,
2306 struct qstr *last, int *type)
Al Viro8bcb77f2015-05-08 16:59:20 -04002307{
2308 int retval;
Al Viro9883d182015-05-13 07:28:08 -04002309 struct nameidata nd;
Al Viro8bcb77f2015-05-08 16:59:20 -04002310
Al Viro5c31b6c2015-05-12 17:32:54 -04002311 if (IS_ERR(name))
2312 return name;
Al Viro9883d182015-05-13 07:28:08 -04002313 set_nameidata(&nd, dfd, name);
Al Viroc8a53ee2015-05-12 18:43:07 -04002314 retval = path_parentat(&nd, flags | LOOKUP_RCU, parent);
Al Viro8bcb77f2015-05-08 16:59:20 -04002315 if (unlikely(retval == -ECHILD))
Al Viroc8a53ee2015-05-12 18:43:07 -04002316 retval = path_parentat(&nd, flags, parent);
Al Viro8bcb77f2015-05-08 16:59:20 -04002317 if (unlikely(retval == -ESTALE))
Al Viroc8a53ee2015-05-12 18:43:07 -04002318 retval = path_parentat(&nd, flags | LOOKUP_REVAL, parent);
Al Viro391172c2015-05-09 11:19:16 -04002319 if (likely(!retval)) {
2320 *last = nd.last;
2321 *type = nd.last_type;
2322 audit_inode(name, parent->dentry, LOOKUP_PARENT);
Al Viro5c31b6c2015-05-12 17:32:54 -04002323 } else {
2324 putname(name);
2325 name = ERR_PTR(retval);
Al Viro391172c2015-05-09 11:19:16 -04002326 }
Al Viro9883d182015-05-13 07:28:08 -04002327 restore_nameidata();
Al Viro5c31b6c2015-05-12 17:32:54 -04002328 return name;
Al Viro8bcb77f2015-05-08 16:59:20 -04002329}
2330
Al Viro79714f72012-06-15 03:01:42 +04002331/* does lookup, returns the object with parent locked */
2332struct dentry *kern_path_locked(const char *name, struct path *path)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002333{
Al Viro5c31b6c2015-05-12 17:32:54 -04002334 struct filename *filename;
2335 struct dentry *d;
Al Viro391172c2015-05-09 11:19:16 -04002336 struct qstr last;
2337 int type;
Paul Moore51689102015-01-22 00:00:03 -05002338
Al Viro5c31b6c2015-05-12 17:32:54 -04002339 filename = filename_parentat(AT_FDCWD, getname_kernel(name), 0, path,
2340 &last, &type);
Paul Moore51689102015-01-22 00:00:03 -05002341 if (IS_ERR(filename))
2342 return ERR_CAST(filename);
Al Viro5c31b6c2015-05-12 17:32:54 -04002343 if (unlikely(type != LAST_NORM)) {
Al Viro391172c2015-05-09 11:19:16 -04002344 path_put(path);
Al Viro5c31b6c2015-05-12 17:32:54 -04002345 putname(filename);
2346 return ERR_PTR(-EINVAL);
Al Viro79714f72012-06-15 03:01:42 +04002347 }
Al Viro59551022016-01-22 15:40:57 -05002348 inode_lock_nested(path->dentry->d_inode, I_MUTEX_PARENT);
Al Viro391172c2015-05-09 11:19:16 -04002349 d = __lookup_hash(&last, path->dentry, 0);
Al Viro79714f72012-06-15 03:01:42 +04002350 if (IS_ERR(d)) {
Al Viro59551022016-01-22 15:40:57 -05002351 inode_unlock(path->dentry->d_inode);
Al Viro391172c2015-05-09 11:19:16 -04002352 path_put(path);
Al Viro79714f72012-06-15 03:01:42 +04002353 }
Paul Moore51689102015-01-22 00:00:03 -05002354 putname(filename);
Al Viro79714f72012-06-15 03:01:42 +04002355 return d;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002356}
2357
Al Virod1811462008-08-02 00:49:18 -04002358int kern_path(const char *name, unsigned int flags, struct path *path)
2359{
Al Viroabc9f5b2015-05-12 16:53:42 -04002360 return filename_lookup(AT_FDCWD, getname_kernel(name),
2361 flags, path, NULL);
Al Virod1811462008-08-02 00:49:18 -04002362}
Al Viro4d359502014-03-14 12:20:17 -04002363EXPORT_SYMBOL(kern_path);
Al Virod1811462008-08-02 00:49:18 -04002364
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07002365/**
2366 * vfs_path_lookup - lookup a file path relative to a dentry-vfsmount pair
2367 * @dentry: pointer to dentry of the base directory
2368 * @mnt: pointer to vfs mount of the base directory
2369 * @name: pointer to file name
2370 * @flags: lookup flags
Al Viroe0a01242011-06-27 17:00:37 -04002371 * @path: pointer to struct path to fill
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07002372 */
2373int vfs_path_lookup(struct dentry *dentry, struct vfsmount *mnt,
2374 const char *name, unsigned int flags,
Al Viroe0a01242011-06-27 17:00:37 -04002375 struct path *path)
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07002376{
Al Viro9ad1aaa2015-05-12 16:44:39 -04002377 struct path root = {.mnt = mnt, .dentry = dentry};
Al Viro9ad1aaa2015-05-12 16:44:39 -04002378 /* the first argument of filename_lookup() is ignored with root */
Al Viroabc9f5b2015-05-12 16:53:42 -04002379 return filename_lookup(AT_FDCWD, getname_kernel(name),
2380 flags , path, &root);
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07002381}
Al Viro4d359502014-03-14 12:20:17 -04002382EXPORT_SYMBOL(vfs_path_lookup);
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07002383
Christoph Hellwigeead1912007-10-16 23:25:38 -07002384/**
Miklos Szeredi3c9fe8c2016-05-11 01:16:37 +02002385 * lookup_hash - lookup single pathname component on already hashed name
2386 * @name: name and hash to lookup
2387 * @base: base directory to lookup from
2388 *
2389 * The name must have been verified and hashed (see lookup_one_len()). Using
2390 * this after just full_name_hash() is unsafe.
2391 *
2392 * This function also doesn't check for search permission on base directory.
2393 *
2394 * Use lookup_one_len_unlocked() instead, unless you really know what you are
2395 * doing.
2396 *
2397 * Do not hold i_mutex; this helper takes i_mutex if necessary.
2398 */
2399struct dentry *lookup_hash(const struct qstr *name, struct dentry *base)
2400{
2401 struct dentry *ret;
2402
2403 ret = lookup_dcache(name, base, 0);
2404 if (!ret)
2405 ret = lookup_slow(name, base, 0);
2406
2407 return ret;
2408}
2409EXPORT_SYMBOL(lookup_hash);
2410
2411/**
Randy Dunlapa6b91912008-03-19 17:01:00 -07002412 * lookup_one_len - filesystem helper to lookup single pathname component
Christoph Hellwigeead1912007-10-16 23:25:38 -07002413 * @name: pathname component to lookup
2414 * @base: base directory to lookup from
2415 * @len: maximum length @len should be interpreted to
2416 *
Randy Dunlapa6b91912008-03-19 17:01:00 -07002417 * Note that this routine is purely a helper for filesystem usage and should
Al Viro9e7543e2015-02-23 02:49:48 -05002418 * not be called by generic code.
NeilBrownbbddca82016-01-07 16:08:20 -05002419 *
2420 * The caller must hold base->i_mutex.
Christoph Hellwigeead1912007-10-16 23:25:38 -07002421 */
James Morris057f6c02007-04-26 00:12:05 -07002422struct dentry *lookup_one_len(const char *name, struct dentry *base, int len)
2423{
James Morris057f6c02007-04-26 00:12:05 -07002424 struct qstr this;
Al Viro6a96ba52011-03-07 23:49:20 -05002425 unsigned int c;
Miklos Szeredicda309d2012-03-26 12:54:21 +02002426 int err;
James Morris057f6c02007-04-26 00:12:05 -07002427
Al Viro59551022016-01-22 15:40:57 -05002428 WARN_ON_ONCE(!inode_is_locked(base->d_inode));
David Woodhouse2f9092e2009-04-20 23:18:37 +01002429
Al Viro6a96ba52011-03-07 23:49:20 -05002430 this.name = name;
2431 this.len = len;
Linus Torvalds0145acc2012-03-02 14:32:59 -08002432 this.hash = full_name_hash(name, len);
Al Viro6a96ba52011-03-07 23:49:20 -05002433 if (!len)
2434 return ERR_PTR(-EACCES);
2435
Al Viro21d8a152012-11-29 22:17:21 -05002436 if (unlikely(name[0] == '.')) {
2437 if (len < 2 || (len == 2 && name[1] == '.'))
2438 return ERR_PTR(-EACCES);
2439 }
2440
Al Viro6a96ba52011-03-07 23:49:20 -05002441 while (len--) {
2442 c = *(const unsigned char *)name++;
2443 if (c == '/' || c == '\0')
2444 return ERR_PTR(-EACCES);
Al Viro6a96ba52011-03-07 23:49:20 -05002445 }
Al Viro5a202bc2011-03-08 14:17:44 -05002446 /*
2447 * See if the low-level filesystem might want
2448 * to use its own hash..
2449 */
2450 if (base->d_flags & DCACHE_OP_HASH) {
Linus Torvaldsda53be12013-05-21 15:22:44 -07002451 int err = base->d_op->d_hash(base, &this);
Al Viro5a202bc2011-03-08 14:17:44 -05002452 if (err < 0)
2453 return ERR_PTR(err);
2454 }
Christoph Hellwigeead1912007-10-16 23:25:38 -07002455
Miklos Szeredicda309d2012-03-26 12:54:21 +02002456 err = inode_permission(base->d_inode, MAY_EXEC);
2457 if (err)
2458 return ERR_PTR(err);
2459
Al Viro72bd8662012-06-10 17:17:17 -04002460 return __lookup_hash(&this, base, 0);
James Morris057f6c02007-04-26 00:12:05 -07002461}
Al Viro4d359502014-03-14 12:20:17 -04002462EXPORT_SYMBOL(lookup_one_len);
James Morris057f6c02007-04-26 00:12:05 -07002463
NeilBrownbbddca82016-01-07 16:08:20 -05002464/**
2465 * lookup_one_len_unlocked - filesystem helper to lookup single pathname component
2466 * @name: pathname component to lookup
2467 * @base: base directory to lookup from
2468 * @len: maximum length @len should be interpreted to
2469 *
2470 * Note that this routine is purely a helper for filesystem usage and should
2471 * not be called by generic code.
2472 *
2473 * Unlike lookup_one_len, it should be called without the parent
2474 * i_mutex held, and will take the i_mutex itself if necessary.
2475 */
2476struct dentry *lookup_one_len_unlocked(const char *name,
2477 struct dentry *base, int len)
2478{
2479 struct qstr this;
2480 unsigned int c;
2481 int err;
NeilBrownbbddca82016-01-07 16:08:20 -05002482
2483 this.name = name;
2484 this.len = len;
2485 this.hash = full_name_hash(name, len);
2486 if (!len)
2487 return ERR_PTR(-EACCES);
2488
2489 if (unlikely(name[0] == '.')) {
2490 if (len < 2 || (len == 2 && name[1] == '.'))
2491 return ERR_PTR(-EACCES);
2492 }
2493
2494 while (len--) {
2495 c = *(const unsigned char *)name++;
2496 if (c == '/' || c == '\0')
2497 return ERR_PTR(-EACCES);
2498 }
2499 /*
2500 * See if the low-level filesystem might want
2501 * to use its own hash..
2502 */
2503 if (base->d_flags & DCACHE_OP_HASH) {
2504 int err = base->d_op->d_hash(base, &this);
2505 if (err < 0)
2506 return ERR_PTR(err);
2507 }
2508
2509 err = inode_permission(base->d_inode, MAY_EXEC);
2510 if (err)
2511 return ERR_PTR(err);
2512
Miklos Szeredi3c9fe8c2016-05-11 01:16:37 +02002513 return lookup_hash(&this, base);
NeilBrownbbddca82016-01-07 16:08:20 -05002514}
2515EXPORT_SYMBOL(lookup_one_len_unlocked);
2516
Andy Whitcroft1fa1e7f2011-11-02 09:44:39 +01002517int user_path_at_empty(int dfd, const char __user *name, unsigned flags,
2518 struct path *path, int *empty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519{
Al Viroabc9f5b2015-05-12 16:53:42 -04002520 return filename_lookup(dfd, getname_flags(name, flags, empty),
2521 flags, path, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522}
Al Virob853a162015-05-13 09:12:02 -04002523EXPORT_SYMBOL(user_path_at_empty);
Andy Whitcroft1fa1e7f2011-11-02 09:44:39 +01002524
Jeff Layton873f1ee2012-10-10 15:25:29 -04002525/*
2526 * NB: most callers don't do anything directly with the reference to the
2527 * to struct filename, but the nd->last pointer points into the name string
2528 * allocated by getname. So we must hold the reference to it until all
2529 * path-walking is complete.
2530 */
Al Viroa2ec4a22015-05-13 06:57:49 -04002531static inline struct filename *
Al Virof5beed72015-04-30 16:09:11 -04002532user_path_parent(int dfd, const char __user *path,
2533 struct path *parent,
2534 struct qstr *last,
2535 int *type,
Jeff Layton9e790bd2012-12-11 12:10:09 -05002536 unsigned int flags)
Al Viro2ad94ae2008-07-21 09:32:51 -04002537{
Jeff Layton9e790bd2012-12-11 12:10:09 -05002538 /* only LOOKUP_REVAL is allowed in extra flags */
Al Viro5c31b6c2015-05-12 17:32:54 -04002539 return filename_parentat(dfd, getname(path), flags & LOOKUP_REVAL,
2540 parent, last, type);
Al Viro2ad94ae2008-07-21 09:32:51 -04002541}
2542
Jeff Layton80334262013-07-26 06:23:25 -04002543/**
Al Viro197df042013-09-08 14:03:27 -04002544 * mountpoint_last - look up last component for umount
Jeff Layton80334262013-07-26 06:23:25 -04002545 * @nd: pathwalk nameidata - currently pointing at parent directory of "last"
2546 * @path: pointer to container for result
2547 *
2548 * This is a special lookup_last function just for umount. In this case, we
2549 * need to resolve the path without doing any revalidation.
2550 *
2551 * The nameidata should be the result of doing a LOOKUP_PARENT pathwalk. Since
2552 * mountpoints are always pinned in the dcache, their ancestors are too. Thus,
2553 * in almost all cases, this lookup will be served out of the dcache. The only
2554 * cases where it won't are if nd->last refers to a symlink or the path is
2555 * bogus and it doesn't exist.
2556 *
2557 * Returns:
2558 * -error: if there was an error during lookup. This includes -ENOENT if the
2559 * lookup found a negative dentry. The nd->path reference will also be
2560 * put in this case.
2561 *
2562 * 0: if we successfully resolved nd->path and found it to not to be a
2563 * symlink that needs to be followed. "path" will also be populated.
2564 * The nd->path reference will also be put.
2565 *
2566 * 1: if we successfully resolved nd->last and found it to be a symlink
2567 * that needs to be followed. "path" will be populated with the path
2568 * to the link, and nd->path will *not* be put.
2569 */
2570static int
Al Viro197df042013-09-08 14:03:27 -04002571mountpoint_last(struct nameidata *nd, struct path *path)
Jeff Layton80334262013-07-26 06:23:25 -04002572{
2573 int error = 0;
2574 struct dentry *dentry;
2575 struct dentry *dir = nd->path.dentry;
2576
Al Viro35759522013-09-08 13:41:33 -04002577 /* If we're in rcuwalk, drop out of it to handle last component */
2578 if (nd->flags & LOOKUP_RCU) {
Al Viro6e9918b2015-05-05 09:26:05 -04002579 if (unlazy_walk(nd, NULL, 0))
Al Virodeb106c2015-05-08 18:05:21 -04002580 return -ECHILD;
Jeff Layton80334262013-07-26 06:23:25 -04002581 }
2582
2583 nd->flags &= ~LOOKUP_PARENT;
2584
2585 if (unlikely(nd->last_type != LAST_NORM)) {
2586 error = handle_dots(nd, nd->last_type);
Al Viro35759522013-09-08 13:41:33 -04002587 if (error)
Al Virodeb106c2015-05-08 18:05:21 -04002588 return error;
Al Viro35759522013-09-08 13:41:33 -04002589 dentry = dget(nd->path.dentry);
Al Viro949a8522016-03-06 14:20:52 -05002590 } else {
2591 dentry = d_lookup(dir, &nd->last);
Jeff Layton80334262013-07-26 06:23:25 -04002592 if (!dentry) {
Al Viro949a8522016-03-06 14:20:52 -05002593 /*
2594 * No cached dentry. Mounted dentries are pinned in the
2595 * cache, so that means that this dentry is probably
2596 * a symlink or the path doesn't actually point
2597 * to a mounted dentry.
2598 */
2599 dentry = lookup_slow(&nd->last, dir,
2600 nd->flags | LOOKUP_NO_REVAL);
2601 if (IS_ERR(dentry))
2602 return PTR_ERR(dentry);
Dave Jonesbcceeeb2013-09-10 17:04:25 -04002603 }
Jeff Layton80334262013-07-26 06:23:25 -04002604 }
David Howells698934d2015-03-17 17:33:52 +00002605 if (d_is_negative(dentry)) {
Al Viro35759522013-09-08 13:41:33 -04002606 dput(dentry);
Al Virodeb106c2015-05-08 18:05:21 -04002607 return -ENOENT;
Jeff Layton80334262013-07-26 06:23:25 -04002608 }
Al Viro191d7f72015-05-04 08:26:45 -04002609 if (nd->depth)
2610 put_link(nd);
Al Viro35759522013-09-08 13:41:33 -04002611 path->dentry = dentry;
Vasily Averin295dc392014-07-21 12:30:23 +04002612 path->mnt = nd->path.mnt;
Al Viro181548c2015-05-07 19:54:34 -04002613 error = should_follow_link(nd, path, nd->flags & LOOKUP_FOLLOW,
2614 d_backing_inode(dentry), 0);
Al Virodeb106c2015-05-08 18:05:21 -04002615 if (unlikely(error))
Al Virod63ff282015-05-04 18:13:23 -04002616 return error;
Vasily Averin295dc392014-07-21 12:30:23 +04002617 mntget(path->mnt);
Al Viro35759522013-09-08 13:41:33 -04002618 follow_mount(path);
Al Virodeb106c2015-05-08 18:05:21 -04002619 return 0;
Jeff Layton80334262013-07-26 06:23:25 -04002620}
2621
2622/**
Al Viro197df042013-09-08 14:03:27 -04002623 * path_mountpoint - look up a path to be umounted
Masanari Iida2a78b852015-09-09 15:39:23 -07002624 * @nd: lookup context
Jeff Layton80334262013-07-26 06:23:25 -04002625 * @flags: lookup flags
Al Viroc8a53ee2015-05-12 18:43:07 -04002626 * @path: pointer to container for result
Jeff Layton80334262013-07-26 06:23:25 -04002627 *
2628 * Look up the given name, but don't attempt to revalidate the last component.
Randy Dunlap606d6fe2013-10-19 14:56:55 -07002629 * Returns 0 and "path" will be valid on success; Returns error otherwise.
Jeff Layton80334262013-07-26 06:23:25 -04002630 */
2631static int
Al Viroc8a53ee2015-05-12 18:43:07 -04002632path_mountpoint(struct nameidata *nd, unsigned flags, struct path *path)
Jeff Layton80334262013-07-26 06:23:25 -04002633{
Al Viroc8a53ee2015-05-12 18:43:07 -04002634 const char *s = path_init(nd, flags);
Al Viro368ee9b2015-05-08 17:19:59 -04002635 int err;
2636 if (IS_ERR(s))
2637 return PTR_ERR(s);
Al Viro3bdba282015-05-08 17:37:07 -04002638 while (!(err = link_path_walk(s, nd)) &&
2639 (err = mountpoint_last(nd, path)) > 0) {
2640 s = trailing_symlink(nd);
2641 if (IS_ERR(s)) {
2642 err = PTR_ERR(s);
Jeff Layton80334262013-07-26 06:23:25 -04002643 break;
Al Viro3bdba282015-05-08 17:37:07 -04002644 }
Jeff Layton80334262013-07-26 06:23:25 -04002645 }
Al Virodeb106c2015-05-08 18:05:21 -04002646 terminate_walk(nd);
Jeff Layton80334262013-07-26 06:23:25 -04002647 return err;
2648}
2649
Al Viro2d864652013-09-08 20:18:44 -04002650static int
Al Viro668696d2015-02-22 19:44:00 -05002651filename_mountpoint(int dfd, struct filename *name, struct path *path,
Al Viro2d864652013-09-08 20:18:44 -04002652 unsigned int flags)
2653{
Al Viro9883d182015-05-13 07:28:08 -04002654 struct nameidata nd;
Al Virocbaab2d2015-01-22 02:49:00 -05002655 int error;
Al Viro668696d2015-02-22 19:44:00 -05002656 if (IS_ERR(name))
2657 return PTR_ERR(name);
Al Viro9883d182015-05-13 07:28:08 -04002658 set_nameidata(&nd, dfd, name);
Al Viroc8a53ee2015-05-12 18:43:07 -04002659 error = path_mountpoint(&nd, flags | LOOKUP_RCU, path);
Al Viro2d864652013-09-08 20:18:44 -04002660 if (unlikely(error == -ECHILD))
Al Viroc8a53ee2015-05-12 18:43:07 -04002661 error = path_mountpoint(&nd, flags, path);
Al Viro2d864652013-09-08 20:18:44 -04002662 if (unlikely(error == -ESTALE))
Al Viroc8a53ee2015-05-12 18:43:07 -04002663 error = path_mountpoint(&nd, flags | LOOKUP_REVAL, path);
Al Viro2d864652013-09-08 20:18:44 -04002664 if (likely(!error))
Al Viro668696d2015-02-22 19:44:00 -05002665 audit_inode(name, path->dentry, 0);
Al Viro9883d182015-05-13 07:28:08 -04002666 restore_nameidata();
Al Viro668696d2015-02-22 19:44:00 -05002667 putname(name);
Al Viro2d864652013-09-08 20:18:44 -04002668 return error;
2669}
2670
Jeff Layton80334262013-07-26 06:23:25 -04002671/**
Al Viro197df042013-09-08 14:03:27 -04002672 * user_path_mountpoint_at - lookup a path from userland in order to umount it
Jeff Layton80334262013-07-26 06:23:25 -04002673 * @dfd: directory file descriptor
2674 * @name: pathname from userland
2675 * @flags: lookup flags
2676 * @path: pointer to container to hold result
2677 *
2678 * A umount is a special case for path walking. We're not actually interested
2679 * in the inode in this situation, and ESTALE errors can be a problem. We
2680 * simply want track down the dentry and vfsmount attached at the mountpoint
2681 * and avoid revalidating the last component.
2682 *
2683 * Returns 0 and populates "path" on success.
2684 */
2685int
Al Viro197df042013-09-08 14:03:27 -04002686user_path_mountpoint_at(int dfd, const char __user *name, unsigned int flags,
Jeff Layton80334262013-07-26 06:23:25 -04002687 struct path *path)
2688{
Al Virocbaab2d2015-01-22 02:49:00 -05002689 return filename_mountpoint(dfd, getname(name), path, flags);
Jeff Layton80334262013-07-26 06:23:25 -04002690}
2691
Al Viro2d864652013-09-08 20:18:44 -04002692int
2693kern_path_mountpoint(int dfd, const char *name, struct path *path,
2694 unsigned int flags)
2695{
Al Virocbaab2d2015-01-22 02:49:00 -05002696 return filename_mountpoint(dfd, getname_kernel(name), path, flags);
Al Viro2d864652013-09-08 20:18:44 -04002697}
2698EXPORT_SYMBOL(kern_path_mountpoint);
2699
Miklos Szeredicbdf35b2014-10-24 00:14:36 +02002700int __check_sticky(struct inode *dir, struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002701{
Eric W. Biederman8e96e3b2012-03-03 21:17:15 -08002702 kuid_t fsuid = current_fsuid();
David Howellsda9592e2008-11-14 10:39:05 +11002703
Eric W. Biederman8e96e3b2012-03-03 21:17:15 -08002704 if (uid_eq(inode->i_uid, fsuid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705 return 0;
Eric W. Biederman8e96e3b2012-03-03 21:17:15 -08002706 if (uid_eq(dir->i_uid, fsuid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002707 return 0;
Andy Lutomirski23adbe12014-06-10 12:45:42 -07002708 return !capable_wrt_inode_uidgid(inode, CAP_FOWNER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002709}
Miklos Szeredicbdf35b2014-10-24 00:14:36 +02002710EXPORT_SYMBOL(__check_sticky);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002711
2712/*
2713 * Check whether we can remove a link victim from directory dir, check
2714 * whether the type of victim is right.
2715 * 1. We can't do it if dir is read-only (done in permission())
2716 * 2. We should have write and exec permissions on dir
2717 * 3. We can't remove anything from append-only dir
2718 * 4. We can't do anything with immutable dir (done in permission())
2719 * 5. If the sticky bit on dir is set we should either
2720 * a. be owner of dir, or
2721 * b. be owner of victim, or
2722 * c. have CAP_FOWNER capability
2723 * 6. If the victim is append-only or immutable we can't do antyhing with
2724 * links pointing to it.
2725 * 7. If we were asked to remove a directory and victim isn't one - ENOTDIR.
2726 * 8. If we were asked to remove a non-directory and victim isn't one - EISDIR.
2727 * 9. We can't remove a root or mountpoint.
2728 * 10. We don't allow removal of NFS sillyrenamed files; it's handled by
2729 * nfs_async_unlink().
2730 */
David Howellsb18825a2013-09-12 19:22:53 +01002731static int may_delete(struct inode *dir, struct dentry *victim, bool isdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002732{
David Howells63afdfc2015-05-06 15:59:00 +01002733 struct inode *inode = d_backing_inode(victim);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002734 int error;
2735
David Howellsb18825a2013-09-12 19:22:53 +01002736 if (d_is_negative(victim))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002737 return -ENOENT;
David Howellsb18825a2013-09-12 19:22:53 +01002738 BUG_ON(!inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002739
2740 BUG_ON(victim->d_parent->d_inode != dir);
Jeff Layton4fa6b5e2012-10-10 15:25:25 -04002741 audit_inode_child(dir, victim, AUDIT_TYPE_CHILD_DELETE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002742
Al Virof419a2e2008-07-22 00:07:17 -04002743 error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002744 if (error)
2745 return error;
2746 if (IS_APPEND(dir))
2747 return -EPERM;
David Howellsb18825a2013-09-12 19:22:53 +01002748
2749 if (check_sticky(dir, inode) || IS_APPEND(inode) ||
2750 IS_IMMUTABLE(inode) || IS_SWAPFILE(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002751 return -EPERM;
2752 if (isdir) {
Miklos Szeredi44b1d532014-04-01 17:08:41 +02002753 if (!d_is_dir(victim))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002754 return -ENOTDIR;
2755 if (IS_ROOT(victim))
2756 return -EBUSY;
Miklos Szeredi44b1d532014-04-01 17:08:41 +02002757 } else if (d_is_dir(victim))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002758 return -EISDIR;
2759 if (IS_DEADDIR(dir))
2760 return -ENOENT;
2761 if (victim->d_flags & DCACHE_NFSFS_RENAMED)
2762 return -EBUSY;
2763 return 0;
2764}
2765
2766/* Check whether we can create an object with dentry child in directory
2767 * dir.
2768 * 1. We can't do it if child already exists (open has special treatment for
2769 * this case, but since we are inlined it's OK)
2770 * 2. We can't do it if dir is read-only (done in permission())
2771 * 3. We should have write and exec permissions on dir
2772 * 4. We can't do it if dir is immutable (done in permission())
2773 */
Miklos Szeredia95164d2008-07-30 15:08:48 +02002774static inline int may_create(struct inode *dir, struct dentry *child)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002775{
Jeff Layton14e972b2013-05-08 10:25:58 -04002776 audit_inode_child(dir, child, AUDIT_TYPE_CHILD_CREATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002777 if (child->d_inode)
2778 return -EEXIST;
2779 if (IS_DEADDIR(dir))
2780 return -ENOENT;
Al Virof419a2e2008-07-22 00:07:17 -04002781 return inode_permission(dir, MAY_WRITE | MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002782}
2783
Linus Torvalds1da177e2005-04-16 15:20:36 -07002784/*
2785 * p1 and p2 should be directories on the same fs.
2786 */
2787struct dentry *lock_rename(struct dentry *p1, struct dentry *p2)
2788{
2789 struct dentry *p;
2790
2791 if (p1 == p2) {
Al Viro59551022016-01-22 15:40:57 -05002792 inode_lock_nested(p1->d_inode, I_MUTEX_PARENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793 return NULL;
2794 }
2795
Al Virofc640052016-04-10 01:33:30 -04002796 mutex_lock(&p1->d_sb->s_vfs_rename_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002797
OGAWA Hirofumie2761a12008-10-16 07:50:28 +09002798 p = d_ancestor(p2, p1);
2799 if (p) {
Al Viro59551022016-01-22 15:40:57 -05002800 inode_lock_nested(p2->d_inode, I_MUTEX_PARENT);
2801 inode_lock_nested(p1->d_inode, I_MUTEX_CHILD);
OGAWA Hirofumie2761a12008-10-16 07:50:28 +09002802 return p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002803 }
2804
OGAWA Hirofumie2761a12008-10-16 07:50:28 +09002805 p = d_ancestor(p1, p2);
2806 if (p) {
Al Viro59551022016-01-22 15:40:57 -05002807 inode_lock_nested(p1->d_inode, I_MUTEX_PARENT);
2808 inode_lock_nested(p2->d_inode, I_MUTEX_CHILD);
OGAWA Hirofumie2761a12008-10-16 07:50:28 +09002809 return p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002810 }
2811
Al Viro59551022016-01-22 15:40:57 -05002812 inode_lock_nested(p1->d_inode, I_MUTEX_PARENT);
2813 inode_lock_nested(p2->d_inode, I_MUTEX_PARENT2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002814 return NULL;
2815}
Al Viro4d359502014-03-14 12:20:17 -04002816EXPORT_SYMBOL(lock_rename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002817
2818void unlock_rename(struct dentry *p1, struct dentry *p2)
2819{
Al Viro59551022016-01-22 15:40:57 -05002820 inode_unlock(p1->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002821 if (p1 != p2) {
Al Viro59551022016-01-22 15:40:57 -05002822 inode_unlock(p2->d_inode);
Al Virofc640052016-04-10 01:33:30 -04002823 mutex_unlock(&p1->d_sb->s_vfs_rename_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002824 }
2825}
Al Viro4d359502014-03-14 12:20:17 -04002826EXPORT_SYMBOL(unlock_rename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002827
Al Viro4acdaf22011-07-26 01:42:34 -04002828int vfs_create(struct inode *dir, struct dentry *dentry, umode_t mode,
Al Viro312b63f2012-06-10 18:09:36 -04002829 bool want_excl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002830{
Miklos Szeredia95164d2008-07-30 15:08:48 +02002831 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002832 if (error)
2833 return error;
2834
Al Viroacfa4382008-12-04 10:06:33 -05002835 if (!dir->i_op->create)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002836 return -EACCES; /* shouldn't it be ENOSYS? */
2837 mode &= S_IALLUGO;
2838 mode |= S_IFREG;
2839 error = security_inode_create(dir, dentry, mode);
2840 if (error)
2841 return error;
Al Viro312b63f2012-06-10 18:09:36 -04002842 error = dir->i_op->create(dir, dentry, mode, want_excl);
Stephen Smalleya74574a2005-09-09 13:01:44 -07002843 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00002844 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002845 return error;
2846}
Al Viro4d359502014-03-14 12:20:17 -04002847EXPORT_SYMBOL(vfs_create);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002848
Al Viro73d049a2011-03-11 12:08:24 -05002849static int may_open(struct path *path, int acc_mode, int flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002850{
Christoph Hellwig3fb64192008-10-24 09:58:10 +02002851 struct dentry *dentry = path->dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002852 struct inode *inode = dentry->d_inode;
2853 int error;
2854
2855 if (!inode)
2856 return -ENOENT;
2857
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01002858 switch (inode->i_mode & S_IFMT) {
2859 case S_IFLNK:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002860 return -ELOOP;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01002861 case S_IFDIR:
2862 if (acc_mode & MAY_WRITE)
2863 return -EISDIR;
2864 break;
2865 case S_IFBLK:
2866 case S_IFCHR:
Christoph Hellwig3fb64192008-10-24 09:58:10 +02002867 if (path->mnt->mnt_flags & MNT_NODEV)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002868 return -EACCES;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01002869 /*FALLTHRU*/
2870 case S_IFIFO:
2871 case S_IFSOCK:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002872 flag &= ~O_TRUNC;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01002873 break;
Dave Hansen4a3fd212008-02-15 14:37:48 -08002874 }
Dave Hansenb41572e2007-10-16 23:31:14 -07002875
Al Viro62fb4a12015-12-26 22:33:24 -05002876 error = inode_permission(inode, MAY_OPEN | acc_mode);
Dave Hansenb41572e2007-10-16 23:31:14 -07002877 if (error)
2878 return error;
Mimi Zohar6146f0d2009-02-04 09:06:57 -05002879
Linus Torvalds1da177e2005-04-16 15:20:36 -07002880 /*
2881 * An append-only file must be opened in append mode for writing.
2882 */
2883 if (IS_APPEND(inode)) {
Al Viro8737c932009-12-24 06:47:55 -05002884 if ((flag & O_ACCMODE) != O_RDONLY && !(flag & O_APPEND))
Al Viro7715b522009-12-16 03:54:00 -05002885 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002886 if (flag & O_TRUNC)
Al Viro7715b522009-12-16 03:54:00 -05002887 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002888 }
2889
2890 /* O_NOATIME can only be set by the owner or superuser */
Serge E. Hallyn2e149672011-03-23 16:43:26 -07002891 if (flag & O_NOATIME && !inode_owner_or_capable(inode))
Al Viro7715b522009-12-16 03:54:00 -05002892 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002893
J. Bruce Fieldsf3c7691e2011-09-21 10:58:13 -04002894 return 0;
Al Viro7715b522009-12-16 03:54:00 -05002895}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002896
Jeff Laytone1181ee2010-12-07 16:19:50 -05002897static int handle_truncate(struct file *filp)
Al Viro7715b522009-12-16 03:54:00 -05002898{
Jeff Laytone1181ee2010-12-07 16:19:50 -05002899 struct path *path = &filp->f_path;
Al Viro7715b522009-12-16 03:54:00 -05002900 struct inode *inode = path->dentry->d_inode;
2901 int error = get_write_access(inode);
2902 if (error)
2903 return error;
2904 /*
2905 * Refuse to truncate files with mandatory locks held on them.
2906 */
Jeff Laytond7a06982014-03-10 09:54:15 -04002907 error = locks_verify_locked(filp);
Al Viro7715b522009-12-16 03:54:00 -05002908 if (!error)
Tetsuo Handaea0d3ab2010-06-02 13:24:43 +09002909 error = security_path_truncate(path);
Al Viro7715b522009-12-16 03:54:00 -05002910 if (!error) {
2911 error = do_truncate(path->dentry, 0,
2912 ATTR_MTIME|ATTR_CTIME|ATTR_OPEN,
Jeff Laytone1181ee2010-12-07 16:19:50 -05002913 filp);
Al Viro7715b522009-12-16 03:54:00 -05002914 }
2915 put_write_access(inode);
Mimi Zoharacd0c932009-09-04 13:08:46 -04002916 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002917}
2918
Dave Hansend57999e2008-02-15 14:37:27 -08002919static inline int open_to_namei_flags(int flag)
2920{
Al Viro8a5e9292011-06-25 19:15:54 -04002921 if ((flag & O_ACCMODE) == 3)
2922 flag--;
Dave Hansend57999e2008-02-15 14:37:27 -08002923 return flag;
2924}
2925
Al Virod3607752016-03-25 15:21:09 -04002926static int may_o_create(const struct path *dir, struct dentry *dentry, umode_t mode)
Miklos Szeredid18e9002012-06-05 15:10:17 +02002927{
2928 int error = security_path_mknod(dir, dentry, mode, 0);
2929 if (error)
2930 return error;
2931
2932 error = inode_permission(dir->dentry->d_inode, MAY_WRITE | MAY_EXEC);
2933 if (error)
2934 return error;
2935
2936 return security_inode_create(dir->dentry->d_inode, dentry, mode);
2937}
2938
David Howells1acf0af2012-06-14 16:13:46 +01002939/*
2940 * Attempt to atomically look up, create and open a file from a negative
2941 * dentry.
2942 *
2943 * Returns 0 if successful. The file will have been created and attached to
2944 * @file by the filesystem calling finish_open().
2945 *
2946 * Returns 1 if the file was looked up only or didn't need creating. The
2947 * caller will need to perform the open themselves. @path will have been
2948 * updated to point to the new dentry. This may be negative.
2949 *
2950 * Returns an error code otherwise.
2951 */
Al Viro2675a4e2012-06-22 12:41:10 +04002952static int atomic_open(struct nameidata *nd, struct dentry *dentry,
2953 struct path *path, struct file *file,
2954 const struct open_flags *op,
Al Viro1643b432016-04-27 19:14:10 -04002955 int open_flag, umode_t mode,
Al Viro2675a4e2012-06-22 12:41:10 +04002956 int *opened)
Miklos Szeredid18e9002012-06-05 15:10:17 +02002957{
Miklos Szeredid18e9002012-06-05 15:10:17 +02002958 struct dentry *const DENTRY_NOT_SET = (void *) -1UL;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002959 struct inode *dir = nd->path.dentry->d_inode;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002960 int error;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002961
Al Viro384f26e2016-04-28 02:03:55 -04002962 if (!(~open_flag & (O_EXCL | O_CREAT))) /* both O_EXCL and O_CREAT */
Miklos Szeredid18e9002012-06-05 15:10:17 +02002963 open_flag &= ~O_TRUNC;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002964
Miklos Szeredid18e9002012-06-05 15:10:17 +02002965 if (nd->flags & LOOKUP_DIRECTORY)
2966 open_flag |= O_DIRECTORY;
2967
Al Viro30d90492012-06-22 12:40:19 +04002968 file->f_path.dentry = DENTRY_NOT_SET;
2969 file->f_path.mnt = nd->path.mnt;
Al Viro0fb1ea02016-04-27 14:13:10 -04002970 error = dir->i_op->atomic_open(dir, dentry, file,
2971 open_to_namei_flags(open_flag),
2972 mode, opened);
Al Viro6fbd0712016-04-28 11:50:59 -04002973 d_lookup_done(dentry);
Al Viro384f26e2016-04-28 02:03:55 -04002974 if (!error) {
2975 /*
2976 * We didn't have the inode before the open, so check open
2977 * permission here.
2978 */
2979 int acc_mode = op->acc_mode;
2980 if (*opened & FILE_CREATED) {
2981 WARN_ON(!(open_flag & O_CREAT));
2982 fsnotify_create(dir, dentry);
2983 acc_mode = 0;
2984 }
2985 error = may_open(&file->f_path, acc_mode, open_flag);
2986 if (WARN_ON(error > 0))
2987 error = -EINVAL;
2988 } else if (error > 0) {
Al Viro30d90492012-06-22 12:40:19 +04002989 if (WARN_ON(file->f_path.dentry == DENTRY_NOT_SET)) {
Al Viro2675a4e2012-06-22 12:41:10 +04002990 error = -EIO;
Al Viro03da6332013-09-16 19:22:33 -04002991 } else {
Al Viro384f26e2016-04-28 02:03:55 -04002992 if (file->f_path.dentry) {
2993 dput(dentry);
2994 dentry = file->f_path.dentry;
Al Viro03da6332013-09-16 19:22:33 -04002995 }
Al Viro384f26e2016-04-28 02:03:55 -04002996 if (*opened & FILE_CREATED)
2997 fsnotify_create(dir, dentry);
2998 path->dentry = dentry;
2999 path->mnt = nd->path.mnt;
3000 return 1;
Sage Weil62b2ce92012-08-15 13:30:12 -07003001 }
Miklos Szeredid18e9002012-06-05 15:10:17 +02003002 }
Miklos Szeredid18e9002012-06-05 15:10:17 +02003003 dput(dentry);
Al Viro2675a4e2012-06-22 12:41:10 +04003004 return error;
Miklos Szeredid18e9002012-06-05 15:10:17 +02003005}
3006
Nick Piggin31e6b012011-01-07 17:49:52 +11003007/*
David Howells1acf0af2012-06-14 16:13:46 +01003008 * Look up and maybe create and open the last component.
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003009 *
3010 * Must be called with i_mutex held on parent.
3011 *
David Howells1acf0af2012-06-14 16:13:46 +01003012 * Returns 0 if the file was successfully atomically created (if necessary) and
3013 * opened. In this case the file will be returned attached to @file.
3014 *
3015 * Returns 1 if the file was not completely opened at this time, though lookups
3016 * and creations will have been performed and the dentry returned in @path will
3017 * be positive upon return if O_CREAT was specified. If O_CREAT wasn't
3018 * specified then a negative dentry may be returned.
3019 *
3020 * An error code is returned otherwise.
3021 *
3022 * FILE_CREATE will be set in @*opened if the dentry was created and will be
3023 * cleared otherwise prior to returning.
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003024 */
Al Viro2675a4e2012-06-22 12:41:10 +04003025static int lookup_open(struct nameidata *nd, struct path *path,
3026 struct file *file,
3027 const struct open_flags *op,
Al Viro64894cf2012-07-31 00:53:35 +04003028 bool got_write, int *opened)
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003029{
3030 struct dentry *dir = nd->path.dentry;
Miklos Szeredi54ef4872012-06-05 15:10:16 +02003031 struct inode *dir_inode = dir->d_inode;
Al Viro1643b432016-04-27 19:14:10 -04003032 int open_flag = op->open_flag;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003033 struct dentry *dentry;
Al Viro1643b432016-04-27 19:14:10 -04003034 int error, create_error = 0;
Al Viro1643b432016-04-27 19:14:10 -04003035 umode_t mode = op->mode;
Al Viro6fbd0712016-04-28 11:50:59 -04003036 DECLARE_WAIT_QUEUE_HEAD_ONSTACK(wq);
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003037
Al Viroce8644f2016-04-26 14:17:56 -04003038 if (unlikely(IS_DEADDIR(dir_inode)))
3039 return -ENOENT;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003040
Al Viro47237682012-06-10 05:01:45 -04003041 *opened &= ~FILE_CREATED;
Al Viro6fbd0712016-04-28 11:50:59 -04003042 dentry = d_lookup(dir, &nd->last);
3043 for (;;) {
3044 if (!dentry) {
3045 dentry = d_alloc_parallel(dir, &nd->last, &wq);
3046 if (IS_ERR(dentry))
3047 return PTR_ERR(dentry);
3048 }
3049 if (d_in_lookup(dentry))
3050 break;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003051
Al Viro6fbd0712016-04-28 11:50:59 -04003052 if (!(dentry->d_flags & DCACHE_OP_REVALIDATE))
3053 break;
3054
3055 error = d_revalidate(dentry, nd->flags);
3056 if (likely(error > 0))
3057 break;
3058 if (error)
3059 goto out_dput;
3060 d_invalidate(dentry);
3061 dput(dentry);
3062 dentry = NULL;
3063 }
3064 if (dentry->d_inode) {
Al Viro6c51e512016-03-05 20:09:32 -05003065 /* Cached positive dentry: will open in f_op->open */
Miklos Szeredid18e9002012-06-05 15:10:17 +02003066 goto out_no_open;
Al Viro6c51e512016-03-05 20:09:32 -05003067 }
Miklos Szeredid18e9002012-06-05 15:10:17 +02003068
Al Viro1643b432016-04-27 19:14:10 -04003069 /*
3070 * Checking write permission is tricky, bacuse we don't know if we are
3071 * going to actually need it: O_CREAT opens should work as long as the
3072 * file exists. But checking existence breaks atomicity. The trick is
3073 * to check access and if not granted clear O_CREAT from the flags.
3074 *
3075 * Another problem is returing the "right" error value (e.g. for an
3076 * O_EXCL open we want to return EEXIST not EROFS).
3077 */
3078 if (open_flag & O_CREAT) {
3079 if (!IS_POSIXACL(dir->d_inode))
3080 mode &= ~current_umask();
3081 if (unlikely(!got_write)) {
3082 create_error = -EROFS;
3083 open_flag &= ~O_CREAT;
3084 if (open_flag & (O_EXCL | O_TRUNC))
3085 goto no_open;
3086 /* No side effects, safe to clear O_CREAT */
3087 } else {
3088 create_error = may_o_create(&nd->path, dentry, mode);
3089 if (create_error) {
3090 open_flag &= ~O_CREAT;
3091 if (open_flag & O_EXCL)
3092 goto no_open;
3093 }
3094 }
3095 } else if ((open_flag & (O_TRUNC|O_WRONLY|O_RDWR)) &&
3096 unlikely(!got_write)) {
3097 /*
3098 * No O_CREATE -> atomicity not a requirement -> fall
3099 * back to lookup + open
3100 */
3101 goto no_open;
Miklos Szeredid18e9002012-06-05 15:10:17 +02003102 }
3103
Al Viro1643b432016-04-27 19:14:10 -04003104 if (dir_inode->i_op->atomic_open) {
3105 error = atomic_open(nd, dentry, path, file, op, open_flag,
3106 mode, opened);
3107 if (unlikely(error == -ENOENT) && create_error)
3108 error = create_error;
3109 return error;
3110 }
Miklos Szeredi54ef4872012-06-05 15:10:16 +02003111
Al Viro1643b432016-04-27 19:14:10 -04003112no_open:
Al Viro6fbd0712016-04-28 11:50:59 -04003113 if (d_in_lookup(dentry)) {
Al Viro12fa5e22016-04-28 11:19:43 -04003114 struct dentry *res = dir_inode->i_op->lookup(dir_inode, dentry,
3115 nd->flags);
Al Viro6fbd0712016-04-28 11:50:59 -04003116 d_lookup_done(dentry);
Al Viro12fa5e22016-04-28 11:19:43 -04003117 if (unlikely(res)) {
3118 if (IS_ERR(res)) {
3119 error = PTR_ERR(res);
3120 goto out_dput;
3121 }
3122 dput(dentry);
3123 dentry = res;
3124 }
Miklos Szeredi54ef4872012-06-05 15:10:16 +02003125 }
3126
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003127 /* Negative dentry, just create the file */
Al Viro1643b432016-04-27 19:14:10 -04003128 if (!dentry->d_inode && (open_flag & O_CREAT)) {
Al Viro47237682012-06-10 05:01:45 -04003129 *opened |= FILE_CREATED;
Al Viroce8644f2016-04-26 14:17:56 -04003130 audit_inode_child(dir_inode, dentry, AUDIT_TYPE_CHILD_CREATE);
Al Viroce8644f2016-04-26 14:17:56 -04003131 if (!dir_inode->i_op->create) {
3132 error = -EACCES;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003133 goto out_dput;
Miklos Szeredi77d660a2012-06-05 15:10:30 +02003134 }
Al Viroce8644f2016-04-26 14:17:56 -04003135 error = dir_inode->i_op->create(dir_inode, dentry, mode,
Al Viro1643b432016-04-27 19:14:10 -04003136 open_flag & O_EXCL);
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003137 if (error)
3138 goto out_dput;
Al Viroce8644f2016-04-26 14:17:56 -04003139 fsnotify_create(dir_inode, dentry);
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003140 }
Al Viro1643b432016-04-27 19:14:10 -04003141 if (unlikely(create_error) && !dentry->d_inode) {
3142 error = create_error;
3143 goto out_dput;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003144 }
Miklos Szeredid18e9002012-06-05 15:10:17 +02003145out_no_open:
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003146 path->dentry = dentry;
3147 path->mnt = nd->path.mnt;
Al Viro2675a4e2012-06-22 12:41:10 +04003148 return 1;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003149
3150out_dput:
3151 dput(dentry);
Al Viro2675a4e2012-06-22 12:41:10 +04003152 return error;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003153}
3154
3155/*
Al Virofe2d35f2011-03-05 22:58:25 -05003156 * Handle the last step of open()
Nick Piggin31e6b012011-01-07 17:49:52 +11003157 */
Al Viro896475d2015-04-22 18:02:17 -04003158static int do_last(struct nameidata *nd,
Al Viro2675a4e2012-06-22 12:41:10 +04003159 struct file *file, const struct open_flags *op,
Al Viro76ae2a52015-05-12 18:44:32 -04003160 int *opened)
Al Virofb1cc552009-12-24 01:58:28 -05003161{
Al Viroa1e28032009-12-24 02:12:06 -05003162 struct dentry *dir = nd->path.dentry;
Al Viroca344a892011-03-09 00:36:45 -05003163 int open_flag = op->open_flag;
Miklos Szeredi77d660a2012-06-05 15:10:30 +02003164 bool will_truncate = (open_flag & O_TRUNC) != 0;
Al Viro64894cf2012-07-31 00:53:35 +04003165 bool got_write = false;
Al Virobcda7652011-03-13 16:42:14 -04003166 int acc_mode = op->acc_mode;
Al Viro254cf582015-05-05 09:40:46 -04003167 unsigned seq;
Miklos Szeredia1eb3312012-05-21 17:30:07 +02003168 struct inode *inode;
Al Viro896475d2015-04-22 18:02:17 -04003169 struct path path;
Al Viro16c2cd72011-02-22 15:50:10 -05003170 int error;
Al Virofb1cc552009-12-24 01:58:28 -05003171
Al Viroc3e380b2011-02-23 13:39:45 -05003172 nd->flags &= ~LOOKUP_PARENT;
3173 nd->flags |= op->intent;
3174
Al Virobc77daa2013-06-06 09:12:33 -04003175 if (nd->last_type != LAST_NORM) {
Al Virofe2d35f2011-03-05 22:58:25 -05003176 error = handle_dots(nd, nd->last_type);
Al Virodeb106c2015-05-08 18:05:21 -04003177 if (unlikely(error))
Al Viro2675a4e2012-06-22 12:41:10 +04003178 return error;
Miklos Szeredie83db162012-06-05 15:10:29 +02003179 goto finish_open;
Al Viro1f36f772009-12-26 10:56:19 -05003180 }
Al Viro67ee3ad2009-12-26 07:01:01 -05003181
Al Viroca344a892011-03-09 00:36:45 -05003182 if (!(open_flag & O_CREAT)) {
Al Virofe2d35f2011-03-05 22:58:25 -05003183 if (nd->last.name[nd->last.len])
3184 nd->flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
3185 /* we _can_ be in RCU mode here */
Al Viro254cf582015-05-05 09:40:46 -04003186 error = lookup_fast(nd, &path, &inode, &seq);
Al Viroe9742b52016-03-05 22:04:59 -05003187 if (likely(error > 0))
Miklos Szeredi71574862012-06-05 15:10:14 +02003188 goto finish_lookup;
Miklos Szeredia1eb3312012-05-21 17:30:07 +02003189
Miklos Szeredi71574862012-06-05 15:10:14 +02003190 if (error < 0)
Al Virodeb106c2015-05-08 18:05:21 -04003191 return error;
Miklos Szeredi37d7fff2012-06-05 15:10:12 +02003192
Miklos Szeredi71574862012-06-05 15:10:14 +02003193 BUG_ON(nd->inode != dir->d_inode);
Al Viro6583fe22016-03-05 18:14:03 -05003194 BUG_ON(nd->flags & LOOKUP_RCU);
Miklos Szeredib6183df2012-06-05 15:10:13 +02003195 } else {
3196 /* create side of things */
3197 /*
3198 * This will *only* deal with leaving RCU mode - LOOKUP_JUMPED
3199 * has been cleared when we got to the last component we are
3200 * about to look up
3201 */
3202 error = complete_walk(nd);
Al Viroe8bb73d2015-05-08 16:28:42 -04003203 if (error)
Al Viro2675a4e2012-06-22 12:41:10 +04003204 return error;
Miklos Szeredib6183df2012-06-05 15:10:13 +02003205
Al Viro76ae2a52015-05-12 18:44:32 -04003206 audit_inode(nd->name, dir, LOOKUP_PARENT);
Miklos Szeredib6183df2012-06-05 15:10:13 +02003207 /* trailing slashes? */
Al Virodeb106c2015-05-08 18:05:21 -04003208 if (unlikely(nd->last.name[nd->last.len]))
3209 return -EISDIR;
Al Virofe2d35f2011-03-05 22:58:25 -05003210 }
3211
Al Viro9cf843e2016-04-28 19:35:16 -04003212 if (open_flag & (O_CREAT | O_TRUNC | O_WRONLY | O_RDWR)) {
Al Viro64894cf2012-07-31 00:53:35 +04003213 error = mnt_want_write(nd->path.mnt);
3214 if (!error)
3215 got_write = true;
3216 /*
3217 * do _not_ fail yet - we might not need that or fail with
3218 * a different error; let lookup_open() decide; we'll be
3219 * dropping this one anyway.
3220 */
3221 }
Al Viro9cf843e2016-04-28 19:35:16 -04003222 if (open_flag & O_CREAT)
3223 inode_lock(dir->d_inode);
3224 else
3225 inode_lock_shared(dir->d_inode);
Al Viro896475d2015-04-22 18:02:17 -04003226 error = lookup_open(nd, &path, file, op, got_write, opened);
Al Viro9cf843e2016-04-28 19:35:16 -04003227 if (open_flag & O_CREAT)
3228 inode_unlock(dir->d_inode);
3229 else
3230 inode_unlock_shared(dir->d_inode);
Al Viroa1e28032009-12-24 02:12:06 -05003231
Al Viro2675a4e2012-06-22 12:41:10 +04003232 if (error <= 0) {
3233 if (error)
Miklos Szeredid18e9002012-06-05 15:10:17 +02003234 goto out;
3235
Al Viro47237682012-06-10 05:01:45 -04003236 if ((*opened & FILE_CREATED) ||
Al Viro496ad9a2013-01-23 17:07:38 -05003237 !S_ISREG(file_inode(file)->i_mode))
Miklos Szeredi77d660a2012-06-05 15:10:30 +02003238 will_truncate = false;
Miklos Szeredid18e9002012-06-05 15:10:17 +02003239
Al Viro76ae2a52015-05-12 18:44:32 -04003240 audit_inode(nd->name, file->f_path.dentry, 0);
Miklos Szeredid18e9002012-06-05 15:10:17 +02003241 goto opened;
3242 }
Al Virofb1cc552009-12-24 01:58:28 -05003243
Al Viro47237682012-06-10 05:01:45 -04003244 if (*opened & FILE_CREATED) {
Al Viro9b44f1b2011-03-09 00:17:27 -05003245 /* Don't check for write permission, don't truncate */
Al Viroca344a892011-03-09 00:36:45 -05003246 open_flag &= ~O_TRUNC;
Miklos Szeredi77d660a2012-06-05 15:10:30 +02003247 will_truncate = false;
Al Viro62fb4a12015-12-26 22:33:24 -05003248 acc_mode = 0;
Al Viro896475d2015-04-22 18:02:17 -04003249 path_to_nameidata(&path, nd);
Miklos Szeredie83db162012-06-05 15:10:29 +02003250 goto finish_open_created;
Al Virofb1cc552009-12-24 01:58:28 -05003251 }
3252
3253 /*
Miklos Szeredid18e9002012-06-05 15:10:17 +02003254 * If atomic_open() acquired write access it is dropped now due to
3255 * possible mount and symlink following (this might be optimized away if
3256 * necessary...)
3257 */
Al Viro64894cf2012-07-31 00:53:35 +04003258 if (got_write) {
Miklos Szeredid18e9002012-06-05 15:10:17 +02003259 mnt_drop_write(nd->path.mnt);
Al Viro64894cf2012-07-31 00:53:35 +04003260 got_write = false;
Miklos Szeredid18e9002012-06-05 15:10:17 +02003261 }
3262
Al Viro6583fe22016-03-05 18:14:03 -05003263 if (unlikely(d_is_negative(path.dentry))) {
3264 path_to_nameidata(&path, nd);
3265 return -ENOENT;
3266 }
3267
3268 /*
3269 * create/update audit record if it already exists.
3270 */
3271 audit_inode(nd->name, path.dentry, 0);
3272
Al Virodeb106c2015-05-08 18:05:21 -04003273 if (unlikely((open_flag & (O_EXCL | O_CREAT)) == (O_EXCL | O_CREAT))) {
3274 path_to_nameidata(&path, nd);
3275 return -EEXIST;
3276 }
Al Virofb1cc552009-12-24 01:58:28 -05003277
NeilBrown756daf22015-03-23 13:37:38 +11003278 error = follow_managed(&path, nd);
Al Virodeb106c2015-05-08 18:05:21 -04003279 if (unlikely(error < 0))
3280 return error;
Al Viroa3fbbde2011-11-07 21:21:26 +00003281
Al Viro254cf582015-05-05 09:40:46 -04003282 seq = 0; /* out of RCU mode, so the value doesn't matter */
Al Virod4565642016-02-27 19:23:16 -05003283 inode = d_backing_inode(path.dentry);
Al Viro766c4cb2015-05-07 19:24:57 -04003284finish_lookup:
Al Virod63ff282015-05-04 18:13:23 -04003285 if (nd->depth)
3286 put_link(nd);
Al Viro181548c2015-05-07 19:54:34 -04003287 error = should_follow_link(nd, &path, nd->flags & LOOKUP_FOLLOW,
3288 inode, seq);
Al Virodeb106c2015-05-08 18:05:21 -04003289 if (unlikely(error))
Al Virod63ff282015-05-04 18:13:23 -04003290 return error;
Al Virofb1cc552009-12-24 01:58:28 -05003291
Al Virofac7d192016-06-04 11:41:49 -04003292 path_to_nameidata(&path, nd);
Miklos Szeredidecf3402012-05-21 17:30:08 +02003293 nd->inode = inode;
Al Viro254cf582015-05-05 09:40:46 -04003294 nd->seq = seq;
Al Viroa3fbbde2011-11-07 21:21:26 +00003295 /* Why this, you ask? _Now_ we might have grown LOOKUP_JUMPED... */
Al Virobc77daa2013-06-06 09:12:33 -04003296finish_open:
Al Viroa3fbbde2011-11-07 21:21:26 +00003297 error = complete_walk(nd);
Al Virofac7d192016-06-04 11:41:49 -04003298 if (error)
Al Viro2675a4e2012-06-22 12:41:10 +04003299 return error;
Al Viro76ae2a52015-05-12 18:44:32 -04003300 audit_inode(nd->name, nd->path.dentry, 0);
Al Virofb1cc552009-12-24 01:58:28 -05003301 error = -EISDIR;
Miklos Szeredi44b1d532014-04-01 17:08:41 +02003302 if ((open_flag & O_CREAT) && d_is_dir(nd->path.dentry))
Al Viro2675a4e2012-06-22 12:41:10 +04003303 goto out;
Miklos Szerediaf2f5542012-05-21 17:30:11 +02003304 error = -ENOTDIR;
Miklos Szeredi44b1d532014-04-01 17:08:41 +02003305 if ((nd->flags & LOOKUP_DIRECTORY) && !d_can_lookup(nd->path.dentry))
Al Viro2675a4e2012-06-22 12:41:10 +04003306 goto out;
David Howells4bbcbd32015-03-17 22:16:40 +00003307 if (!d_is_reg(nd->path.dentry))
Miklos Szeredi77d660a2012-06-05 15:10:30 +02003308 will_truncate = false;
Al Viro6c0d46c2011-03-09 00:59:59 -05003309
Al Viro0f9d1a12011-03-09 00:13:14 -05003310 if (will_truncate) {
3311 error = mnt_want_write(nd->path.mnt);
3312 if (error)
Al Viro2675a4e2012-06-22 12:41:10 +04003313 goto out;
Al Viro64894cf2012-07-31 00:53:35 +04003314 got_write = true;
Al Viro0f9d1a12011-03-09 00:13:14 -05003315 }
Miklos Szeredie83db162012-06-05 15:10:29 +02003316finish_open_created:
Al Viro6ac08702016-04-26 00:02:50 -04003317 error = may_open(&nd->path, acc_mode, open_flag);
3318 if (error)
3319 goto out;
Miklos Szeredi4aa7c632014-10-24 00:14:35 +02003320 BUG_ON(*opened & FILE_OPENED); /* once it's opened, it's opened */
3321 error = vfs_open(&nd->path, file, current_cred());
Al Virofac7d192016-06-04 11:41:49 -04003322 if (error)
Miklos Szeredi015c3bb2012-06-05 15:10:27 +02003323 goto out;
Al Virofac7d192016-06-04 11:41:49 -04003324 *opened |= FILE_OPENED;
Miklos Szeredia8277b92012-06-05 15:10:32 +02003325opened:
Al Viro2675a4e2012-06-22 12:41:10 +04003326 error = open_check_o_direct(file);
Al Virofe9ec822016-04-27 03:14:20 -04003327 if (!error)
3328 error = ima_file_check(file, op->acc_mode, *opened);
3329 if (!error && will_truncate)
Al Viro2675a4e2012-06-22 12:41:10 +04003330 error = handle_truncate(file);
Al Viroca344a892011-03-09 00:36:45 -05003331out:
Al Virofe9ec822016-04-27 03:14:20 -04003332 if (unlikely(error) && (*opened & FILE_OPENED))
3333 fput(file);
Al Viroc80567c2016-02-27 19:17:33 -05003334 if (unlikely(error > 0)) {
3335 WARN_ON(1);
3336 error = -EINVAL;
3337 }
Al Viro64894cf2012-07-31 00:53:35 +04003338 if (got_write)
Al Viro0f9d1a12011-03-09 00:13:14 -05003339 mnt_drop_write(nd->path.mnt);
Al Viro2675a4e2012-06-22 12:41:10 +04003340 return error;
Al Virofb1cc552009-12-24 01:58:28 -05003341}
3342
Al Viroc8a53ee2015-05-12 18:43:07 -04003343static int do_tmpfile(struct nameidata *nd, unsigned flags,
Al Viro60545d02013-06-07 01:20:27 -04003344 const struct open_flags *op,
3345 struct file *file, int *opened)
3346{
3347 static const struct qstr name = QSTR_INIT("/", 1);
Al Viro625b6d12015-05-12 16:36:12 -04003348 struct dentry *child;
Al Viro60545d02013-06-07 01:20:27 -04003349 struct inode *dir;
Al Viro625b6d12015-05-12 16:36:12 -04003350 struct path path;
Al Viroc8a53ee2015-05-12 18:43:07 -04003351 int error = path_lookupat(nd, flags | LOOKUP_DIRECTORY, &path);
Al Viro60545d02013-06-07 01:20:27 -04003352 if (unlikely(error))
3353 return error;
Al Viro625b6d12015-05-12 16:36:12 -04003354 error = mnt_want_write(path.mnt);
Al Viro60545d02013-06-07 01:20:27 -04003355 if (unlikely(error))
3356 goto out;
Al Viro625b6d12015-05-12 16:36:12 -04003357 dir = path.dentry->d_inode;
Al Viro60545d02013-06-07 01:20:27 -04003358 /* we want directory to be writable */
Al Viro625b6d12015-05-12 16:36:12 -04003359 error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
Al Viro60545d02013-06-07 01:20:27 -04003360 if (error)
3361 goto out2;
Al Viro60545d02013-06-07 01:20:27 -04003362 if (!dir->i_op->tmpfile) {
3363 error = -EOPNOTSUPP;
3364 goto out2;
3365 }
Al Viro625b6d12015-05-12 16:36:12 -04003366 child = d_alloc(path.dentry, &name);
Al Viro60545d02013-06-07 01:20:27 -04003367 if (unlikely(!child)) {
3368 error = -ENOMEM;
3369 goto out2;
3370 }
Al Viro625b6d12015-05-12 16:36:12 -04003371 dput(path.dentry);
3372 path.dentry = child;
3373 error = dir->i_op->tmpfile(dir, child, op->mode);
Al Viro60545d02013-06-07 01:20:27 -04003374 if (error)
3375 goto out2;
Al Viroc8a53ee2015-05-12 18:43:07 -04003376 audit_inode(nd->name, child, 0);
Eric Rannaud69a91c22014-10-30 01:51:01 -07003377 /* Don't check for other permissions, the inode was just created */
Al Viro62fb4a12015-12-26 22:33:24 -05003378 error = may_open(&path, 0, op->open_flag);
Al Viro60545d02013-06-07 01:20:27 -04003379 if (error)
3380 goto out2;
Al Viro625b6d12015-05-12 16:36:12 -04003381 file->f_path.mnt = path.mnt;
3382 error = finish_open(file, child, NULL, opened);
Al Viro60545d02013-06-07 01:20:27 -04003383 if (error)
3384 goto out2;
3385 error = open_check_o_direct(file);
Al Virof4e0c302013-06-11 08:34:36 +04003386 if (error) {
Al Viro60545d02013-06-07 01:20:27 -04003387 fput(file);
Al Virof4e0c302013-06-11 08:34:36 +04003388 } else if (!(op->open_flag & O_EXCL)) {
3389 struct inode *inode = file_inode(file);
3390 spin_lock(&inode->i_lock);
3391 inode->i_state |= I_LINKABLE;
3392 spin_unlock(&inode->i_lock);
3393 }
Al Viro60545d02013-06-07 01:20:27 -04003394out2:
Al Viro625b6d12015-05-12 16:36:12 -04003395 mnt_drop_write(path.mnt);
Al Viro60545d02013-06-07 01:20:27 -04003396out:
Al Viro625b6d12015-05-12 16:36:12 -04003397 path_put(&path);
Al Viro60545d02013-06-07 01:20:27 -04003398 return error;
3399}
3400
Al Viro6ac08702016-04-26 00:02:50 -04003401static int do_o_path(struct nameidata *nd, unsigned flags, struct file *file)
3402{
3403 struct path path;
3404 int error = path_lookupat(nd, flags, &path);
3405 if (!error) {
3406 audit_inode(nd->name, path.dentry, 0);
3407 error = vfs_open(&path, file, current_cred());
3408 path_put(&path);
3409 }
3410 return error;
3411}
3412
Al Viroc8a53ee2015-05-12 18:43:07 -04003413static struct file *path_openat(struct nameidata *nd,
3414 const struct open_flags *op, unsigned flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003415{
Al Viro368ee9b2015-05-08 17:19:59 -04003416 const char *s;
Al Viro30d90492012-06-22 12:40:19 +04003417 struct file *file;
Al Viro47237682012-06-10 05:01:45 -04003418 int opened = 0;
Al Viro13aab422011-02-23 17:54:08 -05003419 int error;
Nick Piggin31e6b012011-01-07 17:49:52 +11003420
Al Viro30d90492012-06-22 12:40:19 +04003421 file = get_empty_filp();
Al Viro1afc99b2013-02-14 20:41:04 -05003422 if (IS_ERR(file))
3423 return file;
Nick Piggin31e6b012011-01-07 17:49:52 +11003424
Al Viro30d90492012-06-22 12:40:19 +04003425 file->f_flags = op->open_flag;
Nick Piggin31e6b012011-01-07 17:49:52 +11003426
Al Virobb458c62013-07-13 13:26:37 +04003427 if (unlikely(file->f_flags & __O_TMPFILE)) {
Al Viroc8a53ee2015-05-12 18:43:07 -04003428 error = do_tmpfile(nd, flags, op, file, &opened);
Al Virof15133d2015-05-08 22:53:15 -04003429 goto out2;
Al Viro60545d02013-06-07 01:20:27 -04003430 }
3431
Al Viro6ac08702016-04-26 00:02:50 -04003432 if (unlikely(file->f_flags & O_PATH)) {
3433 error = do_o_path(nd, flags, file);
3434 if (!error)
3435 opened |= FILE_OPENED;
3436 goto out2;
3437 }
3438
Al Viroc8a53ee2015-05-12 18:43:07 -04003439 s = path_init(nd, flags);
Al Viro368ee9b2015-05-08 17:19:59 -04003440 if (IS_ERR(s)) {
3441 put_filp(file);
3442 return ERR_CAST(s);
3443 }
Al Viro3bdba282015-05-08 17:37:07 -04003444 while (!(error = link_path_walk(s, nd)) &&
Al Viro76ae2a52015-05-12 18:44:32 -04003445 (error = do_last(nd, file, op, &opened)) > 0) {
Al Viro73d049a2011-03-11 12:08:24 -05003446 nd->flags &= ~(LOOKUP_OPEN|LOOKUP_CREATE|LOOKUP_EXCL);
Al Viro3bdba282015-05-08 17:37:07 -04003447 s = trailing_symlink(nd);
3448 if (IS_ERR(s)) {
3449 error = PTR_ERR(s);
Al Viro2675a4e2012-06-22 12:41:10 +04003450 break;
Al Viro3bdba282015-05-08 17:37:07 -04003451 }
Al Viro806b6812009-12-26 07:16:40 -05003452 }
Al Virodeb106c2015-05-08 18:05:21 -04003453 terminate_walk(nd);
Al Virof15133d2015-05-08 22:53:15 -04003454out2:
Al Viro2675a4e2012-06-22 12:41:10 +04003455 if (!(opened & FILE_OPENED)) {
3456 BUG_ON(!error);
Al Viro30d90492012-06-22 12:40:19 +04003457 put_filp(file);
Miklos Szeredi015c3bb2012-06-05 15:10:27 +02003458 }
Al Viro2675a4e2012-06-22 12:41:10 +04003459 if (unlikely(error)) {
3460 if (error == -EOPENSTALE) {
3461 if (flags & LOOKUP_RCU)
3462 error = -ECHILD;
3463 else
3464 error = -ESTALE;
3465 }
3466 file = ERR_PTR(error);
3467 }
3468 return file;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003469}
3470
Jeff Layton669abf42012-10-10 16:43:10 -04003471struct file *do_filp_open(int dfd, struct filename *pathname,
Al Virof9652e12013-06-11 08:23:01 +04003472 const struct open_flags *op)
Al Viro13aab422011-02-23 17:54:08 -05003473{
Al Viro9883d182015-05-13 07:28:08 -04003474 struct nameidata nd;
Al Virof9652e12013-06-11 08:23:01 +04003475 int flags = op->lookup_flags;
Al Viro13aab422011-02-23 17:54:08 -05003476 struct file *filp;
3477
Al Viro9883d182015-05-13 07:28:08 -04003478 set_nameidata(&nd, dfd, pathname);
Al Viroc8a53ee2015-05-12 18:43:07 -04003479 filp = path_openat(&nd, op, flags | LOOKUP_RCU);
Al Viro13aab422011-02-23 17:54:08 -05003480 if (unlikely(filp == ERR_PTR(-ECHILD)))
Al Viroc8a53ee2015-05-12 18:43:07 -04003481 filp = path_openat(&nd, op, flags);
Al Viro13aab422011-02-23 17:54:08 -05003482 if (unlikely(filp == ERR_PTR(-ESTALE)))
Al Viroc8a53ee2015-05-12 18:43:07 -04003483 filp = path_openat(&nd, op, flags | LOOKUP_REVAL);
Al Viro9883d182015-05-13 07:28:08 -04003484 restore_nameidata();
Al Viro13aab422011-02-23 17:54:08 -05003485 return filp;
3486}
3487
Al Viro73d049a2011-03-11 12:08:24 -05003488struct file *do_file_open_root(struct dentry *dentry, struct vfsmount *mnt,
Al Virof9652e12013-06-11 08:23:01 +04003489 const char *name, const struct open_flags *op)
Al Viro73d049a2011-03-11 12:08:24 -05003490{
Al Viro9883d182015-05-13 07:28:08 -04003491 struct nameidata nd;
Al Viro73d049a2011-03-11 12:08:24 -05003492 struct file *file;
Paul Moore51689102015-01-22 00:00:03 -05003493 struct filename *filename;
Al Virof9652e12013-06-11 08:23:01 +04003494 int flags = op->lookup_flags | LOOKUP_ROOT;
Al Viro73d049a2011-03-11 12:08:24 -05003495
3496 nd.root.mnt = mnt;
3497 nd.root.dentry = dentry;
3498
David Howellsb18825a2013-09-12 19:22:53 +01003499 if (d_is_symlink(dentry) && op->intent & LOOKUP_OPEN)
Al Viro73d049a2011-03-11 12:08:24 -05003500 return ERR_PTR(-ELOOP);
3501
Paul Moore51689102015-01-22 00:00:03 -05003502 filename = getname_kernel(name);
Viresh Kumara1c83682015-08-12 15:59:44 +05303503 if (IS_ERR(filename))
Paul Moore51689102015-01-22 00:00:03 -05003504 return ERR_CAST(filename);
3505
Al Viro9883d182015-05-13 07:28:08 -04003506 set_nameidata(&nd, -1, filename);
Al Viroc8a53ee2015-05-12 18:43:07 -04003507 file = path_openat(&nd, op, flags | LOOKUP_RCU);
Al Viro73d049a2011-03-11 12:08:24 -05003508 if (unlikely(file == ERR_PTR(-ECHILD)))
Al Viroc8a53ee2015-05-12 18:43:07 -04003509 file = path_openat(&nd, op, flags);
Al Viro73d049a2011-03-11 12:08:24 -05003510 if (unlikely(file == ERR_PTR(-ESTALE)))
Al Viroc8a53ee2015-05-12 18:43:07 -04003511 file = path_openat(&nd, op, flags | LOOKUP_REVAL);
Al Viro9883d182015-05-13 07:28:08 -04003512 restore_nameidata();
Paul Moore51689102015-01-22 00:00:03 -05003513 putname(filename);
Al Viro73d049a2011-03-11 12:08:24 -05003514 return file;
3515}
3516
Al Virofa14a0b2015-01-22 02:16:49 -05003517static struct dentry *filename_create(int dfd, struct filename *name,
Jeff Layton1ac12b42012-12-11 12:10:06 -05003518 struct path *path, unsigned int lookup_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003519{
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07003520 struct dentry *dentry = ERR_PTR(-EEXIST);
Al Viro391172c2015-05-09 11:19:16 -04003521 struct qstr last;
3522 int type;
Jan Karac30dabf2012-06-12 16:20:30 +02003523 int err2;
Jeff Layton1ac12b42012-12-11 12:10:06 -05003524 int error;
3525 bool is_dir = (lookup_flags & LOOKUP_DIRECTORY);
3526
3527 /*
3528 * Note that only LOOKUP_REVAL and LOOKUP_DIRECTORY matter here. Any
3529 * other flags passed in are ignored!
3530 */
3531 lookup_flags &= LOOKUP_REVAL;
3532
Al Viro5c31b6c2015-05-12 17:32:54 -04003533 name = filename_parentat(dfd, name, lookup_flags, path, &last, &type);
3534 if (IS_ERR(name))
3535 return ERR_CAST(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003536
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07003537 /*
3538 * Yucky last component or no last component at all?
3539 * (foo/., foo/.., /////)
3540 */
Al Viro5c31b6c2015-05-12 17:32:54 -04003541 if (unlikely(type != LAST_NORM))
Al Viroed75e952011-06-27 16:53:43 -04003542 goto out;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07003543
Jan Karac30dabf2012-06-12 16:20:30 +02003544 /* don't fail immediately if it's r/o, at least try to report other errors */
Al Viro391172c2015-05-09 11:19:16 -04003545 err2 = mnt_want_write(path->mnt);
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07003546 /*
3547 * Do the final lookup.
3548 */
Al Viro391172c2015-05-09 11:19:16 -04003549 lookup_flags |= LOOKUP_CREATE | LOOKUP_EXCL;
Al Viro59551022016-01-22 15:40:57 -05003550 inode_lock_nested(path->dentry->d_inode, I_MUTEX_PARENT);
Al Viro391172c2015-05-09 11:19:16 -04003551 dentry = __lookup_hash(&last, path->dentry, lookup_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003552 if (IS_ERR(dentry))
Al Viroa8104a92012-07-20 02:25:00 +04003553 goto unlock;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07003554
Al Viroa8104a92012-07-20 02:25:00 +04003555 error = -EEXIST;
David Howellsb18825a2013-09-12 19:22:53 +01003556 if (d_is_positive(dentry))
Al Viroa8104a92012-07-20 02:25:00 +04003557 goto fail;
David Howellsb18825a2013-09-12 19:22:53 +01003558
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07003559 /*
3560 * Special case - lookup gave negative, but... we had foo/bar/
3561 * From the vfs_mknod() POV we just have a negative dentry -
3562 * all is fine. Let's be bastards - you had / on the end, you've
3563 * been asking for (non-existent) directory. -ENOENT for you.
3564 */
Al Viro391172c2015-05-09 11:19:16 -04003565 if (unlikely(!is_dir && last.name[last.len])) {
Al Viroa8104a92012-07-20 02:25:00 +04003566 error = -ENOENT;
Al Viroed75e952011-06-27 16:53:43 -04003567 goto fail;
Al Viroe9baf6e2008-05-15 04:49:12 -04003568 }
Jan Karac30dabf2012-06-12 16:20:30 +02003569 if (unlikely(err2)) {
3570 error = err2;
Al Viroa8104a92012-07-20 02:25:00 +04003571 goto fail;
Jan Karac30dabf2012-06-12 16:20:30 +02003572 }
Al Viro181c37b2015-05-12 17:21:25 -04003573 putname(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003574 return dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003575fail:
Al Viroa8104a92012-07-20 02:25:00 +04003576 dput(dentry);
3577 dentry = ERR_PTR(error);
3578unlock:
Al Viro59551022016-01-22 15:40:57 -05003579 inode_unlock(path->dentry->d_inode);
Jan Karac30dabf2012-06-12 16:20:30 +02003580 if (!err2)
Al Viro391172c2015-05-09 11:19:16 -04003581 mnt_drop_write(path->mnt);
Al Viroed75e952011-06-27 16:53:43 -04003582out:
Al Viro391172c2015-05-09 11:19:16 -04003583 path_put(path);
Al Viro181c37b2015-05-12 17:21:25 -04003584 putname(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003585 return dentry;
3586}
Al Virofa14a0b2015-01-22 02:16:49 -05003587
3588struct dentry *kern_path_create(int dfd, const char *pathname,
3589 struct path *path, unsigned int lookup_flags)
3590{
Al Viro181c37b2015-05-12 17:21:25 -04003591 return filename_create(dfd, getname_kernel(pathname),
3592 path, lookup_flags);
Al Virofa14a0b2015-01-22 02:16:49 -05003593}
Al Virodae6ad82011-06-26 11:50:15 -04003594EXPORT_SYMBOL(kern_path_create);
3595
Al Viro921a1652012-07-20 01:15:31 +04003596void done_path_create(struct path *path, struct dentry *dentry)
3597{
3598 dput(dentry);
Al Viro59551022016-01-22 15:40:57 -05003599 inode_unlock(path->dentry->d_inode);
Al Viroa8104a92012-07-20 02:25:00 +04003600 mnt_drop_write(path->mnt);
Al Viro921a1652012-07-20 01:15:31 +04003601 path_put(path);
3602}
3603EXPORT_SYMBOL(done_path_create);
3604
Al Viro520ae682015-05-13 07:00:28 -04003605inline struct dentry *user_path_create(int dfd, const char __user *pathname,
Jeff Layton1ac12b42012-12-11 12:10:06 -05003606 struct path *path, unsigned int lookup_flags)
Al Virodae6ad82011-06-26 11:50:15 -04003607{
Al Viro181c37b2015-05-12 17:21:25 -04003608 return filename_create(dfd, getname(pathname), path, lookup_flags);
Al Virodae6ad82011-06-26 11:50:15 -04003609}
3610EXPORT_SYMBOL(user_path_create);
3611
Al Viro1a67aaf2011-07-26 01:52:52 -04003612int vfs_mknod(struct inode *dir, struct dentry *dentry, umode_t mode, dev_t dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003613{
Miklos Szeredia95164d2008-07-30 15:08:48 +02003614 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003615
3616 if (error)
3617 return error;
3618
Eric W. Biederman975d6b32011-11-13 12:16:43 -08003619 if ((S_ISCHR(mode) || S_ISBLK(mode)) && !capable(CAP_MKNOD))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003620 return -EPERM;
3621
Al Viroacfa4382008-12-04 10:06:33 -05003622 if (!dir->i_op->mknod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003623 return -EPERM;
3624
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -07003625 error = devcgroup_inode_mknod(mode, dev);
3626 if (error)
3627 return error;
3628
Linus Torvalds1da177e2005-04-16 15:20:36 -07003629 error = security_inode_mknod(dir, dentry, mode, dev);
3630 if (error)
3631 return error;
3632
Linus Torvalds1da177e2005-04-16 15:20:36 -07003633 error = dir->i_op->mknod(dir, dentry, mode, dev);
Stephen Smalleya74574a2005-09-09 13:01:44 -07003634 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00003635 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003636 return error;
3637}
Al Viro4d359502014-03-14 12:20:17 -04003638EXPORT_SYMBOL(vfs_mknod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003639
Al Virof69aac02011-07-26 04:31:40 -04003640static int may_mknod(umode_t mode)
Dave Hansen463c3192008-02-15 14:37:57 -08003641{
3642 switch (mode & S_IFMT) {
3643 case S_IFREG:
3644 case S_IFCHR:
3645 case S_IFBLK:
3646 case S_IFIFO:
3647 case S_IFSOCK:
3648 case 0: /* zero mode translates to S_IFREG */
3649 return 0;
3650 case S_IFDIR:
3651 return -EPERM;
3652 default:
3653 return -EINVAL;
3654 }
3655}
3656
Al Viro8208a222011-07-25 17:32:17 -04003657SYSCALL_DEFINE4(mknodat, int, dfd, const char __user *, filename, umode_t, mode,
Heiko Carstens2e4d0922009-01-14 14:14:31 +01003658 unsigned, dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003659{
Al Viro2ad94ae2008-07-21 09:32:51 -04003660 struct dentry *dentry;
Al Virodae6ad82011-06-26 11:50:15 -04003661 struct path path;
3662 int error;
Jeff Layton972567f2012-12-20 16:00:10 -05003663 unsigned int lookup_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003664
Al Viro8e4bfca2012-07-20 01:17:26 +04003665 error = may_mknod(mode);
3666 if (error)
3667 return error;
Jeff Layton972567f2012-12-20 16:00:10 -05003668retry:
3669 dentry = user_path_create(dfd, filename, &path, lookup_flags);
Al Virodae6ad82011-06-26 11:50:15 -04003670 if (IS_ERR(dentry))
3671 return PTR_ERR(dentry);
Al Viro2ad94ae2008-07-21 09:32:51 -04003672
Al Virodae6ad82011-06-26 11:50:15 -04003673 if (!IS_POSIXACL(path.dentry->d_inode))
Al Viroce3b0f82009-03-29 19:08:22 -04003674 mode &= ~current_umask();
Al Virodae6ad82011-06-26 11:50:15 -04003675 error = security_path_mknod(&path, dentry, mode, dev);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09003676 if (error)
Al Viroa8104a92012-07-20 02:25:00 +04003677 goto out;
Dave Hansen463c3192008-02-15 14:37:57 -08003678 switch (mode & S_IFMT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003679 case 0: case S_IFREG:
Al Viro312b63f2012-06-10 18:09:36 -04003680 error = vfs_create(path.dentry->d_inode,dentry,mode,true);
Mimi Zohar05d1a712016-02-29 19:52:05 -05003681 if (!error)
3682 ima_post_path_mknod(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003683 break;
3684 case S_IFCHR: case S_IFBLK:
Al Virodae6ad82011-06-26 11:50:15 -04003685 error = vfs_mknod(path.dentry->d_inode,dentry,mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003686 new_decode_dev(dev));
3687 break;
3688 case S_IFIFO: case S_IFSOCK:
Al Virodae6ad82011-06-26 11:50:15 -04003689 error = vfs_mknod(path.dentry->d_inode,dentry,mode,0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003690 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003691 }
Al Viroa8104a92012-07-20 02:25:00 +04003692out:
Al Viro921a1652012-07-20 01:15:31 +04003693 done_path_create(&path, dentry);
Jeff Layton972567f2012-12-20 16:00:10 -05003694 if (retry_estale(error, lookup_flags)) {
3695 lookup_flags |= LOOKUP_REVAL;
3696 goto retry;
3697 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003698 return error;
3699}
3700
Al Viro8208a222011-07-25 17:32:17 -04003701SYSCALL_DEFINE3(mknod, const char __user *, filename, umode_t, mode, unsigned, dev)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003702{
3703 return sys_mknodat(AT_FDCWD, filename, mode, dev);
3704}
3705
Al Viro18bb1db2011-07-26 01:41:39 -04003706int vfs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003707{
Miklos Szeredia95164d2008-07-30 15:08:48 +02003708 int error = may_create(dir, dentry);
Al Viro8de52772012-02-06 12:45:27 -05003709 unsigned max_links = dir->i_sb->s_max_links;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003710
3711 if (error)
3712 return error;
3713
Al Viroacfa4382008-12-04 10:06:33 -05003714 if (!dir->i_op->mkdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003715 return -EPERM;
3716
3717 mode &= (S_IRWXUGO|S_ISVTX);
3718 error = security_inode_mkdir(dir, dentry, mode);
3719 if (error)
3720 return error;
3721
Al Viro8de52772012-02-06 12:45:27 -05003722 if (max_links && dir->i_nlink >= max_links)
3723 return -EMLINK;
3724
Linus Torvalds1da177e2005-04-16 15:20:36 -07003725 error = dir->i_op->mkdir(dir, dentry, mode);
Stephen Smalleya74574a2005-09-09 13:01:44 -07003726 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00003727 fsnotify_mkdir(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003728 return error;
3729}
Al Viro4d359502014-03-14 12:20:17 -04003730EXPORT_SYMBOL(vfs_mkdir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003731
Al Viroa218d0f2011-11-21 14:59:34 -05003732SYSCALL_DEFINE3(mkdirat, int, dfd, const char __user *, pathname, umode_t, mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003733{
Dave Hansen6902d922006-09-30 23:29:01 -07003734 struct dentry *dentry;
Al Virodae6ad82011-06-26 11:50:15 -04003735 struct path path;
3736 int error;
Jeff Laytonb76d8b82012-12-20 16:04:09 -05003737 unsigned int lookup_flags = LOOKUP_DIRECTORY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003738
Jeff Laytonb76d8b82012-12-20 16:04:09 -05003739retry:
3740 dentry = user_path_create(dfd, pathname, &path, lookup_flags);
Dave Hansen6902d922006-09-30 23:29:01 -07003741 if (IS_ERR(dentry))
Al Virodae6ad82011-06-26 11:50:15 -04003742 return PTR_ERR(dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07003743
Al Virodae6ad82011-06-26 11:50:15 -04003744 if (!IS_POSIXACL(path.dentry->d_inode))
Al Viroce3b0f82009-03-29 19:08:22 -04003745 mode &= ~current_umask();
Al Virodae6ad82011-06-26 11:50:15 -04003746 error = security_path_mkdir(&path, dentry, mode);
Al Viroa8104a92012-07-20 02:25:00 +04003747 if (!error)
3748 error = vfs_mkdir(path.dentry->d_inode, dentry, mode);
Al Viro921a1652012-07-20 01:15:31 +04003749 done_path_create(&path, dentry);
Jeff Laytonb76d8b82012-12-20 16:04:09 -05003750 if (retry_estale(error, lookup_flags)) {
3751 lookup_flags |= LOOKUP_REVAL;
3752 goto retry;
3753 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003754 return error;
3755}
3756
Al Viroa218d0f2011-11-21 14:59:34 -05003757SYSCALL_DEFINE2(mkdir, const char __user *, pathname, umode_t, mode)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003758{
3759 return sys_mkdirat(AT_FDCWD, pathname, mode);
3760}
3761
Linus Torvalds1da177e2005-04-16 15:20:36 -07003762int vfs_rmdir(struct inode *dir, struct dentry *dentry)
3763{
3764 int error = may_delete(dir, dentry, 1);
3765
3766 if (error)
3767 return error;
3768
Al Viroacfa4382008-12-04 10:06:33 -05003769 if (!dir->i_op->rmdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003770 return -EPERM;
3771
Al Viro1d2ef592011-09-14 18:55:41 +01003772 dget(dentry);
Al Viro59551022016-01-22 15:40:57 -05003773 inode_lock(dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003774
Sage Weil912dbc12011-05-24 13:06:11 -07003775 error = -EBUSY;
Eric W. Biederman7af13642013-10-04 19:15:13 -07003776 if (is_local_mountpoint(dentry))
Sage Weil912dbc12011-05-24 13:06:11 -07003777 goto out;
3778
3779 error = security_inode_rmdir(dir, dentry);
3780 if (error)
3781 goto out;
3782
Sage Weil3cebde22011-05-29 21:20:59 -07003783 shrink_dcache_parent(dentry);
Sage Weil912dbc12011-05-24 13:06:11 -07003784 error = dir->i_op->rmdir(dir, dentry);
3785 if (error)
3786 goto out;
3787
3788 dentry->d_inode->i_flags |= S_DEAD;
3789 dont_mount(dentry);
Eric W. Biederman8ed936b2013-10-01 18:33:48 -07003790 detach_mounts(dentry);
Sage Weil912dbc12011-05-24 13:06:11 -07003791
3792out:
Al Viro59551022016-01-22 15:40:57 -05003793 inode_unlock(dentry->d_inode);
Al Viro1d2ef592011-09-14 18:55:41 +01003794 dput(dentry);
Sage Weil912dbc12011-05-24 13:06:11 -07003795 if (!error)
3796 d_delete(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003797 return error;
3798}
Al Viro4d359502014-03-14 12:20:17 -04003799EXPORT_SYMBOL(vfs_rmdir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003800
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003801static long do_rmdir(int dfd, const char __user *pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003802{
3803 int error = 0;
Jeff Layton91a27b22012-10-10 15:25:28 -04003804 struct filename *name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003805 struct dentry *dentry;
Al Virof5beed72015-04-30 16:09:11 -04003806 struct path path;
3807 struct qstr last;
3808 int type;
Jeff Laytonc6ee9202012-12-20 16:28:33 -05003809 unsigned int lookup_flags = 0;
3810retry:
Al Virof5beed72015-04-30 16:09:11 -04003811 name = user_path_parent(dfd, pathname,
3812 &path, &last, &type, lookup_flags);
Jeff Layton91a27b22012-10-10 15:25:28 -04003813 if (IS_ERR(name))
3814 return PTR_ERR(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003815
Al Virof5beed72015-04-30 16:09:11 -04003816 switch (type) {
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003817 case LAST_DOTDOT:
3818 error = -ENOTEMPTY;
3819 goto exit1;
3820 case LAST_DOT:
3821 error = -EINVAL;
3822 goto exit1;
3823 case LAST_ROOT:
3824 error = -EBUSY;
3825 goto exit1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003826 }
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003827
Al Virof5beed72015-04-30 16:09:11 -04003828 error = mnt_want_write(path.mnt);
Jan Karac30dabf2012-06-12 16:20:30 +02003829 if (error)
3830 goto exit1;
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003831
Al Viro59551022016-01-22 15:40:57 -05003832 inode_lock_nested(path.dentry->d_inode, I_MUTEX_PARENT);
Al Virof5beed72015-04-30 16:09:11 -04003833 dentry = __lookup_hash(&last, path.dentry, lookup_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003834 error = PTR_ERR(dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07003835 if (IS_ERR(dentry))
3836 goto exit2;
Theodore Ts'oe6bc45d2011-06-06 19:19:40 -04003837 if (!dentry->d_inode) {
3838 error = -ENOENT;
3839 goto exit3;
3840 }
Al Virof5beed72015-04-30 16:09:11 -04003841 error = security_path_rmdir(&path, dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09003842 if (error)
Jan Karac30dabf2012-06-12 16:20:30 +02003843 goto exit3;
Al Virof5beed72015-04-30 16:09:11 -04003844 error = vfs_rmdir(path.dentry->d_inode, dentry);
Dave Hansen06227532008-02-15 14:37:34 -08003845exit3:
Dave Hansen6902d922006-09-30 23:29:01 -07003846 dput(dentry);
3847exit2:
Al Viro59551022016-01-22 15:40:57 -05003848 inode_unlock(path.dentry->d_inode);
Al Virof5beed72015-04-30 16:09:11 -04003849 mnt_drop_write(path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003850exit1:
Al Virof5beed72015-04-30 16:09:11 -04003851 path_put(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003852 putname(name);
Jeff Laytonc6ee9202012-12-20 16:28:33 -05003853 if (retry_estale(error, lookup_flags)) {
3854 lookup_flags |= LOOKUP_REVAL;
3855 goto retry;
3856 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003857 return error;
3858}
3859
Heiko Carstens3cdad422009-01-14 14:14:22 +01003860SYSCALL_DEFINE1(rmdir, const char __user *, pathname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003861{
3862 return do_rmdir(AT_FDCWD, pathname);
3863}
3864
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04003865/**
3866 * vfs_unlink - unlink a filesystem object
3867 * @dir: parent directory
3868 * @dentry: victim
3869 * @delegated_inode: returns victim inode, if the inode is delegated.
3870 *
3871 * The caller must hold dir->i_mutex.
3872 *
3873 * If vfs_unlink discovers a delegation, it will return -EWOULDBLOCK and
3874 * return a reference to the inode in delegated_inode. The caller
3875 * should then break the delegation on that inode and retry. Because
3876 * breaking a delegation may take a long time, the caller should drop
3877 * dir->i_mutex before doing so.
3878 *
3879 * Alternatively, a caller may pass NULL for delegated_inode. This may
3880 * be appropriate for callers that expect the underlying filesystem not
3881 * to be NFS exported.
3882 */
3883int vfs_unlink(struct inode *dir, struct dentry *dentry, struct inode **delegated_inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003884{
J. Bruce Fields9accbb92012-08-28 07:03:24 -04003885 struct inode *target = dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003886 int error = may_delete(dir, dentry, 0);
3887
3888 if (error)
3889 return error;
3890
Al Viroacfa4382008-12-04 10:06:33 -05003891 if (!dir->i_op->unlink)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003892 return -EPERM;
3893
Al Viro59551022016-01-22 15:40:57 -05003894 inode_lock(target);
Eric W. Biederman8ed936b2013-10-01 18:33:48 -07003895 if (is_local_mountpoint(dentry))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003896 error = -EBUSY;
3897 else {
3898 error = security_inode_unlink(dir, dentry);
Al Virobec10522010-03-03 14:12:08 -05003899 if (!error) {
J. Bruce Fields5a146962012-08-28 07:50:40 -07003900 error = try_break_deleg(target, delegated_inode);
3901 if (error)
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04003902 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003903 error = dir->i_op->unlink(dir, dentry);
Eric W. Biederman8ed936b2013-10-01 18:33:48 -07003904 if (!error) {
Al Virod83c49f2010-04-30 17:17:09 -04003905 dont_mount(dentry);
Eric W. Biederman8ed936b2013-10-01 18:33:48 -07003906 detach_mounts(dentry);
3907 }
Al Virobec10522010-03-03 14:12:08 -05003908 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003909 }
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04003910out:
Al Viro59551022016-01-22 15:40:57 -05003911 inode_unlock(target);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003912
3913 /* We don't d_delete() NFS sillyrenamed files--they still exist. */
3914 if (!error && !(dentry->d_flags & DCACHE_NFSFS_RENAMED)) {
J. Bruce Fields9accbb92012-08-28 07:03:24 -04003915 fsnotify_link_count(target);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003916 d_delete(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003917 }
Robert Love0eeca282005-07-12 17:06:03 -04003918
Linus Torvalds1da177e2005-04-16 15:20:36 -07003919 return error;
3920}
Al Viro4d359502014-03-14 12:20:17 -04003921EXPORT_SYMBOL(vfs_unlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003922
3923/*
3924 * Make sure that the actual truncation of the file will occur outside its
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003925 * directory's i_mutex. Truncate can take a long time if there is a lot of
Linus Torvalds1da177e2005-04-16 15:20:36 -07003926 * writeout happening, and we don't want to prevent access to the directory
3927 * while waiting on the I/O.
3928 */
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003929static long do_unlinkat(int dfd, const char __user *pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003930{
Al Viro2ad94ae2008-07-21 09:32:51 -04003931 int error;
Jeff Layton91a27b22012-10-10 15:25:28 -04003932 struct filename *name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003933 struct dentry *dentry;
Al Virof5beed72015-04-30 16:09:11 -04003934 struct path path;
3935 struct qstr last;
3936 int type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003937 struct inode *inode = NULL;
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04003938 struct inode *delegated_inode = NULL;
Jeff Layton5d18f812012-12-20 16:38:04 -05003939 unsigned int lookup_flags = 0;
3940retry:
Al Virof5beed72015-04-30 16:09:11 -04003941 name = user_path_parent(dfd, pathname,
3942 &path, &last, &type, lookup_flags);
Jeff Layton91a27b22012-10-10 15:25:28 -04003943 if (IS_ERR(name))
3944 return PTR_ERR(name);
Al Viro2ad94ae2008-07-21 09:32:51 -04003945
Linus Torvalds1da177e2005-04-16 15:20:36 -07003946 error = -EISDIR;
Al Virof5beed72015-04-30 16:09:11 -04003947 if (type != LAST_NORM)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003948 goto exit1;
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003949
Al Virof5beed72015-04-30 16:09:11 -04003950 error = mnt_want_write(path.mnt);
Jan Karac30dabf2012-06-12 16:20:30 +02003951 if (error)
3952 goto exit1;
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04003953retry_deleg:
Al Viro59551022016-01-22 15:40:57 -05003954 inode_lock_nested(path.dentry->d_inode, I_MUTEX_PARENT);
Al Virof5beed72015-04-30 16:09:11 -04003955 dentry = __lookup_hash(&last, path.dentry, lookup_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003956 error = PTR_ERR(dentry);
3957 if (!IS_ERR(dentry)) {
3958 /* Why not before? Because we want correct error value */
Al Virof5beed72015-04-30 16:09:11 -04003959 if (last.name[last.len])
Török Edwin50338b82011-06-16 00:06:14 +03003960 goto slashes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003961 inode = dentry->d_inode;
David Howellsb18825a2013-09-12 19:22:53 +01003962 if (d_is_negative(dentry))
Theodore Ts'oe6bc45d2011-06-06 19:19:40 -04003963 goto slashes;
3964 ihold(inode);
Al Virof5beed72015-04-30 16:09:11 -04003965 error = security_path_unlink(&path, dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09003966 if (error)
Jan Karac30dabf2012-06-12 16:20:30 +02003967 goto exit2;
Al Virof5beed72015-04-30 16:09:11 -04003968 error = vfs_unlink(path.dentry->d_inode, dentry, &delegated_inode);
Jan Karac30dabf2012-06-12 16:20:30 +02003969exit2:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003970 dput(dentry);
3971 }
Al Viro59551022016-01-22 15:40:57 -05003972 inode_unlock(path.dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003973 if (inode)
3974 iput(inode); /* truncate the inode here */
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04003975 inode = NULL;
3976 if (delegated_inode) {
J. Bruce Fields5a146962012-08-28 07:50:40 -07003977 error = break_deleg_wait(&delegated_inode);
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04003978 if (!error)
3979 goto retry_deleg;
3980 }
Al Virof5beed72015-04-30 16:09:11 -04003981 mnt_drop_write(path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003982exit1:
Al Virof5beed72015-04-30 16:09:11 -04003983 path_put(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003984 putname(name);
Jeff Layton5d18f812012-12-20 16:38:04 -05003985 if (retry_estale(error, lookup_flags)) {
3986 lookup_flags |= LOOKUP_REVAL;
3987 inode = NULL;
3988 goto retry;
3989 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003990 return error;
3991
3992slashes:
David Howellsb18825a2013-09-12 19:22:53 +01003993 if (d_is_negative(dentry))
3994 error = -ENOENT;
Miklos Szeredi44b1d532014-04-01 17:08:41 +02003995 else if (d_is_dir(dentry))
David Howellsb18825a2013-09-12 19:22:53 +01003996 error = -EISDIR;
3997 else
3998 error = -ENOTDIR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003999 goto exit2;
4000}
4001
Heiko Carstens2e4d0922009-01-14 14:14:31 +01004002SYSCALL_DEFINE3(unlinkat, int, dfd, const char __user *, pathname, int, flag)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08004003{
4004 if ((flag & ~AT_REMOVEDIR) != 0)
4005 return -EINVAL;
4006
4007 if (flag & AT_REMOVEDIR)
4008 return do_rmdir(dfd, pathname);
4009
4010 return do_unlinkat(dfd, pathname);
4011}
4012
Heiko Carstens3480b252009-01-14 14:14:16 +01004013SYSCALL_DEFINE1(unlink, const char __user *, pathname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08004014{
4015 return do_unlinkat(AT_FDCWD, pathname);
4016}
4017
Miklos Szeredidb2e7472008-06-24 16:50:16 +02004018int vfs_symlink(struct inode *dir, struct dentry *dentry, const char *oldname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004019{
Miklos Szeredia95164d2008-07-30 15:08:48 +02004020 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004021
4022 if (error)
4023 return error;
4024
Al Viroacfa4382008-12-04 10:06:33 -05004025 if (!dir->i_op->symlink)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004026 return -EPERM;
4027
4028 error = security_inode_symlink(dir, dentry, oldname);
4029 if (error)
4030 return error;
4031
Linus Torvalds1da177e2005-04-16 15:20:36 -07004032 error = dir->i_op->symlink(dir, dentry, oldname);
Stephen Smalleya74574a2005-09-09 13:01:44 -07004033 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00004034 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004035 return error;
4036}
Al Viro4d359502014-03-14 12:20:17 -04004037EXPORT_SYMBOL(vfs_symlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004038
Heiko Carstens2e4d0922009-01-14 14:14:31 +01004039SYSCALL_DEFINE3(symlinkat, const char __user *, oldname,
4040 int, newdfd, const char __user *, newname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004041{
Al Viro2ad94ae2008-07-21 09:32:51 -04004042 int error;
Jeff Layton91a27b22012-10-10 15:25:28 -04004043 struct filename *from;
Dave Hansen6902d922006-09-30 23:29:01 -07004044 struct dentry *dentry;
Al Virodae6ad82011-06-26 11:50:15 -04004045 struct path path;
Jeff Laytonf46d3562012-12-11 12:10:08 -05004046 unsigned int lookup_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004047
4048 from = getname(oldname);
Al Viro2ad94ae2008-07-21 09:32:51 -04004049 if (IS_ERR(from))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004050 return PTR_ERR(from);
Jeff Laytonf46d3562012-12-11 12:10:08 -05004051retry:
4052 dentry = user_path_create(newdfd, newname, &path, lookup_flags);
Dave Hansen6902d922006-09-30 23:29:01 -07004053 error = PTR_ERR(dentry);
4054 if (IS_ERR(dentry))
Al Virodae6ad82011-06-26 11:50:15 -04004055 goto out_putname;
Dave Hansen6902d922006-09-30 23:29:01 -07004056
Jeff Layton91a27b22012-10-10 15:25:28 -04004057 error = security_path_symlink(&path, dentry, from->name);
Al Viroa8104a92012-07-20 02:25:00 +04004058 if (!error)
Jeff Layton91a27b22012-10-10 15:25:28 -04004059 error = vfs_symlink(path.dentry->d_inode, dentry, from->name);
Al Viro921a1652012-07-20 01:15:31 +04004060 done_path_create(&path, dentry);
Jeff Laytonf46d3562012-12-11 12:10:08 -05004061 if (retry_estale(error, lookup_flags)) {
4062 lookup_flags |= LOOKUP_REVAL;
4063 goto retry;
4064 }
Dave Hansen6902d922006-09-30 23:29:01 -07004065out_putname:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004066 putname(from);
4067 return error;
4068}
4069
Heiko Carstens3480b252009-01-14 14:14:16 +01004070SYSCALL_DEFINE2(symlink, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08004071{
4072 return sys_symlinkat(oldname, AT_FDCWD, newname);
4073}
4074
J. Bruce Fields146a8592011-09-20 17:14:31 -04004075/**
4076 * vfs_link - create a new link
4077 * @old_dentry: object to be linked
4078 * @dir: new parent
4079 * @new_dentry: where to create the new link
4080 * @delegated_inode: returns inode needing a delegation break
4081 *
4082 * The caller must hold dir->i_mutex
4083 *
4084 * If vfs_link discovers a delegation on the to-be-linked file in need
4085 * of breaking, it will return -EWOULDBLOCK and return a reference to the
4086 * inode in delegated_inode. The caller should then break the delegation
4087 * and retry. Because breaking a delegation may take a long time, the
4088 * caller should drop the i_mutex before doing so.
4089 *
4090 * Alternatively, a caller may pass NULL for delegated_inode. This may
4091 * be appropriate for callers that expect the underlying filesystem not
4092 * to be NFS exported.
4093 */
4094int vfs_link(struct dentry *old_dentry, struct inode *dir, struct dentry *new_dentry, struct inode **delegated_inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004095{
4096 struct inode *inode = old_dentry->d_inode;
Al Viro8de52772012-02-06 12:45:27 -05004097 unsigned max_links = dir->i_sb->s_max_links;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004098 int error;
4099
4100 if (!inode)
4101 return -ENOENT;
4102
Miklos Szeredia95164d2008-07-30 15:08:48 +02004103 error = may_create(dir, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004104 if (error)
4105 return error;
4106
4107 if (dir->i_sb != inode->i_sb)
4108 return -EXDEV;
4109
4110 /*
4111 * A link to an append-only or immutable file cannot be created.
4112 */
4113 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
4114 return -EPERM;
Al Viroacfa4382008-12-04 10:06:33 -05004115 if (!dir->i_op->link)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004116 return -EPERM;
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02004117 if (S_ISDIR(inode->i_mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004118 return -EPERM;
4119
4120 error = security_inode_link(old_dentry, dir, new_dentry);
4121 if (error)
4122 return error;
4123
Al Viro59551022016-01-22 15:40:57 -05004124 inode_lock(inode);
Aneesh Kumar K.Vaae8a972011-01-29 18:43:27 +05304125 /* Make sure we don't allow creating hardlink to an unlinked file */
Al Virof4e0c302013-06-11 08:34:36 +04004126 if (inode->i_nlink == 0 && !(inode->i_state & I_LINKABLE))
Aneesh Kumar K.Vaae8a972011-01-29 18:43:27 +05304127 error = -ENOENT;
Al Viro8de52772012-02-06 12:45:27 -05004128 else if (max_links && inode->i_nlink >= max_links)
4129 error = -EMLINK;
J. Bruce Fields146a8592011-09-20 17:14:31 -04004130 else {
4131 error = try_break_deleg(inode, delegated_inode);
4132 if (!error)
4133 error = dir->i_op->link(old_dentry, dir, new_dentry);
4134 }
Al Virof4e0c302013-06-11 08:34:36 +04004135
4136 if (!error && (inode->i_state & I_LINKABLE)) {
4137 spin_lock(&inode->i_lock);
4138 inode->i_state &= ~I_LINKABLE;
4139 spin_unlock(&inode->i_lock);
4140 }
Al Viro59551022016-01-22 15:40:57 -05004141 inode_unlock(inode);
Stephen Smalleye31e14e2005-09-09 13:01:45 -07004142 if (!error)
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02004143 fsnotify_link(dir, inode, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004144 return error;
4145}
Al Viro4d359502014-03-14 12:20:17 -04004146EXPORT_SYMBOL(vfs_link);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004147
4148/*
4149 * Hardlinks are often used in delicate situations. We avoid
4150 * security-related surprises by not following symlinks on the
4151 * newname. --KAB
4152 *
4153 * We don't follow them on the oldname either to be compatible
4154 * with linux 2.0, and to avoid hard-linking to directories
4155 * and other special files. --ADM
4156 */
Heiko Carstens2e4d0922009-01-14 14:14:31 +01004157SYSCALL_DEFINE5(linkat, int, olddfd, const char __user *, oldname,
4158 int, newdfd, const char __user *, newname, int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004159{
4160 struct dentry *new_dentry;
Al Virodae6ad82011-06-26 11:50:15 -04004161 struct path old_path, new_path;
J. Bruce Fields146a8592011-09-20 17:14:31 -04004162 struct inode *delegated_inode = NULL;
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05304163 int how = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004164 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004165
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05304166 if ((flags & ~(AT_SYMLINK_FOLLOW | AT_EMPTY_PATH)) != 0)
Ulrich Drepperc04030e2006-02-24 13:04:21 -08004167 return -EINVAL;
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05304168 /*
Linus Torvaldsf0cc6ff2013-08-28 09:18:05 -07004169 * To use null names we require CAP_DAC_READ_SEARCH
4170 * This ensures that not everyone will be able to create
4171 * handlink using the passed filedescriptor.
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05304172 */
Linus Torvaldsf0cc6ff2013-08-28 09:18:05 -07004173 if (flags & AT_EMPTY_PATH) {
4174 if (!capable(CAP_DAC_READ_SEARCH))
4175 return -ENOENT;
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05304176 how = LOOKUP_EMPTY;
Linus Torvaldsf0cc6ff2013-08-28 09:18:05 -07004177 }
Ulrich Drepperc04030e2006-02-24 13:04:21 -08004178
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05304179 if (flags & AT_SYMLINK_FOLLOW)
4180 how |= LOOKUP_FOLLOW;
Jeff Layton442e31c2012-12-20 16:15:38 -05004181retry:
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05304182 error = user_path_at(olddfd, oldname, how, &old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004183 if (error)
Al Viro2ad94ae2008-07-21 09:32:51 -04004184 return error;
4185
Jeff Layton442e31c2012-12-20 16:15:38 -05004186 new_dentry = user_path_create(newdfd, newname, &new_path,
4187 (how & LOOKUP_REVAL));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004188 error = PTR_ERR(new_dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07004189 if (IS_ERR(new_dentry))
Al Virodae6ad82011-06-26 11:50:15 -04004190 goto out;
4191
4192 error = -EXDEV;
4193 if (old_path.mnt != new_path.mnt)
4194 goto out_dput;
Kees Cook800179c2012-07-25 17:29:07 -07004195 error = may_linkat(&old_path);
4196 if (unlikely(error))
4197 goto out_dput;
Al Virodae6ad82011-06-26 11:50:15 -04004198 error = security_path_link(old_path.dentry, &new_path, new_dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09004199 if (error)
Al Viroa8104a92012-07-20 02:25:00 +04004200 goto out_dput;
J. Bruce Fields146a8592011-09-20 17:14:31 -04004201 error = vfs_link(old_path.dentry, new_path.dentry->d_inode, new_dentry, &delegated_inode);
Dave Hansen75c3f292008-02-15 14:37:45 -08004202out_dput:
Al Viro921a1652012-07-20 01:15:31 +04004203 done_path_create(&new_path, new_dentry);
J. Bruce Fields146a8592011-09-20 17:14:31 -04004204 if (delegated_inode) {
4205 error = break_deleg_wait(&delegated_inode);
Oleg Drokind22e6332014-01-31 15:41:58 -05004206 if (!error) {
4207 path_put(&old_path);
J. Bruce Fields146a8592011-09-20 17:14:31 -04004208 goto retry;
Oleg Drokind22e6332014-01-31 15:41:58 -05004209 }
J. Bruce Fields146a8592011-09-20 17:14:31 -04004210 }
Jeff Layton442e31c2012-12-20 16:15:38 -05004211 if (retry_estale(error, how)) {
Oleg Drokind22e6332014-01-31 15:41:58 -05004212 path_put(&old_path);
Jeff Layton442e31c2012-12-20 16:15:38 -05004213 how |= LOOKUP_REVAL;
4214 goto retry;
4215 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004216out:
Al Viro2d8f3032008-07-22 09:59:21 -04004217 path_put(&old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004218
4219 return error;
4220}
4221
Heiko Carstens3480b252009-01-14 14:14:16 +01004222SYSCALL_DEFINE2(link, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08004223{
Ulrich Drepperc04030e2006-02-24 13:04:21 -08004224 return sys_linkat(AT_FDCWD, oldname, AT_FDCWD, newname, 0);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08004225}
4226
Miklos Szeredibc270272014-04-01 17:08:42 +02004227/**
4228 * vfs_rename - rename a filesystem object
4229 * @old_dir: parent of source
4230 * @old_dentry: source
4231 * @new_dir: parent of destination
4232 * @new_dentry: destination
4233 * @delegated_inode: returns an inode needing a delegation break
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004234 * @flags: rename flags
Miklos Szeredibc270272014-04-01 17:08:42 +02004235 *
4236 * The caller must hold multiple mutexes--see lock_rename()).
4237 *
4238 * If vfs_rename discovers a delegation in need of breaking at either
4239 * the source or destination, it will return -EWOULDBLOCK and return a
4240 * reference to the inode in delegated_inode. The caller should then
4241 * break the delegation and retry. Because breaking a delegation may
4242 * take a long time, the caller should drop all locks before doing
4243 * so.
4244 *
4245 * Alternatively, a caller may pass NULL for delegated_inode. This may
4246 * be appropriate for callers that expect the underlying filesystem not
4247 * to be NFS exported.
4248 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004249 * The worst of all namespace operations - renaming directory. "Perverted"
4250 * doesn't even start to describe it. Somebody in UCB had a heck of a trip...
4251 * Problems:
J. Bruce Fieldsd03b29a2014-02-17 16:52:33 -05004252 * a) we can get into loop creation.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004253 * b) race potential - two innocent renames can create a loop together.
4254 * That's where 4.4 screws up. Current fix: serialization on
Arjan van de Vena11f3a02006-03-23 03:00:33 -08004255 * sb->s_vfs_rename_mutex. We might be more accurate, but that's another
Linus Torvalds1da177e2005-04-16 15:20:36 -07004256 * story.
J. Bruce Fields6cedba82012-03-05 11:40:41 -05004257 * c) we have to lock _four_ objects - parents and victim (if it exists),
4258 * and source (if it is not a directory).
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08004259 * And that - after we got ->i_mutex on parents (until then we don't know
Linus Torvalds1da177e2005-04-16 15:20:36 -07004260 * whether the target exists). Solution: try to be smart with locking
4261 * order for inodes. We rely on the fact that tree topology may change
Arjan van de Vena11f3a02006-03-23 03:00:33 -08004262 * only under ->s_vfs_rename_mutex _and_ that parent of the object we
Linus Torvalds1da177e2005-04-16 15:20:36 -07004263 * move will be locked. Thus we can rank directories by the tree
4264 * (ancestors first) and rank all non-directories after them.
4265 * That works since everybody except rename does "lock parent, lookup,
Arjan van de Vena11f3a02006-03-23 03:00:33 -08004266 * lock child" and rename is under ->s_vfs_rename_mutex.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004267 * HOWEVER, it relies on the assumption that any object with ->lookup()
4268 * has no more than 1 dentry. If "hybrid" objects will ever appear,
4269 * we'd better make sure that there's no link(2) for them.
Sage Weile4eaac02011-05-24 13:06:07 -07004270 * d) conversion from fhandle to dentry may come in the wrong moment - when
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08004271 * we are removing the target. Solution: we will have to grab ->i_mutex
Linus Torvalds1da177e2005-04-16 15:20:36 -07004272 * in the fhandle_to_dentry code. [FIXME - current nfsfh.c relies on
Adam Buchbinderc41b20e2009-12-11 16:35:39 -05004273 * ->i_mutex on parents, which works but leads to some truly excessive
Linus Torvalds1da177e2005-04-16 15:20:36 -07004274 * locking].
4275 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004276int vfs_rename(struct inode *old_dir, struct dentry *old_dentry,
J. Bruce Fields8e6d7822011-09-20 16:59:58 -04004277 struct inode *new_dir, struct dentry *new_dentry,
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004278 struct inode **delegated_inode, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004279{
4280 int error;
Miklos Szeredibc270272014-04-01 17:08:42 +02004281 bool is_dir = d_is_dir(old_dentry);
Eric Paris59b0df22010-02-08 12:53:52 -05004282 const unsigned char *old_name;
Miklos Szeredibc270272014-04-01 17:08:42 +02004283 struct inode *source = old_dentry->d_inode;
4284 struct inode *target = new_dentry->d_inode;
Miklos Szeredida1ce062014-04-01 17:08:43 +02004285 bool new_is_dir = false;
4286 unsigned max_links = new_dir->i_sb->s_max_links;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004287
Miklos Szeredi9409e222016-05-11 01:16:37 +02004288 /*
4289 * Check source == target.
4290 * On overlayfs need to look at underlying inodes.
4291 */
4292 if (vfs_select_inode(old_dentry, 0) == vfs_select_inode(new_dentry, 0))
Miklos Szeredibc270272014-04-01 17:08:42 +02004293 return 0;
4294
Linus Torvalds1da177e2005-04-16 15:20:36 -07004295 error = may_delete(old_dir, old_dentry, is_dir);
4296 if (error)
4297 return error;
4298
Miklos Szeredida1ce062014-04-01 17:08:43 +02004299 if (!target) {
Miklos Szeredia95164d2008-07-30 15:08:48 +02004300 error = may_create(new_dir, new_dentry);
Miklos Szeredida1ce062014-04-01 17:08:43 +02004301 } else {
4302 new_is_dir = d_is_dir(new_dentry);
4303
4304 if (!(flags & RENAME_EXCHANGE))
4305 error = may_delete(new_dir, new_dentry, is_dir);
4306 else
4307 error = may_delete(new_dir, new_dentry, new_is_dir);
4308 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004309 if (error)
4310 return error;
4311
Miklos Szeredi7177a9c2014-07-23 15:15:30 +02004312 if (!old_dir->i_op->rename && !old_dir->i_op->rename2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004313 return -EPERM;
4314
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004315 if (flags && !old_dir->i_op->rename2)
4316 return -EINVAL;
4317
Miklos Szeredibc270272014-04-01 17:08:42 +02004318 /*
4319 * If we are going to change the parent - check write permissions,
4320 * we'll need to flip '..'.
4321 */
Miklos Szeredida1ce062014-04-01 17:08:43 +02004322 if (new_dir != old_dir) {
4323 if (is_dir) {
4324 error = inode_permission(source, MAY_WRITE);
4325 if (error)
4326 return error;
4327 }
4328 if ((flags & RENAME_EXCHANGE) && new_is_dir) {
4329 error = inode_permission(target, MAY_WRITE);
4330 if (error)
4331 return error;
4332 }
Miklos Szeredibc270272014-04-01 17:08:42 +02004333 }
Robert Love0eeca282005-07-12 17:06:03 -04004334
Miklos Szeredi0b3974e2014-04-01 17:08:43 +02004335 error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry,
4336 flags);
Miklos Szeredibc270272014-04-01 17:08:42 +02004337 if (error)
4338 return error;
4339
4340 old_name = fsnotify_oldname_init(old_dentry->d_name.name);
4341 dget(new_dentry);
Miklos Szeredida1ce062014-04-01 17:08:43 +02004342 if (!is_dir || (flags & RENAME_EXCHANGE))
Miklos Szeredibc270272014-04-01 17:08:42 +02004343 lock_two_nondirectories(source, target);
4344 else if (target)
Al Viro59551022016-01-22 15:40:57 -05004345 inode_lock(target);
Miklos Szeredibc270272014-04-01 17:08:42 +02004346
4347 error = -EBUSY;
Eric W. Biederman7af13642013-10-04 19:15:13 -07004348 if (is_local_mountpoint(old_dentry) || is_local_mountpoint(new_dentry))
Miklos Szeredibc270272014-04-01 17:08:42 +02004349 goto out;
4350
Miklos Szeredida1ce062014-04-01 17:08:43 +02004351 if (max_links && new_dir != old_dir) {
Miklos Szeredibc270272014-04-01 17:08:42 +02004352 error = -EMLINK;
Miklos Szeredida1ce062014-04-01 17:08:43 +02004353 if (is_dir && !new_is_dir && new_dir->i_nlink >= max_links)
Miklos Szeredibc270272014-04-01 17:08:42 +02004354 goto out;
Miklos Szeredida1ce062014-04-01 17:08:43 +02004355 if ((flags & RENAME_EXCHANGE) && !is_dir && new_is_dir &&
4356 old_dir->i_nlink >= max_links)
4357 goto out;
4358 }
4359 if (is_dir && !(flags & RENAME_EXCHANGE) && target)
4360 shrink_dcache_parent(new_dentry);
4361 if (!is_dir) {
Miklos Szeredibc270272014-04-01 17:08:42 +02004362 error = try_break_deleg(source, delegated_inode);
4363 if (error)
4364 goto out;
Miklos Szeredida1ce062014-04-01 17:08:43 +02004365 }
4366 if (target && !new_is_dir) {
4367 error = try_break_deleg(target, delegated_inode);
4368 if (error)
4369 goto out;
Miklos Szeredibc270272014-04-01 17:08:42 +02004370 }
Miklos Szeredi7177a9c2014-07-23 15:15:30 +02004371 if (!old_dir->i_op->rename2) {
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004372 error = old_dir->i_op->rename(old_dir, old_dentry,
4373 new_dir, new_dentry);
4374 } else {
Miklos Szeredi7177a9c2014-07-23 15:15:30 +02004375 WARN_ON(old_dir->i_op->rename != NULL);
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004376 error = old_dir->i_op->rename2(old_dir, old_dentry,
4377 new_dir, new_dentry, flags);
4378 }
Miklos Szeredibc270272014-04-01 17:08:42 +02004379 if (error)
4380 goto out;
4381
Miklos Szeredida1ce062014-04-01 17:08:43 +02004382 if (!(flags & RENAME_EXCHANGE) && target) {
Miklos Szeredibc270272014-04-01 17:08:42 +02004383 if (is_dir)
4384 target->i_flags |= S_DEAD;
4385 dont_mount(new_dentry);
Eric W. Biederman8ed936b2013-10-01 18:33:48 -07004386 detach_mounts(new_dentry);
Miklos Szeredibc270272014-04-01 17:08:42 +02004387 }
Miklos Szeredida1ce062014-04-01 17:08:43 +02004388 if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE)) {
4389 if (!(flags & RENAME_EXCHANGE))
4390 d_move(old_dentry, new_dentry);
4391 else
4392 d_exchange(old_dentry, new_dentry);
4393 }
Miklos Szeredibc270272014-04-01 17:08:42 +02004394out:
Miklos Szeredida1ce062014-04-01 17:08:43 +02004395 if (!is_dir || (flags & RENAME_EXCHANGE))
Miklos Szeredibc270272014-04-01 17:08:42 +02004396 unlock_two_nondirectories(source, target);
4397 else if (target)
Al Viro59551022016-01-22 15:40:57 -05004398 inode_unlock(target);
Miklos Szeredibc270272014-04-01 17:08:42 +02004399 dput(new_dentry);
Miklos Szeredida1ce062014-04-01 17:08:43 +02004400 if (!error) {
Al Viro123df292009-12-25 04:57:57 -05004401 fsnotify_move(old_dir, new_dir, old_name, is_dir,
Miklos Szeredida1ce062014-04-01 17:08:43 +02004402 !(flags & RENAME_EXCHANGE) ? target : NULL, old_dentry);
4403 if (flags & RENAME_EXCHANGE) {
4404 fsnotify_move(new_dir, old_dir, old_dentry->d_name.name,
4405 new_is_dir, NULL, new_dentry);
4406 }
4407 }
Robert Love0eeca282005-07-12 17:06:03 -04004408 fsnotify_oldname_free(old_name);
4409
Linus Torvalds1da177e2005-04-16 15:20:36 -07004410 return error;
4411}
Al Viro4d359502014-03-14 12:20:17 -04004412EXPORT_SYMBOL(vfs_rename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004413
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004414SYSCALL_DEFINE5(renameat2, int, olddfd, const char __user *, oldname,
4415 int, newdfd, const char __user *, newname, unsigned int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004416{
Al Viro2ad94ae2008-07-21 09:32:51 -04004417 struct dentry *old_dentry, *new_dentry;
4418 struct dentry *trap;
Al Virof5beed72015-04-30 16:09:11 -04004419 struct path old_path, new_path;
4420 struct qstr old_last, new_last;
4421 int old_type, new_type;
J. Bruce Fields8e6d7822011-09-20 16:59:58 -04004422 struct inode *delegated_inode = NULL;
Jeff Layton91a27b22012-10-10 15:25:28 -04004423 struct filename *from;
4424 struct filename *to;
Al Virof5beed72015-04-30 16:09:11 -04004425 unsigned int lookup_flags = 0, target_flags = LOOKUP_RENAME_TARGET;
Jeff Laytonc6a94282012-12-11 12:10:10 -05004426 bool should_retry = false;
Al Viro2ad94ae2008-07-21 09:32:51 -04004427 int error;
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004428
Miklos Szeredi0d7a8552014-10-24 00:14:37 +02004429 if (flags & ~(RENAME_NOREPLACE | RENAME_EXCHANGE | RENAME_WHITEOUT))
Miklos Szeredida1ce062014-04-01 17:08:43 +02004430 return -EINVAL;
4431
Miklos Szeredi0d7a8552014-10-24 00:14:37 +02004432 if ((flags & (RENAME_NOREPLACE | RENAME_WHITEOUT)) &&
4433 (flags & RENAME_EXCHANGE))
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004434 return -EINVAL;
4435
Miklos Szeredi0d7a8552014-10-24 00:14:37 +02004436 if ((flags & RENAME_WHITEOUT) && !capable(CAP_MKNOD))
4437 return -EPERM;
4438
Al Virof5beed72015-04-30 16:09:11 -04004439 if (flags & RENAME_EXCHANGE)
4440 target_flags = 0;
4441
Jeff Laytonc6a94282012-12-11 12:10:10 -05004442retry:
Al Virof5beed72015-04-30 16:09:11 -04004443 from = user_path_parent(olddfd, oldname,
4444 &old_path, &old_last, &old_type, lookup_flags);
Jeff Layton91a27b22012-10-10 15:25:28 -04004445 if (IS_ERR(from)) {
4446 error = PTR_ERR(from);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004447 goto exit;
Jeff Layton91a27b22012-10-10 15:25:28 -04004448 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004449
Al Virof5beed72015-04-30 16:09:11 -04004450 to = user_path_parent(newdfd, newname,
4451 &new_path, &new_last, &new_type, lookup_flags);
Jeff Layton91a27b22012-10-10 15:25:28 -04004452 if (IS_ERR(to)) {
4453 error = PTR_ERR(to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004454 goto exit1;
Jeff Layton91a27b22012-10-10 15:25:28 -04004455 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004456
4457 error = -EXDEV;
Al Virof5beed72015-04-30 16:09:11 -04004458 if (old_path.mnt != new_path.mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004459 goto exit2;
4460
Linus Torvalds1da177e2005-04-16 15:20:36 -07004461 error = -EBUSY;
Al Virof5beed72015-04-30 16:09:11 -04004462 if (old_type != LAST_NORM)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004463 goto exit2;
4464
Miklos Szeredi0a7c3932014-04-01 17:08:43 +02004465 if (flags & RENAME_NOREPLACE)
4466 error = -EEXIST;
Al Virof5beed72015-04-30 16:09:11 -04004467 if (new_type != LAST_NORM)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004468 goto exit2;
4469
Al Virof5beed72015-04-30 16:09:11 -04004470 error = mnt_want_write(old_path.mnt);
Jan Karac30dabf2012-06-12 16:20:30 +02004471 if (error)
4472 goto exit2;
4473
J. Bruce Fields8e6d7822011-09-20 16:59:58 -04004474retry_deleg:
Al Virof5beed72015-04-30 16:09:11 -04004475 trap = lock_rename(new_path.dentry, old_path.dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004476
Al Virof5beed72015-04-30 16:09:11 -04004477 old_dentry = __lookup_hash(&old_last, old_path.dentry, lookup_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004478 error = PTR_ERR(old_dentry);
4479 if (IS_ERR(old_dentry))
4480 goto exit3;
4481 /* source must exist */
4482 error = -ENOENT;
David Howellsb18825a2013-09-12 19:22:53 +01004483 if (d_is_negative(old_dentry))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004484 goto exit4;
Al Virof5beed72015-04-30 16:09:11 -04004485 new_dentry = __lookup_hash(&new_last, new_path.dentry, lookup_flags | target_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004486 error = PTR_ERR(new_dentry);
4487 if (IS_ERR(new_dentry))
4488 goto exit4;
Miklos Szeredi0a7c3932014-04-01 17:08:43 +02004489 error = -EEXIST;
4490 if ((flags & RENAME_NOREPLACE) && d_is_positive(new_dentry))
4491 goto exit5;
Miklos Szeredida1ce062014-04-01 17:08:43 +02004492 if (flags & RENAME_EXCHANGE) {
4493 error = -ENOENT;
4494 if (d_is_negative(new_dentry))
4495 goto exit5;
4496
4497 if (!d_is_dir(new_dentry)) {
4498 error = -ENOTDIR;
Al Virof5beed72015-04-30 16:09:11 -04004499 if (new_last.name[new_last.len])
Miklos Szeredida1ce062014-04-01 17:08:43 +02004500 goto exit5;
4501 }
4502 }
Miklos Szeredi0a7c3932014-04-01 17:08:43 +02004503 /* unless the source is a directory trailing slashes give -ENOTDIR */
4504 if (!d_is_dir(old_dentry)) {
4505 error = -ENOTDIR;
Al Virof5beed72015-04-30 16:09:11 -04004506 if (old_last.name[old_last.len])
Miklos Szeredi0a7c3932014-04-01 17:08:43 +02004507 goto exit5;
Al Virof5beed72015-04-30 16:09:11 -04004508 if (!(flags & RENAME_EXCHANGE) && new_last.name[new_last.len])
Miklos Szeredi0a7c3932014-04-01 17:08:43 +02004509 goto exit5;
4510 }
4511 /* source should not be ancestor of target */
4512 error = -EINVAL;
4513 if (old_dentry == trap)
4514 goto exit5;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004515 /* target should not be an ancestor of source */
Miklos Szeredida1ce062014-04-01 17:08:43 +02004516 if (!(flags & RENAME_EXCHANGE))
4517 error = -ENOTEMPTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004518 if (new_dentry == trap)
4519 goto exit5;
4520
Al Virof5beed72015-04-30 16:09:11 -04004521 error = security_path_rename(&old_path, old_dentry,
4522 &new_path, new_dentry, flags);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09004523 if (error)
Jan Karac30dabf2012-06-12 16:20:30 +02004524 goto exit5;
Al Virof5beed72015-04-30 16:09:11 -04004525 error = vfs_rename(old_path.dentry->d_inode, old_dentry,
4526 new_path.dentry->d_inode, new_dentry,
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004527 &delegated_inode, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004528exit5:
4529 dput(new_dentry);
4530exit4:
4531 dput(old_dentry);
4532exit3:
Al Virof5beed72015-04-30 16:09:11 -04004533 unlock_rename(new_path.dentry, old_path.dentry);
J. Bruce Fields8e6d7822011-09-20 16:59:58 -04004534 if (delegated_inode) {
4535 error = break_deleg_wait(&delegated_inode);
4536 if (!error)
4537 goto retry_deleg;
4538 }
Al Virof5beed72015-04-30 16:09:11 -04004539 mnt_drop_write(old_path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004540exit2:
Jeff Laytonc6a94282012-12-11 12:10:10 -05004541 if (retry_estale(error, lookup_flags))
4542 should_retry = true;
Al Virof5beed72015-04-30 16:09:11 -04004543 path_put(&new_path);
Al Viro2ad94ae2008-07-21 09:32:51 -04004544 putname(to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004545exit1:
Al Virof5beed72015-04-30 16:09:11 -04004546 path_put(&old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004547 putname(from);
Jeff Laytonc6a94282012-12-11 12:10:10 -05004548 if (should_retry) {
4549 should_retry = false;
4550 lookup_flags |= LOOKUP_REVAL;
4551 goto retry;
4552 }
Al Viro2ad94ae2008-07-21 09:32:51 -04004553exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004554 return error;
4555}
4556
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004557SYSCALL_DEFINE4(renameat, int, olddfd, const char __user *, oldname,
4558 int, newdfd, const char __user *, newname)
4559{
4560 return sys_renameat2(olddfd, oldname, newdfd, newname, 0);
4561}
4562
Heiko Carstensa26eab22009-01-14 14:14:17 +01004563SYSCALL_DEFINE2(rename, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08004564{
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004565 return sys_renameat2(AT_FDCWD, oldname, AT_FDCWD, newname, 0);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08004566}
4567
Miklos Szeredi787fb6b2014-10-24 00:14:36 +02004568int vfs_whiteout(struct inode *dir, struct dentry *dentry)
4569{
4570 int error = may_create(dir, dentry);
4571 if (error)
4572 return error;
4573
4574 if (!dir->i_op->mknod)
4575 return -EPERM;
4576
4577 return dir->i_op->mknod(dir, dentry,
4578 S_IFCHR | WHITEOUT_MODE, WHITEOUT_DEV);
4579}
4580EXPORT_SYMBOL(vfs_whiteout);
4581
Al Viro5d826c82014-03-14 13:42:45 -04004582int readlink_copy(char __user *buffer, int buflen, const char *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004583{
Al Viro5d826c82014-03-14 13:42:45 -04004584 int len = PTR_ERR(link);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004585 if (IS_ERR(link))
4586 goto out;
4587
4588 len = strlen(link);
4589 if (len > (unsigned) buflen)
4590 len = buflen;
4591 if (copy_to_user(buffer, link, len))
4592 len = -EFAULT;
4593out:
4594 return len;
4595}
4596
4597/*
4598 * A helper for ->readlink(). This should be used *ONLY* for symlinks that
Al Viro6b255392015-11-17 10:20:54 -05004599 * have ->get_link() not calling nd_jump_link(). Using (or not using) it
4600 * for any given inode is up to filesystem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004601 */
4602int generic_readlink(struct dentry *dentry, char __user *buffer, int buflen)
4603{
Al Virofceef392015-12-29 15:58:39 -05004604 DEFINE_DELAYED_CALL(done);
Al Viro5f2c4172015-05-07 11:14:26 -04004605 struct inode *inode = d_inode(dentry);
4606 const char *link = inode->i_link;
Marcin Slusarz694a1762008-06-09 16:40:37 -07004607 int res;
Linus Torvaldscc314ee2005-08-19 18:02:56 -07004608
Al Virod4dee482015-04-30 20:08:02 -04004609 if (!link) {
Al Virofceef392015-12-29 15:58:39 -05004610 link = inode->i_op->get_link(dentry, inode, &done);
Al Virod4dee482015-04-30 20:08:02 -04004611 if (IS_ERR(link))
4612 return PTR_ERR(link);
4613 }
Al Viro680baac2015-05-02 13:32:22 -04004614 res = readlink_copy(buffer, buflen, link);
Al Virofceef392015-12-29 15:58:39 -05004615 do_delayed_call(&done);
Marcin Slusarz694a1762008-06-09 16:40:37 -07004616 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004617}
Al Viro4d359502014-03-14 12:20:17 -04004618EXPORT_SYMBOL(generic_readlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004619
Linus Torvalds1da177e2005-04-16 15:20:36 -07004620/* get the link contents into pagecache */
Al Viro6b255392015-11-17 10:20:54 -05004621const char *page_get_link(struct dentry *dentry, struct inode *inode,
Al Virofceef392015-12-29 15:58:39 -05004622 struct delayed_call *callback)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004623{
Duane Griffinebd09ab2008-12-19 20:47:12 +00004624 char *kaddr;
4625 struct page *page;
Al Viro6b255392015-11-17 10:20:54 -05004626 struct address_space *mapping = inode->i_mapping;
4627
Al Virod3883d42015-11-17 10:41:04 -05004628 if (!dentry) {
4629 page = find_get_page(mapping, 0);
4630 if (!page)
4631 return ERR_PTR(-ECHILD);
4632 if (!PageUptodate(page)) {
4633 put_page(page);
4634 return ERR_PTR(-ECHILD);
4635 }
4636 } else {
4637 page = read_mapping_page(mapping, 0, NULL);
4638 if (IS_ERR(page))
4639 return (char*)page;
4640 }
Al Virofceef392015-12-29 15:58:39 -05004641 set_delayed_call(callback, page_put_link, page);
Al Viro21fc61c2015-11-17 01:07:57 -05004642 BUG_ON(mapping_gfp_mask(mapping) & __GFP_HIGHMEM);
4643 kaddr = page_address(page);
Al Viro6b255392015-11-17 10:20:54 -05004644 nd_terminate_link(kaddr, inode->i_size, PAGE_SIZE - 1);
Duane Griffinebd09ab2008-12-19 20:47:12 +00004645 return kaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004646}
4647
Al Viro6b255392015-11-17 10:20:54 -05004648EXPORT_SYMBOL(page_get_link);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004649
Al Virofceef392015-12-29 15:58:39 -05004650void page_put_link(void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004651{
Al Virofceef392015-12-29 15:58:39 -05004652 put_page(arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004653}
Al Viro4d359502014-03-14 12:20:17 -04004654EXPORT_SYMBOL(page_put_link);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004655
Al Viroaa80dea2015-11-16 18:26:34 -05004656int page_readlink(struct dentry *dentry, char __user *buffer, int buflen)
4657{
Al Virofceef392015-12-29 15:58:39 -05004658 DEFINE_DELAYED_CALL(done);
Al Viro6b255392015-11-17 10:20:54 -05004659 int res = readlink_copy(buffer, buflen,
4660 page_get_link(dentry, d_inode(dentry),
Al Virofceef392015-12-29 15:58:39 -05004661 &done));
4662 do_delayed_call(&done);
Al Viroaa80dea2015-11-16 18:26:34 -05004663 return res;
4664}
4665EXPORT_SYMBOL(page_readlink);
4666
Nick Piggin54566b22009-01-04 12:00:53 -08004667/*
4668 * The nofs argument instructs pagecache_write_begin to pass AOP_FLAG_NOFS
4669 */
4670int __page_symlink(struct inode *inode, const char *symname, int len, int nofs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004671{
4672 struct address_space *mapping = inode->i_mapping;
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08004673 struct page *page;
Nick Pigginafddba42007-10-16 01:25:01 -07004674 void *fsdata;
Dmitriy Monakhovbeb497a2007-02-16 01:27:18 -08004675 int err;
Nick Piggin54566b22009-01-04 12:00:53 -08004676 unsigned int flags = AOP_FLAG_UNINTERRUPTIBLE;
4677 if (nofs)
4678 flags |= AOP_FLAG_NOFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004679
NeilBrown7e53cac2006-03-25 03:07:57 -08004680retry:
Nick Pigginafddba42007-10-16 01:25:01 -07004681 err = pagecache_write_begin(NULL, mapping, 0, len-1,
Nick Piggin54566b22009-01-04 12:00:53 -08004682 flags, &page, &fsdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004683 if (err)
Nick Pigginafddba42007-10-16 01:25:01 -07004684 goto fail;
4685
Al Viro21fc61c2015-11-17 01:07:57 -05004686 memcpy(page_address(page), symname, len-1);
Nick Pigginafddba42007-10-16 01:25:01 -07004687
4688 err = pagecache_write_end(NULL, mapping, 0, len-1, len-1,
4689 page, fsdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004690 if (err < 0)
4691 goto fail;
Nick Pigginafddba42007-10-16 01:25:01 -07004692 if (err < len-1)
4693 goto retry;
4694
Linus Torvalds1da177e2005-04-16 15:20:36 -07004695 mark_inode_dirty(inode);
4696 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004697fail:
4698 return err;
4699}
Al Viro4d359502014-03-14 12:20:17 -04004700EXPORT_SYMBOL(__page_symlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004701
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08004702int page_symlink(struct inode *inode, const char *symname, int len)
4703{
4704 return __page_symlink(inode, symname, len,
Michal Hockoc62d2552015-11-06 16:28:49 -08004705 !mapping_gfp_constraint(inode->i_mapping, __GFP_FS));
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08004706}
Al Viro4d359502014-03-14 12:20:17 -04004707EXPORT_SYMBOL(page_symlink);
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08004708
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08004709const struct inode_operations page_symlink_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004710 .readlink = generic_readlink,
Al Viro6b255392015-11-17 10:20:54 -05004711 .get_link = page_get_link,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004712};
Linus Torvalds1da177e2005-04-16 15:20:36 -07004713EXPORT_SYMBOL(page_symlink_inode_operations);