blob: a49cbd7efcaa1557bab6e99cec3a3a32cc8331d2 [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... */
269 if (acl == ACL_NOT_CACHED)
270 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 Viro6e77137b2015-05-02 13:37:52 -0400864void nd_jump_link(struct path *path)
Christoph Hellwigb5fb63c12012-06-18 10:47:04 -0400865{
Al Viro6e77137b2015-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 Viroe3c13922016-03-06 14:03:27 -05001607 struct dentry *dentry;
1608 inode_lock(dir->d_inode);
Al Viro949a8522016-03-06 14:20:52 -05001609 dentry = d_lookup(dir, name);
1610 if (unlikely(dentry)) {
1611 if ((dentry->d_flags & DCACHE_OP_REVALIDATE) &&
1612 !(flags & LOOKUP_NO_REVAL)) {
1613 int error = d_revalidate(dentry, flags);
1614 if (unlikely(error <= 0)) {
1615 if (!error)
1616 d_invalidate(dentry);
1617 dput(dentry);
1618 dentry = ERR_PTR(error);
1619 }
1620 }
1621 if (dentry) {
1622 inode_unlock(dir->d_inode);
1623 return dentry;
1624 }
1625 }
1626 dentry = d_alloc(dir, name);
1627 if (unlikely(!dentry)) {
1628 inode_unlock(dir->d_inode);
1629 return ERR_PTR(-ENOMEM);
1630 }
1631 dentry = lookup_real(dir->d_inode, dentry, flags);
Al Viroe3c13922016-03-06 14:03:27 -05001632 inode_unlock(dir->d_inode);
1633 return dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634}
1635
Al Viro52094c82011-02-21 21:34:47 -05001636static inline int may_lookup(struct nameidata *nd)
1637{
1638 if (nd->flags & LOOKUP_RCU) {
Al Viro4ad5abb2011-06-20 19:57:03 -04001639 int err = inode_permission(nd->inode, MAY_EXEC|MAY_NOT_BLOCK);
Al Viro52094c82011-02-21 21:34:47 -05001640 if (err != -ECHILD)
1641 return err;
Al Viro6e9918b2015-05-05 09:26:05 -04001642 if (unlazy_walk(nd, NULL, 0))
Al Viro52094c82011-02-21 21:34:47 -05001643 return -ECHILD;
1644 }
Al Viro4ad5abb2011-06-20 19:57:03 -04001645 return inode_permission(nd->inode, MAY_EXEC);
Al Viro52094c82011-02-21 21:34:47 -05001646}
1647
Al Viro9856fa12011-03-04 14:22:06 -05001648static inline int handle_dots(struct nameidata *nd, int type)
1649{
1650 if (type == LAST_DOTDOT) {
Al Viro9e6697e2015-12-05 20:07:21 -05001651 if (!nd->root.mnt)
1652 set_root(nd);
Al Viro9856fa12011-03-04 14:22:06 -05001653 if (nd->flags & LOOKUP_RCU) {
Al Viro70291ae2015-05-04 07:53:00 -04001654 return follow_dotdot_rcu(nd);
Al Viro9856fa12011-03-04 14:22:06 -05001655 } else
Eric W. Biederman397d4252015-08-15 20:27:13 -05001656 return follow_dotdot(nd);
Al Viro9856fa12011-03-04 14:22:06 -05001657 }
1658 return 0;
1659}
1660
Al Viro181548c2015-05-07 19:54:34 -04001661static int pick_link(struct nameidata *nd, struct path *link,
1662 struct inode *inode, unsigned seq)
Al Virod63ff282015-05-04 18:13:23 -04001663{
Al Viro626de992015-05-04 18:26:59 -04001664 int error;
Al Viro1cf26652015-05-06 16:01:56 -04001665 struct saved *last;
NeilBrown756daf22015-03-23 13:37:38 +11001666 if (unlikely(nd->total_link_count++ >= MAXSYMLINKS)) {
Al Viro626de992015-05-04 18:26:59 -04001667 path_to_nameidata(link, nd);
1668 return -ELOOP;
1669 }
Al Virobc40aee2015-05-09 13:04:24 -04001670 if (!(nd->flags & LOOKUP_RCU)) {
Al Viro79733872015-05-09 12:55:43 -04001671 if (link->mnt == nd->path.mnt)
1672 mntget(link->mnt);
Al Virod63ff282015-05-04 18:13:23 -04001673 }
Al Viro626de992015-05-04 18:26:59 -04001674 error = nd_alloc_stack(nd);
1675 if (unlikely(error)) {
Al Virobc40aee2015-05-09 13:04:24 -04001676 if (error == -ECHILD) {
1677 if (unlikely(unlazy_link(nd, link, seq)))
1678 return -ECHILD;
1679 error = nd_alloc_stack(nd);
1680 }
1681 if (error) {
1682 path_put(link);
1683 return error;
1684 }
Al Viro626de992015-05-04 18:26:59 -04001685 }
1686
Al Viroab104922015-05-10 11:50:01 -04001687 last = nd->stack + nd->depth++;
Al Viro1cf26652015-05-06 16:01:56 -04001688 last->link = *link;
Al Virofceef392015-12-29 15:58:39 -05001689 clear_delayed_call(&last->done);
1690 nd->link_inode = inode;
Al Viro0450b2d2015-05-08 13:23:53 -04001691 last->seq = seq;
Al Virod63ff282015-05-04 18:13:23 -04001692 return 1;
1693}
1694
Linus Torvalds3ddcd052011-08-06 22:45:50 -07001695/*
1696 * Do we need to follow links? We _really_ want to be able
1697 * to do this check without having to look at inode->i_op,
1698 * so we keep a cache of "no, this doesn't need follow_link"
1699 * for the common case.
1700 */
Al Viro254cf582015-05-05 09:40:46 -04001701static inline int should_follow_link(struct nameidata *nd, struct path *link,
Al Viro181548c2015-05-07 19:54:34 -04001702 int follow,
1703 struct inode *inode, unsigned seq)
Linus Torvalds3ddcd052011-08-06 22:45:50 -07001704{
Al Virod63ff282015-05-04 18:13:23 -04001705 if (likely(!d_is_symlink(link->dentry)))
1706 return 0;
1707 if (!follow)
1708 return 0;
Al Viroa7f77542016-02-27 19:31:01 -05001709 /* make sure that d_is_symlink above matches inode */
1710 if (nd->flags & LOOKUP_RCU) {
1711 if (read_seqcount_retry(&link->dentry->d_seq, seq))
1712 return -ECHILD;
1713 }
Al Viro181548c2015-05-07 19:54:34 -04001714 return pick_link(nd, link, inode, seq);
Linus Torvalds3ddcd052011-08-06 22:45:50 -07001715}
1716
Al Viro4693a542015-05-04 17:47:11 -04001717enum {WALK_GET = 1, WALK_PUT = 2};
1718
1719static int walk_component(struct nameidata *nd, int flags)
Al Viroce57dfc2011-03-13 19:58:58 -04001720{
Al Virocaa856342015-04-22 17:52:47 -04001721 struct path path;
Al Viroce57dfc2011-03-13 19:58:58 -04001722 struct inode *inode;
Al Viro254cf582015-05-05 09:40:46 -04001723 unsigned seq;
Al Viroce57dfc2011-03-13 19:58:58 -04001724 int err;
1725 /*
1726 * "." and ".." are special - ".." especially so because it has
1727 * to be able to know about the current root directory and
1728 * parent relationships.
1729 */
Al Viro4693a542015-05-04 17:47:11 -04001730 if (unlikely(nd->last_type != LAST_NORM)) {
1731 err = handle_dots(nd, nd->last_type);
1732 if (flags & WALK_PUT)
1733 put_link(nd);
1734 return err;
1735 }
Al Viro254cf582015-05-05 09:40:46 -04001736 err = lookup_fast(nd, &path, &inode, &seq);
Al Viroe9742b52016-03-05 22:04:59 -05001737 if (unlikely(err <= 0)) {
Miklos Szeredi697f5142012-05-21 17:30:05 +02001738 if (err < 0)
Al Virof0a9ba72015-05-04 07:59:30 -04001739 return err;
Al Viroe3c13922016-03-06 14:03:27 -05001740 path.dentry = lookup_slow(&nd->last, nd->path.dentry,
1741 nd->flags);
1742 if (IS_ERR(path.dentry))
1743 return PTR_ERR(path.dentry);
Al Viro7500c382016-03-31 00:23:05 -04001744
Al Viroe3c13922016-03-06 14:03:27 -05001745 path.mnt = nd->path.mnt;
1746 err = follow_managed(&path, nd);
1747 if (unlikely(err < 0))
Al Virof0a9ba72015-05-04 07:59:30 -04001748 return err;
Miklos Szeredi697f5142012-05-21 17:30:05 +02001749
Al Viro7500c382016-03-31 00:23:05 -04001750 if (unlikely(d_is_negative(path.dentry))) {
1751 path_to_nameidata(&path, nd);
1752 return -ENOENT;
1753 }
1754
Al Viro254cf582015-05-05 09:40:46 -04001755 seq = 0; /* we are already out of RCU mode */
Al Virod4565642016-02-27 19:23:16 -05001756 inode = d_backing_inode(path.dentry);
Al Viroce57dfc2011-03-13 19:58:58 -04001757 }
Miklos Szeredi697f5142012-05-21 17:30:05 +02001758
Al Viro4693a542015-05-04 17:47:11 -04001759 if (flags & WALK_PUT)
1760 put_link(nd);
Al Viro181548c2015-05-07 19:54:34 -04001761 err = should_follow_link(nd, &path, flags & WALK_GET, inode, seq);
Al Virod63ff282015-05-04 18:13:23 -04001762 if (unlikely(err))
1763 return err;
Al Virocaa856342015-04-22 17:52:47 -04001764 path_to_nameidata(&path, nd);
Al Viroce57dfc2011-03-13 19:58:58 -04001765 nd->inode = inode;
Al Viro254cf582015-05-05 09:40:46 -04001766 nd->seq = seq;
Al Viroce57dfc2011-03-13 19:58:58 -04001767 return 0;
1768}
1769
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770/*
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001771 * We can do the critical dentry name comparison and hashing
1772 * operations one word at a time, but we are limited to:
1773 *
1774 * - Architectures with fast unaligned word accesses. We could
1775 * do a "get_unaligned()" if this helps and is sufficiently
1776 * fast.
1777 *
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001778 * - non-CONFIG_DEBUG_PAGEALLOC configurations (so that we
1779 * do not trap on the (extremely unlikely) case of a page
1780 * crossing operation.
1781 *
1782 * - Furthermore, we need an efficient 64-bit compile for the
1783 * 64-bit case in order to generate the "number of bytes in
1784 * the final mask". Again, that could be replaced with a
1785 * efficient population count instruction or similar.
1786 */
1787#ifdef CONFIG_DCACHE_WORD_ACCESS
1788
Linus Torvaldsf68e5562012-04-06 13:54:56 -07001789#include <asm/word-at-a-time.h>
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001790
Linus Torvaldsf68e5562012-04-06 13:54:56 -07001791#ifdef CONFIG_64BIT
George Spelvin2a18da7a2016-05-23 07:43:58 -04001792/*
1793 * Register pressure in the mixing function is an issue, particularly
1794 * on 32-bit x86, but almost any function requires one state value and
1795 * one temporary. Instead, use a function designed for two state values
1796 * and no temporaries.
1797 *
1798 * This function cannot create a collision in only two iterations, so
1799 * we have two iterations to achieve avalanche. In those two iterations,
1800 * we have six layers of mixing, which is enough to spread one bit's
1801 * influence out to 2^6 = 64 state bits.
1802 *
1803 * Rotate constants are scored by considering either 64 one-bit input
1804 * deltas or 64*63/2 = 2016 two-bit input deltas, and finding the
1805 * probability of that delta causing a change to each of the 128 output
1806 * bits, using a sample of random initial states.
1807 *
1808 * The Shannon entropy of the computed probabilities is then summed
1809 * to produce a score. Ideally, any input change has a 50% chance of
1810 * toggling any given output bit.
1811 *
1812 * Mixing scores (in bits) for (12,45):
1813 * Input delta: 1-bit 2-bit
1814 * 1 round: 713.3 42542.6
1815 * 2 rounds: 2753.7 140389.8
1816 * 3 rounds: 5954.1 233458.2
1817 * 4 rounds: 7862.6 256672.2
1818 * Perfect: 8192 258048
1819 * (64*128) (64*63/2 * 128)
1820 */
1821#define HASH_MIX(x, y, a) \
1822 ( x ^= (a), \
1823 y ^= x, x = rol64(x,12),\
1824 x += y, y = rol64(y,45),\
1825 y *= 9 )
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001826
George Spelvin0fed3ac2016-05-02 06:31:01 -04001827/*
George Spelvin2a18da7a2016-05-23 07:43:58 -04001828 * Fold two longs into one 32-bit hash value. This must be fast, but
1829 * latency isn't quite as critical, as there is a fair bit of additional
1830 * work done before the hash value is used.
George Spelvin0fed3ac2016-05-02 06:31:01 -04001831 */
George Spelvin2a18da7a2016-05-23 07:43:58 -04001832static inline unsigned int fold_hash(unsigned long x, unsigned long y)
George Spelvin0fed3ac2016-05-02 06:31:01 -04001833{
George Spelvin2a18da7a2016-05-23 07:43:58 -04001834 y ^= x * GOLDEN_RATIO_64;
1835 y *= GOLDEN_RATIO_64;
1836 return y >> 32;
George Spelvin0fed3ac2016-05-02 06:31:01 -04001837}
1838
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001839#else /* 32-bit case */
1840
George Spelvin2a18da7a2016-05-23 07:43:58 -04001841/*
1842 * Mixing scores (in bits) for (7,20):
1843 * Input delta: 1-bit 2-bit
1844 * 1 round: 330.3 9201.6
1845 * 2 rounds: 1246.4 25475.4
1846 * 3 rounds: 1907.1 31295.1
1847 * 4 rounds: 2042.3 31718.6
1848 * Perfect: 2048 31744
1849 * (32*64) (32*31/2 * 64)
1850 */
1851#define HASH_MIX(x, y, a) \
1852 ( x ^= (a), \
1853 y ^= x, x = rol32(x, 7),\
1854 x += y, y = rol32(y,20),\
1855 y *= 9 )
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001856
George Spelvin2a18da7a2016-05-23 07:43:58 -04001857static inline unsigned int fold_hash(unsigned long x, unsigned long y)
George Spelvin0fed3ac2016-05-02 06:31:01 -04001858{
George Spelvin2a18da7a2016-05-23 07:43:58 -04001859 /* Use arch-optimized multiply if one exists */
1860 return __hash_32(y ^ __hash_32(x));
George Spelvin0fed3ac2016-05-02 06:31:01 -04001861}
1862
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001863#endif
1864
George Spelvin2a18da7a2016-05-23 07:43:58 -04001865/*
1866 * Return the hash of a string of known length. This is carfully
1867 * designed to match hash_name(), which is the more critical function.
1868 * In particular, we must end by hashing a final word containing 0..7
1869 * payload bytes, to match the way that hash_name() iterates until it
1870 * finds the delimiter after the name.
1871 */
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001872unsigned int full_name_hash(const char *name, unsigned int len)
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001873{
George Spelvin2a18da7a2016-05-23 07:43:58 -04001874 unsigned long a, x = 0, y = 0;
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001875
1876 for (;;) {
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001877 if (!len)
1878 goto done;
Linus Torvaldse419b4c2012-05-03 10:16:43 -07001879 a = load_unaligned_zeropad(name);
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001880 if (len < sizeof(unsigned long))
1881 break;
George Spelvin2a18da7a2016-05-23 07:43:58 -04001882 HASH_MIX(x, y, a);
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001883 name += sizeof(unsigned long);
1884 len -= sizeof(unsigned long);
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001885 }
George Spelvin2a18da7a2016-05-23 07:43:58 -04001886 x ^= a & bytemask_from_count(len);
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001887done:
George Spelvin2a18da7a2016-05-23 07:43:58 -04001888 return fold_hash(x, y);
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001889}
1890EXPORT_SYMBOL(full_name_hash);
1891
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001892/* Return the "hash_len" (hash and length) of a null-terminated string */
1893u64 hashlen_string(const char *name)
1894{
George Spelvin2a18da7a2016-05-23 07:43:58 -04001895 unsigned long a = 0, x = 0, y = 0, adata, mask, len;
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001896 const struct word_at_a_time constants = WORD_AT_A_TIME_CONSTANTS;
1897
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001898 len = -sizeof(unsigned long);
1899 do {
George Spelvin2a18da7a2016-05-23 07:43:58 -04001900 HASH_MIX(x, y, a);
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001901 len += sizeof(unsigned long);
1902 a = load_unaligned_zeropad(name+len);
1903 } while (!has_zero(a, &adata, &constants));
1904
1905 adata = prep_zero_mask(a, adata, &constants);
1906 mask = create_zero_mask(adata);
George Spelvin2a18da7a2016-05-23 07:43:58 -04001907 x ^= a & zero_bytemask(mask);
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001908
George Spelvin2a18da7a2016-05-23 07:43:58 -04001909 return hashlen_create(fold_hash(x, y), len + find_zero(mask));
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001910}
1911EXPORT_SYMBOL(hashlen_string);
1912
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001913/*
1914 * Calculate the length and hash of the path component, and
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07001915 * return the "hash_len" as the result.
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001916 */
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07001917static inline u64 hash_name(const char *name)
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001918{
George Spelvin2a18da7a2016-05-23 07:43:58 -04001919 unsigned long a = 0, b, x = 0, y = 0, adata, bdata, mask, len;
Linus Torvalds36126f82012-05-26 10:43:17 -07001920 const struct word_at_a_time constants = WORD_AT_A_TIME_CONSTANTS;
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001921
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001922 len = -sizeof(unsigned long);
1923 do {
George Spelvin2a18da7a2016-05-23 07:43:58 -04001924 HASH_MIX(x, y, a);
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001925 len += sizeof(unsigned long);
Linus Torvaldse419b4c2012-05-03 10:16:43 -07001926 a = load_unaligned_zeropad(name+len);
Linus Torvalds36126f82012-05-26 10:43:17 -07001927 b = a ^ REPEAT_BYTE('/');
1928 } while (!(has_zero(a, &adata, &constants) | has_zero(b, &bdata, &constants)));
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001929
Linus Torvalds36126f82012-05-26 10:43:17 -07001930 adata = prep_zero_mask(a, adata, &constants);
1931 bdata = prep_zero_mask(b, bdata, &constants);
Linus Torvalds36126f82012-05-26 10:43:17 -07001932 mask = create_zero_mask(adata | bdata);
George Spelvin2a18da7a2016-05-23 07:43:58 -04001933 x ^= a & zero_bytemask(mask);
Linus Torvalds36126f82012-05-26 10:43:17 -07001934
George Spelvin2a18da7a2016-05-23 07:43:58 -04001935 return hashlen_create(fold_hash(x, y), len + find_zero(mask));
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001936}
1937
George Spelvin2a18da7a2016-05-23 07:43:58 -04001938#else /* !CONFIG_DCACHE_WORD_ACCESS: Slow, byte-at-a-time version */
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001939
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001940/* Return the hash of a string of known length */
1941unsigned int full_name_hash(const char *name, unsigned int len)
Linus Torvalds0145acc2012-03-02 14:32:59 -08001942{
1943 unsigned long hash = init_name_hash();
1944 while (len--)
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001945 hash = partial_name_hash((unsigned char)*name++, hash);
Linus Torvalds0145acc2012-03-02 14:32:59 -08001946 return end_name_hash(hash);
1947}
Linus Torvaldsae942ae2012-03-02 19:40:57 -08001948EXPORT_SYMBOL(full_name_hash);
Linus Torvalds0145acc2012-03-02 14:32:59 -08001949
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001950/* Return the "hash_len" (hash and length) of a null-terminated string */
1951u64 hash_string(const char *name)
1952{
1953 unsigned long hash = init_name_hash();
1954 unsigned long len = 0, c;
1955
1956 c = (unsigned char)*name;
1957 do {
1958 len++;
1959 hash = partial_name_hash(c, hash);
1960 c = (unsigned char)name[len];
1961 } while (c);
1962 return hashlen_create(end_name_hash(hash), len);
1963}
1964EXPORT_SYMBOL(hash_string);
1965
Linus Torvalds3ddcd052011-08-06 22:45:50 -07001966/*
Linus Torvalds200e9ef2012-03-02 14:49:24 -08001967 * We know there's a real path component here of at least
1968 * one character.
1969 */
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07001970static inline u64 hash_name(const char *name)
Linus Torvalds200e9ef2012-03-02 14:49:24 -08001971{
1972 unsigned long hash = init_name_hash();
1973 unsigned long len = 0, c;
1974
1975 c = (unsigned char)*name;
1976 do {
1977 len++;
1978 hash = partial_name_hash(c, hash);
1979 c = (unsigned char)name[len];
1980 } while (c && c != '/');
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07001981 return hashlen_create(end_name_hash(hash), len);
Linus Torvalds200e9ef2012-03-02 14:49:24 -08001982}
1983
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001984#endif
1985
Linus Torvalds200e9ef2012-03-02 14:49:24 -08001986/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987 * Name resolution.
Prasanna Medaea3834d2005-04-29 16:00:17 +01001988 * This is the basic name resolution function, turning a pathname into
1989 * the final dentry. We expect 'base' to be positive and a directory.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990 *
Prasanna Medaea3834d2005-04-29 16:00:17 +01001991 * Returns 0 and nd will have valid dentry and mnt on success.
1992 * Returns error and drops reference to input namei data on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993 */
Al Viro6de88d72009-08-09 01:41:57 +04001994static int link_path_walk(const char *name, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996 int err;
Al Viro32cd7462015-04-18 20:30:49 -04001997
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998 while (*name=='/')
1999 name++;
2000 if (!*name)
Al Viro9e18f102015-04-18 20:44:34 -04002001 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003 /* At this point we know we have a real path component. */
2004 for(;;) {
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07002005 u64 hash_len;
Al Virofe479a52011-02-22 15:10:03 -05002006 int type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007
Al Viro52094c82011-02-21 21:34:47 -05002008 err = may_lookup(nd);
George Spelvin2a18da7a2016-05-23 07:43:58 -04002009 if (err)
Al Viro3595e232015-05-09 16:54:45 -04002010 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07002012 hash_len = hash_name(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013
Al Virofe479a52011-02-22 15:10:03 -05002014 type = LAST_NORM;
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07002015 if (name[0] == '.') switch (hashlen_len(hash_len)) {
Al Virofe479a52011-02-22 15:10:03 -05002016 case 2:
Linus Torvalds200e9ef2012-03-02 14:49:24 -08002017 if (name[1] == '.') {
Al Virofe479a52011-02-22 15:10:03 -05002018 type = LAST_DOTDOT;
Al Viro16c2cd72011-02-22 15:50:10 -05002019 nd->flags |= LOOKUP_JUMPED;
2020 }
Al Virofe479a52011-02-22 15:10:03 -05002021 break;
2022 case 1:
2023 type = LAST_DOT;
2024 }
Al Viro5a202bc2011-03-08 14:17:44 -05002025 if (likely(type == LAST_NORM)) {
2026 struct dentry *parent = nd->path.dentry;
Al Viro16c2cd72011-02-22 15:50:10 -05002027 nd->flags &= ~LOOKUP_JUMPED;
Al Viro5a202bc2011-03-08 14:17:44 -05002028 if (unlikely(parent->d_flags & DCACHE_OP_HASH)) {
James Hogana060dc52014-09-16 13:07:35 +01002029 struct qstr this = { { .hash_len = hash_len }, .name = name };
Linus Torvaldsda53be12013-05-21 15:22:44 -07002030 err = parent->d_op->d_hash(parent, &this);
Al Viro5a202bc2011-03-08 14:17:44 -05002031 if (err < 0)
Al Viro3595e232015-05-09 16:54:45 -04002032 return err;
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07002033 hash_len = this.hash_len;
2034 name = this.name;
Al Viro5a202bc2011-03-08 14:17:44 -05002035 }
2036 }
Al Virofe479a52011-02-22 15:10:03 -05002037
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07002038 nd->last.hash_len = hash_len;
2039 nd->last.name = name;
Al Viro5f4a6a62013-01-24 18:04:22 -05002040 nd->last_type = type;
2041
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07002042 name += hashlen_len(hash_len);
2043 if (!*name)
Al Virobdf6cbf2015-04-18 20:21:40 -04002044 goto OK;
Linus Torvalds200e9ef2012-03-02 14:49:24 -08002045 /*
2046 * If it wasn't NUL, we know it was '/'. Skip that
2047 * slash, and continue until no more slashes.
2048 */
2049 do {
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07002050 name++;
2051 } while (unlikely(*name == '/'));
Al Viro8620c232015-05-04 08:58:35 -04002052 if (unlikely(!*name)) {
2053OK:
Al Viro368ee9b2015-05-08 17:19:59 -04002054 /* pathname body, done */
Al Viro8620c232015-05-04 08:58:35 -04002055 if (!nd->depth)
2056 return 0;
2057 name = nd->stack[nd->depth - 1].name;
Al Viro368ee9b2015-05-08 17:19:59 -04002058 /* trailing symlink, done */
Al Viro8620c232015-05-04 08:58:35 -04002059 if (!name)
2060 return 0;
2061 /* last component of nested symlink */
Al Viro4693a542015-05-04 17:47:11 -04002062 err = walk_component(nd, WALK_GET | WALK_PUT);
Al Viro8620c232015-05-04 08:58:35 -04002063 } else {
Al Viro4693a542015-05-04 17:47:11 -04002064 err = walk_component(nd, WALK_GET);
Al Viro8620c232015-05-04 08:58:35 -04002065 }
Al Viroce57dfc2011-03-13 19:58:58 -04002066 if (err < 0)
Al Viro3595e232015-05-09 16:54:45 -04002067 return err;
Al Virofe479a52011-02-22 15:10:03 -05002068
Al Viroce57dfc2011-03-13 19:58:58 -04002069 if (err) {
Al Viro626de992015-05-04 18:26:59 -04002070 const char *s = get_link(nd);
Al Viro5a460272015-04-17 23:44:45 -04002071
Viresh Kumara1c83682015-08-12 15:59:44 +05302072 if (IS_ERR(s))
Al Viro3595e232015-05-09 16:54:45 -04002073 return PTR_ERR(s);
Al Virod40bcc02015-04-18 20:03:03 -04002074 err = 0;
2075 if (unlikely(!s)) {
2076 /* jumped */
Al Virob9ff4422015-05-02 20:19:23 -04002077 put_link(nd);
Al Virod40bcc02015-04-18 20:03:03 -04002078 } else {
Al Virofab51e82015-05-10 11:01:00 -04002079 nd->stack[nd->depth - 1].name = name;
2080 name = s;
2081 continue;
Al Virod40bcc02015-04-18 20:03:03 -04002082 }
Nick Piggin31e6b012011-01-07 17:49:52 +11002083 }
Al Viro97242f92015-08-01 19:59:28 -04002084 if (unlikely(!d_can_lookup(nd->path.dentry))) {
2085 if (nd->flags & LOOKUP_RCU) {
2086 if (unlazy_walk(nd, NULL, 0))
2087 return -ECHILD;
2088 }
Al Viro3595e232015-05-09 16:54:45 -04002089 return -ENOTDIR;
Al Viro97242f92015-08-01 19:59:28 -04002090 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092}
2093
Al Viroc8a53ee2015-05-12 18:43:07 -04002094static const char *path_init(struct nameidata *nd, unsigned flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095{
Prasanna Medaea3834d2005-04-29 16:00:17 +01002096 int retval = 0;
Al Viroc8a53ee2015-05-12 18:43:07 -04002097 const char *s = nd->name->name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098
2099 nd->last_type = LAST_ROOT; /* if there are only slashes... */
Al Viro980f3ea2014-11-20 14:20:24 -05002100 nd->flags = flags | LOOKUP_JUMPED | LOOKUP_PARENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101 nd->depth = 0;
Al Viro5b6ca022011-03-09 23:04:47 -05002102 if (flags & LOOKUP_ROOT) {
David Howellsb18825a2013-09-12 19:22:53 +01002103 struct dentry *root = nd->root.dentry;
2104 struct inode *inode = root->d_inode;
Al Virofd2f7cb2015-02-22 20:07:13 -05002105 if (*s) {
Miklos Szeredi44b1d532014-04-01 17:08:41 +02002106 if (!d_can_lookup(root))
Al Viro368ee9b2015-05-08 17:19:59 -04002107 return ERR_PTR(-ENOTDIR);
Al Viro73d049a2011-03-11 12:08:24 -05002108 retval = inode_permission(inode, MAY_EXEC);
2109 if (retval)
Al Viro368ee9b2015-05-08 17:19:59 -04002110 return ERR_PTR(retval);
Al Viro73d049a2011-03-11 12:08:24 -05002111 }
Al Viro5b6ca022011-03-09 23:04:47 -05002112 nd->path = nd->root;
2113 nd->inode = inode;
2114 if (flags & LOOKUP_RCU) {
Al Viro8b61e742013-11-08 12:45:01 -05002115 rcu_read_lock();
Al Viro5b6ca022011-03-09 23:04:47 -05002116 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
Al Viro8f47a0162015-05-09 19:02:01 -04002117 nd->root_seq = nd->seq;
Al Viro48a066e2013-09-29 22:06:07 -04002118 nd->m_seq = read_seqbegin(&mount_lock);
Al Viro5b6ca022011-03-09 23:04:47 -05002119 } else {
2120 path_get(&nd->path);
2121 }
Al Viro368ee9b2015-05-08 17:19:59 -04002122 return s;
Al Viro5b6ca022011-03-09 23:04:47 -05002123 }
2124
Al Viro2a737872009-04-07 11:49:53 -04002125 nd->root.mnt = NULL;
Al Viro248fb5b2015-12-05 20:51:58 -05002126 nd->path.mnt = NULL;
2127 nd->path.dentry = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128
Al Viro48a066e2013-09-29 22:06:07 -04002129 nd->m_seq = read_seqbegin(&mount_lock);
Al Virofd2f7cb2015-02-22 20:07:13 -05002130 if (*s == '/') {
Al Viro9e6697e2015-12-05 20:07:21 -05002131 if (flags & LOOKUP_RCU)
Al Viro8b61e742013-11-08 12:45:01 -05002132 rcu_read_lock();
Al Viro9e6697e2015-12-05 20:07:21 -05002133 set_root(nd);
Al Viro248fb5b2015-12-05 20:51:58 -05002134 if (likely(!nd_jump_root(nd)))
Al Viroef55d912015-12-05 20:25:06 -05002135 return s;
Al Viro248fb5b2015-12-05 20:51:58 -05002136 nd->root.mnt = NULL;
Al Viroef55d912015-12-05 20:25:06 -05002137 rcu_read_unlock();
2138 return ERR_PTR(-ECHILD);
Al Viroc8a53ee2015-05-12 18:43:07 -04002139 } else if (nd->dfd == AT_FDCWD) {
Al Viroe41f7d42011-02-22 14:02:58 -05002140 if (flags & LOOKUP_RCU) {
2141 struct fs_struct *fs = current->fs;
2142 unsigned seq;
2143
Al Viro8b61e742013-11-08 12:45:01 -05002144 rcu_read_lock();
Al Viroe41f7d42011-02-22 14:02:58 -05002145
2146 do {
2147 seq = read_seqcount_begin(&fs->seq);
2148 nd->path = fs->pwd;
Al Viroef55d912015-12-05 20:25:06 -05002149 nd->inode = nd->path.dentry->d_inode;
Al Viroe41f7d42011-02-22 14:02:58 -05002150 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
2151 } while (read_seqcount_retry(&fs->seq, seq));
2152 } else {
2153 get_fs_pwd(current->fs, &nd->path);
Al Viroef55d912015-12-05 20:25:06 -05002154 nd->inode = nd->path.dentry->d_inode;
Al Viroe41f7d42011-02-22 14:02:58 -05002155 }
Al Viroef55d912015-12-05 20:25:06 -05002156 return s;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002157 } else {
Jeff Layton582aa642012-12-11 08:56:16 -05002158 /* Caller must check execute permissions on the starting path component */
Al Viroc8a53ee2015-05-12 18:43:07 -04002159 struct fd f = fdget_raw(nd->dfd);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002160 struct dentry *dentry;
2161
Al Viro2903ff02012-08-28 12:52:22 -04002162 if (!f.file)
Al Viro368ee9b2015-05-08 17:19:59 -04002163 return ERR_PTR(-EBADF);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002164
Al Viro2903ff02012-08-28 12:52:22 -04002165 dentry = f.file->f_path.dentry;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002166
Al Virofd2f7cb2015-02-22 20:07:13 -05002167 if (*s) {
Miklos Szeredi44b1d532014-04-01 17:08:41 +02002168 if (!d_can_lookup(dentry)) {
Al Viro2903ff02012-08-28 12:52:22 -04002169 fdput(f);
Al Viro368ee9b2015-05-08 17:19:59 -04002170 return ERR_PTR(-ENOTDIR);
Al Viro2903ff02012-08-28 12:52:22 -04002171 }
Al Virof52e0c12011-03-14 18:56:51 -04002172 }
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002173
Al Viro2903ff02012-08-28 12:52:22 -04002174 nd->path = f.file->f_path;
Al Viroe41f7d42011-02-22 14:02:58 -05002175 if (flags & LOOKUP_RCU) {
Al Viro8b61e742013-11-08 12:45:01 -05002176 rcu_read_lock();
Al Viro34a26b92015-05-11 08:05:05 -04002177 nd->inode = nd->path.dentry->d_inode;
2178 nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq);
Al Viroe41f7d42011-02-22 14:02:58 -05002179 } else {
Al Viro2903ff02012-08-28 12:52:22 -04002180 path_get(&nd->path);
Al Viro34a26b92015-05-11 08:05:05 -04002181 nd->inode = nd->path.dentry->d_inode;
Al Viroe41f7d42011-02-22 14:02:58 -05002182 }
Al Viro34a26b92015-05-11 08:05:05 -04002183 fdput(f);
Al Viro368ee9b2015-05-08 17:19:59 -04002184 return s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185 }
Al Viro9b4a9b12009-04-07 11:44:16 -04002186}
2187
Al Viro3bdba282015-05-08 17:37:07 -04002188static const char *trailing_symlink(struct nameidata *nd)
Al Viro95fa25d2015-04-22 13:46:57 -04002189{
2190 const char *s;
Al Virofec2fa22015-05-06 15:58:18 -04002191 int error = may_follow_link(nd);
Al Virodeb106c2015-05-08 18:05:21 -04002192 if (unlikely(error))
Al Viro3bdba282015-05-08 17:37:07 -04002193 return ERR_PTR(error);
Al Viro95fa25d2015-04-22 13:46:57 -04002194 nd->flags |= LOOKUP_PARENT;
Al Virofab51e82015-05-10 11:01:00 -04002195 nd->stack[0].name = NULL;
Al Viro3b2e7f72015-04-19 00:53:50 -04002196 s = get_link(nd);
Al Virodeb106c2015-05-08 18:05:21 -04002197 return s ? s : "";
Al Viro95fa25d2015-04-22 13:46:57 -04002198}
2199
Al Virocaa856342015-04-22 17:52:47 -04002200static inline int lookup_last(struct nameidata *nd)
Al Virobd92d7f2011-03-14 19:54:59 -04002201{
2202 if (nd->last_type == LAST_NORM && nd->last.name[nd->last.len])
2203 nd->flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
2204
2205 nd->flags &= ~LOOKUP_PARENT;
Al Virodeb106c2015-05-08 18:05:21 -04002206 return walk_component(nd,
Al Viro4693a542015-05-04 17:47:11 -04002207 nd->flags & LOOKUP_FOLLOW
2208 ? nd->depth
2209 ? WALK_PUT | WALK_GET
2210 : WALK_GET
2211 : 0);
Al Virobd92d7f2011-03-14 19:54:59 -04002212}
2213
Al Viro9b4a9b12009-04-07 11:44:16 -04002214/* Returns 0 and nd will be valid on success; Retuns error, otherwise. */
Al Viroc8a53ee2015-05-12 18:43:07 -04002215static int path_lookupat(struct nameidata *nd, unsigned flags, struct path *path)
Al Viro9b4a9b12009-04-07 11:44:16 -04002216{
Al Viroc8a53ee2015-05-12 18:43:07 -04002217 const char *s = path_init(nd, flags);
Al Virobd92d7f2011-03-14 19:54:59 -04002218 int err;
Nick Piggin31e6b012011-01-07 17:49:52 +11002219
Al Viro368ee9b2015-05-08 17:19:59 -04002220 if (IS_ERR(s))
2221 return PTR_ERR(s);
Al Viro3bdba282015-05-08 17:37:07 -04002222 while (!(err = link_path_walk(s, nd))
2223 && ((err = lookup_last(nd)) > 0)) {
2224 s = trailing_symlink(nd);
2225 if (IS_ERR(s)) {
2226 err = PTR_ERR(s);
2227 break;
Al Virobd92d7f2011-03-14 19:54:59 -04002228 }
2229 }
Al Viro9f1fafe2011-03-25 11:00:12 -04002230 if (!err)
2231 err = complete_walk(nd);
Al Virobd92d7f2011-03-14 19:54:59 -04002232
Al Virodeb106c2015-05-08 18:05:21 -04002233 if (!err && nd->flags & LOOKUP_DIRECTORY)
2234 if (!d_can_lookup(nd->path.dentry))
Al Virobd23a532011-03-23 09:56:30 -04002235 err = -ENOTDIR;
Al Viro625b6d12015-05-12 16:36:12 -04002236 if (!err) {
2237 *path = nd->path;
2238 nd->path.mnt = NULL;
2239 nd->path.dentry = NULL;
2240 }
2241 terminate_walk(nd);
Al Virobd92d7f2011-03-14 19:54:59 -04002242 return err;
Al Viroee0827c2011-02-21 23:38:09 -05002243}
Nick Piggin31e6b012011-01-07 17:49:52 +11002244
Al Viro625b6d12015-05-12 16:36:12 -04002245static int filename_lookup(int dfd, struct filename *name, unsigned flags,
Al Viro9ad1aaa2015-05-12 16:44:39 -04002246 struct path *path, struct path *root)
Jeff Layton873f1ee2012-10-10 15:25:29 -04002247{
Al Viro894bc8c2015-05-02 07:16:16 -04002248 int retval;
Al Viro9883d182015-05-13 07:28:08 -04002249 struct nameidata nd;
Al Viroabc9f5b2015-05-12 16:53:42 -04002250 if (IS_ERR(name))
2251 return PTR_ERR(name);
Al Viro9ad1aaa2015-05-12 16:44:39 -04002252 if (unlikely(root)) {
2253 nd.root = *root;
2254 flags |= LOOKUP_ROOT;
2255 }
Al Viro9883d182015-05-13 07:28:08 -04002256 set_nameidata(&nd, dfd, name);
Al Viroc8a53ee2015-05-12 18:43:07 -04002257 retval = path_lookupat(&nd, flags | LOOKUP_RCU, path);
Jeff Layton873f1ee2012-10-10 15:25:29 -04002258 if (unlikely(retval == -ECHILD))
Al Viroc8a53ee2015-05-12 18:43:07 -04002259 retval = path_lookupat(&nd, flags, path);
Jeff Layton873f1ee2012-10-10 15:25:29 -04002260 if (unlikely(retval == -ESTALE))
Al Viroc8a53ee2015-05-12 18:43:07 -04002261 retval = path_lookupat(&nd, flags | LOOKUP_REVAL, path);
Jeff Layton873f1ee2012-10-10 15:25:29 -04002262
2263 if (likely(!retval))
Al Viro625b6d12015-05-12 16:36:12 -04002264 audit_inode(name, path->dentry, flags & LOOKUP_PARENT);
Al Viro9883d182015-05-13 07:28:08 -04002265 restore_nameidata();
Al Viroe4bd1c12015-05-12 16:40:39 -04002266 putname(name);
Jeff Layton873f1ee2012-10-10 15:25:29 -04002267 return retval;
2268}
2269
Al Viro8bcb77f2015-05-08 16:59:20 -04002270/* Returns 0 and nd will be valid on success; Retuns error, otherwise. */
Al Viroc8a53ee2015-05-12 18:43:07 -04002271static int path_parentat(struct nameidata *nd, unsigned flags,
Al Viro391172c2015-05-09 11:19:16 -04002272 struct path *parent)
Al Viro8bcb77f2015-05-08 16:59:20 -04002273{
Al Viroc8a53ee2015-05-12 18:43:07 -04002274 const char *s = path_init(nd, flags);
Al Viro368ee9b2015-05-08 17:19:59 -04002275 int err;
2276 if (IS_ERR(s))
2277 return PTR_ERR(s);
2278 err = link_path_walk(s, nd);
Al Viro8bcb77f2015-05-08 16:59:20 -04002279 if (!err)
2280 err = complete_walk(nd);
Al Viro391172c2015-05-09 11:19:16 -04002281 if (!err) {
2282 *parent = nd->path;
2283 nd->path.mnt = NULL;
2284 nd->path.dentry = NULL;
2285 }
2286 terminate_walk(nd);
Al Viro8bcb77f2015-05-08 16:59:20 -04002287 return err;
2288}
2289
Al Viro5c31b6c2015-05-12 17:32:54 -04002290static struct filename *filename_parentat(int dfd, struct filename *name,
Al Viro391172c2015-05-09 11:19:16 -04002291 unsigned int flags, struct path *parent,
2292 struct qstr *last, int *type)
Al Viro8bcb77f2015-05-08 16:59:20 -04002293{
2294 int retval;
Al Viro9883d182015-05-13 07:28:08 -04002295 struct nameidata nd;
Al Viro8bcb77f2015-05-08 16:59:20 -04002296
Al Viro5c31b6c2015-05-12 17:32:54 -04002297 if (IS_ERR(name))
2298 return name;
Al Viro9883d182015-05-13 07:28:08 -04002299 set_nameidata(&nd, dfd, name);
Al Viroc8a53ee2015-05-12 18:43:07 -04002300 retval = path_parentat(&nd, flags | LOOKUP_RCU, parent);
Al Viro8bcb77f2015-05-08 16:59:20 -04002301 if (unlikely(retval == -ECHILD))
Al Viroc8a53ee2015-05-12 18:43:07 -04002302 retval = path_parentat(&nd, flags, parent);
Al Viro8bcb77f2015-05-08 16:59:20 -04002303 if (unlikely(retval == -ESTALE))
Al Viroc8a53ee2015-05-12 18:43:07 -04002304 retval = path_parentat(&nd, flags | LOOKUP_REVAL, parent);
Al Viro391172c2015-05-09 11:19:16 -04002305 if (likely(!retval)) {
2306 *last = nd.last;
2307 *type = nd.last_type;
2308 audit_inode(name, parent->dentry, LOOKUP_PARENT);
Al Viro5c31b6c2015-05-12 17:32:54 -04002309 } else {
2310 putname(name);
2311 name = ERR_PTR(retval);
Al Viro391172c2015-05-09 11:19:16 -04002312 }
Al Viro9883d182015-05-13 07:28:08 -04002313 restore_nameidata();
Al Viro5c31b6c2015-05-12 17:32:54 -04002314 return name;
Al Viro8bcb77f2015-05-08 16:59:20 -04002315}
2316
Al Viro79714f72012-06-15 03:01:42 +04002317/* does lookup, returns the object with parent locked */
2318struct dentry *kern_path_locked(const char *name, struct path *path)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002319{
Al Viro5c31b6c2015-05-12 17:32:54 -04002320 struct filename *filename;
2321 struct dentry *d;
Al Viro391172c2015-05-09 11:19:16 -04002322 struct qstr last;
2323 int type;
Paul Moore51689102015-01-22 00:00:03 -05002324
Al Viro5c31b6c2015-05-12 17:32:54 -04002325 filename = filename_parentat(AT_FDCWD, getname_kernel(name), 0, path,
2326 &last, &type);
Paul Moore51689102015-01-22 00:00:03 -05002327 if (IS_ERR(filename))
2328 return ERR_CAST(filename);
Al Viro5c31b6c2015-05-12 17:32:54 -04002329 if (unlikely(type != LAST_NORM)) {
Al Viro391172c2015-05-09 11:19:16 -04002330 path_put(path);
Al Viro5c31b6c2015-05-12 17:32:54 -04002331 putname(filename);
2332 return ERR_PTR(-EINVAL);
Al Viro79714f72012-06-15 03:01:42 +04002333 }
Al Viro59551022016-01-22 15:40:57 -05002334 inode_lock_nested(path->dentry->d_inode, I_MUTEX_PARENT);
Al Viro391172c2015-05-09 11:19:16 -04002335 d = __lookup_hash(&last, path->dentry, 0);
Al Viro79714f72012-06-15 03:01:42 +04002336 if (IS_ERR(d)) {
Al Viro59551022016-01-22 15:40:57 -05002337 inode_unlock(path->dentry->d_inode);
Al Viro391172c2015-05-09 11:19:16 -04002338 path_put(path);
Al Viro79714f72012-06-15 03:01:42 +04002339 }
Paul Moore51689102015-01-22 00:00:03 -05002340 putname(filename);
Al Viro79714f72012-06-15 03:01:42 +04002341 return d;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002342}
2343
Al Virod1811462008-08-02 00:49:18 -04002344int kern_path(const char *name, unsigned int flags, struct path *path)
2345{
Al Viroabc9f5b2015-05-12 16:53:42 -04002346 return filename_lookup(AT_FDCWD, getname_kernel(name),
2347 flags, path, NULL);
Al Virod1811462008-08-02 00:49:18 -04002348}
Al Viro4d359502014-03-14 12:20:17 -04002349EXPORT_SYMBOL(kern_path);
Al Virod1811462008-08-02 00:49:18 -04002350
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07002351/**
2352 * vfs_path_lookup - lookup a file path relative to a dentry-vfsmount pair
2353 * @dentry: pointer to dentry of the base directory
2354 * @mnt: pointer to vfs mount of the base directory
2355 * @name: pointer to file name
2356 * @flags: lookup flags
Al Viroe0a01242011-06-27 17:00:37 -04002357 * @path: pointer to struct path to fill
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07002358 */
2359int vfs_path_lookup(struct dentry *dentry, struct vfsmount *mnt,
2360 const char *name, unsigned int flags,
Al Viroe0a01242011-06-27 17:00:37 -04002361 struct path *path)
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07002362{
Al Viro9ad1aaa2015-05-12 16:44:39 -04002363 struct path root = {.mnt = mnt, .dentry = dentry};
Al Viro9ad1aaa2015-05-12 16:44:39 -04002364 /* the first argument of filename_lookup() is ignored with root */
Al Viroabc9f5b2015-05-12 16:53:42 -04002365 return filename_lookup(AT_FDCWD, getname_kernel(name),
2366 flags , path, &root);
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07002367}
Al Viro4d359502014-03-14 12:20:17 -04002368EXPORT_SYMBOL(vfs_path_lookup);
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07002369
Christoph Hellwigeead1912007-10-16 23:25:38 -07002370/**
Miklos Szeredi3c9fe8c2016-05-11 01:16:37 +02002371 * lookup_hash - lookup single pathname component on already hashed name
2372 * @name: name and hash to lookup
2373 * @base: base directory to lookup from
2374 *
2375 * The name must have been verified and hashed (see lookup_one_len()). Using
2376 * this after just full_name_hash() is unsafe.
2377 *
2378 * This function also doesn't check for search permission on base directory.
2379 *
2380 * Use lookup_one_len_unlocked() instead, unless you really know what you are
2381 * doing.
2382 *
2383 * Do not hold i_mutex; this helper takes i_mutex if necessary.
2384 */
2385struct dentry *lookup_hash(const struct qstr *name, struct dentry *base)
2386{
2387 struct dentry *ret;
2388
2389 ret = lookup_dcache(name, base, 0);
2390 if (!ret)
2391 ret = lookup_slow(name, base, 0);
2392
2393 return ret;
2394}
2395EXPORT_SYMBOL(lookup_hash);
2396
2397/**
Randy Dunlapa6b91912008-03-19 17:01:00 -07002398 * lookup_one_len - filesystem helper to lookup single pathname component
Christoph Hellwigeead1912007-10-16 23:25:38 -07002399 * @name: pathname component to lookup
2400 * @base: base directory to lookup from
2401 * @len: maximum length @len should be interpreted to
2402 *
Randy Dunlapa6b91912008-03-19 17:01:00 -07002403 * Note that this routine is purely a helper for filesystem usage and should
Al Viro9e7543e2015-02-23 02:49:48 -05002404 * not be called by generic code.
NeilBrownbbddca82016-01-07 16:08:20 -05002405 *
2406 * The caller must hold base->i_mutex.
Christoph Hellwigeead1912007-10-16 23:25:38 -07002407 */
James Morris057f6c02007-04-26 00:12:05 -07002408struct dentry *lookup_one_len(const char *name, struct dentry *base, int len)
2409{
James Morris057f6c02007-04-26 00:12:05 -07002410 struct qstr this;
Al Viro6a96ba52011-03-07 23:49:20 -05002411 unsigned int c;
Miklos Szeredicda309d2012-03-26 12:54:21 +02002412 int err;
James Morris057f6c02007-04-26 00:12:05 -07002413
Al Viro59551022016-01-22 15:40:57 -05002414 WARN_ON_ONCE(!inode_is_locked(base->d_inode));
David Woodhouse2f9092e2009-04-20 23:18:37 +01002415
Al Viro6a96ba52011-03-07 23:49:20 -05002416 this.name = name;
2417 this.len = len;
Linus Torvalds0145acc2012-03-02 14:32:59 -08002418 this.hash = full_name_hash(name, len);
Al Viro6a96ba52011-03-07 23:49:20 -05002419 if (!len)
2420 return ERR_PTR(-EACCES);
2421
Al Viro21d8a152012-11-29 22:17:21 -05002422 if (unlikely(name[0] == '.')) {
2423 if (len < 2 || (len == 2 && name[1] == '.'))
2424 return ERR_PTR(-EACCES);
2425 }
2426
Al Viro6a96ba52011-03-07 23:49:20 -05002427 while (len--) {
2428 c = *(const unsigned char *)name++;
2429 if (c == '/' || c == '\0')
2430 return ERR_PTR(-EACCES);
Al Viro6a96ba52011-03-07 23:49:20 -05002431 }
Al Viro5a202bc2011-03-08 14:17:44 -05002432 /*
2433 * See if the low-level filesystem might want
2434 * to use its own hash..
2435 */
2436 if (base->d_flags & DCACHE_OP_HASH) {
Linus Torvaldsda53be12013-05-21 15:22:44 -07002437 int err = base->d_op->d_hash(base, &this);
Al Viro5a202bc2011-03-08 14:17:44 -05002438 if (err < 0)
2439 return ERR_PTR(err);
2440 }
Christoph Hellwigeead1912007-10-16 23:25:38 -07002441
Miklos Szeredicda309d2012-03-26 12:54:21 +02002442 err = inode_permission(base->d_inode, MAY_EXEC);
2443 if (err)
2444 return ERR_PTR(err);
2445
Al Viro72bd8662012-06-10 17:17:17 -04002446 return __lookup_hash(&this, base, 0);
James Morris057f6c02007-04-26 00:12:05 -07002447}
Al Viro4d359502014-03-14 12:20:17 -04002448EXPORT_SYMBOL(lookup_one_len);
James Morris057f6c02007-04-26 00:12:05 -07002449
NeilBrownbbddca82016-01-07 16:08:20 -05002450/**
2451 * lookup_one_len_unlocked - filesystem helper to lookup single pathname component
2452 * @name: pathname component to lookup
2453 * @base: base directory to lookup from
2454 * @len: maximum length @len should be interpreted to
2455 *
2456 * Note that this routine is purely a helper for filesystem usage and should
2457 * not be called by generic code.
2458 *
2459 * Unlike lookup_one_len, it should be called without the parent
2460 * i_mutex held, and will take the i_mutex itself if necessary.
2461 */
2462struct dentry *lookup_one_len_unlocked(const char *name,
2463 struct dentry *base, int len)
2464{
2465 struct qstr this;
2466 unsigned int c;
2467 int err;
NeilBrownbbddca82016-01-07 16:08:20 -05002468
2469 this.name = name;
2470 this.len = len;
2471 this.hash = full_name_hash(name, len);
2472 if (!len)
2473 return ERR_PTR(-EACCES);
2474
2475 if (unlikely(name[0] == '.')) {
2476 if (len < 2 || (len == 2 && name[1] == '.'))
2477 return ERR_PTR(-EACCES);
2478 }
2479
2480 while (len--) {
2481 c = *(const unsigned char *)name++;
2482 if (c == '/' || c == '\0')
2483 return ERR_PTR(-EACCES);
2484 }
2485 /*
2486 * See if the low-level filesystem might want
2487 * to use its own hash..
2488 */
2489 if (base->d_flags & DCACHE_OP_HASH) {
2490 int err = base->d_op->d_hash(base, &this);
2491 if (err < 0)
2492 return ERR_PTR(err);
2493 }
2494
2495 err = inode_permission(base->d_inode, MAY_EXEC);
2496 if (err)
2497 return ERR_PTR(err);
2498
Miklos Szeredi3c9fe8c2016-05-11 01:16:37 +02002499 return lookup_hash(&this, base);
NeilBrownbbddca82016-01-07 16:08:20 -05002500}
2501EXPORT_SYMBOL(lookup_one_len_unlocked);
2502
Andy Whitcroft1fa1e7f2011-11-02 09:44:39 +01002503int user_path_at_empty(int dfd, const char __user *name, unsigned flags,
2504 struct path *path, int *empty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002505{
Al Viroabc9f5b2015-05-12 16:53:42 -04002506 return filename_lookup(dfd, getname_flags(name, flags, empty),
2507 flags, path, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508}
Al Virob853a162015-05-13 09:12:02 -04002509EXPORT_SYMBOL(user_path_at_empty);
Andy Whitcroft1fa1e7f2011-11-02 09:44:39 +01002510
Jeff Layton873f1ee2012-10-10 15:25:29 -04002511/*
2512 * NB: most callers don't do anything directly with the reference to the
2513 * to struct filename, but the nd->last pointer points into the name string
2514 * allocated by getname. So we must hold the reference to it until all
2515 * path-walking is complete.
2516 */
Al Viroa2ec4a22015-05-13 06:57:49 -04002517static inline struct filename *
Al Virof5beed72015-04-30 16:09:11 -04002518user_path_parent(int dfd, const char __user *path,
2519 struct path *parent,
2520 struct qstr *last,
2521 int *type,
Jeff Layton9e790bd2012-12-11 12:10:09 -05002522 unsigned int flags)
Al Viro2ad94ae2008-07-21 09:32:51 -04002523{
Jeff Layton9e790bd2012-12-11 12:10:09 -05002524 /* only LOOKUP_REVAL is allowed in extra flags */
Al Viro5c31b6c2015-05-12 17:32:54 -04002525 return filename_parentat(dfd, getname(path), flags & LOOKUP_REVAL,
2526 parent, last, type);
Al Viro2ad94ae2008-07-21 09:32:51 -04002527}
2528
Jeff Layton80334262013-07-26 06:23:25 -04002529/**
Al Viro197df042013-09-08 14:03:27 -04002530 * mountpoint_last - look up last component for umount
Jeff Layton80334262013-07-26 06:23:25 -04002531 * @nd: pathwalk nameidata - currently pointing at parent directory of "last"
2532 * @path: pointer to container for result
2533 *
2534 * This is a special lookup_last function just for umount. In this case, we
2535 * need to resolve the path without doing any revalidation.
2536 *
2537 * The nameidata should be the result of doing a LOOKUP_PARENT pathwalk. Since
2538 * mountpoints are always pinned in the dcache, their ancestors are too. Thus,
2539 * in almost all cases, this lookup will be served out of the dcache. The only
2540 * cases where it won't are if nd->last refers to a symlink or the path is
2541 * bogus and it doesn't exist.
2542 *
2543 * Returns:
2544 * -error: if there was an error during lookup. This includes -ENOENT if the
2545 * lookup found a negative dentry. The nd->path reference will also be
2546 * put in this case.
2547 *
2548 * 0: if we successfully resolved nd->path and found it to not to be a
2549 * symlink that needs to be followed. "path" will also be populated.
2550 * The nd->path reference will also be put.
2551 *
2552 * 1: if we successfully resolved nd->last and found it to be a symlink
2553 * that needs to be followed. "path" will be populated with the path
2554 * to the link, and nd->path will *not* be put.
2555 */
2556static int
Al Viro197df042013-09-08 14:03:27 -04002557mountpoint_last(struct nameidata *nd, struct path *path)
Jeff Layton80334262013-07-26 06:23:25 -04002558{
2559 int error = 0;
2560 struct dentry *dentry;
2561 struct dentry *dir = nd->path.dentry;
2562
Al Viro35759522013-09-08 13:41:33 -04002563 /* If we're in rcuwalk, drop out of it to handle last component */
2564 if (nd->flags & LOOKUP_RCU) {
Al Viro6e9918b2015-05-05 09:26:05 -04002565 if (unlazy_walk(nd, NULL, 0))
Al Virodeb106c2015-05-08 18:05:21 -04002566 return -ECHILD;
Jeff Layton80334262013-07-26 06:23:25 -04002567 }
2568
2569 nd->flags &= ~LOOKUP_PARENT;
2570
2571 if (unlikely(nd->last_type != LAST_NORM)) {
2572 error = handle_dots(nd, nd->last_type);
Al Viro35759522013-09-08 13:41:33 -04002573 if (error)
Al Virodeb106c2015-05-08 18:05:21 -04002574 return error;
Al Viro35759522013-09-08 13:41:33 -04002575 dentry = dget(nd->path.dentry);
Al Viro949a8522016-03-06 14:20:52 -05002576 } else {
2577 dentry = d_lookup(dir, &nd->last);
Jeff Layton80334262013-07-26 06:23:25 -04002578 if (!dentry) {
Al Viro949a8522016-03-06 14:20:52 -05002579 /*
2580 * No cached dentry. Mounted dentries are pinned in the
2581 * cache, so that means that this dentry is probably
2582 * a symlink or the path doesn't actually point
2583 * to a mounted dentry.
2584 */
2585 dentry = lookup_slow(&nd->last, dir,
2586 nd->flags | LOOKUP_NO_REVAL);
2587 if (IS_ERR(dentry))
2588 return PTR_ERR(dentry);
Dave Jonesbcceeeb2013-09-10 17:04:25 -04002589 }
Jeff Layton80334262013-07-26 06:23:25 -04002590 }
David Howells698934d2015-03-17 17:33:52 +00002591 if (d_is_negative(dentry)) {
Al Viro35759522013-09-08 13:41:33 -04002592 dput(dentry);
Al Virodeb106c2015-05-08 18:05:21 -04002593 return -ENOENT;
Jeff Layton80334262013-07-26 06:23:25 -04002594 }
Al Viro191d7f72015-05-04 08:26:45 -04002595 if (nd->depth)
2596 put_link(nd);
Al Viro35759522013-09-08 13:41:33 -04002597 path->dentry = dentry;
Vasily Averin295dc392014-07-21 12:30:23 +04002598 path->mnt = nd->path.mnt;
Al Viro181548c2015-05-07 19:54:34 -04002599 error = should_follow_link(nd, path, nd->flags & LOOKUP_FOLLOW,
2600 d_backing_inode(dentry), 0);
Al Virodeb106c2015-05-08 18:05:21 -04002601 if (unlikely(error))
Al Virod63ff282015-05-04 18:13:23 -04002602 return error;
Vasily Averin295dc392014-07-21 12:30:23 +04002603 mntget(path->mnt);
Al Viro35759522013-09-08 13:41:33 -04002604 follow_mount(path);
Al Virodeb106c2015-05-08 18:05:21 -04002605 return 0;
Jeff Layton80334262013-07-26 06:23:25 -04002606}
2607
2608/**
Al Viro197df042013-09-08 14:03:27 -04002609 * path_mountpoint - look up a path to be umounted
Masanari Iida2a78b8572015-09-09 15:39:23 -07002610 * @nd: lookup context
Jeff Layton80334262013-07-26 06:23:25 -04002611 * @flags: lookup flags
Al Viroc8a53ee2015-05-12 18:43:07 -04002612 * @path: pointer to container for result
Jeff Layton80334262013-07-26 06:23:25 -04002613 *
2614 * Look up the given name, but don't attempt to revalidate the last component.
Randy Dunlap606d6fe2013-10-19 14:56:55 -07002615 * Returns 0 and "path" will be valid on success; Returns error otherwise.
Jeff Layton80334262013-07-26 06:23:25 -04002616 */
2617static int
Al Viroc8a53ee2015-05-12 18:43:07 -04002618path_mountpoint(struct nameidata *nd, unsigned flags, struct path *path)
Jeff Layton80334262013-07-26 06:23:25 -04002619{
Al Viroc8a53ee2015-05-12 18:43:07 -04002620 const char *s = path_init(nd, flags);
Al Viro368ee9b2015-05-08 17:19:59 -04002621 int err;
2622 if (IS_ERR(s))
2623 return PTR_ERR(s);
Al Viro3bdba282015-05-08 17:37:07 -04002624 while (!(err = link_path_walk(s, nd)) &&
2625 (err = mountpoint_last(nd, path)) > 0) {
2626 s = trailing_symlink(nd);
2627 if (IS_ERR(s)) {
2628 err = PTR_ERR(s);
Jeff Layton80334262013-07-26 06:23:25 -04002629 break;
Al Viro3bdba282015-05-08 17:37:07 -04002630 }
Jeff Layton80334262013-07-26 06:23:25 -04002631 }
Al Virodeb106c2015-05-08 18:05:21 -04002632 terminate_walk(nd);
Jeff Layton80334262013-07-26 06:23:25 -04002633 return err;
2634}
2635
Al Viro2d864652013-09-08 20:18:44 -04002636static int
Al Viro668696d2015-02-22 19:44:00 -05002637filename_mountpoint(int dfd, struct filename *name, struct path *path,
Al Viro2d864652013-09-08 20:18:44 -04002638 unsigned int flags)
2639{
Al Viro9883d182015-05-13 07:28:08 -04002640 struct nameidata nd;
Al Virocbaab2d2015-01-22 02:49:00 -05002641 int error;
Al Viro668696d2015-02-22 19:44:00 -05002642 if (IS_ERR(name))
2643 return PTR_ERR(name);
Al Viro9883d182015-05-13 07:28:08 -04002644 set_nameidata(&nd, dfd, name);
Al Viroc8a53ee2015-05-12 18:43:07 -04002645 error = path_mountpoint(&nd, flags | LOOKUP_RCU, path);
Al Viro2d864652013-09-08 20:18:44 -04002646 if (unlikely(error == -ECHILD))
Al Viroc8a53ee2015-05-12 18:43:07 -04002647 error = path_mountpoint(&nd, flags, path);
Al Viro2d864652013-09-08 20:18:44 -04002648 if (unlikely(error == -ESTALE))
Al Viroc8a53ee2015-05-12 18:43:07 -04002649 error = path_mountpoint(&nd, flags | LOOKUP_REVAL, path);
Al Viro2d864652013-09-08 20:18:44 -04002650 if (likely(!error))
Al Viro668696d2015-02-22 19:44:00 -05002651 audit_inode(name, path->dentry, 0);
Al Viro9883d182015-05-13 07:28:08 -04002652 restore_nameidata();
Al Viro668696d2015-02-22 19:44:00 -05002653 putname(name);
Al Viro2d864652013-09-08 20:18:44 -04002654 return error;
2655}
2656
Jeff Layton80334262013-07-26 06:23:25 -04002657/**
Al Viro197df042013-09-08 14:03:27 -04002658 * user_path_mountpoint_at - lookup a path from userland in order to umount it
Jeff Layton80334262013-07-26 06:23:25 -04002659 * @dfd: directory file descriptor
2660 * @name: pathname from userland
2661 * @flags: lookup flags
2662 * @path: pointer to container to hold result
2663 *
2664 * A umount is a special case for path walking. We're not actually interested
2665 * in the inode in this situation, and ESTALE errors can be a problem. We
2666 * simply want track down the dentry and vfsmount attached at the mountpoint
2667 * and avoid revalidating the last component.
2668 *
2669 * Returns 0 and populates "path" on success.
2670 */
2671int
Al Viro197df042013-09-08 14:03:27 -04002672user_path_mountpoint_at(int dfd, const char __user *name, unsigned int flags,
Jeff Layton80334262013-07-26 06:23:25 -04002673 struct path *path)
2674{
Al Virocbaab2d2015-01-22 02:49:00 -05002675 return filename_mountpoint(dfd, getname(name), path, flags);
Jeff Layton80334262013-07-26 06:23:25 -04002676}
2677
Al Viro2d864652013-09-08 20:18:44 -04002678int
2679kern_path_mountpoint(int dfd, const char *name, struct path *path,
2680 unsigned int flags)
2681{
Al Virocbaab2d2015-01-22 02:49:00 -05002682 return filename_mountpoint(dfd, getname_kernel(name), path, flags);
Al Viro2d864652013-09-08 20:18:44 -04002683}
2684EXPORT_SYMBOL(kern_path_mountpoint);
2685
Miklos Szeredicbdf35b2014-10-24 00:14:36 +02002686int __check_sticky(struct inode *dir, struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002687{
Eric W. Biederman8e96e3b2012-03-03 21:17:15 -08002688 kuid_t fsuid = current_fsuid();
David Howellsda9592e2008-11-14 10:39:05 +11002689
Eric W. Biederman8e96e3b2012-03-03 21:17:15 -08002690 if (uid_eq(inode->i_uid, fsuid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002691 return 0;
Eric W. Biederman8e96e3b2012-03-03 21:17:15 -08002692 if (uid_eq(dir->i_uid, fsuid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002693 return 0;
Andy Lutomirski23adbe12014-06-10 12:45:42 -07002694 return !capable_wrt_inode_uidgid(inode, CAP_FOWNER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002695}
Miklos Szeredicbdf35b2014-10-24 00:14:36 +02002696EXPORT_SYMBOL(__check_sticky);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002697
2698/*
2699 * Check whether we can remove a link victim from directory dir, check
2700 * whether the type of victim is right.
2701 * 1. We can't do it if dir is read-only (done in permission())
2702 * 2. We should have write and exec permissions on dir
2703 * 3. We can't remove anything from append-only dir
2704 * 4. We can't do anything with immutable dir (done in permission())
2705 * 5. If the sticky bit on dir is set we should either
2706 * a. be owner of dir, or
2707 * b. be owner of victim, or
2708 * c. have CAP_FOWNER capability
2709 * 6. If the victim is append-only or immutable we can't do antyhing with
2710 * links pointing to it.
2711 * 7. If we were asked to remove a directory and victim isn't one - ENOTDIR.
2712 * 8. If we were asked to remove a non-directory and victim isn't one - EISDIR.
2713 * 9. We can't remove a root or mountpoint.
2714 * 10. We don't allow removal of NFS sillyrenamed files; it's handled by
2715 * nfs_async_unlink().
2716 */
David Howellsb18825a2013-09-12 19:22:53 +01002717static int may_delete(struct inode *dir, struct dentry *victim, bool isdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718{
David Howells63afdfc2015-05-06 15:59:00 +01002719 struct inode *inode = d_backing_inode(victim);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002720 int error;
2721
David Howellsb18825a2013-09-12 19:22:53 +01002722 if (d_is_negative(victim))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002723 return -ENOENT;
David Howellsb18825a2013-09-12 19:22:53 +01002724 BUG_ON(!inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002725
2726 BUG_ON(victim->d_parent->d_inode != dir);
Jeff Layton4fa6b5e2012-10-10 15:25:25 -04002727 audit_inode_child(dir, victim, AUDIT_TYPE_CHILD_DELETE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002728
Al Virof419a2e2008-07-22 00:07:17 -04002729 error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002730 if (error)
2731 return error;
2732 if (IS_APPEND(dir))
2733 return -EPERM;
David Howellsb18825a2013-09-12 19:22:53 +01002734
2735 if (check_sticky(dir, inode) || IS_APPEND(inode) ||
2736 IS_IMMUTABLE(inode) || IS_SWAPFILE(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002737 return -EPERM;
2738 if (isdir) {
Miklos Szeredi44b1d532014-04-01 17:08:41 +02002739 if (!d_is_dir(victim))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002740 return -ENOTDIR;
2741 if (IS_ROOT(victim))
2742 return -EBUSY;
Miklos Szeredi44b1d532014-04-01 17:08:41 +02002743 } else if (d_is_dir(victim))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002744 return -EISDIR;
2745 if (IS_DEADDIR(dir))
2746 return -ENOENT;
2747 if (victim->d_flags & DCACHE_NFSFS_RENAMED)
2748 return -EBUSY;
2749 return 0;
2750}
2751
2752/* Check whether we can create an object with dentry child in directory
2753 * dir.
2754 * 1. We can't do it if child already exists (open has special treatment for
2755 * this case, but since we are inlined it's OK)
2756 * 2. We can't do it if dir is read-only (done in permission())
2757 * 3. We should have write and exec permissions on dir
2758 * 4. We can't do it if dir is immutable (done in permission())
2759 */
Miklos Szeredia95164d2008-07-30 15:08:48 +02002760static inline int may_create(struct inode *dir, struct dentry *child)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002761{
Jeff Layton14e972b2013-05-08 10:25:58 -04002762 audit_inode_child(dir, child, AUDIT_TYPE_CHILD_CREATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002763 if (child->d_inode)
2764 return -EEXIST;
2765 if (IS_DEADDIR(dir))
2766 return -ENOENT;
Al Virof419a2e2008-07-22 00:07:17 -04002767 return inode_permission(dir, MAY_WRITE | MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002768}
2769
Linus Torvalds1da177e2005-04-16 15:20:36 -07002770/*
2771 * p1 and p2 should be directories on the same fs.
2772 */
2773struct dentry *lock_rename(struct dentry *p1, struct dentry *p2)
2774{
2775 struct dentry *p;
2776
2777 if (p1 == p2) {
Al Viro59551022016-01-22 15:40:57 -05002778 inode_lock_nested(p1->d_inode, I_MUTEX_PARENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002779 return NULL;
2780 }
2781
Arjan van de Vena11f3a02006-03-23 03:00:33 -08002782 mutex_lock(&p1->d_inode->i_sb->s_vfs_rename_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783
OGAWA Hirofumie2761a12008-10-16 07:50:28 +09002784 p = d_ancestor(p2, p1);
2785 if (p) {
Al Viro59551022016-01-22 15:40:57 -05002786 inode_lock_nested(p2->d_inode, I_MUTEX_PARENT);
2787 inode_lock_nested(p1->d_inode, I_MUTEX_CHILD);
OGAWA Hirofumie2761a12008-10-16 07:50:28 +09002788 return p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002789 }
2790
OGAWA Hirofumie2761a12008-10-16 07:50:28 +09002791 p = d_ancestor(p1, p2);
2792 if (p) {
Al Viro59551022016-01-22 15:40:57 -05002793 inode_lock_nested(p1->d_inode, I_MUTEX_PARENT);
2794 inode_lock_nested(p2->d_inode, I_MUTEX_CHILD);
OGAWA Hirofumie2761a12008-10-16 07:50:28 +09002795 return p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002796 }
2797
Al Viro59551022016-01-22 15:40:57 -05002798 inode_lock_nested(p1->d_inode, I_MUTEX_PARENT);
2799 inode_lock_nested(p2->d_inode, I_MUTEX_PARENT2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002800 return NULL;
2801}
Al Viro4d359502014-03-14 12:20:17 -04002802EXPORT_SYMBOL(lock_rename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002803
2804void unlock_rename(struct dentry *p1, struct dentry *p2)
2805{
Al Viro59551022016-01-22 15:40:57 -05002806 inode_unlock(p1->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002807 if (p1 != p2) {
Al Viro59551022016-01-22 15:40:57 -05002808 inode_unlock(p2->d_inode);
Arjan van de Vena11f3a02006-03-23 03:00:33 -08002809 mutex_unlock(&p1->d_inode->i_sb->s_vfs_rename_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002810 }
2811}
Al Viro4d359502014-03-14 12:20:17 -04002812EXPORT_SYMBOL(unlock_rename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002813
Al Viro4acdaf22011-07-26 01:42:34 -04002814int vfs_create(struct inode *dir, struct dentry *dentry, umode_t mode,
Al Viro312b63f2012-06-10 18:09:36 -04002815 bool want_excl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002816{
Miklos Szeredia95164d2008-07-30 15:08:48 +02002817 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002818 if (error)
2819 return error;
2820
Al Viroacfa4382008-12-04 10:06:33 -05002821 if (!dir->i_op->create)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002822 return -EACCES; /* shouldn't it be ENOSYS? */
2823 mode &= S_IALLUGO;
2824 mode |= S_IFREG;
2825 error = security_inode_create(dir, dentry, mode);
2826 if (error)
2827 return error;
Al Viro312b63f2012-06-10 18:09:36 -04002828 error = dir->i_op->create(dir, dentry, mode, want_excl);
Stephen Smalleya74574a2005-09-09 13:01:44 -07002829 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00002830 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002831 return error;
2832}
Al Viro4d359502014-03-14 12:20:17 -04002833EXPORT_SYMBOL(vfs_create);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002834
Al Viro73d049a2011-03-11 12:08:24 -05002835static int may_open(struct path *path, int acc_mode, int flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002836{
Christoph Hellwig3fb64192008-10-24 09:58:10 +02002837 struct dentry *dentry = path->dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002838 struct inode *inode = dentry->d_inode;
2839 int error;
2840
2841 if (!inode)
2842 return -ENOENT;
2843
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01002844 switch (inode->i_mode & S_IFMT) {
2845 case S_IFLNK:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002846 return -ELOOP;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01002847 case S_IFDIR:
2848 if (acc_mode & MAY_WRITE)
2849 return -EISDIR;
2850 break;
2851 case S_IFBLK:
2852 case S_IFCHR:
Christoph Hellwig3fb64192008-10-24 09:58:10 +02002853 if (path->mnt->mnt_flags & MNT_NODEV)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002854 return -EACCES;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01002855 /*FALLTHRU*/
2856 case S_IFIFO:
2857 case S_IFSOCK:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002858 flag &= ~O_TRUNC;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01002859 break;
Dave Hansen4a3fd212008-02-15 14:37:48 -08002860 }
Dave Hansenb41572e2007-10-16 23:31:14 -07002861
Al Viro62fb4a12015-12-26 22:33:24 -05002862 error = inode_permission(inode, MAY_OPEN | acc_mode);
Dave Hansenb41572e2007-10-16 23:31:14 -07002863 if (error)
2864 return error;
Mimi Zohar6146f0d2009-02-04 09:06:57 -05002865
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866 /*
2867 * An append-only file must be opened in append mode for writing.
2868 */
2869 if (IS_APPEND(inode)) {
Al Viro8737c932009-12-24 06:47:55 -05002870 if ((flag & O_ACCMODE) != O_RDONLY && !(flag & O_APPEND))
Al Viro7715b522009-12-16 03:54:00 -05002871 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002872 if (flag & O_TRUNC)
Al Viro7715b522009-12-16 03:54:00 -05002873 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002874 }
2875
2876 /* O_NOATIME can only be set by the owner or superuser */
Serge E. Hallyn2e149672011-03-23 16:43:26 -07002877 if (flag & O_NOATIME && !inode_owner_or_capable(inode))
Al Viro7715b522009-12-16 03:54:00 -05002878 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002879
J. Bruce Fieldsf3c7691e2011-09-21 10:58:13 -04002880 return 0;
Al Viro7715b522009-12-16 03:54:00 -05002881}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002882
Jeff Laytone1181ee2010-12-07 16:19:50 -05002883static int handle_truncate(struct file *filp)
Al Viro7715b522009-12-16 03:54:00 -05002884{
Jeff Laytone1181ee2010-12-07 16:19:50 -05002885 struct path *path = &filp->f_path;
Al Viro7715b522009-12-16 03:54:00 -05002886 struct inode *inode = path->dentry->d_inode;
2887 int error = get_write_access(inode);
2888 if (error)
2889 return error;
2890 /*
2891 * Refuse to truncate files with mandatory locks held on them.
2892 */
Jeff Laytond7a06982014-03-10 09:54:15 -04002893 error = locks_verify_locked(filp);
Al Viro7715b522009-12-16 03:54:00 -05002894 if (!error)
Tetsuo Handaea0d3ab2010-06-02 13:24:43 +09002895 error = security_path_truncate(path);
Al Viro7715b522009-12-16 03:54:00 -05002896 if (!error) {
2897 error = do_truncate(path->dentry, 0,
2898 ATTR_MTIME|ATTR_CTIME|ATTR_OPEN,
Jeff Laytone1181ee2010-12-07 16:19:50 -05002899 filp);
Al Viro7715b522009-12-16 03:54:00 -05002900 }
2901 put_write_access(inode);
Mimi Zoharacd0c932009-09-04 13:08:46 -04002902 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002903}
2904
Dave Hansend57999e2008-02-15 14:37:27 -08002905static inline int open_to_namei_flags(int flag)
2906{
Al Viro8a5e9292011-06-25 19:15:54 -04002907 if ((flag & O_ACCMODE) == 3)
2908 flag--;
Dave Hansend57999e2008-02-15 14:37:27 -08002909 return flag;
2910}
2911
Miklos Szeredid18e9002012-06-05 15:10:17 +02002912static int may_o_create(struct path *dir, struct dentry *dentry, umode_t mode)
2913{
2914 int error = security_path_mknod(dir, dentry, mode, 0);
2915 if (error)
2916 return error;
2917
2918 error = inode_permission(dir->dentry->d_inode, MAY_WRITE | MAY_EXEC);
2919 if (error)
2920 return error;
2921
2922 return security_inode_create(dir->dentry->d_inode, dentry, mode);
2923}
2924
David Howells1acf0af2012-06-14 16:13:46 +01002925/*
2926 * Attempt to atomically look up, create and open a file from a negative
2927 * dentry.
2928 *
2929 * Returns 0 if successful. The file will have been created and attached to
2930 * @file by the filesystem calling finish_open().
2931 *
2932 * Returns 1 if the file was looked up only or didn't need creating. The
2933 * caller will need to perform the open themselves. @path will have been
2934 * updated to point to the new dentry. This may be negative.
2935 *
2936 * Returns an error code otherwise.
2937 */
Al Viro2675a4e2012-06-22 12:41:10 +04002938static int atomic_open(struct nameidata *nd, struct dentry *dentry,
2939 struct path *path, struct file *file,
2940 const struct open_flags *op,
Al Viro64894cf2012-07-31 00:53:35 +04002941 bool got_write, bool need_lookup,
Al Viro2675a4e2012-06-22 12:41:10 +04002942 int *opened)
Miklos Szeredid18e9002012-06-05 15:10:17 +02002943{
2944 struct inode *dir = nd->path.dentry->d_inode;
2945 unsigned open_flag = open_to_namei_flags(op->open_flag);
2946 umode_t mode;
2947 int error;
2948 int acc_mode;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002949 int create_error = 0;
2950 struct dentry *const DENTRY_NOT_SET = (void *) -1UL;
Miklos Szeredi116cc022013-09-16 14:52:05 +02002951 bool excl;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002952
2953 BUG_ON(dentry->d_inode);
2954
2955 /* Don't create child dentry for a dead directory. */
2956 if (unlikely(IS_DEADDIR(dir))) {
Al Viro2675a4e2012-06-22 12:41:10 +04002957 error = -ENOENT;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002958 goto out;
2959 }
2960
Miklos Szeredi62b259d2012-08-15 13:01:24 +02002961 mode = op->mode;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002962 if ((open_flag & O_CREAT) && !IS_POSIXACL(dir))
2963 mode &= ~current_umask();
2964
Miklos Szeredi116cc022013-09-16 14:52:05 +02002965 excl = (open_flag & (O_EXCL | O_CREAT)) == (O_EXCL | O_CREAT);
2966 if (excl)
Miklos Szeredid18e9002012-06-05 15:10:17 +02002967 open_flag &= ~O_TRUNC;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002968
2969 /*
2970 * Checking write permission is tricky, bacuse we don't know if we are
2971 * going to actually need it: O_CREAT opens should work as long as the
2972 * file exists. But checking existence breaks atomicity. The trick is
2973 * to check access and if not granted clear O_CREAT from the flags.
2974 *
2975 * Another problem is returing the "right" error value (e.g. for an
2976 * O_EXCL open we want to return EEXIST not EROFS).
2977 */
Al Viro64894cf2012-07-31 00:53:35 +04002978 if (((open_flag & (O_CREAT | O_TRUNC)) ||
2979 (open_flag & O_ACCMODE) != O_RDONLY) && unlikely(!got_write)) {
2980 if (!(open_flag & O_CREAT)) {
Miklos Szeredid18e9002012-06-05 15:10:17 +02002981 /*
2982 * No O_CREATE -> atomicity not a requirement -> fall
2983 * back to lookup + open
2984 */
2985 goto no_open;
2986 } else if (open_flag & (O_EXCL | O_TRUNC)) {
2987 /* Fall back and fail with the right error */
Al Viro64894cf2012-07-31 00:53:35 +04002988 create_error = -EROFS;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002989 goto no_open;
2990 } else {
2991 /* No side effects, safe to clear O_CREAT */
Al Viro64894cf2012-07-31 00:53:35 +04002992 create_error = -EROFS;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002993 open_flag &= ~O_CREAT;
2994 }
2995 }
2996
2997 if (open_flag & O_CREAT) {
Miklos Szeredi38227f72012-08-15 13:01:24 +02002998 error = may_o_create(&nd->path, dentry, mode);
Miklos Szeredid18e9002012-06-05 15:10:17 +02002999 if (error) {
3000 create_error = error;
3001 if (open_flag & O_EXCL)
3002 goto no_open;
3003 open_flag &= ~O_CREAT;
3004 }
3005 }
3006
3007 if (nd->flags & LOOKUP_DIRECTORY)
3008 open_flag |= O_DIRECTORY;
3009
Al Viro30d90492012-06-22 12:40:19 +04003010 file->f_path.dentry = DENTRY_NOT_SET;
3011 file->f_path.mnt = nd->path.mnt;
3012 error = dir->i_op->atomic_open(dir, dentry, file, open_flag, mode,
Al Viro47237682012-06-10 05:01:45 -04003013 opened);
Al Virod9585272012-06-22 12:39:14 +04003014 if (error < 0) {
Al Virod9585272012-06-22 12:39:14 +04003015 if (create_error && error == -ENOENT)
3016 error = create_error;
Miklos Szeredid18e9002012-06-05 15:10:17 +02003017 goto out;
3018 }
3019
Al Virod9585272012-06-22 12:39:14 +04003020 if (error) { /* returned 1, that is */
Al Viro30d90492012-06-22 12:40:19 +04003021 if (WARN_ON(file->f_path.dentry == DENTRY_NOT_SET)) {
Al Viro2675a4e2012-06-22 12:41:10 +04003022 error = -EIO;
Miklos Szeredid18e9002012-06-05 15:10:17 +02003023 goto out;
3024 }
Al Viro30d90492012-06-22 12:40:19 +04003025 if (file->f_path.dentry) {
Miklos Szeredid18e9002012-06-05 15:10:17 +02003026 dput(dentry);
Al Viro30d90492012-06-22 12:40:19 +04003027 dentry = file->f_path.dentry;
Miklos Szeredid18e9002012-06-05 15:10:17 +02003028 }
Al Viro03da6332013-09-16 19:22:33 -04003029 if (*opened & FILE_CREATED)
3030 fsnotify_create(dir, dentry);
3031 if (!dentry->d_inode) {
3032 WARN_ON(*opened & FILE_CREATED);
3033 if (create_error) {
3034 error = create_error;
3035 goto out;
3036 }
3037 } else {
3038 if (excl && !(*opened & FILE_CREATED)) {
3039 error = -EEXIST;
3040 goto out;
3041 }
Sage Weil62b2ce92012-08-15 13:30:12 -07003042 }
Miklos Szeredid18e9002012-06-05 15:10:17 +02003043 goto looked_up;
3044 }
3045
3046 /*
3047 * We didn't have the inode before the open, so check open permission
3048 * here.
3049 */
Al Viro03da6332013-09-16 19:22:33 -04003050 acc_mode = op->acc_mode;
3051 if (*opened & FILE_CREATED) {
3052 WARN_ON(!(open_flag & O_CREAT));
3053 fsnotify_create(dir, dentry);
Al Viro62fb4a12015-12-26 22:33:24 -05003054 acc_mode = 0;
Al Viro03da6332013-09-16 19:22:33 -04003055 }
Al Viro2675a4e2012-06-22 12:41:10 +04003056 error = may_open(&file->f_path, acc_mode, open_flag);
3057 if (error)
3058 fput(file);
Miklos Szeredid18e9002012-06-05 15:10:17 +02003059
3060out:
3061 dput(dentry);
Al Viro2675a4e2012-06-22 12:41:10 +04003062 return error;
Miklos Szeredid18e9002012-06-05 15:10:17 +02003063
Miklos Szeredid18e9002012-06-05 15:10:17 +02003064no_open:
3065 if (need_lookup) {
Al Viro72bd8662012-06-10 17:17:17 -04003066 dentry = lookup_real(dir, dentry, nd->flags);
Miklos Szeredid18e9002012-06-05 15:10:17 +02003067 if (IS_ERR(dentry))
Al Viro2675a4e2012-06-22 12:41:10 +04003068 return PTR_ERR(dentry);
Al Viro10c64ce2016-04-27 01:11:55 -04003069 }
3070 if (create_error && !dentry->d_inode) {
3071 error = create_error;
3072 goto out;
Miklos Szeredid18e9002012-06-05 15:10:17 +02003073 }
3074looked_up:
3075 path->dentry = dentry;
3076 path->mnt = nd->path.mnt;
Al Viro2675a4e2012-06-22 12:41:10 +04003077 return 1;
Miklos Szeredid18e9002012-06-05 15:10:17 +02003078}
3079
Nick Piggin31e6b012011-01-07 17:49:52 +11003080/*
David Howells1acf0af2012-06-14 16:13:46 +01003081 * Look up and maybe create and open the last component.
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003082 *
3083 * Must be called with i_mutex held on parent.
3084 *
David Howells1acf0af2012-06-14 16:13:46 +01003085 * Returns 0 if the file was successfully atomically created (if necessary) and
3086 * opened. In this case the file will be returned attached to @file.
3087 *
3088 * Returns 1 if the file was not completely opened at this time, though lookups
3089 * and creations will have been performed and the dentry returned in @path will
3090 * be positive upon return if O_CREAT was specified. If O_CREAT wasn't
3091 * specified then a negative dentry may be returned.
3092 *
3093 * An error code is returned otherwise.
3094 *
3095 * FILE_CREATE will be set in @*opened if the dentry was created and will be
3096 * cleared otherwise prior to returning.
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003097 */
Al Viro2675a4e2012-06-22 12:41:10 +04003098static int lookup_open(struct nameidata *nd, struct path *path,
3099 struct file *file,
3100 const struct open_flags *op,
Al Viro64894cf2012-07-31 00:53:35 +04003101 bool got_write, int *opened)
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003102{
3103 struct dentry *dir = nd->path.dentry;
Miklos Szeredi54ef4872012-06-05 15:10:16 +02003104 struct inode *dir_inode = dir->d_inode;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003105 struct dentry *dentry;
3106 int error;
Al Viro6c51e512016-03-05 20:09:32 -05003107 bool need_lookup = false;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003108
Al Viro47237682012-06-10 05:01:45 -04003109 *opened &= ~FILE_CREATED;
Al Viro6c51e512016-03-05 20:09:32 -05003110 dentry = lookup_dcache(&nd->last, dir, nd->flags);
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003111 if (IS_ERR(dentry))
Al Viro2675a4e2012-06-22 12:41:10 +04003112 return PTR_ERR(dentry);
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003113
Al Viro6c51e512016-03-05 20:09:32 -05003114 if (!dentry) {
3115 dentry = d_alloc(dir, &nd->last);
3116 if (unlikely(!dentry))
3117 return -ENOMEM;
3118 need_lookup = true;
3119 } else if (dentry->d_inode) {
3120 /* Cached positive dentry: will open in f_op->open */
Miklos Szeredid18e9002012-06-05 15:10:17 +02003121 goto out_no_open;
Al Viro6c51e512016-03-05 20:09:32 -05003122 }
Miklos Szeredid18e9002012-06-05 15:10:17 +02003123
3124 if ((nd->flags & LOOKUP_OPEN) && dir_inode->i_op->atomic_open) {
Al Viro64894cf2012-07-31 00:53:35 +04003125 return atomic_open(nd, dentry, path, file, op, got_write,
Al Viro47237682012-06-10 05:01:45 -04003126 need_lookup, opened);
Miklos Szeredid18e9002012-06-05 15:10:17 +02003127 }
3128
Miklos Szeredi54ef4872012-06-05 15:10:16 +02003129 if (need_lookup) {
3130 BUG_ON(dentry->d_inode);
3131
Al Viro72bd8662012-06-10 17:17:17 -04003132 dentry = lookup_real(dir_inode, dentry, nd->flags);
Miklos Szeredi54ef4872012-06-05 15:10:16 +02003133 if (IS_ERR(dentry))
Al Viro2675a4e2012-06-22 12:41:10 +04003134 return PTR_ERR(dentry);
Miklos Szeredi54ef4872012-06-05 15:10:16 +02003135 }
3136
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003137 /* Negative dentry, just create the file */
3138 if (!dentry->d_inode && (op->open_flag & O_CREAT)) {
3139 umode_t mode = op->mode;
3140 if (!IS_POSIXACL(dir->d_inode))
3141 mode &= ~current_umask();
3142 /*
3143 * This write is needed to ensure that a
3144 * rw->ro transition does not occur between
3145 * the time when the file is created and when
3146 * a permanent write count is taken through
Miklos Szeredi015c3bb2012-06-05 15:10:27 +02003147 * the 'struct file' in finish_open().
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003148 */
Al Viro64894cf2012-07-31 00:53:35 +04003149 if (!got_write) {
3150 error = -EROFS;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003151 goto out_dput;
Al Viro64894cf2012-07-31 00:53:35 +04003152 }
Al Viro47237682012-06-10 05:01:45 -04003153 *opened |= FILE_CREATED;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003154 error = security_path_mknod(&nd->path, dentry, mode, 0);
3155 if (error)
3156 goto out_dput;
Al Viro312b63f2012-06-10 18:09:36 -04003157 error = vfs_create(dir->d_inode, dentry, mode,
3158 nd->flags & LOOKUP_EXCL);
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003159 if (error)
3160 goto out_dput;
3161 }
Miklos Szeredid18e9002012-06-05 15:10:17 +02003162out_no_open:
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003163 path->dentry = dentry;
3164 path->mnt = nd->path.mnt;
Al Viro2675a4e2012-06-22 12:41:10 +04003165 return 1;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003166
3167out_dput:
3168 dput(dentry);
Al Viro2675a4e2012-06-22 12:41:10 +04003169 return error;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003170}
3171
3172/*
Al Virofe2d35f2011-03-05 22:58:25 -05003173 * Handle the last step of open()
Nick Piggin31e6b012011-01-07 17:49:52 +11003174 */
Al Viro896475d2015-04-22 18:02:17 -04003175static int do_last(struct nameidata *nd,
Al Viro2675a4e2012-06-22 12:41:10 +04003176 struct file *file, const struct open_flags *op,
Al Viro76ae2a52015-05-12 18:44:32 -04003177 int *opened)
Al Virofb1cc552009-12-24 01:58:28 -05003178{
Al Viroa1e28032009-12-24 02:12:06 -05003179 struct dentry *dir = nd->path.dentry;
Al Viroca344a892011-03-09 00:36:45 -05003180 int open_flag = op->open_flag;
Miklos Szeredi77d660a2012-06-05 15:10:30 +02003181 bool will_truncate = (open_flag & O_TRUNC) != 0;
Al Viro64894cf2012-07-31 00:53:35 +04003182 bool got_write = false;
Al Virobcda7652011-03-13 16:42:14 -04003183 int acc_mode = op->acc_mode;
Al Viro254cf582015-05-05 09:40:46 -04003184 unsigned seq;
Miklos Szeredia1eb3312012-05-21 17:30:07 +02003185 struct inode *inode;
Miklos Szeredi16b1c1c2012-05-21 17:30:19 +02003186 struct path save_parent = { .dentry = NULL, .mnt = NULL };
Al Viro896475d2015-04-22 18:02:17 -04003187 struct path path;
Miklos Szeredi16b1c1c2012-05-21 17:30:19 +02003188 bool retried = false;
Al Viro16c2cd72011-02-22 15:50:10 -05003189 int error;
Al Virofb1cc552009-12-24 01:58:28 -05003190
Al Viroc3e380b2011-02-23 13:39:45 -05003191 nd->flags &= ~LOOKUP_PARENT;
3192 nd->flags |= op->intent;
3193
Al Virobc77daa2013-06-06 09:12:33 -04003194 if (nd->last_type != LAST_NORM) {
Al Virofe2d35f2011-03-05 22:58:25 -05003195 error = handle_dots(nd, nd->last_type);
Al Virodeb106c2015-05-08 18:05:21 -04003196 if (unlikely(error))
Al Viro2675a4e2012-06-22 12:41:10 +04003197 return error;
Miklos Szeredie83db162012-06-05 15:10:29 +02003198 goto finish_open;
Al Viro1f36f772009-12-26 10:56:19 -05003199 }
Al Viro67ee3ad2009-12-26 07:01:01 -05003200
Al Viroca344a892011-03-09 00:36:45 -05003201 if (!(open_flag & O_CREAT)) {
Al Virofe2d35f2011-03-05 22:58:25 -05003202 if (nd->last.name[nd->last.len])
3203 nd->flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
3204 /* we _can_ be in RCU mode here */
Al Viro254cf582015-05-05 09:40:46 -04003205 error = lookup_fast(nd, &path, &inode, &seq);
Al Viroe9742b52016-03-05 22:04:59 -05003206 if (likely(error > 0))
Miklos Szeredi71574862012-06-05 15:10:14 +02003207 goto finish_lookup;
Miklos Szeredia1eb3312012-05-21 17:30:07 +02003208
Miklos Szeredi71574862012-06-05 15:10:14 +02003209 if (error < 0)
Al Virodeb106c2015-05-08 18:05:21 -04003210 return error;
Miklos Szeredi37d7fff2012-06-05 15:10:12 +02003211
Miklos Szeredi71574862012-06-05 15:10:14 +02003212 BUG_ON(nd->inode != dir->d_inode);
Al Viro6583fe22016-03-05 18:14:03 -05003213 BUG_ON(nd->flags & LOOKUP_RCU);
Miklos Szeredib6183df2012-06-05 15:10:13 +02003214 } else {
3215 /* create side of things */
3216 /*
3217 * This will *only* deal with leaving RCU mode - LOOKUP_JUMPED
3218 * has been cleared when we got to the last component we are
3219 * about to look up
3220 */
3221 error = complete_walk(nd);
Al Viroe8bb73d2015-05-08 16:28:42 -04003222 if (error)
Al Viro2675a4e2012-06-22 12:41:10 +04003223 return error;
Miklos Szeredib6183df2012-06-05 15:10:13 +02003224
Al Viro76ae2a52015-05-12 18:44:32 -04003225 audit_inode(nd->name, dir, LOOKUP_PARENT);
Miklos Szeredib6183df2012-06-05 15:10:13 +02003226 /* trailing slashes? */
Al Virodeb106c2015-05-08 18:05:21 -04003227 if (unlikely(nd->last.name[nd->last.len]))
3228 return -EISDIR;
Al Virofe2d35f2011-03-05 22:58:25 -05003229 }
3230
Miklos Szeredi16b1c1c2012-05-21 17:30:19 +02003231retry_lookup:
Al Viro64894cf2012-07-31 00:53:35 +04003232 if (op->open_flag & (O_CREAT | O_TRUNC | O_WRONLY | O_RDWR)) {
3233 error = mnt_want_write(nd->path.mnt);
3234 if (!error)
3235 got_write = true;
3236 /*
3237 * do _not_ fail yet - we might not need that or fail with
3238 * a different error; let lookup_open() decide; we'll be
3239 * dropping this one anyway.
3240 */
3241 }
Al Viro59551022016-01-22 15:40:57 -05003242 inode_lock(dir->d_inode);
Al Viro896475d2015-04-22 18:02:17 -04003243 error = lookup_open(nd, &path, file, op, got_write, opened);
Al Viro59551022016-01-22 15:40:57 -05003244 inode_unlock(dir->d_inode);
Al Viroa1e28032009-12-24 02:12:06 -05003245
Al Viro2675a4e2012-06-22 12:41:10 +04003246 if (error <= 0) {
3247 if (error)
Miklos Szeredid18e9002012-06-05 15:10:17 +02003248 goto out;
3249
Al Viro47237682012-06-10 05:01:45 -04003250 if ((*opened & FILE_CREATED) ||
Al Viro496ad9a2013-01-23 17:07:38 -05003251 !S_ISREG(file_inode(file)->i_mode))
Miklos Szeredi77d660a2012-06-05 15:10:30 +02003252 will_truncate = false;
Miklos Szeredid18e9002012-06-05 15:10:17 +02003253
Al Viro76ae2a52015-05-12 18:44:32 -04003254 audit_inode(nd->name, file->f_path.dentry, 0);
Miklos Szeredid18e9002012-06-05 15:10:17 +02003255 goto opened;
3256 }
Al Virofb1cc552009-12-24 01:58:28 -05003257
Al Viro47237682012-06-10 05:01:45 -04003258 if (*opened & FILE_CREATED) {
Al Viro9b44f1b2011-03-09 00:17:27 -05003259 /* Don't check for write permission, don't truncate */
Al Viroca344a892011-03-09 00:36:45 -05003260 open_flag &= ~O_TRUNC;
Miklos Szeredi77d660a2012-06-05 15:10:30 +02003261 will_truncate = false;
Al Viro62fb4a12015-12-26 22:33:24 -05003262 acc_mode = 0;
Al Viro896475d2015-04-22 18:02:17 -04003263 path_to_nameidata(&path, nd);
Miklos Szeredie83db162012-06-05 15:10:29 +02003264 goto finish_open_created;
Al Virofb1cc552009-12-24 01:58:28 -05003265 }
3266
3267 /*
Miklos Szeredid18e9002012-06-05 15:10:17 +02003268 * If atomic_open() acquired write access it is dropped now due to
3269 * possible mount and symlink following (this might be optimized away if
3270 * necessary...)
3271 */
Al Viro64894cf2012-07-31 00:53:35 +04003272 if (got_write) {
Miklos Szeredid18e9002012-06-05 15:10:17 +02003273 mnt_drop_write(nd->path.mnt);
Al Viro64894cf2012-07-31 00:53:35 +04003274 got_write = false;
Miklos Szeredid18e9002012-06-05 15:10:17 +02003275 }
3276
Al Viro6583fe22016-03-05 18:14:03 -05003277 if (unlikely(d_is_negative(path.dentry))) {
3278 path_to_nameidata(&path, nd);
3279 return -ENOENT;
3280 }
3281
3282 /*
3283 * create/update audit record if it already exists.
3284 */
3285 audit_inode(nd->name, path.dentry, 0);
3286
Al Virodeb106c2015-05-08 18:05:21 -04003287 if (unlikely((open_flag & (O_EXCL | O_CREAT)) == (O_EXCL | O_CREAT))) {
3288 path_to_nameidata(&path, nd);
3289 return -EEXIST;
3290 }
Al Virofb1cc552009-12-24 01:58:28 -05003291
NeilBrown756daf22015-03-23 13:37:38 +11003292 error = follow_managed(&path, nd);
Al Virodeb106c2015-05-08 18:05:21 -04003293 if (unlikely(error < 0))
3294 return error;
Al Viroa3fbbde2011-11-07 21:21:26 +00003295
Al Viro254cf582015-05-05 09:40:46 -04003296 seq = 0; /* out of RCU mode, so the value doesn't matter */
Al Virod4565642016-02-27 19:23:16 -05003297 inode = d_backing_inode(path.dentry);
Al Viro766c4cb2015-05-07 19:24:57 -04003298finish_lookup:
Al Virod63ff282015-05-04 18:13:23 -04003299 if (nd->depth)
3300 put_link(nd);
Al Viro181548c2015-05-07 19:54:34 -04003301 error = should_follow_link(nd, &path, nd->flags & LOOKUP_FOLLOW,
3302 inode, seq);
Al Virodeb106c2015-05-08 18:05:21 -04003303 if (unlikely(error))
Al Virod63ff282015-05-04 18:13:23 -04003304 return error;
Al Virofb1cc552009-12-24 01:58:28 -05003305
Al Viro896475d2015-04-22 18:02:17 -04003306 if ((nd->flags & LOOKUP_RCU) || nd->path.mnt != path.mnt) {
3307 path_to_nameidata(&path, nd);
Miklos Szeredi16b1c1c2012-05-21 17:30:19 +02003308 } else {
3309 save_parent.dentry = nd->path.dentry;
Al Viro896475d2015-04-22 18:02:17 -04003310 save_parent.mnt = mntget(path.mnt);
3311 nd->path.dentry = path.dentry;
Miklos Szeredi16b1c1c2012-05-21 17:30:19 +02003312
3313 }
Miklos Szeredidecf3402012-05-21 17:30:08 +02003314 nd->inode = inode;
Al Viro254cf582015-05-05 09:40:46 -04003315 nd->seq = seq;
Al Viroa3fbbde2011-11-07 21:21:26 +00003316 /* Why this, you ask? _Now_ we might have grown LOOKUP_JUMPED... */
Al Virobc77daa2013-06-06 09:12:33 -04003317finish_open:
Al Viroa3fbbde2011-11-07 21:21:26 +00003318 error = complete_walk(nd);
Miklos Szeredi16b1c1c2012-05-21 17:30:19 +02003319 if (error) {
3320 path_put(&save_parent);
Al Viro2675a4e2012-06-22 12:41:10 +04003321 return error;
Miklos Szeredi16b1c1c2012-05-21 17:30:19 +02003322 }
Al Viro76ae2a52015-05-12 18:44:32 -04003323 audit_inode(nd->name, nd->path.dentry, 0);
Al Viro5129fa42016-02-27 19:37:37 -05003324 if (unlikely(d_is_symlink(nd->path.dentry)) && !(open_flag & O_PATH)) {
3325 error = -ELOOP;
3326 goto out;
3327 }
Al Virofb1cc552009-12-24 01:58:28 -05003328 error = -EISDIR;
Miklos Szeredi44b1d532014-04-01 17:08:41 +02003329 if ((open_flag & O_CREAT) && d_is_dir(nd->path.dentry))
Al Viro2675a4e2012-06-22 12:41:10 +04003330 goto out;
Miklos Szerediaf2f5542012-05-21 17:30:11 +02003331 error = -ENOTDIR;
Miklos Szeredi44b1d532014-04-01 17:08:41 +02003332 if ((nd->flags & LOOKUP_DIRECTORY) && !d_can_lookup(nd->path.dentry))
Al Viro2675a4e2012-06-22 12:41:10 +04003333 goto out;
David Howells4bbcbd3b2015-03-17 22:16:40 +00003334 if (!d_is_reg(nd->path.dentry))
Miklos Szeredi77d660a2012-06-05 15:10:30 +02003335 will_truncate = false;
Al Viro6c0d46c2011-03-09 00:59:59 -05003336
Al Viro0f9d1a12011-03-09 00:13:14 -05003337 if (will_truncate) {
3338 error = mnt_want_write(nd->path.mnt);
3339 if (error)
Al Viro2675a4e2012-06-22 12:41:10 +04003340 goto out;
Al Viro64894cf2012-07-31 00:53:35 +04003341 got_write = true;
Al Viro0f9d1a12011-03-09 00:13:14 -05003342 }
Miklos Szeredie83db162012-06-05 15:10:29 +02003343finish_open_created:
Al Viro62fb4a12015-12-26 22:33:24 -05003344 if (likely(!(open_flag & O_PATH))) {
3345 error = may_open(&nd->path, acc_mode, open_flag);
3346 if (error)
3347 goto out;
3348 }
Miklos Szeredi4aa7c632014-10-24 00:14:35 +02003349 BUG_ON(*opened & FILE_OPENED); /* once it's opened, it's opened */
3350 error = vfs_open(&nd->path, file, current_cred());
3351 if (!error) {
3352 *opened |= FILE_OPENED;
3353 } else {
Al Viro30d90492012-06-22 12:40:19 +04003354 if (error == -EOPENSTALE)
Miklos Szeredif60dc3d2012-06-05 15:10:31 +02003355 goto stale_open;
Miklos Szeredi015c3bb2012-06-05 15:10:27 +02003356 goto out;
Miklos Szeredif60dc3d2012-06-05 15:10:31 +02003357 }
Miklos Szeredia8277b92012-06-05 15:10:32 +02003358opened:
Al Viro2675a4e2012-06-22 12:41:10 +04003359 error = open_check_o_direct(file);
Miklos Szeredi015c3bb2012-06-05 15:10:27 +02003360 if (error)
3361 goto exit_fput;
Dmitry Kasatkin3034a142014-06-27 18:15:44 +03003362 error = ima_file_check(file, op->acc_mode, *opened);
Miklos Szerediaa4caad2012-06-05 15:10:28 +02003363 if (error)
3364 goto exit_fput;
3365
3366 if (will_truncate) {
Al Viro2675a4e2012-06-22 12:41:10 +04003367 error = handle_truncate(file);
Miklos Szerediaa4caad2012-06-05 15:10:28 +02003368 if (error)
3369 goto exit_fput;
Al Viro0f9d1a12011-03-09 00:13:14 -05003370 }
Al Viroca344a892011-03-09 00:36:45 -05003371out:
Al Viroc80567c2016-02-27 19:17:33 -05003372 if (unlikely(error > 0)) {
3373 WARN_ON(1);
3374 error = -EINVAL;
3375 }
Al Viro64894cf2012-07-31 00:53:35 +04003376 if (got_write)
Al Viro0f9d1a12011-03-09 00:13:14 -05003377 mnt_drop_write(nd->path.mnt);
Miklos Szeredi16b1c1c2012-05-21 17:30:19 +02003378 path_put(&save_parent);
Al Viro2675a4e2012-06-22 12:41:10 +04003379 return error;
Al Virofb1cc552009-12-24 01:58:28 -05003380
Miklos Szeredi015c3bb2012-06-05 15:10:27 +02003381exit_fput:
Al Viro2675a4e2012-06-22 12:41:10 +04003382 fput(file);
3383 goto out;
Miklos Szeredi015c3bb2012-06-05 15:10:27 +02003384
Miklos Szeredif60dc3d2012-06-05 15:10:31 +02003385stale_open:
3386 /* If no saved parent or already retried then can't retry */
3387 if (!save_parent.dentry || retried)
3388 goto out;
3389
3390 BUG_ON(save_parent.dentry != dir);
3391 path_put(&nd->path);
3392 nd->path = save_parent;
3393 nd->inode = dir->d_inode;
3394 save_parent.mnt = NULL;
3395 save_parent.dentry = NULL;
Al Viro64894cf2012-07-31 00:53:35 +04003396 if (got_write) {
Miklos Szeredif60dc3d2012-06-05 15:10:31 +02003397 mnt_drop_write(nd->path.mnt);
Al Viro64894cf2012-07-31 00:53:35 +04003398 got_write = false;
Miklos Szeredif60dc3d2012-06-05 15:10:31 +02003399 }
3400 retried = true;
3401 goto retry_lookup;
Al Virofb1cc552009-12-24 01:58:28 -05003402}
3403
Al Viroc8a53ee2015-05-12 18:43:07 -04003404static int do_tmpfile(struct nameidata *nd, unsigned flags,
Al Viro60545d02013-06-07 01:20:27 -04003405 const struct open_flags *op,
3406 struct file *file, int *opened)
3407{
3408 static const struct qstr name = QSTR_INIT("/", 1);
Al Viro625b6d12015-05-12 16:36:12 -04003409 struct dentry *child;
Al Viro60545d02013-06-07 01:20:27 -04003410 struct inode *dir;
Al Viro625b6d12015-05-12 16:36:12 -04003411 struct path path;
Al Viroc8a53ee2015-05-12 18:43:07 -04003412 int error = path_lookupat(nd, flags | LOOKUP_DIRECTORY, &path);
Al Viro60545d02013-06-07 01:20:27 -04003413 if (unlikely(error))
3414 return error;
Al Viro625b6d12015-05-12 16:36:12 -04003415 error = mnt_want_write(path.mnt);
Al Viro60545d02013-06-07 01:20:27 -04003416 if (unlikely(error))
3417 goto out;
Al Viro625b6d12015-05-12 16:36:12 -04003418 dir = path.dentry->d_inode;
Al Viro60545d02013-06-07 01:20:27 -04003419 /* we want directory to be writable */
Al Viro625b6d12015-05-12 16:36:12 -04003420 error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
Al Viro60545d02013-06-07 01:20:27 -04003421 if (error)
3422 goto out2;
Al Viro60545d02013-06-07 01:20:27 -04003423 if (!dir->i_op->tmpfile) {
3424 error = -EOPNOTSUPP;
3425 goto out2;
3426 }
Al Viro625b6d12015-05-12 16:36:12 -04003427 child = d_alloc(path.dentry, &name);
Al Viro60545d02013-06-07 01:20:27 -04003428 if (unlikely(!child)) {
3429 error = -ENOMEM;
3430 goto out2;
3431 }
Al Viro625b6d12015-05-12 16:36:12 -04003432 dput(path.dentry);
3433 path.dentry = child;
3434 error = dir->i_op->tmpfile(dir, child, op->mode);
Al Viro60545d02013-06-07 01:20:27 -04003435 if (error)
3436 goto out2;
Al Viroc8a53ee2015-05-12 18:43:07 -04003437 audit_inode(nd->name, child, 0);
Eric Rannaud69a91c22014-10-30 01:51:01 -07003438 /* Don't check for other permissions, the inode was just created */
Al Viro62fb4a12015-12-26 22:33:24 -05003439 error = may_open(&path, 0, op->open_flag);
Al Viro60545d02013-06-07 01:20:27 -04003440 if (error)
3441 goto out2;
Al Viro625b6d12015-05-12 16:36:12 -04003442 file->f_path.mnt = path.mnt;
3443 error = finish_open(file, child, NULL, opened);
Al Viro60545d02013-06-07 01:20:27 -04003444 if (error)
3445 goto out2;
3446 error = open_check_o_direct(file);
Al Virof4e0c302013-06-11 08:34:36 +04003447 if (error) {
Al Viro60545d02013-06-07 01:20:27 -04003448 fput(file);
Al Virof4e0c302013-06-11 08:34:36 +04003449 } else if (!(op->open_flag & O_EXCL)) {
3450 struct inode *inode = file_inode(file);
3451 spin_lock(&inode->i_lock);
3452 inode->i_state |= I_LINKABLE;
3453 spin_unlock(&inode->i_lock);
3454 }
Al Viro60545d02013-06-07 01:20:27 -04003455out2:
Al Viro625b6d12015-05-12 16:36:12 -04003456 mnt_drop_write(path.mnt);
Al Viro60545d02013-06-07 01:20:27 -04003457out:
Al Viro625b6d12015-05-12 16:36:12 -04003458 path_put(&path);
Al Viro60545d02013-06-07 01:20:27 -04003459 return error;
3460}
3461
Al Viroc8a53ee2015-05-12 18:43:07 -04003462static struct file *path_openat(struct nameidata *nd,
3463 const struct open_flags *op, unsigned flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003464{
Al Viro368ee9b2015-05-08 17:19:59 -04003465 const char *s;
Al Viro30d90492012-06-22 12:40:19 +04003466 struct file *file;
Al Viro47237682012-06-10 05:01:45 -04003467 int opened = 0;
Al Viro13aab422011-02-23 17:54:08 -05003468 int error;
Nick Piggin31e6b012011-01-07 17:49:52 +11003469
Al Viro30d90492012-06-22 12:40:19 +04003470 file = get_empty_filp();
Al Viro1afc99b2013-02-14 20:41:04 -05003471 if (IS_ERR(file))
3472 return file;
Nick Piggin31e6b012011-01-07 17:49:52 +11003473
Al Viro30d90492012-06-22 12:40:19 +04003474 file->f_flags = op->open_flag;
Nick Piggin31e6b012011-01-07 17:49:52 +11003475
Al Virobb458c62013-07-13 13:26:37 +04003476 if (unlikely(file->f_flags & __O_TMPFILE)) {
Al Viroc8a53ee2015-05-12 18:43:07 -04003477 error = do_tmpfile(nd, flags, op, file, &opened);
Al Virof15133d2015-05-08 22:53:15 -04003478 goto out2;
Al Viro60545d02013-06-07 01:20:27 -04003479 }
3480
Al Viroc8a53ee2015-05-12 18:43:07 -04003481 s = path_init(nd, flags);
Al Viro368ee9b2015-05-08 17:19:59 -04003482 if (IS_ERR(s)) {
3483 put_filp(file);
3484 return ERR_CAST(s);
3485 }
Al Viro3bdba282015-05-08 17:37:07 -04003486 while (!(error = link_path_walk(s, nd)) &&
Al Viro76ae2a52015-05-12 18:44:32 -04003487 (error = do_last(nd, file, op, &opened)) > 0) {
Al Viro73d049a2011-03-11 12:08:24 -05003488 nd->flags &= ~(LOOKUP_OPEN|LOOKUP_CREATE|LOOKUP_EXCL);
Al Viro3bdba282015-05-08 17:37:07 -04003489 s = trailing_symlink(nd);
3490 if (IS_ERR(s)) {
3491 error = PTR_ERR(s);
Al Viro2675a4e2012-06-22 12:41:10 +04003492 break;
Al Viro3bdba282015-05-08 17:37:07 -04003493 }
Al Viro806b6812009-12-26 07:16:40 -05003494 }
Al Virodeb106c2015-05-08 18:05:21 -04003495 terminate_walk(nd);
Al Virof15133d2015-05-08 22:53:15 -04003496out2:
Al Viro2675a4e2012-06-22 12:41:10 +04003497 if (!(opened & FILE_OPENED)) {
3498 BUG_ON(!error);
Al Viro30d90492012-06-22 12:40:19 +04003499 put_filp(file);
Miklos Szeredi015c3bb2012-06-05 15:10:27 +02003500 }
Al Viro2675a4e2012-06-22 12:41:10 +04003501 if (unlikely(error)) {
3502 if (error == -EOPENSTALE) {
3503 if (flags & LOOKUP_RCU)
3504 error = -ECHILD;
3505 else
3506 error = -ESTALE;
3507 }
3508 file = ERR_PTR(error);
3509 }
3510 return file;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003511}
3512
Jeff Layton669abf42012-10-10 16:43:10 -04003513struct file *do_filp_open(int dfd, struct filename *pathname,
Al Virof9652e12013-06-11 08:23:01 +04003514 const struct open_flags *op)
Al Viro13aab422011-02-23 17:54:08 -05003515{
Al Viro9883d182015-05-13 07:28:08 -04003516 struct nameidata nd;
Al Virof9652e12013-06-11 08:23:01 +04003517 int flags = op->lookup_flags;
Al Viro13aab422011-02-23 17:54:08 -05003518 struct file *filp;
3519
Al Viro9883d182015-05-13 07:28:08 -04003520 set_nameidata(&nd, dfd, pathname);
Al Viroc8a53ee2015-05-12 18:43:07 -04003521 filp = path_openat(&nd, op, flags | LOOKUP_RCU);
Al Viro13aab422011-02-23 17:54:08 -05003522 if (unlikely(filp == ERR_PTR(-ECHILD)))
Al Viroc8a53ee2015-05-12 18:43:07 -04003523 filp = path_openat(&nd, op, flags);
Al Viro13aab422011-02-23 17:54:08 -05003524 if (unlikely(filp == ERR_PTR(-ESTALE)))
Al Viroc8a53ee2015-05-12 18:43:07 -04003525 filp = path_openat(&nd, op, flags | LOOKUP_REVAL);
Al Viro9883d182015-05-13 07:28:08 -04003526 restore_nameidata();
Al Viro13aab422011-02-23 17:54:08 -05003527 return filp;
3528}
3529
Al Viro73d049a2011-03-11 12:08:24 -05003530struct file *do_file_open_root(struct dentry *dentry, struct vfsmount *mnt,
Al Virof9652e12013-06-11 08:23:01 +04003531 const char *name, const struct open_flags *op)
Al Viro73d049a2011-03-11 12:08:24 -05003532{
Al Viro9883d182015-05-13 07:28:08 -04003533 struct nameidata nd;
Al Viro73d049a2011-03-11 12:08:24 -05003534 struct file *file;
Paul Moore51689102015-01-22 00:00:03 -05003535 struct filename *filename;
Al Virof9652e12013-06-11 08:23:01 +04003536 int flags = op->lookup_flags | LOOKUP_ROOT;
Al Viro73d049a2011-03-11 12:08:24 -05003537
3538 nd.root.mnt = mnt;
3539 nd.root.dentry = dentry;
3540
David Howellsb18825a2013-09-12 19:22:53 +01003541 if (d_is_symlink(dentry) && op->intent & LOOKUP_OPEN)
Al Viro73d049a2011-03-11 12:08:24 -05003542 return ERR_PTR(-ELOOP);
3543
Paul Moore51689102015-01-22 00:00:03 -05003544 filename = getname_kernel(name);
Viresh Kumara1c83682015-08-12 15:59:44 +05303545 if (IS_ERR(filename))
Paul Moore51689102015-01-22 00:00:03 -05003546 return ERR_CAST(filename);
3547
Al Viro9883d182015-05-13 07:28:08 -04003548 set_nameidata(&nd, -1, filename);
Al Viroc8a53ee2015-05-12 18:43:07 -04003549 file = path_openat(&nd, op, flags | LOOKUP_RCU);
Al Viro73d049a2011-03-11 12:08:24 -05003550 if (unlikely(file == ERR_PTR(-ECHILD)))
Al Viroc8a53ee2015-05-12 18:43:07 -04003551 file = path_openat(&nd, op, flags);
Al Viro73d049a2011-03-11 12:08:24 -05003552 if (unlikely(file == ERR_PTR(-ESTALE)))
Al Viroc8a53ee2015-05-12 18:43:07 -04003553 file = path_openat(&nd, op, flags | LOOKUP_REVAL);
Al Viro9883d182015-05-13 07:28:08 -04003554 restore_nameidata();
Paul Moore51689102015-01-22 00:00:03 -05003555 putname(filename);
Al Viro73d049a2011-03-11 12:08:24 -05003556 return file;
3557}
3558
Al Virofa14a0b2015-01-22 02:16:49 -05003559static struct dentry *filename_create(int dfd, struct filename *name,
Jeff Layton1ac12b42012-12-11 12:10:06 -05003560 struct path *path, unsigned int lookup_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003561{
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07003562 struct dentry *dentry = ERR_PTR(-EEXIST);
Al Viro391172c2015-05-09 11:19:16 -04003563 struct qstr last;
3564 int type;
Jan Karac30dabf2012-06-12 16:20:30 +02003565 int err2;
Jeff Layton1ac12b42012-12-11 12:10:06 -05003566 int error;
3567 bool is_dir = (lookup_flags & LOOKUP_DIRECTORY);
3568
3569 /*
3570 * Note that only LOOKUP_REVAL and LOOKUP_DIRECTORY matter here. Any
3571 * other flags passed in are ignored!
3572 */
3573 lookup_flags &= LOOKUP_REVAL;
3574
Al Viro5c31b6c2015-05-12 17:32:54 -04003575 name = filename_parentat(dfd, name, lookup_flags, path, &last, &type);
3576 if (IS_ERR(name))
3577 return ERR_CAST(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003578
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07003579 /*
3580 * Yucky last component or no last component at all?
3581 * (foo/., foo/.., /////)
3582 */
Al Viro5c31b6c2015-05-12 17:32:54 -04003583 if (unlikely(type != LAST_NORM))
Al Viroed75e952011-06-27 16:53:43 -04003584 goto out;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07003585
Jan Karac30dabf2012-06-12 16:20:30 +02003586 /* don't fail immediately if it's r/o, at least try to report other errors */
Al Viro391172c2015-05-09 11:19:16 -04003587 err2 = mnt_want_write(path->mnt);
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07003588 /*
3589 * Do the final lookup.
3590 */
Al Viro391172c2015-05-09 11:19:16 -04003591 lookup_flags |= LOOKUP_CREATE | LOOKUP_EXCL;
Al Viro59551022016-01-22 15:40:57 -05003592 inode_lock_nested(path->dentry->d_inode, I_MUTEX_PARENT);
Al Viro391172c2015-05-09 11:19:16 -04003593 dentry = __lookup_hash(&last, path->dentry, lookup_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003594 if (IS_ERR(dentry))
Al Viroa8104a92012-07-20 02:25:00 +04003595 goto unlock;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07003596
Al Viroa8104a92012-07-20 02:25:00 +04003597 error = -EEXIST;
David Howellsb18825a2013-09-12 19:22:53 +01003598 if (d_is_positive(dentry))
Al Viroa8104a92012-07-20 02:25:00 +04003599 goto fail;
David Howellsb18825a2013-09-12 19:22:53 +01003600
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07003601 /*
3602 * Special case - lookup gave negative, but... we had foo/bar/
3603 * From the vfs_mknod() POV we just have a negative dentry -
3604 * all is fine. Let's be bastards - you had / on the end, you've
3605 * been asking for (non-existent) directory. -ENOENT for you.
3606 */
Al Viro391172c2015-05-09 11:19:16 -04003607 if (unlikely(!is_dir && last.name[last.len])) {
Al Viroa8104a92012-07-20 02:25:00 +04003608 error = -ENOENT;
Al Viroed75e952011-06-27 16:53:43 -04003609 goto fail;
Al Viroe9baf6e2008-05-15 04:49:12 -04003610 }
Jan Karac30dabf2012-06-12 16:20:30 +02003611 if (unlikely(err2)) {
3612 error = err2;
Al Viroa8104a92012-07-20 02:25:00 +04003613 goto fail;
Jan Karac30dabf2012-06-12 16:20:30 +02003614 }
Al Viro181c37b2015-05-12 17:21:25 -04003615 putname(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003616 return dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003617fail:
Al Viroa8104a92012-07-20 02:25:00 +04003618 dput(dentry);
3619 dentry = ERR_PTR(error);
3620unlock:
Al Viro59551022016-01-22 15:40:57 -05003621 inode_unlock(path->dentry->d_inode);
Jan Karac30dabf2012-06-12 16:20:30 +02003622 if (!err2)
Al Viro391172c2015-05-09 11:19:16 -04003623 mnt_drop_write(path->mnt);
Al Viroed75e952011-06-27 16:53:43 -04003624out:
Al Viro391172c2015-05-09 11:19:16 -04003625 path_put(path);
Al Viro181c37b2015-05-12 17:21:25 -04003626 putname(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003627 return dentry;
3628}
Al Virofa14a0b2015-01-22 02:16:49 -05003629
3630struct dentry *kern_path_create(int dfd, const char *pathname,
3631 struct path *path, unsigned int lookup_flags)
3632{
Al Viro181c37b2015-05-12 17:21:25 -04003633 return filename_create(dfd, getname_kernel(pathname),
3634 path, lookup_flags);
Al Virofa14a0b2015-01-22 02:16:49 -05003635}
Al Virodae6ad82011-06-26 11:50:15 -04003636EXPORT_SYMBOL(kern_path_create);
3637
Al Viro921a1652012-07-20 01:15:31 +04003638void done_path_create(struct path *path, struct dentry *dentry)
3639{
3640 dput(dentry);
Al Viro59551022016-01-22 15:40:57 -05003641 inode_unlock(path->dentry->d_inode);
Al Viroa8104a92012-07-20 02:25:00 +04003642 mnt_drop_write(path->mnt);
Al Viro921a1652012-07-20 01:15:31 +04003643 path_put(path);
3644}
3645EXPORT_SYMBOL(done_path_create);
3646
Al Viro520ae682015-05-13 07:00:28 -04003647inline struct dentry *user_path_create(int dfd, const char __user *pathname,
Jeff Layton1ac12b42012-12-11 12:10:06 -05003648 struct path *path, unsigned int lookup_flags)
Al Virodae6ad82011-06-26 11:50:15 -04003649{
Al Viro181c37b2015-05-12 17:21:25 -04003650 return filename_create(dfd, getname(pathname), path, lookup_flags);
Al Virodae6ad82011-06-26 11:50:15 -04003651}
3652EXPORT_SYMBOL(user_path_create);
3653
Al Viro1a67aaf2011-07-26 01:52:52 -04003654int vfs_mknod(struct inode *dir, struct dentry *dentry, umode_t mode, dev_t dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003655{
Miklos Szeredia95164d2008-07-30 15:08:48 +02003656 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003657
3658 if (error)
3659 return error;
3660
Eric W. Biederman975d6b32011-11-13 12:16:43 -08003661 if ((S_ISCHR(mode) || S_ISBLK(mode)) && !capable(CAP_MKNOD))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003662 return -EPERM;
3663
Al Viroacfa4382008-12-04 10:06:33 -05003664 if (!dir->i_op->mknod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003665 return -EPERM;
3666
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -07003667 error = devcgroup_inode_mknod(mode, dev);
3668 if (error)
3669 return error;
3670
Linus Torvalds1da177e2005-04-16 15:20:36 -07003671 error = security_inode_mknod(dir, dentry, mode, dev);
3672 if (error)
3673 return error;
3674
Linus Torvalds1da177e2005-04-16 15:20:36 -07003675 error = dir->i_op->mknod(dir, dentry, mode, dev);
Stephen Smalleya74574a2005-09-09 13:01:44 -07003676 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00003677 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003678 return error;
3679}
Al Viro4d359502014-03-14 12:20:17 -04003680EXPORT_SYMBOL(vfs_mknod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003681
Al Virof69aac02011-07-26 04:31:40 -04003682static int may_mknod(umode_t mode)
Dave Hansen463c3192008-02-15 14:37:57 -08003683{
3684 switch (mode & S_IFMT) {
3685 case S_IFREG:
3686 case S_IFCHR:
3687 case S_IFBLK:
3688 case S_IFIFO:
3689 case S_IFSOCK:
3690 case 0: /* zero mode translates to S_IFREG */
3691 return 0;
3692 case S_IFDIR:
3693 return -EPERM;
3694 default:
3695 return -EINVAL;
3696 }
3697}
3698
Al Viro8208a222011-07-25 17:32:17 -04003699SYSCALL_DEFINE4(mknodat, int, dfd, const char __user *, filename, umode_t, mode,
Heiko Carstens2e4d0922009-01-14 14:14:31 +01003700 unsigned, dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003701{
Al Viro2ad94ae2008-07-21 09:32:51 -04003702 struct dentry *dentry;
Al Virodae6ad82011-06-26 11:50:15 -04003703 struct path path;
3704 int error;
Jeff Layton972567f2012-12-20 16:00:10 -05003705 unsigned int lookup_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003706
Al Viro8e4bfca2012-07-20 01:17:26 +04003707 error = may_mknod(mode);
3708 if (error)
3709 return error;
Jeff Layton972567f2012-12-20 16:00:10 -05003710retry:
3711 dentry = user_path_create(dfd, filename, &path, lookup_flags);
Al Virodae6ad82011-06-26 11:50:15 -04003712 if (IS_ERR(dentry))
3713 return PTR_ERR(dentry);
Al Viro2ad94ae2008-07-21 09:32:51 -04003714
Al Virodae6ad82011-06-26 11:50:15 -04003715 if (!IS_POSIXACL(path.dentry->d_inode))
Al Viroce3b0f82009-03-29 19:08:22 -04003716 mode &= ~current_umask();
Al Virodae6ad82011-06-26 11:50:15 -04003717 error = security_path_mknod(&path, dentry, mode, dev);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09003718 if (error)
Al Viroa8104a92012-07-20 02:25:00 +04003719 goto out;
Dave Hansen463c3192008-02-15 14:37:57 -08003720 switch (mode & S_IFMT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003721 case 0: case S_IFREG:
Al Viro312b63f2012-06-10 18:09:36 -04003722 error = vfs_create(path.dentry->d_inode,dentry,mode,true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003723 break;
3724 case S_IFCHR: case S_IFBLK:
Al Virodae6ad82011-06-26 11:50:15 -04003725 error = vfs_mknod(path.dentry->d_inode,dentry,mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003726 new_decode_dev(dev));
3727 break;
3728 case S_IFIFO: case S_IFSOCK:
Al Virodae6ad82011-06-26 11:50:15 -04003729 error = vfs_mknod(path.dentry->d_inode,dentry,mode,0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003730 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003731 }
Al Viroa8104a92012-07-20 02:25:00 +04003732out:
Al Viro921a1652012-07-20 01:15:31 +04003733 done_path_create(&path, dentry);
Jeff Layton972567f2012-12-20 16:00:10 -05003734 if (retry_estale(error, lookup_flags)) {
3735 lookup_flags |= LOOKUP_REVAL;
3736 goto retry;
3737 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003738 return error;
3739}
3740
Al Viro8208a222011-07-25 17:32:17 -04003741SYSCALL_DEFINE3(mknod, const char __user *, filename, umode_t, mode, unsigned, dev)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003742{
3743 return sys_mknodat(AT_FDCWD, filename, mode, dev);
3744}
3745
Al Viro18bb1db2011-07-26 01:41:39 -04003746int vfs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003747{
Miklos Szeredia95164d2008-07-30 15:08:48 +02003748 int error = may_create(dir, dentry);
Al Viro8de52772012-02-06 12:45:27 -05003749 unsigned max_links = dir->i_sb->s_max_links;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003750
3751 if (error)
3752 return error;
3753
Al Viroacfa4382008-12-04 10:06:33 -05003754 if (!dir->i_op->mkdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003755 return -EPERM;
3756
3757 mode &= (S_IRWXUGO|S_ISVTX);
3758 error = security_inode_mkdir(dir, dentry, mode);
3759 if (error)
3760 return error;
3761
Al Viro8de52772012-02-06 12:45:27 -05003762 if (max_links && dir->i_nlink >= max_links)
3763 return -EMLINK;
3764
Linus Torvalds1da177e2005-04-16 15:20:36 -07003765 error = dir->i_op->mkdir(dir, dentry, mode);
Stephen Smalleya74574a2005-09-09 13:01:44 -07003766 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00003767 fsnotify_mkdir(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003768 return error;
3769}
Al Viro4d359502014-03-14 12:20:17 -04003770EXPORT_SYMBOL(vfs_mkdir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003771
Al Viroa218d0f2011-11-21 14:59:34 -05003772SYSCALL_DEFINE3(mkdirat, int, dfd, const char __user *, pathname, umode_t, mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003773{
Dave Hansen6902d922006-09-30 23:29:01 -07003774 struct dentry *dentry;
Al Virodae6ad82011-06-26 11:50:15 -04003775 struct path path;
3776 int error;
Jeff Laytonb76d8b82012-12-20 16:04:09 -05003777 unsigned int lookup_flags = LOOKUP_DIRECTORY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003778
Jeff Laytonb76d8b82012-12-20 16:04:09 -05003779retry:
3780 dentry = user_path_create(dfd, pathname, &path, lookup_flags);
Dave Hansen6902d922006-09-30 23:29:01 -07003781 if (IS_ERR(dentry))
Al Virodae6ad82011-06-26 11:50:15 -04003782 return PTR_ERR(dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07003783
Al Virodae6ad82011-06-26 11:50:15 -04003784 if (!IS_POSIXACL(path.dentry->d_inode))
Al Viroce3b0f82009-03-29 19:08:22 -04003785 mode &= ~current_umask();
Al Virodae6ad82011-06-26 11:50:15 -04003786 error = security_path_mkdir(&path, dentry, mode);
Al Viroa8104a92012-07-20 02:25:00 +04003787 if (!error)
3788 error = vfs_mkdir(path.dentry->d_inode, dentry, mode);
Al Viro921a1652012-07-20 01:15:31 +04003789 done_path_create(&path, dentry);
Jeff Laytonb76d8b82012-12-20 16:04:09 -05003790 if (retry_estale(error, lookup_flags)) {
3791 lookup_flags |= LOOKUP_REVAL;
3792 goto retry;
3793 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003794 return error;
3795}
3796
Al Viroa218d0f2011-11-21 14:59:34 -05003797SYSCALL_DEFINE2(mkdir, const char __user *, pathname, umode_t, mode)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003798{
3799 return sys_mkdirat(AT_FDCWD, pathname, mode);
3800}
3801
Linus Torvalds1da177e2005-04-16 15:20:36 -07003802int vfs_rmdir(struct inode *dir, struct dentry *dentry)
3803{
3804 int error = may_delete(dir, dentry, 1);
3805
3806 if (error)
3807 return error;
3808
Al Viroacfa4382008-12-04 10:06:33 -05003809 if (!dir->i_op->rmdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003810 return -EPERM;
3811
Al Viro1d2ef592011-09-14 18:55:41 +01003812 dget(dentry);
Al Viro59551022016-01-22 15:40:57 -05003813 inode_lock(dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003814
Sage Weil912dbc12011-05-24 13:06:11 -07003815 error = -EBUSY;
Eric W. Biederman7af13642013-10-04 19:15:13 -07003816 if (is_local_mountpoint(dentry))
Sage Weil912dbc12011-05-24 13:06:11 -07003817 goto out;
3818
3819 error = security_inode_rmdir(dir, dentry);
3820 if (error)
3821 goto out;
3822
Sage Weil3cebde22011-05-29 21:20:59 -07003823 shrink_dcache_parent(dentry);
Sage Weil912dbc12011-05-24 13:06:11 -07003824 error = dir->i_op->rmdir(dir, dentry);
3825 if (error)
3826 goto out;
3827
3828 dentry->d_inode->i_flags |= S_DEAD;
3829 dont_mount(dentry);
Eric W. Biederman8ed936b2013-10-01 18:33:48 -07003830 detach_mounts(dentry);
Sage Weil912dbc12011-05-24 13:06:11 -07003831
3832out:
Al Viro59551022016-01-22 15:40:57 -05003833 inode_unlock(dentry->d_inode);
Al Viro1d2ef592011-09-14 18:55:41 +01003834 dput(dentry);
Sage Weil912dbc12011-05-24 13:06:11 -07003835 if (!error)
3836 d_delete(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003837 return error;
3838}
Al Viro4d359502014-03-14 12:20:17 -04003839EXPORT_SYMBOL(vfs_rmdir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003840
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003841static long do_rmdir(int dfd, const char __user *pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003842{
3843 int error = 0;
Jeff Layton91a27b22012-10-10 15:25:28 -04003844 struct filename *name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003845 struct dentry *dentry;
Al Virof5beed72015-04-30 16:09:11 -04003846 struct path path;
3847 struct qstr last;
3848 int type;
Jeff Laytonc6ee9202012-12-20 16:28:33 -05003849 unsigned int lookup_flags = 0;
3850retry:
Al Virof5beed72015-04-30 16:09:11 -04003851 name = user_path_parent(dfd, pathname,
3852 &path, &last, &type, lookup_flags);
Jeff Layton91a27b22012-10-10 15:25:28 -04003853 if (IS_ERR(name))
3854 return PTR_ERR(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003855
Al Virof5beed72015-04-30 16:09:11 -04003856 switch (type) {
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003857 case LAST_DOTDOT:
3858 error = -ENOTEMPTY;
3859 goto exit1;
3860 case LAST_DOT:
3861 error = -EINVAL;
3862 goto exit1;
3863 case LAST_ROOT:
3864 error = -EBUSY;
3865 goto exit1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003866 }
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003867
Al Virof5beed72015-04-30 16:09:11 -04003868 error = mnt_want_write(path.mnt);
Jan Karac30dabf2012-06-12 16:20:30 +02003869 if (error)
3870 goto exit1;
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003871
Al Viro59551022016-01-22 15:40:57 -05003872 inode_lock_nested(path.dentry->d_inode, I_MUTEX_PARENT);
Al Virof5beed72015-04-30 16:09:11 -04003873 dentry = __lookup_hash(&last, path.dentry, lookup_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003874 error = PTR_ERR(dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07003875 if (IS_ERR(dentry))
3876 goto exit2;
Theodore Ts'oe6bc45d2011-06-06 19:19:40 -04003877 if (!dentry->d_inode) {
3878 error = -ENOENT;
3879 goto exit3;
3880 }
Al Virof5beed72015-04-30 16:09:11 -04003881 error = security_path_rmdir(&path, dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09003882 if (error)
Jan Karac30dabf2012-06-12 16:20:30 +02003883 goto exit3;
Al Virof5beed72015-04-30 16:09:11 -04003884 error = vfs_rmdir(path.dentry->d_inode, dentry);
Dave Hansen06227532008-02-15 14:37:34 -08003885exit3:
Dave Hansen6902d922006-09-30 23:29:01 -07003886 dput(dentry);
3887exit2:
Al Viro59551022016-01-22 15:40:57 -05003888 inode_unlock(path.dentry->d_inode);
Al Virof5beed72015-04-30 16:09:11 -04003889 mnt_drop_write(path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003890exit1:
Al Virof5beed72015-04-30 16:09:11 -04003891 path_put(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003892 putname(name);
Jeff Laytonc6ee9202012-12-20 16:28:33 -05003893 if (retry_estale(error, lookup_flags)) {
3894 lookup_flags |= LOOKUP_REVAL;
3895 goto retry;
3896 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003897 return error;
3898}
3899
Heiko Carstens3cdad422009-01-14 14:14:22 +01003900SYSCALL_DEFINE1(rmdir, const char __user *, pathname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003901{
3902 return do_rmdir(AT_FDCWD, pathname);
3903}
3904
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04003905/**
3906 * vfs_unlink - unlink a filesystem object
3907 * @dir: parent directory
3908 * @dentry: victim
3909 * @delegated_inode: returns victim inode, if the inode is delegated.
3910 *
3911 * The caller must hold dir->i_mutex.
3912 *
3913 * If vfs_unlink discovers a delegation, it will return -EWOULDBLOCK and
3914 * return a reference to the inode in delegated_inode. The caller
3915 * should then break the delegation on that inode and retry. Because
3916 * breaking a delegation may take a long time, the caller should drop
3917 * dir->i_mutex before doing so.
3918 *
3919 * Alternatively, a caller may pass NULL for delegated_inode. This may
3920 * be appropriate for callers that expect the underlying filesystem not
3921 * to be NFS exported.
3922 */
3923int vfs_unlink(struct inode *dir, struct dentry *dentry, struct inode **delegated_inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003924{
J. Bruce Fields9accbb92012-08-28 07:03:24 -04003925 struct inode *target = dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003926 int error = may_delete(dir, dentry, 0);
3927
3928 if (error)
3929 return error;
3930
Al Viroacfa4382008-12-04 10:06:33 -05003931 if (!dir->i_op->unlink)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003932 return -EPERM;
3933
Al Viro59551022016-01-22 15:40:57 -05003934 inode_lock(target);
Eric W. Biederman8ed936b2013-10-01 18:33:48 -07003935 if (is_local_mountpoint(dentry))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003936 error = -EBUSY;
3937 else {
3938 error = security_inode_unlink(dir, dentry);
Al Virobec10522010-03-03 14:12:08 -05003939 if (!error) {
J. Bruce Fields5a146962012-08-28 07:50:40 -07003940 error = try_break_deleg(target, delegated_inode);
3941 if (error)
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04003942 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003943 error = dir->i_op->unlink(dir, dentry);
Eric W. Biederman8ed936b2013-10-01 18:33:48 -07003944 if (!error) {
Al Virod83c49f2010-04-30 17:17:09 -04003945 dont_mount(dentry);
Eric W. Biederman8ed936b2013-10-01 18:33:48 -07003946 detach_mounts(dentry);
3947 }
Al Virobec10522010-03-03 14:12:08 -05003948 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003949 }
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04003950out:
Al Viro59551022016-01-22 15:40:57 -05003951 inode_unlock(target);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003952
3953 /* We don't d_delete() NFS sillyrenamed files--they still exist. */
3954 if (!error && !(dentry->d_flags & DCACHE_NFSFS_RENAMED)) {
J. Bruce Fields9accbb92012-08-28 07:03:24 -04003955 fsnotify_link_count(target);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003956 d_delete(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003957 }
Robert Love0eeca282005-07-12 17:06:03 -04003958
Linus Torvalds1da177e2005-04-16 15:20:36 -07003959 return error;
3960}
Al Viro4d359502014-03-14 12:20:17 -04003961EXPORT_SYMBOL(vfs_unlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003962
3963/*
3964 * Make sure that the actual truncation of the file will occur outside its
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003965 * directory's i_mutex. Truncate can take a long time if there is a lot of
Linus Torvalds1da177e2005-04-16 15:20:36 -07003966 * writeout happening, and we don't want to prevent access to the directory
3967 * while waiting on the I/O.
3968 */
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003969static long do_unlinkat(int dfd, const char __user *pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003970{
Al Viro2ad94ae2008-07-21 09:32:51 -04003971 int error;
Jeff Layton91a27b22012-10-10 15:25:28 -04003972 struct filename *name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003973 struct dentry *dentry;
Al Virof5beed72015-04-30 16:09:11 -04003974 struct path path;
3975 struct qstr last;
3976 int type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003977 struct inode *inode = NULL;
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04003978 struct inode *delegated_inode = NULL;
Jeff Layton5d18f812012-12-20 16:38:04 -05003979 unsigned int lookup_flags = 0;
3980retry:
Al Virof5beed72015-04-30 16:09:11 -04003981 name = user_path_parent(dfd, pathname,
3982 &path, &last, &type, lookup_flags);
Jeff Layton91a27b22012-10-10 15:25:28 -04003983 if (IS_ERR(name))
3984 return PTR_ERR(name);
Al Viro2ad94ae2008-07-21 09:32:51 -04003985
Linus Torvalds1da177e2005-04-16 15:20:36 -07003986 error = -EISDIR;
Al Virof5beed72015-04-30 16:09:11 -04003987 if (type != LAST_NORM)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003988 goto exit1;
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003989
Al Virof5beed72015-04-30 16:09:11 -04003990 error = mnt_want_write(path.mnt);
Jan Karac30dabf2012-06-12 16:20:30 +02003991 if (error)
3992 goto exit1;
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04003993retry_deleg:
Al Viro59551022016-01-22 15:40:57 -05003994 inode_lock_nested(path.dentry->d_inode, I_MUTEX_PARENT);
Al Virof5beed72015-04-30 16:09:11 -04003995 dentry = __lookup_hash(&last, path.dentry, lookup_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003996 error = PTR_ERR(dentry);
3997 if (!IS_ERR(dentry)) {
3998 /* Why not before? Because we want correct error value */
Al Virof5beed72015-04-30 16:09:11 -04003999 if (last.name[last.len])
Török Edwin50338b82011-06-16 00:06:14 +03004000 goto slashes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004001 inode = dentry->d_inode;
David Howellsb18825a2013-09-12 19:22:53 +01004002 if (d_is_negative(dentry))
Theodore Ts'oe6bc45d2011-06-06 19:19:40 -04004003 goto slashes;
4004 ihold(inode);
Al Virof5beed72015-04-30 16:09:11 -04004005 error = security_path_unlink(&path, dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09004006 if (error)
Jan Karac30dabf2012-06-12 16:20:30 +02004007 goto exit2;
Al Virof5beed72015-04-30 16:09:11 -04004008 error = vfs_unlink(path.dentry->d_inode, dentry, &delegated_inode);
Jan Karac30dabf2012-06-12 16:20:30 +02004009exit2:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004010 dput(dentry);
4011 }
Al Viro59551022016-01-22 15:40:57 -05004012 inode_unlock(path.dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004013 if (inode)
4014 iput(inode); /* truncate the inode here */
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04004015 inode = NULL;
4016 if (delegated_inode) {
J. Bruce Fields5a146962012-08-28 07:50:40 -07004017 error = break_deleg_wait(&delegated_inode);
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04004018 if (!error)
4019 goto retry_deleg;
4020 }
Al Virof5beed72015-04-30 16:09:11 -04004021 mnt_drop_write(path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004022exit1:
Al Virof5beed72015-04-30 16:09:11 -04004023 path_put(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004024 putname(name);
Jeff Layton5d18f812012-12-20 16:38:04 -05004025 if (retry_estale(error, lookup_flags)) {
4026 lookup_flags |= LOOKUP_REVAL;
4027 inode = NULL;
4028 goto retry;
4029 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004030 return error;
4031
4032slashes:
David Howellsb18825a2013-09-12 19:22:53 +01004033 if (d_is_negative(dentry))
4034 error = -ENOENT;
Miklos Szeredi44b1d532014-04-01 17:08:41 +02004035 else if (d_is_dir(dentry))
David Howellsb18825a2013-09-12 19:22:53 +01004036 error = -EISDIR;
4037 else
4038 error = -ENOTDIR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004039 goto exit2;
4040}
4041
Heiko Carstens2e4d0922009-01-14 14:14:31 +01004042SYSCALL_DEFINE3(unlinkat, int, dfd, const char __user *, pathname, int, flag)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08004043{
4044 if ((flag & ~AT_REMOVEDIR) != 0)
4045 return -EINVAL;
4046
4047 if (flag & AT_REMOVEDIR)
4048 return do_rmdir(dfd, pathname);
4049
4050 return do_unlinkat(dfd, pathname);
4051}
4052
Heiko Carstens3480b252009-01-14 14:14:16 +01004053SYSCALL_DEFINE1(unlink, const char __user *, pathname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08004054{
4055 return do_unlinkat(AT_FDCWD, pathname);
4056}
4057
Miklos Szeredidb2e7472008-06-24 16:50:16 +02004058int vfs_symlink(struct inode *dir, struct dentry *dentry, const char *oldname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004059{
Miklos Szeredia95164d2008-07-30 15:08:48 +02004060 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004061
4062 if (error)
4063 return error;
4064
Al Viroacfa4382008-12-04 10:06:33 -05004065 if (!dir->i_op->symlink)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004066 return -EPERM;
4067
4068 error = security_inode_symlink(dir, dentry, oldname);
4069 if (error)
4070 return error;
4071
Linus Torvalds1da177e2005-04-16 15:20:36 -07004072 error = dir->i_op->symlink(dir, dentry, oldname);
Stephen Smalleya74574a2005-09-09 13:01:44 -07004073 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00004074 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004075 return error;
4076}
Al Viro4d359502014-03-14 12:20:17 -04004077EXPORT_SYMBOL(vfs_symlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004078
Heiko Carstens2e4d0922009-01-14 14:14:31 +01004079SYSCALL_DEFINE3(symlinkat, const char __user *, oldname,
4080 int, newdfd, const char __user *, newname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004081{
Al Viro2ad94ae2008-07-21 09:32:51 -04004082 int error;
Jeff Layton91a27b22012-10-10 15:25:28 -04004083 struct filename *from;
Dave Hansen6902d922006-09-30 23:29:01 -07004084 struct dentry *dentry;
Al Virodae6ad82011-06-26 11:50:15 -04004085 struct path path;
Jeff Laytonf46d3562012-12-11 12:10:08 -05004086 unsigned int lookup_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004087
4088 from = getname(oldname);
Al Viro2ad94ae2008-07-21 09:32:51 -04004089 if (IS_ERR(from))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004090 return PTR_ERR(from);
Jeff Laytonf46d3562012-12-11 12:10:08 -05004091retry:
4092 dentry = user_path_create(newdfd, newname, &path, lookup_flags);
Dave Hansen6902d922006-09-30 23:29:01 -07004093 error = PTR_ERR(dentry);
4094 if (IS_ERR(dentry))
Al Virodae6ad82011-06-26 11:50:15 -04004095 goto out_putname;
Dave Hansen6902d922006-09-30 23:29:01 -07004096
Jeff Layton91a27b22012-10-10 15:25:28 -04004097 error = security_path_symlink(&path, dentry, from->name);
Al Viroa8104a92012-07-20 02:25:00 +04004098 if (!error)
Jeff Layton91a27b22012-10-10 15:25:28 -04004099 error = vfs_symlink(path.dentry->d_inode, dentry, from->name);
Al Viro921a1652012-07-20 01:15:31 +04004100 done_path_create(&path, dentry);
Jeff Laytonf46d3562012-12-11 12:10:08 -05004101 if (retry_estale(error, lookup_flags)) {
4102 lookup_flags |= LOOKUP_REVAL;
4103 goto retry;
4104 }
Dave Hansen6902d922006-09-30 23:29:01 -07004105out_putname:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004106 putname(from);
4107 return error;
4108}
4109
Heiko Carstens3480b252009-01-14 14:14:16 +01004110SYSCALL_DEFINE2(symlink, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08004111{
4112 return sys_symlinkat(oldname, AT_FDCWD, newname);
4113}
4114
J. Bruce Fields146a8592011-09-20 17:14:31 -04004115/**
4116 * vfs_link - create a new link
4117 * @old_dentry: object to be linked
4118 * @dir: new parent
4119 * @new_dentry: where to create the new link
4120 * @delegated_inode: returns inode needing a delegation break
4121 *
4122 * The caller must hold dir->i_mutex
4123 *
4124 * If vfs_link discovers a delegation on the to-be-linked file in need
4125 * of breaking, it will return -EWOULDBLOCK and return a reference to the
4126 * inode in delegated_inode. The caller should then break the delegation
4127 * and retry. Because breaking a delegation may take a long time, the
4128 * caller should drop the i_mutex before doing so.
4129 *
4130 * Alternatively, a caller may pass NULL for delegated_inode. This may
4131 * be appropriate for callers that expect the underlying filesystem not
4132 * to be NFS exported.
4133 */
4134int vfs_link(struct dentry *old_dentry, struct inode *dir, struct dentry *new_dentry, struct inode **delegated_inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004135{
4136 struct inode *inode = old_dentry->d_inode;
Al Viro8de52772012-02-06 12:45:27 -05004137 unsigned max_links = dir->i_sb->s_max_links;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004138 int error;
4139
4140 if (!inode)
4141 return -ENOENT;
4142
Miklos Szeredia95164d2008-07-30 15:08:48 +02004143 error = may_create(dir, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004144 if (error)
4145 return error;
4146
4147 if (dir->i_sb != inode->i_sb)
4148 return -EXDEV;
4149
4150 /*
4151 * A link to an append-only or immutable file cannot be created.
4152 */
4153 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
4154 return -EPERM;
Al Viroacfa4382008-12-04 10:06:33 -05004155 if (!dir->i_op->link)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004156 return -EPERM;
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02004157 if (S_ISDIR(inode->i_mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004158 return -EPERM;
4159
4160 error = security_inode_link(old_dentry, dir, new_dentry);
4161 if (error)
4162 return error;
4163
Al Viro59551022016-01-22 15:40:57 -05004164 inode_lock(inode);
Aneesh Kumar K.Vaae8a972011-01-29 18:43:27 +05304165 /* Make sure we don't allow creating hardlink to an unlinked file */
Al Virof4e0c302013-06-11 08:34:36 +04004166 if (inode->i_nlink == 0 && !(inode->i_state & I_LINKABLE))
Aneesh Kumar K.Vaae8a972011-01-29 18:43:27 +05304167 error = -ENOENT;
Al Viro8de52772012-02-06 12:45:27 -05004168 else if (max_links && inode->i_nlink >= max_links)
4169 error = -EMLINK;
J. Bruce Fields146a8592011-09-20 17:14:31 -04004170 else {
4171 error = try_break_deleg(inode, delegated_inode);
4172 if (!error)
4173 error = dir->i_op->link(old_dentry, dir, new_dentry);
4174 }
Al Virof4e0c302013-06-11 08:34:36 +04004175
4176 if (!error && (inode->i_state & I_LINKABLE)) {
4177 spin_lock(&inode->i_lock);
4178 inode->i_state &= ~I_LINKABLE;
4179 spin_unlock(&inode->i_lock);
4180 }
Al Viro59551022016-01-22 15:40:57 -05004181 inode_unlock(inode);
Stephen Smalleye31e14e2005-09-09 13:01:45 -07004182 if (!error)
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02004183 fsnotify_link(dir, inode, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004184 return error;
4185}
Al Viro4d359502014-03-14 12:20:17 -04004186EXPORT_SYMBOL(vfs_link);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004187
4188/*
4189 * Hardlinks are often used in delicate situations. We avoid
4190 * security-related surprises by not following symlinks on the
4191 * newname. --KAB
4192 *
4193 * We don't follow them on the oldname either to be compatible
4194 * with linux 2.0, and to avoid hard-linking to directories
4195 * and other special files. --ADM
4196 */
Heiko Carstens2e4d0922009-01-14 14:14:31 +01004197SYSCALL_DEFINE5(linkat, int, olddfd, const char __user *, oldname,
4198 int, newdfd, const char __user *, newname, int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004199{
4200 struct dentry *new_dentry;
Al Virodae6ad82011-06-26 11:50:15 -04004201 struct path old_path, new_path;
J. Bruce Fields146a8592011-09-20 17:14:31 -04004202 struct inode *delegated_inode = NULL;
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05304203 int how = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004204 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004205
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05304206 if ((flags & ~(AT_SYMLINK_FOLLOW | AT_EMPTY_PATH)) != 0)
Ulrich Drepperc04030e2006-02-24 13:04:21 -08004207 return -EINVAL;
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05304208 /*
Linus Torvaldsf0cc6ff2013-08-28 09:18:05 -07004209 * To use null names we require CAP_DAC_READ_SEARCH
4210 * This ensures that not everyone will be able to create
4211 * handlink using the passed filedescriptor.
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05304212 */
Linus Torvaldsf0cc6ff2013-08-28 09:18:05 -07004213 if (flags & AT_EMPTY_PATH) {
4214 if (!capable(CAP_DAC_READ_SEARCH))
4215 return -ENOENT;
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05304216 how = LOOKUP_EMPTY;
Linus Torvaldsf0cc6ff2013-08-28 09:18:05 -07004217 }
Ulrich Drepperc04030e2006-02-24 13:04:21 -08004218
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05304219 if (flags & AT_SYMLINK_FOLLOW)
4220 how |= LOOKUP_FOLLOW;
Jeff Layton442e31c2012-12-20 16:15:38 -05004221retry:
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05304222 error = user_path_at(olddfd, oldname, how, &old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004223 if (error)
Al Viro2ad94ae2008-07-21 09:32:51 -04004224 return error;
4225
Jeff Layton442e31c2012-12-20 16:15:38 -05004226 new_dentry = user_path_create(newdfd, newname, &new_path,
4227 (how & LOOKUP_REVAL));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004228 error = PTR_ERR(new_dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07004229 if (IS_ERR(new_dentry))
Al Virodae6ad82011-06-26 11:50:15 -04004230 goto out;
4231
4232 error = -EXDEV;
4233 if (old_path.mnt != new_path.mnt)
4234 goto out_dput;
Kees Cook800179c2012-07-25 17:29:07 -07004235 error = may_linkat(&old_path);
4236 if (unlikely(error))
4237 goto out_dput;
Al Virodae6ad82011-06-26 11:50:15 -04004238 error = security_path_link(old_path.dentry, &new_path, new_dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09004239 if (error)
Al Viroa8104a92012-07-20 02:25:00 +04004240 goto out_dput;
J. Bruce Fields146a8592011-09-20 17:14:31 -04004241 error = vfs_link(old_path.dentry, new_path.dentry->d_inode, new_dentry, &delegated_inode);
Dave Hansen75c3f292008-02-15 14:37:45 -08004242out_dput:
Al Viro921a1652012-07-20 01:15:31 +04004243 done_path_create(&new_path, new_dentry);
J. Bruce Fields146a8592011-09-20 17:14:31 -04004244 if (delegated_inode) {
4245 error = break_deleg_wait(&delegated_inode);
Oleg Drokind22e6332014-01-31 15:41:58 -05004246 if (!error) {
4247 path_put(&old_path);
J. Bruce Fields146a8592011-09-20 17:14:31 -04004248 goto retry;
Oleg Drokind22e6332014-01-31 15:41:58 -05004249 }
J. Bruce Fields146a8592011-09-20 17:14:31 -04004250 }
Jeff Layton442e31c2012-12-20 16:15:38 -05004251 if (retry_estale(error, how)) {
Oleg Drokind22e6332014-01-31 15:41:58 -05004252 path_put(&old_path);
Jeff Layton442e31c2012-12-20 16:15:38 -05004253 how |= LOOKUP_REVAL;
4254 goto retry;
4255 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004256out:
Al Viro2d8f3032008-07-22 09:59:21 -04004257 path_put(&old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004258
4259 return error;
4260}
4261
Heiko Carstens3480b252009-01-14 14:14:16 +01004262SYSCALL_DEFINE2(link, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08004263{
Ulrich Drepperc04030e2006-02-24 13:04:21 -08004264 return sys_linkat(AT_FDCWD, oldname, AT_FDCWD, newname, 0);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08004265}
4266
Miklos Szeredibc270272014-04-01 17:08:42 +02004267/**
4268 * vfs_rename - rename a filesystem object
4269 * @old_dir: parent of source
4270 * @old_dentry: source
4271 * @new_dir: parent of destination
4272 * @new_dentry: destination
4273 * @delegated_inode: returns an inode needing a delegation break
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004274 * @flags: rename flags
Miklos Szeredibc270272014-04-01 17:08:42 +02004275 *
4276 * The caller must hold multiple mutexes--see lock_rename()).
4277 *
4278 * If vfs_rename discovers a delegation in need of breaking at either
4279 * the source or destination, it will return -EWOULDBLOCK and return a
4280 * reference to the inode in delegated_inode. The caller should then
4281 * break the delegation and retry. Because breaking a delegation may
4282 * take a long time, the caller should drop all locks before doing
4283 * so.
4284 *
4285 * Alternatively, a caller may pass NULL for delegated_inode. This may
4286 * be appropriate for callers that expect the underlying filesystem not
4287 * to be NFS exported.
4288 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004289 * The worst of all namespace operations - renaming directory. "Perverted"
4290 * doesn't even start to describe it. Somebody in UCB had a heck of a trip...
4291 * Problems:
J. Bruce Fieldsd03b29a2014-02-17 16:52:33 -05004292 * a) we can get into loop creation.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004293 * b) race potential - two innocent renames can create a loop together.
4294 * That's where 4.4 screws up. Current fix: serialization on
Arjan van de Vena11f3a02006-03-23 03:00:33 -08004295 * sb->s_vfs_rename_mutex. We might be more accurate, but that's another
Linus Torvalds1da177e2005-04-16 15:20:36 -07004296 * story.
J. Bruce Fields6cedba82012-03-05 11:40:41 -05004297 * c) we have to lock _four_ objects - parents and victim (if it exists),
4298 * and source (if it is not a directory).
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08004299 * And that - after we got ->i_mutex on parents (until then we don't know
Linus Torvalds1da177e2005-04-16 15:20:36 -07004300 * whether the target exists). Solution: try to be smart with locking
4301 * order for inodes. We rely on the fact that tree topology may change
Arjan van de Vena11f3a02006-03-23 03:00:33 -08004302 * only under ->s_vfs_rename_mutex _and_ that parent of the object we
Linus Torvalds1da177e2005-04-16 15:20:36 -07004303 * move will be locked. Thus we can rank directories by the tree
4304 * (ancestors first) and rank all non-directories after them.
4305 * That works since everybody except rename does "lock parent, lookup,
Arjan van de Vena11f3a02006-03-23 03:00:33 -08004306 * lock child" and rename is under ->s_vfs_rename_mutex.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004307 * HOWEVER, it relies on the assumption that any object with ->lookup()
4308 * has no more than 1 dentry. If "hybrid" objects will ever appear,
4309 * we'd better make sure that there's no link(2) for them.
Sage Weile4eaac02011-05-24 13:06:07 -07004310 * d) conversion from fhandle to dentry may come in the wrong moment - when
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08004311 * we are removing the target. Solution: we will have to grab ->i_mutex
Linus Torvalds1da177e2005-04-16 15:20:36 -07004312 * in the fhandle_to_dentry code. [FIXME - current nfsfh.c relies on
Adam Buchbinderc41b20e2009-12-11 16:35:39 -05004313 * ->i_mutex on parents, which works but leads to some truly excessive
Linus Torvalds1da177e2005-04-16 15:20:36 -07004314 * locking].
4315 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004316int vfs_rename(struct inode *old_dir, struct dentry *old_dentry,
J. Bruce Fields8e6d7822011-09-20 16:59:58 -04004317 struct inode *new_dir, struct dentry *new_dentry,
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004318 struct inode **delegated_inode, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004319{
4320 int error;
Miklos Szeredibc270272014-04-01 17:08:42 +02004321 bool is_dir = d_is_dir(old_dentry);
Eric Paris59b0df22010-02-08 12:53:52 -05004322 const unsigned char *old_name;
Miklos Szeredibc270272014-04-01 17:08:42 +02004323 struct inode *source = old_dentry->d_inode;
4324 struct inode *target = new_dentry->d_inode;
Miklos Szeredida1ce062014-04-01 17:08:43 +02004325 bool new_is_dir = false;
4326 unsigned max_links = new_dir->i_sb->s_max_links;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004327
Miklos Szeredi9409e222016-05-11 01:16:37 +02004328 /*
4329 * Check source == target.
4330 * On overlayfs need to look at underlying inodes.
4331 */
4332 if (vfs_select_inode(old_dentry, 0) == vfs_select_inode(new_dentry, 0))
Miklos Szeredibc270272014-04-01 17:08:42 +02004333 return 0;
4334
Linus Torvalds1da177e2005-04-16 15:20:36 -07004335 error = may_delete(old_dir, old_dentry, is_dir);
4336 if (error)
4337 return error;
4338
Miklos Szeredida1ce062014-04-01 17:08:43 +02004339 if (!target) {
Miklos Szeredia95164d2008-07-30 15:08:48 +02004340 error = may_create(new_dir, new_dentry);
Miklos Szeredida1ce062014-04-01 17:08:43 +02004341 } else {
4342 new_is_dir = d_is_dir(new_dentry);
4343
4344 if (!(flags & RENAME_EXCHANGE))
4345 error = may_delete(new_dir, new_dentry, is_dir);
4346 else
4347 error = may_delete(new_dir, new_dentry, new_is_dir);
4348 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004349 if (error)
4350 return error;
4351
Miklos Szeredi7177a9c2014-07-23 15:15:30 +02004352 if (!old_dir->i_op->rename && !old_dir->i_op->rename2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004353 return -EPERM;
4354
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004355 if (flags && !old_dir->i_op->rename2)
4356 return -EINVAL;
4357
Miklos Szeredibc270272014-04-01 17:08:42 +02004358 /*
4359 * If we are going to change the parent - check write permissions,
4360 * we'll need to flip '..'.
4361 */
Miklos Szeredida1ce062014-04-01 17:08:43 +02004362 if (new_dir != old_dir) {
4363 if (is_dir) {
4364 error = inode_permission(source, MAY_WRITE);
4365 if (error)
4366 return error;
4367 }
4368 if ((flags & RENAME_EXCHANGE) && new_is_dir) {
4369 error = inode_permission(target, MAY_WRITE);
4370 if (error)
4371 return error;
4372 }
Miklos Szeredibc270272014-04-01 17:08:42 +02004373 }
Robert Love0eeca282005-07-12 17:06:03 -04004374
Miklos Szeredi0b3974e2014-04-01 17:08:43 +02004375 error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry,
4376 flags);
Miklos Szeredibc270272014-04-01 17:08:42 +02004377 if (error)
4378 return error;
4379
4380 old_name = fsnotify_oldname_init(old_dentry->d_name.name);
4381 dget(new_dentry);
Miklos Szeredida1ce062014-04-01 17:08:43 +02004382 if (!is_dir || (flags & RENAME_EXCHANGE))
Miklos Szeredibc270272014-04-01 17:08:42 +02004383 lock_two_nondirectories(source, target);
4384 else if (target)
Al Viro59551022016-01-22 15:40:57 -05004385 inode_lock(target);
Miklos Szeredibc270272014-04-01 17:08:42 +02004386
4387 error = -EBUSY;
Eric W. Biederman7af13642013-10-04 19:15:13 -07004388 if (is_local_mountpoint(old_dentry) || is_local_mountpoint(new_dentry))
Miklos Szeredibc270272014-04-01 17:08:42 +02004389 goto out;
4390
Miklos Szeredida1ce062014-04-01 17:08:43 +02004391 if (max_links && new_dir != old_dir) {
Miklos Szeredibc270272014-04-01 17:08:42 +02004392 error = -EMLINK;
Miklos Szeredida1ce062014-04-01 17:08:43 +02004393 if (is_dir && !new_is_dir && new_dir->i_nlink >= max_links)
Miklos Szeredibc270272014-04-01 17:08:42 +02004394 goto out;
Miklos Szeredida1ce062014-04-01 17:08:43 +02004395 if ((flags & RENAME_EXCHANGE) && !is_dir && new_is_dir &&
4396 old_dir->i_nlink >= max_links)
4397 goto out;
4398 }
4399 if (is_dir && !(flags & RENAME_EXCHANGE) && target)
4400 shrink_dcache_parent(new_dentry);
4401 if (!is_dir) {
Miklos Szeredibc270272014-04-01 17:08:42 +02004402 error = try_break_deleg(source, delegated_inode);
4403 if (error)
4404 goto out;
Miklos Szeredida1ce062014-04-01 17:08:43 +02004405 }
4406 if (target && !new_is_dir) {
4407 error = try_break_deleg(target, delegated_inode);
4408 if (error)
4409 goto out;
Miklos Szeredibc270272014-04-01 17:08:42 +02004410 }
Miklos Szeredi7177a9c2014-07-23 15:15:30 +02004411 if (!old_dir->i_op->rename2) {
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004412 error = old_dir->i_op->rename(old_dir, old_dentry,
4413 new_dir, new_dentry);
4414 } else {
Miklos Szeredi7177a9c2014-07-23 15:15:30 +02004415 WARN_ON(old_dir->i_op->rename != NULL);
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004416 error = old_dir->i_op->rename2(old_dir, old_dentry,
4417 new_dir, new_dentry, flags);
4418 }
Miklos Szeredibc270272014-04-01 17:08:42 +02004419 if (error)
4420 goto out;
4421
Miklos Szeredida1ce062014-04-01 17:08:43 +02004422 if (!(flags & RENAME_EXCHANGE) && target) {
Miklos Szeredibc270272014-04-01 17:08:42 +02004423 if (is_dir)
4424 target->i_flags |= S_DEAD;
4425 dont_mount(new_dentry);
Eric W. Biederman8ed936b2013-10-01 18:33:48 -07004426 detach_mounts(new_dentry);
Miklos Szeredibc270272014-04-01 17:08:42 +02004427 }
Miklos Szeredida1ce062014-04-01 17:08:43 +02004428 if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE)) {
4429 if (!(flags & RENAME_EXCHANGE))
4430 d_move(old_dentry, new_dentry);
4431 else
4432 d_exchange(old_dentry, new_dentry);
4433 }
Miklos Szeredibc270272014-04-01 17:08:42 +02004434out:
Miklos Szeredida1ce062014-04-01 17:08:43 +02004435 if (!is_dir || (flags & RENAME_EXCHANGE))
Miklos Szeredibc270272014-04-01 17:08:42 +02004436 unlock_two_nondirectories(source, target);
4437 else if (target)
Al Viro59551022016-01-22 15:40:57 -05004438 inode_unlock(target);
Miklos Szeredibc270272014-04-01 17:08:42 +02004439 dput(new_dentry);
Miklos Szeredida1ce062014-04-01 17:08:43 +02004440 if (!error) {
Al Viro123df292009-12-25 04:57:57 -05004441 fsnotify_move(old_dir, new_dir, old_name, is_dir,
Miklos Szeredida1ce062014-04-01 17:08:43 +02004442 !(flags & RENAME_EXCHANGE) ? target : NULL, old_dentry);
4443 if (flags & RENAME_EXCHANGE) {
4444 fsnotify_move(new_dir, old_dir, old_dentry->d_name.name,
4445 new_is_dir, NULL, new_dentry);
4446 }
4447 }
Robert Love0eeca282005-07-12 17:06:03 -04004448 fsnotify_oldname_free(old_name);
4449
Linus Torvalds1da177e2005-04-16 15:20:36 -07004450 return error;
4451}
Al Viro4d359502014-03-14 12:20:17 -04004452EXPORT_SYMBOL(vfs_rename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004453
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004454SYSCALL_DEFINE5(renameat2, int, olddfd, const char __user *, oldname,
4455 int, newdfd, const char __user *, newname, unsigned int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004456{
Al Viro2ad94ae2008-07-21 09:32:51 -04004457 struct dentry *old_dentry, *new_dentry;
4458 struct dentry *trap;
Al Virof5beed72015-04-30 16:09:11 -04004459 struct path old_path, new_path;
4460 struct qstr old_last, new_last;
4461 int old_type, new_type;
J. Bruce Fields8e6d7822011-09-20 16:59:58 -04004462 struct inode *delegated_inode = NULL;
Jeff Layton91a27b22012-10-10 15:25:28 -04004463 struct filename *from;
4464 struct filename *to;
Al Virof5beed72015-04-30 16:09:11 -04004465 unsigned int lookup_flags = 0, target_flags = LOOKUP_RENAME_TARGET;
Jeff Laytonc6a94282012-12-11 12:10:10 -05004466 bool should_retry = false;
Al Viro2ad94ae2008-07-21 09:32:51 -04004467 int error;
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004468
Miklos Szeredi0d7a8552014-10-24 00:14:37 +02004469 if (flags & ~(RENAME_NOREPLACE | RENAME_EXCHANGE | RENAME_WHITEOUT))
Miklos Szeredida1ce062014-04-01 17:08:43 +02004470 return -EINVAL;
4471
Miklos Szeredi0d7a8552014-10-24 00:14:37 +02004472 if ((flags & (RENAME_NOREPLACE | RENAME_WHITEOUT)) &&
4473 (flags & RENAME_EXCHANGE))
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004474 return -EINVAL;
4475
Miklos Szeredi0d7a8552014-10-24 00:14:37 +02004476 if ((flags & RENAME_WHITEOUT) && !capable(CAP_MKNOD))
4477 return -EPERM;
4478
Al Virof5beed72015-04-30 16:09:11 -04004479 if (flags & RENAME_EXCHANGE)
4480 target_flags = 0;
4481
Jeff Laytonc6a94282012-12-11 12:10:10 -05004482retry:
Al Virof5beed72015-04-30 16:09:11 -04004483 from = user_path_parent(olddfd, oldname,
4484 &old_path, &old_last, &old_type, lookup_flags);
Jeff Layton91a27b22012-10-10 15:25:28 -04004485 if (IS_ERR(from)) {
4486 error = PTR_ERR(from);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004487 goto exit;
Jeff Layton91a27b22012-10-10 15:25:28 -04004488 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004489
Al Virof5beed72015-04-30 16:09:11 -04004490 to = user_path_parent(newdfd, newname,
4491 &new_path, &new_last, &new_type, lookup_flags);
Jeff Layton91a27b22012-10-10 15:25:28 -04004492 if (IS_ERR(to)) {
4493 error = PTR_ERR(to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004494 goto exit1;
Jeff Layton91a27b22012-10-10 15:25:28 -04004495 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004496
4497 error = -EXDEV;
Al Virof5beed72015-04-30 16:09:11 -04004498 if (old_path.mnt != new_path.mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004499 goto exit2;
4500
Linus Torvalds1da177e2005-04-16 15:20:36 -07004501 error = -EBUSY;
Al Virof5beed72015-04-30 16:09:11 -04004502 if (old_type != LAST_NORM)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004503 goto exit2;
4504
Miklos Szeredi0a7c3932014-04-01 17:08:43 +02004505 if (flags & RENAME_NOREPLACE)
4506 error = -EEXIST;
Al Virof5beed72015-04-30 16:09:11 -04004507 if (new_type != LAST_NORM)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004508 goto exit2;
4509
Al Virof5beed72015-04-30 16:09:11 -04004510 error = mnt_want_write(old_path.mnt);
Jan Karac30dabf2012-06-12 16:20:30 +02004511 if (error)
4512 goto exit2;
4513
J. Bruce Fields8e6d7822011-09-20 16:59:58 -04004514retry_deleg:
Al Virof5beed72015-04-30 16:09:11 -04004515 trap = lock_rename(new_path.dentry, old_path.dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004516
Al Virof5beed72015-04-30 16:09:11 -04004517 old_dentry = __lookup_hash(&old_last, old_path.dentry, lookup_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004518 error = PTR_ERR(old_dentry);
4519 if (IS_ERR(old_dentry))
4520 goto exit3;
4521 /* source must exist */
4522 error = -ENOENT;
David Howellsb18825a2013-09-12 19:22:53 +01004523 if (d_is_negative(old_dentry))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004524 goto exit4;
Al Virof5beed72015-04-30 16:09:11 -04004525 new_dentry = __lookup_hash(&new_last, new_path.dentry, lookup_flags | target_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004526 error = PTR_ERR(new_dentry);
4527 if (IS_ERR(new_dentry))
4528 goto exit4;
Miklos Szeredi0a7c3932014-04-01 17:08:43 +02004529 error = -EEXIST;
4530 if ((flags & RENAME_NOREPLACE) && d_is_positive(new_dentry))
4531 goto exit5;
Miklos Szeredida1ce062014-04-01 17:08:43 +02004532 if (flags & RENAME_EXCHANGE) {
4533 error = -ENOENT;
4534 if (d_is_negative(new_dentry))
4535 goto exit5;
4536
4537 if (!d_is_dir(new_dentry)) {
4538 error = -ENOTDIR;
Al Virof5beed72015-04-30 16:09:11 -04004539 if (new_last.name[new_last.len])
Miklos Szeredida1ce062014-04-01 17:08:43 +02004540 goto exit5;
4541 }
4542 }
Miklos Szeredi0a7c3932014-04-01 17:08:43 +02004543 /* unless the source is a directory trailing slashes give -ENOTDIR */
4544 if (!d_is_dir(old_dentry)) {
4545 error = -ENOTDIR;
Al Virof5beed72015-04-30 16:09:11 -04004546 if (old_last.name[old_last.len])
Miklos Szeredi0a7c3932014-04-01 17:08:43 +02004547 goto exit5;
Al Virof5beed72015-04-30 16:09:11 -04004548 if (!(flags & RENAME_EXCHANGE) && new_last.name[new_last.len])
Miklos Szeredi0a7c3932014-04-01 17:08:43 +02004549 goto exit5;
4550 }
4551 /* source should not be ancestor of target */
4552 error = -EINVAL;
4553 if (old_dentry == trap)
4554 goto exit5;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004555 /* target should not be an ancestor of source */
Miklos Szeredida1ce062014-04-01 17:08:43 +02004556 if (!(flags & RENAME_EXCHANGE))
4557 error = -ENOTEMPTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004558 if (new_dentry == trap)
4559 goto exit5;
4560
Al Virof5beed72015-04-30 16:09:11 -04004561 error = security_path_rename(&old_path, old_dentry,
4562 &new_path, new_dentry, flags);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09004563 if (error)
Jan Karac30dabf2012-06-12 16:20:30 +02004564 goto exit5;
Al Virof5beed72015-04-30 16:09:11 -04004565 error = vfs_rename(old_path.dentry->d_inode, old_dentry,
4566 new_path.dentry->d_inode, new_dentry,
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004567 &delegated_inode, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004568exit5:
4569 dput(new_dentry);
4570exit4:
4571 dput(old_dentry);
4572exit3:
Al Virof5beed72015-04-30 16:09:11 -04004573 unlock_rename(new_path.dentry, old_path.dentry);
J. Bruce Fields8e6d7822011-09-20 16:59:58 -04004574 if (delegated_inode) {
4575 error = break_deleg_wait(&delegated_inode);
4576 if (!error)
4577 goto retry_deleg;
4578 }
Al Virof5beed72015-04-30 16:09:11 -04004579 mnt_drop_write(old_path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004580exit2:
Jeff Laytonc6a94282012-12-11 12:10:10 -05004581 if (retry_estale(error, lookup_flags))
4582 should_retry = true;
Al Virof5beed72015-04-30 16:09:11 -04004583 path_put(&new_path);
Al Viro2ad94ae2008-07-21 09:32:51 -04004584 putname(to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004585exit1:
Al Virof5beed72015-04-30 16:09:11 -04004586 path_put(&old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004587 putname(from);
Jeff Laytonc6a94282012-12-11 12:10:10 -05004588 if (should_retry) {
4589 should_retry = false;
4590 lookup_flags |= LOOKUP_REVAL;
4591 goto retry;
4592 }
Al Viro2ad94ae2008-07-21 09:32:51 -04004593exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004594 return error;
4595}
4596
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004597SYSCALL_DEFINE4(renameat, int, olddfd, const char __user *, oldname,
4598 int, newdfd, const char __user *, newname)
4599{
4600 return sys_renameat2(olddfd, oldname, newdfd, newname, 0);
4601}
4602
Heiko Carstensa26eab22009-01-14 14:14:17 +01004603SYSCALL_DEFINE2(rename, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08004604{
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004605 return sys_renameat2(AT_FDCWD, oldname, AT_FDCWD, newname, 0);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08004606}
4607
Miklos Szeredi787fb6b2014-10-24 00:14:36 +02004608int vfs_whiteout(struct inode *dir, struct dentry *dentry)
4609{
4610 int error = may_create(dir, dentry);
4611 if (error)
4612 return error;
4613
4614 if (!dir->i_op->mknod)
4615 return -EPERM;
4616
4617 return dir->i_op->mknod(dir, dentry,
4618 S_IFCHR | WHITEOUT_MODE, WHITEOUT_DEV);
4619}
4620EXPORT_SYMBOL(vfs_whiteout);
4621
Al Viro5d826c82014-03-14 13:42:45 -04004622int readlink_copy(char __user *buffer, int buflen, const char *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004623{
Al Viro5d826c82014-03-14 13:42:45 -04004624 int len = PTR_ERR(link);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004625 if (IS_ERR(link))
4626 goto out;
4627
4628 len = strlen(link);
4629 if (len > (unsigned) buflen)
4630 len = buflen;
4631 if (copy_to_user(buffer, link, len))
4632 len = -EFAULT;
4633out:
4634 return len;
4635}
Al Viro5d826c82014-03-14 13:42:45 -04004636EXPORT_SYMBOL(readlink_copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004637
4638/*
4639 * A helper for ->readlink(). This should be used *ONLY* for symlinks that
Al Viro6b255392015-11-17 10:20:54 -05004640 * have ->get_link() not calling nd_jump_link(). Using (or not using) it
4641 * for any given inode is up to filesystem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004642 */
4643int generic_readlink(struct dentry *dentry, char __user *buffer, int buflen)
4644{
Al Virofceef392015-12-29 15:58:39 -05004645 DEFINE_DELAYED_CALL(done);
Al Viro5f2c4172015-05-07 11:14:26 -04004646 struct inode *inode = d_inode(dentry);
4647 const char *link = inode->i_link;
Marcin Slusarz694a1762008-06-09 16:40:37 -07004648 int res;
Linus Torvaldscc314ee2005-08-19 18:02:56 -07004649
Al Virod4dee482015-04-30 20:08:02 -04004650 if (!link) {
Al Virofceef392015-12-29 15:58:39 -05004651 link = inode->i_op->get_link(dentry, inode, &done);
Al Virod4dee482015-04-30 20:08:02 -04004652 if (IS_ERR(link))
4653 return PTR_ERR(link);
4654 }
Al Viro680baac2015-05-02 13:32:22 -04004655 res = readlink_copy(buffer, buflen, link);
Al Virofceef392015-12-29 15:58:39 -05004656 do_delayed_call(&done);
Marcin Slusarz694a1762008-06-09 16:40:37 -07004657 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004658}
Al Viro4d359502014-03-14 12:20:17 -04004659EXPORT_SYMBOL(generic_readlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004660
Linus Torvalds1da177e2005-04-16 15:20:36 -07004661/* get the link contents into pagecache */
Al Viro6b255392015-11-17 10:20:54 -05004662const char *page_get_link(struct dentry *dentry, struct inode *inode,
Al Virofceef392015-12-29 15:58:39 -05004663 struct delayed_call *callback)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004664{
Duane Griffinebd09ab2008-12-19 20:47:12 +00004665 char *kaddr;
4666 struct page *page;
Al Viro6b255392015-11-17 10:20:54 -05004667 struct address_space *mapping = inode->i_mapping;
4668
Al Virod3883d42015-11-17 10:41:04 -05004669 if (!dentry) {
4670 page = find_get_page(mapping, 0);
4671 if (!page)
4672 return ERR_PTR(-ECHILD);
4673 if (!PageUptodate(page)) {
4674 put_page(page);
4675 return ERR_PTR(-ECHILD);
4676 }
4677 } else {
4678 page = read_mapping_page(mapping, 0, NULL);
4679 if (IS_ERR(page))
4680 return (char*)page;
4681 }
Al Virofceef392015-12-29 15:58:39 -05004682 set_delayed_call(callback, page_put_link, page);
Al Viro21fc61c2015-11-17 01:07:57 -05004683 BUG_ON(mapping_gfp_mask(mapping) & __GFP_HIGHMEM);
4684 kaddr = page_address(page);
Al Viro6b255392015-11-17 10:20:54 -05004685 nd_terminate_link(kaddr, inode->i_size, PAGE_SIZE - 1);
Duane Griffinebd09ab2008-12-19 20:47:12 +00004686 return kaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004687}
4688
Al Viro6b255392015-11-17 10:20:54 -05004689EXPORT_SYMBOL(page_get_link);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004690
Al Virofceef392015-12-29 15:58:39 -05004691void page_put_link(void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004692{
Al Virofceef392015-12-29 15:58:39 -05004693 put_page(arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004694}
Al Viro4d359502014-03-14 12:20:17 -04004695EXPORT_SYMBOL(page_put_link);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004696
Al Viroaa80dea2015-11-16 18:26:34 -05004697int page_readlink(struct dentry *dentry, char __user *buffer, int buflen)
4698{
Al Virofceef392015-12-29 15:58:39 -05004699 DEFINE_DELAYED_CALL(done);
Al Viro6b255392015-11-17 10:20:54 -05004700 int res = readlink_copy(buffer, buflen,
4701 page_get_link(dentry, d_inode(dentry),
Al Virofceef392015-12-29 15:58:39 -05004702 &done));
4703 do_delayed_call(&done);
Al Viroaa80dea2015-11-16 18:26:34 -05004704 return res;
4705}
4706EXPORT_SYMBOL(page_readlink);
4707
Nick Piggin54566b22009-01-04 12:00:53 -08004708/*
4709 * The nofs argument instructs pagecache_write_begin to pass AOP_FLAG_NOFS
4710 */
4711int __page_symlink(struct inode *inode, const char *symname, int len, int nofs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004712{
4713 struct address_space *mapping = inode->i_mapping;
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08004714 struct page *page;
Nick Pigginafddba42007-10-16 01:25:01 -07004715 void *fsdata;
Dmitriy Monakhovbeb497a2007-02-16 01:27:18 -08004716 int err;
Nick Piggin54566b22009-01-04 12:00:53 -08004717 unsigned int flags = AOP_FLAG_UNINTERRUPTIBLE;
4718 if (nofs)
4719 flags |= AOP_FLAG_NOFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004720
NeilBrown7e53cac2006-03-25 03:07:57 -08004721retry:
Nick Pigginafddba42007-10-16 01:25:01 -07004722 err = pagecache_write_begin(NULL, mapping, 0, len-1,
Nick Piggin54566b22009-01-04 12:00:53 -08004723 flags, &page, &fsdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004724 if (err)
Nick Pigginafddba42007-10-16 01:25:01 -07004725 goto fail;
4726
Al Viro21fc61c2015-11-17 01:07:57 -05004727 memcpy(page_address(page), symname, len-1);
Nick Pigginafddba42007-10-16 01:25:01 -07004728
4729 err = pagecache_write_end(NULL, mapping, 0, len-1, len-1,
4730 page, fsdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004731 if (err < 0)
4732 goto fail;
Nick Pigginafddba42007-10-16 01:25:01 -07004733 if (err < len-1)
4734 goto retry;
4735
Linus Torvalds1da177e2005-04-16 15:20:36 -07004736 mark_inode_dirty(inode);
4737 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004738fail:
4739 return err;
4740}
Al Viro4d359502014-03-14 12:20:17 -04004741EXPORT_SYMBOL(__page_symlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004742
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08004743int page_symlink(struct inode *inode, const char *symname, int len)
4744{
4745 return __page_symlink(inode, symname, len,
Michal Hockoc62d2552015-11-06 16:28:49 -08004746 !mapping_gfp_constraint(inode->i_mapping, __GFP_FS));
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08004747}
Al Viro4d359502014-03-14 12:20:17 -04004748EXPORT_SYMBOL(page_symlink);
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08004749
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08004750const struct inode_operations page_symlink_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004751 .readlink = generic_readlink,
Al Viro6b255392015-11-17 10:20:54 -05004752 .get_link = page_get_link,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004753};
Linus Torvalds1da177e2005-04-16 15:20:36 -07004754EXPORT_SYMBOL(page_symlink_inode_operations);