xref: /openbmc/linux/fs/namei.c (revision 30aba665)
1b2441318SGreg Kroah-Hartman // SPDX-License-Identifier: GPL-2.0
21da177e4SLinus Torvalds /*
31da177e4SLinus Torvalds  *  linux/fs/namei.c
41da177e4SLinus Torvalds  *
51da177e4SLinus Torvalds  *  Copyright (C) 1991, 1992  Linus Torvalds
61da177e4SLinus Torvalds  */
71da177e4SLinus Torvalds 
81da177e4SLinus Torvalds /*
91da177e4SLinus Torvalds  * Some corrections by tytso.
101da177e4SLinus Torvalds  */
111da177e4SLinus Torvalds 
121da177e4SLinus Torvalds /* [Feb 1997 T. Schoebel-Theuer] Complete rewrite of the pathname
131da177e4SLinus Torvalds  * lookup logic.
141da177e4SLinus Torvalds  */
151da177e4SLinus Torvalds /* [Feb-Apr 2000, AV] Rewrite to the new namespace architecture.
161da177e4SLinus Torvalds  */
171da177e4SLinus Torvalds 
181da177e4SLinus Torvalds #include <linux/init.h>
19630d9c47SPaul Gortmaker #include <linux/export.h>
2044696908SDavid S. Miller #include <linux/kernel.h>
211da177e4SLinus Torvalds #include <linux/slab.h>
221da177e4SLinus Torvalds #include <linux/fs.h>
231da177e4SLinus Torvalds #include <linux/namei.h>
241da177e4SLinus Torvalds #include <linux/pagemap.h>
250eeca283SRobert Love #include <linux/fsnotify.h>
261da177e4SLinus Torvalds #include <linux/personality.h>
271da177e4SLinus Torvalds #include <linux/security.h>
286146f0d5SMimi Zohar #include <linux/ima.h>
291da177e4SLinus Torvalds #include <linux/syscalls.h>
301da177e4SLinus Torvalds #include <linux/mount.h>
311da177e4SLinus Torvalds #include <linux/audit.h>
3216f7e0feSRandy Dunlap #include <linux/capability.h>
33834f2a4aSTrond Myklebust #include <linux/file.h>
345590ff0dSUlrich Drepper #include <linux/fcntl.h>
3508ce5f16SSerge E. Hallyn #include <linux/device_cgroup.h>
365ad4e53bSAl Viro #include <linux/fs_struct.h>
37e77819e5SLinus Torvalds #include <linux/posix_acl.h>
3899d263d4SLinus Torvalds #include <linux/hash.h>
392a18da7aSGeorge Spelvin #include <linux/bitops.h>
40aeaa4a79SEric W. Biederman #include <linux/init_task.h>
417c0f6ba6SLinus Torvalds #include <linux/uaccess.h>
421c949843SRasmus Villemoes #include <linux/build_bug.h>
431da177e4SLinus Torvalds 
44e81e3f4dSEric Paris #include "internal.h"
45c7105365SAl Viro #include "mount.h"
46e81e3f4dSEric Paris 
471da177e4SLinus Torvalds /* [Feb-1997 T. Schoebel-Theuer]
481da177e4SLinus Torvalds  * Fundamental changes in the pathname lookup mechanisms (namei)
491da177e4SLinus Torvalds  * were necessary because of omirr.  The reason is that omirr needs
501da177e4SLinus Torvalds  * to know the _real_ pathname, not the user-supplied one, in case
511da177e4SLinus Torvalds  * of symlinks (and also when transname replacements occur).
521da177e4SLinus Torvalds  *
531da177e4SLinus Torvalds  * The new code replaces the old recursive symlink resolution with
541da177e4SLinus Torvalds  * an iterative one (in case of non-nested symlink chains).  It does
551da177e4SLinus Torvalds  * this with calls to <fs>_follow_link().
561da177e4SLinus Torvalds  * As a side effect, dir_namei(), _namei() and follow_link() are now
571da177e4SLinus Torvalds  * replaced with a single function lookup_dentry() that can handle all
581da177e4SLinus Torvalds  * the special cases of the former code.
591da177e4SLinus Torvalds  *
601da177e4SLinus Torvalds  * With the new dcache, the pathname is stored at each inode, at least as
611da177e4SLinus Torvalds  * long as the refcount of the inode is positive.  As a side effect, the
621da177e4SLinus Torvalds  * size of the dcache depends on the inode cache and thus is dynamic.
631da177e4SLinus Torvalds  *
641da177e4SLinus Torvalds  * [29-Apr-1998 C. Scott Ananian] Updated above description of symlink
651da177e4SLinus Torvalds  * resolution to correspond with current state of the code.
661da177e4SLinus Torvalds  *
671da177e4SLinus Torvalds  * Note that the symlink resolution is not *completely* iterative.
681da177e4SLinus Torvalds  * There is still a significant amount of tail- and mid- recursion in
691da177e4SLinus Torvalds  * the algorithm.  Also, note that <fs>_readlink() is not used in
701da177e4SLinus Torvalds  * lookup_dentry(): lookup_dentry() on the result of <fs>_readlink()
711da177e4SLinus Torvalds  * may return different results than <fs>_follow_link().  Many virtual
721da177e4SLinus Torvalds  * filesystems (including /proc) exhibit this behavior.
731da177e4SLinus Torvalds  */
741da177e4SLinus Torvalds 
751da177e4SLinus Torvalds /* [24-Feb-97 T. Schoebel-Theuer] Side effects caused by new implementation:
761da177e4SLinus Torvalds  * New symlink semantics: when open() is called with flags O_CREAT | O_EXCL
771da177e4SLinus Torvalds  * and the name already exists in form of a symlink, try to create the new
781da177e4SLinus Torvalds  * name indicated by the symlink. The old code always complained that the
791da177e4SLinus Torvalds  * name already exists, due to not following the symlink even if its target
801da177e4SLinus Torvalds  * is nonexistent.  The new semantics affects also mknod() and link() when
8125985edcSLucas De Marchi  * the name is a symlink pointing to a non-existent name.
821da177e4SLinus Torvalds  *
831da177e4SLinus Torvalds  * I don't know which semantics is the right one, since I have no access
841da177e4SLinus Torvalds  * to standards. But I found by trial that HP-UX 9.0 has the full "new"
851da177e4SLinus Torvalds  * semantics implemented, while SunOS 4.1.1 and Solaris (SunOS 5.4) have the
861da177e4SLinus Torvalds  * "old" one. Personally, I think the new semantics is much more logical.
871da177e4SLinus Torvalds  * Note that "ln old new" where "new" is a symlink pointing to a non-existing
881da177e4SLinus Torvalds  * file does succeed in both HP-UX and SunOs, but not in Solaris
891da177e4SLinus Torvalds  * and in the old Linux semantics.
901da177e4SLinus Torvalds  */
911da177e4SLinus Torvalds 
921da177e4SLinus Torvalds /* [16-Dec-97 Kevin Buhr] For security reasons, we change some symlink
931da177e4SLinus Torvalds  * semantics.  See the comments in "open_namei" and "do_link" below.
941da177e4SLinus Torvalds  *
951da177e4SLinus Torvalds  * [10-Sep-98 Alan Modra] Another symlink change.
961da177e4SLinus Torvalds  */
971da177e4SLinus Torvalds 
981da177e4SLinus Torvalds /* [Feb-Apr 2000 AV] Complete rewrite. Rules for symlinks:
991da177e4SLinus Torvalds  *	inside the path - always follow.
1001da177e4SLinus Torvalds  *	in the last component in creation/removal/renaming - never follow.
1011da177e4SLinus Torvalds  *	if LOOKUP_FOLLOW passed - follow.
1021da177e4SLinus Torvalds  *	if the pathname has trailing slashes - follow.
1031da177e4SLinus Torvalds  *	otherwise - don't follow.
1041da177e4SLinus Torvalds  * (applied in that order).
1051da177e4SLinus Torvalds  *
1061da177e4SLinus Torvalds  * [Jun 2000 AV] Inconsistent behaviour of open() in case if flags==O_CREAT
1071da177e4SLinus Torvalds  * restored for 2.4. This is the last surviving part of old 4.2BSD bug.
1081da177e4SLinus Torvalds  * During the 2.4 we need to fix the userland stuff depending on it -
1091da177e4SLinus Torvalds  * hopefully we will be able to get rid of that wart in 2.5. So far only
1101da177e4SLinus Torvalds  * XEmacs seems to be relying on it...
1111da177e4SLinus Torvalds  */
1121da177e4SLinus Torvalds /*
1131da177e4SLinus Torvalds  * [Sep 2001 AV] Single-semaphore locking scheme (kudos to David Holland)
114a11f3a05SArjan van de Ven  * implemented.  Let's see if raised priority of ->s_vfs_rename_mutex gives
1151da177e4SLinus Torvalds  * any extra contention...
1161da177e4SLinus Torvalds  */
1171da177e4SLinus Torvalds 
1181da177e4SLinus Torvalds /* In order to reduce some races, while at the same time doing additional
1191da177e4SLinus Torvalds  * checking and hopefully speeding things up, we copy filenames to the
1201da177e4SLinus Torvalds  * kernel data space before using them..
1211da177e4SLinus Torvalds  *
1221da177e4SLinus Torvalds  * POSIX.1 2.4: an empty pathname is invalid (ENOENT).
1231da177e4SLinus Torvalds  * PATH_MAX includes the nul terminator --RR.
1241da177e4SLinus Torvalds  */
1257950e385SJeff Layton 
126fd2f7cb5SAl Viro #define EMBEDDED_NAME_MAX	(PATH_MAX - offsetof(struct filename, iname))
12791a27b2aSJeff Layton 
12851f39a1fSDavid Drysdale struct filename *
12991a27b2aSJeff Layton getname_flags(const char __user *filename, int flags, int *empty)
13091a27b2aSJeff Layton {
13194b5d262SAl Viro 	struct filename *result;
1327950e385SJeff Layton 	char *kname;
13394b5d262SAl Viro 	int len;
1341c949843SRasmus Villemoes 	BUILD_BUG_ON(offsetof(struct filename, iname) % sizeof(long) != 0);
1351da177e4SLinus Torvalds 
1367ac86265SJeff Layton 	result = audit_reusename(filename);
1377ac86265SJeff Layton 	if (result)
1387ac86265SJeff Layton 		return result;
1397ac86265SJeff Layton 
1407950e385SJeff Layton 	result = __getname();
1413f9f0aa6SLinus Torvalds 	if (unlikely(!result))
1424043cde8SEric Paris 		return ERR_PTR(-ENOMEM);
1431da177e4SLinus Torvalds 
1447950e385SJeff Layton 	/*
1457950e385SJeff Layton 	 * First, try to embed the struct filename inside the names_cache
1467950e385SJeff Layton 	 * allocation
1477950e385SJeff Layton 	 */
148fd2f7cb5SAl Viro 	kname = (char *)result->iname;
14991a27b2aSJeff Layton 	result->name = kname;
1507950e385SJeff Layton 
15194b5d262SAl Viro 	len = strncpy_from_user(kname, filename, EMBEDDED_NAME_MAX);
15291a27b2aSJeff Layton 	if (unlikely(len < 0)) {
15394b5d262SAl Viro 		__putname(result);
15494b5d262SAl Viro 		return ERR_PTR(len);
15591a27b2aSJeff Layton 	}
1563f9f0aa6SLinus Torvalds 
1577950e385SJeff Layton 	/*
1587950e385SJeff Layton 	 * Uh-oh. We have a name that's approaching PATH_MAX. Allocate a
1597950e385SJeff Layton 	 * separate struct filename so we can dedicate the entire
1607950e385SJeff Layton 	 * names_cache allocation for the pathname, and re-do the copy from
1617950e385SJeff Layton 	 * userland.
1627950e385SJeff Layton 	 */
16394b5d262SAl Viro 	if (unlikely(len == EMBEDDED_NAME_MAX)) {
164fd2f7cb5SAl Viro 		const size_t size = offsetof(struct filename, iname[1]);
1657950e385SJeff Layton 		kname = (char *)result;
1667950e385SJeff Layton 
167fd2f7cb5SAl Viro 		/*
168fd2f7cb5SAl Viro 		 * size is chosen that way we to guarantee that
169fd2f7cb5SAl Viro 		 * result->iname[0] is within the same object and that
170fd2f7cb5SAl Viro 		 * kname can't be equal to result->iname, no matter what.
171fd2f7cb5SAl Viro 		 */
172fd2f7cb5SAl Viro 		result = kzalloc(size, GFP_KERNEL);
17394b5d262SAl Viro 		if (unlikely(!result)) {
17494b5d262SAl Viro 			__putname(kname);
17594b5d262SAl Viro 			return ERR_PTR(-ENOMEM);
1767950e385SJeff Layton 		}
1777950e385SJeff Layton 		result->name = kname;
17894b5d262SAl Viro 		len = strncpy_from_user(kname, filename, PATH_MAX);
17994b5d262SAl Viro 		if (unlikely(len < 0)) {
18094b5d262SAl Viro 			__putname(kname);
18194b5d262SAl Viro 			kfree(result);
18294b5d262SAl Viro 			return ERR_PTR(len);
18394b5d262SAl Viro 		}
18494b5d262SAl Viro 		if (unlikely(len == PATH_MAX)) {
18594b5d262SAl Viro 			__putname(kname);
18694b5d262SAl Viro 			kfree(result);
18794b5d262SAl Viro 			return ERR_PTR(-ENAMETOOLONG);
18894b5d262SAl Viro 		}
1897950e385SJeff Layton 	}
1907950e385SJeff Layton 
19194b5d262SAl Viro 	result->refcnt = 1;
1923f9f0aa6SLinus Torvalds 	/* The empty path is special. */
1933f9f0aa6SLinus Torvalds 	if (unlikely(!len)) {
1943f9f0aa6SLinus Torvalds 		if (empty)
1951fa1e7f6SAndy Whitcroft 			*empty = 1;
19694b5d262SAl Viro 		if (!(flags & LOOKUP_EMPTY)) {
19794b5d262SAl Viro 			putname(result);
19894b5d262SAl Viro 			return ERR_PTR(-ENOENT);
1991da177e4SLinus Torvalds 		}
20094b5d262SAl Viro 	}
2017950e385SJeff Layton 
2027950e385SJeff Layton 	result->uptr = filename;
203c4ad8f98SLinus Torvalds 	result->aname = NULL;
2041da177e4SLinus Torvalds 	audit_getname(result);
2051da177e4SLinus Torvalds 	return result;
2063f9f0aa6SLinus Torvalds }
2073f9f0aa6SLinus Torvalds 
20891a27b2aSJeff Layton struct filename *
20991a27b2aSJeff Layton getname(const char __user * filename)
210f52e0c11SAl Viro {
211f7493e5dSLinus Torvalds 	return getname_flags(filename, 0, NULL);
212f52e0c11SAl Viro }
213f52e0c11SAl Viro 
214c4ad8f98SLinus Torvalds struct filename *
215c4ad8f98SLinus Torvalds getname_kernel(const char * filename)
216c4ad8f98SLinus Torvalds {
217c4ad8f98SLinus Torvalds 	struct filename *result;
21808518549SPaul Moore 	int len = strlen(filename) + 1;
219c4ad8f98SLinus Torvalds 
220c4ad8f98SLinus Torvalds 	result = __getname();
221c4ad8f98SLinus Torvalds 	if (unlikely(!result))
222c4ad8f98SLinus Torvalds 		return ERR_PTR(-ENOMEM);
223c4ad8f98SLinus Torvalds 
22408518549SPaul Moore 	if (len <= EMBEDDED_NAME_MAX) {
225fd2f7cb5SAl Viro 		result->name = (char *)result->iname;
22608518549SPaul Moore 	} else if (len <= PATH_MAX) {
22730ce4d19SAl Viro 		const size_t size = offsetof(struct filename, iname[1]);
22808518549SPaul Moore 		struct filename *tmp;
22908518549SPaul Moore 
23030ce4d19SAl Viro 		tmp = kmalloc(size, GFP_KERNEL);
23108518549SPaul Moore 		if (unlikely(!tmp)) {
23208518549SPaul Moore 			__putname(result);
23308518549SPaul Moore 			return ERR_PTR(-ENOMEM);
23408518549SPaul Moore 		}
23508518549SPaul Moore 		tmp->name = (char *)result;
23608518549SPaul Moore 		result = tmp;
23708518549SPaul Moore 	} else {
23808518549SPaul Moore 		__putname(result);
23908518549SPaul Moore 		return ERR_PTR(-ENAMETOOLONG);
24008518549SPaul Moore 	}
24108518549SPaul Moore 	memcpy((char *)result->name, filename, len);
242c4ad8f98SLinus Torvalds 	result->uptr = NULL;
243c4ad8f98SLinus Torvalds 	result->aname = NULL;
24455422d0bSPaul Moore 	result->refcnt = 1;
245fd3522fdSPaul Moore 	audit_getname(result);
246c4ad8f98SLinus Torvalds 
247c4ad8f98SLinus Torvalds 	return result;
248c4ad8f98SLinus Torvalds }
249c4ad8f98SLinus Torvalds 
25091a27b2aSJeff Layton void putname(struct filename *name)
2511da177e4SLinus Torvalds {
25255422d0bSPaul Moore 	BUG_ON(name->refcnt <= 0);
25355422d0bSPaul Moore 
25455422d0bSPaul Moore 	if (--name->refcnt > 0)
25555422d0bSPaul Moore 		return;
25655422d0bSPaul Moore 
257fd2f7cb5SAl Viro 	if (name->name != name->iname) {
25855422d0bSPaul Moore 		__putname(name->name);
25955422d0bSPaul Moore 		kfree(name);
26055422d0bSPaul Moore 	} else
26155422d0bSPaul Moore 		__putname(name);
2621da177e4SLinus Torvalds }
2631da177e4SLinus Torvalds 
264e77819e5SLinus Torvalds static int check_acl(struct inode *inode, int mask)
265e77819e5SLinus Torvalds {
26684635d68SLinus Torvalds #ifdef CONFIG_FS_POSIX_ACL
267e77819e5SLinus Torvalds 	struct posix_acl *acl;
268e77819e5SLinus Torvalds 
269e77819e5SLinus Torvalds 	if (mask & MAY_NOT_BLOCK) {
2703567866bSAl Viro 		acl = get_cached_acl_rcu(inode, ACL_TYPE_ACCESS);
2713567866bSAl Viro 	        if (!acl)
272e77819e5SLinus Torvalds 	                return -EAGAIN;
2733567866bSAl Viro 		/* no ->get_acl() calls in RCU mode... */
274b8a7a3a6SAndreas Gruenbacher 		if (is_uncached_acl(acl))
275e77819e5SLinus Torvalds 			return -ECHILD;
276206b1d09SAri Savolainen 	        return posix_acl_permission(inode, acl, mask & ~MAY_NOT_BLOCK);
277e77819e5SLinus Torvalds 	}
278e77819e5SLinus Torvalds 
2792982baa2SChristoph Hellwig 	acl = get_acl(inode, ACL_TYPE_ACCESS);
2804e34e719SChristoph Hellwig 	if (IS_ERR(acl))
2814e34e719SChristoph Hellwig 		return PTR_ERR(acl);
282e77819e5SLinus Torvalds 	if (acl) {
283e77819e5SLinus Torvalds 	        int error = posix_acl_permission(inode, acl, mask);
284e77819e5SLinus Torvalds 	        posix_acl_release(acl);
285e77819e5SLinus Torvalds 	        return error;
286e77819e5SLinus Torvalds 	}
28784635d68SLinus Torvalds #endif
288e77819e5SLinus Torvalds 
289e77819e5SLinus Torvalds 	return -EAGAIN;
290e77819e5SLinus Torvalds }
291e77819e5SLinus Torvalds 
2925909ccaaSLinus Torvalds /*
293948409c7SAndreas Gruenbacher  * This does the basic permission checking
2945909ccaaSLinus Torvalds  */
2957e40145eSAl Viro static int acl_permission_check(struct inode *inode, int mask)
2965909ccaaSLinus Torvalds {
29726cf46beSLinus Torvalds 	unsigned int mode = inode->i_mode;
2985909ccaaSLinus Torvalds 
2998e96e3b7SEric W. Biederman 	if (likely(uid_eq(current_fsuid(), inode->i_uid)))
3005909ccaaSLinus Torvalds 		mode >>= 6;
3015909ccaaSLinus Torvalds 	else {
302e77819e5SLinus Torvalds 		if (IS_POSIXACL(inode) && (mode & S_IRWXG)) {
3037e40145eSAl Viro 			int error = check_acl(inode, mask);
3045909ccaaSLinus Torvalds 			if (error != -EAGAIN)
3055909ccaaSLinus Torvalds 				return error;
3065909ccaaSLinus Torvalds 		}
3075909ccaaSLinus Torvalds 
3085909ccaaSLinus Torvalds 		if (in_group_p(inode->i_gid))
3095909ccaaSLinus Torvalds 			mode >>= 3;
3105909ccaaSLinus Torvalds 	}
3115909ccaaSLinus Torvalds 
3125909ccaaSLinus Torvalds 	/*
3135909ccaaSLinus Torvalds 	 * If the DACs are ok we don't need any capability check.
3145909ccaaSLinus Torvalds 	 */
3159c2c7039SAl Viro 	if ((mask & ~mode & (MAY_READ | MAY_WRITE | MAY_EXEC)) == 0)
3165909ccaaSLinus Torvalds 		return 0;
3175909ccaaSLinus Torvalds 	return -EACCES;
3185909ccaaSLinus Torvalds }
3191da177e4SLinus Torvalds 
3201da177e4SLinus Torvalds /**
3211da177e4SLinus Torvalds  * generic_permission -  check for access rights on a Posix-like filesystem
3221da177e4SLinus Torvalds  * @inode:	inode to check access rights for
3238fd90c8dSAndreas Gruenbacher  * @mask:	right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC, ...)
3241da177e4SLinus Torvalds  *
3251da177e4SLinus Torvalds  * Used to check for read/write/execute permissions on a file.
3261da177e4SLinus Torvalds  * We use "fsuid" for this, letting us set arbitrary permissions
3271da177e4SLinus Torvalds  * for filesystem access without changing the "normal" uids which
328b74c79e9SNick Piggin  * are used for other things.
329b74c79e9SNick Piggin  *
330b74c79e9SNick Piggin  * generic_permission is rcu-walk aware. It returns -ECHILD in case an rcu-walk
331b74c79e9SNick Piggin  * request cannot be satisfied (eg. requires blocking or too much complexity).
332b74c79e9SNick Piggin  * It would then be called again in ref-walk mode.
3331da177e4SLinus Torvalds  */
3342830ba7fSAl Viro int generic_permission(struct inode *inode, int mask)
3351da177e4SLinus Torvalds {
3365909ccaaSLinus Torvalds 	int ret;
3371da177e4SLinus Torvalds 
3381da177e4SLinus Torvalds 	/*
339948409c7SAndreas Gruenbacher 	 * Do the basic permission checks.
3401da177e4SLinus Torvalds 	 */
3417e40145eSAl Viro 	ret = acl_permission_check(inode, mask);
3425909ccaaSLinus Torvalds 	if (ret != -EACCES)
3435909ccaaSLinus Torvalds 		return ret;
3441da177e4SLinus Torvalds 
345d594e7ecSAl Viro 	if (S_ISDIR(inode->i_mode)) {
346d594e7ecSAl Viro 		/* DACs are overridable for directories */
347d594e7ecSAl Viro 		if (!(mask & MAY_WRITE))
34823adbe12SAndy Lutomirski 			if (capable_wrt_inode_uidgid(inode,
34923adbe12SAndy Lutomirski 						     CAP_DAC_READ_SEARCH))
350d594e7ecSAl Viro 				return 0;
35123adbe12SAndy Lutomirski 		if (capable_wrt_inode_uidgid(inode, CAP_DAC_OVERRIDE))
3521da177e4SLinus Torvalds 			return 0;
3532a4c2242SStephen Smalley 		return -EACCES;
3542a4c2242SStephen Smalley 	}
3551da177e4SLinus Torvalds 
3561da177e4SLinus Torvalds 	/*
3571da177e4SLinus Torvalds 	 * Searching includes executable on directories, else just read.
3581da177e4SLinus Torvalds 	 */
3597ea66001SSerge E. Hallyn 	mask &= MAY_READ | MAY_WRITE | MAY_EXEC;
360d594e7ecSAl Viro 	if (mask == MAY_READ)
36123adbe12SAndy Lutomirski 		if (capable_wrt_inode_uidgid(inode, CAP_DAC_READ_SEARCH))
3621da177e4SLinus Torvalds 			return 0;
3632a4c2242SStephen Smalley 	/*
3642a4c2242SStephen Smalley 	 * Read/write DACs are always overridable.
3652a4c2242SStephen Smalley 	 * Executable DACs are overridable when there is
3662a4c2242SStephen Smalley 	 * at least one exec bit set.
3672a4c2242SStephen Smalley 	 */
3682a4c2242SStephen Smalley 	if (!(mask & MAY_EXEC) || (inode->i_mode & S_IXUGO))
3692a4c2242SStephen Smalley 		if (capable_wrt_inode_uidgid(inode, CAP_DAC_OVERRIDE))
3702a4c2242SStephen Smalley 			return 0;
3711da177e4SLinus Torvalds 
3721da177e4SLinus Torvalds 	return -EACCES;
3731da177e4SLinus Torvalds }
3744d359507SAl Viro EXPORT_SYMBOL(generic_permission);
3751da177e4SLinus Torvalds 
3763ddcd056SLinus Torvalds /*
3773ddcd056SLinus Torvalds  * We _really_ want to just do "generic_permission()" without
3783ddcd056SLinus Torvalds  * even looking at the inode->i_op values. So we keep a cache
3793ddcd056SLinus Torvalds  * flag in inode->i_opflags, that says "this has not special
3803ddcd056SLinus Torvalds  * permission function, use the fast case".
3813ddcd056SLinus Torvalds  */
3823ddcd056SLinus Torvalds static inline int do_inode_permission(struct inode *inode, int mask)
3833ddcd056SLinus Torvalds {
3843ddcd056SLinus Torvalds 	if (unlikely(!(inode->i_opflags & IOP_FASTPERM))) {
3853ddcd056SLinus Torvalds 		if (likely(inode->i_op->permission))
3863ddcd056SLinus Torvalds 			return inode->i_op->permission(inode, mask);
3873ddcd056SLinus Torvalds 
3883ddcd056SLinus Torvalds 		/* This gets set once for the inode lifetime */
3893ddcd056SLinus Torvalds 		spin_lock(&inode->i_lock);
3903ddcd056SLinus Torvalds 		inode->i_opflags |= IOP_FASTPERM;
3913ddcd056SLinus Torvalds 		spin_unlock(&inode->i_lock);
3923ddcd056SLinus Torvalds 	}
3933ddcd056SLinus Torvalds 	return generic_permission(inode, mask);
3943ddcd056SLinus Torvalds }
3953ddcd056SLinus Torvalds 
396cb23beb5SChristoph Hellwig /**
3970bdaea90SDavid Howells  * sb_permission - Check superblock-level permissions
3980bdaea90SDavid Howells  * @sb: Superblock of inode to check permission on
39955852635SRandy Dunlap  * @inode: Inode to check permission on
4000bdaea90SDavid Howells  * @mask: Right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
4010bdaea90SDavid Howells  *
4020bdaea90SDavid Howells  * Separate out file-system wide checks from inode-specific permission checks.
4030bdaea90SDavid Howells  */
4040bdaea90SDavid Howells static int sb_permission(struct super_block *sb, struct inode *inode, int mask)
4050bdaea90SDavid Howells {
4060bdaea90SDavid Howells 	if (unlikely(mask & MAY_WRITE)) {
4070bdaea90SDavid Howells 		umode_t mode = inode->i_mode;
4080bdaea90SDavid Howells 
4090bdaea90SDavid Howells 		/* Nobody gets write access to a read-only fs. */
410bc98a42cSDavid Howells 		if (sb_rdonly(sb) && (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode)))
4110bdaea90SDavid Howells 			return -EROFS;
4120bdaea90SDavid Howells 	}
4130bdaea90SDavid Howells 	return 0;
4140bdaea90SDavid Howells }
4150bdaea90SDavid Howells 
4160bdaea90SDavid Howells /**
4170bdaea90SDavid Howells  * inode_permission - Check for access rights to a given inode
4180bdaea90SDavid Howells  * @inode: Inode to check permission on
4190bdaea90SDavid Howells  * @mask: Right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
4200bdaea90SDavid Howells  *
4210bdaea90SDavid Howells  * Check for read/write/execute permissions on an inode.  We use fs[ug]id for
4220bdaea90SDavid Howells  * this, letting us set arbitrary permissions for filesystem access without
4230bdaea90SDavid Howells  * changing the "normal" UIDs which are used for other things.
4240bdaea90SDavid Howells  *
4250bdaea90SDavid Howells  * When checking for MAY_APPEND, MAY_WRITE must also be set in @mask.
4260bdaea90SDavid Howells  */
4270bdaea90SDavid Howells int inode_permission(struct inode *inode, int mask)
4280bdaea90SDavid Howells {
4290bdaea90SDavid Howells 	int retval;
4300bdaea90SDavid Howells 
4310bdaea90SDavid Howells 	retval = sb_permission(inode->i_sb, inode, mask);
4320bdaea90SDavid Howells 	if (retval)
4330bdaea90SDavid Howells 		return retval;
4344bfd054aSEric Biggers 
4354bfd054aSEric Biggers 	if (unlikely(mask & MAY_WRITE)) {
4364bfd054aSEric Biggers 		/*
4374bfd054aSEric Biggers 		 * Nobody gets write access to an immutable file.
4384bfd054aSEric Biggers 		 */
4394bfd054aSEric Biggers 		if (IS_IMMUTABLE(inode))
4404bfd054aSEric Biggers 			return -EPERM;
4414bfd054aSEric Biggers 
4424bfd054aSEric Biggers 		/*
4434bfd054aSEric Biggers 		 * Updating mtime will likely cause i_uid and i_gid to be
4444bfd054aSEric Biggers 		 * written back improperly if their true value is unknown
4454bfd054aSEric Biggers 		 * to the vfs.
4464bfd054aSEric Biggers 		 */
4474bfd054aSEric Biggers 		if (HAS_UNMAPPED_ID(inode))
4484bfd054aSEric Biggers 			return -EACCES;
4494bfd054aSEric Biggers 	}
4504bfd054aSEric Biggers 
4514bfd054aSEric Biggers 	retval = do_inode_permission(inode, mask);
4524bfd054aSEric Biggers 	if (retval)
4534bfd054aSEric Biggers 		return retval;
4544bfd054aSEric Biggers 
4554bfd054aSEric Biggers 	retval = devcgroup_inode_permission(inode, mask);
4564bfd054aSEric Biggers 	if (retval)
4574bfd054aSEric Biggers 		return retval;
4584bfd054aSEric Biggers 
4594bfd054aSEric Biggers 	return security_inode_permission(inode, mask);
4600bdaea90SDavid Howells }
4614d359507SAl Viro EXPORT_SYMBOL(inode_permission);
4620bdaea90SDavid Howells 
4630bdaea90SDavid Howells /**
4645dd784d0SJan Blunck  * path_get - get a reference to a path
4655dd784d0SJan Blunck  * @path: path to get the reference to
4665dd784d0SJan Blunck  *
4675dd784d0SJan Blunck  * Given a path increment the reference count to the dentry and the vfsmount.
4685dd784d0SJan Blunck  */
469dcf787f3SAl Viro void path_get(const struct path *path)
4705dd784d0SJan Blunck {
4715dd784d0SJan Blunck 	mntget(path->mnt);
4725dd784d0SJan Blunck 	dget(path->dentry);
4735dd784d0SJan Blunck }
4745dd784d0SJan Blunck EXPORT_SYMBOL(path_get);
4755dd784d0SJan Blunck 
4765dd784d0SJan Blunck /**
4771d957f9bSJan Blunck  * path_put - put a reference to a path
4781d957f9bSJan Blunck  * @path: path to put the reference to
4791d957f9bSJan Blunck  *
4801d957f9bSJan Blunck  * Given a path decrement the reference count to the dentry and the vfsmount.
4811d957f9bSJan Blunck  */
482dcf787f3SAl Viro void path_put(const struct path *path)
4831da177e4SLinus Torvalds {
4841d957f9bSJan Blunck 	dput(path->dentry);
4851d957f9bSJan Blunck 	mntput(path->mnt);
4861da177e4SLinus Torvalds }
4871d957f9bSJan Blunck EXPORT_SYMBOL(path_put);
4881da177e4SLinus Torvalds 
489894bc8c4SAl Viro #define EMBEDDED_LEVELS 2
4901f55a6ecSAl Viro struct nameidata {
4911f55a6ecSAl Viro 	struct path	path;
4921f55a6ecSAl Viro 	struct qstr	last;
4931f55a6ecSAl Viro 	struct path	root;
4941f55a6ecSAl Viro 	struct inode	*inode; /* path.dentry.d_inode */
4951f55a6ecSAl Viro 	unsigned int	flags;
4969883d185SAl Viro 	unsigned	seq, m_seq;
4971f55a6ecSAl Viro 	int		last_type;
4981f55a6ecSAl Viro 	unsigned	depth;
499756daf26SNeilBrown 	int		total_link_count;
500697fc6caSAl Viro 	struct saved {
501697fc6caSAl Viro 		struct path link;
502fceef393SAl Viro 		struct delayed_call done;
503697fc6caSAl Viro 		const char *name;
5040450b2d1SAl Viro 		unsigned seq;
505894bc8c4SAl Viro 	} *stack, internal[EMBEDDED_LEVELS];
5069883d185SAl Viro 	struct filename	*name;
5079883d185SAl Viro 	struct nameidata *saved;
508fceef393SAl Viro 	struct inode	*link_inode;
5099883d185SAl Viro 	unsigned	root_seq;
5109883d185SAl Viro 	int		dfd;
5113859a271SKees Cook } __randomize_layout;
5121f55a6ecSAl Viro 
5139883d185SAl Viro static void set_nameidata(struct nameidata *p, int dfd, struct filename *name)
514894bc8c4SAl Viro {
515756daf26SNeilBrown 	struct nameidata *old = current->nameidata;
516756daf26SNeilBrown 	p->stack = p->internal;
517c8a53ee5SAl Viro 	p->dfd = dfd;
518c8a53ee5SAl Viro 	p->name = name;
519756daf26SNeilBrown 	p->total_link_count = old ? old->total_link_count : 0;
5209883d185SAl Viro 	p->saved = old;
521756daf26SNeilBrown 	current->nameidata = p;
522894bc8c4SAl Viro }
523894bc8c4SAl Viro 
5249883d185SAl Viro static void restore_nameidata(void)
525894bc8c4SAl Viro {
5269883d185SAl Viro 	struct nameidata *now = current->nameidata, *old = now->saved;
527756daf26SNeilBrown 
528756daf26SNeilBrown 	current->nameidata = old;
529756daf26SNeilBrown 	if (old)
530756daf26SNeilBrown 		old->total_link_count = now->total_link_count;
531e1a63bbcSAl Viro 	if (now->stack != now->internal)
532756daf26SNeilBrown 		kfree(now->stack);
533894bc8c4SAl Viro }
534894bc8c4SAl Viro 
535894bc8c4SAl Viro static int __nd_alloc_stack(struct nameidata *nd)
536894bc8c4SAl Viro {
537bc40aee0SAl Viro 	struct saved *p;
538bc40aee0SAl Viro 
539bc40aee0SAl Viro 	if (nd->flags & LOOKUP_RCU) {
5406da2ec56SKees Cook 		p= kmalloc_array(MAXSYMLINKS, sizeof(struct saved),
541bc40aee0SAl Viro 				  GFP_ATOMIC);
542bc40aee0SAl Viro 		if (unlikely(!p))
543bc40aee0SAl Viro 			return -ECHILD;
544bc40aee0SAl Viro 	} else {
5456da2ec56SKees Cook 		p= kmalloc_array(MAXSYMLINKS, sizeof(struct saved),
546894bc8c4SAl Viro 				  GFP_KERNEL);
547894bc8c4SAl Viro 		if (unlikely(!p))
548894bc8c4SAl Viro 			return -ENOMEM;
549bc40aee0SAl Viro 	}
550894bc8c4SAl Viro 	memcpy(p, nd->internal, sizeof(nd->internal));
551894bc8c4SAl Viro 	nd->stack = p;
552894bc8c4SAl Viro 	return 0;
553894bc8c4SAl Viro }
554894bc8c4SAl Viro 
555397d425dSEric W. Biederman /**
556397d425dSEric W. Biederman  * path_connected - Verify that a path->dentry is below path->mnt.mnt_root
557397d425dSEric W. Biederman  * @path: nameidate to verify
558397d425dSEric W. Biederman  *
559397d425dSEric W. Biederman  * Rename can sometimes move a file or directory outside of a bind
560397d425dSEric W. Biederman  * mount, path_connected allows those cases to be detected.
561397d425dSEric W. Biederman  */
562397d425dSEric W. Biederman static bool path_connected(const struct path *path)
563397d425dSEric W. Biederman {
564397d425dSEric W. Biederman 	struct vfsmount *mnt = path->mnt;
56595dd7758SEric W. Biederman 	struct super_block *sb = mnt->mnt_sb;
566397d425dSEric W. Biederman 
56795dd7758SEric W. Biederman 	/* Bind mounts and multi-root filesystems can have disconnected paths */
56895dd7758SEric W. Biederman 	if (!(sb->s_iflags & SB_I_MULTIROOT) && (mnt->mnt_root == sb->s_root))
569397d425dSEric W. Biederman 		return true;
570397d425dSEric W. Biederman 
571397d425dSEric W. Biederman 	return is_subdir(path->dentry, mnt->mnt_root);
572397d425dSEric W. Biederman }
573397d425dSEric W. Biederman 
574894bc8c4SAl Viro static inline int nd_alloc_stack(struct nameidata *nd)
575894bc8c4SAl Viro {
576da4e0be0SAl Viro 	if (likely(nd->depth != EMBEDDED_LEVELS))
577894bc8c4SAl Viro 		return 0;
578894bc8c4SAl Viro 	if (likely(nd->stack != nd->internal))
579894bc8c4SAl Viro 		return 0;
580894bc8c4SAl Viro 	return __nd_alloc_stack(nd);
581894bc8c4SAl Viro }
582894bc8c4SAl Viro 
5837973387aSAl Viro static void drop_links(struct nameidata *nd)
5847973387aSAl Viro {
5857973387aSAl Viro 	int i = nd->depth;
5867973387aSAl Viro 	while (i--) {
5877973387aSAl Viro 		struct saved *last = nd->stack + i;
588fceef393SAl Viro 		do_delayed_call(&last->done);
589fceef393SAl Viro 		clear_delayed_call(&last->done);
5907973387aSAl Viro 	}
5917973387aSAl Viro }
5927973387aSAl Viro 
5937973387aSAl Viro static void terminate_walk(struct nameidata *nd)
5947973387aSAl Viro {
5957973387aSAl Viro 	drop_links(nd);
5967973387aSAl Viro 	if (!(nd->flags & LOOKUP_RCU)) {
5977973387aSAl Viro 		int i;
5987973387aSAl Viro 		path_put(&nd->path);
5997973387aSAl Viro 		for (i = 0; i < nd->depth; i++)
6007973387aSAl Viro 			path_put(&nd->stack[i].link);
601102b8af2SAl Viro 		if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT)) {
602102b8af2SAl Viro 			path_put(&nd->root);
603102b8af2SAl Viro 			nd->root.mnt = NULL;
604102b8af2SAl Viro 		}
6057973387aSAl Viro 	} else {
6067973387aSAl Viro 		nd->flags &= ~LOOKUP_RCU;
6077973387aSAl Viro 		if (!(nd->flags & LOOKUP_ROOT))
6087973387aSAl Viro 			nd->root.mnt = NULL;
6097973387aSAl Viro 		rcu_read_unlock();
6107973387aSAl Viro 	}
6117973387aSAl Viro 	nd->depth = 0;
6127973387aSAl Viro }
6137973387aSAl Viro 
6147973387aSAl Viro /* path_put is needed afterwards regardless of success or failure */
6157973387aSAl Viro static bool legitimize_path(struct nameidata *nd,
6167973387aSAl Viro 			    struct path *path, unsigned seq)
6177973387aSAl Viro {
6187973387aSAl Viro 	int res = __legitimize_mnt(path->mnt, nd->m_seq);
6197973387aSAl Viro 	if (unlikely(res)) {
6207973387aSAl Viro 		if (res > 0)
6217973387aSAl Viro 			path->mnt = NULL;
6227973387aSAl Viro 		path->dentry = NULL;
6237973387aSAl Viro 		return false;
6247973387aSAl Viro 	}
6257973387aSAl Viro 	if (unlikely(!lockref_get_not_dead(&path->dentry->d_lockref))) {
6267973387aSAl Viro 		path->dentry = NULL;
6277973387aSAl Viro 		return false;
6287973387aSAl Viro 	}
6297973387aSAl Viro 	return !read_seqcount_retry(&path->dentry->d_seq, seq);
6307973387aSAl Viro }
6317973387aSAl Viro 
6327973387aSAl Viro static bool legitimize_links(struct nameidata *nd)
6337973387aSAl Viro {
6347973387aSAl Viro 	int i;
6357973387aSAl Viro 	for (i = 0; i < nd->depth; i++) {
6367973387aSAl Viro 		struct saved *last = nd->stack + i;
6377973387aSAl Viro 		if (unlikely(!legitimize_path(nd, &last->link, last->seq))) {
6387973387aSAl Viro 			drop_links(nd);
6397973387aSAl Viro 			nd->depth = i + 1;
6407973387aSAl Viro 			return false;
6417973387aSAl Viro 		}
6427973387aSAl Viro 	}
6437973387aSAl Viro 	return true;
6447973387aSAl Viro }
6457973387aSAl Viro 
64619660af7SAl Viro /*
64731e6b01fSNick Piggin  * Path walking has 2 modes, rcu-walk and ref-walk (see
64819660af7SAl Viro  * Documentation/filesystems/path-lookup.txt).  In situations when we can't
64919660af7SAl Viro  * continue in RCU mode, we attempt to drop out of rcu-walk mode and grab
65057e3715cSMike Marshall  * normal reference counts on dentries and vfsmounts to transition to ref-walk
65119660af7SAl Viro  * mode.  Refcounts are grabbed at the last known good point before rcu-walk
65219660af7SAl Viro  * got stuck, so ref-walk may continue from there. If this is not successful
65319660af7SAl Viro  * (eg. a seqcount has changed), then failure is returned and it's up to caller
65419660af7SAl Viro  * to restart the path walk from the beginning in ref-walk mode.
65531e6b01fSNick Piggin  */
65631e6b01fSNick Piggin 
65731e6b01fSNick Piggin /**
65819660af7SAl Viro  * unlazy_walk - try to switch to ref-walk mode.
65919660af7SAl Viro  * @nd: nameidata pathwalk data
66039191628SRandy Dunlap  * Returns: 0 on success, -ECHILD on failure
66131e6b01fSNick Piggin  *
6624675ac39SAl Viro  * unlazy_walk attempts to legitimize the current nd->path and nd->root
6634675ac39SAl Viro  * for ref-walk mode.
6644675ac39SAl Viro  * Must be called from rcu-walk context.
6657973387aSAl Viro  * Nothing should touch nameidata between unlazy_walk() failure and
6667973387aSAl Viro  * terminate_walk().
66731e6b01fSNick Piggin  */
6684675ac39SAl Viro static int unlazy_walk(struct nameidata *nd)
66931e6b01fSNick Piggin {
67031e6b01fSNick Piggin 	struct dentry *parent = nd->path.dentry;
67131e6b01fSNick Piggin 
67231e6b01fSNick Piggin 	BUG_ON(!(nd->flags & LOOKUP_RCU));
673e5c832d5SLinus Torvalds 
674e5c832d5SLinus Torvalds 	nd->flags &= ~LOOKUP_RCU;
6757973387aSAl Viro 	if (unlikely(!legitimize_links(nd)))
6767973387aSAl Viro 		goto out2;
6774675ac39SAl Viro 	if (unlikely(!legitimize_path(nd, &nd->path, nd->seq)))
6784675ac39SAl Viro 		goto out1;
6794675ac39SAl Viro 	if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT)) {
6804675ac39SAl Viro 		if (unlikely(!legitimize_path(nd, &nd->root, nd->root_seq)))
6814675ac39SAl Viro 			goto out;
6824675ac39SAl Viro 	}
6834675ac39SAl Viro 	rcu_read_unlock();
6844675ac39SAl Viro 	BUG_ON(nd->inode != parent->d_inode);
6854675ac39SAl Viro 	return 0;
6864675ac39SAl Viro 
6874675ac39SAl Viro out2:
6884675ac39SAl Viro 	nd->path.mnt = NULL;
6894675ac39SAl Viro 	nd->path.dentry = NULL;
6904675ac39SAl Viro out1:
6914675ac39SAl Viro 	if (!(nd->flags & LOOKUP_ROOT))
6924675ac39SAl Viro 		nd->root.mnt = NULL;
6934675ac39SAl Viro out:
6944675ac39SAl Viro 	rcu_read_unlock();
6954675ac39SAl Viro 	return -ECHILD;
6964675ac39SAl Viro }
6974675ac39SAl Viro 
6984675ac39SAl Viro /**
6994675ac39SAl Viro  * unlazy_child - try to switch to ref-walk mode.
7004675ac39SAl Viro  * @nd: nameidata pathwalk data
7014675ac39SAl Viro  * @dentry: child of nd->path.dentry
7024675ac39SAl Viro  * @seq: seq number to check dentry against
7034675ac39SAl Viro  * Returns: 0 on success, -ECHILD on failure
7044675ac39SAl Viro  *
7054675ac39SAl Viro  * unlazy_child attempts to legitimize the current nd->path, nd->root and dentry
7064675ac39SAl Viro  * for ref-walk mode.  @dentry must be a path found by a do_lookup call on
7074675ac39SAl Viro  * @nd.  Must be called from rcu-walk context.
7084675ac39SAl Viro  * Nothing should touch nameidata between unlazy_child() failure and
7094675ac39SAl Viro  * terminate_walk().
7104675ac39SAl Viro  */
7114675ac39SAl Viro static int unlazy_child(struct nameidata *nd, struct dentry *dentry, unsigned seq)
7124675ac39SAl Viro {
7134675ac39SAl Viro 	BUG_ON(!(nd->flags & LOOKUP_RCU));
7144675ac39SAl Viro 
7154675ac39SAl Viro 	nd->flags &= ~LOOKUP_RCU;
7164675ac39SAl Viro 	if (unlikely(!legitimize_links(nd)))
7174675ac39SAl Viro 		goto out2;
7187973387aSAl Viro 	if (unlikely(!legitimize_mnt(nd->path.mnt, nd->m_seq)))
7197973387aSAl Viro 		goto out2;
7204675ac39SAl Viro 	if (unlikely(!lockref_get_not_dead(&nd->path.dentry->d_lockref)))
7217973387aSAl Viro 		goto out1;
72248a066e7SAl Viro 
72315570086SLinus Torvalds 	/*
7244675ac39SAl Viro 	 * We need to move both the parent and the dentry from the RCU domain
7254675ac39SAl Viro 	 * to be properly refcounted. And the sequence number in the dentry
7264675ac39SAl Viro 	 * validates *both* dentry counters, since we checked the sequence
7274675ac39SAl Viro 	 * number of the parent after we got the child sequence number. So we
7284675ac39SAl Viro 	 * know the parent must still be valid if the child sequence number is
72915570086SLinus Torvalds 	 */
7304675ac39SAl Viro 	if (unlikely(!lockref_get_not_dead(&dentry->d_lockref)))
731e5c832d5SLinus Torvalds 		goto out;
7324675ac39SAl Viro 	if (unlikely(read_seqcount_retry(&dentry->d_seq, seq))) {
7334675ac39SAl Viro 		rcu_read_unlock();
7344675ac39SAl Viro 		dput(dentry);
7354675ac39SAl Viro 		goto drop_root_mnt;
73619660af7SAl Viro 	}
737e5c832d5SLinus Torvalds 	/*
738e5c832d5SLinus Torvalds 	 * Sequence counts matched. Now make sure that the root is
739e5c832d5SLinus Torvalds 	 * still valid and get it if required.
740e5c832d5SLinus Torvalds 	 */
741e5c832d5SLinus Torvalds 	if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT)) {
7425a8d87e8SAl Viro 		if (unlikely(!legitimize_path(nd, &nd->root, nd->root_seq))) {
7435a8d87e8SAl Viro 			rcu_read_unlock();
7445a8d87e8SAl Viro 			dput(dentry);
7455a8d87e8SAl Viro 			return -ECHILD;
7467973387aSAl Viro 		}
74731e6b01fSNick Piggin 	}
74831e6b01fSNick Piggin 
7498b61e74fSAl Viro 	rcu_read_unlock();
75031e6b01fSNick Piggin 	return 0;
75119660af7SAl Viro 
7527973387aSAl Viro out2:
7537973387aSAl Viro 	nd->path.mnt = NULL;
7547973387aSAl Viro out1:
7557973387aSAl Viro 	nd->path.dentry = NULL;
756e5c832d5SLinus Torvalds out:
7578b61e74fSAl Viro 	rcu_read_unlock();
758d0d27277SLinus Torvalds drop_root_mnt:
759d0d27277SLinus Torvalds 	if (!(nd->flags & LOOKUP_ROOT))
760d0d27277SLinus Torvalds 		nd->root.mnt = NULL;
76131e6b01fSNick Piggin 	return -ECHILD;
76231e6b01fSNick Piggin }
76331e6b01fSNick Piggin 
7644ce16ef3SAl Viro static inline int d_revalidate(struct dentry *dentry, unsigned int flags)
76534286d66SNick Piggin {
766a89f8337SAl Viro 	if (unlikely(dentry->d_flags & DCACHE_OP_REVALIDATE))
7674ce16ef3SAl Viro 		return dentry->d_op->d_revalidate(dentry, flags);
768a89f8337SAl Viro 	else
769a89f8337SAl Viro 		return 1;
77034286d66SNick Piggin }
77134286d66SNick Piggin 
7729f1fafeeSAl Viro /**
7739f1fafeeSAl Viro  * complete_walk - successful completion of path walk
7749f1fafeeSAl Viro  * @nd:  pointer nameidata
77539159de2SJeff Layton  *
7769f1fafeeSAl Viro  * If we had been in RCU mode, drop out of it and legitimize nd->path.
7779f1fafeeSAl Viro  * Revalidate the final result, unless we'd already done that during
7789f1fafeeSAl Viro  * the path walk or the filesystem doesn't ask for it.  Return 0 on
7799f1fafeeSAl Viro  * success, -error on failure.  In case of failure caller does not
7809f1fafeeSAl Viro  * need to drop nd->path.
78139159de2SJeff Layton  */
7829f1fafeeSAl Viro static int complete_walk(struct nameidata *nd)
78339159de2SJeff Layton {
78416c2cd71SAl Viro 	struct dentry *dentry = nd->path.dentry;
78539159de2SJeff Layton 	int status;
78639159de2SJeff Layton 
7879f1fafeeSAl Viro 	if (nd->flags & LOOKUP_RCU) {
7889f1fafeeSAl Viro 		if (!(nd->flags & LOOKUP_ROOT))
7899f1fafeeSAl Viro 			nd->root.mnt = NULL;
7904675ac39SAl Viro 		if (unlikely(unlazy_walk(nd)))
79148a066e7SAl Viro 			return -ECHILD;
79248a066e7SAl Viro 	}
7939f1fafeeSAl Viro 
79416c2cd71SAl Viro 	if (likely(!(nd->flags & LOOKUP_JUMPED)))
79539159de2SJeff Layton 		return 0;
79639159de2SJeff Layton 
797ecf3d1f1SJeff Layton 	if (likely(!(dentry->d_flags & DCACHE_OP_WEAK_REVALIDATE)))
79816c2cd71SAl Viro 		return 0;
79916c2cd71SAl Viro 
800ecf3d1f1SJeff Layton 	status = dentry->d_op->d_weak_revalidate(dentry, nd->flags);
80139159de2SJeff Layton 	if (status > 0)
80239159de2SJeff Layton 		return 0;
80339159de2SJeff Layton 
80416c2cd71SAl Viro 	if (!status)
80539159de2SJeff Layton 		status = -ESTALE;
80616c2cd71SAl Viro 
80739159de2SJeff Layton 	return status;
80839159de2SJeff Layton }
80939159de2SJeff Layton 
81018d8c860SAl Viro static void set_root(struct nameidata *nd)
8112a737871SAl Viro {
81231e6b01fSNick Piggin 	struct fs_struct *fs = current->fs;
8139e6697e2SAl Viro 
8149e6697e2SAl Viro 	if (nd->flags & LOOKUP_RCU) {
8158f47a016SAl Viro 		unsigned seq;
816c28cc364SNick Piggin 
817c28cc364SNick Piggin 		do {
818c28cc364SNick Piggin 			seq = read_seqcount_begin(&fs->seq);
81931e6b01fSNick Piggin 			nd->root = fs->root;
8208f47a016SAl Viro 			nd->root_seq = __read_seqcount_begin(&nd->root.dentry->d_seq);
821c28cc364SNick Piggin 		} while (read_seqcount_retry(&fs->seq, seq));
8229e6697e2SAl Viro 	} else {
8239e6697e2SAl Viro 		get_fs_root(fs, &nd->root);
8249e6697e2SAl Viro 	}
82531e6b01fSNick Piggin }
82631e6b01fSNick Piggin 
8271d957f9bSJan Blunck static void path_put_conditional(struct path *path, struct nameidata *nd)
828051d3812SIan Kent {
829051d3812SIan Kent 	dput(path->dentry);
8304ac91378SJan Blunck 	if (path->mnt != nd->path.mnt)
831051d3812SIan Kent 		mntput(path->mnt);
832051d3812SIan Kent }
833051d3812SIan Kent 
8347b9337aaSNick Piggin static inline void path_to_nameidata(const struct path *path,
8357b9337aaSNick Piggin 					struct nameidata *nd)
836051d3812SIan Kent {
83731e6b01fSNick Piggin 	if (!(nd->flags & LOOKUP_RCU)) {
8384ac91378SJan Blunck 		dput(nd->path.dentry);
83931e6b01fSNick Piggin 		if (nd->path.mnt != path->mnt)
8404ac91378SJan Blunck 			mntput(nd->path.mnt);
8419a229683SHuang Shijie 	}
84231e6b01fSNick Piggin 	nd->path.mnt = path->mnt;
8434ac91378SJan Blunck 	nd->path.dentry = path->dentry;
844051d3812SIan Kent }
845051d3812SIan Kent 
846248fb5b9SAl Viro static int nd_jump_root(struct nameidata *nd)
847248fb5b9SAl Viro {
848248fb5b9SAl Viro 	if (nd->flags & LOOKUP_RCU) {
849248fb5b9SAl Viro 		struct dentry *d;
850248fb5b9SAl Viro 		nd->path = nd->root;
851248fb5b9SAl Viro 		d = nd->path.dentry;
852248fb5b9SAl Viro 		nd->inode = d->d_inode;
853248fb5b9SAl Viro 		nd->seq = nd->root_seq;
854248fb5b9SAl Viro 		if (unlikely(read_seqcount_retry(&d->d_seq, nd->seq)))
855248fb5b9SAl Viro 			return -ECHILD;
856248fb5b9SAl Viro 	} else {
857248fb5b9SAl Viro 		path_put(&nd->path);
858248fb5b9SAl Viro 		nd->path = nd->root;
859248fb5b9SAl Viro 		path_get(&nd->path);
860248fb5b9SAl Viro 		nd->inode = nd->path.dentry->d_inode;
861248fb5b9SAl Viro 	}
862248fb5b9SAl Viro 	nd->flags |= LOOKUP_JUMPED;
863248fb5b9SAl Viro 	return 0;
864248fb5b9SAl Viro }
865248fb5b9SAl Viro 
866b5fb63c1SChristoph Hellwig /*
8676b255391SAl Viro  * Helper to directly jump to a known parsed path from ->get_link,
868b5fb63c1SChristoph Hellwig  * caller must have taken a reference to path beforehand.
869b5fb63c1SChristoph Hellwig  */
8706e77137bSAl Viro void nd_jump_link(struct path *path)
871b5fb63c1SChristoph Hellwig {
8726e77137bSAl Viro 	struct nameidata *nd = current->nameidata;
873b5fb63c1SChristoph Hellwig 	path_put(&nd->path);
874b5fb63c1SChristoph Hellwig 
875b5fb63c1SChristoph Hellwig 	nd->path = *path;
876b5fb63c1SChristoph Hellwig 	nd->inode = nd->path.dentry->d_inode;
877b5fb63c1SChristoph Hellwig 	nd->flags |= LOOKUP_JUMPED;
878b5fb63c1SChristoph Hellwig }
879b5fb63c1SChristoph Hellwig 
880b9ff4429SAl Viro static inline void put_link(struct nameidata *nd)
881574197e0SAl Viro {
88221c3003dSAl Viro 	struct saved *last = nd->stack + --nd->depth;
883fceef393SAl Viro 	do_delayed_call(&last->done);
8846548fae2SAl Viro 	if (!(nd->flags & LOOKUP_RCU))
885b9ff4429SAl Viro 		path_put(&last->link);
886574197e0SAl Viro }
887574197e0SAl Viro 
888561ec64aSLinus Torvalds int sysctl_protected_symlinks __read_mostly = 0;
889561ec64aSLinus Torvalds int sysctl_protected_hardlinks __read_mostly = 0;
89030aba665SSalvatore Mesoraca int sysctl_protected_fifos __read_mostly;
89130aba665SSalvatore Mesoraca int sysctl_protected_regular __read_mostly;
892800179c9SKees Cook 
893800179c9SKees Cook /**
894800179c9SKees Cook  * may_follow_link - Check symlink following for unsafe situations
89555852635SRandy Dunlap  * @nd: nameidata pathwalk data
896800179c9SKees Cook  *
897800179c9SKees Cook  * In the case of the sysctl_protected_symlinks sysctl being enabled,
898800179c9SKees Cook  * CAP_DAC_OVERRIDE needs to be specifically ignored if the symlink is
899800179c9SKees Cook  * in a sticky world-writable directory. This is to protect privileged
900800179c9SKees Cook  * processes from failing races against path names that may change out
901800179c9SKees Cook  * from under them by way of other users creating malicious symlinks.
902800179c9SKees Cook  * It will permit symlinks to be followed only when outside a sticky
903800179c9SKees Cook  * world-writable directory, or when the uid of the symlink and follower
904800179c9SKees Cook  * match, or when the directory owner matches the symlink's owner.
905800179c9SKees Cook  *
906800179c9SKees Cook  * Returns 0 if following the symlink is allowed, -ve on error.
907800179c9SKees Cook  */
908fec2fa24SAl Viro static inline int may_follow_link(struct nameidata *nd)
909800179c9SKees Cook {
910800179c9SKees Cook 	const struct inode *inode;
911800179c9SKees Cook 	const struct inode *parent;
9122d7f9e2aSSeth Forshee 	kuid_t puid;
913800179c9SKees Cook 
914800179c9SKees Cook 	if (!sysctl_protected_symlinks)
915800179c9SKees Cook 		return 0;
916800179c9SKees Cook 
917800179c9SKees Cook 	/* Allowed if owner and follower match. */
918fceef393SAl Viro 	inode = nd->link_inode;
91981abe27bSEric W. Biederman 	if (uid_eq(current_cred()->fsuid, inode->i_uid))
920800179c9SKees Cook 		return 0;
921800179c9SKees Cook 
922800179c9SKees Cook 	/* Allowed if parent directory not sticky and world-writable. */
923aa65fa35SAl Viro 	parent = nd->inode;
924800179c9SKees Cook 	if ((parent->i_mode & (S_ISVTX|S_IWOTH)) != (S_ISVTX|S_IWOTH))
925800179c9SKees Cook 		return 0;
926800179c9SKees Cook 
927800179c9SKees Cook 	/* Allowed if parent directory and link owner match. */
9282d7f9e2aSSeth Forshee 	puid = parent->i_uid;
9292d7f9e2aSSeth Forshee 	if (uid_valid(puid) && uid_eq(puid, inode->i_uid))
930800179c9SKees Cook 		return 0;
931800179c9SKees Cook 
93231956502SAl Viro 	if (nd->flags & LOOKUP_RCU)
93331956502SAl Viro 		return -ECHILD;
93431956502SAl Viro 
935ea841bafSRichard Guy Briggs 	audit_inode(nd->name, nd->stack[0].link.dentry, 0);
93694b9d9b7SRichard Guy Briggs 	audit_log_link_denied("follow_link");
937800179c9SKees Cook 	return -EACCES;
938800179c9SKees Cook }
939800179c9SKees Cook 
940800179c9SKees Cook /**
941800179c9SKees Cook  * safe_hardlink_source - Check for safe hardlink conditions
942800179c9SKees Cook  * @inode: the source inode to hardlink from
943800179c9SKees Cook  *
944800179c9SKees Cook  * Return false if at least one of the following conditions:
945800179c9SKees Cook  *    - inode is not a regular file
946800179c9SKees Cook  *    - inode is setuid
947800179c9SKees Cook  *    - inode is setgid and group-exec
948800179c9SKees Cook  *    - access failure for read and write
949800179c9SKees Cook  *
950800179c9SKees Cook  * Otherwise returns true.
951800179c9SKees Cook  */
952800179c9SKees Cook static bool safe_hardlink_source(struct inode *inode)
953800179c9SKees Cook {
954800179c9SKees Cook 	umode_t mode = inode->i_mode;
955800179c9SKees Cook 
956800179c9SKees Cook 	/* Special files should not get pinned to the filesystem. */
957800179c9SKees Cook 	if (!S_ISREG(mode))
958800179c9SKees Cook 		return false;
959800179c9SKees Cook 
960800179c9SKees Cook 	/* Setuid files should not get pinned to the filesystem. */
961800179c9SKees Cook 	if (mode & S_ISUID)
962800179c9SKees Cook 		return false;
963800179c9SKees Cook 
964800179c9SKees Cook 	/* Executable setgid files should not get pinned to the filesystem. */
965800179c9SKees Cook 	if ((mode & (S_ISGID | S_IXGRP)) == (S_ISGID | S_IXGRP))
966800179c9SKees Cook 		return false;
967800179c9SKees Cook 
968800179c9SKees Cook 	/* Hardlinking to unreadable or unwritable sources is dangerous. */
969800179c9SKees Cook 	if (inode_permission(inode, MAY_READ | MAY_WRITE))
970800179c9SKees Cook 		return false;
971800179c9SKees Cook 
972800179c9SKees Cook 	return true;
973800179c9SKees Cook }
974800179c9SKees Cook 
975800179c9SKees Cook /**
976800179c9SKees Cook  * may_linkat - Check permissions for creating a hardlink
977800179c9SKees Cook  * @link: the source to hardlink from
978800179c9SKees Cook  *
979800179c9SKees Cook  * Block hardlink when all of:
980800179c9SKees Cook  *  - sysctl_protected_hardlinks enabled
981800179c9SKees Cook  *  - fsuid does not match inode
982800179c9SKees Cook  *  - hardlink source is unsafe (see safe_hardlink_source() above)
983f2ca3796SDirk Steinmetz  *  - not CAP_FOWNER in a namespace with the inode owner uid mapped
984800179c9SKees Cook  *
985800179c9SKees Cook  * Returns 0 if successful, -ve on error.
986800179c9SKees Cook  */
987800179c9SKees Cook static int may_linkat(struct path *link)
988800179c9SKees Cook {
989593d1ce8SEric W. Biederman 	struct inode *inode = link->dentry->d_inode;
990593d1ce8SEric W. Biederman 
991593d1ce8SEric W. Biederman 	/* Inode writeback is not safe when the uid or gid are invalid. */
992593d1ce8SEric W. Biederman 	if (!uid_valid(inode->i_uid) || !gid_valid(inode->i_gid))
993593d1ce8SEric W. Biederman 		return -EOVERFLOW;
994800179c9SKees Cook 
995800179c9SKees Cook 	if (!sysctl_protected_hardlinks)
996800179c9SKees Cook 		return 0;
997800179c9SKees Cook 
998800179c9SKees Cook 	/* Source inode owner (or CAP_FOWNER) can hardlink all they like,
999800179c9SKees Cook 	 * otherwise, it must be a safe source.
1000800179c9SKees Cook 	 */
1001cc658db4SKees Cook 	if (safe_hardlink_source(inode) || inode_owner_or_capable(inode))
1002800179c9SKees Cook 		return 0;
1003800179c9SKees Cook 
100494b9d9b7SRichard Guy Briggs 	audit_log_link_denied("linkat");
1005800179c9SKees Cook 	return -EPERM;
1006800179c9SKees Cook }
1007800179c9SKees Cook 
100830aba665SSalvatore Mesoraca /**
100930aba665SSalvatore Mesoraca  * may_create_in_sticky - Check whether an O_CREAT open in a sticky directory
101030aba665SSalvatore Mesoraca  *			  should be allowed, or not, on files that already
101130aba665SSalvatore Mesoraca  *			  exist.
101230aba665SSalvatore Mesoraca  * @dir: the sticky parent directory
101330aba665SSalvatore Mesoraca  * @inode: the inode of the file to open
101430aba665SSalvatore Mesoraca  *
101530aba665SSalvatore Mesoraca  * Block an O_CREAT open of a FIFO (or a regular file) when:
101630aba665SSalvatore Mesoraca  *   - sysctl_protected_fifos (or sysctl_protected_regular) is enabled
101730aba665SSalvatore Mesoraca  *   - the file already exists
101830aba665SSalvatore Mesoraca  *   - we are in a sticky directory
101930aba665SSalvatore Mesoraca  *   - we don't own the file
102030aba665SSalvatore Mesoraca  *   - the owner of the directory doesn't own the file
102130aba665SSalvatore Mesoraca  *   - the directory is world writable
102230aba665SSalvatore Mesoraca  * If the sysctl_protected_fifos (or sysctl_protected_regular) is set to 2
102330aba665SSalvatore Mesoraca  * the directory doesn't have to be world writable: being group writable will
102430aba665SSalvatore Mesoraca  * be enough.
102530aba665SSalvatore Mesoraca  *
102630aba665SSalvatore Mesoraca  * Returns 0 if the open is allowed, -ve on error.
102730aba665SSalvatore Mesoraca  */
102830aba665SSalvatore Mesoraca static int may_create_in_sticky(struct dentry * const dir,
102930aba665SSalvatore Mesoraca 				struct inode * const inode)
103030aba665SSalvatore Mesoraca {
103130aba665SSalvatore Mesoraca 	if ((!sysctl_protected_fifos && S_ISFIFO(inode->i_mode)) ||
103230aba665SSalvatore Mesoraca 	    (!sysctl_protected_regular && S_ISREG(inode->i_mode)) ||
103330aba665SSalvatore Mesoraca 	    likely(!(dir->d_inode->i_mode & S_ISVTX)) ||
103430aba665SSalvatore Mesoraca 	    uid_eq(inode->i_uid, dir->d_inode->i_uid) ||
103530aba665SSalvatore Mesoraca 	    uid_eq(current_fsuid(), inode->i_uid))
103630aba665SSalvatore Mesoraca 		return 0;
103730aba665SSalvatore Mesoraca 
103830aba665SSalvatore Mesoraca 	if (likely(dir->d_inode->i_mode & 0002) ||
103930aba665SSalvatore Mesoraca 	    (dir->d_inode->i_mode & 0020 &&
104030aba665SSalvatore Mesoraca 	     ((sysctl_protected_fifos >= 2 && S_ISFIFO(inode->i_mode)) ||
104130aba665SSalvatore Mesoraca 	      (sysctl_protected_regular >= 2 && S_ISREG(inode->i_mode))))) {
104230aba665SSalvatore Mesoraca 		return -EACCES;
104330aba665SSalvatore Mesoraca 	}
104430aba665SSalvatore Mesoraca 	return 0;
104530aba665SSalvatore Mesoraca }
104630aba665SSalvatore Mesoraca 
10473b2e7f75SAl Viro static __always_inline
10483b2e7f75SAl Viro const char *get_link(struct nameidata *nd)
10491da177e4SLinus Torvalds {
1050ab104923SAl Viro 	struct saved *last = nd->stack + nd->depth - 1;
10511cf2665bSAl Viro 	struct dentry *dentry = last->link.dentry;
1052fceef393SAl Viro 	struct inode *inode = nd->link_inode;
10536d7b5aaeSAl Viro 	int error;
10540a959df5SAl Viro 	const char *res;
10551da177e4SLinus Torvalds 
10568fa9dd24SNeilBrown 	if (!(nd->flags & LOOKUP_RCU)) {
10578fa9dd24SNeilBrown 		touch_atime(&last->link);
10588fa9dd24SNeilBrown 		cond_resched();
1059c6718543SMiklos Szeredi 	} else if (atime_needs_update(&last->link, inode)) {
10604675ac39SAl Viro 		if (unlikely(unlazy_walk(nd)))
10618fa9dd24SNeilBrown 			return ERR_PTR(-ECHILD);
10628fa9dd24SNeilBrown 		touch_atime(&last->link);
10638fa9dd24SNeilBrown 	}
10648fa9dd24SNeilBrown 
1065bda0be7aSNeilBrown 	error = security_inode_follow_link(dentry, inode,
1066bda0be7aSNeilBrown 					   nd->flags & LOOKUP_RCU);
1067bda0be7aSNeilBrown 	if (unlikely(error))
10686920a440SAl Viro 		return ERR_PTR(error);
106936f3b4f6SAl Viro 
107086acdca1SAl Viro 	nd->last_type = LAST_BIND;
1071d4dee48bSAl Viro 	res = inode->i_link;
1072d4dee48bSAl Viro 	if (!res) {
1073fceef393SAl Viro 		const char * (*get)(struct dentry *, struct inode *,
1074fceef393SAl Viro 				struct delayed_call *);
1075fceef393SAl Viro 		get = inode->i_op->get_link;
10768c1b4566SAl Viro 		if (nd->flags & LOOKUP_RCU) {
1077fceef393SAl Viro 			res = get(NULL, inode, &last->done);
10786b255391SAl Viro 			if (res == ERR_PTR(-ECHILD)) {
10794675ac39SAl Viro 				if (unlikely(unlazy_walk(nd)))
10808c1b4566SAl Viro 					return ERR_PTR(-ECHILD);
1081fceef393SAl Viro 				res = get(dentry, inode, &last->done);
10828c1b4566SAl Viro 			}
10836b255391SAl Viro 		} else {
1084fceef393SAl Viro 			res = get(dentry, inode, &last->done);
10856b255391SAl Viro 		}
1086fceef393SAl Viro 		if (IS_ERR_OR_NULL(res))
1087fab51e8aSAl Viro 			return res;
10880a959df5SAl Viro 	}
1089fab51e8aSAl Viro 	if (*res == '/') {
1090fab51e8aSAl Viro 		if (!nd->root.mnt)
1091fab51e8aSAl Viro 			set_root(nd);
1092248fb5b9SAl Viro 		if (unlikely(nd_jump_root(nd)))
1093fab51e8aSAl Viro 			return ERR_PTR(-ECHILD);
1094fab51e8aSAl Viro 		while (unlikely(*++res == '/'))
1095fab51e8aSAl Viro 			;
1096fab51e8aSAl Viro 	}
1097fab51e8aSAl Viro 	if (!*res)
1098fab51e8aSAl Viro 		res = NULL;
10990a959df5SAl Viro 	return res;
11000a959df5SAl Viro }
11016d7b5aaeSAl Viro 
1102f015f126SDavid Howells /*
1103f015f126SDavid Howells  * follow_up - Find the mountpoint of path's vfsmount
1104f015f126SDavid Howells  *
1105f015f126SDavid Howells  * Given a path, find the mountpoint of its source file system.
1106f015f126SDavid Howells  * Replace @path with the path of the mountpoint in the parent mount.
1107f015f126SDavid Howells  * Up is towards /.
1108f015f126SDavid Howells  *
1109f015f126SDavid Howells  * Return 1 if we went up a level and 0 if we were already at the
1110f015f126SDavid Howells  * root.
1111f015f126SDavid Howells  */
1112bab77ebfSAl Viro int follow_up(struct path *path)
11131da177e4SLinus Torvalds {
11140714a533SAl Viro 	struct mount *mnt = real_mount(path->mnt);
11150714a533SAl Viro 	struct mount *parent;
11161da177e4SLinus Torvalds 	struct dentry *mountpoint;
111799b7db7bSNick Piggin 
111848a066e7SAl Viro 	read_seqlock_excl(&mount_lock);
11190714a533SAl Viro 	parent = mnt->mnt_parent;
11203c0a6163SAl Viro 	if (parent == mnt) {
112148a066e7SAl Viro 		read_sequnlock_excl(&mount_lock);
11221da177e4SLinus Torvalds 		return 0;
11231da177e4SLinus Torvalds 	}
11240714a533SAl Viro 	mntget(&parent->mnt);
1125a73324daSAl Viro 	mountpoint = dget(mnt->mnt_mountpoint);
112648a066e7SAl Viro 	read_sequnlock_excl(&mount_lock);
1127bab77ebfSAl Viro 	dput(path->dentry);
1128bab77ebfSAl Viro 	path->dentry = mountpoint;
1129bab77ebfSAl Viro 	mntput(path->mnt);
11300714a533SAl Viro 	path->mnt = &parent->mnt;
11311da177e4SLinus Torvalds 	return 1;
11321da177e4SLinus Torvalds }
11334d359507SAl Viro EXPORT_SYMBOL(follow_up);
11341da177e4SLinus Torvalds 
1135b5c84bf6SNick Piggin /*
11369875cf80SDavid Howells  * Perform an automount
11379875cf80SDavid Howells  * - return -EISDIR to tell follow_managed() to stop and return the path we
11389875cf80SDavid Howells  *   were called with.
11391da177e4SLinus Torvalds  */
1140756daf26SNeilBrown static int follow_automount(struct path *path, struct nameidata *nd,
11419875cf80SDavid Howells 			    bool *need_mntput)
114231e6b01fSNick Piggin {
11439875cf80SDavid Howells 	struct vfsmount *mnt;
1144ea5b778aSDavid Howells 	int err;
11459875cf80SDavid Howells 
11469875cf80SDavid Howells 	if (!path->dentry->d_op || !path->dentry->d_op->d_automount)
11479875cf80SDavid Howells 		return -EREMOTE;
11489875cf80SDavid Howells 
11490ec26fd0SMiklos Szeredi 	/* We don't want to mount if someone's just doing a stat -
11500ec26fd0SMiklos Szeredi 	 * unless they're stat'ing a directory and appended a '/' to
11510ec26fd0SMiklos Szeredi 	 * the name.
11520ec26fd0SMiklos Szeredi 	 *
11530ec26fd0SMiklos Szeredi 	 * We do, however, want to mount if someone wants to open or
11545a30d8a2SDavid Howells 	 * create a file of any type under the mountpoint, wants to
11550ec26fd0SMiklos Szeredi 	 * traverse through the mountpoint or wants to open the
11560ec26fd0SMiklos Szeredi 	 * mounted directory.  Also, autofs may mark negative dentries
11570ec26fd0SMiklos Szeredi 	 * as being automount points.  These will need the attentions
11580ec26fd0SMiklos Szeredi 	 * of the daemon to instantiate them before they can be used.
11595a30d8a2SDavid Howells 	 */
1160756daf26SNeilBrown 	if (!(nd->flags & (LOOKUP_PARENT | LOOKUP_DIRECTORY |
11615d38f049SIan Kent 			   LOOKUP_OPEN | LOOKUP_CREATE | LOOKUP_AUTOMOUNT)) &&
11625d38f049SIan Kent 	    path->dentry->d_inode)
11639875cf80SDavid Howells 		return -EISDIR;
11640ec26fd0SMiklos Szeredi 
1165756daf26SNeilBrown 	nd->total_link_count++;
1166756daf26SNeilBrown 	if (nd->total_link_count >= 40)
11679875cf80SDavid Howells 		return -ELOOP;
11689875cf80SDavid Howells 
11699875cf80SDavid Howells 	mnt = path->dentry->d_op->d_automount(path);
11709875cf80SDavid Howells 	if (IS_ERR(mnt)) {
11719875cf80SDavid Howells 		/*
11729875cf80SDavid Howells 		 * The filesystem is allowed to return -EISDIR here to indicate
11739875cf80SDavid Howells 		 * it doesn't want to automount.  For instance, autofs would do
11749875cf80SDavid Howells 		 * this so that its userspace daemon can mount on this dentry.
11759875cf80SDavid Howells 		 *
11769875cf80SDavid Howells 		 * However, we can only permit this if it's a terminal point in
11779875cf80SDavid Howells 		 * the path being looked up; if it wasn't then the remainder of
11789875cf80SDavid Howells 		 * the path is inaccessible and we should say so.
11799875cf80SDavid Howells 		 */
1180756daf26SNeilBrown 		if (PTR_ERR(mnt) == -EISDIR && (nd->flags & LOOKUP_PARENT))
11819875cf80SDavid Howells 			return -EREMOTE;
11829875cf80SDavid Howells 		return PTR_ERR(mnt);
118331e6b01fSNick Piggin 	}
1184ea5b778aSDavid Howells 
11859875cf80SDavid Howells 	if (!mnt) /* mount collision */
11869875cf80SDavid Howells 		return 0;
11879875cf80SDavid Howells 
11888aef1884SAl Viro 	if (!*need_mntput) {
11898aef1884SAl Viro 		/* lock_mount() may release path->mnt on error */
11908aef1884SAl Viro 		mntget(path->mnt);
11918aef1884SAl Viro 		*need_mntput = true;
11928aef1884SAl Viro 	}
119319a167afSAl Viro 	err = finish_automount(mnt, path);
1194ea5b778aSDavid Howells 
1195ea5b778aSDavid Howells 	switch (err) {
1196ea5b778aSDavid Howells 	case -EBUSY:
1197ea5b778aSDavid Howells 		/* Someone else made a mount here whilst we were busy */
119819a167afSAl Viro 		return 0;
1199ea5b778aSDavid Howells 	case 0:
12008aef1884SAl Viro 		path_put(path);
12019875cf80SDavid Howells 		path->mnt = mnt;
12029875cf80SDavid Howells 		path->dentry = dget(mnt->mnt_root);
12039875cf80SDavid Howells 		return 0;
120419a167afSAl Viro 	default:
120519a167afSAl Viro 		return err;
12069875cf80SDavid Howells 	}
120719a167afSAl Viro 
1208ea5b778aSDavid Howells }
12099875cf80SDavid Howells 
12109875cf80SDavid Howells /*
12119875cf80SDavid Howells  * Handle a dentry that is managed in some way.
1212cc53ce53SDavid Howells  * - Flagged for transit management (autofs)
12139875cf80SDavid Howells  * - Flagged as mountpoint
12149875cf80SDavid Howells  * - Flagged as automount point
12159875cf80SDavid Howells  *
12169875cf80SDavid Howells  * This may only be called in refwalk mode.
12179875cf80SDavid Howells  *
12189875cf80SDavid Howells  * Serialization is taken care of in namespace.c
12199875cf80SDavid Howells  */
1220756daf26SNeilBrown static int follow_managed(struct path *path, struct nameidata *nd)
12219875cf80SDavid Howells {
12228aef1884SAl Viro 	struct vfsmount *mnt = path->mnt; /* held by caller, must be left alone */
12239875cf80SDavid Howells 	unsigned managed;
12249875cf80SDavid Howells 	bool need_mntput = false;
12258aef1884SAl Viro 	int ret = 0;
12269875cf80SDavid Howells 
12279875cf80SDavid Howells 	/* Given that we're not holding a lock here, we retain the value in a
12289875cf80SDavid Howells 	 * local variable for each dentry as we look at it so that we don't see
12299875cf80SDavid Howells 	 * the components of that value change under us */
12306aa7de05SMark Rutland 	while (managed = READ_ONCE(path->dentry->d_flags),
12319875cf80SDavid Howells 	       managed &= DCACHE_MANAGED_DENTRY,
12329875cf80SDavid Howells 	       unlikely(managed != 0)) {
1233cc53ce53SDavid Howells 		/* Allow the filesystem to manage the transit without i_mutex
1234cc53ce53SDavid Howells 		 * being held. */
1235cc53ce53SDavid Howells 		if (managed & DCACHE_MANAGE_TRANSIT) {
1236cc53ce53SDavid Howells 			BUG_ON(!path->dentry->d_op);
1237cc53ce53SDavid Howells 			BUG_ON(!path->dentry->d_op->d_manage);
1238fb5f51c7SIan Kent 			ret = path->dentry->d_op->d_manage(path, false);
1239cc53ce53SDavid Howells 			if (ret < 0)
12408aef1884SAl Viro 				break;
1241cc53ce53SDavid Howells 		}
1242cc53ce53SDavid Howells 
12439875cf80SDavid Howells 		/* Transit to a mounted filesystem. */
12449875cf80SDavid Howells 		if (managed & DCACHE_MOUNTED) {
12459875cf80SDavid Howells 			struct vfsmount *mounted = lookup_mnt(path);
12469875cf80SDavid Howells 			if (mounted) {
12479875cf80SDavid Howells 				dput(path->dentry);
12489875cf80SDavid Howells 				if (need_mntput)
1249463ffb2eSAl Viro 					mntput(path->mnt);
1250463ffb2eSAl Viro 				path->mnt = mounted;
1251463ffb2eSAl Viro 				path->dentry = dget(mounted->mnt_root);
12529875cf80SDavid Howells 				need_mntput = true;
12539875cf80SDavid Howells 				continue;
1254463ffb2eSAl Viro 			}
1255463ffb2eSAl Viro 
12569875cf80SDavid Howells 			/* Something is mounted on this dentry in another
12579875cf80SDavid Howells 			 * namespace and/or whatever was mounted there in this
125848a066e7SAl Viro 			 * namespace got unmounted before lookup_mnt() could
125948a066e7SAl Viro 			 * get it */
12601da177e4SLinus Torvalds 		}
12619875cf80SDavid Howells 
12629875cf80SDavid Howells 		/* Handle an automount point */
12639875cf80SDavid Howells 		if (managed & DCACHE_NEED_AUTOMOUNT) {
1264756daf26SNeilBrown 			ret = follow_automount(path, nd, &need_mntput);
12659875cf80SDavid Howells 			if (ret < 0)
12668aef1884SAl Viro 				break;
12679875cf80SDavid Howells 			continue;
12689875cf80SDavid Howells 		}
12699875cf80SDavid Howells 
12709875cf80SDavid Howells 		/* We didn't change the current path point */
12719875cf80SDavid Howells 		break;
12729875cf80SDavid Howells 	}
12738aef1884SAl Viro 
12748aef1884SAl Viro 	if (need_mntput && path->mnt == mnt)
12758aef1884SAl Viro 		mntput(path->mnt);
1276e9742b53SAl Viro 	if (ret == -EISDIR || !ret)
1277e9742b53SAl Viro 		ret = 1;
12788402752eSAl Viro 	if (need_mntput)
12798402752eSAl Viro 		nd->flags |= LOOKUP_JUMPED;
12808402752eSAl Viro 	if (unlikely(ret < 0))
12818402752eSAl Viro 		path_put_conditional(path, nd);
12828402752eSAl Viro 	return ret;
12831da177e4SLinus Torvalds }
12841da177e4SLinus Torvalds 
1285cc53ce53SDavid Howells int follow_down_one(struct path *path)
12861da177e4SLinus Torvalds {
12871da177e4SLinus Torvalds 	struct vfsmount *mounted;
12881da177e4SLinus Torvalds 
12891c755af4SAl Viro 	mounted = lookup_mnt(path);
12901da177e4SLinus Torvalds 	if (mounted) {
12919393bd07SAl Viro 		dput(path->dentry);
12929393bd07SAl Viro 		mntput(path->mnt);
12939393bd07SAl Viro 		path->mnt = mounted;
12949393bd07SAl Viro 		path->dentry = dget(mounted->mnt_root);
12951da177e4SLinus Torvalds 		return 1;
12961da177e4SLinus Torvalds 	}
12971da177e4SLinus Torvalds 	return 0;
12981da177e4SLinus Torvalds }
12994d359507SAl Viro EXPORT_SYMBOL(follow_down_one);
13001da177e4SLinus Torvalds 
1301fb5f51c7SIan Kent static inline int managed_dentry_rcu(const struct path *path)
130262a7375eSIan Kent {
1303fb5f51c7SIan Kent 	return (path->dentry->d_flags & DCACHE_MANAGE_TRANSIT) ?
1304fb5f51c7SIan Kent 		path->dentry->d_op->d_manage(path, true) : 0;
130562a7375eSIan Kent }
130662a7375eSIan Kent 
13079875cf80SDavid Howells /*
1308287548e4SAl Viro  * Try to skip to top of mountpoint pile in rcuwalk mode.  Fail if
1309287548e4SAl Viro  * we meet a managed dentry that would need blocking.
13109875cf80SDavid Howells  */
13119875cf80SDavid Howells static bool __follow_mount_rcu(struct nameidata *nd, struct path *path,
1312254cf582SAl Viro 			       struct inode **inode, unsigned *seqp)
13139875cf80SDavid Howells {
131462a7375eSIan Kent 	for (;;) {
1315c7105365SAl Viro 		struct mount *mounted;
131662a7375eSIan Kent 		/*
131762a7375eSIan Kent 		 * Don't forget we might have a non-mountpoint managed dentry
131862a7375eSIan Kent 		 * that wants to block transit.
131962a7375eSIan Kent 		 */
1320fb5f51c7SIan Kent 		switch (managed_dentry_rcu(path)) {
1321b8faf035SNeilBrown 		case -ECHILD:
1322b8faf035SNeilBrown 		default:
1323ab90911fSDavid Howells 			return false;
1324b8faf035SNeilBrown 		case -EISDIR:
1325b8faf035SNeilBrown 			return true;
1326b8faf035SNeilBrown 		case 0:
1327b8faf035SNeilBrown 			break;
1328b8faf035SNeilBrown 		}
132962a7375eSIan Kent 
133062a7375eSIan Kent 		if (!d_mountpoint(path->dentry))
1331b8faf035SNeilBrown 			return !(path->dentry->d_flags & DCACHE_NEED_AUTOMOUNT);
133262a7375eSIan Kent 
1333474279dcSAl Viro 		mounted = __lookup_mnt(path->mnt, path->dentry);
13349875cf80SDavid Howells 		if (!mounted)
13359875cf80SDavid Howells 			break;
1336c7105365SAl Viro 		path->mnt = &mounted->mnt;
1337c7105365SAl Viro 		path->dentry = mounted->mnt.mnt_root;
1338a3fbbde7SAl Viro 		nd->flags |= LOOKUP_JUMPED;
1339254cf582SAl Viro 		*seqp = read_seqcount_begin(&path->dentry->d_seq);
134059430262SLinus Torvalds 		/*
134159430262SLinus Torvalds 		 * Update the inode too. We don't need to re-check the
134259430262SLinus Torvalds 		 * dentry sequence number here after this d_inode read,
134359430262SLinus Torvalds 		 * because a mount-point is always pinned.
134459430262SLinus Torvalds 		 */
134559430262SLinus Torvalds 		*inode = path->dentry->d_inode;
13469875cf80SDavid Howells 	}
1347f5be3e29SAl Viro 	return !read_seqretry(&mount_lock, nd->m_seq) &&
1348b8faf035SNeilBrown 		!(path->dentry->d_flags & DCACHE_NEED_AUTOMOUNT);
1349287548e4SAl Viro }
1350287548e4SAl Viro 
135131e6b01fSNick Piggin static int follow_dotdot_rcu(struct nameidata *nd)
135231e6b01fSNick Piggin {
13534023bfc9SAl Viro 	struct inode *inode = nd->inode;
135431e6b01fSNick Piggin 
135531e6b01fSNick Piggin 	while (1) {
1356aed434adSAl Viro 		if (path_equal(&nd->path, &nd->root))
135731e6b01fSNick Piggin 			break;
135831e6b01fSNick Piggin 		if (nd->path.dentry != nd->path.mnt->mnt_root) {
135931e6b01fSNick Piggin 			struct dentry *old = nd->path.dentry;
136031e6b01fSNick Piggin 			struct dentry *parent = old->d_parent;
136131e6b01fSNick Piggin 			unsigned seq;
136231e6b01fSNick Piggin 
13634023bfc9SAl Viro 			inode = parent->d_inode;
136431e6b01fSNick Piggin 			seq = read_seqcount_begin(&parent->d_seq);
1365aed434adSAl Viro 			if (unlikely(read_seqcount_retry(&old->d_seq, nd->seq)))
1366aed434adSAl Viro 				return -ECHILD;
136731e6b01fSNick Piggin 			nd->path.dentry = parent;
136831e6b01fSNick Piggin 			nd->seq = seq;
1369397d425dSEric W. Biederman 			if (unlikely(!path_connected(&nd->path)))
1370397d425dSEric W. Biederman 				return -ENOENT;
137131e6b01fSNick Piggin 			break;
1372aed434adSAl Viro 		} else {
1373aed434adSAl Viro 			struct mount *mnt = real_mount(nd->path.mnt);
1374aed434adSAl Viro 			struct mount *mparent = mnt->mnt_parent;
1375aed434adSAl Viro 			struct dentry *mountpoint = mnt->mnt_mountpoint;
1376aed434adSAl Viro 			struct inode *inode2 = mountpoint->d_inode;
1377aed434adSAl Viro 			unsigned seq = read_seqcount_begin(&mountpoint->d_seq);
1378aed434adSAl Viro 			if (unlikely(read_seqretry(&mount_lock, nd->m_seq)))
1379aed434adSAl Viro 				return -ECHILD;
1380aed434adSAl Viro 			if (&mparent->mnt == nd->path.mnt)
138131e6b01fSNick Piggin 				break;
1382aed434adSAl Viro 			/* we know that mountpoint was pinned */
1383aed434adSAl Viro 			nd->path.dentry = mountpoint;
1384aed434adSAl Viro 			nd->path.mnt = &mparent->mnt;
1385aed434adSAl Viro 			inode = inode2;
1386aed434adSAl Viro 			nd->seq = seq;
138731e6b01fSNick Piggin 		}
1388aed434adSAl Viro 	}
1389aed434adSAl Viro 	while (unlikely(d_mountpoint(nd->path.dentry))) {
1390b37199e6SAl Viro 		struct mount *mounted;
1391b37199e6SAl Viro 		mounted = __lookup_mnt(nd->path.mnt, nd->path.dentry);
1392aed434adSAl Viro 		if (unlikely(read_seqretry(&mount_lock, nd->m_seq)))
1393aed434adSAl Viro 			return -ECHILD;
1394b37199e6SAl Viro 		if (!mounted)
1395b37199e6SAl Viro 			break;
1396b37199e6SAl Viro 		nd->path.mnt = &mounted->mnt;
1397b37199e6SAl Viro 		nd->path.dentry = mounted->mnt.mnt_root;
13984023bfc9SAl Viro 		inode = nd->path.dentry->d_inode;
1399b37199e6SAl Viro 		nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq);
1400b37199e6SAl Viro 	}
14014023bfc9SAl Viro 	nd->inode = inode;
140231e6b01fSNick Piggin 	return 0;
140331e6b01fSNick Piggin }
140431e6b01fSNick Piggin 
14059875cf80SDavid Howells /*
1406cc53ce53SDavid Howells  * Follow down to the covering mount currently visible to userspace.  At each
1407cc53ce53SDavid Howells  * point, the filesystem owning that dentry may be queried as to whether the
1408cc53ce53SDavid Howells  * caller is permitted to proceed or not.
1409cc53ce53SDavid Howells  */
14107cc90cc3SAl Viro int follow_down(struct path *path)
1411cc53ce53SDavid Howells {
1412cc53ce53SDavid Howells 	unsigned managed;
1413cc53ce53SDavid Howells 	int ret;
1414cc53ce53SDavid Howells 
14156aa7de05SMark Rutland 	while (managed = READ_ONCE(path->dentry->d_flags),
1416cc53ce53SDavid Howells 	       unlikely(managed & DCACHE_MANAGED_DENTRY)) {
1417cc53ce53SDavid Howells 		/* Allow the filesystem to manage the transit without i_mutex
1418cc53ce53SDavid Howells 		 * being held.
1419cc53ce53SDavid Howells 		 *
1420cc53ce53SDavid Howells 		 * We indicate to the filesystem if someone is trying to mount
1421cc53ce53SDavid Howells 		 * something here.  This gives autofs the chance to deny anyone
1422cc53ce53SDavid Howells 		 * other than its daemon the right to mount on its
1423cc53ce53SDavid Howells 		 * superstructure.
1424cc53ce53SDavid Howells 		 *
1425cc53ce53SDavid Howells 		 * The filesystem may sleep at this point.
1426cc53ce53SDavid Howells 		 */
1427cc53ce53SDavid Howells 		if (managed & DCACHE_MANAGE_TRANSIT) {
1428cc53ce53SDavid Howells 			BUG_ON(!path->dentry->d_op);
1429cc53ce53SDavid Howells 			BUG_ON(!path->dentry->d_op->d_manage);
1430fb5f51c7SIan Kent 			ret = path->dentry->d_op->d_manage(path, false);
1431cc53ce53SDavid Howells 			if (ret < 0)
1432cc53ce53SDavid Howells 				return ret == -EISDIR ? 0 : ret;
1433cc53ce53SDavid Howells 		}
1434cc53ce53SDavid Howells 
1435cc53ce53SDavid Howells 		/* Transit to a mounted filesystem. */
1436cc53ce53SDavid Howells 		if (managed & DCACHE_MOUNTED) {
1437cc53ce53SDavid Howells 			struct vfsmount *mounted = lookup_mnt(path);
1438cc53ce53SDavid Howells 			if (!mounted)
1439cc53ce53SDavid Howells 				break;
1440cc53ce53SDavid Howells 			dput(path->dentry);
1441cc53ce53SDavid Howells 			mntput(path->mnt);
1442cc53ce53SDavid Howells 			path->mnt = mounted;
1443cc53ce53SDavid Howells 			path->dentry = dget(mounted->mnt_root);
1444cc53ce53SDavid Howells 			continue;
1445cc53ce53SDavid Howells 		}
1446cc53ce53SDavid Howells 
1447cc53ce53SDavid Howells 		/* Don't handle automount points here */
1448cc53ce53SDavid Howells 		break;
1449cc53ce53SDavid Howells 	}
1450cc53ce53SDavid Howells 	return 0;
1451cc53ce53SDavid Howells }
14524d359507SAl Viro EXPORT_SYMBOL(follow_down);
1453cc53ce53SDavid Howells 
1454cc53ce53SDavid Howells /*
14559875cf80SDavid Howells  * Skip to top of mountpoint pile in refwalk mode for follow_dotdot()
14569875cf80SDavid Howells  */
14579875cf80SDavid Howells static void follow_mount(struct path *path)
14589875cf80SDavid Howells {
14599875cf80SDavid Howells 	while (d_mountpoint(path->dentry)) {
14609875cf80SDavid Howells 		struct vfsmount *mounted = lookup_mnt(path);
14619875cf80SDavid Howells 		if (!mounted)
14629875cf80SDavid Howells 			break;
14639875cf80SDavid Howells 		dput(path->dentry);
14649875cf80SDavid Howells 		mntput(path->mnt);
14659875cf80SDavid Howells 		path->mnt = mounted;
14669875cf80SDavid Howells 		path->dentry = dget(mounted->mnt_root);
14679875cf80SDavid Howells 	}
14689875cf80SDavid Howells }
14699875cf80SDavid Howells 
1470eedf265aSEric W. Biederman static int path_parent_directory(struct path *path)
1471eedf265aSEric W. Biederman {
1472eedf265aSEric W. Biederman 	struct dentry *old = path->dentry;
1473eedf265aSEric W. Biederman 	/* rare case of legitimate dget_parent()... */
1474eedf265aSEric W. Biederman 	path->dentry = dget_parent(path->dentry);
1475eedf265aSEric W. Biederman 	dput(old);
1476eedf265aSEric W. Biederman 	if (unlikely(!path_connected(path)))
1477eedf265aSEric W. Biederman 		return -ENOENT;
1478eedf265aSEric W. Biederman 	return 0;
1479eedf265aSEric W. Biederman }
1480eedf265aSEric W. Biederman 
1481397d425dSEric W. Biederman static int follow_dotdot(struct nameidata *nd)
14821da177e4SLinus Torvalds {
14831da177e4SLinus Torvalds 	while(1) {
1484030c7e0bSDanilo Krummrich 		if (path_equal(&nd->path, &nd->root))
14851da177e4SLinus Torvalds 			break;
14864ac91378SJan Blunck 		if (nd->path.dentry != nd->path.mnt->mnt_root) {
1487eedf265aSEric W. Biederman 			int ret = path_parent_directory(&nd->path);
1488eedf265aSEric W. Biederman 			if (ret)
1489eedf265aSEric W. Biederman 				return ret;
14901da177e4SLinus Torvalds 			break;
14911da177e4SLinus Torvalds 		}
14923088dd70SAl Viro 		if (!follow_up(&nd->path))
14931da177e4SLinus Torvalds 			break;
14941da177e4SLinus Torvalds 	}
149579ed0226SAl Viro 	follow_mount(&nd->path);
149631e6b01fSNick Piggin 	nd->inode = nd->path.dentry->d_inode;
1497397d425dSEric W. Biederman 	return 0;
14981da177e4SLinus Torvalds }
14991da177e4SLinus Torvalds 
15001da177e4SLinus Torvalds /*
1501f4fdace9SOleg Drokin  * This looks up the name in dcache and possibly revalidates the found dentry.
1502f4fdace9SOleg Drokin  * NULL is returned if the dentry does not exist in the cache.
1503baa03890SNick Piggin  */
1504e3c13928SAl Viro static struct dentry *lookup_dcache(const struct qstr *name,
1505e3c13928SAl Viro 				    struct dentry *dir,
15066c51e513SAl Viro 				    unsigned int flags)
1507baa03890SNick Piggin {
1508a89f8337SAl Viro 	struct dentry *dentry = d_lookup(dir, name);
1509bad61189SMiklos Szeredi 	if (dentry) {
1510a89f8337SAl Viro 		int error = d_revalidate(dentry, flags);
1511bad61189SMiklos Szeredi 		if (unlikely(error <= 0)) {
151274ff0ffcSAl Viro 			if (!error)
15135542aa2fSEric W. Biederman 				d_invalidate(dentry);
1514bad61189SMiklos Szeredi 			dput(dentry);
151574ff0ffcSAl Viro 			return ERR_PTR(error);
1516bad61189SMiklos Szeredi 		}
1517bad61189SMiklos Szeredi 	}
1518baa03890SNick Piggin 	return dentry;
1519baa03890SNick Piggin }
1520baa03890SNick Piggin 
1521baa03890SNick Piggin /*
1522a03ece5fSAl Viro  * Parent directory has inode locked exclusive.  This is one
1523a03ece5fSAl Viro  * and only case when ->lookup() gets called on non in-lookup
1524a03ece5fSAl Viro  * dentries - as the matter of fact, this only gets called
1525a03ece5fSAl Viro  * when directory is guaranteed to have no in-lookup children
1526a03ece5fSAl Viro  * at all.
152744396f4bSJosef Bacik  */
1528a03ece5fSAl Viro static struct dentry *__lookup_hash(const struct qstr *name,
1529a03ece5fSAl Viro 		struct dentry *base, unsigned int flags)
153044396f4bSJosef Bacik {
1531a03ece5fSAl Viro 	struct dentry *dentry = lookup_dcache(name, base, flags);
153244396f4bSJosef Bacik 	struct dentry *old;
1533a03ece5fSAl Viro 	struct inode *dir = base->d_inode;
1534a03ece5fSAl Viro 
1535a03ece5fSAl Viro 	if (dentry)
1536a03ece5fSAl Viro 		return dentry;
153744396f4bSJosef Bacik 
153844396f4bSJosef Bacik 	/* Don't create child dentry for a dead directory. */
1539a03ece5fSAl Viro 	if (unlikely(IS_DEADDIR(dir)))
154044396f4bSJosef Bacik 		return ERR_PTR(-ENOENT);
1541a03ece5fSAl Viro 
1542a03ece5fSAl Viro 	dentry = d_alloc(base, name);
1543a03ece5fSAl Viro 	if (unlikely(!dentry))
1544a03ece5fSAl Viro 		return ERR_PTR(-ENOMEM);
154544396f4bSJosef Bacik 
154672bd866aSAl Viro 	old = dir->i_op->lookup(dir, dentry, flags);
154744396f4bSJosef Bacik 	if (unlikely(old)) {
154844396f4bSJosef Bacik 		dput(dentry);
154944396f4bSJosef Bacik 		dentry = old;
155044396f4bSJosef Bacik 	}
155144396f4bSJosef Bacik 	return dentry;
155244396f4bSJosef Bacik }
155344396f4bSJosef Bacik 
1554e97cdc87SAl Viro static int lookup_fast(struct nameidata *nd,
1555254cf582SAl Viro 		       struct path *path, struct inode **inode,
1556254cf582SAl Viro 		       unsigned *seqp)
15571da177e4SLinus Torvalds {
15584ac91378SJan Blunck 	struct vfsmount *mnt = nd->path.mnt;
155931e6b01fSNick Piggin 	struct dentry *dentry, *parent = nd->path.dentry;
15605a18fff2SAl Viro 	int status = 1;
15619875cf80SDavid Howells 	int err;
15629875cf80SDavid Howells 
15633cac260aSAl Viro 	/*
1564b04f784eSNick Piggin 	 * Rename seqlock is not required here because in the off chance
15655d0f49c1SAl Viro 	 * of a false negative due to a concurrent rename, the caller is
15665d0f49c1SAl Viro 	 * going to fall back to non-racy lookup.
1567b04f784eSNick Piggin 	 */
156831e6b01fSNick Piggin 	if (nd->flags & LOOKUP_RCU) {
156931e6b01fSNick Piggin 		unsigned seq;
1570766c4cbfSAl Viro 		bool negative;
1571da53be12SLinus Torvalds 		dentry = __d_lookup_rcu(parent, &nd->last, &seq);
15725d0f49c1SAl Viro 		if (unlikely(!dentry)) {
15734675ac39SAl Viro 			if (unlazy_walk(nd))
15745d0f49c1SAl Viro 				return -ECHILD;
1575e9742b53SAl Viro 			return 0;
15765d0f49c1SAl Viro 		}
15775a18fff2SAl Viro 
157812f8ad4bSLinus Torvalds 		/*
157912f8ad4bSLinus Torvalds 		 * This sequence count validates that the inode matches
158012f8ad4bSLinus Torvalds 		 * the dentry name information from lookup.
158112f8ad4bSLinus Torvalds 		 */
158263afdfc7SDavid Howells 		*inode = d_backing_inode(dentry);
1583766c4cbfSAl Viro 		negative = d_is_negative(dentry);
15845d0f49c1SAl Viro 		if (unlikely(read_seqcount_retry(&dentry->d_seq, seq)))
158512f8ad4bSLinus Torvalds 			return -ECHILD;
158612f8ad4bSLinus Torvalds 
158712f8ad4bSLinus Torvalds 		/*
158812f8ad4bSLinus Torvalds 		 * This sequence count validates that the parent had no
158912f8ad4bSLinus Torvalds 		 * changes while we did the lookup of the dentry above.
159012f8ad4bSLinus Torvalds 		 *
159112f8ad4bSLinus Torvalds 		 * The memory barrier in read_seqcount_begin of child is
159212f8ad4bSLinus Torvalds 		 *  enough, we can use __read_seqcount_retry here.
159312f8ad4bSLinus Torvalds 		 */
15945d0f49c1SAl Viro 		if (unlikely(__read_seqcount_retry(&parent->d_seq, nd->seq)))
159531e6b01fSNick Piggin 			return -ECHILD;
15965a18fff2SAl Viro 
1597254cf582SAl Viro 		*seqp = seq;
15984ce16ef3SAl Viro 		status = d_revalidate(dentry, nd->flags);
1599209a7fb2SAl Viro 		if (likely(status > 0)) {
1600daf3761cSTrond Myklebust 			/*
1601daf3761cSTrond Myklebust 			 * Note: do negative dentry check after revalidation in
1602daf3761cSTrond Myklebust 			 * case that drops it.
1603daf3761cSTrond Myklebust 			 */
16045d0f49c1SAl Viro 			if (unlikely(negative))
1605daf3761cSTrond Myklebust 				return -ENOENT;
160631e6b01fSNick Piggin 			path->mnt = mnt;
160731e6b01fSNick Piggin 			path->dentry = dentry;
1608254cf582SAl Viro 			if (likely(__follow_mount_rcu(nd, path, inode, seqp)))
1609e9742b53SAl Viro 				return 1;
16105d0f49c1SAl Viro 		}
16114675ac39SAl Viro 		if (unlazy_child(nd, dentry, seq))
1612254cf582SAl Viro 			return -ECHILD;
1613209a7fb2SAl Viro 		if (unlikely(status == -ECHILD))
1614209a7fb2SAl Viro 			/* we'd been told to redo it in non-rcu mode */
1615209a7fb2SAl Viro 			status = d_revalidate(dentry, nd->flags);
16165a18fff2SAl Viro 	} else {
1617e97cdc87SAl Viro 		dentry = __d_lookup(parent, &nd->last);
161881e6f520SAl Viro 		if (unlikely(!dentry))
1619e9742b53SAl Viro 			return 0;
16204ce16ef3SAl Viro 		status = d_revalidate(dentry, nd->flags);
16215d0f49c1SAl Viro 	}
16225a18fff2SAl Viro 	if (unlikely(status <= 0)) {
1623e9742b53SAl Viro 		if (!status)
16245d0f49c1SAl Viro 			d_invalidate(dentry);
16255a18fff2SAl Viro 		dput(dentry);
16265a18fff2SAl Viro 		return status;
16275a18fff2SAl Viro 	}
1628766c4cbfSAl Viro 	if (unlikely(d_is_negative(dentry))) {
1629766c4cbfSAl Viro 		dput(dentry);
1630766c4cbfSAl Viro 		return -ENOENT;
1631766c4cbfSAl Viro 	}
16325d0f49c1SAl Viro 
16331da177e4SLinus Torvalds 	path->mnt = mnt;
16341da177e4SLinus Torvalds 	path->dentry = dentry;
1635756daf26SNeilBrown 	err = follow_managed(path, nd);
1636e9742b53SAl Viro 	if (likely(err > 0))
163763afdfc7SDavid Howells 		*inode = d_backing_inode(path->dentry);
16388402752eSAl Viro 	return err;
1639697f514dSMiklos Szeredi }
1640697f514dSMiklos Szeredi 
1641697f514dSMiklos Szeredi /* Fast lookup failed, do it the slow way */
164288d8331aSAl Viro static struct dentry *__lookup_slow(const struct qstr *name,
1643e3c13928SAl Viro 				    struct dentry *dir,
1644e3c13928SAl Viro 				    unsigned int flags)
1645697f514dSMiklos Szeredi {
164688d8331aSAl Viro 	struct dentry *dentry, *old;
16471936386eSAl Viro 	struct inode *inode = dir->d_inode;
1648d9171b93SAl Viro 	DECLARE_WAIT_QUEUE_HEAD_ONSTACK(wq);
16491936386eSAl Viro 
16501936386eSAl Viro 	/* Don't go there if it's already dead */
165194bdd655SAl Viro 	if (unlikely(IS_DEADDIR(inode)))
165288d8331aSAl Viro 		return ERR_PTR(-ENOENT);
165394bdd655SAl Viro again:
1654d9171b93SAl Viro 	dentry = d_alloc_parallel(dir, name, &wq);
165594bdd655SAl Viro 	if (IS_ERR(dentry))
165688d8331aSAl Viro 		return dentry;
165794bdd655SAl Viro 	if (unlikely(!d_in_lookup(dentry))) {
1658a89f8337SAl Viro 		if (!(flags & LOOKUP_NO_REVAL)) {
1659949a852eSAl Viro 			int error = d_revalidate(dentry, flags);
1660949a852eSAl Viro 			if (unlikely(error <= 0)) {
166194bdd655SAl Viro 				if (!error) {
1662949a852eSAl Viro 					d_invalidate(dentry);
1663949a852eSAl Viro 					dput(dentry);
166494bdd655SAl Viro 					goto again;
166594bdd655SAl Viro 				}
166694bdd655SAl Viro 				dput(dentry);
1667949a852eSAl Viro 				dentry = ERR_PTR(error);
1668949a852eSAl Viro 			}
1669949a852eSAl Viro 		}
167094bdd655SAl Viro 	} else {
16711936386eSAl Viro 		old = inode->i_op->lookup(inode, dentry, flags);
167285c7f810SAl Viro 		d_lookup_done(dentry);
16731936386eSAl Viro 		if (unlikely(old)) {
16741936386eSAl Viro 			dput(dentry);
16751936386eSAl Viro 			dentry = old;
1676949a852eSAl Viro 		}
1677949a852eSAl Viro 	}
1678e3c13928SAl Viro 	return dentry;
16791da177e4SLinus Torvalds }
16801da177e4SLinus Torvalds 
168188d8331aSAl Viro static struct dentry *lookup_slow(const struct qstr *name,
168288d8331aSAl Viro 				  struct dentry *dir,
168388d8331aSAl Viro 				  unsigned int flags)
168488d8331aSAl Viro {
168588d8331aSAl Viro 	struct inode *inode = dir->d_inode;
168688d8331aSAl Viro 	struct dentry *res;
168788d8331aSAl Viro 	inode_lock_shared(inode);
168888d8331aSAl Viro 	res = __lookup_slow(name, dir, flags);
168988d8331aSAl Viro 	inode_unlock_shared(inode);
169088d8331aSAl Viro 	return res;
169188d8331aSAl Viro }
169288d8331aSAl Viro 
169352094c8aSAl Viro static inline int may_lookup(struct nameidata *nd)
169452094c8aSAl Viro {
169552094c8aSAl Viro 	if (nd->flags & LOOKUP_RCU) {
16964ad5abb3SAl Viro 		int err = inode_permission(nd->inode, MAY_EXEC|MAY_NOT_BLOCK);
169752094c8aSAl Viro 		if (err != -ECHILD)
169852094c8aSAl Viro 			return err;
16994675ac39SAl Viro 		if (unlazy_walk(nd))
170052094c8aSAl Viro 			return -ECHILD;
170152094c8aSAl Viro 	}
17024ad5abb3SAl Viro 	return inode_permission(nd->inode, MAY_EXEC);
170352094c8aSAl Viro }
170452094c8aSAl Viro 
17059856fa1bSAl Viro static inline int handle_dots(struct nameidata *nd, int type)
17069856fa1bSAl Viro {
17079856fa1bSAl Viro 	if (type == LAST_DOTDOT) {
17089e6697e2SAl Viro 		if (!nd->root.mnt)
17099e6697e2SAl Viro 			set_root(nd);
17109856fa1bSAl Viro 		if (nd->flags & LOOKUP_RCU) {
171170291aecSAl Viro 			return follow_dotdot_rcu(nd);
17129856fa1bSAl Viro 		} else
1713397d425dSEric W. Biederman 			return follow_dotdot(nd);
17149856fa1bSAl Viro 	}
17159856fa1bSAl Viro 	return 0;
17169856fa1bSAl Viro }
17179856fa1bSAl Viro 
1718181548c0SAl Viro static int pick_link(struct nameidata *nd, struct path *link,
1719181548c0SAl Viro 		     struct inode *inode, unsigned seq)
1720d63ff28fSAl Viro {
1721626de996SAl Viro 	int error;
17221cf2665bSAl Viro 	struct saved *last;
1723756daf26SNeilBrown 	if (unlikely(nd->total_link_count++ >= MAXSYMLINKS)) {
1724626de996SAl Viro 		path_to_nameidata(link, nd);
1725626de996SAl Viro 		return -ELOOP;
1726626de996SAl Viro 	}
1727bc40aee0SAl Viro 	if (!(nd->flags & LOOKUP_RCU)) {
1728cd179f44SAl Viro 		if (link->mnt == nd->path.mnt)
1729cd179f44SAl Viro 			mntget(link->mnt);
17307973387aSAl Viro 	}
1731626de996SAl Viro 	error = nd_alloc_stack(nd);
1732626de996SAl Viro 	if (unlikely(error)) {
1733bc40aee0SAl Viro 		if (error == -ECHILD) {
1734ad1633a1SAl Viro 			if (unlikely(!legitimize_path(nd, link, seq))) {
1735ad1633a1SAl Viro 				drop_links(nd);
1736ad1633a1SAl Viro 				nd->depth = 0;
1737ad1633a1SAl Viro 				nd->flags &= ~LOOKUP_RCU;
1738ad1633a1SAl Viro 				nd->path.mnt = NULL;
1739ad1633a1SAl Viro 				nd->path.dentry = NULL;
1740ad1633a1SAl Viro 				if (!(nd->flags & LOOKUP_ROOT))
1741ad1633a1SAl Viro 					nd->root.mnt = NULL;
1742ad1633a1SAl Viro 				rcu_read_unlock();
17434675ac39SAl Viro 			} else if (likely(unlazy_walk(nd)) == 0)
1744bc40aee0SAl Viro 				error = nd_alloc_stack(nd);
1745bc40aee0SAl Viro 		}
1746bc40aee0SAl Viro 		if (error) {
1747cd179f44SAl Viro 			path_put(link);
1748626de996SAl Viro 			return error;
1749626de996SAl Viro 		}
1750bc40aee0SAl Viro 	}
1751626de996SAl Viro 
1752ab104923SAl Viro 	last = nd->stack + nd->depth++;
17531cf2665bSAl Viro 	last->link = *link;
1754fceef393SAl Viro 	clear_delayed_call(&last->done);
1755fceef393SAl Viro 	nd->link_inode = inode;
17560450b2d1SAl Viro 	last->seq = seq;
1757d63ff28fSAl Viro 	return 1;
1758d63ff28fSAl Viro }
1759d63ff28fSAl Viro 
17608f64fb1cSAl Viro enum {WALK_FOLLOW = 1, WALK_MORE = 2};
176131d66bcdSAl Viro 
17623ddcd056SLinus Torvalds /*
17633ddcd056SLinus Torvalds  * Do we need to follow links? We _really_ want to be able
17643ddcd056SLinus Torvalds  * to do this check without having to look at inode->i_op,
17653ddcd056SLinus Torvalds  * so we keep a cache of "no, this doesn't need follow_link"
17663ddcd056SLinus Torvalds  * for the common case.
17673ddcd056SLinus Torvalds  */
17688f64fb1cSAl Viro static inline int step_into(struct nameidata *nd, struct path *path,
17698f64fb1cSAl Viro 			    int flags, struct inode *inode, unsigned seq)
17703ddcd056SLinus Torvalds {
177131d66bcdSAl Viro 	if (!(flags & WALK_MORE) && nd->depth)
177231d66bcdSAl Viro 		put_link(nd);
17738f64fb1cSAl Viro 	if (likely(!d_is_symlink(path->dentry)) ||
17748f64fb1cSAl Viro 	   !(flags & WALK_FOLLOW || nd->flags & LOOKUP_FOLLOW)) {
17758f64fb1cSAl Viro 		/* not a symlink or should not follow */
17768f64fb1cSAl Viro 		path_to_nameidata(path, nd);
17778f64fb1cSAl Viro 		nd->inode = inode;
17788f64fb1cSAl Viro 		nd->seq = seq;
1779d63ff28fSAl Viro 		return 0;
17808f64fb1cSAl Viro 	}
1781a7f77542SAl Viro 	/* make sure that d_is_symlink above matches inode */
1782a7f77542SAl Viro 	if (nd->flags & LOOKUP_RCU) {
17838f64fb1cSAl Viro 		if (read_seqcount_retry(&path->dentry->d_seq, seq))
1784a7f77542SAl Viro 			return -ECHILD;
1785a7f77542SAl Viro 	}
17868f64fb1cSAl Viro 	return pick_link(nd, path, inode, seq);
17873ddcd056SLinus Torvalds }
17883ddcd056SLinus Torvalds 
17894693a547SAl Viro static int walk_component(struct nameidata *nd, int flags)
1790ce57dfc1SAl Viro {
1791caa85634SAl Viro 	struct path path;
1792ce57dfc1SAl Viro 	struct inode *inode;
1793254cf582SAl Viro 	unsigned seq;
1794ce57dfc1SAl Viro 	int err;
1795ce57dfc1SAl Viro 	/*
1796ce57dfc1SAl Viro 	 * "." and ".." are special - ".." especially so because it has
1797ce57dfc1SAl Viro 	 * to be able to know about the current root directory and
1798ce57dfc1SAl Viro 	 * parent relationships.
1799ce57dfc1SAl Viro 	 */
18004693a547SAl Viro 	if (unlikely(nd->last_type != LAST_NORM)) {
18014693a547SAl Viro 		err = handle_dots(nd, nd->last_type);
18021c4ff1a8SAl Viro 		if (!(flags & WALK_MORE) && nd->depth)
18034693a547SAl Viro 			put_link(nd);
18044693a547SAl Viro 		return err;
18054693a547SAl Viro 	}
1806254cf582SAl Viro 	err = lookup_fast(nd, &path, &inode, &seq);
1807e9742b53SAl Viro 	if (unlikely(err <= 0)) {
1808697f514dSMiklos Szeredi 		if (err < 0)
1809f0a9ba70SAl Viro 			return err;
1810e3c13928SAl Viro 		path.dentry = lookup_slow(&nd->last, nd->path.dentry,
1811e3c13928SAl Viro 					  nd->flags);
1812e3c13928SAl Viro 		if (IS_ERR(path.dentry))
1813e3c13928SAl Viro 			return PTR_ERR(path.dentry);
18147500c38aSAl Viro 
1815e3c13928SAl Viro 		path.mnt = nd->path.mnt;
1816e3c13928SAl Viro 		err = follow_managed(&path, nd);
1817e3c13928SAl Viro 		if (unlikely(err < 0))
1818f0a9ba70SAl Viro 			return err;
1819697f514dSMiklos Szeredi 
18207500c38aSAl Viro 		if (unlikely(d_is_negative(path.dentry))) {
18217500c38aSAl Viro 			path_to_nameidata(&path, nd);
18227500c38aSAl Viro 			return -ENOENT;
18237500c38aSAl Viro 		}
18247500c38aSAl Viro 
1825254cf582SAl Viro 		seq = 0;	/* we are already out of RCU mode */
1826d4565649SAl Viro 		inode = d_backing_inode(path.dentry);
1827766c4cbfSAl Viro 	}
1828697f514dSMiklos Szeredi 
18298f64fb1cSAl Viro 	return step_into(nd, &path, flags, inode, seq);
1830ce57dfc1SAl Viro }
1831ce57dfc1SAl Viro 
18321da177e4SLinus Torvalds /*
1833bfcfaa77SLinus Torvalds  * We can do the critical dentry name comparison and hashing
1834bfcfaa77SLinus Torvalds  * operations one word at a time, but we are limited to:
1835bfcfaa77SLinus Torvalds  *
1836bfcfaa77SLinus Torvalds  * - Architectures with fast unaligned word accesses. We could
1837bfcfaa77SLinus Torvalds  *   do a "get_unaligned()" if this helps and is sufficiently
1838bfcfaa77SLinus Torvalds  *   fast.
1839bfcfaa77SLinus Torvalds  *
1840bfcfaa77SLinus Torvalds  * - non-CONFIG_DEBUG_PAGEALLOC configurations (so that we
1841bfcfaa77SLinus Torvalds  *   do not trap on the (extremely unlikely) case of a page
1842bfcfaa77SLinus Torvalds  *   crossing operation.
1843bfcfaa77SLinus Torvalds  *
1844bfcfaa77SLinus Torvalds  * - Furthermore, we need an efficient 64-bit compile for the
1845bfcfaa77SLinus Torvalds  *   64-bit case in order to generate the "number of bytes in
1846bfcfaa77SLinus Torvalds  *   the final mask". Again, that could be replaced with a
1847bfcfaa77SLinus Torvalds  *   efficient population count instruction or similar.
1848bfcfaa77SLinus Torvalds  */
1849bfcfaa77SLinus Torvalds #ifdef CONFIG_DCACHE_WORD_ACCESS
1850bfcfaa77SLinus Torvalds 
1851f68e556eSLinus Torvalds #include <asm/word-at-a-time.h>
1852bfcfaa77SLinus Torvalds 
1853468a9428SGeorge Spelvin #ifdef HASH_MIX
1854bfcfaa77SLinus Torvalds 
1855468a9428SGeorge Spelvin /* Architecture provides HASH_MIX and fold_hash() in <asm/hash.h> */
1856468a9428SGeorge Spelvin 
1857468a9428SGeorge Spelvin #elif defined(CONFIG_64BIT)
18582a18da7aSGeorge Spelvin /*
18592a18da7aSGeorge Spelvin  * Register pressure in the mixing function is an issue, particularly
18602a18da7aSGeorge Spelvin  * on 32-bit x86, but almost any function requires one state value and
18612a18da7aSGeorge Spelvin  * one temporary.  Instead, use a function designed for two state values
18622a18da7aSGeorge Spelvin  * and no temporaries.
18632a18da7aSGeorge Spelvin  *
18642a18da7aSGeorge Spelvin  * This function cannot create a collision in only two iterations, so
18652a18da7aSGeorge Spelvin  * we have two iterations to achieve avalanche.  In those two iterations,
18662a18da7aSGeorge Spelvin  * we have six layers of mixing, which is enough to spread one bit's
18672a18da7aSGeorge Spelvin  * influence out to 2^6 = 64 state bits.
18682a18da7aSGeorge Spelvin  *
18692a18da7aSGeorge Spelvin  * Rotate constants are scored by considering either 64 one-bit input
18702a18da7aSGeorge Spelvin  * deltas or 64*63/2 = 2016 two-bit input deltas, and finding the
18712a18da7aSGeorge Spelvin  * probability of that delta causing a change to each of the 128 output
18722a18da7aSGeorge Spelvin  * bits, using a sample of random initial states.
18732a18da7aSGeorge Spelvin  *
18742a18da7aSGeorge Spelvin  * The Shannon entropy of the computed probabilities is then summed
18752a18da7aSGeorge Spelvin  * to produce a score.  Ideally, any input change has a 50% chance of
18762a18da7aSGeorge Spelvin  * toggling any given output bit.
18772a18da7aSGeorge Spelvin  *
18782a18da7aSGeorge Spelvin  * Mixing scores (in bits) for (12,45):
18792a18da7aSGeorge Spelvin  * Input delta: 1-bit      2-bit
18802a18da7aSGeorge Spelvin  * 1 round:     713.3    42542.6
18812a18da7aSGeorge Spelvin  * 2 rounds:   2753.7   140389.8
18822a18da7aSGeorge Spelvin  * 3 rounds:   5954.1   233458.2
18832a18da7aSGeorge Spelvin  * 4 rounds:   7862.6   256672.2
18842a18da7aSGeorge Spelvin  * Perfect:    8192     258048
18852a18da7aSGeorge Spelvin  *            (64*128) (64*63/2 * 128)
18862a18da7aSGeorge Spelvin  */
18872a18da7aSGeorge Spelvin #define HASH_MIX(x, y, a)	\
18882a18da7aSGeorge Spelvin 	(	x ^= (a),	\
18892a18da7aSGeorge Spelvin 	y ^= x,	x = rol64(x,12),\
18902a18da7aSGeorge Spelvin 	x += y,	y = rol64(y,45),\
18912a18da7aSGeorge Spelvin 	y *= 9			)
1892bfcfaa77SLinus Torvalds 
18930fed3ac8SGeorge Spelvin /*
18942a18da7aSGeorge Spelvin  * Fold two longs into one 32-bit hash value.  This must be fast, but
18952a18da7aSGeorge Spelvin  * latency isn't quite as critical, as there is a fair bit of additional
18962a18da7aSGeorge Spelvin  * work done before the hash value is used.
18970fed3ac8SGeorge Spelvin  */
18982a18da7aSGeorge Spelvin static inline unsigned int fold_hash(unsigned long x, unsigned long y)
18990fed3ac8SGeorge Spelvin {
19002a18da7aSGeorge Spelvin 	y ^= x * GOLDEN_RATIO_64;
19012a18da7aSGeorge Spelvin 	y *= GOLDEN_RATIO_64;
19022a18da7aSGeorge Spelvin 	return y >> 32;
19030fed3ac8SGeorge Spelvin }
19040fed3ac8SGeorge Spelvin 
1905bfcfaa77SLinus Torvalds #else	/* 32-bit case */
1906bfcfaa77SLinus Torvalds 
19072a18da7aSGeorge Spelvin /*
19082a18da7aSGeorge Spelvin  * Mixing scores (in bits) for (7,20):
19092a18da7aSGeorge Spelvin  * Input delta: 1-bit      2-bit
19102a18da7aSGeorge Spelvin  * 1 round:     330.3     9201.6
19112a18da7aSGeorge Spelvin  * 2 rounds:   1246.4    25475.4
19122a18da7aSGeorge Spelvin  * 3 rounds:   1907.1    31295.1
19132a18da7aSGeorge Spelvin  * 4 rounds:   2042.3    31718.6
19142a18da7aSGeorge Spelvin  * Perfect:    2048      31744
19152a18da7aSGeorge Spelvin  *            (32*64)   (32*31/2 * 64)
19162a18da7aSGeorge Spelvin  */
19172a18da7aSGeorge Spelvin #define HASH_MIX(x, y, a)	\
19182a18da7aSGeorge Spelvin 	(	x ^= (a),	\
19192a18da7aSGeorge Spelvin 	y ^= x,	x = rol32(x, 7),\
19202a18da7aSGeorge Spelvin 	x += y,	y = rol32(y,20),\
19212a18da7aSGeorge Spelvin 	y *= 9			)
1922bfcfaa77SLinus Torvalds 
19232a18da7aSGeorge Spelvin static inline unsigned int fold_hash(unsigned long x, unsigned long y)
19240fed3ac8SGeorge Spelvin {
19252a18da7aSGeorge Spelvin 	/* Use arch-optimized multiply if one exists */
19262a18da7aSGeorge Spelvin 	return __hash_32(y ^ __hash_32(x));
19270fed3ac8SGeorge Spelvin }
19280fed3ac8SGeorge Spelvin 
1929bfcfaa77SLinus Torvalds #endif
1930bfcfaa77SLinus Torvalds 
19312a18da7aSGeorge Spelvin /*
19322a18da7aSGeorge Spelvin  * Return the hash of a string of known length.  This is carfully
19332a18da7aSGeorge Spelvin  * designed to match hash_name(), which is the more critical function.
19342a18da7aSGeorge Spelvin  * In particular, we must end by hashing a final word containing 0..7
19352a18da7aSGeorge Spelvin  * payload bytes, to match the way that hash_name() iterates until it
19362a18da7aSGeorge Spelvin  * finds the delimiter after the name.
19372a18da7aSGeorge Spelvin  */
19388387ff25SLinus Torvalds unsigned int full_name_hash(const void *salt, const char *name, unsigned int len)
1939bfcfaa77SLinus Torvalds {
19408387ff25SLinus Torvalds 	unsigned long a, x = 0, y = (unsigned long)salt;
1941bfcfaa77SLinus Torvalds 
1942bfcfaa77SLinus Torvalds 	for (;;) {
1943fcfd2fbfSGeorge Spelvin 		if (!len)
1944fcfd2fbfSGeorge Spelvin 			goto done;
1945e419b4ccSLinus Torvalds 		a = load_unaligned_zeropad(name);
1946bfcfaa77SLinus Torvalds 		if (len < sizeof(unsigned long))
1947bfcfaa77SLinus Torvalds 			break;
19482a18da7aSGeorge Spelvin 		HASH_MIX(x, y, a);
1949bfcfaa77SLinus Torvalds 		name += sizeof(unsigned long);
1950bfcfaa77SLinus Torvalds 		len -= sizeof(unsigned long);
1951bfcfaa77SLinus Torvalds 	}
19522a18da7aSGeorge Spelvin 	x ^= a & bytemask_from_count(len);
1953bfcfaa77SLinus Torvalds done:
19542a18da7aSGeorge Spelvin 	return fold_hash(x, y);
1955bfcfaa77SLinus Torvalds }
1956bfcfaa77SLinus Torvalds EXPORT_SYMBOL(full_name_hash);
1957bfcfaa77SLinus Torvalds 
1958fcfd2fbfSGeorge Spelvin /* Return the "hash_len" (hash and length) of a null-terminated string */
19598387ff25SLinus Torvalds u64 hashlen_string(const void *salt, const char *name)
1960fcfd2fbfSGeorge Spelvin {
19618387ff25SLinus Torvalds 	unsigned long a = 0, x = 0, y = (unsigned long)salt;
19628387ff25SLinus Torvalds 	unsigned long adata, mask, len;
1963fcfd2fbfSGeorge Spelvin 	const struct word_at_a_time constants = WORD_AT_A_TIME_CONSTANTS;
1964fcfd2fbfSGeorge Spelvin 
19658387ff25SLinus Torvalds 	len = 0;
19668387ff25SLinus Torvalds 	goto inside;
19678387ff25SLinus Torvalds 
1968fcfd2fbfSGeorge Spelvin 	do {
19692a18da7aSGeorge Spelvin 		HASH_MIX(x, y, a);
1970fcfd2fbfSGeorge Spelvin 		len += sizeof(unsigned long);
19718387ff25SLinus Torvalds inside:
1972fcfd2fbfSGeorge Spelvin 		a = load_unaligned_zeropad(name+len);
1973fcfd2fbfSGeorge Spelvin 	} while (!has_zero(a, &adata, &constants));
1974fcfd2fbfSGeorge Spelvin 
1975fcfd2fbfSGeorge Spelvin 	adata = prep_zero_mask(a, adata, &constants);
1976fcfd2fbfSGeorge Spelvin 	mask = create_zero_mask(adata);
19772a18da7aSGeorge Spelvin 	x ^= a & zero_bytemask(mask);
1978fcfd2fbfSGeorge Spelvin 
19792a18da7aSGeorge Spelvin 	return hashlen_create(fold_hash(x, y), len + find_zero(mask));
1980fcfd2fbfSGeorge Spelvin }
1981fcfd2fbfSGeorge Spelvin EXPORT_SYMBOL(hashlen_string);
1982fcfd2fbfSGeorge Spelvin 
1983bfcfaa77SLinus Torvalds /*
1984bfcfaa77SLinus Torvalds  * Calculate the length and hash of the path component, and
1985d6bb3e90SLinus Torvalds  * return the "hash_len" as the result.
1986bfcfaa77SLinus Torvalds  */
19878387ff25SLinus Torvalds static inline u64 hash_name(const void *salt, const char *name)
1988bfcfaa77SLinus Torvalds {
19898387ff25SLinus Torvalds 	unsigned long a = 0, b, x = 0, y = (unsigned long)salt;
19908387ff25SLinus Torvalds 	unsigned long adata, bdata, mask, len;
199136126f8fSLinus Torvalds 	const struct word_at_a_time constants = WORD_AT_A_TIME_CONSTANTS;
1992bfcfaa77SLinus Torvalds 
19938387ff25SLinus Torvalds 	len = 0;
19948387ff25SLinus Torvalds 	goto inside;
19958387ff25SLinus Torvalds 
1996bfcfaa77SLinus Torvalds 	do {
19972a18da7aSGeorge Spelvin 		HASH_MIX(x, y, a);
1998bfcfaa77SLinus Torvalds 		len += sizeof(unsigned long);
19998387ff25SLinus Torvalds inside:
2000e419b4ccSLinus Torvalds 		a = load_unaligned_zeropad(name+len);
200136126f8fSLinus Torvalds 		b = a ^ REPEAT_BYTE('/');
200236126f8fSLinus Torvalds 	} while (!(has_zero(a, &adata, &constants) | has_zero(b, &bdata, &constants)));
2003bfcfaa77SLinus Torvalds 
200436126f8fSLinus Torvalds 	adata = prep_zero_mask(a, adata, &constants);
200536126f8fSLinus Torvalds 	bdata = prep_zero_mask(b, bdata, &constants);
200636126f8fSLinus Torvalds 	mask = create_zero_mask(adata | bdata);
20072a18da7aSGeorge Spelvin 	x ^= a & zero_bytemask(mask);
200836126f8fSLinus Torvalds 
20092a18da7aSGeorge Spelvin 	return hashlen_create(fold_hash(x, y), len + find_zero(mask));
2010bfcfaa77SLinus Torvalds }
2011bfcfaa77SLinus Torvalds 
20122a18da7aSGeorge Spelvin #else	/* !CONFIG_DCACHE_WORD_ACCESS: Slow, byte-at-a-time version */
2013bfcfaa77SLinus Torvalds 
2014fcfd2fbfSGeorge Spelvin /* Return the hash of a string of known length */
20158387ff25SLinus Torvalds unsigned int full_name_hash(const void *salt, const char *name, unsigned int len)
20160145acc2SLinus Torvalds {
20178387ff25SLinus Torvalds 	unsigned long hash = init_name_hash(salt);
20180145acc2SLinus Torvalds 	while (len--)
2019fcfd2fbfSGeorge Spelvin 		hash = partial_name_hash((unsigned char)*name++, hash);
20200145acc2SLinus Torvalds 	return end_name_hash(hash);
20210145acc2SLinus Torvalds }
2022ae942ae7SLinus Torvalds EXPORT_SYMBOL(full_name_hash);
20230145acc2SLinus Torvalds 
2024fcfd2fbfSGeorge Spelvin /* Return the "hash_len" (hash and length) of a null-terminated string */
20258387ff25SLinus Torvalds u64 hashlen_string(const void *salt, const char *name)
2026fcfd2fbfSGeorge Spelvin {
20278387ff25SLinus Torvalds 	unsigned long hash = init_name_hash(salt);
2028fcfd2fbfSGeorge Spelvin 	unsigned long len = 0, c;
2029fcfd2fbfSGeorge Spelvin 
2030fcfd2fbfSGeorge Spelvin 	c = (unsigned char)*name;
2031e0ab7af9SGeorge Spelvin 	while (c) {
2032fcfd2fbfSGeorge Spelvin 		len++;
2033fcfd2fbfSGeorge Spelvin 		hash = partial_name_hash(c, hash);
2034fcfd2fbfSGeorge Spelvin 		c = (unsigned char)name[len];
2035e0ab7af9SGeorge Spelvin 	}
2036fcfd2fbfSGeorge Spelvin 	return hashlen_create(end_name_hash(hash), len);
2037fcfd2fbfSGeorge Spelvin }
2038f2a031b6SGeorge Spelvin EXPORT_SYMBOL(hashlen_string);
2039fcfd2fbfSGeorge Spelvin 
20403ddcd056SLinus Torvalds /*
2041200e9ef7SLinus Torvalds  * We know there's a real path component here of at least
2042200e9ef7SLinus Torvalds  * one character.
2043200e9ef7SLinus Torvalds  */
20448387ff25SLinus Torvalds static inline u64 hash_name(const void *salt, const char *name)
2045200e9ef7SLinus Torvalds {
20468387ff25SLinus Torvalds 	unsigned long hash = init_name_hash(salt);
2047200e9ef7SLinus Torvalds 	unsigned long len = 0, c;
2048200e9ef7SLinus Torvalds 
2049200e9ef7SLinus Torvalds 	c = (unsigned char)*name;
2050200e9ef7SLinus Torvalds 	do {
2051200e9ef7SLinus Torvalds 		len++;
2052200e9ef7SLinus Torvalds 		hash = partial_name_hash(c, hash);
2053200e9ef7SLinus Torvalds 		c = (unsigned char)name[len];
2054200e9ef7SLinus Torvalds 	} while (c && c != '/');
2055d6bb3e90SLinus Torvalds 	return hashlen_create(end_name_hash(hash), len);
2056200e9ef7SLinus Torvalds }
2057200e9ef7SLinus Torvalds 
2058bfcfaa77SLinus Torvalds #endif
2059bfcfaa77SLinus Torvalds 
2060200e9ef7SLinus Torvalds /*
20611da177e4SLinus Torvalds  * Name resolution.
2062ea3834d9SPrasanna Meda  * This is the basic name resolution function, turning a pathname into
2063ea3834d9SPrasanna Meda  * the final dentry. We expect 'base' to be positive and a directory.
20641da177e4SLinus Torvalds  *
2065ea3834d9SPrasanna Meda  * Returns 0 and nd will have valid dentry and mnt on success.
2066ea3834d9SPrasanna Meda  * Returns error and drops reference to input namei data on failure.
20671da177e4SLinus Torvalds  */
20686de88d72SAl Viro static int link_path_walk(const char *name, struct nameidata *nd)
20691da177e4SLinus Torvalds {
20701da177e4SLinus Torvalds 	int err;
20711da177e4SLinus Torvalds 
20729b5858e9SAl Viro 	if (IS_ERR(name))
20739b5858e9SAl Viro 		return PTR_ERR(name);
20741da177e4SLinus Torvalds 	while (*name=='/')
20751da177e4SLinus Torvalds 		name++;
20761da177e4SLinus Torvalds 	if (!*name)
20779e18f10aSAl Viro 		return 0;
20781da177e4SLinus Torvalds 
20791da177e4SLinus Torvalds 	/* At this point we know we have a real path component. */
20801da177e4SLinus Torvalds 	for(;;) {
2081d6bb3e90SLinus Torvalds 		u64 hash_len;
2082fe479a58SAl Viro 		int type;
20831da177e4SLinus Torvalds 
208452094c8aSAl Viro 		err = may_lookup(nd);
20851da177e4SLinus Torvalds 		if (err)
20863595e234SAl Viro 			return err;
20871da177e4SLinus Torvalds 
20888387ff25SLinus Torvalds 		hash_len = hash_name(nd->path.dentry, name);
20891da177e4SLinus Torvalds 
2090fe479a58SAl Viro 		type = LAST_NORM;
2091d6bb3e90SLinus Torvalds 		if (name[0] == '.') switch (hashlen_len(hash_len)) {
2092fe479a58SAl Viro 			case 2:
2093200e9ef7SLinus Torvalds 				if (name[1] == '.') {
2094fe479a58SAl Viro 					type = LAST_DOTDOT;
209516c2cd71SAl Viro 					nd->flags |= LOOKUP_JUMPED;
209616c2cd71SAl Viro 				}
2097fe479a58SAl Viro 				break;
2098fe479a58SAl Viro 			case 1:
2099fe479a58SAl Viro 				type = LAST_DOT;
2100fe479a58SAl Viro 		}
21015a202bcdSAl Viro 		if (likely(type == LAST_NORM)) {
21025a202bcdSAl Viro 			struct dentry *parent = nd->path.dentry;
210316c2cd71SAl Viro 			nd->flags &= ~LOOKUP_JUMPED;
21045a202bcdSAl Viro 			if (unlikely(parent->d_flags & DCACHE_OP_HASH)) {
2105a060dc50SJames Hogan 				struct qstr this = { { .hash_len = hash_len }, .name = name };
2106da53be12SLinus Torvalds 				err = parent->d_op->d_hash(parent, &this);
21075a202bcdSAl Viro 				if (err < 0)
21083595e234SAl Viro 					return err;
2109d6bb3e90SLinus Torvalds 				hash_len = this.hash_len;
2110d6bb3e90SLinus Torvalds 				name = this.name;
21115a202bcdSAl Viro 			}
21125a202bcdSAl Viro 		}
2113fe479a58SAl Viro 
2114d6bb3e90SLinus Torvalds 		nd->last.hash_len = hash_len;
2115d6bb3e90SLinus Torvalds 		nd->last.name = name;
21165f4a6a69SAl Viro 		nd->last_type = type;
21175f4a6a69SAl Viro 
2118d6bb3e90SLinus Torvalds 		name += hashlen_len(hash_len);
2119d6bb3e90SLinus Torvalds 		if (!*name)
2120bdf6cbf1SAl Viro 			goto OK;
2121200e9ef7SLinus Torvalds 		/*
2122200e9ef7SLinus Torvalds 		 * If it wasn't NUL, we know it was '/'. Skip that
2123200e9ef7SLinus Torvalds 		 * slash, and continue until no more slashes.
2124200e9ef7SLinus Torvalds 		 */
2125200e9ef7SLinus Torvalds 		do {
2126d6bb3e90SLinus Torvalds 			name++;
2127d6bb3e90SLinus Torvalds 		} while (unlikely(*name == '/'));
21288620c238SAl Viro 		if (unlikely(!*name)) {
21298620c238SAl Viro OK:
2130368ee9baSAl Viro 			/* pathname body, done */
21318620c238SAl Viro 			if (!nd->depth)
21328620c238SAl Viro 				return 0;
21338620c238SAl Viro 			name = nd->stack[nd->depth - 1].name;
2134368ee9baSAl Viro 			/* trailing symlink, done */
21358620c238SAl Viro 			if (!name)
21368620c238SAl Viro 				return 0;
21378620c238SAl Viro 			/* last component of nested symlink */
21388f64fb1cSAl Viro 			err = walk_component(nd, WALK_FOLLOW);
21391c4ff1a8SAl Viro 		} else {
21401c4ff1a8SAl Viro 			/* not the last component */
21418f64fb1cSAl Viro 			err = walk_component(nd, WALK_FOLLOW | WALK_MORE);
21428620c238SAl Viro 		}
2143ce57dfc1SAl Viro 		if (err < 0)
21443595e234SAl Viro 			return err;
2145fe479a58SAl Viro 
2146ce57dfc1SAl Viro 		if (err) {
2147626de996SAl Viro 			const char *s = get_link(nd);
21485a460275SAl Viro 
2149a1c83681SViresh Kumar 			if (IS_ERR(s))
21503595e234SAl Viro 				return PTR_ERR(s);
2151172a39a0SAl Viro 			err = 0;
215212b09578SAl Viro 			if (unlikely(!s)) {
215312b09578SAl Viro 				/* jumped */
2154b9ff4429SAl Viro 				put_link(nd);
215512b09578SAl Viro 			} else {
2156071bf501SAl Viro 				nd->stack[nd->depth - 1].name = name;
215732cd7468SAl Viro 				name = s;
21589e18f10aSAl Viro 				continue;
215948c8b0c5SAl Viro 			}
216031e6b01fSNick Piggin 		}
216197242f99SAl Viro 		if (unlikely(!d_can_lookup(nd->path.dentry))) {
216297242f99SAl Viro 			if (nd->flags & LOOKUP_RCU) {
21634675ac39SAl Viro 				if (unlazy_walk(nd))
216497242f99SAl Viro 					return -ECHILD;
216597242f99SAl Viro 			}
21663595e234SAl Viro 			return -ENOTDIR;
21675f4a6a69SAl Viro 		}
2168ce57dfc1SAl Viro 	}
216997242f99SAl Viro }
21701da177e4SLinus Torvalds 
2171edc2b1daSAl Viro /* must be paired with terminate_walk() */
2172c8a53ee5SAl Viro static const char *path_init(struct nameidata *nd, unsigned flags)
217331e6b01fSNick Piggin {
2174c8a53ee5SAl Viro 	const char *s = nd->name->name;
217531e6b01fSNick Piggin 
2176c0eb027eSLinus Torvalds 	if (!*s)
2177c0eb027eSLinus Torvalds 		flags &= ~LOOKUP_RCU;
2178edc2b1daSAl Viro 	if (flags & LOOKUP_RCU)
2179edc2b1daSAl Viro 		rcu_read_lock();
2180c0eb027eSLinus Torvalds 
218131e6b01fSNick Piggin 	nd->last_type = LAST_ROOT; /* if there are only slashes... */
2182980f3ea2SAl Viro 	nd->flags = flags | LOOKUP_JUMPED | LOOKUP_PARENT;
218331e6b01fSNick Piggin 	nd->depth = 0;
21845b6ca027SAl Viro 	if (flags & LOOKUP_ROOT) {
2185b18825a7SDavid Howells 		struct dentry *root = nd->root.dentry;
2186b18825a7SDavid Howells 		struct inode *inode = root->d_inode;
218793893862SAl Viro 		if (*s && unlikely(!d_can_lookup(root)))
2188368ee9baSAl Viro 			return ERR_PTR(-ENOTDIR);
21895b6ca027SAl Viro 		nd->path = nd->root;
21905b6ca027SAl Viro 		nd->inode = inode;
21915b6ca027SAl Viro 		if (flags & LOOKUP_RCU) {
21925b6ca027SAl Viro 			nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
21938f47a016SAl Viro 			nd->root_seq = nd->seq;
219448a066e7SAl Viro 			nd->m_seq = read_seqbegin(&mount_lock);
21955b6ca027SAl Viro 		} else {
21965b6ca027SAl Viro 			path_get(&nd->path);
21975b6ca027SAl Viro 		}
2198368ee9baSAl Viro 		return s;
21995b6ca027SAl Viro 	}
22005b6ca027SAl Viro 
220131e6b01fSNick Piggin 	nd->root.mnt = NULL;
2202248fb5b9SAl Viro 	nd->path.mnt = NULL;
2203248fb5b9SAl Viro 	nd->path.dentry = NULL;
220431e6b01fSNick Piggin 
220548a066e7SAl Viro 	nd->m_seq = read_seqbegin(&mount_lock);
2206fd2f7cb5SAl Viro 	if (*s == '/') {
2207e41f7d4eSAl Viro 		set_root(nd);
2208248fb5b9SAl Viro 		if (likely(!nd_jump_root(nd)))
2209ef55d917SAl Viro 			return s;
2210ef55d917SAl Viro 		return ERR_PTR(-ECHILD);
2211c8a53ee5SAl Viro 	} else if (nd->dfd == AT_FDCWD) {
2212e41f7d4eSAl Viro 		if (flags & LOOKUP_RCU) {
221331e6b01fSNick Piggin 			struct fs_struct *fs = current->fs;
2214c28cc364SNick Piggin 			unsigned seq;
221531e6b01fSNick Piggin 
2216c28cc364SNick Piggin 			do {
2217c28cc364SNick Piggin 				seq = read_seqcount_begin(&fs->seq);
221831e6b01fSNick Piggin 				nd->path = fs->pwd;
2219ef55d917SAl Viro 				nd->inode = nd->path.dentry->d_inode;
2220c28cc364SNick Piggin 				nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
2221c28cc364SNick Piggin 			} while (read_seqcount_retry(&fs->seq, seq));
2222e41f7d4eSAl Viro 		} else {
2223e41f7d4eSAl Viro 			get_fs_pwd(current->fs, &nd->path);
2224ef55d917SAl Viro 			nd->inode = nd->path.dentry->d_inode;
2225e41f7d4eSAl Viro 		}
2226ef55d917SAl Viro 		return s;
222731e6b01fSNick Piggin 	} else {
2228582aa64aSJeff Layton 		/* Caller must check execute permissions on the starting path component */
2229c8a53ee5SAl Viro 		struct fd f = fdget_raw(nd->dfd);
223031e6b01fSNick Piggin 		struct dentry *dentry;
223131e6b01fSNick Piggin 
22322903ff01SAl Viro 		if (!f.file)
2233368ee9baSAl Viro 			return ERR_PTR(-EBADF);
223431e6b01fSNick Piggin 
22352903ff01SAl Viro 		dentry = f.file->f_path.dentry;
223631e6b01fSNick Piggin 
2237edc2b1daSAl Viro 		if (*s && unlikely(!d_can_lookup(dentry))) {
22382903ff01SAl Viro 			fdput(f);
2239368ee9baSAl Viro 			return ERR_PTR(-ENOTDIR);
2240f52e0c11SAl Viro 		}
22412903ff01SAl Viro 
22422903ff01SAl Viro 		nd->path = f.file->f_path;
2243e41f7d4eSAl Viro 		if (flags & LOOKUP_RCU) {
224434a26b99SAl Viro 			nd->inode = nd->path.dentry->d_inode;
224534a26b99SAl Viro 			nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq);
22465590ff0dSUlrich Drepper 		} else {
22472903ff01SAl Viro 			path_get(&nd->path);
224834a26b99SAl Viro 			nd->inode = nd->path.dentry->d_inode;
22491da177e4SLinus Torvalds 		}
225034a26b99SAl Viro 		fdput(f);
2251368ee9baSAl Viro 		return s;
2252e41f7d4eSAl Viro 	}
22539b4a9b14SAl Viro }
22549b4a9b14SAl Viro 
22553bdba28bSAl Viro static const char *trailing_symlink(struct nameidata *nd)
225695fa25d9SAl Viro {
225795fa25d9SAl Viro 	const char *s;
2258fec2fa24SAl Viro 	int error = may_follow_link(nd);
2259deb106c6SAl Viro 	if (unlikely(error))
22603bdba28bSAl Viro 		return ERR_PTR(error);
226195fa25d9SAl Viro 	nd->flags |= LOOKUP_PARENT;
2262fab51e8aSAl Viro 	nd->stack[0].name = NULL;
22633b2e7f75SAl Viro 	s = get_link(nd);
2264deb106c6SAl Viro 	return s ? s : "";
226595fa25d9SAl Viro }
226695fa25d9SAl Viro 
2267caa85634SAl Viro static inline int lookup_last(struct nameidata *nd)
2268bd92d7feSAl Viro {
2269bd92d7feSAl Viro 	if (nd->last_type == LAST_NORM && nd->last.name[nd->last.len])
2270bd92d7feSAl Viro 		nd->flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
2271bd92d7feSAl Viro 
2272bd92d7feSAl Viro 	nd->flags &= ~LOOKUP_PARENT;
22731c4ff1a8SAl Viro 	return walk_component(nd, 0);
2274bd92d7feSAl Viro }
2275bd92d7feSAl Viro 
22764f757f3cSAl Viro static int handle_lookup_down(struct nameidata *nd)
22774f757f3cSAl Viro {
22784f757f3cSAl Viro 	struct path path = nd->path;
22794f757f3cSAl Viro 	struct inode *inode = nd->inode;
22804f757f3cSAl Viro 	unsigned seq = nd->seq;
22814f757f3cSAl Viro 	int err;
22824f757f3cSAl Viro 
22834f757f3cSAl Viro 	if (nd->flags & LOOKUP_RCU) {
22844f757f3cSAl Viro 		/*
22854f757f3cSAl Viro 		 * don't bother with unlazy_walk on failure - we are
22864f757f3cSAl Viro 		 * at the very beginning of walk, so we lose nothing
22874f757f3cSAl Viro 		 * if we simply redo everything in non-RCU mode
22884f757f3cSAl Viro 		 */
22894f757f3cSAl Viro 		if (unlikely(!__follow_mount_rcu(nd, &path, &inode, &seq)))
22904f757f3cSAl Viro 			return -ECHILD;
22914f757f3cSAl Viro 	} else {
22924f757f3cSAl Viro 		dget(path.dentry);
22934f757f3cSAl Viro 		err = follow_managed(&path, nd);
22944f757f3cSAl Viro 		if (unlikely(err < 0))
22954f757f3cSAl Viro 			return err;
22964f757f3cSAl Viro 		inode = d_backing_inode(path.dentry);
22974f757f3cSAl Viro 		seq = 0;
22984f757f3cSAl Viro 	}
22994f757f3cSAl Viro 	path_to_nameidata(&path, nd);
23004f757f3cSAl Viro 	nd->inode = inode;
23014f757f3cSAl Viro 	nd->seq = seq;
23024f757f3cSAl Viro 	return 0;
23034f757f3cSAl Viro }
23044f757f3cSAl Viro 
23059b4a9b14SAl Viro /* Returns 0 and nd will be valid on success; Retuns error, otherwise. */
2306c8a53ee5SAl Viro static int path_lookupat(struct nameidata *nd, unsigned flags, struct path *path)
23079b4a9b14SAl Viro {
2308c8a53ee5SAl Viro 	const char *s = path_init(nd, flags);
2309bd92d7feSAl Viro 	int err;
231031e6b01fSNick Piggin 
23119b5858e9SAl Viro 	if (unlikely(flags & LOOKUP_DOWN) && !IS_ERR(s)) {
23124f757f3cSAl Viro 		err = handle_lookup_down(nd);
23135f336e72SAl Viro 		if (unlikely(err < 0))
23145f336e72SAl Viro 			s = ERR_PTR(err);
23154f757f3cSAl Viro 	}
23164f757f3cSAl Viro 
23173bdba28bSAl Viro 	while (!(err = link_path_walk(s, nd))
23183bdba28bSAl Viro 		&& ((err = lookup_last(nd)) > 0)) {
23193bdba28bSAl Viro 		s = trailing_symlink(nd);
2320bd92d7feSAl Viro 	}
23219f1fafeeSAl Viro 	if (!err)
23229f1fafeeSAl Viro 		err = complete_walk(nd);
2323bd92d7feSAl Viro 
2324deb106c6SAl Viro 	if (!err && nd->flags & LOOKUP_DIRECTORY)
2325deb106c6SAl Viro 		if (!d_can_lookup(nd->path.dentry))
2326bd23a539SAl Viro 			err = -ENOTDIR;
2327625b6d10SAl Viro 	if (!err) {
2328625b6d10SAl Viro 		*path = nd->path;
2329625b6d10SAl Viro 		nd->path.mnt = NULL;
2330625b6d10SAl Viro 		nd->path.dentry = NULL;
2331625b6d10SAl Viro 	}
2332deb106c6SAl Viro 	terminate_walk(nd);
2333bd92d7feSAl Viro 	return err;
233431e6b01fSNick Piggin }
233531e6b01fSNick Piggin 
2336625b6d10SAl Viro static int filename_lookup(int dfd, struct filename *name, unsigned flags,
23379ad1aaa6SAl Viro 			   struct path *path, struct path *root)
2338873f1eedSJeff Layton {
2339894bc8c4SAl Viro 	int retval;
23409883d185SAl Viro 	struct nameidata nd;
2341abc9f5beSAl Viro 	if (IS_ERR(name))
2342abc9f5beSAl Viro 		return PTR_ERR(name);
23439ad1aaa6SAl Viro 	if (unlikely(root)) {
23449ad1aaa6SAl Viro 		nd.root = *root;
23459ad1aaa6SAl Viro 		flags |= LOOKUP_ROOT;
23469ad1aaa6SAl Viro 	}
23479883d185SAl Viro 	set_nameidata(&nd, dfd, name);
2348c8a53ee5SAl Viro 	retval = path_lookupat(&nd, flags | LOOKUP_RCU, path);
2349873f1eedSJeff Layton 	if (unlikely(retval == -ECHILD))
2350c8a53ee5SAl Viro 		retval = path_lookupat(&nd, flags, path);
2351873f1eedSJeff Layton 	if (unlikely(retval == -ESTALE))
2352c8a53ee5SAl Viro 		retval = path_lookupat(&nd, flags | LOOKUP_REVAL, path);
2353873f1eedSJeff Layton 
2354873f1eedSJeff Layton 	if (likely(!retval))
2355625b6d10SAl Viro 		audit_inode(name, path->dentry, flags & LOOKUP_PARENT);
23569883d185SAl Viro 	restore_nameidata();
2357e4bd1c1aSAl Viro 	putname(name);
2358873f1eedSJeff Layton 	return retval;
2359873f1eedSJeff Layton }
2360873f1eedSJeff Layton 
23618bcb77faSAl Viro /* Returns 0 and nd will be valid on success; Retuns error, otherwise. */
2362c8a53ee5SAl Viro static int path_parentat(struct nameidata *nd, unsigned flags,
2363391172c4SAl Viro 				struct path *parent)
23648bcb77faSAl Viro {
2365c8a53ee5SAl Viro 	const char *s = path_init(nd, flags);
23669b5858e9SAl Viro 	int err = link_path_walk(s, nd);
23678bcb77faSAl Viro 	if (!err)
23688bcb77faSAl Viro 		err = complete_walk(nd);
2369391172c4SAl Viro 	if (!err) {
2370391172c4SAl Viro 		*parent = nd->path;
2371391172c4SAl Viro 		nd->path.mnt = NULL;
2372391172c4SAl Viro 		nd->path.dentry = NULL;
2373391172c4SAl Viro 	}
2374deb106c6SAl Viro 	terminate_walk(nd);
23758bcb77faSAl Viro 	return err;
23768bcb77faSAl Viro }
23778bcb77faSAl Viro 
23785c31b6ceSAl Viro static struct filename *filename_parentat(int dfd, struct filename *name,
2379391172c4SAl Viro 				unsigned int flags, struct path *parent,
2380391172c4SAl Viro 				struct qstr *last, int *type)
23818bcb77faSAl Viro {
23828bcb77faSAl Viro 	int retval;
23839883d185SAl Viro 	struct nameidata nd;
23848bcb77faSAl Viro 
23855c31b6ceSAl Viro 	if (IS_ERR(name))
23865c31b6ceSAl Viro 		return name;
23879883d185SAl Viro 	set_nameidata(&nd, dfd, name);
2388c8a53ee5SAl Viro 	retval = path_parentat(&nd, flags | LOOKUP_RCU, parent);
23898bcb77faSAl Viro 	if (unlikely(retval == -ECHILD))
2390c8a53ee5SAl Viro 		retval = path_parentat(&nd, flags, parent);
23918bcb77faSAl Viro 	if (unlikely(retval == -ESTALE))
2392c8a53ee5SAl Viro 		retval = path_parentat(&nd, flags | LOOKUP_REVAL, parent);
2393391172c4SAl Viro 	if (likely(!retval)) {
2394391172c4SAl Viro 		*last = nd.last;
2395391172c4SAl Viro 		*type = nd.last_type;
2396391172c4SAl Viro 		audit_inode(name, parent->dentry, LOOKUP_PARENT);
23975c31b6ceSAl Viro 	} else {
23985c31b6ceSAl Viro 		putname(name);
23995c31b6ceSAl Viro 		name = ERR_PTR(retval);
2400391172c4SAl Viro 	}
24019883d185SAl Viro 	restore_nameidata();
24025c31b6ceSAl Viro 	return name;
24038bcb77faSAl Viro }
24048bcb77faSAl Viro 
240579714f72SAl Viro /* does lookup, returns the object with parent locked */
240679714f72SAl Viro struct dentry *kern_path_locked(const char *name, struct path *path)
24075590ff0dSUlrich Drepper {
24085c31b6ceSAl Viro 	struct filename *filename;
24095c31b6ceSAl Viro 	struct dentry *d;
2410391172c4SAl Viro 	struct qstr last;
2411391172c4SAl Viro 	int type;
241251689104SPaul Moore 
24135c31b6ceSAl Viro 	filename = filename_parentat(AT_FDCWD, getname_kernel(name), 0, path,
24145c31b6ceSAl Viro 				    &last, &type);
241551689104SPaul Moore 	if (IS_ERR(filename))
241651689104SPaul Moore 		return ERR_CAST(filename);
24175c31b6ceSAl Viro 	if (unlikely(type != LAST_NORM)) {
2418391172c4SAl Viro 		path_put(path);
24195c31b6ceSAl Viro 		putname(filename);
24205c31b6ceSAl Viro 		return ERR_PTR(-EINVAL);
242179714f72SAl Viro 	}
24225955102cSAl Viro 	inode_lock_nested(path->dentry->d_inode, I_MUTEX_PARENT);
2423391172c4SAl Viro 	d = __lookup_hash(&last, path->dentry, 0);
242479714f72SAl Viro 	if (IS_ERR(d)) {
24255955102cSAl Viro 		inode_unlock(path->dentry->d_inode);
2426391172c4SAl Viro 		path_put(path);
242779714f72SAl Viro 	}
242851689104SPaul Moore 	putname(filename);
242979714f72SAl Viro 	return d;
24305590ff0dSUlrich Drepper }
24315590ff0dSUlrich Drepper 
2432d1811465SAl Viro int kern_path(const char *name, unsigned int flags, struct path *path)
2433d1811465SAl Viro {
2434abc9f5beSAl Viro 	return filename_lookup(AT_FDCWD, getname_kernel(name),
2435abc9f5beSAl Viro 			       flags, path, NULL);
2436d1811465SAl Viro }
24374d359507SAl Viro EXPORT_SYMBOL(kern_path);
2438d1811465SAl Viro 
243916f18200SJosef 'Jeff' Sipek /**
244016f18200SJosef 'Jeff' Sipek  * vfs_path_lookup - lookup a file path relative to a dentry-vfsmount pair
244116f18200SJosef 'Jeff' Sipek  * @dentry:  pointer to dentry of the base directory
244216f18200SJosef 'Jeff' Sipek  * @mnt: pointer to vfs mount of the base directory
244316f18200SJosef 'Jeff' Sipek  * @name: pointer to file name
244416f18200SJosef 'Jeff' Sipek  * @flags: lookup flags
2445e0a01249SAl Viro  * @path: pointer to struct path to fill
244616f18200SJosef 'Jeff' Sipek  */
244716f18200SJosef 'Jeff' Sipek int vfs_path_lookup(struct dentry *dentry, struct vfsmount *mnt,
244816f18200SJosef 'Jeff' Sipek 		    const char *name, unsigned int flags,
2449e0a01249SAl Viro 		    struct path *path)
245016f18200SJosef 'Jeff' Sipek {
24519ad1aaa6SAl Viro 	struct path root = {.mnt = mnt, .dentry = dentry};
24529ad1aaa6SAl Viro 	/* the first argument of filename_lookup() is ignored with root */
2453abc9f5beSAl Viro 	return filename_lookup(AT_FDCWD, getname_kernel(name),
2454abc9f5beSAl Viro 			       flags , path, &root);
245516f18200SJosef 'Jeff' Sipek }
24564d359507SAl Viro EXPORT_SYMBOL(vfs_path_lookup);
245716f18200SJosef 'Jeff' Sipek 
24583c95f0dcSAl Viro static int lookup_one_len_common(const char *name, struct dentry *base,
24593c95f0dcSAl Viro 				 int len, struct qstr *this)
24603c95f0dcSAl Viro {
24613c95f0dcSAl Viro 	this->name = name;
24623c95f0dcSAl Viro 	this->len = len;
24633c95f0dcSAl Viro 	this->hash = full_name_hash(base, name, len);
24643c95f0dcSAl Viro 	if (!len)
24653c95f0dcSAl Viro 		return -EACCES;
24663c95f0dcSAl Viro 
24673c95f0dcSAl Viro 	if (unlikely(name[0] == '.')) {
24683c95f0dcSAl Viro 		if (len < 2 || (len == 2 && name[1] == '.'))
24693c95f0dcSAl Viro 			return -EACCES;
24703c95f0dcSAl Viro 	}
24713c95f0dcSAl Viro 
24723c95f0dcSAl Viro 	while (len--) {
24733c95f0dcSAl Viro 		unsigned int c = *(const unsigned char *)name++;
24743c95f0dcSAl Viro 		if (c == '/' || c == '\0')
24753c95f0dcSAl Viro 			return -EACCES;
24763c95f0dcSAl Viro 	}
24773c95f0dcSAl Viro 	/*
24783c95f0dcSAl Viro 	 * See if the low-level filesystem might want
24793c95f0dcSAl Viro 	 * to use its own hash..
24803c95f0dcSAl Viro 	 */
24813c95f0dcSAl Viro 	if (base->d_flags & DCACHE_OP_HASH) {
24823c95f0dcSAl Viro 		int err = base->d_op->d_hash(base, this);
24833c95f0dcSAl Viro 		if (err < 0)
24843c95f0dcSAl Viro 			return err;
24853c95f0dcSAl Viro 	}
24863c95f0dcSAl Viro 
24873c95f0dcSAl Viro 	return inode_permission(base->d_inode, MAY_EXEC);
24883c95f0dcSAl Viro }
24893c95f0dcSAl Viro 
2490eead1911SChristoph Hellwig /**
24910da0b7fdSDavid Howells  * try_lookup_one_len - filesystem helper to lookup single pathname component
24920da0b7fdSDavid Howells  * @name:	pathname component to lookup
24930da0b7fdSDavid Howells  * @base:	base directory to lookup from
24940da0b7fdSDavid Howells  * @len:	maximum length @len should be interpreted to
24950da0b7fdSDavid Howells  *
24960da0b7fdSDavid Howells  * Look up a dentry by name in the dcache, returning NULL if it does not
24970da0b7fdSDavid Howells  * currently exist.  The function does not try to create a dentry.
24980da0b7fdSDavid Howells  *
24990da0b7fdSDavid Howells  * Note that this routine is purely a helper for filesystem usage and should
25000da0b7fdSDavid Howells  * not be called by generic code.
25010da0b7fdSDavid Howells  *
25020da0b7fdSDavid Howells  * The caller must hold base->i_mutex.
25030da0b7fdSDavid Howells  */
25040da0b7fdSDavid Howells struct dentry *try_lookup_one_len(const char *name, struct dentry *base, int len)
25050da0b7fdSDavid Howells {
25060da0b7fdSDavid Howells 	struct qstr this;
25070da0b7fdSDavid Howells 	int err;
25080da0b7fdSDavid Howells 
25090da0b7fdSDavid Howells 	WARN_ON_ONCE(!inode_is_locked(base->d_inode));
25100da0b7fdSDavid Howells 
25110da0b7fdSDavid Howells 	err = lookup_one_len_common(name, base, len, &this);
25120da0b7fdSDavid Howells 	if (err)
25130da0b7fdSDavid Howells 		return ERR_PTR(err);
25140da0b7fdSDavid Howells 
25150da0b7fdSDavid Howells 	return lookup_dcache(&this, base, 0);
25160da0b7fdSDavid Howells }
25170da0b7fdSDavid Howells EXPORT_SYMBOL(try_lookup_one_len);
25180da0b7fdSDavid Howells 
25190da0b7fdSDavid Howells /**
2520a6b91919SRandy Dunlap  * lookup_one_len - filesystem helper to lookup single pathname component
2521eead1911SChristoph Hellwig  * @name:	pathname component to lookup
2522eead1911SChristoph Hellwig  * @base:	base directory to lookup from
2523eead1911SChristoph Hellwig  * @len:	maximum length @len should be interpreted to
2524eead1911SChristoph Hellwig  *
2525a6b91919SRandy Dunlap  * Note that this routine is purely a helper for filesystem usage and should
25269e7543e9SAl Viro  * not be called by generic code.
2527bbddca8eSNeilBrown  *
2528bbddca8eSNeilBrown  * The caller must hold base->i_mutex.
2529eead1911SChristoph Hellwig  */
2530057f6c01SJames Morris struct dentry *lookup_one_len(const char *name, struct dentry *base, int len)
2531057f6c01SJames Morris {
25328613a209SAl Viro 	struct dentry *dentry;
2533057f6c01SJames Morris 	struct qstr this;
2534cda309deSMiklos Szeredi 	int err;
2535057f6c01SJames Morris 
25365955102cSAl Viro 	WARN_ON_ONCE(!inode_is_locked(base->d_inode));
25372f9092e1SDavid Woodhouse 
25383c95f0dcSAl Viro 	err = lookup_one_len_common(name, base, len, &this);
2539cda309deSMiklos Szeredi 	if (err)
2540cda309deSMiklos Szeredi 		return ERR_PTR(err);
2541cda309deSMiklos Szeredi 
25428613a209SAl Viro 	dentry = lookup_dcache(&this, base, 0);
25438613a209SAl Viro 	return dentry ? dentry : __lookup_slow(&this, base, 0);
2544057f6c01SJames Morris }
25454d359507SAl Viro EXPORT_SYMBOL(lookup_one_len);
2546057f6c01SJames Morris 
2547bbddca8eSNeilBrown /**
2548bbddca8eSNeilBrown  * lookup_one_len_unlocked - filesystem helper to lookup single pathname component
2549bbddca8eSNeilBrown  * @name:	pathname component to lookup
2550bbddca8eSNeilBrown  * @base:	base directory to lookup from
2551bbddca8eSNeilBrown  * @len:	maximum length @len should be interpreted to
2552bbddca8eSNeilBrown  *
2553bbddca8eSNeilBrown  * Note that this routine is purely a helper for filesystem usage and should
2554bbddca8eSNeilBrown  * not be called by generic code.
2555bbddca8eSNeilBrown  *
2556bbddca8eSNeilBrown  * Unlike lookup_one_len, it should be called without the parent
2557bbddca8eSNeilBrown  * i_mutex held, and will take the i_mutex itself if necessary.
2558bbddca8eSNeilBrown  */
2559bbddca8eSNeilBrown struct dentry *lookup_one_len_unlocked(const char *name,
2560bbddca8eSNeilBrown 				       struct dentry *base, int len)
2561bbddca8eSNeilBrown {
2562bbddca8eSNeilBrown 	struct qstr this;
2563bbddca8eSNeilBrown 	int err;
256420d00ee8SLinus Torvalds 	struct dentry *ret;
2565bbddca8eSNeilBrown 
25663c95f0dcSAl Viro 	err = lookup_one_len_common(name, base, len, &this);
2567bbddca8eSNeilBrown 	if (err)
2568bbddca8eSNeilBrown 		return ERR_PTR(err);
2569bbddca8eSNeilBrown 
257020d00ee8SLinus Torvalds 	ret = lookup_dcache(&this, base, 0);
257120d00ee8SLinus Torvalds 	if (!ret)
257220d00ee8SLinus Torvalds 		ret = lookup_slow(&this, base, 0);
257320d00ee8SLinus Torvalds 	return ret;
2574bbddca8eSNeilBrown }
2575bbddca8eSNeilBrown EXPORT_SYMBOL(lookup_one_len_unlocked);
2576bbddca8eSNeilBrown 
2577eedf265aSEric W. Biederman #ifdef CONFIG_UNIX98_PTYS
2578eedf265aSEric W. Biederman int path_pts(struct path *path)
2579eedf265aSEric W. Biederman {
2580eedf265aSEric W. Biederman 	/* Find something mounted on "pts" in the same directory as
2581eedf265aSEric W. Biederman 	 * the input path.
2582eedf265aSEric W. Biederman 	 */
2583eedf265aSEric W. Biederman 	struct dentry *child, *parent;
2584eedf265aSEric W. Biederman 	struct qstr this;
2585eedf265aSEric W. Biederman 	int ret;
2586eedf265aSEric W. Biederman 
2587eedf265aSEric W. Biederman 	ret = path_parent_directory(path);
2588eedf265aSEric W. Biederman 	if (ret)
2589eedf265aSEric W. Biederman 		return ret;
2590eedf265aSEric W. Biederman 
2591eedf265aSEric W. Biederman 	parent = path->dentry;
2592eedf265aSEric W. Biederman 	this.name = "pts";
2593eedf265aSEric W. Biederman 	this.len = 3;
2594eedf265aSEric W. Biederman 	child = d_hash_and_lookup(parent, &this);
2595eedf265aSEric W. Biederman 	if (!child)
2596eedf265aSEric W. Biederman 		return -ENOENT;
2597eedf265aSEric W. Biederman 
2598eedf265aSEric W. Biederman 	path->dentry = child;
2599eedf265aSEric W. Biederman 	dput(parent);
2600eedf265aSEric W. Biederman 	follow_mount(path);
2601eedf265aSEric W. Biederman 	return 0;
2602eedf265aSEric W. Biederman }
2603eedf265aSEric W. Biederman #endif
2604eedf265aSEric W. Biederman 
26051fa1e7f6SAndy Whitcroft int user_path_at_empty(int dfd, const char __user *name, unsigned flags,
26061fa1e7f6SAndy Whitcroft 		 struct path *path, int *empty)
26071da177e4SLinus Torvalds {
2608abc9f5beSAl Viro 	return filename_lookup(dfd, getname_flags(name, flags, empty),
2609abc9f5beSAl Viro 			       flags, path, NULL);
26101da177e4SLinus Torvalds }
2611b853a161SAl Viro EXPORT_SYMBOL(user_path_at_empty);
26121fa1e7f6SAndy Whitcroft 
26138033426eSJeff Layton /**
2614197df04cSAl Viro  * mountpoint_last - look up last component for umount
26158033426eSJeff Layton  * @nd:   pathwalk nameidata - currently pointing at parent directory of "last"
26168033426eSJeff Layton  *
26178033426eSJeff Layton  * This is a special lookup_last function just for umount. In this case, we
26188033426eSJeff Layton  * need to resolve the path without doing any revalidation.
26198033426eSJeff Layton  *
26208033426eSJeff Layton  * The nameidata should be the result of doing a LOOKUP_PARENT pathwalk. Since
26218033426eSJeff Layton  * mountpoints are always pinned in the dcache, their ancestors are too. Thus,
26228033426eSJeff Layton  * in almost all cases, this lookup will be served out of the dcache. The only
26238033426eSJeff Layton  * cases where it won't are if nd->last refers to a symlink or the path is
26248033426eSJeff Layton  * bogus and it doesn't exist.
26258033426eSJeff Layton  *
26268033426eSJeff Layton  * Returns:
26278033426eSJeff Layton  * -error: if there was an error during lookup. This includes -ENOENT if the
2628ba8f4613SAl Viro  *         lookup found a negative dentry.
26298033426eSJeff Layton  *
2630ba8f4613SAl Viro  * 0:      if we successfully resolved nd->last and found it to not to be a
2631ba8f4613SAl Viro  *         symlink that needs to be followed.
26328033426eSJeff Layton  *
26338033426eSJeff Layton  * 1:      if we successfully resolved nd->last and found it to be a symlink
2634ba8f4613SAl Viro  *         that needs to be followed.
26358033426eSJeff Layton  */
26368033426eSJeff Layton static int
2637ba8f4613SAl Viro mountpoint_last(struct nameidata *nd)
26388033426eSJeff Layton {
26398033426eSJeff Layton 	int error = 0;
26408033426eSJeff Layton 	struct dentry *dir = nd->path.dentry;
2641ba8f4613SAl Viro 	struct path path;
26428033426eSJeff Layton 
264335759521SAl Viro 	/* If we're in rcuwalk, drop out of it to handle last component */
264435759521SAl Viro 	if (nd->flags & LOOKUP_RCU) {
26454675ac39SAl Viro 		if (unlazy_walk(nd))
2646deb106c6SAl Viro 			return -ECHILD;
26478033426eSJeff Layton 	}
26488033426eSJeff Layton 
26498033426eSJeff Layton 	nd->flags &= ~LOOKUP_PARENT;
26508033426eSJeff Layton 
26518033426eSJeff Layton 	if (unlikely(nd->last_type != LAST_NORM)) {
26528033426eSJeff Layton 		error = handle_dots(nd, nd->last_type);
265335759521SAl Viro 		if (error)
2654deb106c6SAl Viro 			return error;
2655ba8f4613SAl Viro 		path.dentry = dget(nd->path.dentry);
2656949a852eSAl Viro 	} else {
2657ba8f4613SAl Viro 		path.dentry = d_lookup(dir, &nd->last);
2658ba8f4613SAl Viro 		if (!path.dentry) {
26598033426eSJeff Layton 			/*
2660949a852eSAl Viro 			 * No cached dentry. Mounted dentries are pinned in the
2661949a852eSAl Viro 			 * cache, so that means that this dentry is probably
2662949a852eSAl Viro 			 * a symlink or the path doesn't actually point
2663949a852eSAl Viro 			 * to a mounted dentry.
26648033426eSJeff Layton 			 */
2665ba8f4613SAl Viro 			path.dentry = lookup_slow(&nd->last, dir,
2666949a852eSAl Viro 					     nd->flags | LOOKUP_NO_REVAL);
2667ba8f4613SAl Viro 			if (IS_ERR(path.dentry))
2668ba8f4613SAl Viro 				return PTR_ERR(path.dentry);
26698033426eSJeff Layton 		}
2670bcceeebaSDave Jones 	}
2671ba8f4613SAl Viro 	if (d_is_negative(path.dentry)) {
2672ba8f4613SAl Viro 		dput(path.dentry);
2673deb106c6SAl Viro 		return -ENOENT;
267435759521SAl Viro 	}
2675ba8f4613SAl Viro 	path.mnt = nd->path.mnt;
26768f64fb1cSAl Viro 	return step_into(nd, &path, 0, d_backing_inode(path.dentry), 0);
26778033426eSJeff Layton }
26788033426eSJeff Layton 
26798033426eSJeff Layton /**
2680197df04cSAl Viro  * path_mountpoint - look up a path to be umounted
26812a78b857SMasanari Iida  * @nd:		lookup context
26828033426eSJeff Layton  * @flags:	lookup flags
2683c8a53ee5SAl Viro  * @path:	pointer to container for result
26848033426eSJeff Layton  *
26858033426eSJeff Layton  * Look up the given name, but don't attempt to revalidate the last component.
2686606d6fe3SRandy Dunlap  * Returns 0 and "path" will be valid on success; Returns error otherwise.
26878033426eSJeff Layton  */
26888033426eSJeff Layton static int
2689c8a53ee5SAl Viro path_mountpoint(struct nameidata *nd, unsigned flags, struct path *path)
26908033426eSJeff Layton {
2691c8a53ee5SAl Viro 	const char *s = path_init(nd, flags);
2692368ee9baSAl Viro 	int err;
26939b5858e9SAl Viro 
26943bdba28bSAl Viro 	while (!(err = link_path_walk(s, nd)) &&
2695ba8f4613SAl Viro 		(err = mountpoint_last(nd)) > 0) {
26963bdba28bSAl Viro 		s = trailing_symlink(nd);
26973bdba28bSAl Viro 	}
2698ba8f4613SAl Viro 	if (!err) {
2699ba8f4613SAl Viro 		*path = nd->path;
2700ba8f4613SAl Viro 		nd->path.mnt = NULL;
2701ba8f4613SAl Viro 		nd->path.dentry = NULL;
2702ba8f4613SAl Viro 		follow_mount(path);
2703ba8f4613SAl Viro 	}
2704deb106c6SAl Viro 	terminate_walk(nd);
27058033426eSJeff Layton 	return err;
27068033426eSJeff Layton }
27078033426eSJeff Layton 
27082d864651SAl Viro static int
2709668696dcSAl Viro filename_mountpoint(int dfd, struct filename *name, struct path *path,
27102d864651SAl Viro 			unsigned int flags)
27112d864651SAl Viro {
27129883d185SAl Viro 	struct nameidata nd;
2713cbaab2dbSAl Viro 	int error;
2714668696dcSAl Viro 	if (IS_ERR(name))
2715668696dcSAl Viro 		return PTR_ERR(name);
27169883d185SAl Viro 	set_nameidata(&nd, dfd, name);
2717c8a53ee5SAl Viro 	error = path_mountpoint(&nd, flags | LOOKUP_RCU, path);
27182d864651SAl Viro 	if (unlikely(error == -ECHILD))
2719c8a53ee5SAl Viro 		error = path_mountpoint(&nd, flags, path);
27202d864651SAl Viro 	if (unlikely(error == -ESTALE))
2721c8a53ee5SAl Viro 		error = path_mountpoint(&nd, flags | LOOKUP_REVAL, path);
27222d864651SAl Viro 	if (likely(!error))
2723668696dcSAl Viro 		audit_inode(name, path->dentry, 0);
27249883d185SAl Viro 	restore_nameidata();
2725668696dcSAl Viro 	putname(name);
27262d864651SAl Viro 	return error;
27272d864651SAl Viro }
27282d864651SAl Viro 
27298033426eSJeff Layton /**
2730197df04cSAl Viro  * user_path_mountpoint_at - lookup a path from userland in order to umount it
27318033426eSJeff Layton  * @dfd:	directory file descriptor
27328033426eSJeff Layton  * @name:	pathname from userland
27338033426eSJeff Layton  * @flags:	lookup flags
27348033426eSJeff Layton  * @path:	pointer to container to hold result
27358033426eSJeff Layton  *
27368033426eSJeff Layton  * A umount is a special case for path walking. We're not actually interested
27378033426eSJeff Layton  * in the inode in this situation, and ESTALE errors can be a problem. We
27388033426eSJeff Layton  * simply want track down the dentry and vfsmount attached at the mountpoint
27398033426eSJeff Layton  * and avoid revalidating the last component.
27408033426eSJeff Layton  *
27418033426eSJeff Layton  * Returns 0 and populates "path" on success.
27428033426eSJeff Layton  */
27438033426eSJeff Layton int
2744197df04cSAl Viro user_path_mountpoint_at(int dfd, const char __user *name, unsigned int flags,
27458033426eSJeff Layton 			struct path *path)
27468033426eSJeff Layton {
2747cbaab2dbSAl Viro 	return filename_mountpoint(dfd, getname(name), path, flags);
27488033426eSJeff Layton }
27498033426eSJeff Layton 
27502d864651SAl Viro int
27512d864651SAl Viro kern_path_mountpoint(int dfd, const char *name, struct path *path,
27522d864651SAl Viro 			unsigned int flags)
27532d864651SAl Viro {
2754cbaab2dbSAl Viro 	return filename_mountpoint(dfd, getname_kernel(name), path, flags);
27552d864651SAl Viro }
27562d864651SAl Viro EXPORT_SYMBOL(kern_path_mountpoint);
27572d864651SAl Viro 
2758cbdf35bcSMiklos Szeredi int __check_sticky(struct inode *dir, struct inode *inode)
27591da177e4SLinus Torvalds {
27608e96e3b7SEric W. Biederman 	kuid_t fsuid = current_fsuid();
2761da9592edSDavid Howells 
27628e96e3b7SEric W. Biederman 	if (uid_eq(inode->i_uid, fsuid))
27631da177e4SLinus Torvalds 		return 0;
27648e96e3b7SEric W. Biederman 	if (uid_eq(dir->i_uid, fsuid))
27651da177e4SLinus Torvalds 		return 0;
276623adbe12SAndy Lutomirski 	return !capable_wrt_inode_uidgid(inode, CAP_FOWNER);
27671da177e4SLinus Torvalds }
2768cbdf35bcSMiklos Szeredi EXPORT_SYMBOL(__check_sticky);
27691da177e4SLinus Torvalds 
27701da177e4SLinus Torvalds /*
27711da177e4SLinus Torvalds  *	Check whether we can remove a link victim from directory dir, check
27721da177e4SLinus Torvalds  *  whether the type of victim is right.
27731da177e4SLinus Torvalds  *  1. We can't do it if dir is read-only (done in permission())
27741da177e4SLinus Torvalds  *  2. We should have write and exec permissions on dir
27751da177e4SLinus Torvalds  *  3. We can't remove anything from append-only dir
27761da177e4SLinus Torvalds  *  4. We can't do anything with immutable dir (done in permission())
27771da177e4SLinus Torvalds  *  5. If the sticky bit on dir is set we should either
27781da177e4SLinus Torvalds  *	a. be owner of dir, or
27791da177e4SLinus Torvalds  *	b. be owner of victim, or
27801da177e4SLinus Torvalds  *	c. have CAP_FOWNER capability
27811da177e4SLinus Torvalds  *  6. If the victim is append-only or immutable we can't do antyhing with
27821da177e4SLinus Torvalds  *     links pointing to it.
27830bd23d09SEric W. Biederman  *  7. If the victim has an unknown uid or gid we can't change the inode.
27840bd23d09SEric W. Biederman  *  8. If we were asked to remove a directory and victim isn't one - ENOTDIR.
27850bd23d09SEric W. Biederman  *  9. If we were asked to remove a non-directory and victim isn't one - EISDIR.
27860bd23d09SEric W. Biederman  * 10. We can't remove a root or mountpoint.
27870bd23d09SEric W. Biederman  * 11. We don't allow removal of NFS sillyrenamed files; it's handled by
27881da177e4SLinus Torvalds  *     nfs_async_unlink().
27891da177e4SLinus Torvalds  */
2790b18825a7SDavid Howells static int may_delete(struct inode *dir, struct dentry *victim, bool isdir)
27911da177e4SLinus Torvalds {
279263afdfc7SDavid Howells 	struct inode *inode = d_backing_inode(victim);
27931da177e4SLinus Torvalds 	int error;
27941da177e4SLinus Torvalds 
2795b18825a7SDavid Howells 	if (d_is_negative(victim))
27961da177e4SLinus Torvalds 		return -ENOENT;
2797b18825a7SDavid Howells 	BUG_ON(!inode);
27981da177e4SLinus Torvalds 
27991da177e4SLinus Torvalds 	BUG_ON(victim->d_parent->d_inode != dir);
2800593d1ce8SEric W. Biederman 
2801593d1ce8SEric W. Biederman 	/* Inode writeback is not safe when the uid or gid are invalid. */
2802593d1ce8SEric W. Biederman 	if (!uid_valid(inode->i_uid) || !gid_valid(inode->i_gid))
2803593d1ce8SEric W. Biederman 		return -EOVERFLOW;
2804593d1ce8SEric W. Biederman 
28054fa6b5ecSJeff Layton 	audit_inode_child(dir, victim, AUDIT_TYPE_CHILD_DELETE);
28061da177e4SLinus Torvalds 
2807f419a2e3SAl Viro 	error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
28081da177e4SLinus Torvalds 	if (error)
28091da177e4SLinus Torvalds 		return error;
28101da177e4SLinus Torvalds 	if (IS_APPEND(dir))
28111da177e4SLinus Torvalds 		return -EPERM;
2812b18825a7SDavid Howells 
2813b18825a7SDavid Howells 	if (check_sticky(dir, inode) || IS_APPEND(inode) ||
28140bd23d09SEric W. Biederman 	    IS_IMMUTABLE(inode) || IS_SWAPFILE(inode) || HAS_UNMAPPED_ID(inode))
28151da177e4SLinus Torvalds 		return -EPERM;
28161da177e4SLinus Torvalds 	if (isdir) {
281744b1d530SMiklos Szeredi 		if (!d_is_dir(victim))
28181da177e4SLinus Torvalds 			return -ENOTDIR;
28191da177e4SLinus Torvalds 		if (IS_ROOT(victim))
28201da177e4SLinus Torvalds 			return -EBUSY;
282144b1d530SMiklos Szeredi 	} else if (d_is_dir(victim))
28221da177e4SLinus Torvalds 		return -EISDIR;
28231da177e4SLinus Torvalds 	if (IS_DEADDIR(dir))
28241da177e4SLinus Torvalds 		return -ENOENT;
28251da177e4SLinus Torvalds 	if (victim->d_flags & DCACHE_NFSFS_RENAMED)
28261da177e4SLinus Torvalds 		return -EBUSY;
28271da177e4SLinus Torvalds 	return 0;
28281da177e4SLinus Torvalds }
28291da177e4SLinus Torvalds 
28301da177e4SLinus Torvalds /*	Check whether we can create an object with dentry child in directory
28311da177e4SLinus Torvalds  *  dir.
28321da177e4SLinus Torvalds  *  1. We can't do it if child already exists (open has special treatment for
28331da177e4SLinus Torvalds  *     this case, but since we are inlined it's OK)
28341da177e4SLinus Torvalds  *  2. We can't do it if dir is read-only (done in permission())
2835036d5236SEric W. Biederman  *  3. We can't do it if the fs can't represent the fsuid or fsgid.
2836036d5236SEric W. Biederman  *  4. We should have write and exec permissions on dir
2837036d5236SEric W. Biederman  *  5. We can't do it if dir is immutable (done in permission())
28381da177e4SLinus Torvalds  */
2839a95164d9SMiklos Szeredi static inline int may_create(struct inode *dir, struct dentry *child)
28401da177e4SLinus Torvalds {
2841036d5236SEric W. Biederman 	struct user_namespace *s_user_ns;
284214e972b4SJeff Layton 	audit_inode_child(dir, child, AUDIT_TYPE_CHILD_CREATE);
28431da177e4SLinus Torvalds 	if (child->d_inode)
28441da177e4SLinus Torvalds 		return -EEXIST;
28451da177e4SLinus Torvalds 	if (IS_DEADDIR(dir))
28461da177e4SLinus Torvalds 		return -ENOENT;
2847036d5236SEric W. Biederman 	s_user_ns = dir->i_sb->s_user_ns;
2848036d5236SEric W. Biederman 	if (!kuid_has_mapping(s_user_ns, current_fsuid()) ||
2849036d5236SEric W. Biederman 	    !kgid_has_mapping(s_user_ns, current_fsgid()))
2850036d5236SEric W. Biederman 		return -EOVERFLOW;
2851f419a2e3SAl Viro 	return inode_permission(dir, MAY_WRITE | MAY_EXEC);
28521da177e4SLinus Torvalds }
28531da177e4SLinus Torvalds 
28541da177e4SLinus Torvalds /*
28551da177e4SLinus Torvalds  * p1 and p2 should be directories on the same fs.
28561da177e4SLinus Torvalds  */
28571da177e4SLinus Torvalds struct dentry *lock_rename(struct dentry *p1, struct dentry *p2)
28581da177e4SLinus Torvalds {
28591da177e4SLinus Torvalds 	struct dentry *p;
28601da177e4SLinus Torvalds 
28611da177e4SLinus Torvalds 	if (p1 == p2) {
28625955102cSAl Viro 		inode_lock_nested(p1->d_inode, I_MUTEX_PARENT);
28631da177e4SLinus Torvalds 		return NULL;
28641da177e4SLinus Torvalds 	}
28651da177e4SLinus Torvalds 
2866fc64005cSAl Viro 	mutex_lock(&p1->d_sb->s_vfs_rename_mutex);
28671da177e4SLinus Torvalds 
2868e2761a11SOGAWA Hirofumi 	p = d_ancestor(p2, p1);
2869e2761a11SOGAWA Hirofumi 	if (p) {
28705955102cSAl Viro 		inode_lock_nested(p2->d_inode, I_MUTEX_PARENT);
28715955102cSAl Viro 		inode_lock_nested(p1->d_inode, I_MUTEX_CHILD);
28721da177e4SLinus Torvalds 		return p;
28731da177e4SLinus Torvalds 	}
28741da177e4SLinus Torvalds 
2875e2761a11SOGAWA Hirofumi 	p = d_ancestor(p1, p2);
2876e2761a11SOGAWA Hirofumi 	if (p) {
28775955102cSAl Viro 		inode_lock_nested(p1->d_inode, I_MUTEX_PARENT);
28785955102cSAl Viro 		inode_lock_nested(p2->d_inode, I_MUTEX_CHILD);
28791da177e4SLinus Torvalds 		return p;
28801da177e4SLinus Torvalds 	}
28811da177e4SLinus Torvalds 
28825955102cSAl Viro 	inode_lock_nested(p1->d_inode, I_MUTEX_PARENT);
28835955102cSAl Viro 	inode_lock_nested(p2->d_inode, I_MUTEX_PARENT2);
28841da177e4SLinus Torvalds 	return NULL;
28851da177e4SLinus Torvalds }
28864d359507SAl Viro EXPORT_SYMBOL(lock_rename);
28871da177e4SLinus Torvalds 
28881da177e4SLinus Torvalds void unlock_rename(struct dentry *p1, struct dentry *p2)
28891da177e4SLinus Torvalds {
28905955102cSAl Viro 	inode_unlock(p1->d_inode);
28911da177e4SLinus Torvalds 	if (p1 != p2) {
28925955102cSAl Viro 		inode_unlock(p2->d_inode);
2893fc64005cSAl Viro 		mutex_unlock(&p1->d_sb->s_vfs_rename_mutex);
28941da177e4SLinus Torvalds 	}
28951da177e4SLinus Torvalds }
28964d359507SAl Viro EXPORT_SYMBOL(unlock_rename);
28971da177e4SLinus Torvalds 
28984acdaf27SAl Viro int vfs_create(struct inode *dir, struct dentry *dentry, umode_t mode,
2899312b63fbSAl Viro 		bool want_excl)
29001da177e4SLinus Torvalds {
2901a95164d9SMiklos Szeredi 	int error = may_create(dir, dentry);
29021da177e4SLinus Torvalds 	if (error)
29031da177e4SLinus Torvalds 		return error;
29041da177e4SLinus Torvalds 
2905acfa4380SAl Viro 	if (!dir->i_op->create)
29061da177e4SLinus Torvalds 		return -EACCES;	/* shouldn't it be ENOSYS? */
29071da177e4SLinus Torvalds 	mode &= S_IALLUGO;
29081da177e4SLinus Torvalds 	mode |= S_IFREG;
29091da177e4SLinus Torvalds 	error = security_inode_create(dir, dentry, mode);
29101da177e4SLinus Torvalds 	if (error)
29111da177e4SLinus Torvalds 		return error;
2912312b63fbSAl Viro 	error = dir->i_op->create(dir, dentry, mode, want_excl);
2913a74574aaSStephen Smalley 	if (!error)
2914f38aa942SAmy Griffis 		fsnotify_create(dir, dentry);
29151da177e4SLinus Torvalds 	return error;
29161da177e4SLinus Torvalds }
29174d359507SAl Viro EXPORT_SYMBOL(vfs_create);
29181da177e4SLinus Torvalds 
29198e6c848eSAl Viro int vfs_mkobj(struct dentry *dentry, umode_t mode,
29208e6c848eSAl Viro 		int (*f)(struct dentry *, umode_t, void *),
29218e6c848eSAl Viro 		void *arg)
29228e6c848eSAl Viro {
29238e6c848eSAl Viro 	struct inode *dir = dentry->d_parent->d_inode;
29248e6c848eSAl Viro 	int error = may_create(dir, dentry);
29258e6c848eSAl Viro 	if (error)
29268e6c848eSAl Viro 		return error;
29278e6c848eSAl Viro 
29288e6c848eSAl Viro 	mode &= S_IALLUGO;
29298e6c848eSAl Viro 	mode |= S_IFREG;
29308e6c848eSAl Viro 	error = security_inode_create(dir, dentry, mode);
29318e6c848eSAl Viro 	if (error)
29328e6c848eSAl Viro 		return error;
29338e6c848eSAl Viro 	error = f(dentry, mode, arg);
29348e6c848eSAl Viro 	if (!error)
29358e6c848eSAl Viro 		fsnotify_create(dir, dentry);
29368e6c848eSAl Viro 	return error;
29378e6c848eSAl Viro }
29388e6c848eSAl Viro EXPORT_SYMBOL(vfs_mkobj);
29398e6c848eSAl Viro 
2940a2982cc9SEric W. Biederman bool may_open_dev(const struct path *path)
2941a2982cc9SEric W. Biederman {
2942a2982cc9SEric W. Biederman 	return !(path->mnt->mnt_flags & MNT_NODEV) &&
2943a2982cc9SEric W. Biederman 		!(path->mnt->mnt_sb->s_iflags & SB_I_NODEV);
2944a2982cc9SEric W. Biederman }
2945a2982cc9SEric W. Biederman 
2946f0bb5aafSAl Viro static int may_open(const struct path *path, int acc_mode, int flag)
29471da177e4SLinus Torvalds {
29483fb64190SChristoph Hellwig 	struct dentry *dentry = path->dentry;
29491da177e4SLinus Torvalds 	struct inode *inode = dentry->d_inode;
29501da177e4SLinus Torvalds 	int error;
29511da177e4SLinus Torvalds 
29521da177e4SLinus Torvalds 	if (!inode)
29531da177e4SLinus Torvalds 		return -ENOENT;
29541da177e4SLinus Torvalds 
2955c8fe8f30SChristoph Hellwig 	switch (inode->i_mode & S_IFMT) {
2956c8fe8f30SChristoph Hellwig 	case S_IFLNK:
29571da177e4SLinus Torvalds 		return -ELOOP;
2958c8fe8f30SChristoph Hellwig 	case S_IFDIR:
2959c8fe8f30SChristoph Hellwig 		if (acc_mode & MAY_WRITE)
29601da177e4SLinus Torvalds 			return -EISDIR;
2961c8fe8f30SChristoph Hellwig 		break;
2962c8fe8f30SChristoph Hellwig 	case S_IFBLK:
2963c8fe8f30SChristoph Hellwig 	case S_IFCHR:
2964a2982cc9SEric W. Biederman 		if (!may_open_dev(path))
29651da177e4SLinus Torvalds 			return -EACCES;
2966c8fe8f30SChristoph Hellwig 		/*FALLTHRU*/
2967c8fe8f30SChristoph Hellwig 	case S_IFIFO:
2968c8fe8f30SChristoph Hellwig 	case S_IFSOCK:
29691da177e4SLinus Torvalds 		flag &= ~O_TRUNC;
2970c8fe8f30SChristoph Hellwig 		break;
29714a3fd211SDave Hansen 	}
2972b41572e9SDave Hansen 
297362fb4a15SAl Viro 	error = inode_permission(inode, MAY_OPEN | acc_mode);
2974b41572e9SDave Hansen 	if (error)
2975b41572e9SDave Hansen 		return error;
29766146f0d5SMimi Zohar 
29771da177e4SLinus Torvalds 	/*
29781da177e4SLinus Torvalds 	 * An append-only file must be opened in append mode for writing.
29791da177e4SLinus Torvalds 	 */
29801da177e4SLinus Torvalds 	if (IS_APPEND(inode)) {
29818737c930SAl Viro 		if  ((flag & O_ACCMODE) != O_RDONLY && !(flag & O_APPEND))
29827715b521SAl Viro 			return -EPERM;
29831da177e4SLinus Torvalds 		if (flag & O_TRUNC)
29847715b521SAl Viro 			return -EPERM;
29851da177e4SLinus Torvalds 	}
29861da177e4SLinus Torvalds 
29871da177e4SLinus Torvalds 	/* O_NOATIME can only be set by the owner or superuser */
29882e149670SSerge E. Hallyn 	if (flag & O_NOATIME && !inode_owner_or_capable(inode))
29897715b521SAl Viro 		return -EPERM;
29901da177e4SLinus Torvalds 
2991f3c7691eSJ. Bruce Fields 	return 0;
29927715b521SAl Viro }
29937715b521SAl Viro 
2994e1181ee6SJeff Layton static int handle_truncate(struct file *filp)
29957715b521SAl Viro {
2996f0bb5aafSAl Viro 	const struct path *path = &filp->f_path;
29977715b521SAl Viro 	struct inode *inode = path->dentry->d_inode;
29987715b521SAl Viro 	int error = get_write_access(inode);
29991da177e4SLinus Torvalds 	if (error)
30007715b521SAl Viro 		return error;
30011da177e4SLinus Torvalds 	/*
30021da177e4SLinus Torvalds 	 * Refuse to truncate files with mandatory locks held on them.
30031da177e4SLinus Torvalds 	 */
3004d7a06983SJeff Layton 	error = locks_verify_locked(filp);
3005be6d3e56SKentaro Takeda 	if (!error)
3006ea0d3ab2STetsuo Handa 		error = security_path_truncate(path);
30071da177e4SLinus Torvalds 	if (!error) {
30087715b521SAl Viro 		error = do_truncate(path->dentry, 0,
3009d139d7ffSMiklos Szeredi 				    ATTR_MTIME|ATTR_CTIME|ATTR_OPEN,
3010e1181ee6SJeff Layton 				    filp);
30111da177e4SLinus Torvalds 	}
30121da177e4SLinus Torvalds 	put_write_access(inode);
3013acd0c935SMimi Zohar 	return error;
30141da177e4SLinus Torvalds }
30151da177e4SLinus Torvalds 
3016d57999e1SDave Hansen static inline int open_to_namei_flags(int flag)
3017d57999e1SDave Hansen {
30188a5e929dSAl Viro 	if ((flag & O_ACCMODE) == 3)
30198a5e929dSAl Viro 		flag--;
3020d57999e1SDave Hansen 	return flag;
3021d57999e1SDave Hansen }
3022d57999e1SDave Hansen 
3023d3607752SAl Viro static int may_o_create(const struct path *dir, struct dentry *dentry, umode_t mode)
3024d18e9008SMiklos Szeredi {
30251328c727SSeth Forshee 	struct user_namespace *s_user_ns;
3026d18e9008SMiklos Szeredi 	int error = security_path_mknod(dir, dentry, mode, 0);
3027d18e9008SMiklos Szeredi 	if (error)
3028d18e9008SMiklos Szeredi 		return error;
3029d18e9008SMiklos Szeredi 
30301328c727SSeth Forshee 	s_user_ns = dir->dentry->d_sb->s_user_ns;
30311328c727SSeth Forshee 	if (!kuid_has_mapping(s_user_ns, current_fsuid()) ||
30321328c727SSeth Forshee 	    !kgid_has_mapping(s_user_ns, current_fsgid()))
30331328c727SSeth Forshee 		return -EOVERFLOW;
30341328c727SSeth Forshee 
3035d18e9008SMiklos Szeredi 	error = inode_permission(dir->dentry->d_inode, MAY_WRITE | MAY_EXEC);
3036d18e9008SMiklos Szeredi 	if (error)
3037d18e9008SMiklos Szeredi 		return error;
3038d18e9008SMiklos Szeredi 
3039d18e9008SMiklos Szeredi 	return security_inode_create(dir->dentry->d_inode, dentry, mode);
3040d18e9008SMiklos Szeredi }
3041d18e9008SMiklos Szeredi 
30421acf0af9SDavid Howells /*
30431acf0af9SDavid Howells  * Attempt to atomically look up, create and open a file from a negative
30441acf0af9SDavid Howells  * dentry.
30451acf0af9SDavid Howells  *
30461acf0af9SDavid Howells  * Returns 0 if successful.  The file will have been created and attached to
30471acf0af9SDavid Howells  * @file by the filesystem calling finish_open().
30481acf0af9SDavid Howells  *
304900a07c15SAl Viro  * If the file was looked up only or didn't need creating, FMODE_OPENED won't
305000a07c15SAl Viro  * be set.  The caller will need to perform the open themselves.  @path will
305100a07c15SAl Viro  * have been updated to point to the new dentry.  This may be negative.
30521acf0af9SDavid Howells  *
30531acf0af9SDavid Howells  * Returns an error code otherwise.
30541acf0af9SDavid Howells  */
30552675a4ebSAl Viro static int atomic_open(struct nameidata *nd, struct dentry *dentry,
305630d90494SAl Viro 			struct path *path, struct file *file,
3057015c3bbcSMiklos Szeredi 			const struct open_flags *op,
30583ec2eef1SAl Viro 			int open_flag, umode_t mode)
3059d18e9008SMiklos Szeredi {
3060d18e9008SMiklos Szeredi 	struct dentry *const DENTRY_NOT_SET = (void *) -1UL;
3061d18e9008SMiklos Szeredi 	struct inode *dir =  nd->path.dentry->d_inode;
3062d18e9008SMiklos Szeredi 	int error;
3063d18e9008SMiklos Szeredi 
3064384f26e2SAl Viro 	if (!(~open_flag & (O_EXCL | O_CREAT)))	/* both O_EXCL and O_CREAT */
3065d18e9008SMiklos Szeredi 		open_flag &= ~O_TRUNC;
3066d18e9008SMiklos Szeredi 
3067d18e9008SMiklos Szeredi 	if (nd->flags & LOOKUP_DIRECTORY)
3068d18e9008SMiklos Szeredi 		open_flag |= O_DIRECTORY;
3069d18e9008SMiklos Szeredi 
307030d90494SAl Viro 	file->f_path.dentry = DENTRY_NOT_SET;
307130d90494SAl Viro 	file->f_path.mnt = nd->path.mnt;
30720fb1ea09SAl Viro 	error = dir->i_op->atomic_open(dir, dentry, file,
307344907d79SAl Viro 				       open_to_namei_flags(open_flag), mode);
30746fbd0714SAl Viro 	d_lookup_done(dentry);
3075384f26e2SAl Viro 	if (!error) {
307664e1ac4dSAl Viro 		if (file->f_mode & FMODE_OPENED) {
3077d18e9008SMiklos Szeredi 			/*
3078384f26e2SAl Viro 			 * We didn't have the inode before the open, so check open
3079384f26e2SAl Viro 			 * permission here.
3080d18e9008SMiklos Szeredi 			 */
3081384f26e2SAl Viro 			int acc_mode = op->acc_mode;
308273a09dd9SAl Viro 			if (file->f_mode & FMODE_CREATED) {
308303da633aSAl Viro 				WARN_ON(!(open_flag & O_CREAT));
308403da633aSAl Viro 				fsnotify_create(dir, dentry);
308562fb4a15SAl Viro 				acc_mode = 0;
308603da633aSAl Viro 			}
30872675a4ebSAl Viro 			error = may_open(&file->f_path, acc_mode, open_flag);
3088384f26e2SAl Viro 			if (WARN_ON(error > 0))
3089384f26e2SAl Viro 				error = -EINVAL;
309064e1ac4dSAl Viro 		} else if (WARN_ON(file->f_path.dentry == DENTRY_NOT_SET)) {
3091d18e9008SMiklos Szeredi 			error = -EIO;
3092384f26e2SAl Viro 		} else {
3093d18e9008SMiklos Szeredi 			if (file->f_path.dentry) {
3094d18e9008SMiklos Szeredi 				dput(dentry);
3095d18e9008SMiklos Szeredi 				dentry = file->f_path.dentry;
309610c64ceaSAl Viro 			}
309773a09dd9SAl Viro 			if (file->f_mode & FMODE_CREATED)
3098d18e9008SMiklos Szeredi 				fsnotify_create(dir, dentry);
3099a01e718fSAl Viro 			if (unlikely(d_is_negative(dentry))) {
3100a01e718fSAl Viro 				error = -ENOENT;
3101a01e718fSAl Viro 			} else {
3102d18e9008SMiklos Szeredi 				path->dentry = dentry;
3103d18e9008SMiklos Szeredi 				path->mnt = nd->path.mnt;
310400a07c15SAl Viro 				return 0;
3105d18e9008SMiklos Szeredi 			}
3106d18e9008SMiklos Szeredi 		}
3107a01e718fSAl Viro 	}
3108d18e9008SMiklos Szeredi 	dput(dentry);
3109d18e9008SMiklos Szeredi 	return error;
3110d18e9008SMiklos Szeredi }
3111d18e9008SMiklos Szeredi 
311231e6b01fSNick Piggin /*
31131acf0af9SDavid Howells  * Look up and maybe create and open the last component.
3114d58ffd35SMiklos Szeredi  *
311500a07c15SAl Viro  * Must be called with parent locked (exclusive in O_CREAT case).
3116d58ffd35SMiklos Szeredi  *
311700a07c15SAl Viro  * Returns 0 on success, that is, if
311800a07c15SAl Viro  *  the file was successfully atomically created (if necessary) and opened, or
311900a07c15SAl Viro  *  the file was not completely opened at this time, though lookups and
312000a07c15SAl Viro  *  creations were performed.
312100a07c15SAl Viro  * These case are distinguished by presence of FMODE_OPENED on file->f_mode.
312200a07c15SAl Viro  * In the latter case dentry returned in @path might be negative if O_CREAT
312300a07c15SAl Viro  * hadn't been specified.
31241acf0af9SDavid Howells  *
312500a07c15SAl Viro  * An error code is returned on failure.
3126d58ffd35SMiklos Szeredi  */
31272675a4ebSAl Viro static int lookup_open(struct nameidata *nd, struct path *path,
312830d90494SAl Viro 			struct file *file,
3129d58ffd35SMiklos Szeredi 			const struct open_flags *op,
31303ec2eef1SAl Viro 			bool got_write)
3131d58ffd35SMiklos Szeredi {
3132d58ffd35SMiklos Szeredi 	struct dentry *dir = nd->path.dentry;
313354ef4872SMiklos Szeredi 	struct inode *dir_inode = dir->d_inode;
31341643b43fSAl Viro 	int open_flag = op->open_flag;
3135d58ffd35SMiklos Szeredi 	struct dentry *dentry;
31361643b43fSAl Viro 	int error, create_error = 0;
31371643b43fSAl Viro 	umode_t mode = op->mode;
31386fbd0714SAl Viro 	DECLARE_WAIT_QUEUE_HEAD_ONSTACK(wq);
3139d58ffd35SMiklos Szeredi 
3140ce8644fcSAl Viro 	if (unlikely(IS_DEADDIR(dir_inode)))
3141ce8644fcSAl Viro 		return -ENOENT;
3142d58ffd35SMiklos Szeredi 
314373a09dd9SAl Viro 	file->f_mode &= ~FMODE_CREATED;
31446fbd0714SAl Viro 	dentry = d_lookup(dir, &nd->last);
31456fbd0714SAl Viro 	for (;;) {
31466fbd0714SAl Viro 		if (!dentry) {
31476fbd0714SAl Viro 			dentry = d_alloc_parallel(dir, &nd->last, &wq);
3148d58ffd35SMiklos Szeredi 			if (IS_ERR(dentry))
31492675a4ebSAl Viro 				return PTR_ERR(dentry);
31506fbd0714SAl Viro 		}
31516fbd0714SAl Viro 		if (d_in_lookup(dentry))
31526fbd0714SAl Viro 			break;
3153d58ffd35SMiklos Szeredi 
31546fbd0714SAl Viro 		error = d_revalidate(dentry, nd->flags);
31556fbd0714SAl Viro 		if (likely(error > 0))
31566fbd0714SAl Viro 			break;
31576fbd0714SAl Viro 		if (error)
31586fbd0714SAl Viro 			goto out_dput;
31596fbd0714SAl Viro 		d_invalidate(dentry);
31606fbd0714SAl Viro 		dput(dentry);
31616fbd0714SAl Viro 		dentry = NULL;
31626fbd0714SAl Viro 	}
31636fbd0714SAl Viro 	if (dentry->d_inode) {
3164d18e9008SMiklos Szeredi 		/* Cached positive dentry: will open in f_op->open */
3165d18e9008SMiklos Szeredi 		goto out_no_open;
31666c51e513SAl Viro 	}
3167d18e9008SMiklos Szeredi 
31681643b43fSAl Viro 	/*
31691643b43fSAl Viro 	 * Checking write permission is tricky, bacuse we don't know if we are
31701643b43fSAl Viro 	 * going to actually need it: O_CREAT opens should work as long as the
31711643b43fSAl Viro 	 * file exists.  But checking existence breaks atomicity.  The trick is
31721643b43fSAl Viro 	 * to check access and if not granted clear O_CREAT from the flags.
31731643b43fSAl Viro 	 *
31741643b43fSAl Viro 	 * Another problem is returing the "right" error value (e.g. for an
31751643b43fSAl Viro 	 * O_EXCL open we want to return EEXIST not EROFS).
31761643b43fSAl Viro 	 */
31771643b43fSAl Viro 	if (open_flag & O_CREAT) {
31781643b43fSAl Viro 		if (!IS_POSIXACL(dir->d_inode))
31791643b43fSAl Viro 			mode &= ~current_umask();
31801643b43fSAl Viro 		if (unlikely(!got_write)) {
31811643b43fSAl Viro 			create_error = -EROFS;
31821643b43fSAl Viro 			open_flag &= ~O_CREAT;
31831643b43fSAl Viro 			if (open_flag & (O_EXCL | O_TRUNC))
31841643b43fSAl Viro 				goto no_open;
31851643b43fSAl Viro 			/* No side effects, safe to clear O_CREAT */
31861643b43fSAl Viro 		} else {
31871643b43fSAl Viro 			create_error = may_o_create(&nd->path, dentry, mode);
31881643b43fSAl Viro 			if (create_error) {
31891643b43fSAl Viro 				open_flag &= ~O_CREAT;
31901643b43fSAl Viro 				if (open_flag & O_EXCL)
31911643b43fSAl Viro 					goto no_open;
31921643b43fSAl Viro 			}
31931643b43fSAl Viro 		}
31941643b43fSAl Viro 	} else if ((open_flag & (O_TRUNC|O_WRONLY|O_RDWR)) &&
31951643b43fSAl Viro 		   unlikely(!got_write)) {
31961643b43fSAl Viro 		/*
31971643b43fSAl Viro 		 * No O_CREATE -> atomicity not a requirement -> fall
31981643b43fSAl Viro 		 * back to lookup + open
31991643b43fSAl Viro 		 */
32001643b43fSAl Viro 		goto no_open;
3201d18e9008SMiklos Szeredi 	}
3202d18e9008SMiklos Szeredi 
32031643b43fSAl Viro 	if (dir_inode->i_op->atomic_open) {
32041643b43fSAl Viro 		error = atomic_open(nd, dentry, path, file, op, open_flag,
32053ec2eef1SAl Viro 				    mode);
32061643b43fSAl Viro 		if (unlikely(error == -ENOENT) && create_error)
32071643b43fSAl Viro 			error = create_error;
32081643b43fSAl Viro 		return error;
32091643b43fSAl Viro 	}
321054ef4872SMiklos Szeredi 
32111643b43fSAl Viro no_open:
32126fbd0714SAl Viro 	if (d_in_lookup(dentry)) {
321312fa5e24SAl Viro 		struct dentry *res = dir_inode->i_op->lookup(dir_inode, dentry,
321412fa5e24SAl Viro 							     nd->flags);
32156fbd0714SAl Viro 		d_lookup_done(dentry);
321612fa5e24SAl Viro 		if (unlikely(res)) {
321712fa5e24SAl Viro 			if (IS_ERR(res)) {
321812fa5e24SAl Viro 				error = PTR_ERR(res);
321912fa5e24SAl Viro 				goto out_dput;
322012fa5e24SAl Viro 			}
322112fa5e24SAl Viro 			dput(dentry);
322212fa5e24SAl Viro 			dentry = res;
322312fa5e24SAl Viro 		}
322454ef4872SMiklos Szeredi 	}
322554ef4872SMiklos Szeredi 
3226d58ffd35SMiklos Szeredi 	/* Negative dentry, just create the file */
32271643b43fSAl Viro 	if (!dentry->d_inode && (open_flag & O_CREAT)) {
322873a09dd9SAl Viro 		file->f_mode |= FMODE_CREATED;
3229ce8644fcSAl Viro 		audit_inode_child(dir_inode, dentry, AUDIT_TYPE_CHILD_CREATE);
3230ce8644fcSAl Viro 		if (!dir_inode->i_op->create) {
3231ce8644fcSAl Viro 			error = -EACCES;
3232d58ffd35SMiklos Szeredi 			goto out_dput;
323364894cf8SAl Viro 		}
3234ce8644fcSAl Viro 		error = dir_inode->i_op->create(dir_inode, dentry, mode,
32351643b43fSAl Viro 						open_flag & O_EXCL);
3236d58ffd35SMiklos Szeredi 		if (error)
3237d58ffd35SMiklos Szeredi 			goto out_dput;
3238ce8644fcSAl Viro 		fsnotify_create(dir_inode, dentry);
3239d58ffd35SMiklos Szeredi 	}
32401643b43fSAl Viro 	if (unlikely(create_error) && !dentry->d_inode) {
32411643b43fSAl Viro 		error = create_error;
3242d58ffd35SMiklos Szeredi 		goto out_dput;
3243d58ffd35SMiklos Szeredi 	}
3244d18e9008SMiklos Szeredi out_no_open:
3245d58ffd35SMiklos Szeredi 	path->dentry = dentry;
3246d58ffd35SMiklos Szeredi 	path->mnt = nd->path.mnt;
324700a07c15SAl Viro 	return 0;
3248d58ffd35SMiklos Szeredi 
3249d58ffd35SMiklos Szeredi out_dput:
3250d58ffd35SMiklos Szeredi 	dput(dentry);
32512675a4ebSAl Viro 	return error;
3252d58ffd35SMiklos Szeredi }
3253d58ffd35SMiklos Szeredi 
3254d58ffd35SMiklos Szeredi /*
3255fe2d35ffSAl Viro  * Handle the last step of open()
325631e6b01fSNick Piggin  */
3257896475d5SAl Viro static int do_last(struct nameidata *nd,
32583ec2eef1SAl Viro 		   struct file *file, const struct open_flags *op)
3259fb1cc555SAl Viro {
3260a1e28038SAl Viro 	struct dentry *dir = nd->path.dentry;
3261ca344a89SAl Viro 	int open_flag = op->open_flag;
326277d660a8SMiklos Szeredi 	bool will_truncate = (open_flag & O_TRUNC) != 0;
326364894cf8SAl Viro 	bool got_write = false;
3264bcda7652SAl Viro 	int acc_mode = op->acc_mode;
3265254cf582SAl Viro 	unsigned seq;
3266a1eb3315SMiklos Szeredi 	struct inode *inode;
3267896475d5SAl Viro 	struct path path;
326816c2cd71SAl Viro 	int error;
3269fb1cc555SAl Viro 
3270c3e380b0SAl Viro 	nd->flags &= ~LOOKUP_PARENT;
3271c3e380b0SAl Viro 	nd->flags |= op->intent;
3272c3e380b0SAl Viro 
3273bc77daa7SAl Viro 	if (nd->last_type != LAST_NORM) {
3274fe2d35ffSAl Viro 		error = handle_dots(nd, nd->last_type);
3275deb106c6SAl Viro 		if (unlikely(error))
32762675a4ebSAl Viro 			return error;
3277e83db167SMiklos Szeredi 		goto finish_open;
32781f36f774SAl Viro 	}
3279a2c36b45SAl Viro 
3280ca344a89SAl Viro 	if (!(open_flag & O_CREAT)) {
3281fe2d35ffSAl Viro 		if (nd->last.name[nd->last.len])
3282fe2d35ffSAl Viro 			nd->flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
3283fe2d35ffSAl Viro 		/* we _can_ be in RCU mode here */
3284254cf582SAl Viro 		error = lookup_fast(nd, &path, &inode, &seq);
3285e9742b53SAl Viro 		if (likely(error > 0))
328671574865SMiklos Szeredi 			goto finish_lookup;
328771574865SMiklos Szeredi 
3288ce57dfc1SAl Viro 		if (error < 0)
3289deb106c6SAl Viro 			return error;
3290a1eb3315SMiklos Szeredi 
329137d7fffcSMiklos Szeredi 		BUG_ON(nd->inode != dir->d_inode);
32926583fe22SAl Viro 		BUG_ON(nd->flags & LOOKUP_RCU);
3293b6183df7SMiklos Szeredi 	} else {
3294fe2d35ffSAl Viro 		/* create side of things */
3295a3fbbde7SAl Viro 		/*
3296b6183df7SMiklos Szeredi 		 * This will *only* deal with leaving RCU mode - LOOKUP_JUMPED
3297b6183df7SMiklos Szeredi 		 * has been cleared when we got to the last component we are
3298b6183df7SMiklos Szeredi 		 * about to look up
3299a3fbbde7SAl Viro 		 */
33009f1fafeeSAl Viro 		error = complete_walk(nd);
3301e8bb73dfSAl Viro 		if (error)
33022675a4ebSAl Viro 			return error;
3303fe2d35ffSAl Viro 
330476ae2a5aSAl Viro 		audit_inode(nd->name, dir, LOOKUP_PARENT);
33051f36f774SAl Viro 		/* trailing slashes? */
3306deb106c6SAl Viro 		if (unlikely(nd->last.name[nd->last.len]))
3307deb106c6SAl Viro 			return -EISDIR;
3308b6183df7SMiklos Szeredi 	}
33091f36f774SAl Viro 
33109cf843e3SAl Viro 	if (open_flag & (O_CREAT | O_TRUNC | O_WRONLY | O_RDWR)) {
331164894cf8SAl Viro 		error = mnt_want_write(nd->path.mnt);
331264894cf8SAl Viro 		if (!error)
331364894cf8SAl Viro 			got_write = true;
331464894cf8SAl Viro 		/*
331564894cf8SAl Viro 		 * do _not_ fail yet - we might not need that or fail with
331664894cf8SAl Viro 		 * a different error; let lookup_open() decide; we'll be
331764894cf8SAl Viro 		 * dropping this one anyway.
331864894cf8SAl Viro 		 */
331964894cf8SAl Viro 	}
33209cf843e3SAl Viro 	if (open_flag & O_CREAT)
33215955102cSAl Viro 		inode_lock(dir->d_inode);
33229cf843e3SAl Viro 	else
33239cf843e3SAl Viro 		inode_lock_shared(dir->d_inode);
33243ec2eef1SAl Viro 	error = lookup_open(nd, &path, file, op, got_write);
33259cf843e3SAl Viro 	if (open_flag & O_CREAT)
33265955102cSAl Viro 		inode_unlock(dir->d_inode);
33279cf843e3SAl Viro 	else
33289cf843e3SAl Viro 		inode_unlock_shared(dir->d_inode);
3329fb1cc555SAl Viro 
33302675a4ebSAl Viro 	if (error)
3331d58ffd35SMiklos Szeredi 		goto out;
33326c0d46c4SAl Viro 
333300a07c15SAl Viro 	if (file->f_mode & FMODE_OPENED) {
333473a09dd9SAl Viro 		if ((file->f_mode & FMODE_CREATED) ||
3335496ad9aaSAl Viro 		    !S_ISREG(file_inode(file)->i_mode))
333677d660a8SMiklos Szeredi 			will_truncate = false;
3337d18e9008SMiklos Szeredi 
333876ae2a5aSAl Viro 		audit_inode(nd->name, file->f_path.dentry, 0);
3339d18e9008SMiklos Szeredi 		goto opened;
3340d18e9008SMiklos Szeredi 	}
3341d18e9008SMiklos Szeredi 
334273a09dd9SAl Viro 	if (file->f_mode & FMODE_CREATED) {
33439b44f1b3SAl Viro 		/* Don't check for write permission, don't truncate */
3344ca344a89SAl Viro 		open_flag &= ~O_TRUNC;
334577d660a8SMiklos Szeredi 		will_truncate = false;
334662fb4a15SAl Viro 		acc_mode = 0;
3347896475d5SAl Viro 		path_to_nameidata(&path, nd);
3348e83db167SMiklos Szeredi 		goto finish_open_created;
3349fb1cc555SAl Viro 	}
3350fb1cc555SAl Viro 
3351fb1cc555SAl Viro 	/*
3352d18e9008SMiklos Szeredi 	 * If atomic_open() acquired write access it is dropped now due to
3353d18e9008SMiklos Szeredi 	 * possible mount and symlink following (this might be optimized away if
3354d18e9008SMiklos Szeredi 	 * necessary...)
3355d18e9008SMiklos Szeredi 	 */
335664894cf8SAl Viro 	if (got_write) {
3357d18e9008SMiklos Szeredi 		mnt_drop_write(nd->path.mnt);
335864894cf8SAl Viro 		got_write = false;
3359d18e9008SMiklos Szeredi 	}
3360d18e9008SMiklos Szeredi 
3361e6ec03a2SAl Viro 	error = follow_managed(&path, nd);
3362e6ec03a2SAl Viro 	if (unlikely(error < 0))
3363e6ec03a2SAl Viro 		return error;
3364e6ec03a2SAl Viro 
33656583fe22SAl Viro 	if (unlikely(d_is_negative(path.dentry))) {
33666583fe22SAl Viro 		path_to_nameidata(&path, nd);
33676583fe22SAl Viro 		return -ENOENT;
33686583fe22SAl Viro 	}
33696583fe22SAl Viro 
33706583fe22SAl Viro 	/*
33716583fe22SAl Viro 	 * create/update audit record if it already exists.
33726583fe22SAl Viro 	 */
33736583fe22SAl Viro 	audit_inode(nd->name, path.dentry, 0);
33746583fe22SAl Viro 
3375deb106c6SAl Viro 	if (unlikely((open_flag & (O_EXCL | O_CREAT)) == (O_EXCL | O_CREAT))) {
3376deb106c6SAl Viro 		path_to_nameidata(&path, nd);
3377deb106c6SAl Viro 		return -EEXIST;
3378deb106c6SAl Viro 	}
3379fb1cc555SAl Viro 
3380254cf582SAl Viro 	seq = 0;	/* out of RCU mode, so the value doesn't matter */
3381d4565649SAl Viro 	inode = d_backing_inode(path.dentry);
3382766c4cbfSAl Viro finish_lookup:
33838f64fb1cSAl Viro 	error = step_into(nd, &path, 0, inode, seq);
3384deb106c6SAl Viro 	if (unlikely(error))
3385d63ff28fSAl Viro 		return error;
3386bc77daa7SAl Viro finish_open:
33878f64fb1cSAl Viro 	/* Why this, you ask?  _Now_ we might have grown LOOKUP_JUMPED... */
3388a3fbbde7SAl Viro 	error = complete_walk(nd);
3389fac7d191SAl Viro 	if (error)
33902675a4ebSAl Viro 		return error;
339176ae2a5aSAl Viro 	audit_inode(nd->name, nd->path.dentry, 0);
339230aba665SSalvatore Mesoraca 	if (open_flag & O_CREAT) {
3393fb1cc555SAl Viro 		error = -EISDIR;
339430aba665SSalvatore Mesoraca 		if (d_is_dir(nd->path.dentry))
33952675a4ebSAl Viro 			goto out;
339630aba665SSalvatore Mesoraca 		error = may_create_in_sticky(dir,
339730aba665SSalvatore Mesoraca 					     d_backing_inode(nd->path.dentry));
339830aba665SSalvatore Mesoraca 		if (unlikely(error))
339930aba665SSalvatore Mesoraca 			goto out;
340030aba665SSalvatore Mesoraca 	}
3401af2f5542SMiklos Szeredi 	error = -ENOTDIR;
340244b1d530SMiklos Szeredi 	if ((nd->flags & LOOKUP_DIRECTORY) && !d_can_lookup(nd->path.dentry))
34032675a4ebSAl Viro 		goto out;
34044bbcbd3bSDavid Howells 	if (!d_is_reg(nd->path.dentry))
340577d660a8SMiklos Szeredi 		will_truncate = false;
34066c0d46c4SAl Viro 
34070f9d1a10SAl Viro 	if (will_truncate) {
34080f9d1a10SAl Viro 		error = mnt_want_write(nd->path.mnt);
34090f9d1a10SAl Viro 		if (error)
34102675a4ebSAl Viro 			goto out;
341164894cf8SAl Viro 		got_write = true;
34120f9d1a10SAl Viro 	}
3413e83db167SMiklos Szeredi finish_open_created:
3414bcda7652SAl Viro 	error = may_open(&nd->path, acc_mode, open_flag);
3415ca344a89SAl Viro 	if (error)
34162675a4ebSAl Viro 		goto out;
3417aad888f8SAl Viro 	BUG_ON(file->f_mode & FMODE_OPENED); /* once it's opened, it's opened */
3418ae2bb293SAl Viro 	error = vfs_open(&nd->path, file);
3419fac7d191SAl Viro 	if (error)
3420015c3bbcSMiklos Szeredi 		goto out;
3421a8277b9bSMiklos Szeredi opened:
34226035a27bSAl Viro 	error = ima_file_check(file, op->acc_mode);
3423fe9ec829SAl Viro 	if (!error && will_truncate)
34242675a4ebSAl Viro 		error = handle_truncate(file);
3425ca344a89SAl Viro out:
3426c80567c8SAl Viro 	if (unlikely(error > 0)) {
3427c80567c8SAl Viro 		WARN_ON(1);
3428c80567c8SAl Viro 		error = -EINVAL;
3429c80567c8SAl Viro 	}
343064894cf8SAl Viro 	if (got_write)
34310f9d1a10SAl Viro 		mnt_drop_write(nd->path.mnt);
34322675a4ebSAl Viro 	return error;
3433fb1cc555SAl Viro }
3434fb1cc555SAl Viro 
3435af7bd4dcSAmir Goldstein struct dentry *vfs_tmpfile(struct dentry *dentry, umode_t mode, int open_flag)
3436af7bd4dcSAmir Goldstein {
3437af7bd4dcSAmir Goldstein 	struct dentry *child = NULL;
3438af7bd4dcSAmir Goldstein 	struct inode *dir = dentry->d_inode;
3439af7bd4dcSAmir Goldstein 	struct inode *inode;
3440af7bd4dcSAmir Goldstein 	int error;
3441af7bd4dcSAmir Goldstein 
3442af7bd4dcSAmir Goldstein 	/* we want directory to be writable */
3443af7bd4dcSAmir Goldstein 	error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
3444af7bd4dcSAmir Goldstein 	if (error)
3445af7bd4dcSAmir Goldstein 		goto out_err;
3446af7bd4dcSAmir Goldstein 	error = -EOPNOTSUPP;
3447af7bd4dcSAmir Goldstein 	if (!dir->i_op->tmpfile)
3448af7bd4dcSAmir Goldstein 		goto out_err;
3449af7bd4dcSAmir Goldstein 	error = -ENOMEM;
3450cdf01226SDavid Howells 	child = d_alloc(dentry, &slash_name);
3451af7bd4dcSAmir Goldstein 	if (unlikely(!child))
3452af7bd4dcSAmir Goldstein 		goto out_err;
3453af7bd4dcSAmir Goldstein 	error = dir->i_op->tmpfile(dir, child, mode);
3454af7bd4dcSAmir Goldstein 	if (error)
3455af7bd4dcSAmir Goldstein 		goto out_err;
3456af7bd4dcSAmir Goldstein 	error = -ENOENT;
3457af7bd4dcSAmir Goldstein 	inode = child->d_inode;
3458af7bd4dcSAmir Goldstein 	if (unlikely(!inode))
3459af7bd4dcSAmir Goldstein 		goto out_err;
3460af7bd4dcSAmir Goldstein 	if (!(open_flag & O_EXCL)) {
3461af7bd4dcSAmir Goldstein 		spin_lock(&inode->i_lock);
3462af7bd4dcSAmir Goldstein 		inode->i_state |= I_LINKABLE;
3463af7bd4dcSAmir Goldstein 		spin_unlock(&inode->i_lock);
3464af7bd4dcSAmir Goldstein 	}
3465af7bd4dcSAmir Goldstein 	return child;
3466af7bd4dcSAmir Goldstein 
3467af7bd4dcSAmir Goldstein out_err:
3468af7bd4dcSAmir Goldstein 	dput(child);
3469af7bd4dcSAmir Goldstein 	return ERR_PTR(error);
3470af7bd4dcSAmir Goldstein }
3471af7bd4dcSAmir Goldstein EXPORT_SYMBOL(vfs_tmpfile);
3472af7bd4dcSAmir Goldstein 
3473c8a53ee5SAl Viro static int do_tmpfile(struct nameidata *nd, unsigned flags,
347460545d0dSAl Viro 		const struct open_flags *op,
34753ec2eef1SAl Viro 		struct file *file)
347660545d0dSAl Viro {
3477625b6d10SAl Viro 	struct dentry *child;
3478625b6d10SAl Viro 	struct path path;
3479c8a53ee5SAl Viro 	int error = path_lookupat(nd, flags | LOOKUP_DIRECTORY, &path);
348060545d0dSAl Viro 	if (unlikely(error))
348160545d0dSAl Viro 		return error;
3482625b6d10SAl Viro 	error = mnt_want_write(path.mnt);
348360545d0dSAl Viro 	if (unlikely(error))
348460545d0dSAl Viro 		goto out;
3485af7bd4dcSAmir Goldstein 	child = vfs_tmpfile(path.dentry, op->mode, op->open_flag);
3486af7bd4dcSAmir Goldstein 	error = PTR_ERR(child);
3487684e73beSHirofumi Nakagawa 	if (IS_ERR(child))
348860545d0dSAl Viro 		goto out2;
3489625b6d10SAl Viro 	dput(path.dentry);
3490625b6d10SAl Viro 	path.dentry = child;
3491c8a53ee5SAl Viro 	audit_inode(nd->name, child, 0);
349269a91c23SEric Rannaud 	/* Don't check for other permissions, the inode was just created */
349362fb4a15SAl Viro 	error = may_open(&path, 0, op->open_flag);
349460545d0dSAl Viro 	if (error)
349560545d0dSAl Viro 		goto out2;
3496625b6d10SAl Viro 	file->f_path.mnt = path.mnt;
3497be12af3eSAl Viro 	error = finish_open(file, child, NULL);
349860545d0dSAl Viro out2:
3499625b6d10SAl Viro 	mnt_drop_write(path.mnt);
350060545d0dSAl Viro out:
3501625b6d10SAl Viro 	path_put(&path);
350260545d0dSAl Viro 	return error;
350360545d0dSAl Viro }
350460545d0dSAl Viro 
35056ac08709SAl Viro static int do_o_path(struct nameidata *nd, unsigned flags, struct file *file)
35066ac08709SAl Viro {
35076ac08709SAl Viro 	struct path path;
35086ac08709SAl Viro 	int error = path_lookupat(nd, flags, &path);
35096ac08709SAl Viro 	if (!error) {
35106ac08709SAl Viro 		audit_inode(nd->name, path.dentry, 0);
3511ae2bb293SAl Viro 		error = vfs_open(&path, file);
35126ac08709SAl Viro 		path_put(&path);
35136ac08709SAl Viro 	}
35146ac08709SAl Viro 	return error;
35156ac08709SAl Viro }
35166ac08709SAl Viro 
3517c8a53ee5SAl Viro static struct file *path_openat(struct nameidata *nd,
3518c8a53ee5SAl Viro 			const struct open_flags *op, unsigned flags)
35191da177e4SLinus Torvalds {
352030d90494SAl Viro 	struct file *file;
352113aab428SAl Viro 	int error;
352231e6b01fSNick Piggin 
3523ea73ea72SAl Viro 	file = alloc_empty_file(op->open_flag, current_cred());
35241afc99beSAl Viro 	if (IS_ERR(file))
35251afc99beSAl Viro 		return file;
352631e6b01fSNick Piggin 
3527bb458c64SAl Viro 	if (unlikely(file->f_flags & __O_TMPFILE)) {
35283ec2eef1SAl Viro 		error = do_tmpfile(nd, flags, op, file);
35295f336e72SAl Viro 	} else if (unlikely(file->f_flags & O_PATH)) {
35306ac08709SAl Viro 		error = do_o_path(nd, flags, file);
35315f336e72SAl Viro 	} else {
35325f336e72SAl Viro 		const char *s = path_init(nd, flags);
35333bdba28bSAl Viro 		while (!(error = link_path_walk(s, nd)) &&
35343ec2eef1SAl Viro 			(error = do_last(nd, file, op)) > 0) {
353573d049a4SAl Viro 			nd->flags &= ~(LOOKUP_OPEN|LOOKUP_CREATE|LOOKUP_EXCL);
35363bdba28bSAl Viro 			s = trailing_symlink(nd);
35373bdba28bSAl Viro 		}
3538deb106c6SAl Viro 		terminate_walk(nd);
35395f336e72SAl Viro 	}
35407c1c01ecSAl Viro 	if (likely(!error)) {
3541aad888f8SAl Viro 		if (likely(file->f_mode & FMODE_OPENED))
35427c1c01ecSAl Viro 			return file;
35437c1c01ecSAl Viro 		WARN_ON(1);
35447c1c01ecSAl Viro 		error = -EINVAL;
3545015c3bbcSMiklos Szeredi 	}
35467c1c01ecSAl Viro 	fput(file);
35472675a4ebSAl Viro 	if (error == -EOPENSTALE) {
35482675a4ebSAl Viro 		if (flags & LOOKUP_RCU)
35492675a4ebSAl Viro 			error = -ECHILD;
35502675a4ebSAl Viro 		else
35512675a4ebSAl Viro 			error = -ESTALE;
35522675a4ebSAl Viro 	}
35537c1c01ecSAl Viro 	return ERR_PTR(error);
3554de459215SKirill Korotaev }
35551da177e4SLinus Torvalds 
3556669abf4eSJeff Layton struct file *do_filp_open(int dfd, struct filename *pathname,
3557f9652e10SAl Viro 		const struct open_flags *op)
355813aab428SAl Viro {
35599883d185SAl Viro 	struct nameidata nd;
3560f9652e10SAl Viro 	int flags = op->lookup_flags;
356113aab428SAl Viro 	struct file *filp;
356213aab428SAl Viro 
35639883d185SAl Viro 	set_nameidata(&nd, dfd, pathname);
3564c8a53ee5SAl Viro 	filp = path_openat(&nd, op, flags | LOOKUP_RCU);
356513aab428SAl Viro 	if (unlikely(filp == ERR_PTR(-ECHILD)))
3566c8a53ee5SAl Viro 		filp = path_openat(&nd, op, flags);
356713aab428SAl Viro 	if (unlikely(filp == ERR_PTR(-ESTALE)))
3568c8a53ee5SAl Viro 		filp = path_openat(&nd, op, flags | LOOKUP_REVAL);
35699883d185SAl Viro 	restore_nameidata();
357013aab428SAl Viro 	return filp;
357113aab428SAl Viro }
357213aab428SAl Viro 
357373d049a4SAl Viro struct file *do_file_open_root(struct dentry *dentry, struct vfsmount *mnt,
3574f9652e10SAl Viro 		const char *name, const struct open_flags *op)
357573d049a4SAl Viro {
35769883d185SAl Viro 	struct nameidata nd;
357773d049a4SAl Viro 	struct file *file;
357851689104SPaul Moore 	struct filename *filename;
3579f9652e10SAl Viro 	int flags = op->lookup_flags | LOOKUP_ROOT;
358073d049a4SAl Viro 
358173d049a4SAl Viro 	nd.root.mnt = mnt;
358273d049a4SAl Viro 	nd.root.dentry = dentry;
358373d049a4SAl Viro 
3584b18825a7SDavid Howells 	if (d_is_symlink(dentry) && op->intent & LOOKUP_OPEN)
358573d049a4SAl Viro 		return ERR_PTR(-ELOOP);
358673d049a4SAl Viro 
358751689104SPaul Moore 	filename = getname_kernel(name);
3588a1c83681SViresh Kumar 	if (IS_ERR(filename))
358951689104SPaul Moore 		return ERR_CAST(filename);
359051689104SPaul Moore 
35919883d185SAl Viro 	set_nameidata(&nd, -1, filename);
3592c8a53ee5SAl Viro 	file = path_openat(&nd, op, flags | LOOKUP_RCU);
359373d049a4SAl Viro 	if (unlikely(file == ERR_PTR(-ECHILD)))
3594c8a53ee5SAl Viro 		file = path_openat(&nd, op, flags);
359573d049a4SAl Viro 	if (unlikely(file == ERR_PTR(-ESTALE)))
3596c8a53ee5SAl Viro 		file = path_openat(&nd, op, flags | LOOKUP_REVAL);
35979883d185SAl Viro 	restore_nameidata();
359851689104SPaul Moore 	putname(filename);
359973d049a4SAl Viro 	return file;
360073d049a4SAl Viro }
360173d049a4SAl Viro 
3602fa14a0b8SAl Viro static struct dentry *filename_create(int dfd, struct filename *name,
36031ac12b4bSJeff Layton 				struct path *path, unsigned int lookup_flags)
36041da177e4SLinus Torvalds {
3605c663e5d8SChristoph Hellwig 	struct dentry *dentry = ERR_PTR(-EEXIST);
3606391172c4SAl Viro 	struct qstr last;
3607391172c4SAl Viro 	int type;
3608c30dabfeSJan Kara 	int err2;
36091ac12b4bSJeff Layton 	int error;
36101ac12b4bSJeff Layton 	bool is_dir = (lookup_flags & LOOKUP_DIRECTORY);
36111ac12b4bSJeff Layton 
36121ac12b4bSJeff Layton 	/*
36131ac12b4bSJeff Layton 	 * Note that only LOOKUP_REVAL and LOOKUP_DIRECTORY matter here. Any
36141ac12b4bSJeff Layton 	 * other flags passed in are ignored!
36151ac12b4bSJeff Layton 	 */
36161ac12b4bSJeff Layton 	lookup_flags &= LOOKUP_REVAL;
36171ac12b4bSJeff Layton 
36185c31b6ceSAl Viro 	name = filename_parentat(dfd, name, lookup_flags, path, &last, &type);
36195c31b6ceSAl Viro 	if (IS_ERR(name))
36205c31b6ceSAl Viro 		return ERR_CAST(name);
36211da177e4SLinus Torvalds 
3622c663e5d8SChristoph Hellwig 	/*
3623c663e5d8SChristoph Hellwig 	 * Yucky last component or no last component at all?
3624c663e5d8SChristoph Hellwig 	 * (foo/., foo/.., /////)
3625c663e5d8SChristoph Hellwig 	 */
36265c31b6ceSAl Viro 	if (unlikely(type != LAST_NORM))
3627ed75e95dSAl Viro 		goto out;
3628c663e5d8SChristoph Hellwig 
3629c30dabfeSJan Kara 	/* don't fail immediately if it's r/o, at least try to report other errors */
3630391172c4SAl Viro 	err2 = mnt_want_write(path->mnt);
3631c663e5d8SChristoph Hellwig 	/*
3632c663e5d8SChristoph Hellwig 	 * Do the final lookup.
3633c663e5d8SChristoph Hellwig 	 */
3634391172c4SAl Viro 	lookup_flags |= LOOKUP_CREATE | LOOKUP_EXCL;
36355955102cSAl Viro 	inode_lock_nested(path->dentry->d_inode, I_MUTEX_PARENT);
3636391172c4SAl Viro 	dentry = __lookup_hash(&last, path->dentry, lookup_flags);
36371da177e4SLinus Torvalds 	if (IS_ERR(dentry))
3638a8104a9fSAl Viro 		goto unlock;
3639c663e5d8SChristoph Hellwig 
3640a8104a9fSAl Viro 	error = -EEXIST;
3641b18825a7SDavid Howells 	if (d_is_positive(dentry))
3642a8104a9fSAl Viro 		goto fail;
3643b18825a7SDavid Howells 
3644c663e5d8SChristoph Hellwig 	/*
3645c663e5d8SChristoph Hellwig 	 * Special case - lookup gave negative, but... we had foo/bar/
3646c663e5d8SChristoph Hellwig 	 * From the vfs_mknod() POV we just have a negative dentry -
3647c663e5d8SChristoph Hellwig 	 * all is fine. Let's be bastards - you had / on the end, you've
3648c663e5d8SChristoph Hellwig 	 * been asking for (non-existent) directory. -ENOENT for you.
3649c663e5d8SChristoph Hellwig 	 */
3650391172c4SAl Viro 	if (unlikely(!is_dir && last.name[last.len])) {
3651a8104a9fSAl Viro 		error = -ENOENT;
3652ed75e95dSAl Viro 		goto fail;
3653e9baf6e5SAl Viro 	}
3654c30dabfeSJan Kara 	if (unlikely(err2)) {
3655c30dabfeSJan Kara 		error = err2;
3656a8104a9fSAl Viro 		goto fail;
3657c30dabfeSJan Kara 	}
3658181c37b6SAl Viro 	putname(name);
3659e9baf6e5SAl Viro 	return dentry;
36601da177e4SLinus Torvalds fail:
3661a8104a9fSAl Viro 	dput(dentry);
3662a8104a9fSAl Viro 	dentry = ERR_PTR(error);
3663a8104a9fSAl Viro unlock:
36645955102cSAl Viro 	inode_unlock(path->dentry->d_inode);
3665c30dabfeSJan Kara 	if (!err2)
3666391172c4SAl Viro 		mnt_drop_write(path->mnt);
3667ed75e95dSAl Viro out:
3668391172c4SAl Viro 	path_put(path);
3669181c37b6SAl Viro 	putname(name);
3670ed75e95dSAl Viro 	return dentry;
3671dae6ad8fSAl Viro }
3672fa14a0b8SAl Viro 
3673fa14a0b8SAl Viro struct dentry *kern_path_create(int dfd, const char *pathname,
3674fa14a0b8SAl Viro 				struct path *path, unsigned int lookup_flags)
3675fa14a0b8SAl Viro {
3676181c37b6SAl Viro 	return filename_create(dfd, getname_kernel(pathname),
3677181c37b6SAl Viro 				path, lookup_flags);
3678fa14a0b8SAl Viro }
3679dae6ad8fSAl Viro EXPORT_SYMBOL(kern_path_create);
3680dae6ad8fSAl Viro 
3681921a1650SAl Viro void done_path_create(struct path *path, struct dentry *dentry)
3682921a1650SAl Viro {
3683921a1650SAl Viro 	dput(dentry);
36845955102cSAl Viro 	inode_unlock(path->dentry->d_inode);
3685a8104a9fSAl Viro 	mnt_drop_write(path->mnt);
3686921a1650SAl Viro 	path_put(path);
3687921a1650SAl Viro }
3688921a1650SAl Viro EXPORT_SYMBOL(done_path_create);
3689921a1650SAl Viro 
3690520ae687SAl Viro inline struct dentry *user_path_create(int dfd, const char __user *pathname,
36911ac12b4bSJeff Layton 				struct path *path, unsigned int lookup_flags)
3692dae6ad8fSAl Viro {
3693181c37b6SAl Viro 	return filename_create(dfd, getname(pathname), path, lookup_flags);
3694dae6ad8fSAl Viro }
3695dae6ad8fSAl Viro EXPORT_SYMBOL(user_path_create);
3696dae6ad8fSAl Viro 
36971a67aafbSAl Viro int vfs_mknod(struct inode *dir, struct dentry *dentry, umode_t mode, dev_t dev)
36981da177e4SLinus Torvalds {
3699a95164d9SMiklos Szeredi 	int error = may_create(dir, dentry);
37001da177e4SLinus Torvalds 
37011da177e4SLinus Torvalds 	if (error)
37021da177e4SLinus Torvalds 		return error;
37031da177e4SLinus Torvalds 
370455956b59SEric W. Biederman 	if ((S_ISCHR(mode) || S_ISBLK(mode)) &&
370555956b59SEric W. Biederman 	    !ns_capable(dentry->d_sb->s_user_ns, CAP_MKNOD))
37061da177e4SLinus Torvalds 		return -EPERM;
37071da177e4SLinus Torvalds 
3708acfa4380SAl Viro 	if (!dir->i_op->mknod)
37091da177e4SLinus Torvalds 		return -EPERM;
37101da177e4SLinus Torvalds 
371108ce5f16SSerge E. Hallyn 	error = devcgroup_inode_mknod(mode, dev);
371208ce5f16SSerge E. Hallyn 	if (error)
371308ce5f16SSerge E. Hallyn 		return error;
371408ce5f16SSerge E. Hallyn 
37151da177e4SLinus Torvalds 	error = security_inode_mknod(dir, dentry, mode, dev);
37161da177e4SLinus Torvalds 	if (error)
37171da177e4SLinus Torvalds 		return error;
37181da177e4SLinus Torvalds 
37191da177e4SLinus Torvalds 	error = dir->i_op->mknod(dir, dentry, mode, dev);
3720a74574aaSStephen Smalley 	if (!error)
3721f38aa942SAmy Griffis 		fsnotify_create(dir, dentry);
37221da177e4SLinus Torvalds 	return error;
37231da177e4SLinus Torvalds }
37244d359507SAl Viro EXPORT_SYMBOL(vfs_mknod);
37251da177e4SLinus Torvalds 
3726f69aac00SAl Viro static int may_mknod(umode_t mode)
3727463c3197SDave Hansen {
3728463c3197SDave Hansen 	switch (mode & S_IFMT) {
3729463c3197SDave Hansen 	case S_IFREG:
3730463c3197SDave Hansen 	case S_IFCHR:
3731463c3197SDave Hansen 	case S_IFBLK:
3732463c3197SDave Hansen 	case S_IFIFO:
3733463c3197SDave Hansen 	case S_IFSOCK:
3734463c3197SDave Hansen 	case 0: /* zero mode translates to S_IFREG */
3735463c3197SDave Hansen 		return 0;
3736463c3197SDave Hansen 	case S_IFDIR:
3737463c3197SDave Hansen 		return -EPERM;
3738463c3197SDave Hansen 	default:
3739463c3197SDave Hansen 		return -EINVAL;
3740463c3197SDave Hansen 	}
3741463c3197SDave Hansen }
3742463c3197SDave Hansen 
374387c4e192SDominik Brodowski long do_mknodat(int dfd, const char __user *filename, umode_t mode,
374487c4e192SDominik Brodowski 		unsigned int dev)
37451da177e4SLinus Torvalds {
37461da177e4SLinus Torvalds 	struct dentry *dentry;
3747dae6ad8fSAl Viro 	struct path path;
3748dae6ad8fSAl Viro 	int error;
3749972567f1SJeff Layton 	unsigned int lookup_flags = 0;
37501da177e4SLinus Torvalds 
37518e4bfca1SAl Viro 	error = may_mknod(mode);
37528e4bfca1SAl Viro 	if (error)
37538e4bfca1SAl Viro 		return error;
3754972567f1SJeff Layton retry:
3755972567f1SJeff Layton 	dentry = user_path_create(dfd, filename, &path, lookup_flags);
3756dae6ad8fSAl Viro 	if (IS_ERR(dentry))
3757dae6ad8fSAl Viro 		return PTR_ERR(dentry);
37582ad94ae6SAl Viro 
3759dae6ad8fSAl Viro 	if (!IS_POSIXACL(path.dentry->d_inode))
3760ce3b0f8dSAl Viro 		mode &= ~current_umask();
3761dae6ad8fSAl Viro 	error = security_path_mknod(&path, dentry, mode, dev);
3762be6d3e56SKentaro Takeda 	if (error)
3763a8104a9fSAl Viro 		goto out;
37641da177e4SLinus Torvalds 	switch (mode & S_IFMT) {
37651da177e4SLinus Torvalds 		case 0: case S_IFREG:
3766312b63fbSAl Viro 			error = vfs_create(path.dentry->d_inode,dentry,mode,true);
376705d1a717SMimi Zohar 			if (!error)
376805d1a717SMimi Zohar 				ima_post_path_mknod(dentry);
37691da177e4SLinus Torvalds 			break;
37701da177e4SLinus Torvalds 		case S_IFCHR: case S_IFBLK:
3771dae6ad8fSAl Viro 			error = vfs_mknod(path.dentry->d_inode,dentry,mode,
37721da177e4SLinus Torvalds 					new_decode_dev(dev));
37731da177e4SLinus Torvalds 			break;
37741da177e4SLinus Torvalds 		case S_IFIFO: case S_IFSOCK:
3775dae6ad8fSAl Viro 			error = vfs_mknod(path.dentry->d_inode,dentry,mode,0);
37761da177e4SLinus Torvalds 			break;
37771da177e4SLinus Torvalds 	}
3778a8104a9fSAl Viro out:
3779921a1650SAl Viro 	done_path_create(&path, dentry);
3780972567f1SJeff Layton 	if (retry_estale(error, lookup_flags)) {
3781972567f1SJeff Layton 		lookup_flags |= LOOKUP_REVAL;
3782972567f1SJeff Layton 		goto retry;
3783972567f1SJeff Layton 	}
37841da177e4SLinus Torvalds 	return error;
37851da177e4SLinus Torvalds }
37861da177e4SLinus Torvalds 
378787c4e192SDominik Brodowski SYSCALL_DEFINE4(mknodat, int, dfd, const char __user *, filename, umode_t, mode,
378887c4e192SDominik Brodowski 		unsigned int, dev)
378987c4e192SDominik Brodowski {
379087c4e192SDominik Brodowski 	return do_mknodat(dfd, filename, mode, dev);
379187c4e192SDominik Brodowski }
379287c4e192SDominik Brodowski 
37938208a22bSAl Viro SYSCALL_DEFINE3(mknod, const char __user *, filename, umode_t, mode, unsigned, dev)
37945590ff0dSUlrich Drepper {
379587c4e192SDominik Brodowski 	return do_mknodat(AT_FDCWD, filename, mode, dev);
37965590ff0dSUlrich Drepper }
37975590ff0dSUlrich Drepper 
379818bb1db3SAl Viro int vfs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
37991da177e4SLinus Torvalds {
3800a95164d9SMiklos Szeredi 	int error = may_create(dir, dentry);
38018de52778SAl Viro 	unsigned max_links = dir->i_sb->s_max_links;
38021da177e4SLinus Torvalds 
38031da177e4SLinus Torvalds 	if (error)
38041da177e4SLinus Torvalds 		return error;
38051da177e4SLinus Torvalds 
3806acfa4380SAl Viro 	if (!dir->i_op->mkdir)
38071da177e4SLinus Torvalds 		return -EPERM;
38081da177e4SLinus Torvalds 
38091da177e4SLinus Torvalds 	mode &= (S_IRWXUGO|S_ISVTX);
38101da177e4SLinus Torvalds 	error = security_inode_mkdir(dir, dentry, mode);
38111da177e4SLinus Torvalds 	if (error)
38121da177e4SLinus Torvalds 		return error;
38131da177e4SLinus Torvalds 
38148de52778SAl Viro 	if (max_links && dir->i_nlink >= max_links)
38158de52778SAl Viro 		return -EMLINK;
38168de52778SAl Viro 
38171da177e4SLinus Torvalds 	error = dir->i_op->mkdir(dir, dentry, mode);
3818a74574aaSStephen Smalley 	if (!error)
3819f38aa942SAmy Griffis 		fsnotify_mkdir(dir, dentry);
38201da177e4SLinus Torvalds 	return error;
38211da177e4SLinus Torvalds }
38224d359507SAl Viro EXPORT_SYMBOL(vfs_mkdir);
38231da177e4SLinus Torvalds 
38240101db7aSDominik Brodowski long do_mkdirat(int dfd, const char __user *pathname, umode_t mode)
38251da177e4SLinus Torvalds {
38266902d925SDave Hansen 	struct dentry *dentry;
3827dae6ad8fSAl Viro 	struct path path;
3828dae6ad8fSAl Viro 	int error;
3829b76d8b82SJeff Layton 	unsigned int lookup_flags = LOOKUP_DIRECTORY;
38301da177e4SLinus Torvalds 
3831b76d8b82SJeff Layton retry:
3832b76d8b82SJeff Layton 	dentry = user_path_create(dfd, pathname, &path, lookup_flags);
38336902d925SDave Hansen 	if (IS_ERR(dentry))
3834dae6ad8fSAl Viro 		return PTR_ERR(dentry);
38356902d925SDave Hansen 
3836dae6ad8fSAl Viro 	if (!IS_POSIXACL(path.dentry->d_inode))
3837ce3b0f8dSAl Viro 		mode &= ~current_umask();
3838dae6ad8fSAl Viro 	error = security_path_mkdir(&path, dentry, mode);
3839a8104a9fSAl Viro 	if (!error)
3840dae6ad8fSAl Viro 		error = vfs_mkdir(path.dentry->d_inode, dentry, mode);
3841921a1650SAl Viro 	done_path_create(&path, dentry);
3842b76d8b82SJeff Layton 	if (retry_estale(error, lookup_flags)) {
3843b76d8b82SJeff Layton 		lookup_flags |= LOOKUP_REVAL;
3844b76d8b82SJeff Layton 		goto retry;
3845b76d8b82SJeff Layton 	}
38461da177e4SLinus Torvalds 	return error;
38471da177e4SLinus Torvalds }
38481da177e4SLinus Torvalds 
38490101db7aSDominik Brodowski SYSCALL_DEFINE3(mkdirat, int, dfd, const char __user *, pathname, umode_t, mode)
38500101db7aSDominik Brodowski {
38510101db7aSDominik Brodowski 	return do_mkdirat(dfd, pathname, mode);
38520101db7aSDominik Brodowski }
38530101db7aSDominik Brodowski 
3854a218d0fdSAl Viro SYSCALL_DEFINE2(mkdir, const char __user *, pathname, umode_t, mode)
38555590ff0dSUlrich Drepper {
38560101db7aSDominik Brodowski 	return do_mkdirat(AT_FDCWD, pathname, mode);
38575590ff0dSUlrich Drepper }
38585590ff0dSUlrich Drepper 
38591da177e4SLinus Torvalds int vfs_rmdir(struct inode *dir, struct dentry *dentry)
38601da177e4SLinus Torvalds {
38611da177e4SLinus Torvalds 	int error = may_delete(dir, dentry, 1);
38621da177e4SLinus Torvalds 
38631da177e4SLinus Torvalds 	if (error)
38641da177e4SLinus Torvalds 		return error;
38651da177e4SLinus Torvalds 
3866acfa4380SAl Viro 	if (!dir->i_op->rmdir)
38671da177e4SLinus Torvalds 		return -EPERM;
38681da177e4SLinus Torvalds 
38691d2ef590SAl Viro 	dget(dentry);
38705955102cSAl Viro 	inode_lock(dentry->d_inode);
3871912dbc15SSage Weil 
38721da177e4SLinus Torvalds 	error = -EBUSY;
38737af1364fSEric W. Biederman 	if (is_local_mountpoint(dentry))
3874912dbc15SSage Weil 		goto out;
3875912dbc15SSage Weil 
38761da177e4SLinus Torvalds 	error = security_inode_rmdir(dir, dentry);
3877912dbc15SSage Weil 	if (error)
3878912dbc15SSage Weil 		goto out;
3879912dbc15SSage Weil 
38801da177e4SLinus Torvalds 	error = dir->i_op->rmdir(dir, dentry);
3881912dbc15SSage Weil 	if (error)
3882912dbc15SSage Weil 		goto out;
3883912dbc15SSage Weil 
38848767712fSAl Viro 	shrink_dcache_parent(dentry);
38851da177e4SLinus Torvalds 	dentry->d_inode->i_flags |= S_DEAD;
3886d83c49f3SAl Viro 	dont_mount(dentry);
38878ed936b5SEric W. Biederman 	detach_mounts(dentry);
38881da177e4SLinus Torvalds 
3889912dbc15SSage Weil out:
38905955102cSAl Viro 	inode_unlock(dentry->d_inode);
38911d2ef590SAl Viro 	dput(dentry);
3892912dbc15SSage Weil 	if (!error)
3893912dbc15SSage Weil 		d_delete(dentry);
38941da177e4SLinus Torvalds 	return error;
38951da177e4SLinus Torvalds }
38964d359507SAl Viro EXPORT_SYMBOL(vfs_rmdir);
38971da177e4SLinus Torvalds 
3898f459dffaSDominik Brodowski long do_rmdir(int dfd, const char __user *pathname)
38991da177e4SLinus Torvalds {
39001da177e4SLinus Torvalds 	int error = 0;
390191a27b2aSJeff Layton 	struct filename *name;
39021da177e4SLinus Torvalds 	struct dentry *dentry;
3903f5beed75SAl Viro 	struct path path;
3904f5beed75SAl Viro 	struct qstr last;
3905f5beed75SAl Viro 	int type;
3906c6ee9206SJeff Layton 	unsigned int lookup_flags = 0;
3907c6ee9206SJeff Layton retry:
3908c1d4dd27SAl Viro 	name = filename_parentat(dfd, getname(pathname), lookup_flags,
3909c1d4dd27SAl Viro 				&path, &last, &type);
391091a27b2aSJeff Layton 	if (IS_ERR(name))
391191a27b2aSJeff Layton 		return PTR_ERR(name);
39121da177e4SLinus Torvalds 
3913f5beed75SAl Viro 	switch (type) {
39141da177e4SLinus Torvalds 	case LAST_DOTDOT:
39151da177e4SLinus Torvalds 		error = -ENOTEMPTY;
39161da177e4SLinus Torvalds 		goto exit1;
39171da177e4SLinus Torvalds 	case LAST_DOT:
39181da177e4SLinus Torvalds 		error = -EINVAL;
39191da177e4SLinus Torvalds 		goto exit1;
39201da177e4SLinus Torvalds 	case LAST_ROOT:
39211da177e4SLinus Torvalds 		error = -EBUSY;
39221da177e4SLinus Torvalds 		goto exit1;
39231da177e4SLinus Torvalds 	}
39240612d9fbSOGAWA Hirofumi 
3925f5beed75SAl Viro 	error = mnt_want_write(path.mnt);
3926c30dabfeSJan Kara 	if (error)
3927c30dabfeSJan Kara 		goto exit1;
39280612d9fbSOGAWA Hirofumi 
39295955102cSAl Viro 	inode_lock_nested(path.dentry->d_inode, I_MUTEX_PARENT);
3930f5beed75SAl Viro 	dentry = __lookup_hash(&last, path.dentry, lookup_flags);
39311da177e4SLinus Torvalds 	error = PTR_ERR(dentry);
39326902d925SDave Hansen 	if (IS_ERR(dentry))
39336902d925SDave Hansen 		goto exit2;
3934e6bc45d6STheodore Ts'o 	if (!dentry->d_inode) {
3935e6bc45d6STheodore Ts'o 		error = -ENOENT;
3936e6bc45d6STheodore Ts'o 		goto exit3;
3937e6bc45d6STheodore Ts'o 	}
3938f5beed75SAl Viro 	error = security_path_rmdir(&path, dentry);
3939be6d3e56SKentaro Takeda 	if (error)
3940c30dabfeSJan Kara 		goto exit3;
3941f5beed75SAl Viro 	error = vfs_rmdir(path.dentry->d_inode, dentry);
39420622753bSDave Hansen exit3:
39431da177e4SLinus Torvalds 	dput(dentry);
39446902d925SDave Hansen exit2:
39455955102cSAl Viro 	inode_unlock(path.dentry->d_inode);
3946f5beed75SAl Viro 	mnt_drop_write(path.mnt);
39471da177e4SLinus Torvalds exit1:
3948f5beed75SAl Viro 	path_put(&path);
39491da177e4SLinus Torvalds 	putname(name);
3950c6ee9206SJeff Layton 	if (retry_estale(error, lookup_flags)) {
3951c6ee9206SJeff Layton 		lookup_flags |= LOOKUP_REVAL;
3952c6ee9206SJeff Layton 		goto retry;
3953c6ee9206SJeff Layton 	}
39541da177e4SLinus Torvalds 	return error;
39551da177e4SLinus Torvalds }
39561da177e4SLinus Torvalds 
39573cdad428SHeiko Carstens SYSCALL_DEFINE1(rmdir, const char __user *, pathname)
39585590ff0dSUlrich Drepper {
39595590ff0dSUlrich Drepper 	return do_rmdir(AT_FDCWD, pathname);
39605590ff0dSUlrich Drepper }
39615590ff0dSUlrich Drepper 
3962b21996e3SJ. Bruce Fields /**
3963b21996e3SJ. Bruce Fields  * vfs_unlink - unlink a filesystem object
3964b21996e3SJ. Bruce Fields  * @dir:	parent directory
3965b21996e3SJ. Bruce Fields  * @dentry:	victim
3966b21996e3SJ. Bruce Fields  * @delegated_inode: returns victim inode, if the inode is delegated.
3967b21996e3SJ. Bruce Fields  *
3968b21996e3SJ. Bruce Fields  * The caller must hold dir->i_mutex.
3969b21996e3SJ. Bruce Fields  *
3970b21996e3SJ. Bruce Fields  * If vfs_unlink discovers a delegation, it will return -EWOULDBLOCK and
3971b21996e3SJ. Bruce Fields  * return a reference to the inode in delegated_inode.  The caller
3972b21996e3SJ. Bruce Fields  * should then break the delegation on that inode and retry.  Because
3973b21996e3SJ. Bruce Fields  * breaking a delegation may take a long time, the caller should drop
3974b21996e3SJ. Bruce Fields  * dir->i_mutex before doing so.
3975b21996e3SJ. Bruce Fields  *
3976b21996e3SJ. Bruce Fields  * Alternatively, a caller may pass NULL for delegated_inode.  This may
3977b21996e3SJ. Bruce Fields  * be appropriate for callers that expect the underlying filesystem not
3978b21996e3SJ. Bruce Fields  * to be NFS exported.
3979b21996e3SJ. Bruce Fields  */
3980b21996e3SJ. Bruce Fields int vfs_unlink(struct inode *dir, struct dentry *dentry, struct inode **delegated_inode)
39811da177e4SLinus Torvalds {
39829accbb97SJ. Bruce Fields 	struct inode *target = dentry->d_inode;
39831da177e4SLinus Torvalds 	int error = may_delete(dir, dentry, 0);
39841da177e4SLinus Torvalds 
39851da177e4SLinus Torvalds 	if (error)
39861da177e4SLinus Torvalds 		return error;
39871da177e4SLinus Torvalds 
3988acfa4380SAl Viro 	if (!dir->i_op->unlink)
39891da177e4SLinus Torvalds 		return -EPERM;
39901da177e4SLinus Torvalds 
39915955102cSAl Viro 	inode_lock(target);
39928ed936b5SEric W. Biederman 	if (is_local_mountpoint(dentry))
39931da177e4SLinus Torvalds 		error = -EBUSY;
39941da177e4SLinus Torvalds 	else {
39951da177e4SLinus Torvalds 		error = security_inode_unlink(dir, dentry);
3996bec1052eSAl Viro 		if (!error) {
39975a14696cSJ. Bruce Fields 			error = try_break_deleg(target, delegated_inode);
39985a14696cSJ. Bruce Fields 			if (error)
3999b21996e3SJ. Bruce Fields 				goto out;
40001da177e4SLinus Torvalds 			error = dir->i_op->unlink(dir, dentry);
40018ed936b5SEric W. Biederman 			if (!error) {
4002d83c49f3SAl Viro 				dont_mount(dentry);
40038ed936b5SEric W. Biederman 				detach_mounts(dentry);
40048ed936b5SEric W. Biederman 			}
4005bec1052eSAl Viro 		}
40061da177e4SLinus Torvalds 	}
4007b21996e3SJ. Bruce Fields out:
40085955102cSAl Viro 	inode_unlock(target);
40091da177e4SLinus Torvalds 
40101da177e4SLinus Torvalds 	/* We don't d_delete() NFS sillyrenamed files--they still exist. */
40111da177e4SLinus Torvalds 	if (!error && !(dentry->d_flags & DCACHE_NFSFS_RENAMED)) {
40129accbb97SJ. Bruce Fields 		fsnotify_link_count(target);
40131da177e4SLinus Torvalds 		d_delete(dentry);
40141da177e4SLinus Torvalds 	}
40150eeca283SRobert Love 
40161da177e4SLinus Torvalds 	return error;
40171da177e4SLinus Torvalds }
40184d359507SAl Viro EXPORT_SYMBOL(vfs_unlink);
40191da177e4SLinus Torvalds 
40201da177e4SLinus Torvalds /*
40211da177e4SLinus Torvalds  * Make sure that the actual truncation of the file will occur outside its
40221b1dcc1bSJes Sorensen  * directory's i_mutex.  Truncate can take a long time if there is a lot of
40231da177e4SLinus Torvalds  * writeout happening, and we don't want to prevent access to the directory
40241da177e4SLinus Torvalds  * while waiting on the I/O.
40251da177e4SLinus Torvalds  */
4026da2f1362SChristoph Hellwig long do_unlinkat(int dfd, struct filename *name)
40271da177e4SLinus Torvalds {
40282ad94ae6SAl Viro 	int error;
40291da177e4SLinus Torvalds 	struct dentry *dentry;
4030f5beed75SAl Viro 	struct path path;
4031f5beed75SAl Viro 	struct qstr last;
4032f5beed75SAl Viro 	int type;
40331da177e4SLinus Torvalds 	struct inode *inode = NULL;
4034b21996e3SJ. Bruce Fields 	struct inode *delegated_inode = NULL;
40355d18f813SJeff Layton 	unsigned int lookup_flags = 0;
40365d18f813SJeff Layton retry:
4037da2f1362SChristoph Hellwig 	name = filename_parentat(dfd, name, lookup_flags, &path, &last, &type);
403891a27b2aSJeff Layton 	if (IS_ERR(name))
403991a27b2aSJeff Layton 		return PTR_ERR(name);
40402ad94ae6SAl Viro 
40411da177e4SLinus Torvalds 	error = -EISDIR;
4042f5beed75SAl Viro 	if (type != LAST_NORM)
40431da177e4SLinus Torvalds 		goto exit1;
40440612d9fbSOGAWA Hirofumi 
4045f5beed75SAl Viro 	error = mnt_want_write(path.mnt);
4046c30dabfeSJan Kara 	if (error)
4047c30dabfeSJan Kara 		goto exit1;
4048b21996e3SJ. Bruce Fields retry_deleg:
40495955102cSAl Viro 	inode_lock_nested(path.dentry->d_inode, I_MUTEX_PARENT);
4050f5beed75SAl Viro 	dentry = __lookup_hash(&last, path.dentry, lookup_flags);
40511da177e4SLinus Torvalds 	error = PTR_ERR(dentry);
40521da177e4SLinus Torvalds 	if (!IS_ERR(dentry)) {
40531da177e4SLinus Torvalds 		/* Why not before? Because we want correct error value */
4054f5beed75SAl Viro 		if (last.name[last.len])
405550338b88STörök Edwin 			goto slashes;
40561da177e4SLinus Torvalds 		inode = dentry->d_inode;
4057b18825a7SDavid Howells 		if (d_is_negative(dentry))
4058e6bc45d6STheodore Ts'o 			goto slashes;
40597de9c6eeSAl Viro 		ihold(inode);
4060f5beed75SAl Viro 		error = security_path_unlink(&path, dentry);
4061be6d3e56SKentaro Takeda 		if (error)
4062c30dabfeSJan Kara 			goto exit2;
4063f5beed75SAl Viro 		error = vfs_unlink(path.dentry->d_inode, dentry, &delegated_inode);
40641da177e4SLinus Torvalds exit2:
40651da177e4SLinus Torvalds 		dput(dentry);
40661da177e4SLinus Torvalds 	}
40675955102cSAl Viro 	inode_unlock(path.dentry->d_inode);
40681da177e4SLinus Torvalds 	if (inode)
40691da177e4SLinus Torvalds 		iput(inode);	/* truncate the inode here */
4070b21996e3SJ. Bruce Fields 	inode = NULL;
4071b21996e3SJ. Bruce Fields 	if (delegated_inode) {
40725a14696cSJ. Bruce Fields 		error = break_deleg_wait(&delegated_inode);
4073b21996e3SJ. Bruce Fields 		if (!error)
4074b21996e3SJ. Bruce Fields 			goto retry_deleg;
4075b21996e3SJ. Bruce Fields 	}
4076f5beed75SAl Viro 	mnt_drop_write(path.mnt);
40771da177e4SLinus Torvalds exit1:
4078f5beed75SAl Viro 	path_put(&path);
40795d18f813SJeff Layton 	if (retry_estale(error, lookup_flags)) {
40805d18f813SJeff Layton 		lookup_flags |= LOOKUP_REVAL;
40815d18f813SJeff Layton 		inode = NULL;
40825d18f813SJeff Layton 		goto retry;
40835d18f813SJeff Layton 	}
4084da2f1362SChristoph Hellwig 	putname(name);
40851da177e4SLinus Torvalds 	return error;
40861da177e4SLinus Torvalds 
40871da177e4SLinus Torvalds slashes:
4088b18825a7SDavid Howells 	if (d_is_negative(dentry))
4089b18825a7SDavid Howells 		error = -ENOENT;
409044b1d530SMiklos Szeredi 	else if (d_is_dir(dentry))
4091b18825a7SDavid Howells 		error = -EISDIR;
4092b18825a7SDavid Howells 	else
4093b18825a7SDavid Howells 		error = -ENOTDIR;
40941da177e4SLinus Torvalds 	goto exit2;
40951da177e4SLinus Torvalds }
40961da177e4SLinus Torvalds 
40972e4d0924SHeiko Carstens SYSCALL_DEFINE3(unlinkat, int, dfd, const char __user *, pathname, int, flag)
40985590ff0dSUlrich Drepper {
40995590ff0dSUlrich Drepper 	if ((flag & ~AT_REMOVEDIR) != 0)
41005590ff0dSUlrich Drepper 		return -EINVAL;
41015590ff0dSUlrich Drepper 
41025590ff0dSUlrich Drepper 	if (flag & AT_REMOVEDIR)
41035590ff0dSUlrich Drepper 		return do_rmdir(dfd, pathname);
41045590ff0dSUlrich Drepper 
4105da2f1362SChristoph Hellwig 	return do_unlinkat(dfd, getname(pathname));
41065590ff0dSUlrich Drepper }
41075590ff0dSUlrich Drepper 
41083480b257SHeiko Carstens SYSCALL_DEFINE1(unlink, const char __user *, pathname)
41095590ff0dSUlrich Drepper {
4110da2f1362SChristoph Hellwig 	return do_unlinkat(AT_FDCWD, getname(pathname));
41115590ff0dSUlrich Drepper }
41125590ff0dSUlrich Drepper 
4113db2e747bSMiklos Szeredi int vfs_symlink(struct inode *dir, struct dentry *dentry, const char *oldname)
41141da177e4SLinus Torvalds {
4115a95164d9SMiklos Szeredi 	int error = may_create(dir, dentry);
41161da177e4SLinus Torvalds 
41171da177e4SLinus Torvalds 	if (error)
41181da177e4SLinus Torvalds 		return error;
41191da177e4SLinus Torvalds 
4120acfa4380SAl Viro 	if (!dir->i_op->symlink)
41211da177e4SLinus Torvalds 		return -EPERM;
41221da177e4SLinus Torvalds 
41231da177e4SLinus Torvalds 	error = security_inode_symlink(dir, dentry, oldname);
41241da177e4SLinus Torvalds 	if (error)
41251da177e4SLinus Torvalds 		return error;
41261da177e4SLinus Torvalds 
41271da177e4SLinus Torvalds 	error = dir->i_op->symlink(dir, dentry, oldname);
4128a74574aaSStephen Smalley 	if (!error)
4129f38aa942SAmy Griffis 		fsnotify_create(dir, dentry);
41301da177e4SLinus Torvalds 	return error;
41311da177e4SLinus Torvalds }
41324d359507SAl Viro EXPORT_SYMBOL(vfs_symlink);
41331da177e4SLinus Torvalds 
4134b724e846SDominik Brodowski long do_symlinkat(const char __user *oldname, int newdfd,
4135b724e846SDominik Brodowski 		  const char __user *newname)
41361da177e4SLinus Torvalds {
41372ad94ae6SAl Viro 	int error;
413891a27b2aSJeff Layton 	struct filename *from;
41396902d925SDave Hansen 	struct dentry *dentry;
4140dae6ad8fSAl Viro 	struct path path;
4141f46d3567SJeff Layton 	unsigned int lookup_flags = 0;
41421da177e4SLinus Torvalds 
41431da177e4SLinus Torvalds 	from = getname(oldname);
41441da177e4SLinus Torvalds 	if (IS_ERR(from))
41451da177e4SLinus Torvalds 		return PTR_ERR(from);
4146f46d3567SJeff Layton retry:
4147f46d3567SJeff Layton 	dentry = user_path_create(newdfd, newname, &path, lookup_flags);
41481da177e4SLinus Torvalds 	error = PTR_ERR(dentry);
41496902d925SDave Hansen 	if (IS_ERR(dentry))
4150dae6ad8fSAl Viro 		goto out_putname;
41516902d925SDave Hansen 
415291a27b2aSJeff Layton 	error = security_path_symlink(&path, dentry, from->name);
4153a8104a9fSAl Viro 	if (!error)
415491a27b2aSJeff Layton 		error = vfs_symlink(path.dentry->d_inode, dentry, from->name);
4155921a1650SAl Viro 	done_path_create(&path, dentry);
4156f46d3567SJeff Layton 	if (retry_estale(error, lookup_flags)) {
4157f46d3567SJeff Layton 		lookup_flags |= LOOKUP_REVAL;
4158f46d3567SJeff Layton 		goto retry;
4159f46d3567SJeff Layton 	}
41606902d925SDave Hansen out_putname:
41611da177e4SLinus Torvalds 	putname(from);
41621da177e4SLinus Torvalds 	return error;
41631da177e4SLinus Torvalds }
41641da177e4SLinus Torvalds 
4165b724e846SDominik Brodowski SYSCALL_DEFINE3(symlinkat, const char __user *, oldname,
4166b724e846SDominik Brodowski 		int, newdfd, const char __user *, newname)
4167b724e846SDominik Brodowski {
4168b724e846SDominik Brodowski 	return do_symlinkat(oldname, newdfd, newname);
4169b724e846SDominik Brodowski }
4170b724e846SDominik Brodowski 
41713480b257SHeiko Carstens SYSCALL_DEFINE2(symlink, const char __user *, oldname, const char __user *, newname)
41725590ff0dSUlrich Drepper {
4173b724e846SDominik Brodowski 	return do_symlinkat(oldname, AT_FDCWD, newname);
41745590ff0dSUlrich Drepper }
41755590ff0dSUlrich Drepper 
4176146a8595SJ. Bruce Fields /**
4177146a8595SJ. Bruce Fields  * vfs_link - create a new link
4178146a8595SJ. Bruce Fields  * @old_dentry:	object to be linked
4179146a8595SJ. Bruce Fields  * @dir:	new parent
4180146a8595SJ. Bruce Fields  * @new_dentry:	where to create the new link
4181146a8595SJ. Bruce Fields  * @delegated_inode: returns inode needing a delegation break
4182146a8595SJ. Bruce Fields  *
4183146a8595SJ. Bruce Fields  * The caller must hold dir->i_mutex
4184146a8595SJ. Bruce Fields  *
4185146a8595SJ. Bruce Fields  * If vfs_link discovers a delegation on the to-be-linked file in need
4186146a8595SJ. Bruce Fields  * of breaking, it will return -EWOULDBLOCK and return a reference to the
4187146a8595SJ. Bruce Fields  * inode in delegated_inode.  The caller should then break the delegation
4188146a8595SJ. Bruce Fields  * and retry.  Because breaking a delegation may take a long time, the
4189146a8595SJ. Bruce Fields  * caller should drop the i_mutex before doing so.
4190146a8595SJ. Bruce Fields  *
4191146a8595SJ. Bruce Fields  * Alternatively, a caller may pass NULL for delegated_inode.  This may
4192146a8595SJ. Bruce Fields  * be appropriate for callers that expect the underlying filesystem not
4193146a8595SJ. Bruce Fields  * to be NFS exported.
4194146a8595SJ. Bruce Fields  */
4195146a8595SJ. Bruce Fields int vfs_link(struct dentry *old_dentry, struct inode *dir, struct dentry *new_dentry, struct inode **delegated_inode)
41961da177e4SLinus Torvalds {
41971da177e4SLinus Torvalds 	struct inode *inode = old_dentry->d_inode;
41988de52778SAl Viro 	unsigned max_links = dir->i_sb->s_max_links;
41991da177e4SLinus Torvalds 	int error;
42001da177e4SLinus Torvalds 
42011da177e4SLinus Torvalds 	if (!inode)
42021da177e4SLinus Torvalds 		return -ENOENT;
42031da177e4SLinus Torvalds 
4204a95164d9SMiklos Szeredi 	error = may_create(dir, new_dentry);
42051da177e4SLinus Torvalds 	if (error)
42061da177e4SLinus Torvalds 		return error;
42071da177e4SLinus Torvalds 
42081da177e4SLinus Torvalds 	if (dir->i_sb != inode->i_sb)
42091da177e4SLinus Torvalds 		return -EXDEV;
42101da177e4SLinus Torvalds 
42111da177e4SLinus Torvalds 	/*
42121da177e4SLinus Torvalds 	 * A link to an append-only or immutable file cannot be created.
42131da177e4SLinus Torvalds 	 */
42141da177e4SLinus Torvalds 	if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
42151da177e4SLinus Torvalds 		return -EPERM;
42160bd23d09SEric W. Biederman 	/*
42170bd23d09SEric W. Biederman 	 * Updating the link count will likely cause i_uid and i_gid to
42180bd23d09SEric W. Biederman 	 * be writen back improperly if their true value is unknown to
42190bd23d09SEric W. Biederman 	 * the vfs.
42200bd23d09SEric W. Biederman 	 */
42210bd23d09SEric W. Biederman 	if (HAS_UNMAPPED_ID(inode))
42220bd23d09SEric W. Biederman 		return -EPERM;
4223acfa4380SAl Viro 	if (!dir->i_op->link)
42241da177e4SLinus Torvalds 		return -EPERM;
42257e79eedbSTetsuo Handa 	if (S_ISDIR(inode->i_mode))
42261da177e4SLinus Torvalds 		return -EPERM;
42271da177e4SLinus Torvalds 
42281da177e4SLinus Torvalds 	error = security_inode_link(old_dentry, dir, new_dentry);
42291da177e4SLinus Torvalds 	if (error)
42301da177e4SLinus Torvalds 		return error;
42311da177e4SLinus Torvalds 
42325955102cSAl Viro 	inode_lock(inode);
4233aae8a97dSAneesh Kumar K.V 	/* Make sure we don't allow creating hardlink to an unlinked file */
4234f4e0c30cSAl Viro 	if (inode->i_nlink == 0 && !(inode->i_state & I_LINKABLE))
4235aae8a97dSAneesh Kumar K.V 		error =  -ENOENT;
42368de52778SAl Viro 	else if (max_links && inode->i_nlink >= max_links)
42378de52778SAl Viro 		error = -EMLINK;
4238146a8595SJ. Bruce Fields 	else {
4239146a8595SJ. Bruce Fields 		error = try_break_deleg(inode, delegated_inode);
4240146a8595SJ. Bruce Fields 		if (!error)
42411da177e4SLinus Torvalds 			error = dir->i_op->link(old_dentry, dir, new_dentry);
4242146a8595SJ. Bruce Fields 	}
4243f4e0c30cSAl Viro 
4244f4e0c30cSAl Viro 	if (!error && (inode->i_state & I_LINKABLE)) {
4245f4e0c30cSAl Viro 		spin_lock(&inode->i_lock);
4246f4e0c30cSAl Viro 		inode->i_state &= ~I_LINKABLE;
4247f4e0c30cSAl Viro 		spin_unlock(&inode->i_lock);
4248f4e0c30cSAl Viro 	}
42495955102cSAl Viro 	inode_unlock(inode);
4250e31e14ecSStephen Smalley 	if (!error)
42517e79eedbSTetsuo Handa 		fsnotify_link(dir, inode, new_dentry);
42521da177e4SLinus Torvalds 	return error;
42531da177e4SLinus Torvalds }
42544d359507SAl Viro EXPORT_SYMBOL(vfs_link);
42551da177e4SLinus Torvalds 
42561da177e4SLinus Torvalds /*
42571da177e4SLinus Torvalds  * Hardlinks are often used in delicate situations.  We avoid
42581da177e4SLinus Torvalds  * security-related surprises by not following symlinks on the
42591da177e4SLinus Torvalds  * newname.  --KAB
42601da177e4SLinus Torvalds  *
42611da177e4SLinus Torvalds  * We don't follow them on the oldname either to be compatible
42621da177e4SLinus Torvalds  * with linux 2.0, and to avoid hard-linking to directories
42631da177e4SLinus Torvalds  * and other special files.  --ADM
42641da177e4SLinus Torvalds  */
426546ea89ebSDominik Brodowski int do_linkat(int olddfd, const char __user *oldname, int newdfd,
426646ea89ebSDominik Brodowski 	      const char __user *newname, int flags)
42671da177e4SLinus Torvalds {
42681da177e4SLinus Torvalds 	struct dentry *new_dentry;
4269dae6ad8fSAl Viro 	struct path old_path, new_path;
4270146a8595SJ. Bruce Fields 	struct inode *delegated_inode = NULL;
427111a7b371SAneesh Kumar K.V 	int how = 0;
42721da177e4SLinus Torvalds 	int error;
42731da177e4SLinus Torvalds 
427411a7b371SAneesh Kumar K.V 	if ((flags & ~(AT_SYMLINK_FOLLOW | AT_EMPTY_PATH)) != 0)
4275c04030e1SUlrich Drepper 		return -EINVAL;
427611a7b371SAneesh Kumar K.V 	/*
4277f0cc6ffbSLinus Torvalds 	 * To use null names we require CAP_DAC_READ_SEARCH
4278f0cc6ffbSLinus Torvalds 	 * This ensures that not everyone will be able to create
4279f0cc6ffbSLinus Torvalds 	 * handlink using the passed filedescriptor.
428011a7b371SAneesh Kumar K.V 	 */
4281f0cc6ffbSLinus Torvalds 	if (flags & AT_EMPTY_PATH) {
4282f0cc6ffbSLinus Torvalds 		if (!capable(CAP_DAC_READ_SEARCH))
4283f0cc6ffbSLinus Torvalds 			return -ENOENT;
428411a7b371SAneesh Kumar K.V 		how = LOOKUP_EMPTY;
4285f0cc6ffbSLinus Torvalds 	}
4286c04030e1SUlrich Drepper 
428711a7b371SAneesh Kumar K.V 	if (flags & AT_SYMLINK_FOLLOW)
428811a7b371SAneesh Kumar K.V 		how |= LOOKUP_FOLLOW;
4289442e31caSJeff Layton retry:
429011a7b371SAneesh Kumar K.V 	error = user_path_at(olddfd, oldname, how, &old_path);
42911da177e4SLinus Torvalds 	if (error)
42922ad94ae6SAl Viro 		return error;
42932ad94ae6SAl Viro 
4294442e31caSJeff Layton 	new_dentry = user_path_create(newdfd, newname, &new_path,
4295442e31caSJeff Layton 					(how & LOOKUP_REVAL));
42961da177e4SLinus Torvalds 	error = PTR_ERR(new_dentry);
42976902d925SDave Hansen 	if (IS_ERR(new_dentry))
4298dae6ad8fSAl Viro 		goto out;
4299dae6ad8fSAl Viro 
4300dae6ad8fSAl Viro 	error = -EXDEV;
4301dae6ad8fSAl Viro 	if (old_path.mnt != new_path.mnt)
4302dae6ad8fSAl Viro 		goto out_dput;
4303800179c9SKees Cook 	error = may_linkat(&old_path);
4304800179c9SKees Cook 	if (unlikely(error))
4305800179c9SKees Cook 		goto out_dput;
4306dae6ad8fSAl Viro 	error = security_path_link(old_path.dentry, &new_path, new_dentry);
4307be6d3e56SKentaro Takeda 	if (error)
4308a8104a9fSAl Viro 		goto out_dput;
4309146a8595SJ. Bruce Fields 	error = vfs_link(old_path.dentry, new_path.dentry->d_inode, new_dentry, &delegated_inode);
431075c3f29dSDave Hansen out_dput:
4311921a1650SAl Viro 	done_path_create(&new_path, new_dentry);
4312146a8595SJ. Bruce Fields 	if (delegated_inode) {
4313146a8595SJ. Bruce Fields 		error = break_deleg_wait(&delegated_inode);
4314d22e6338SOleg Drokin 		if (!error) {
4315d22e6338SOleg Drokin 			path_put(&old_path);
4316146a8595SJ. Bruce Fields 			goto retry;
4317146a8595SJ. Bruce Fields 		}
4318d22e6338SOleg Drokin 	}
4319442e31caSJeff Layton 	if (retry_estale(error, how)) {
4320d22e6338SOleg Drokin 		path_put(&old_path);
4321442e31caSJeff Layton 		how |= LOOKUP_REVAL;
4322442e31caSJeff Layton 		goto retry;
4323442e31caSJeff Layton 	}
43241da177e4SLinus Torvalds out:
43252d8f3038SAl Viro 	path_put(&old_path);
43261da177e4SLinus Torvalds 
43271da177e4SLinus Torvalds 	return error;
43281da177e4SLinus Torvalds }
43291da177e4SLinus Torvalds 
433046ea89ebSDominik Brodowski SYSCALL_DEFINE5(linkat, int, olddfd, const char __user *, oldname,
433146ea89ebSDominik Brodowski 		int, newdfd, const char __user *, newname, int, flags)
433246ea89ebSDominik Brodowski {
433346ea89ebSDominik Brodowski 	return do_linkat(olddfd, oldname, newdfd, newname, flags);
433446ea89ebSDominik Brodowski }
433546ea89ebSDominik Brodowski 
43363480b257SHeiko Carstens SYSCALL_DEFINE2(link, const char __user *, oldname, const char __user *, newname)
43375590ff0dSUlrich Drepper {
433846ea89ebSDominik Brodowski 	return do_linkat(AT_FDCWD, oldname, AT_FDCWD, newname, 0);
43395590ff0dSUlrich Drepper }
43405590ff0dSUlrich Drepper 
4341bc27027aSMiklos Szeredi /**
4342bc27027aSMiklos Szeredi  * vfs_rename - rename a filesystem object
4343bc27027aSMiklos Szeredi  * @old_dir:	parent of source
4344bc27027aSMiklos Szeredi  * @old_dentry:	source
4345bc27027aSMiklos Szeredi  * @new_dir:	parent of destination
4346bc27027aSMiklos Szeredi  * @new_dentry:	destination
4347bc27027aSMiklos Szeredi  * @delegated_inode: returns an inode needing a delegation break
4348520c8b16SMiklos Szeredi  * @flags:	rename flags
4349bc27027aSMiklos Szeredi  *
4350bc27027aSMiklos Szeredi  * The caller must hold multiple mutexes--see lock_rename()).
4351bc27027aSMiklos Szeredi  *
4352bc27027aSMiklos Szeredi  * If vfs_rename discovers a delegation in need of breaking at either
4353bc27027aSMiklos Szeredi  * the source or destination, it will return -EWOULDBLOCK and return a
4354bc27027aSMiklos Szeredi  * reference to the inode in delegated_inode.  The caller should then
4355bc27027aSMiklos Szeredi  * break the delegation and retry.  Because breaking a delegation may
4356bc27027aSMiklos Szeredi  * take a long time, the caller should drop all locks before doing
4357bc27027aSMiklos Szeredi  * so.
4358bc27027aSMiklos Szeredi  *
4359bc27027aSMiklos Szeredi  * Alternatively, a caller may pass NULL for delegated_inode.  This may
4360bc27027aSMiklos Szeredi  * be appropriate for callers that expect the underlying filesystem not
4361bc27027aSMiklos Szeredi  * to be NFS exported.
4362bc27027aSMiklos Szeredi  *
43631da177e4SLinus Torvalds  * The worst of all namespace operations - renaming directory. "Perverted"
43641da177e4SLinus Torvalds  * doesn't even start to describe it. Somebody in UCB had a heck of a trip...
43651da177e4SLinus Torvalds  * Problems:
43660117d427SMauro Carvalho Chehab  *
4367d03b29a2SJ. Bruce Fields  *	a) we can get into loop creation.
43681da177e4SLinus Torvalds  *	b) race potential - two innocent renames can create a loop together.
43691da177e4SLinus Torvalds  *	   That's where 4.4 screws up. Current fix: serialization on
4370a11f3a05SArjan van de Ven  *	   sb->s_vfs_rename_mutex. We might be more accurate, but that's another
43711da177e4SLinus Torvalds  *	   story.
43726cedba89SJ. Bruce Fields  *	c) we have to lock _four_ objects - parents and victim (if it exists),
43736cedba89SJ. Bruce Fields  *	   and source (if it is not a directory).
43741b1dcc1bSJes Sorensen  *	   And that - after we got ->i_mutex on parents (until then we don't know
43751da177e4SLinus Torvalds  *	   whether the target exists).  Solution: try to be smart with locking
43761da177e4SLinus Torvalds  *	   order for inodes.  We rely on the fact that tree topology may change
4377a11f3a05SArjan van de Ven  *	   only under ->s_vfs_rename_mutex _and_ that parent of the object we
43781da177e4SLinus Torvalds  *	   move will be locked.  Thus we can rank directories by the tree
43791da177e4SLinus Torvalds  *	   (ancestors first) and rank all non-directories after them.
43801da177e4SLinus Torvalds  *	   That works since everybody except rename does "lock parent, lookup,
4381a11f3a05SArjan van de Ven  *	   lock child" and rename is under ->s_vfs_rename_mutex.
43821da177e4SLinus Torvalds  *	   HOWEVER, it relies on the assumption that any object with ->lookup()
43831da177e4SLinus Torvalds  *	   has no more than 1 dentry.  If "hybrid" objects will ever appear,
43841da177e4SLinus Torvalds  *	   we'd better make sure that there's no link(2) for them.
4385e4eaac06SSage Weil  *	d) conversion from fhandle to dentry may come in the wrong moment - when
43861b1dcc1bSJes Sorensen  *	   we are removing the target. Solution: we will have to grab ->i_mutex
43871da177e4SLinus Torvalds  *	   in the fhandle_to_dentry code. [FIXME - current nfsfh.c relies on
4388c41b20e7SAdam Buchbinder  *	   ->i_mutex on parents, which works but leads to some truly excessive
43891da177e4SLinus Torvalds  *	   locking].
43901da177e4SLinus Torvalds  */
43911da177e4SLinus Torvalds int vfs_rename(struct inode *old_dir, struct dentry *old_dentry,
43928e6d782cSJ. Bruce Fields 	       struct inode *new_dir, struct dentry *new_dentry,
4393520c8b16SMiklos Szeredi 	       struct inode **delegated_inode, unsigned int flags)
43941da177e4SLinus Torvalds {
43951da177e4SLinus Torvalds 	int error;
4396bc27027aSMiklos Szeredi 	bool is_dir = d_is_dir(old_dentry);
4397bc27027aSMiklos Szeredi 	struct inode *source = old_dentry->d_inode;
4398bc27027aSMiklos Szeredi 	struct inode *target = new_dentry->d_inode;
4399da1ce067SMiklos Szeredi 	bool new_is_dir = false;
4400da1ce067SMiklos Szeredi 	unsigned max_links = new_dir->i_sb->s_max_links;
440149d31c2fSAl Viro 	struct name_snapshot old_name;
44021da177e4SLinus Torvalds 
44038d3e2936SMiklos Szeredi 	if (source == target)
44041da177e4SLinus Torvalds 		return 0;
44051da177e4SLinus Torvalds 
44061da177e4SLinus Torvalds 	error = may_delete(old_dir, old_dentry, is_dir);
44071da177e4SLinus Torvalds 	if (error)
44081da177e4SLinus Torvalds 		return error;
44091da177e4SLinus Torvalds 
4410da1ce067SMiklos Szeredi 	if (!target) {
4411a95164d9SMiklos Szeredi 		error = may_create(new_dir, new_dentry);
4412da1ce067SMiklos Szeredi 	} else {
4413da1ce067SMiklos Szeredi 		new_is_dir = d_is_dir(new_dentry);
4414da1ce067SMiklos Szeredi 
4415da1ce067SMiklos Szeredi 		if (!(flags & RENAME_EXCHANGE))
44161da177e4SLinus Torvalds 			error = may_delete(new_dir, new_dentry, is_dir);
4417da1ce067SMiklos Szeredi 		else
4418da1ce067SMiklos Szeredi 			error = may_delete(new_dir, new_dentry, new_is_dir);
4419da1ce067SMiklos Szeredi 	}
44201da177e4SLinus Torvalds 	if (error)
44211da177e4SLinus Torvalds 		return error;
44221da177e4SLinus Torvalds 
44232773bf00SMiklos Szeredi 	if (!old_dir->i_op->rename)
44241da177e4SLinus Torvalds 		return -EPERM;
44251da177e4SLinus Torvalds 
4426bc27027aSMiklos Szeredi 	/*
4427bc27027aSMiklos Szeredi 	 * If we are going to change the parent - check write permissions,
4428bc27027aSMiklos Szeredi 	 * we'll need to flip '..'.
4429bc27027aSMiklos Szeredi 	 */
4430da1ce067SMiklos Szeredi 	if (new_dir != old_dir) {
4431da1ce067SMiklos Szeredi 		if (is_dir) {
4432bc27027aSMiklos Szeredi 			error = inode_permission(source, MAY_WRITE);
4433bc27027aSMiklos Szeredi 			if (error)
4434bc27027aSMiklos Szeredi 				return error;
4435bc27027aSMiklos Szeredi 		}
4436da1ce067SMiklos Szeredi 		if ((flags & RENAME_EXCHANGE) && new_is_dir) {
4437da1ce067SMiklos Szeredi 			error = inode_permission(target, MAY_WRITE);
4438da1ce067SMiklos Szeredi 			if (error)
4439da1ce067SMiklos Szeredi 				return error;
4440da1ce067SMiklos Szeredi 		}
4441da1ce067SMiklos Szeredi 	}
44420eeca283SRobert Love 
44430b3974ebSMiklos Szeredi 	error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry,
44440b3974ebSMiklos Szeredi 				      flags);
4445bc27027aSMiklos Szeredi 	if (error)
4446bc27027aSMiklos Szeredi 		return error;
4447bc27027aSMiklos Szeredi 
444849d31c2fSAl Viro 	take_dentry_name_snapshot(&old_name, old_dentry);
4449bc27027aSMiklos Szeredi 	dget(new_dentry);
4450da1ce067SMiklos Szeredi 	if (!is_dir || (flags & RENAME_EXCHANGE))
4451bc27027aSMiklos Szeredi 		lock_two_nondirectories(source, target);
4452bc27027aSMiklos Szeredi 	else if (target)
44535955102cSAl Viro 		inode_lock(target);
4454bc27027aSMiklos Szeredi 
4455bc27027aSMiklos Szeredi 	error = -EBUSY;
44567af1364fSEric W. Biederman 	if (is_local_mountpoint(old_dentry) || is_local_mountpoint(new_dentry))
4457bc27027aSMiklos Szeredi 		goto out;
4458bc27027aSMiklos Szeredi 
4459da1ce067SMiklos Szeredi 	if (max_links && new_dir != old_dir) {
4460bc27027aSMiklos Szeredi 		error = -EMLINK;
4461da1ce067SMiklos Szeredi 		if (is_dir && !new_is_dir && new_dir->i_nlink >= max_links)
4462bc27027aSMiklos Szeredi 			goto out;
4463da1ce067SMiklos Szeredi 		if ((flags & RENAME_EXCHANGE) && !is_dir && new_is_dir &&
4464da1ce067SMiklos Szeredi 		    old_dir->i_nlink >= max_links)
4465da1ce067SMiklos Szeredi 			goto out;
4466da1ce067SMiklos Szeredi 	}
4467da1ce067SMiklos Szeredi 	if (!is_dir) {
4468bc27027aSMiklos Szeredi 		error = try_break_deleg(source, delegated_inode);
4469bc27027aSMiklos Szeredi 		if (error)
4470bc27027aSMiklos Szeredi 			goto out;
4471da1ce067SMiklos Szeredi 	}
4472da1ce067SMiklos Szeredi 	if (target && !new_is_dir) {
4473bc27027aSMiklos Szeredi 		error = try_break_deleg(target, delegated_inode);
4474bc27027aSMiklos Szeredi 		if (error)
4475bc27027aSMiklos Szeredi 			goto out;
4476bc27027aSMiklos Szeredi 	}
4477520c8b16SMiklos Szeredi 	error = old_dir->i_op->rename(old_dir, old_dentry,
4478520c8b16SMiklos Szeredi 				       new_dir, new_dentry, flags);
4479bc27027aSMiklos Szeredi 	if (error)
4480bc27027aSMiklos Szeredi 		goto out;
4481bc27027aSMiklos Szeredi 
4482da1ce067SMiklos Szeredi 	if (!(flags & RENAME_EXCHANGE) && target) {
44838767712fSAl Viro 		if (is_dir) {
44848767712fSAl Viro 			shrink_dcache_parent(new_dentry);
4485bc27027aSMiklos Szeredi 			target->i_flags |= S_DEAD;
44868767712fSAl Viro 		}
4487bc27027aSMiklos Szeredi 		dont_mount(new_dentry);
44888ed936b5SEric W. Biederman 		detach_mounts(new_dentry);
4489bc27027aSMiklos Szeredi 	}
4490da1ce067SMiklos Szeredi 	if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE)) {
4491da1ce067SMiklos Szeredi 		if (!(flags & RENAME_EXCHANGE))
4492bc27027aSMiklos Szeredi 			d_move(old_dentry, new_dentry);
4493da1ce067SMiklos Szeredi 		else
4494da1ce067SMiklos Szeredi 			d_exchange(old_dentry, new_dentry);
4495da1ce067SMiklos Szeredi 	}
4496bc27027aSMiklos Szeredi out:
4497da1ce067SMiklos Szeredi 	if (!is_dir || (flags & RENAME_EXCHANGE))
4498bc27027aSMiklos Szeredi 		unlock_two_nondirectories(source, target);
4499bc27027aSMiklos Szeredi 	else if (target)
45005955102cSAl Viro 		inode_unlock(target);
4501bc27027aSMiklos Szeredi 	dput(new_dentry);
4502da1ce067SMiklos Szeredi 	if (!error) {
450349d31c2fSAl Viro 		fsnotify_move(old_dir, new_dir, old_name.name, is_dir,
4504da1ce067SMiklos Szeredi 			      !(flags & RENAME_EXCHANGE) ? target : NULL, old_dentry);
4505da1ce067SMiklos Szeredi 		if (flags & RENAME_EXCHANGE) {
4506da1ce067SMiklos Szeredi 			fsnotify_move(new_dir, old_dir, old_dentry->d_name.name,
4507da1ce067SMiklos Szeredi 				      new_is_dir, NULL, new_dentry);
4508da1ce067SMiklos Szeredi 		}
4509da1ce067SMiklos Szeredi 	}
451049d31c2fSAl Viro 	release_dentry_name_snapshot(&old_name);
45110eeca283SRobert Love 
45121da177e4SLinus Torvalds 	return error;
45131da177e4SLinus Torvalds }
45144d359507SAl Viro EXPORT_SYMBOL(vfs_rename);
45151da177e4SLinus Torvalds 
4516ee81feb6SDominik Brodowski static int do_renameat2(int olddfd, const char __user *oldname, int newdfd,
4517ee81feb6SDominik Brodowski 			const char __user *newname, unsigned int flags)
45181da177e4SLinus Torvalds {
45191da177e4SLinus Torvalds 	struct dentry *old_dentry, *new_dentry;
45201da177e4SLinus Torvalds 	struct dentry *trap;
4521f5beed75SAl Viro 	struct path old_path, new_path;
4522f5beed75SAl Viro 	struct qstr old_last, new_last;
4523f5beed75SAl Viro 	int old_type, new_type;
45248e6d782cSJ. Bruce Fields 	struct inode *delegated_inode = NULL;
452591a27b2aSJeff Layton 	struct filename *from;
452691a27b2aSJeff Layton 	struct filename *to;
4527f5beed75SAl Viro 	unsigned int lookup_flags = 0, target_flags = LOOKUP_RENAME_TARGET;
4528c6a94284SJeff Layton 	bool should_retry = false;
45292ad94ae6SAl Viro 	int error;
4530520c8b16SMiklos Szeredi 
45310d7a8555SMiklos Szeredi 	if (flags & ~(RENAME_NOREPLACE | RENAME_EXCHANGE | RENAME_WHITEOUT))
4532da1ce067SMiklos Szeredi 		return -EINVAL;
4533da1ce067SMiklos Szeredi 
45340d7a8555SMiklos Szeredi 	if ((flags & (RENAME_NOREPLACE | RENAME_WHITEOUT)) &&
45350d7a8555SMiklos Szeredi 	    (flags & RENAME_EXCHANGE))
4536520c8b16SMiklos Szeredi 		return -EINVAL;
4537520c8b16SMiklos Szeredi 
45380d7a8555SMiklos Szeredi 	if ((flags & RENAME_WHITEOUT) && !capable(CAP_MKNOD))
45390d7a8555SMiklos Szeredi 		return -EPERM;
45400d7a8555SMiklos Szeredi 
4541f5beed75SAl Viro 	if (flags & RENAME_EXCHANGE)
4542f5beed75SAl Viro 		target_flags = 0;
4543f5beed75SAl Viro 
4544c6a94284SJeff Layton retry:
4545c1d4dd27SAl Viro 	from = filename_parentat(olddfd, getname(oldname), lookup_flags,
4546c1d4dd27SAl Viro 				&old_path, &old_last, &old_type);
454791a27b2aSJeff Layton 	if (IS_ERR(from)) {
454891a27b2aSJeff Layton 		error = PTR_ERR(from);
45491da177e4SLinus Torvalds 		goto exit;
455091a27b2aSJeff Layton 	}
45511da177e4SLinus Torvalds 
4552c1d4dd27SAl Viro 	to = filename_parentat(newdfd, getname(newname), lookup_flags,
4553c1d4dd27SAl Viro 				&new_path, &new_last, &new_type);
455491a27b2aSJeff Layton 	if (IS_ERR(to)) {
455591a27b2aSJeff Layton 		error = PTR_ERR(to);
45561da177e4SLinus Torvalds 		goto exit1;
455791a27b2aSJeff Layton 	}
45581da177e4SLinus Torvalds 
45591da177e4SLinus Torvalds 	error = -EXDEV;
4560f5beed75SAl Viro 	if (old_path.mnt != new_path.mnt)
45611da177e4SLinus Torvalds 		goto exit2;
45621da177e4SLinus Torvalds 
45631da177e4SLinus Torvalds 	error = -EBUSY;
4564f5beed75SAl Viro 	if (old_type != LAST_NORM)
45651da177e4SLinus Torvalds 		goto exit2;
45661da177e4SLinus Torvalds 
45670a7c3937SMiklos Szeredi 	if (flags & RENAME_NOREPLACE)
45680a7c3937SMiklos Szeredi 		error = -EEXIST;
4569f5beed75SAl Viro 	if (new_type != LAST_NORM)
45701da177e4SLinus Torvalds 		goto exit2;
45711da177e4SLinus Torvalds 
4572f5beed75SAl Viro 	error = mnt_want_write(old_path.mnt);
4573c30dabfeSJan Kara 	if (error)
4574c30dabfeSJan Kara 		goto exit2;
4575c30dabfeSJan Kara 
45768e6d782cSJ. Bruce Fields retry_deleg:
4577f5beed75SAl Viro 	trap = lock_rename(new_path.dentry, old_path.dentry);
45781da177e4SLinus Torvalds 
4579f5beed75SAl Viro 	old_dentry = __lookup_hash(&old_last, old_path.dentry, lookup_flags);
45801da177e4SLinus Torvalds 	error = PTR_ERR(old_dentry);
45811da177e4SLinus Torvalds 	if (IS_ERR(old_dentry))
45821da177e4SLinus Torvalds 		goto exit3;
45831da177e4SLinus Torvalds 	/* source must exist */
45841da177e4SLinus Torvalds 	error = -ENOENT;
4585b18825a7SDavid Howells 	if (d_is_negative(old_dentry))
45861da177e4SLinus Torvalds 		goto exit4;
4587f5beed75SAl Viro 	new_dentry = __lookup_hash(&new_last, new_path.dentry, lookup_flags | target_flags);
45881da177e4SLinus Torvalds 	error = PTR_ERR(new_dentry);
45891da177e4SLinus Torvalds 	if (IS_ERR(new_dentry))
45901da177e4SLinus Torvalds 		goto exit4;
45910a7c3937SMiklos Szeredi 	error = -EEXIST;
45920a7c3937SMiklos Szeredi 	if ((flags & RENAME_NOREPLACE) && d_is_positive(new_dentry))
45930a7c3937SMiklos Szeredi 		goto exit5;
4594da1ce067SMiklos Szeredi 	if (flags & RENAME_EXCHANGE) {
4595da1ce067SMiklos Szeredi 		error = -ENOENT;
4596da1ce067SMiklos Szeredi 		if (d_is_negative(new_dentry))
4597da1ce067SMiklos Szeredi 			goto exit5;
4598da1ce067SMiklos Szeredi 
4599da1ce067SMiklos Szeredi 		if (!d_is_dir(new_dentry)) {
4600da1ce067SMiklos Szeredi 			error = -ENOTDIR;
4601f5beed75SAl Viro 			if (new_last.name[new_last.len])
4602da1ce067SMiklos Szeredi 				goto exit5;
4603da1ce067SMiklos Szeredi 		}
4604da1ce067SMiklos Szeredi 	}
46050a7c3937SMiklos Szeredi 	/* unless the source is a directory trailing slashes give -ENOTDIR */
46060a7c3937SMiklos Szeredi 	if (!d_is_dir(old_dentry)) {
46070a7c3937SMiklos Szeredi 		error = -ENOTDIR;
4608f5beed75SAl Viro 		if (old_last.name[old_last.len])
46090a7c3937SMiklos Szeredi 			goto exit5;
4610f5beed75SAl Viro 		if (!(flags & RENAME_EXCHANGE) && new_last.name[new_last.len])
46110a7c3937SMiklos Szeredi 			goto exit5;
46120a7c3937SMiklos Szeredi 	}
46130a7c3937SMiklos Szeredi 	/* source should not be ancestor of target */
46140a7c3937SMiklos Szeredi 	error = -EINVAL;
46150a7c3937SMiklos Szeredi 	if (old_dentry == trap)
46160a7c3937SMiklos Szeredi 		goto exit5;
46171da177e4SLinus Torvalds 	/* target should not be an ancestor of source */
4618da1ce067SMiklos Szeredi 	if (!(flags & RENAME_EXCHANGE))
46191da177e4SLinus Torvalds 		error = -ENOTEMPTY;
46201da177e4SLinus Torvalds 	if (new_dentry == trap)
46211da177e4SLinus Torvalds 		goto exit5;
46221da177e4SLinus Torvalds 
4623f5beed75SAl Viro 	error = security_path_rename(&old_path, old_dentry,
4624f5beed75SAl Viro 				     &new_path, new_dentry, flags);
4625be6d3e56SKentaro Takeda 	if (error)
4626c30dabfeSJan Kara 		goto exit5;
4627f5beed75SAl Viro 	error = vfs_rename(old_path.dentry->d_inode, old_dentry,
4628f5beed75SAl Viro 			   new_path.dentry->d_inode, new_dentry,
4629520c8b16SMiklos Szeredi 			   &delegated_inode, flags);
46301da177e4SLinus Torvalds exit5:
46311da177e4SLinus Torvalds 	dput(new_dentry);
46321da177e4SLinus Torvalds exit4:
46331da177e4SLinus Torvalds 	dput(old_dentry);
46341da177e4SLinus Torvalds exit3:
4635f5beed75SAl Viro 	unlock_rename(new_path.dentry, old_path.dentry);
46368e6d782cSJ. Bruce Fields 	if (delegated_inode) {
46378e6d782cSJ. Bruce Fields 		error = break_deleg_wait(&delegated_inode);
46388e6d782cSJ. Bruce Fields 		if (!error)
46398e6d782cSJ. Bruce Fields 			goto retry_deleg;
46408e6d782cSJ. Bruce Fields 	}
4641f5beed75SAl Viro 	mnt_drop_write(old_path.mnt);
46421da177e4SLinus Torvalds exit2:
4643c6a94284SJeff Layton 	if (retry_estale(error, lookup_flags))
4644c6a94284SJeff Layton 		should_retry = true;
4645f5beed75SAl Viro 	path_put(&new_path);
46462ad94ae6SAl Viro 	putname(to);
46471da177e4SLinus Torvalds exit1:
4648f5beed75SAl Viro 	path_put(&old_path);
46491da177e4SLinus Torvalds 	putname(from);
4650c6a94284SJeff Layton 	if (should_retry) {
4651c6a94284SJeff Layton 		should_retry = false;
4652c6a94284SJeff Layton 		lookup_flags |= LOOKUP_REVAL;
4653c6a94284SJeff Layton 		goto retry;
4654c6a94284SJeff Layton 	}
46552ad94ae6SAl Viro exit:
46561da177e4SLinus Torvalds 	return error;
46571da177e4SLinus Torvalds }
46581da177e4SLinus Torvalds 
4659ee81feb6SDominik Brodowski SYSCALL_DEFINE5(renameat2, int, olddfd, const char __user *, oldname,
4660ee81feb6SDominik Brodowski 		int, newdfd, const char __user *, newname, unsigned int, flags)
4661ee81feb6SDominik Brodowski {
4662ee81feb6SDominik Brodowski 	return do_renameat2(olddfd, oldname, newdfd, newname, flags);
4663ee81feb6SDominik Brodowski }
4664ee81feb6SDominik Brodowski 
4665520c8b16SMiklos Szeredi SYSCALL_DEFINE4(renameat, int, olddfd, const char __user *, oldname,
4666520c8b16SMiklos Szeredi 		int, newdfd, const char __user *, newname)
4667520c8b16SMiklos Szeredi {
4668ee81feb6SDominik Brodowski 	return do_renameat2(olddfd, oldname, newdfd, newname, 0);
4669520c8b16SMiklos Szeredi }
4670520c8b16SMiklos Szeredi 
4671a26eab24SHeiko Carstens SYSCALL_DEFINE2(rename, const char __user *, oldname, const char __user *, newname)
46725590ff0dSUlrich Drepper {
4673ee81feb6SDominik Brodowski 	return do_renameat2(AT_FDCWD, oldname, AT_FDCWD, newname, 0);
46745590ff0dSUlrich Drepper }
46755590ff0dSUlrich Drepper 
4676787fb6bcSMiklos Szeredi int vfs_whiteout(struct inode *dir, struct dentry *dentry)
4677787fb6bcSMiklos Szeredi {
4678787fb6bcSMiklos Szeredi 	int error = may_create(dir, dentry);
4679787fb6bcSMiklos Szeredi 	if (error)
4680787fb6bcSMiklos Szeredi 		return error;
4681787fb6bcSMiklos Szeredi 
4682787fb6bcSMiklos Szeredi 	if (!dir->i_op->mknod)
4683787fb6bcSMiklos Szeredi 		return -EPERM;
4684787fb6bcSMiklos Szeredi 
4685787fb6bcSMiklos Szeredi 	return dir->i_op->mknod(dir, dentry,
4686787fb6bcSMiklos Szeredi 				S_IFCHR | WHITEOUT_MODE, WHITEOUT_DEV);
4687787fb6bcSMiklos Szeredi }
4688787fb6bcSMiklos Szeredi EXPORT_SYMBOL(vfs_whiteout);
4689787fb6bcSMiklos Szeredi 
46905d826c84SAl Viro int readlink_copy(char __user *buffer, int buflen, const char *link)
46911da177e4SLinus Torvalds {
46925d826c84SAl Viro 	int len = PTR_ERR(link);
46931da177e4SLinus Torvalds 	if (IS_ERR(link))
46941da177e4SLinus Torvalds 		goto out;
46951da177e4SLinus Torvalds 
46961da177e4SLinus Torvalds 	len = strlen(link);
46971da177e4SLinus Torvalds 	if (len > (unsigned) buflen)
46981da177e4SLinus Torvalds 		len = buflen;
46991da177e4SLinus Torvalds 	if (copy_to_user(buffer, link, len))
47001da177e4SLinus Torvalds 		len = -EFAULT;
47011da177e4SLinus Torvalds out:
47021da177e4SLinus Torvalds 	return len;
47031da177e4SLinus Torvalds }
47041da177e4SLinus Torvalds 
4705d60874cdSMiklos Szeredi /**
4706fd4a0edfSMiklos Szeredi  * vfs_readlink - copy symlink body into userspace buffer
4707fd4a0edfSMiklos Szeredi  * @dentry: dentry on which to get symbolic link
4708fd4a0edfSMiklos Szeredi  * @buffer: user memory pointer
4709fd4a0edfSMiklos Szeredi  * @buflen: size of buffer
4710fd4a0edfSMiklos Szeredi  *
4711fd4a0edfSMiklos Szeredi  * Does not touch atime.  That's up to the caller if necessary
4712fd4a0edfSMiklos Szeredi  *
4713fd4a0edfSMiklos Szeredi  * Does not call security hook.
4714fd4a0edfSMiklos Szeredi  */
4715fd4a0edfSMiklos Szeredi int vfs_readlink(struct dentry *dentry, char __user *buffer, int buflen)
4716fd4a0edfSMiklos Szeredi {
4717fd4a0edfSMiklos Szeredi 	struct inode *inode = d_inode(dentry);
4718f2df5da6SAl Viro 	DEFINE_DELAYED_CALL(done);
4719f2df5da6SAl Viro 	const char *link;
4720f2df5da6SAl Viro 	int res;
4721fd4a0edfSMiklos Szeredi 
472276fca90eSMiklos Szeredi 	if (unlikely(!(inode->i_opflags & IOP_DEFAULT_READLINK))) {
472376fca90eSMiklos Szeredi 		if (unlikely(inode->i_op->readlink))
472476fca90eSMiklos Szeredi 			return inode->i_op->readlink(dentry, buffer, buflen);
472576fca90eSMiklos Szeredi 
472676fca90eSMiklos Szeredi 		if (!d_is_symlink(dentry))
4727fd4a0edfSMiklos Szeredi 			return -EINVAL;
4728fd4a0edfSMiklos Szeredi 
472976fca90eSMiklos Szeredi 		spin_lock(&inode->i_lock);
473076fca90eSMiklos Szeredi 		inode->i_opflags |= IOP_DEFAULT_READLINK;
473176fca90eSMiklos Szeredi 		spin_unlock(&inode->i_lock);
473276fca90eSMiklos Szeredi 	}
473376fca90eSMiklos Szeredi 
4734f2df5da6SAl Viro 	link = inode->i_link;
4735f2df5da6SAl Viro 	if (!link) {
4736f2df5da6SAl Viro 		link = inode->i_op->get_link(dentry, inode, &done);
4737f2df5da6SAl Viro 		if (IS_ERR(link))
4738f2df5da6SAl Viro 			return PTR_ERR(link);
4739f2df5da6SAl Viro 	}
4740f2df5da6SAl Viro 	res = readlink_copy(buffer, buflen, link);
4741f2df5da6SAl Viro 	do_delayed_call(&done);
4742f2df5da6SAl Viro 	return res;
4743fd4a0edfSMiklos Szeredi }
4744fd4a0edfSMiklos Szeredi EXPORT_SYMBOL(vfs_readlink);
47451da177e4SLinus Torvalds 
4746d60874cdSMiklos Szeredi /**
4747d60874cdSMiklos Szeredi  * vfs_get_link - get symlink body
4748d60874cdSMiklos Szeredi  * @dentry: dentry on which to get symbolic link
4749d60874cdSMiklos Szeredi  * @done: caller needs to free returned data with this
4750d60874cdSMiklos Szeredi  *
4751d60874cdSMiklos Szeredi  * Calls security hook and i_op->get_link() on the supplied inode.
4752d60874cdSMiklos Szeredi  *
4753d60874cdSMiklos Szeredi  * It does not touch atime.  That's up to the caller if necessary.
4754d60874cdSMiklos Szeredi  *
4755d60874cdSMiklos Szeredi  * Does not work on "special" symlinks like /proc/$$/fd/N
4756d60874cdSMiklos Szeredi  */
4757d60874cdSMiklos Szeredi const char *vfs_get_link(struct dentry *dentry, struct delayed_call *done)
4758d60874cdSMiklos Szeredi {
4759d60874cdSMiklos Szeredi 	const char *res = ERR_PTR(-EINVAL);
4760d60874cdSMiklos Szeredi 	struct inode *inode = d_inode(dentry);
4761d60874cdSMiklos Szeredi 
4762d60874cdSMiklos Szeredi 	if (d_is_symlink(dentry)) {
4763d60874cdSMiklos Szeredi 		res = ERR_PTR(security_inode_readlink(dentry));
4764d60874cdSMiklos Szeredi 		if (!res)
4765d60874cdSMiklos Szeredi 			res = inode->i_op->get_link(dentry, inode, done);
4766d60874cdSMiklos Szeredi 	}
4767d60874cdSMiklos Szeredi 	return res;
4768d60874cdSMiklos Szeredi }
4769d60874cdSMiklos Szeredi EXPORT_SYMBOL(vfs_get_link);
4770d60874cdSMiklos Szeredi 
47711da177e4SLinus Torvalds /* get the link contents into pagecache */
47726b255391SAl Viro const char *page_get_link(struct dentry *dentry, struct inode *inode,
4773fceef393SAl Viro 			  struct delayed_call *callback)
47741da177e4SLinus Torvalds {
4775ebd09abbSDuane Griffin 	char *kaddr;
47761da177e4SLinus Torvalds 	struct page *page;
47776b255391SAl Viro 	struct address_space *mapping = inode->i_mapping;
47786b255391SAl Viro 
4779d3883d4fSAl Viro 	if (!dentry) {
4780d3883d4fSAl Viro 		page = find_get_page(mapping, 0);
4781d3883d4fSAl Viro 		if (!page)
47826b255391SAl Viro 			return ERR_PTR(-ECHILD);
4783d3883d4fSAl Viro 		if (!PageUptodate(page)) {
4784d3883d4fSAl Viro 			put_page(page);
4785d3883d4fSAl Viro 			return ERR_PTR(-ECHILD);
4786d3883d4fSAl Viro 		}
4787d3883d4fSAl Viro 	} else {
4788090d2b18SPekka Enberg 		page = read_mapping_page(mapping, 0, NULL);
47891da177e4SLinus Torvalds 		if (IS_ERR(page))
47906fe6900eSNick Piggin 			return (char*)page;
4791d3883d4fSAl Viro 	}
4792fceef393SAl Viro 	set_delayed_call(callback, page_put_link, page);
479321fc61c7SAl Viro 	BUG_ON(mapping_gfp_mask(mapping) & __GFP_HIGHMEM);
479421fc61c7SAl Viro 	kaddr = page_address(page);
47956b255391SAl Viro 	nd_terminate_link(kaddr, inode->i_size, PAGE_SIZE - 1);
4796ebd09abbSDuane Griffin 	return kaddr;
47971da177e4SLinus Torvalds }
47981da177e4SLinus Torvalds 
47996b255391SAl Viro EXPORT_SYMBOL(page_get_link);
48001da177e4SLinus Torvalds 
4801fceef393SAl Viro void page_put_link(void *arg)
48021da177e4SLinus Torvalds {
4803fceef393SAl Viro 	put_page(arg);
48041da177e4SLinus Torvalds }
48054d359507SAl Viro EXPORT_SYMBOL(page_put_link);
48061da177e4SLinus Torvalds 
4807aa80deabSAl Viro int page_readlink(struct dentry *dentry, char __user *buffer, int buflen)
4808aa80deabSAl Viro {
4809fceef393SAl Viro 	DEFINE_DELAYED_CALL(done);
48106b255391SAl Viro 	int res = readlink_copy(buffer, buflen,
48116b255391SAl Viro 				page_get_link(dentry, d_inode(dentry),
4812fceef393SAl Viro 					      &done));
4813fceef393SAl Viro 	do_delayed_call(&done);
4814aa80deabSAl Viro 	return res;
4815aa80deabSAl Viro }
4816aa80deabSAl Viro EXPORT_SYMBOL(page_readlink);
4817aa80deabSAl Viro 
481854566b2cSNick Piggin /*
481954566b2cSNick Piggin  * The nofs argument instructs pagecache_write_begin to pass AOP_FLAG_NOFS
482054566b2cSNick Piggin  */
482154566b2cSNick Piggin int __page_symlink(struct inode *inode, const char *symname, int len, int nofs)
48221da177e4SLinus Torvalds {
48231da177e4SLinus Torvalds 	struct address_space *mapping = inode->i_mapping;
48240adb25d2SKirill Korotaev 	struct page *page;
4825afddba49SNick Piggin 	void *fsdata;
4826beb497abSDmitriy Monakhov 	int err;
4827c718a975STetsuo Handa 	unsigned int flags = 0;
482854566b2cSNick Piggin 	if (nofs)
482954566b2cSNick Piggin 		flags |= AOP_FLAG_NOFS;
48301da177e4SLinus Torvalds 
48317e53cac4SNeilBrown retry:
4832afddba49SNick Piggin 	err = pagecache_write_begin(NULL, mapping, 0, len-1,
483354566b2cSNick Piggin 				flags, &page, &fsdata);
48341da177e4SLinus Torvalds 	if (err)
4835afddba49SNick Piggin 		goto fail;
4836afddba49SNick Piggin 
483721fc61c7SAl Viro 	memcpy(page_address(page), symname, len-1);
4838afddba49SNick Piggin 
4839afddba49SNick Piggin 	err = pagecache_write_end(NULL, mapping, 0, len-1, len-1,
4840afddba49SNick Piggin 							page, fsdata);
48411da177e4SLinus Torvalds 	if (err < 0)
48421da177e4SLinus Torvalds 		goto fail;
4843afddba49SNick Piggin 	if (err < len-1)
4844afddba49SNick Piggin 		goto retry;
4845afddba49SNick Piggin 
48461da177e4SLinus Torvalds 	mark_inode_dirty(inode);
48471da177e4SLinus Torvalds 	return 0;
48481da177e4SLinus Torvalds fail:
48491da177e4SLinus Torvalds 	return err;
48501da177e4SLinus Torvalds }
48514d359507SAl Viro EXPORT_SYMBOL(__page_symlink);
48521da177e4SLinus Torvalds 
48530adb25d2SKirill Korotaev int page_symlink(struct inode *inode, const char *symname, int len)
48540adb25d2SKirill Korotaev {
48550adb25d2SKirill Korotaev 	return __page_symlink(inode, symname, len,
4856c62d2555SMichal Hocko 			!mapping_gfp_constraint(inode->i_mapping, __GFP_FS));
48570adb25d2SKirill Korotaev }
48584d359507SAl Viro EXPORT_SYMBOL(page_symlink);
48590adb25d2SKirill Korotaev 
486092e1d5beSArjan van de Ven const struct inode_operations page_symlink_inode_operations = {
48616b255391SAl Viro 	.get_link	= page_get_link,
48621da177e4SLinus Torvalds };
48631da177e4SLinus Torvalds EXPORT_SYMBOL(page_symlink_inode_operations);
4864