xref: /openbmc/linux/fs/namei.c (revision b306419a)
11da177e4SLinus Torvalds /*
21da177e4SLinus Torvalds  *  linux/fs/namei.c
31da177e4SLinus Torvalds  *
41da177e4SLinus Torvalds  *  Copyright (C) 1991, 1992  Linus Torvalds
51da177e4SLinus Torvalds  */
61da177e4SLinus Torvalds 
71da177e4SLinus Torvalds /*
81da177e4SLinus Torvalds  * Some corrections by tytso.
91da177e4SLinus Torvalds  */
101da177e4SLinus Torvalds 
111da177e4SLinus Torvalds /* [Feb 1997 T. Schoebel-Theuer] Complete rewrite of the pathname
121da177e4SLinus Torvalds  * lookup logic.
131da177e4SLinus Torvalds  */
141da177e4SLinus Torvalds /* [Feb-Apr 2000, AV] Rewrite to the new namespace architecture.
151da177e4SLinus Torvalds  */
161da177e4SLinus Torvalds 
171da177e4SLinus Torvalds #include <linux/init.h>
181da177e4SLinus Torvalds #include <linux/module.h>
191da177e4SLinus Torvalds #include <linux/slab.h>
201da177e4SLinus Torvalds #include <linux/fs.h>
211da177e4SLinus Torvalds #include <linux/namei.h>
221da177e4SLinus Torvalds #include <linux/pagemap.h>
230eeca283SRobert Love #include <linux/fsnotify.h>
241da177e4SLinus Torvalds #include <linux/personality.h>
251da177e4SLinus Torvalds #include <linux/security.h>
266146f0d5SMimi Zohar #include <linux/ima.h>
271da177e4SLinus Torvalds #include <linux/syscalls.h>
281da177e4SLinus Torvalds #include <linux/mount.h>
291da177e4SLinus Torvalds #include <linux/audit.h>
3016f7e0feSRandy Dunlap #include <linux/capability.h>
31834f2a4aSTrond Myklebust #include <linux/file.h>
325590ff0dSUlrich Drepper #include <linux/fcntl.h>
3308ce5f16SSerge E. Hallyn #include <linux/device_cgroup.h>
345ad4e53bSAl Viro #include <linux/fs_struct.h>
351da177e4SLinus Torvalds #include <asm/uaccess.h>
361da177e4SLinus Torvalds 
37e81e3f4dSEric Paris #include "internal.h"
38e81e3f4dSEric Paris 
391da177e4SLinus Torvalds /* [Feb-1997 T. Schoebel-Theuer]
401da177e4SLinus Torvalds  * Fundamental changes in the pathname lookup mechanisms (namei)
411da177e4SLinus Torvalds  * were necessary because of omirr.  The reason is that omirr needs
421da177e4SLinus Torvalds  * to know the _real_ pathname, not the user-supplied one, in case
431da177e4SLinus Torvalds  * of symlinks (and also when transname replacements occur).
441da177e4SLinus Torvalds  *
451da177e4SLinus Torvalds  * The new code replaces the old recursive symlink resolution with
461da177e4SLinus Torvalds  * an iterative one (in case of non-nested symlink chains).  It does
471da177e4SLinus Torvalds  * this with calls to <fs>_follow_link().
481da177e4SLinus Torvalds  * As a side effect, dir_namei(), _namei() and follow_link() are now
491da177e4SLinus Torvalds  * replaced with a single function lookup_dentry() that can handle all
501da177e4SLinus Torvalds  * the special cases of the former code.
511da177e4SLinus Torvalds  *
521da177e4SLinus Torvalds  * With the new dcache, the pathname is stored at each inode, at least as
531da177e4SLinus Torvalds  * long as the refcount of the inode is positive.  As a side effect, the
541da177e4SLinus Torvalds  * size of the dcache depends on the inode cache and thus is dynamic.
551da177e4SLinus Torvalds  *
561da177e4SLinus Torvalds  * [29-Apr-1998 C. Scott Ananian] Updated above description of symlink
571da177e4SLinus Torvalds  * resolution to correspond with current state of the code.
581da177e4SLinus Torvalds  *
591da177e4SLinus Torvalds  * Note that the symlink resolution is not *completely* iterative.
601da177e4SLinus Torvalds  * There is still a significant amount of tail- and mid- recursion in
611da177e4SLinus Torvalds  * the algorithm.  Also, note that <fs>_readlink() is not used in
621da177e4SLinus Torvalds  * lookup_dentry(): lookup_dentry() on the result of <fs>_readlink()
631da177e4SLinus Torvalds  * may return different results than <fs>_follow_link().  Many virtual
641da177e4SLinus Torvalds  * filesystems (including /proc) exhibit this behavior.
651da177e4SLinus Torvalds  */
661da177e4SLinus Torvalds 
671da177e4SLinus Torvalds /* [24-Feb-97 T. Schoebel-Theuer] Side effects caused by new implementation:
681da177e4SLinus Torvalds  * New symlink semantics: when open() is called with flags O_CREAT | O_EXCL
691da177e4SLinus Torvalds  * and the name already exists in form of a symlink, try to create the new
701da177e4SLinus Torvalds  * name indicated by the symlink. The old code always complained that the
711da177e4SLinus Torvalds  * name already exists, due to not following the symlink even if its target
721da177e4SLinus Torvalds  * is nonexistent.  The new semantics affects also mknod() and link() when
731da177e4SLinus Torvalds  * the name is a symlink pointing to a non-existant name.
741da177e4SLinus Torvalds  *
751da177e4SLinus Torvalds  * I don't know which semantics is the right one, since I have no access
761da177e4SLinus Torvalds  * to standards. But I found by trial that HP-UX 9.0 has the full "new"
771da177e4SLinus Torvalds  * semantics implemented, while SunOS 4.1.1 and Solaris (SunOS 5.4) have the
781da177e4SLinus Torvalds  * "old" one. Personally, I think the new semantics is much more logical.
791da177e4SLinus Torvalds  * Note that "ln old new" where "new" is a symlink pointing to a non-existing
801da177e4SLinus Torvalds  * file does succeed in both HP-UX and SunOs, but not in Solaris
811da177e4SLinus Torvalds  * and in the old Linux semantics.
821da177e4SLinus Torvalds  */
831da177e4SLinus Torvalds 
841da177e4SLinus Torvalds /* [16-Dec-97 Kevin Buhr] For security reasons, we change some symlink
851da177e4SLinus Torvalds  * semantics.  See the comments in "open_namei" and "do_link" below.
861da177e4SLinus Torvalds  *
871da177e4SLinus Torvalds  * [10-Sep-98 Alan Modra] Another symlink change.
881da177e4SLinus Torvalds  */
891da177e4SLinus Torvalds 
901da177e4SLinus Torvalds /* [Feb-Apr 2000 AV] Complete rewrite. Rules for symlinks:
911da177e4SLinus Torvalds  *	inside the path - always follow.
921da177e4SLinus Torvalds  *	in the last component in creation/removal/renaming - never follow.
931da177e4SLinus Torvalds  *	if LOOKUP_FOLLOW passed - follow.
941da177e4SLinus Torvalds  *	if the pathname has trailing slashes - follow.
951da177e4SLinus Torvalds  *	otherwise - don't follow.
961da177e4SLinus Torvalds  * (applied in that order).
971da177e4SLinus Torvalds  *
981da177e4SLinus Torvalds  * [Jun 2000 AV] Inconsistent behaviour of open() in case if flags==O_CREAT
991da177e4SLinus Torvalds  * restored for 2.4. This is the last surviving part of old 4.2BSD bug.
1001da177e4SLinus Torvalds  * During the 2.4 we need to fix the userland stuff depending on it -
1011da177e4SLinus Torvalds  * hopefully we will be able to get rid of that wart in 2.5. So far only
1021da177e4SLinus Torvalds  * XEmacs seems to be relying on it...
1031da177e4SLinus Torvalds  */
1041da177e4SLinus Torvalds /*
1051da177e4SLinus Torvalds  * [Sep 2001 AV] Single-semaphore locking scheme (kudos to David Holland)
106a11f3a05SArjan van de Ven  * implemented.  Let's see if raised priority of ->s_vfs_rename_mutex gives
1071da177e4SLinus Torvalds  * any extra contention...
1081da177e4SLinus Torvalds  */
1091da177e4SLinus Torvalds 
1101da177e4SLinus Torvalds /* In order to reduce some races, while at the same time doing additional
1111da177e4SLinus Torvalds  * checking and hopefully speeding things up, we copy filenames to the
1121da177e4SLinus Torvalds  * kernel data space before using them..
1131da177e4SLinus Torvalds  *
1141da177e4SLinus Torvalds  * POSIX.1 2.4: an empty pathname is invalid (ENOENT).
1151da177e4SLinus Torvalds  * PATH_MAX includes the nul terminator --RR.
1161da177e4SLinus Torvalds  */
117858119e1SArjan van de Ven static int do_getname(const char __user *filename, char *page)
1181da177e4SLinus Torvalds {
1191da177e4SLinus Torvalds 	int retval;
1201da177e4SLinus Torvalds 	unsigned long len = PATH_MAX;
1211da177e4SLinus Torvalds 
1221da177e4SLinus Torvalds 	if (!segment_eq(get_fs(), KERNEL_DS)) {
1231da177e4SLinus Torvalds 		if ((unsigned long) filename >= TASK_SIZE)
1241da177e4SLinus Torvalds 			return -EFAULT;
1251da177e4SLinus Torvalds 		if (TASK_SIZE - (unsigned long) filename < PATH_MAX)
1261da177e4SLinus Torvalds 			len = TASK_SIZE - (unsigned long) filename;
1271da177e4SLinus Torvalds 	}
1281da177e4SLinus Torvalds 
1291da177e4SLinus Torvalds 	retval = strncpy_from_user(page, filename, len);
1301da177e4SLinus Torvalds 	if (retval > 0) {
1311da177e4SLinus Torvalds 		if (retval < len)
1321da177e4SLinus Torvalds 			return 0;
1331da177e4SLinus Torvalds 		return -ENAMETOOLONG;
1341da177e4SLinus Torvalds 	} else if (!retval)
1351da177e4SLinus Torvalds 		retval = -ENOENT;
1361da177e4SLinus Torvalds 	return retval;
1371da177e4SLinus Torvalds }
1381da177e4SLinus Torvalds 
1391da177e4SLinus Torvalds char * getname(const char __user * filename)
1401da177e4SLinus Torvalds {
1411da177e4SLinus Torvalds 	char *tmp, *result;
1421da177e4SLinus Torvalds 
1431da177e4SLinus Torvalds 	result = ERR_PTR(-ENOMEM);
1441da177e4SLinus Torvalds 	tmp = __getname();
1451da177e4SLinus Torvalds 	if (tmp)  {
1461da177e4SLinus Torvalds 		int retval = do_getname(filename, tmp);
1471da177e4SLinus Torvalds 
1481da177e4SLinus Torvalds 		result = tmp;
1491da177e4SLinus Torvalds 		if (retval < 0) {
1501da177e4SLinus Torvalds 			__putname(tmp);
1511da177e4SLinus Torvalds 			result = ERR_PTR(retval);
1521da177e4SLinus Torvalds 		}
1531da177e4SLinus Torvalds 	}
1541da177e4SLinus Torvalds 	audit_getname(result);
1551da177e4SLinus Torvalds 	return result;
1561da177e4SLinus Torvalds }
1571da177e4SLinus Torvalds 
1581da177e4SLinus Torvalds #ifdef CONFIG_AUDITSYSCALL
1591da177e4SLinus Torvalds void putname(const char *name)
1601da177e4SLinus Torvalds {
1615ac3a9c2SAl Viro 	if (unlikely(!audit_dummy_context()))
1621da177e4SLinus Torvalds 		audit_putname(name);
1631da177e4SLinus Torvalds 	else
1641da177e4SLinus Torvalds 		__putname(name);
1651da177e4SLinus Torvalds }
1661da177e4SLinus Torvalds EXPORT_SYMBOL(putname);
1671da177e4SLinus Torvalds #endif
1681da177e4SLinus Torvalds 
1695909ccaaSLinus Torvalds /*
1705909ccaaSLinus Torvalds  * This does basic POSIX ACL permission checking
1715909ccaaSLinus Torvalds  */
172b74c79e9SNick Piggin static int acl_permission_check(struct inode *inode, int mask, unsigned int flags,
173b74c79e9SNick Piggin 		int (*check_acl)(struct inode *inode, int mask, unsigned int flags))
1745909ccaaSLinus Torvalds {
1755909ccaaSLinus Torvalds 	umode_t			mode = inode->i_mode;
1765909ccaaSLinus Torvalds 
1775909ccaaSLinus Torvalds 	mask &= MAY_READ | MAY_WRITE | MAY_EXEC;
1785909ccaaSLinus Torvalds 
1795909ccaaSLinus Torvalds 	if (current_fsuid() == inode->i_uid)
1805909ccaaSLinus Torvalds 		mode >>= 6;
1815909ccaaSLinus Torvalds 	else {
1825909ccaaSLinus Torvalds 		if (IS_POSIXACL(inode) && (mode & S_IRWXG) && check_acl) {
183b74c79e9SNick Piggin 			int error = check_acl(inode, mask, flags);
1845909ccaaSLinus Torvalds 			if (error != -EAGAIN)
1855909ccaaSLinus Torvalds 				return error;
1865909ccaaSLinus Torvalds 		}
1875909ccaaSLinus Torvalds 
1885909ccaaSLinus Torvalds 		if (in_group_p(inode->i_gid))
1895909ccaaSLinus Torvalds 			mode >>= 3;
1905909ccaaSLinus Torvalds 	}
1915909ccaaSLinus Torvalds 
1925909ccaaSLinus Torvalds 	/*
1935909ccaaSLinus Torvalds 	 * If the DACs are ok we don't need any capability check.
1945909ccaaSLinus Torvalds 	 */
1955909ccaaSLinus Torvalds 	if ((mask & ~mode) == 0)
1965909ccaaSLinus Torvalds 		return 0;
1975909ccaaSLinus Torvalds 	return -EACCES;
1985909ccaaSLinus Torvalds }
1991da177e4SLinus Torvalds 
2001da177e4SLinus Torvalds /**
2011da177e4SLinus Torvalds  * generic_permission -  check for access rights on a Posix-like filesystem
2021da177e4SLinus Torvalds  * @inode:	inode to check access rights for
2031da177e4SLinus Torvalds  * @mask:	right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
2041da177e4SLinus Torvalds  * @check_acl:	optional callback to check for Posix ACLs
20539191628SRandy Dunlap  * @flags:	IPERM_FLAG_ flags.
2061da177e4SLinus Torvalds  *
2071da177e4SLinus Torvalds  * Used to check for read/write/execute permissions on a file.
2081da177e4SLinus Torvalds  * We use "fsuid" for this, letting us set arbitrary permissions
2091da177e4SLinus Torvalds  * for filesystem access without changing the "normal" uids which
210b74c79e9SNick Piggin  * are used for other things.
211b74c79e9SNick Piggin  *
212b74c79e9SNick Piggin  * generic_permission is rcu-walk aware. It returns -ECHILD in case an rcu-walk
213b74c79e9SNick Piggin  * request cannot be satisfied (eg. requires blocking or too much complexity).
214b74c79e9SNick Piggin  * It would then be called again in ref-walk mode.
2151da177e4SLinus Torvalds  */
216b74c79e9SNick Piggin int generic_permission(struct inode *inode, int mask, unsigned int flags,
217b74c79e9SNick Piggin 	int (*check_acl)(struct inode *inode, int mask, unsigned int flags))
2181da177e4SLinus Torvalds {
2195909ccaaSLinus Torvalds 	int ret;
2201da177e4SLinus Torvalds 
2211da177e4SLinus Torvalds 	/*
2225909ccaaSLinus Torvalds 	 * Do the basic POSIX ACL permission checks.
2231da177e4SLinus Torvalds 	 */
224b74c79e9SNick Piggin 	ret = acl_permission_check(inode, mask, flags, check_acl);
2255909ccaaSLinus Torvalds 	if (ret != -EACCES)
2265909ccaaSLinus Torvalds 		return ret;
2271da177e4SLinus Torvalds 
2281da177e4SLinus Torvalds 	/*
2291da177e4SLinus Torvalds 	 * Read/write DACs are always overridable.
2301da177e4SLinus Torvalds 	 * Executable DACs are overridable if at least one exec bit is set.
2311da177e4SLinus Torvalds 	 */
232f696a365SMiklos Szeredi 	if (!(mask & MAY_EXEC) || execute_ok(inode))
2331da177e4SLinus Torvalds 		if (capable(CAP_DAC_OVERRIDE))
2341da177e4SLinus Torvalds 			return 0;
2351da177e4SLinus Torvalds 
2361da177e4SLinus Torvalds 	/*
2371da177e4SLinus Torvalds 	 * Searching includes executable on directories, else just read.
2381da177e4SLinus Torvalds 	 */
2397ea66001SSerge E. Hallyn 	mask &= MAY_READ | MAY_WRITE | MAY_EXEC;
2401da177e4SLinus Torvalds 	if (mask == MAY_READ || (S_ISDIR(inode->i_mode) && !(mask & MAY_WRITE)))
2411da177e4SLinus Torvalds 		if (capable(CAP_DAC_READ_SEARCH))
2421da177e4SLinus Torvalds 			return 0;
2431da177e4SLinus Torvalds 
2441da177e4SLinus Torvalds 	return -EACCES;
2451da177e4SLinus Torvalds }
2461da177e4SLinus Torvalds 
247cb23beb5SChristoph Hellwig /**
248cb23beb5SChristoph Hellwig  * inode_permission  -  check for access rights to a given inode
249cb23beb5SChristoph Hellwig  * @inode:	inode to check permission on
250cb23beb5SChristoph Hellwig  * @mask:	right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
251cb23beb5SChristoph Hellwig  *
252cb23beb5SChristoph Hellwig  * Used to check for read/write/execute permissions on an inode.
253cb23beb5SChristoph Hellwig  * We use "fsuid" for this, letting us set arbitrary permissions
254cb23beb5SChristoph Hellwig  * for filesystem access without changing the "normal" uids which
255cb23beb5SChristoph Hellwig  * are used for other things.
256cb23beb5SChristoph Hellwig  */
257f419a2e3SAl Viro int inode_permission(struct inode *inode, int mask)
2581da177e4SLinus Torvalds {
259e6305c43SAl Viro 	int retval;
2601da177e4SLinus Torvalds 
2611da177e4SLinus Torvalds 	if (mask & MAY_WRITE) {
26222590e41SMiklos Szeredi 		umode_t mode = inode->i_mode;
2631da177e4SLinus Torvalds 
2641da177e4SLinus Torvalds 		/*
2651da177e4SLinus Torvalds 		 * Nobody gets write access to a read-only fs.
2661da177e4SLinus Torvalds 		 */
2671da177e4SLinus Torvalds 		if (IS_RDONLY(inode) &&
2681da177e4SLinus Torvalds 		    (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode)))
2691da177e4SLinus Torvalds 			return -EROFS;
2701da177e4SLinus Torvalds 
2711da177e4SLinus Torvalds 		/*
2721da177e4SLinus Torvalds 		 * Nobody gets write access to an immutable file.
2731da177e4SLinus Torvalds 		 */
2741da177e4SLinus Torvalds 		if (IS_IMMUTABLE(inode))
2751da177e4SLinus Torvalds 			return -EACCES;
2761da177e4SLinus Torvalds 	}
2771da177e4SLinus Torvalds 
278acfa4380SAl Viro 	if (inode->i_op->permission)
279b74c79e9SNick Piggin 		retval = inode->i_op->permission(inode, mask, 0);
280f696a365SMiklos Szeredi 	else
281b74c79e9SNick Piggin 		retval = generic_permission(inode, mask, 0,
282b74c79e9SNick Piggin 				inode->i_op->check_acl);
283f696a365SMiklos Szeredi 
2841da177e4SLinus Torvalds 	if (retval)
2851da177e4SLinus Torvalds 		return retval;
2861da177e4SLinus Torvalds 
28708ce5f16SSerge E. Hallyn 	retval = devcgroup_inode_permission(inode, mask);
28808ce5f16SSerge E. Hallyn 	if (retval)
28908ce5f16SSerge E. Hallyn 		return retval;
29008ce5f16SSerge E. Hallyn 
291d09ca739SEric Paris 	return security_inode_permission(inode, mask);
2921da177e4SLinus Torvalds }
2931da177e4SLinus Torvalds 
294e4543eddSChristoph Hellwig /**
2958c744fb8SChristoph Hellwig  * file_permission  -  check for additional access rights to a given file
2968c744fb8SChristoph Hellwig  * @file:	file to check access rights for
2978c744fb8SChristoph Hellwig  * @mask:	right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
2988c744fb8SChristoph Hellwig  *
2998c744fb8SChristoph Hellwig  * Used to check for read/write/execute permissions on an already opened
3008c744fb8SChristoph Hellwig  * file.
3018c744fb8SChristoph Hellwig  *
3028c744fb8SChristoph Hellwig  * Note:
3038c744fb8SChristoph Hellwig  *	Do not use this function in new code.  All access checks should
304cb23beb5SChristoph Hellwig  *	be done using inode_permission().
3058c744fb8SChristoph Hellwig  */
3068c744fb8SChristoph Hellwig int file_permission(struct file *file, int mask)
3078c744fb8SChristoph Hellwig {
308f419a2e3SAl Viro 	return inode_permission(file->f_path.dentry->d_inode, mask);
3098c744fb8SChristoph Hellwig }
3108c744fb8SChristoph Hellwig 
3111da177e4SLinus Torvalds /*
3121da177e4SLinus Torvalds  * get_write_access() gets write permission for a file.
3131da177e4SLinus Torvalds  * put_write_access() releases this write permission.
3141da177e4SLinus Torvalds  * This is used for regular files.
3151da177e4SLinus Torvalds  * We cannot support write (and maybe mmap read-write shared) accesses and
3161da177e4SLinus Torvalds  * MAP_DENYWRITE mmappings simultaneously. The i_writecount field of an inode
3171da177e4SLinus Torvalds  * can have the following values:
3181da177e4SLinus Torvalds  * 0: no writers, no VM_DENYWRITE mappings
3191da177e4SLinus Torvalds  * < 0: (-i_writecount) vm_area_structs with VM_DENYWRITE set exist
3201da177e4SLinus Torvalds  * > 0: (i_writecount) users are writing to the file.
3211da177e4SLinus Torvalds  *
3221da177e4SLinus Torvalds  * Normally we operate on that counter with atomic_{inc,dec} and it's safe
3231da177e4SLinus Torvalds  * except for the cases where we don't hold i_writecount yet. Then we need to
3241da177e4SLinus Torvalds  * use {get,deny}_write_access() - these functions check the sign and refuse
3251da177e4SLinus Torvalds  * to do the change if sign is wrong. Exclusion between them is provided by
3261da177e4SLinus Torvalds  * the inode->i_lock spinlock.
3271da177e4SLinus Torvalds  */
3281da177e4SLinus Torvalds 
3291da177e4SLinus Torvalds int get_write_access(struct inode * inode)
3301da177e4SLinus Torvalds {
3311da177e4SLinus Torvalds 	spin_lock(&inode->i_lock);
3321da177e4SLinus Torvalds 	if (atomic_read(&inode->i_writecount) < 0) {
3331da177e4SLinus Torvalds 		spin_unlock(&inode->i_lock);
3341da177e4SLinus Torvalds 		return -ETXTBSY;
3351da177e4SLinus Torvalds 	}
3361da177e4SLinus Torvalds 	atomic_inc(&inode->i_writecount);
3371da177e4SLinus Torvalds 	spin_unlock(&inode->i_lock);
3381da177e4SLinus Torvalds 
3391da177e4SLinus Torvalds 	return 0;
3401da177e4SLinus Torvalds }
3411da177e4SLinus Torvalds 
3421da177e4SLinus Torvalds int deny_write_access(struct file * file)
3431da177e4SLinus Torvalds {
3440f7fc9e4SJosef "Jeff" Sipek 	struct inode *inode = file->f_path.dentry->d_inode;
3451da177e4SLinus Torvalds 
3461da177e4SLinus Torvalds 	spin_lock(&inode->i_lock);
3471da177e4SLinus Torvalds 	if (atomic_read(&inode->i_writecount) > 0) {
3481da177e4SLinus Torvalds 		spin_unlock(&inode->i_lock);
3491da177e4SLinus Torvalds 		return -ETXTBSY;
3501da177e4SLinus Torvalds 	}
3511da177e4SLinus Torvalds 	atomic_dec(&inode->i_writecount);
3521da177e4SLinus Torvalds 	spin_unlock(&inode->i_lock);
3531da177e4SLinus Torvalds 
3541da177e4SLinus Torvalds 	return 0;
3551da177e4SLinus Torvalds }
3561da177e4SLinus Torvalds 
3571d957f9bSJan Blunck /**
3585dd784d0SJan Blunck  * path_get - get a reference to a path
3595dd784d0SJan Blunck  * @path: path to get the reference to
3605dd784d0SJan Blunck  *
3615dd784d0SJan Blunck  * Given a path increment the reference count to the dentry and the vfsmount.
3625dd784d0SJan Blunck  */
3635dd784d0SJan Blunck void path_get(struct path *path)
3645dd784d0SJan Blunck {
3655dd784d0SJan Blunck 	mntget(path->mnt);
3665dd784d0SJan Blunck 	dget(path->dentry);
3675dd784d0SJan Blunck }
3685dd784d0SJan Blunck EXPORT_SYMBOL(path_get);
3695dd784d0SJan Blunck 
3705dd784d0SJan Blunck /**
3711d957f9bSJan Blunck  * path_put - put a reference to a path
3721d957f9bSJan Blunck  * @path: path to put the reference to
3731d957f9bSJan Blunck  *
3741d957f9bSJan Blunck  * Given a path decrement the reference count to the dentry and the vfsmount.
3751d957f9bSJan Blunck  */
3761d957f9bSJan Blunck void path_put(struct path *path)
3771da177e4SLinus Torvalds {
3781d957f9bSJan Blunck 	dput(path->dentry);
3791d957f9bSJan Blunck 	mntput(path->mnt);
3801da177e4SLinus Torvalds }
3811d957f9bSJan Blunck EXPORT_SYMBOL(path_put);
3821da177e4SLinus Torvalds 
383834f2a4aSTrond Myklebust /**
38431e6b01fSNick Piggin  * nameidata_drop_rcu - drop this nameidata out of rcu-walk
38531e6b01fSNick Piggin  * @nd: nameidata pathwalk data to drop
38639191628SRandy Dunlap  * Returns: 0 on success, -ECHILD on failure
38731e6b01fSNick Piggin  *
38831e6b01fSNick Piggin  * Path walking has 2 modes, rcu-walk and ref-walk (see
38931e6b01fSNick Piggin  * Documentation/filesystems/path-lookup.txt). __drop_rcu* functions attempt
39031e6b01fSNick Piggin  * to drop out of rcu-walk mode and take normal reference counts on dentries
39131e6b01fSNick Piggin  * and vfsmounts to transition to rcu-walk mode. __drop_rcu* functions take
39231e6b01fSNick Piggin  * refcounts at the last known good point before rcu-walk got stuck, so
39331e6b01fSNick Piggin  * ref-walk may continue from there. If this is not successful (eg. a seqcount
39431e6b01fSNick Piggin  * has changed), then failure is returned and path walk restarts from the
39531e6b01fSNick Piggin  * beginning in ref-walk mode.
39631e6b01fSNick Piggin  *
39731e6b01fSNick Piggin  * nameidata_drop_rcu attempts to drop the current nd->path and nd->root into
39831e6b01fSNick Piggin  * ref-walk. Must be called from rcu-walk context.
39931e6b01fSNick Piggin  */
40031e6b01fSNick Piggin static int nameidata_drop_rcu(struct nameidata *nd)
40131e6b01fSNick Piggin {
40231e6b01fSNick Piggin 	struct fs_struct *fs = current->fs;
40331e6b01fSNick Piggin 	struct dentry *dentry = nd->path.dentry;
40431e6b01fSNick Piggin 
40531e6b01fSNick Piggin 	BUG_ON(!(nd->flags & LOOKUP_RCU));
40631e6b01fSNick Piggin 	if (nd->root.mnt) {
40731e6b01fSNick Piggin 		spin_lock(&fs->lock);
40831e6b01fSNick Piggin 		if (nd->root.mnt != fs->root.mnt ||
40931e6b01fSNick Piggin 				nd->root.dentry != fs->root.dentry)
41031e6b01fSNick Piggin 			goto err_root;
41131e6b01fSNick Piggin 	}
41231e6b01fSNick Piggin 	spin_lock(&dentry->d_lock);
41331e6b01fSNick Piggin 	if (!__d_rcu_to_refcount(dentry, nd->seq))
41431e6b01fSNick Piggin 		goto err;
41531e6b01fSNick Piggin 	BUG_ON(nd->inode != dentry->d_inode);
41631e6b01fSNick Piggin 	spin_unlock(&dentry->d_lock);
41731e6b01fSNick Piggin 	if (nd->root.mnt) {
41831e6b01fSNick Piggin 		path_get(&nd->root);
41931e6b01fSNick Piggin 		spin_unlock(&fs->lock);
42031e6b01fSNick Piggin 	}
42131e6b01fSNick Piggin 	mntget(nd->path.mnt);
42231e6b01fSNick Piggin 
42331e6b01fSNick Piggin 	rcu_read_unlock();
42431e6b01fSNick Piggin 	br_read_unlock(vfsmount_lock);
42531e6b01fSNick Piggin 	nd->flags &= ~LOOKUP_RCU;
42631e6b01fSNick Piggin 	return 0;
42731e6b01fSNick Piggin err:
42831e6b01fSNick Piggin 	spin_unlock(&dentry->d_lock);
42931e6b01fSNick Piggin err_root:
43031e6b01fSNick Piggin 	if (nd->root.mnt)
43131e6b01fSNick Piggin 		spin_unlock(&fs->lock);
43231e6b01fSNick Piggin 	return -ECHILD;
43331e6b01fSNick Piggin }
43431e6b01fSNick Piggin 
43531e6b01fSNick Piggin /* Try to drop out of rcu-walk mode if we were in it, otherwise do nothing.  */
43631e6b01fSNick Piggin static inline int nameidata_drop_rcu_maybe(struct nameidata *nd)
43731e6b01fSNick Piggin {
43831e6b01fSNick Piggin 	if (nd->flags & LOOKUP_RCU)
43931e6b01fSNick Piggin 		return nameidata_drop_rcu(nd);
44031e6b01fSNick Piggin 	return 0;
44131e6b01fSNick Piggin }
44231e6b01fSNick Piggin 
44331e6b01fSNick Piggin /**
44431e6b01fSNick Piggin  * nameidata_dentry_drop_rcu - drop nameidata and dentry out of rcu-walk
44531e6b01fSNick Piggin  * @nd: nameidata pathwalk data to drop
44631e6b01fSNick Piggin  * @dentry: dentry to drop
44739191628SRandy Dunlap  * Returns: 0 on success, -ECHILD on failure
44831e6b01fSNick Piggin  *
44931e6b01fSNick Piggin  * nameidata_dentry_drop_rcu attempts to drop the current nd->path and nd->root,
45031e6b01fSNick Piggin  * and dentry into ref-walk. @dentry must be a path found by a do_lookup call on
45131e6b01fSNick Piggin  * @nd. Must be called from rcu-walk context.
45231e6b01fSNick Piggin  */
45331e6b01fSNick Piggin static int nameidata_dentry_drop_rcu(struct nameidata *nd, struct dentry *dentry)
45431e6b01fSNick Piggin {
45531e6b01fSNick Piggin 	struct fs_struct *fs = current->fs;
45631e6b01fSNick Piggin 	struct dentry *parent = nd->path.dentry;
45731e6b01fSNick Piggin 
45831e6b01fSNick Piggin 	BUG_ON(!(nd->flags & LOOKUP_RCU));
45931e6b01fSNick Piggin 	if (nd->root.mnt) {
46031e6b01fSNick Piggin 		spin_lock(&fs->lock);
46131e6b01fSNick Piggin 		if (nd->root.mnt != fs->root.mnt ||
46231e6b01fSNick Piggin 				nd->root.dentry != fs->root.dentry)
46331e6b01fSNick Piggin 			goto err_root;
46431e6b01fSNick Piggin 	}
46531e6b01fSNick Piggin 	spin_lock(&parent->d_lock);
46631e6b01fSNick Piggin 	spin_lock_nested(&dentry->d_lock, DENTRY_D_LOCK_NESTED);
46731e6b01fSNick Piggin 	if (!__d_rcu_to_refcount(dentry, nd->seq))
46831e6b01fSNick Piggin 		goto err;
46931e6b01fSNick Piggin 	/*
47031e6b01fSNick Piggin 	 * If the sequence check on the child dentry passed, then the child has
47131e6b01fSNick Piggin 	 * not been removed from its parent. This means the parent dentry must
47231e6b01fSNick Piggin 	 * be valid and able to take a reference at this point.
47331e6b01fSNick Piggin 	 */
47431e6b01fSNick Piggin 	BUG_ON(!IS_ROOT(dentry) && dentry->d_parent != parent);
47531e6b01fSNick Piggin 	BUG_ON(!parent->d_count);
47631e6b01fSNick Piggin 	parent->d_count++;
47731e6b01fSNick Piggin 	spin_unlock(&dentry->d_lock);
47831e6b01fSNick Piggin 	spin_unlock(&parent->d_lock);
47931e6b01fSNick Piggin 	if (nd->root.mnt) {
48031e6b01fSNick Piggin 		path_get(&nd->root);
48131e6b01fSNick Piggin 		spin_unlock(&fs->lock);
48231e6b01fSNick Piggin 	}
48331e6b01fSNick Piggin 	mntget(nd->path.mnt);
48431e6b01fSNick Piggin 
48531e6b01fSNick Piggin 	rcu_read_unlock();
48631e6b01fSNick Piggin 	br_read_unlock(vfsmount_lock);
48731e6b01fSNick Piggin 	nd->flags &= ~LOOKUP_RCU;
48831e6b01fSNick Piggin 	return 0;
48931e6b01fSNick Piggin err:
49031e6b01fSNick Piggin 	spin_unlock(&dentry->d_lock);
49131e6b01fSNick Piggin 	spin_unlock(&parent->d_lock);
49231e6b01fSNick Piggin err_root:
49331e6b01fSNick Piggin 	if (nd->root.mnt)
49431e6b01fSNick Piggin 		spin_unlock(&fs->lock);
49531e6b01fSNick Piggin 	return -ECHILD;
49631e6b01fSNick Piggin }
49731e6b01fSNick Piggin 
49831e6b01fSNick Piggin /* Try to drop out of rcu-walk mode if we were in it, otherwise do nothing.  */
49931e6b01fSNick Piggin static inline int nameidata_dentry_drop_rcu_maybe(struct nameidata *nd, struct dentry *dentry)
50031e6b01fSNick Piggin {
50131e6b01fSNick Piggin 	if (nd->flags & LOOKUP_RCU)
50231e6b01fSNick Piggin 		return nameidata_dentry_drop_rcu(nd, dentry);
50331e6b01fSNick Piggin 	return 0;
50431e6b01fSNick Piggin }
50531e6b01fSNick Piggin 
50631e6b01fSNick Piggin /**
50731e6b01fSNick Piggin  * nameidata_drop_rcu_last - drop nameidata ending path walk out of rcu-walk
50831e6b01fSNick Piggin  * @nd: nameidata pathwalk data to drop
50939191628SRandy Dunlap  * Returns: 0 on success, -ECHILD on failure
51031e6b01fSNick Piggin  *
51131e6b01fSNick Piggin  * nameidata_drop_rcu_last attempts to drop the current nd->path into ref-walk.
51231e6b01fSNick Piggin  * nd->path should be the final element of the lookup, so nd->root is discarded.
51331e6b01fSNick Piggin  * Must be called from rcu-walk context.
51431e6b01fSNick Piggin  */
51531e6b01fSNick Piggin static int nameidata_drop_rcu_last(struct nameidata *nd)
51631e6b01fSNick Piggin {
51731e6b01fSNick Piggin 	struct dentry *dentry = nd->path.dentry;
51831e6b01fSNick Piggin 
51931e6b01fSNick Piggin 	BUG_ON(!(nd->flags & LOOKUP_RCU));
52031e6b01fSNick Piggin 	nd->flags &= ~LOOKUP_RCU;
52131e6b01fSNick Piggin 	nd->root.mnt = NULL;
52231e6b01fSNick Piggin 	spin_lock(&dentry->d_lock);
52331e6b01fSNick Piggin 	if (!__d_rcu_to_refcount(dentry, nd->seq))
52431e6b01fSNick Piggin 		goto err_unlock;
52531e6b01fSNick Piggin 	BUG_ON(nd->inode != dentry->d_inode);
52631e6b01fSNick Piggin 	spin_unlock(&dentry->d_lock);
52731e6b01fSNick Piggin 
52831e6b01fSNick Piggin 	mntget(nd->path.mnt);
52931e6b01fSNick Piggin 
53031e6b01fSNick Piggin 	rcu_read_unlock();
53131e6b01fSNick Piggin 	br_read_unlock(vfsmount_lock);
53231e6b01fSNick Piggin 
53331e6b01fSNick Piggin 	return 0;
53431e6b01fSNick Piggin 
53531e6b01fSNick Piggin err_unlock:
53631e6b01fSNick Piggin 	spin_unlock(&dentry->d_lock);
53731e6b01fSNick Piggin 	rcu_read_unlock();
53831e6b01fSNick Piggin 	br_read_unlock(vfsmount_lock);
53931e6b01fSNick Piggin 	return -ECHILD;
54031e6b01fSNick Piggin }
54131e6b01fSNick Piggin 
54231e6b01fSNick Piggin /* Try to drop out of rcu-walk mode if we were in it, otherwise do nothing.  */
54331e6b01fSNick Piggin static inline int nameidata_drop_rcu_last_maybe(struct nameidata *nd)
54431e6b01fSNick Piggin {
54531e6b01fSNick Piggin 	if (likely(nd->flags & LOOKUP_RCU))
54631e6b01fSNick Piggin 		return nameidata_drop_rcu_last(nd);
54731e6b01fSNick Piggin 	return 0;
54831e6b01fSNick Piggin }
54931e6b01fSNick Piggin 
55031e6b01fSNick Piggin /**
551834f2a4aSTrond Myklebust  * release_open_intent - free up open intent resources
552834f2a4aSTrond Myklebust  * @nd: pointer to nameidata
553834f2a4aSTrond Myklebust  */
554834f2a4aSTrond Myklebust void release_open_intent(struct nameidata *nd)
555834f2a4aSTrond Myklebust {
5562dab5974SLinus Torvalds 	struct file *file = nd->intent.open.file;
5572dab5974SLinus Torvalds 
5582dab5974SLinus Torvalds 	if (file && !IS_ERR(file)) {
5592dab5974SLinus Torvalds 		if (file->f_path.dentry == NULL)
5602dab5974SLinus Torvalds 			put_filp(file);
561834f2a4aSTrond Myklebust 		else
5622dab5974SLinus Torvalds 			fput(file);
5632dab5974SLinus Torvalds 	}
564834f2a4aSTrond Myklebust }
565834f2a4aSTrond Myklebust 
566f60aef7eSAl Viro static inline int d_revalidate(struct dentry *dentry, struct nameidata *nd)
56734286d66SNick Piggin {
568f60aef7eSAl Viro 	return dentry->d_op->d_revalidate(dentry, nd);
56934286d66SNick Piggin }
57034286d66SNick Piggin 
571f5e1c1c1SAl Viro static struct dentry *
572bcdc5e01SIan Kent do_revalidate(struct dentry *dentry, struct nameidata *nd)
573bcdc5e01SIan Kent {
574f5e1c1c1SAl Viro 	int status = d_revalidate(dentry, nd);
575bcdc5e01SIan Kent 	if (unlikely(status <= 0)) {
576bcdc5e01SIan Kent 		/*
577bcdc5e01SIan Kent 		 * The dentry failed validation.
578bcdc5e01SIan Kent 		 * If d_revalidate returned 0 attempt to invalidate
579bcdc5e01SIan Kent 		 * the dentry otherwise d_revalidate is asking us
580bcdc5e01SIan Kent 		 * to return a fail status.
581bcdc5e01SIan Kent 		 */
58234286d66SNick Piggin 		if (status < 0) {
58334286d66SNick Piggin 			dput(dentry);
58434286d66SNick Piggin 			dentry = ERR_PTR(status);
585f5e1c1c1SAl Viro 		} else if (!d_invalidate(dentry)) {
586bcdc5e01SIan Kent 			dput(dentry);
587bcdc5e01SIan Kent 			dentry = NULL;
588bcdc5e01SIan Kent 		}
589bcdc5e01SIan Kent 	}
590f5e1c1c1SAl Viro 	return dentry;
591f5e1c1c1SAl Viro }
592f5e1c1c1SAl Viro 
593f5e1c1c1SAl Viro static inline struct dentry *
594f5e1c1c1SAl Viro do_revalidate_rcu(struct dentry *dentry, struct nameidata *nd)
595f5e1c1c1SAl Viro {
596f60aef7eSAl Viro 	int status = d_revalidate(dentry, nd);
597f5e1c1c1SAl Viro 	if (likely(status > 0))
598f5e1c1c1SAl Viro 		return dentry;
599f5e1c1c1SAl Viro 	if (status == -ECHILD) {
600f5e1c1c1SAl Viro 		if (nameidata_dentry_drop_rcu(nd, dentry))
601f5e1c1c1SAl Viro 			return ERR_PTR(-ECHILD);
602f5e1c1c1SAl Viro 		return do_revalidate(dentry, nd);
603f5e1c1c1SAl Viro 	}
604f5e1c1c1SAl Viro 	if (status < 0)
605f5e1c1c1SAl Viro 		return ERR_PTR(status);
606f5e1c1c1SAl Viro 	/* Don't d_invalidate in rcu-walk mode */
607f5e1c1c1SAl Viro 	if (nameidata_dentry_drop_rcu(nd, dentry))
608f5e1c1c1SAl Viro 		return ERR_PTR(-ECHILD);
609f5e1c1c1SAl Viro 	if (!d_invalidate(dentry)) {
610f5e1c1c1SAl Viro 		dput(dentry);
611f5e1c1c1SAl Viro 		dentry = NULL;
612bcdc5e01SIan Kent 	}
613bcdc5e01SIan Kent 	return dentry;
614bcdc5e01SIan Kent }
615bcdc5e01SIan Kent 
616fb045adbSNick Piggin static inline int need_reval_dot(struct dentry *dentry)
617fb045adbSNick Piggin {
618fb045adbSNick Piggin 	if (likely(!(dentry->d_flags & DCACHE_OP_REVALIDATE)))
619fb045adbSNick Piggin 		return 0;
620fb045adbSNick Piggin 
621fb045adbSNick Piggin 	if (likely(!(dentry->d_sb->s_type->fs_flags & FS_REVAL_DOT)))
622fb045adbSNick Piggin 		return 0;
623fb045adbSNick Piggin 
624fb045adbSNick Piggin 	return 1;
625fb045adbSNick Piggin }
626fb045adbSNick Piggin 
6271da177e4SLinus Torvalds /*
62839159de2SJeff Layton  * force_reval_path - force revalidation of a dentry
62939159de2SJeff Layton  *
63039159de2SJeff Layton  * In some situations the path walking code will trust dentries without
63139159de2SJeff Layton  * revalidating them. This causes problems for filesystems that depend on
63239159de2SJeff Layton  * d_revalidate to handle file opens (e.g. NFSv4). When FS_REVAL_DOT is set
63339159de2SJeff Layton  * (which indicates that it's possible for the dentry to go stale), force
63439159de2SJeff Layton  * a d_revalidate call before proceeding.
63539159de2SJeff Layton  *
63639159de2SJeff Layton  * Returns 0 if the revalidation was successful. If the revalidation fails,
63739159de2SJeff Layton  * either return the error returned by d_revalidate or -ESTALE if the
63839159de2SJeff Layton  * revalidation it just returned 0. If d_revalidate returns 0, we attempt to
63939159de2SJeff Layton  * invalidate the dentry. It's up to the caller to handle putting references
64039159de2SJeff Layton  * to the path if necessary.
64139159de2SJeff Layton  */
64239159de2SJeff Layton static int
64339159de2SJeff Layton force_reval_path(struct path *path, struct nameidata *nd)
64439159de2SJeff Layton {
64539159de2SJeff Layton 	int status;
64639159de2SJeff Layton 	struct dentry *dentry = path->dentry;
64739159de2SJeff Layton 
64839159de2SJeff Layton 	/*
64939159de2SJeff Layton 	 * only check on filesystems where it's possible for the dentry to
650fb045adbSNick Piggin 	 * become stale.
65139159de2SJeff Layton 	 */
652fb045adbSNick Piggin 	if (!need_reval_dot(dentry))
65339159de2SJeff Layton 		return 0;
65439159de2SJeff Layton 
65534286d66SNick Piggin 	status = d_revalidate(dentry, nd);
65639159de2SJeff Layton 	if (status > 0)
65739159de2SJeff Layton 		return 0;
65839159de2SJeff Layton 
65939159de2SJeff Layton 	if (!status) {
66039159de2SJeff Layton 		d_invalidate(dentry);
66139159de2SJeff Layton 		status = -ESTALE;
66239159de2SJeff Layton 	}
66339159de2SJeff Layton 	return status;
66439159de2SJeff Layton }
66539159de2SJeff Layton 
66639159de2SJeff Layton /*
667b75b5086SAl Viro  * Short-cut version of permission(), for calling on directories
668b75b5086SAl Viro  * during pathname resolution.  Combines parts of permission()
669b75b5086SAl Viro  * and generic_permission(), and tests ONLY for MAY_EXEC permission.
6701da177e4SLinus Torvalds  *
6711da177e4SLinus Torvalds  * If appropriate, check DAC only.  If not appropriate, or
672b75b5086SAl Viro  * short-cut DAC fails, then call ->permission() to do more
6731da177e4SLinus Torvalds  * complete permission check.
6741da177e4SLinus Torvalds  */
675b74c79e9SNick Piggin static inline int exec_permission(struct inode *inode, unsigned int flags)
6761da177e4SLinus Torvalds {
6775909ccaaSLinus Torvalds 	int ret;
6781da177e4SLinus Torvalds 
679cb9179eaSLinus Torvalds 	if (inode->i_op->permission) {
680b74c79e9SNick Piggin 		ret = inode->i_op->permission(inode, MAY_EXEC, flags);
681b74c79e9SNick Piggin 	} else {
682b74c79e9SNick Piggin 		ret = acl_permission_check(inode, MAY_EXEC, flags,
683b74c79e9SNick Piggin 				inode->i_op->check_acl);
684cb9179eaSLinus Torvalds 	}
685b74c79e9SNick Piggin 	if (likely(!ret))
6861da177e4SLinus Torvalds 		goto ok;
687b74c79e9SNick Piggin 	if (ret == -ECHILD)
68831e6b01fSNick Piggin 		return ret;
6891da177e4SLinus Torvalds 
690f1ac9f6bSLinus Torvalds 	if (capable(CAP_DAC_OVERRIDE) || capable(CAP_DAC_READ_SEARCH))
6911da177e4SLinus Torvalds 		goto ok;
6921da177e4SLinus Torvalds 
6935909ccaaSLinus Torvalds 	return ret;
6941da177e4SLinus Torvalds ok:
695b74c79e9SNick Piggin 	return security_inode_exec_permission(inode, flags);
6961da177e4SLinus Torvalds }
6971da177e4SLinus Torvalds 
6982a737871SAl Viro static __always_inline void set_root(struct nameidata *nd)
6992a737871SAl Viro {
700f7ad3c6bSMiklos Szeredi 	if (!nd->root.mnt)
701f7ad3c6bSMiklos Szeredi 		get_fs_root(current->fs, &nd->root);
7022a737871SAl Viro }
7032a737871SAl Viro 
7046de88d72SAl Viro static int link_path_walk(const char *, struct nameidata *);
7056de88d72SAl Viro 
70631e6b01fSNick Piggin static __always_inline void set_root_rcu(struct nameidata *nd)
70731e6b01fSNick Piggin {
70831e6b01fSNick Piggin 	if (!nd->root.mnt) {
70931e6b01fSNick Piggin 		struct fs_struct *fs = current->fs;
710c28cc364SNick Piggin 		unsigned seq;
711c28cc364SNick Piggin 
712c28cc364SNick Piggin 		do {
713c28cc364SNick Piggin 			seq = read_seqcount_begin(&fs->seq);
71431e6b01fSNick Piggin 			nd->root = fs->root;
715c28cc364SNick Piggin 		} while (read_seqcount_retry(&fs->seq, seq));
71631e6b01fSNick Piggin 	}
71731e6b01fSNick Piggin }
71831e6b01fSNick Piggin 
719f1662356SArjan van de Ven static __always_inline int __vfs_follow_link(struct nameidata *nd, const char *link)
7201da177e4SLinus Torvalds {
72131e6b01fSNick Piggin 	int ret;
72231e6b01fSNick Piggin 
7231da177e4SLinus Torvalds 	if (IS_ERR(link))
7241da177e4SLinus Torvalds 		goto fail;
7251da177e4SLinus Torvalds 
7261da177e4SLinus Torvalds 	if (*link == '/') {
7272a737871SAl Viro 		set_root(nd);
7281d957f9bSJan Blunck 		path_put(&nd->path);
7292a737871SAl Viro 		nd->path = nd->root;
7302a737871SAl Viro 		path_get(&nd->root);
7311da177e4SLinus Torvalds 	}
73231e6b01fSNick Piggin 	nd->inode = nd->path.dentry->d_inode;
733b4091d5fSChristoph Hellwig 
73431e6b01fSNick Piggin 	ret = link_path_walk(link, nd);
73531e6b01fSNick Piggin 	return ret;
7361da177e4SLinus Torvalds fail:
7371d957f9bSJan Blunck 	path_put(&nd->path);
7381da177e4SLinus Torvalds 	return PTR_ERR(link);
7391da177e4SLinus Torvalds }
7401da177e4SLinus Torvalds 
7411d957f9bSJan Blunck static void path_put_conditional(struct path *path, struct nameidata *nd)
742051d3812SIan Kent {
743051d3812SIan Kent 	dput(path->dentry);
7444ac91378SJan Blunck 	if (path->mnt != nd->path.mnt)
745051d3812SIan Kent 		mntput(path->mnt);
746051d3812SIan Kent }
747051d3812SIan Kent 
7487b9337aaSNick Piggin static inline void path_to_nameidata(const struct path *path,
7497b9337aaSNick Piggin 					struct nameidata *nd)
750051d3812SIan Kent {
75131e6b01fSNick Piggin 	if (!(nd->flags & LOOKUP_RCU)) {
7524ac91378SJan Blunck 		dput(nd->path.dentry);
75331e6b01fSNick Piggin 		if (nd->path.mnt != path->mnt)
7544ac91378SJan Blunck 			mntput(nd->path.mnt);
7559a229683SHuang Shijie 	}
75631e6b01fSNick Piggin 	nd->path.mnt = path->mnt;
7574ac91378SJan Blunck 	nd->path.dentry = path->dentry;
758051d3812SIan Kent }
759051d3812SIan Kent 
760def4af30SAl Viro static __always_inline int
7617b9337aaSNick Piggin __do_follow_link(const struct path *link, struct nameidata *nd, void **p)
7621da177e4SLinus Torvalds {
7631da177e4SLinus Torvalds 	int error;
7647b9337aaSNick Piggin 	struct dentry *dentry = link->dentry;
7651da177e4SLinus Torvalds 
766844a3917SAl Viro 	BUG_ON(nd->flags & LOOKUP_RCU);
767844a3917SAl Viro 
7687b9337aaSNick Piggin 	touch_atime(link->mnt, dentry);
7691da177e4SLinus Torvalds 	nd_set_link(nd, NULL);
770cd4e91d3SAl Viro 
77187556ef1SDavid Howells 	if (link->mnt == nd->path.mnt)
7727b9337aaSNick Piggin 		mntget(link->mnt);
77331e6b01fSNick Piggin 
77486acdca1SAl Viro 	nd->last_type = LAST_BIND;
775def4af30SAl Viro 	*p = dentry->d_inode->i_op->follow_link(dentry, nd);
776def4af30SAl Viro 	error = PTR_ERR(*p);
777def4af30SAl Viro 	if (!IS_ERR(*p)) {
7781da177e4SLinus Torvalds 		char *s = nd_get_link(nd);
779cc314eefSLinus Torvalds 		error = 0;
7801da177e4SLinus Torvalds 		if (s)
7811da177e4SLinus Torvalds 			error = __vfs_follow_link(nd, s);
78239159de2SJeff Layton 		else if (nd->last_type == LAST_BIND) {
78339159de2SJeff Layton 			error = force_reval_path(&nd->path, nd);
78439159de2SJeff Layton 			if (error)
78539159de2SJeff Layton 				path_put(&nd->path);
78639159de2SJeff Layton 		}
7871da177e4SLinus Torvalds 	}
7881da177e4SLinus Torvalds 	return error;
7891da177e4SLinus Torvalds }
7901da177e4SLinus Torvalds 
7911da177e4SLinus Torvalds /*
7921da177e4SLinus Torvalds  * This limits recursive symlink follows to 8, while
7931da177e4SLinus Torvalds  * limiting consecutive symlinks to 40.
7941da177e4SLinus Torvalds  *
7951da177e4SLinus Torvalds  * Without that kind of total limit, nasty chains of consecutive
7961da177e4SLinus Torvalds  * symlinks can cause almost arbitrarily long lookups.
7971da177e4SLinus Torvalds  */
7983abb17e8SLinus Torvalds static inline int do_follow_link(struct inode *inode, struct path *path, struct nameidata *nd)
7991da177e4SLinus Torvalds {
800def4af30SAl Viro 	void *cookie;
8011da177e4SLinus Torvalds 	int err = -ELOOP;
802844a3917SAl Viro 
803844a3917SAl Viro 	/* We drop rcu-walk here */
804844a3917SAl Viro 	if (nameidata_dentry_drop_rcu_maybe(nd, path->dentry))
805844a3917SAl Viro 		return -ECHILD;
8063abb17e8SLinus Torvalds 	BUG_ON(inode != path->dentry->d_inode);
807844a3917SAl Viro 
8081da177e4SLinus Torvalds 	if (current->link_count >= MAX_NESTED_LINKS)
8091da177e4SLinus Torvalds 		goto loop;
8101da177e4SLinus Torvalds 	if (current->total_link_count >= 40)
8111da177e4SLinus Torvalds 		goto loop;
8121da177e4SLinus Torvalds 	BUG_ON(nd->depth >= MAX_NESTED_LINKS);
8131da177e4SLinus Torvalds 	cond_resched();
81490ebe565SAl Viro 	err = security_inode_follow_link(path->dentry, nd);
8151da177e4SLinus Torvalds 	if (err)
8161da177e4SLinus Torvalds 		goto loop;
8171da177e4SLinus Torvalds 	current->link_count++;
8181da177e4SLinus Torvalds 	current->total_link_count++;
8191da177e4SLinus Torvalds 	nd->depth++;
820def4af30SAl Viro 	err = __do_follow_link(path, nd, &cookie);
821def4af30SAl Viro 	if (!IS_ERR(cookie) && path->dentry->d_inode->i_op->put_link)
822def4af30SAl Viro 		path->dentry->d_inode->i_op->put_link(path->dentry, nd, cookie);
823258fa999SAl Viro 	path_put(path);
8241da177e4SLinus Torvalds 	current->link_count--;
8251da177e4SLinus Torvalds 	nd->depth--;
8261da177e4SLinus Torvalds 	return err;
8271da177e4SLinus Torvalds loop:
8281d957f9bSJan Blunck 	path_put_conditional(path, nd);
8291d957f9bSJan Blunck 	path_put(&nd->path);
8301da177e4SLinus Torvalds 	return err;
8311da177e4SLinus Torvalds }
8321da177e4SLinus Torvalds 
83331e6b01fSNick Piggin static int follow_up_rcu(struct path *path)
83431e6b01fSNick Piggin {
83531e6b01fSNick Piggin 	struct vfsmount *parent;
83631e6b01fSNick Piggin 	struct dentry *mountpoint;
83731e6b01fSNick Piggin 
83831e6b01fSNick Piggin 	parent = path->mnt->mnt_parent;
83931e6b01fSNick Piggin 	if (parent == path->mnt)
84031e6b01fSNick Piggin 		return 0;
84131e6b01fSNick Piggin 	mountpoint = path->mnt->mnt_mountpoint;
84231e6b01fSNick Piggin 	path->dentry = mountpoint;
84331e6b01fSNick Piggin 	path->mnt = parent;
84431e6b01fSNick Piggin 	return 1;
84531e6b01fSNick Piggin }
84631e6b01fSNick Piggin 
847bab77ebfSAl Viro int follow_up(struct path *path)
8481da177e4SLinus Torvalds {
8491da177e4SLinus Torvalds 	struct vfsmount *parent;
8501da177e4SLinus Torvalds 	struct dentry *mountpoint;
85199b7db7bSNick Piggin 
85299b7db7bSNick Piggin 	br_read_lock(vfsmount_lock);
853bab77ebfSAl Viro 	parent = path->mnt->mnt_parent;
854bab77ebfSAl Viro 	if (parent == path->mnt) {
85599b7db7bSNick Piggin 		br_read_unlock(vfsmount_lock);
8561da177e4SLinus Torvalds 		return 0;
8571da177e4SLinus Torvalds 	}
8581da177e4SLinus Torvalds 	mntget(parent);
859bab77ebfSAl Viro 	mountpoint = dget(path->mnt->mnt_mountpoint);
86099b7db7bSNick Piggin 	br_read_unlock(vfsmount_lock);
861bab77ebfSAl Viro 	dput(path->dentry);
862bab77ebfSAl Viro 	path->dentry = mountpoint;
863bab77ebfSAl Viro 	mntput(path->mnt);
864bab77ebfSAl Viro 	path->mnt = parent;
8651da177e4SLinus Torvalds 	return 1;
8661da177e4SLinus Torvalds }
8671da177e4SLinus Torvalds 
868b5c84bf6SNick Piggin /*
8699875cf80SDavid Howells  * Perform an automount
8709875cf80SDavid Howells  * - return -EISDIR to tell follow_managed() to stop and return the path we
8719875cf80SDavid Howells  *   were called with.
8721da177e4SLinus Torvalds  */
8739875cf80SDavid Howells static int follow_automount(struct path *path, unsigned flags,
8749875cf80SDavid Howells 			    bool *need_mntput)
87531e6b01fSNick Piggin {
8769875cf80SDavid Howells 	struct vfsmount *mnt;
877ea5b778aSDavid Howells 	int err;
8789875cf80SDavid Howells 
8799875cf80SDavid Howells 	if (!path->dentry->d_op || !path->dentry->d_op->d_automount)
8809875cf80SDavid Howells 		return -EREMOTE;
8819875cf80SDavid Howells 
8826f45b656SDavid Howells 	/* We don't want to mount if someone supplied AT_NO_AUTOMOUNT
8836f45b656SDavid Howells 	 * and this is the terminal part of the path.
8846f45b656SDavid Howells 	 */
8856f45b656SDavid Howells 	if ((flags & LOOKUP_NO_AUTOMOUNT) && !(flags & LOOKUP_CONTINUE))
8866f45b656SDavid Howells 		return -EISDIR; /* we actually want to stop here */
8876f45b656SDavid Howells 
8889875cf80SDavid Howells 	/* We want to mount if someone is trying to open/create a file of any
8899875cf80SDavid Howells 	 * type under the mountpoint, wants to traverse through the mountpoint
8909875cf80SDavid Howells 	 * or wants to open the mounted directory.
8919875cf80SDavid Howells 	 *
8929875cf80SDavid Howells 	 * We don't want to mount if someone's just doing a stat and they've
8939875cf80SDavid Howells 	 * set AT_SYMLINK_NOFOLLOW - unless they're stat'ing a directory and
8949875cf80SDavid Howells 	 * appended a '/' to the name.
8959875cf80SDavid Howells 	 */
8969875cf80SDavid Howells 	if (!(flags & LOOKUP_FOLLOW) &&
8979875cf80SDavid Howells 	    !(flags & (LOOKUP_CONTINUE | LOOKUP_DIRECTORY |
8989875cf80SDavid Howells 		       LOOKUP_OPEN | LOOKUP_CREATE)))
8999875cf80SDavid Howells 		return -EISDIR;
9009875cf80SDavid Howells 
9019875cf80SDavid Howells 	current->total_link_count++;
9029875cf80SDavid Howells 	if (current->total_link_count >= 40)
9039875cf80SDavid Howells 		return -ELOOP;
9049875cf80SDavid Howells 
9059875cf80SDavid Howells 	mnt = path->dentry->d_op->d_automount(path);
9069875cf80SDavid Howells 	if (IS_ERR(mnt)) {
9079875cf80SDavid Howells 		/*
9089875cf80SDavid Howells 		 * The filesystem is allowed to return -EISDIR here to indicate
9099875cf80SDavid Howells 		 * it doesn't want to automount.  For instance, autofs would do
9109875cf80SDavid Howells 		 * this so that its userspace daemon can mount on this dentry.
9119875cf80SDavid Howells 		 *
9129875cf80SDavid Howells 		 * However, we can only permit this if it's a terminal point in
9139875cf80SDavid Howells 		 * the path being looked up; if it wasn't then the remainder of
9149875cf80SDavid Howells 		 * the path is inaccessible and we should say so.
9159875cf80SDavid Howells 		 */
9169875cf80SDavid Howells 		if (PTR_ERR(mnt) == -EISDIR && (flags & LOOKUP_CONTINUE))
9179875cf80SDavid Howells 			return -EREMOTE;
9189875cf80SDavid Howells 		return PTR_ERR(mnt);
91931e6b01fSNick Piggin 	}
920ea5b778aSDavid Howells 
9219875cf80SDavid Howells 	if (!mnt) /* mount collision */
9229875cf80SDavid Howells 		return 0;
9239875cf80SDavid Howells 
92419a167afSAl Viro 	err = finish_automount(mnt, path);
925ea5b778aSDavid Howells 
926ea5b778aSDavid Howells 	switch (err) {
927ea5b778aSDavid Howells 	case -EBUSY:
928ea5b778aSDavid Howells 		/* Someone else made a mount here whilst we were busy */
92919a167afSAl Viro 		return 0;
930ea5b778aSDavid Howells 	case 0:
931463ffb2eSAl Viro 		dput(path->dentry);
9329875cf80SDavid Howells 		if (*need_mntput)
9339875cf80SDavid Howells 			mntput(path->mnt);
9349875cf80SDavid Howells 		path->mnt = mnt;
9359875cf80SDavid Howells 		path->dentry = dget(mnt->mnt_root);
9369875cf80SDavid Howells 		*need_mntput = true;
9379875cf80SDavid Howells 		return 0;
93819a167afSAl Viro 	default:
93919a167afSAl Viro 		return err;
9409875cf80SDavid Howells 	}
94119a167afSAl Viro 
942ea5b778aSDavid Howells }
9439875cf80SDavid Howells 
9449875cf80SDavid Howells /*
9459875cf80SDavid Howells  * Handle a dentry that is managed in some way.
946cc53ce53SDavid Howells  * - Flagged for transit management (autofs)
9479875cf80SDavid Howells  * - Flagged as mountpoint
9489875cf80SDavid Howells  * - Flagged as automount point
9499875cf80SDavid Howells  *
9509875cf80SDavid Howells  * This may only be called in refwalk mode.
9519875cf80SDavid Howells  *
9529875cf80SDavid Howells  * Serialization is taken care of in namespace.c
9539875cf80SDavid Howells  */
9549875cf80SDavid Howells static int follow_managed(struct path *path, unsigned flags)
9559875cf80SDavid Howells {
9569875cf80SDavid Howells 	unsigned managed;
9579875cf80SDavid Howells 	bool need_mntput = false;
9589875cf80SDavid Howells 	int ret;
9599875cf80SDavid Howells 
9609875cf80SDavid Howells 	/* Given that we're not holding a lock here, we retain the value in a
9619875cf80SDavid Howells 	 * local variable for each dentry as we look at it so that we don't see
9629875cf80SDavid Howells 	 * the components of that value change under us */
9639875cf80SDavid Howells 	while (managed = ACCESS_ONCE(path->dentry->d_flags),
9649875cf80SDavid Howells 	       managed &= DCACHE_MANAGED_DENTRY,
9659875cf80SDavid Howells 	       unlikely(managed != 0)) {
966cc53ce53SDavid Howells 		/* Allow the filesystem to manage the transit without i_mutex
967cc53ce53SDavid Howells 		 * being held. */
968cc53ce53SDavid Howells 		if (managed & DCACHE_MANAGE_TRANSIT) {
969cc53ce53SDavid Howells 			BUG_ON(!path->dentry->d_op);
970cc53ce53SDavid Howells 			BUG_ON(!path->dentry->d_op->d_manage);
971ab90911fSDavid Howells 			ret = path->dentry->d_op->d_manage(path->dentry,
972ab90911fSDavid Howells 							   false, false);
973cc53ce53SDavid Howells 			if (ret < 0)
974cc53ce53SDavid Howells 				return ret == -EISDIR ? 0 : ret;
975cc53ce53SDavid Howells 		}
976cc53ce53SDavid Howells 
9779875cf80SDavid Howells 		/* Transit to a mounted filesystem. */
9789875cf80SDavid Howells 		if (managed & DCACHE_MOUNTED) {
9799875cf80SDavid Howells 			struct vfsmount *mounted = lookup_mnt(path);
9809875cf80SDavid Howells 			if (mounted) {
9819875cf80SDavid Howells 				dput(path->dentry);
9829875cf80SDavid Howells 				if (need_mntput)
983463ffb2eSAl Viro 					mntput(path->mnt);
984463ffb2eSAl Viro 				path->mnt = mounted;
985463ffb2eSAl Viro 				path->dentry = dget(mounted->mnt_root);
9869875cf80SDavid Howells 				need_mntput = true;
9879875cf80SDavid Howells 				continue;
988463ffb2eSAl Viro 			}
989463ffb2eSAl Viro 
9909875cf80SDavid Howells 			/* Something is mounted on this dentry in another
9919875cf80SDavid Howells 			 * namespace and/or whatever was mounted there in this
9929875cf80SDavid Howells 			 * namespace got unmounted before we managed to get the
9939875cf80SDavid Howells 			 * vfsmount_lock */
9941da177e4SLinus Torvalds 		}
9959875cf80SDavid Howells 
9969875cf80SDavid Howells 		/* Handle an automount point */
9979875cf80SDavid Howells 		if (managed & DCACHE_NEED_AUTOMOUNT) {
9989875cf80SDavid Howells 			ret = follow_automount(path, flags, &need_mntput);
9999875cf80SDavid Howells 			if (ret < 0)
10009875cf80SDavid Howells 				return ret == -EISDIR ? 0 : ret;
10019875cf80SDavid Howells 			continue;
10029875cf80SDavid Howells 		}
10039875cf80SDavid Howells 
10049875cf80SDavid Howells 		/* We didn't change the current path point */
10059875cf80SDavid Howells 		break;
10069875cf80SDavid Howells 	}
10079875cf80SDavid Howells 	return 0;
10081da177e4SLinus Torvalds }
10091da177e4SLinus Torvalds 
1010cc53ce53SDavid Howells int follow_down_one(struct path *path)
10111da177e4SLinus Torvalds {
10121da177e4SLinus Torvalds 	struct vfsmount *mounted;
10131da177e4SLinus Torvalds 
10141c755af4SAl Viro 	mounted = lookup_mnt(path);
10151da177e4SLinus Torvalds 	if (mounted) {
10169393bd07SAl Viro 		dput(path->dentry);
10179393bd07SAl Viro 		mntput(path->mnt);
10189393bd07SAl Viro 		path->mnt = mounted;
10199393bd07SAl Viro 		path->dentry = dget(mounted->mnt_root);
10201da177e4SLinus Torvalds 		return 1;
10211da177e4SLinus Torvalds 	}
10221da177e4SLinus Torvalds 	return 0;
10231da177e4SLinus Torvalds }
10241da177e4SLinus Torvalds 
10259875cf80SDavid Howells /*
10269875cf80SDavid Howells  * Skip to top of mountpoint pile in rcuwalk mode.  We abort the rcu-walk if we
1027cc53ce53SDavid Howells  * meet a managed dentry and we're not walking to "..".  True is returned to
10289875cf80SDavid Howells  * continue, false to abort.
10299875cf80SDavid Howells  */
10309875cf80SDavid Howells static bool __follow_mount_rcu(struct nameidata *nd, struct path *path,
10319875cf80SDavid Howells 			       struct inode **inode, bool reverse_transit)
10329875cf80SDavid Howells {
10339875cf80SDavid Howells 	while (d_mountpoint(path->dentry)) {
10349875cf80SDavid Howells 		struct vfsmount *mounted;
1035ab90911fSDavid Howells 		if (unlikely(path->dentry->d_flags & DCACHE_MANAGE_TRANSIT) &&
1036ab90911fSDavid Howells 		    !reverse_transit &&
1037ab90911fSDavid Howells 		    path->dentry->d_op->d_manage(path->dentry, false, true) < 0)
1038ab90911fSDavid Howells 			return false;
10399875cf80SDavid Howells 		mounted = __lookup_mnt(path->mnt, path->dentry, 1);
10409875cf80SDavid Howells 		if (!mounted)
10419875cf80SDavid Howells 			break;
10429875cf80SDavid Howells 		path->mnt = mounted;
10439875cf80SDavid Howells 		path->dentry = mounted->mnt_root;
10449875cf80SDavid Howells 		nd->seq = read_seqcount_begin(&path->dentry->d_seq);
10459875cf80SDavid Howells 		*inode = path->dentry->d_inode;
10469875cf80SDavid Howells 	}
10479875cf80SDavid Howells 
10489875cf80SDavid Howells 	if (unlikely(path->dentry->d_flags & DCACHE_NEED_AUTOMOUNT))
10499875cf80SDavid Howells 		return reverse_transit;
10509875cf80SDavid Howells 	return true;
10519875cf80SDavid Howells }
10529875cf80SDavid Howells 
105331e6b01fSNick Piggin static int follow_dotdot_rcu(struct nameidata *nd)
105431e6b01fSNick Piggin {
105531e6b01fSNick Piggin 	struct inode *inode = nd->inode;
105631e6b01fSNick Piggin 
105731e6b01fSNick Piggin 	set_root_rcu(nd);
105831e6b01fSNick Piggin 
105931e6b01fSNick Piggin 	while (1) {
106031e6b01fSNick Piggin 		if (nd->path.dentry == nd->root.dentry &&
106131e6b01fSNick Piggin 		    nd->path.mnt == nd->root.mnt) {
106231e6b01fSNick Piggin 			break;
106331e6b01fSNick Piggin 		}
106431e6b01fSNick Piggin 		if (nd->path.dentry != nd->path.mnt->mnt_root) {
106531e6b01fSNick Piggin 			struct dentry *old = nd->path.dentry;
106631e6b01fSNick Piggin 			struct dentry *parent = old->d_parent;
106731e6b01fSNick Piggin 			unsigned seq;
106831e6b01fSNick Piggin 
106931e6b01fSNick Piggin 			seq = read_seqcount_begin(&parent->d_seq);
107031e6b01fSNick Piggin 			if (read_seqcount_retry(&old->d_seq, nd->seq))
107131e6b01fSNick Piggin 				return -ECHILD;
107231e6b01fSNick Piggin 			inode = parent->d_inode;
107331e6b01fSNick Piggin 			nd->path.dentry = parent;
107431e6b01fSNick Piggin 			nd->seq = seq;
107531e6b01fSNick Piggin 			break;
107631e6b01fSNick Piggin 		}
107731e6b01fSNick Piggin 		if (!follow_up_rcu(&nd->path))
107831e6b01fSNick Piggin 			break;
107931e6b01fSNick Piggin 		nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq);
108031e6b01fSNick Piggin 		inode = nd->path.dentry->d_inode;
108131e6b01fSNick Piggin 	}
10829875cf80SDavid Howells 	__follow_mount_rcu(nd, &nd->path, &inode, true);
108331e6b01fSNick Piggin 	nd->inode = inode;
108431e6b01fSNick Piggin 
108531e6b01fSNick Piggin 	return 0;
108631e6b01fSNick Piggin }
108731e6b01fSNick Piggin 
10889875cf80SDavid Howells /*
1089cc53ce53SDavid Howells  * Follow down to the covering mount currently visible to userspace.  At each
1090cc53ce53SDavid Howells  * point, the filesystem owning that dentry may be queried as to whether the
1091cc53ce53SDavid Howells  * caller is permitted to proceed or not.
1092cc53ce53SDavid Howells  *
1093cc53ce53SDavid Howells  * Care must be taken as namespace_sem may be held (indicated by mounting_here
1094cc53ce53SDavid Howells  * being true).
1095cc53ce53SDavid Howells  */
1096cc53ce53SDavid Howells int follow_down(struct path *path, bool mounting_here)
1097cc53ce53SDavid Howells {
1098cc53ce53SDavid Howells 	unsigned managed;
1099cc53ce53SDavid Howells 	int ret;
1100cc53ce53SDavid Howells 
1101cc53ce53SDavid Howells 	while (managed = ACCESS_ONCE(path->dentry->d_flags),
1102cc53ce53SDavid Howells 	       unlikely(managed & DCACHE_MANAGED_DENTRY)) {
1103cc53ce53SDavid Howells 		/* Allow the filesystem to manage the transit without i_mutex
1104cc53ce53SDavid Howells 		 * being held.
1105cc53ce53SDavid Howells 		 *
1106cc53ce53SDavid Howells 		 * We indicate to the filesystem if someone is trying to mount
1107cc53ce53SDavid Howells 		 * something here.  This gives autofs the chance to deny anyone
1108cc53ce53SDavid Howells 		 * other than its daemon the right to mount on its
1109cc53ce53SDavid Howells 		 * superstructure.
1110cc53ce53SDavid Howells 		 *
1111cc53ce53SDavid Howells 		 * The filesystem may sleep at this point.
1112cc53ce53SDavid Howells 		 */
1113cc53ce53SDavid Howells 		if (managed & DCACHE_MANAGE_TRANSIT) {
1114cc53ce53SDavid Howells 			BUG_ON(!path->dentry->d_op);
1115cc53ce53SDavid Howells 			BUG_ON(!path->dentry->d_op->d_manage);
1116ab90911fSDavid Howells 			ret = path->dentry->d_op->d_manage(
1117ab90911fSDavid Howells 				path->dentry, mounting_here, false);
1118cc53ce53SDavid Howells 			if (ret < 0)
1119cc53ce53SDavid Howells 				return ret == -EISDIR ? 0 : ret;
1120cc53ce53SDavid Howells 		}
1121cc53ce53SDavid Howells 
1122cc53ce53SDavid Howells 		/* Transit to a mounted filesystem. */
1123cc53ce53SDavid Howells 		if (managed & DCACHE_MOUNTED) {
1124cc53ce53SDavid Howells 			struct vfsmount *mounted = lookup_mnt(path);
1125cc53ce53SDavid Howells 			if (!mounted)
1126cc53ce53SDavid Howells 				break;
1127cc53ce53SDavid Howells 			dput(path->dentry);
1128cc53ce53SDavid Howells 			mntput(path->mnt);
1129cc53ce53SDavid Howells 			path->mnt = mounted;
1130cc53ce53SDavid Howells 			path->dentry = dget(mounted->mnt_root);
1131cc53ce53SDavid Howells 			continue;
1132cc53ce53SDavid Howells 		}
1133cc53ce53SDavid Howells 
1134cc53ce53SDavid Howells 		/* Don't handle automount points here */
1135cc53ce53SDavid Howells 		break;
1136cc53ce53SDavid Howells 	}
1137cc53ce53SDavid Howells 	return 0;
1138cc53ce53SDavid Howells }
1139cc53ce53SDavid Howells 
1140cc53ce53SDavid Howells /*
11419875cf80SDavid Howells  * Skip to top of mountpoint pile in refwalk mode for follow_dotdot()
11429875cf80SDavid Howells  */
11439875cf80SDavid Howells static void follow_mount(struct path *path)
11449875cf80SDavid Howells {
11459875cf80SDavid Howells 	while (d_mountpoint(path->dentry)) {
11469875cf80SDavid Howells 		struct vfsmount *mounted = lookup_mnt(path);
11479875cf80SDavid Howells 		if (!mounted)
11489875cf80SDavid Howells 			break;
11499875cf80SDavid Howells 		dput(path->dentry);
11509875cf80SDavid Howells 		mntput(path->mnt);
11519875cf80SDavid Howells 		path->mnt = mounted;
11529875cf80SDavid Howells 		path->dentry = dget(mounted->mnt_root);
11539875cf80SDavid Howells 	}
11549875cf80SDavid Howells }
11559875cf80SDavid Howells 
115631e6b01fSNick Piggin static void follow_dotdot(struct nameidata *nd)
11571da177e4SLinus Torvalds {
11582a737871SAl Viro 	set_root(nd);
1159e518ddb7SAndreas Mohr 
11601da177e4SLinus Torvalds 	while(1) {
11614ac91378SJan Blunck 		struct dentry *old = nd->path.dentry;
11621da177e4SLinus Torvalds 
11632a737871SAl Viro 		if (nd->path.dentry == nd->root.dentry &&
11642a737871SAl Viro 		    nd->path.mnt == nd->root.mnt) {
11651da177e4SLinus Torvalds 			break;
11661da177e4SLinus Torvalds 		}
11674ac91378SJan Blunck 		if (nd->path.dentry != nd->path.mnt->mnt_root) {
11683088dd70SAl Viro 			/* rare case of legitimate dget_parent()... */
11693088dd70SAl Viro 			nd->path.dentry = dget_parent(nd->path.dentry);
11701da177e4SLinus Torvalds 			dput(old);
11711da177e4SLinus Torvalds 			break;
11721da177e4SLinus Torvalds 		}
11733088dd70SAl Viro 		if (!follow_up(&nd->path))
11741da177e4SLinus Torvalds 			break;
11751da177e4SLinus Torvalds 	}
117679ed0226SAl Viro 	follow_mount(&nd->path);
117731e6b01fSNick Piggin 	nd->inode = nd->path.dentry->d_inode;
11781da177e4SLinus Torvalds }
11791da177e4SLinus Torvalds 
11801da177e4SLinus Torvalds /*
1181baa03890SNick Piggin  * Allocate a dentry with name and parent, and perform a parent
1182baa03890SNick Piggin  * directory ->lookup on it. Returns the new dentry, or ERR_PTR
1183baa03890SNick Piggin  * on error. parent->d_inode->i_mutex must be held. d_lookup must
1184baa03890SNick Piggin  * have verified that no child exists while under i_mutex.
1185baa03890SNick Piggin  */
1186baa03890SNick Piggin static struct dentry *d_alloc_and_lookup(struct dentry *parent,
1187baa03890SNick Piggin 				struct qstr *name, struct nameidata *nd)
1188baa03890SNick Piggin {
1189baa03890SNick Piggin 	struct inode *inode = parent->d_inode;
1190baa03890SNick Piggin 	struct dentry *dentry;
1191baa03890SNick Piggin 	struct dentry *old;
1192baa03890SNick Piggin 
1193baa03890SNick Piggin 	/* Don't create child dentry for a dead directory. */
1194baa03890SNick Piggin 	if (unlikely(IS_DEADDIR(inode)))
1195baa03890SNick Piggin 		return ERR_PTR(-ENOENT);
1196baa03890SNick Piggin 
1197baa03890SNick Piggin 	dentry = d_alloc(parent, name);
1198baa03890SNick Piggin 	if (unlikely(!dentry))
1199baa03890SNick Piggin 		return ERR_PTR(-ENOMEM);
1200baa03890SNick Piggin 
1201baa03890SNick Piggin 	old = inode->i_op->lookup(inode, dentry, nd);
1202baa03890SNick Piggin 	if (unlikely(old)) {
1203baa03890SNick Piggin 		dput(dentry);
1204baa03890SNick Piggin 		dentry = old;
1205baa03890SNick Piggin 	}
1206baa03890SNick Piggin 	return dentry;
1207baa03890SNick Piggin }
1208baa03890SNick Piggin 
1209baa03890SNick Piggin /*
12101da177e4SLinus Torvalds  *  It's more convoluted than I'd like it to be, but... it's still fairly
12111da177e4SLinus Torvalds  *  small and for now I'd prefer to have fast path as straight as possible.
12121da177e4SLinus Torvalds  *  It _is_ time-critical.
12131da177e4SLinus Torvalds  */
12141da177e4SLinus Torvalds static int do_lookup(struct nameidata *nd, struct qstr *name,
121531e6b01fSNick Piggin 			struct path *path, struct inode **inode)
12161da177e4SLinus Torvalds {
12174ac91378SJan Blunck 	struct vfsmount *mnt = nd->path.mnt;
121831e6b01fSNick Piggin 	struct dentry *dentry, *parent = nd->path.dentry;
12196e6b1bd1SAl Viro 	struct inode *dir;
12209875cf80SDavid Howells 	int err;
12219875cf80SDavid Howells 
12223cac260aSAl Viro 	/*
12233cac260aSAl Viro 	 * See if the low-level filesystem might want
12243cac260aSAl Viro 	 * to use its own hash..
12253cac260aSAl Viro 	 */
1226fb045adbSNick Piggin 	if (unlikely(parent->d_flags & DCACHE_OP_HASH)) {
12279875cf80SDavid Howells 		err = parent->d_op->d_hash(parent, nd->inode, name);
12283cac260aSAl Viro 		if (err < 0)
12293cac260aSAl Viro 			return err;
12303cac260aSAl Viro 	}
12311da177e4SLinus Torvalds 
1232b04f784eSNick Piggin 	/*
1233b04f784eSNick Piggin 	 * Rename seqlock is not required here because in the off chance
1234b04f784eSNick Piggin 	 * of a false negative due to a concurrent rename, we're going to
1235b04f784eSNick Piggin 	 * do the non-racy lookup, below.
1236b04f784eSNick Piggin 	 */
123731e6b01fSNick Piggin 	if (nd->flags & LOOKUP_RCU) {
123831e6b01fSNick Piggin 		unsigned seq;
123931e6b01fSNick Piggin 
124031e6b01fSNick Piggin 		*inode = nd->inode;
124131e6b01fSNick Piggin 		dentry = __d_lookup_rcu(parent, name, &seq, inode);
124231e6b01fSNick Piggin 		if (!dentry) {
124331e6b01fSNick Piggin 			if (nameidata_drop_rcu(nd))
124431e6b01fSNick Piggin 				return -ECHILD;
124531e6b01fSNick Piggin 			goto need_lookup;
124631e6b01fSNick Piggin 		}
124731e6b01fSNick Piggin 		/* Memory barrier in read_seqcount_begin of child is enough */
124831e6b01fSNick Piggin 		if (__read_seqcount_retry(&parent->d_seq, nd->seq))
124931e6b01fSNick Piggin 			return -ECHILD;
125031e6b01fSNick Piggin 
125131e6b01fSNick Piggin 		nd->seq = seq;
125224643087SAl Viro 		if (unlikely(dentry->d_flags & DCACHE_OP_REVALIDATE)) {
1253f5e1c1c1SAl Viro 			dentry = do_revalidate_rcu(dentry, nd);
125424643087SAl Viro 			if (!dentry)
125524643087SAl Viro 				goto need_lookup;
125624643087SAl Viro 			if (IS_ERR(dentry))
125724643087SAl Viro 				goto fail;
125824643087SAl Viro 			if (!(nd->flags & LOOKUP_RCU))
125924643087SAl Viro 				goto done;
126024643087SAl Viro 		}
126131e6b01fSNick Piggin 		path->mnt = mnt;
126231e6b01fSNick Piggin 		path->dentry = dentry;
12639875cf80SDavid Howells 		if (likely(__follow_mount_rcu(nd, path, inode, false)))
12649875cf80SDavid Howells 			return 0;
12659875cf80SDavid Howells 		if (nameidata_drop_rcu(nd))
12669875cf80SDavid Howells 			return -ECHILD;
12679875cf80SDavid Howells 		/* fallthru */
12689875cf80SDavid Howells 	}
126931e6b01fSNick Piggin 	dentry = __d_lookup(parent, name);
12701da177e4SLinus Torvalds 	if (!dentry)
12711da177e4SLinus Torvalds 		goto need_lookup;
12722e2e88eaSNick Piggin found:
127324643087SAl Viro 	if (unlikely(dentry->d_flags & DCACHE_OP_REVALIDATE)) {
127424643087SAl Viro 		dentry = do_revalidate(dentry, nd);
127524643087SAl Viro 		if (!dentry)
127624643087SAl Viro 			goto need_lookup;
127724643087SAl Viro 		if (IS_ERR(dentry))
127824643087SAl Viro 			goto fail;
127924643087SAl Viro 	}
12801da177e4SLinus Torvalds done:
12811da177e4SLinus Torvalds 	path->mnt = mnt;
12821da177e4SLinus Torvalds 	path->dentry = dentry;
12839875cf80SDavid Howells 	err = follow_managed(path, nd->flags);
128489312214SIan Kent 	if (unlikely(err < 0)) {
128589312214SIan Kent 		path_put_conditional(path, nd);
12869875cf80SDavid Howells 		return err;
128789312214SIan Kent 	}
128831e6b01fSNick Piggin 	*inode = path->dentry->d_inode;
12891da177e4SLinus Torvalds 	return 0;
12901da177e4SLinus Torvalds 
12911da177e4SLinus Torvalds need_lookup:
12926e6b1bd1SAl Viro 	dir = parent->d_inode;
129331e6b01fSNick Piggin 	BUG_ON(nd->inode != dir);
12946e6b1bd1SAl Viro 
12956e6b1bd1SAl Viro 	mutex_lock(&dir->i_mutex);
12966e6b1bd1SAl Viro 	/*
12976e6b1bd1SAl Viro 	 * First re-do the cached lookup just in case it was created
1298b04f784eSNick Piggin 	 * while we waited for the directory semaphore, or the first
1299b04f784eSNick Piggin 	 * lookup failed due to an unrelated rename.
13006e6b1bd1SAl Viro 	 *
1301b04f784eSNick Piggin 	 * This could use version numbering or similar to avoid unnecessary
1302b04f784eSNick Piggin 	 * cache lookups, but then we'd have to do the first lookup in the
1303b04f784eSNick Piggin 	 * non-racy way. However in the common case here, everything should
1304b04f784eSNick Piggin 	 * be hot in cache, so would it be a big win?
13056e6b1bd1SAl Viro 	 */
13066e6b1bd1SAl Viro 	dentry = d_lookup(parent, name);
1307baa03890SNick Piggin 	if (likely(!dentry)) {
1308baa03890SNick Piggin 		dentry = d_alloc_and_lookup(parent, name, nd);
13096e6b1bd1SAl Viro 		mutex_unlock(&dir->i_mutex);
13106e6b1bd1SAl Viro 		if (IS_ERR(dentry))
13116e6b1bd1SAl Viro 			goto fail;
13126e6b1bd1SAl Viro 		goto done;
13136e6b1bd1SAl Viro 	}
13146e6b1bd1SAl Viro 	/*
13156e6b1bd1SAl Viro 	 * Uhhuh! Nasty case: the cache was re-populated while
13166e6b1bd1SAl Viro 	 * we waited on the semaphore. Need to revalidate.
13176e6b1bd1SAl Viro 	 */
13186e6b1bd1SAl Viro 	mutex_unlock(&dir->i_mutex);
13192e2e88eaSNick Piggin 	goto found;
13201da177e4SLinus Torvalds 
13211da177e4SLinus Torvalds fail:
13221da177e4SLinus Torvalds 	return PTR_ERR(dentry);
13231da177e4SLinus Torvalds }
13241da177e4SLinus Torvalds 
13251da177e4SLinus Torvalds /*
13261da177e4SLinus Torvalds  * Name resolution.
1327ea3834d9SPrasanna Meda  * This is the basic name resolution function, turning a pathname into
1328ea3834d9SPrasanna Meda  * the final dentry. We expect 'base' to be positive and a directory.
13291da177e4SLinus Torvalds  *
1330ea3834d9SPrasanna Meda  * Returns 0 and nd will have valid dentry and mnt on success.
1331ea3834d9SPrasanna Meda  * Returns error and drops reference to input namei data on failure.
13321da177e4SLinus Torvalds  */
13336de88d72SAl Viro static int link_path_walk(const char *name, struct nameidata *nd)
13341da177e4SLinus Torvalds {
13351da177e4SLinus Torvalds 	struct path next;
13361da177e4SLinus Torvalds 	int err;
13371da177e4SLinus Torvalds 	unsigned int lookup_flags = nd->flags;
13381da177e4SLinus Torvalds 
13391da177e4SLinus Torvalds 	while (*name=='/')
13401da177e4SLinus Torvalds 		name++;
13411da177e4SLinus Torvalds 	if (!*name)
13421da177e4SLinus Torvalds 		goto return_reval;
13431da177e4SLinus Torvalds 
13441da177e4SLinus Torvalds 	if (nd->depth)
1345f55eab82STrond Myklebust 		lookup_flags = LOOKUP_FOLLOW | (nd->flags & LOOKUP_CONTINUE);
13461da177e4SLinus Torvalds 
13471da177e4SLinus Torvalds 	/* At this point we know we have a real path component. */
13481da177e4SLinus Torvalds 	for(;;) {
134931e6b01fSNick Piggin 		struct inode *inode;
13501da177e4SLinus Torvalds 		unsigned long hash;
13511da177e4SLinus Torvalds 		struct qstr this;
13521da177e4SLinus Torvalds 		unsigned int c;
13531da177e4SLinus Torvalds 
1354cdce5d6bSTrond Myklebust 		nd->flags |= LOOKUP_CONTINUE;
135531e6b01fSNick Piggin 		if (nd->flags & LOOKUP_RCU) {
1356b74c79e9SNick Piggin 			err = exec_permission(nd->inode, IPERM_FLAG_RCU);
135731e6b01fSNick Piggin 			if (err == -ECHILD) {
135831e6b01fSNick Piggin 				if (nameidata_drop_rcu(nd))
135931e6b01fSNick Piggin 					return -ECHILD;
136031e6b01fSNick Piggin 				goto exec_again;
136131e6b01fSNick Piggin 			}
136231e6b01fSNick Piggin 		} else {
136331e6b01fSNick Piggin exec_again:
1364b74c79e9SNick Piggin 			err = exec_permission(nd->inode, 0);
136531e6b01fSNick Piggin 		}
13661da177e4SLinus Torvalds  		if (err)
13671da177e4SLinus Torvalds 			break;
13681da177e4SLinus Torvalds 
13691da177e4SLinus Torvalds 		this.name = name;
13701da177e4SLinus Torvalds 		c = *(const unsigned char *)name;
13711da177e4SLinus Torvalds 
13721da177e4SLinus Torvalds 		hash = init_name_hash();
13731da177e4SLinus Torvalds 		do {
13741da177e4SLinus Torvalds 			name++;
13751da177e4SLinus Torvalds 			hash = partial_name_hash(c, hash);
13761da177e4SLinus Torvalds 			c = *(const unsigned char *)name;
13771da177e4SLinus Torvalds 		} while (c && (c != '/'));
13781da177e4SLinus Torvalds 		this.len = name - (const char *) this.name;
13791da177e4SLinus Torvalds 		this.hash = end_name_hash(hash);
13801da177e4SLinus Torvalds 
13811da177e4SLinus Torvalds 		/* remove trailing slashes? */
13821da177e4SLinus Torvalds 		if (!c)
13831da177e4SLinus Torvalds 			goto last_component;
13841da177e4SLinus Torvalds 		while (*++name == '/');
13851da177e4SLinus Torvalds 		if (!*name)
13861da177e4SLinus Torvalds 			goto last_with_slashes;
13871da177e4SLinus Torvalds 
13881da177e4SLinus Torvalds 		/*
13891da177e4SLinus Torvalds 		 * "." and ".." are special - ".." especially so because it has
13901da177e4SLinus Torvalds 		 * to be able to know about the current root directory and
13911da177e4SLinus Torvalds 		 * parent relationships.
13921da177e4SLinus Torvalds 		 */
13931da177e4SLinus Torvalds 		if (this.name[0] == '.') switch (this.len) {
13941da177e4SLinus Torvalds 			default:
13951da177e4SLinus Torvalds 				break;
13961da177e4SLinus Torvalds 			case 2:
13971da177e4SLinus Torvalds 				if (this.name[1] != '.')
13981da177e4SLinus Torvalds 					break;
139931e6b01fSNick Piggin 				if (nd->flags & LOOKUP_RCU) {
140031e6b01fSNick Piggin 					if (follow_dotdot_rcu(nd))
140131e6b01fSNick Piggin 						return -ECHILD;
140231e6b01fSNick Piggin 				} else
140358c465ebSAl Viro 					follow_dotdot(nd);
14041da177e4SLinus Torvalds 				/* fallthrough */
14051da177e4SLinus Torvalds 			case 1:
14061da177e4SLinus Torvalds 				continue;
14071da177e4SLinus Torvalds 		}
14081da177e4SLinus Torvalds 		/* This does the actual lookups.. */
140931e6b01fSNick Piggin 		err = do_lookup(nd, &this, &next, &inode);
14101da177e4SLinus Torvalds 		if (err)
14111da177e4SLinus Torvalds 			break;
14121da177e4SLinus Torvalds 		err = -ENOENT;
14131da177e4SLinus Torvalds 		if (!inode)
14141da177e4SLinus Torvalds 			goto out_dput;
14151da177e4SLinus Torvalds 
14161da177e4SLinus Torvalds 		if (inode->i_op->follow_link) {
14173abb17e8SLinus Torvalds 			err = do_follow_link(inode, &next, nd);
14181da177e4SLinus Torvalds 			if (err)
14191da177e4SLinus Torvalds 				goto return_err;
142031e6b01fSNick Piggin 			nd->inode = nd->path.dentry->d_inode;
14211da177e4SLinus Torvalds 			err = -ENOENT;
142231e6b01fSNick Piggin 			if (!nd->inode)
14231da177e4SLinus Torvalds 				break;
142431e6b01fSNick Piggin 		} else {
142509dd17d3SMiklos Szeredi 			path_to_nameidata(&next, nd);
142631e6b01fSNick Piggin 			nd->inode = inode;
142731e6b01fSNick Piggin 		}
14281da177e4SLinus Torvalds 		err = -ENOTDIR;
142931e6b01fSNick Piggin 		if (!nd->inode->i_op->lookup)
14301da177e4SLinus Torvalds 			break;
14311da177e4SLinus Torvalds 		continue;
14321da177e4SLinus Torvalds 		/* here ends the main loop */
14331da177e4SLinus Torvalds 
14341da177e4SLinus Torvalds last_with_slashes:
14351da177e4SLinus Torvalds 		lookup_flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
14361da177e4SLinus Torvalds last_component:
1437f55eab82STrond Myklebust 		/* Clear LOOKUP_CONTINUE iff it was previously unset */
1438f55eab82STrond Myklebust 		nd->flags &= lookup_flags | ~LOOKUP_CONTINUE;
14391da177e4SLinus Torvalds 		if (lookup_flags & LOOKUP_PARENT)
14401da177e4SLinus Torvalds 			goto lookup_parent;
14411da177e4SLinus Torvalds 		if (this.name[0] == '.') switch (this.len) {
14421da177e4SLinus Torvalds 			default:
14431da177e4SLinus Torvalds 				break;
14441da177e4SLinus Torvalds 			case 2:
14451da177e4SLinus Torvalds 				if (this.name[1] != '.')
14461da177e4SLinus Torvalds 					break;
144731e6b01fSNick Piggin 				if (nd->flags & LOOKUP_RCU) {
144831e6b01fSNick Piggin 					if (follow_dotdot_rcu(nd))
144931e6b01fSNick Piggin 						return -ECHILD;
145031e6b01fSNick Piggin 				} else
145158c465ebSAl Viro 					follow_dotdot(nd);
14521da177e4SLinus Torvalds 				/* fallthrough */
14531da177e4SLinus Torvalds 			case 1:
14541da177e4SLinus Torvalds 				goto return_reval;
14551da177e4SLinus Torvalds 		}
145631e6b01fSNick Piggin 		err = do_lookup(nd, &this, &next, &inode);
14571da177e4SLinus Torvalds 		if (err)
14581da177e4SLinus Torvalds 			break;
1459db372915SDavid Howells 		if (inode && unlikely(inode->i_op->follow_link) &&
1460db372915SDavid Howells 		    (lookup_flags & LOOKUP_FOLLOW)) {
14613abb17e8SLinus Torvalds 			err = do_follow_link(inode, &next, nd);
14621da177e4SLinus Torvalds 			if (err)
14631da177e4SLinus Torvalds 				goto return_err;
146431e6b01fSNick Piggin 			nd->inode = nd->path.dentry->d_inode;
146531e6b01fSNick Piggin 		} else {
146609dd17d3SMiklos Szeredi 			path_to_nameidata(&next, nd);
146731e6b01fSNick Piggin 			nd->inode = inode;
146831e6b01fSNick Piggin 		}
14691da177e4SLinus Torvalds 		err = -ENOENT;
147031e6b01fSNick Piggin 		if (!nd->inode)
14711da177e4SLinus Torvalds 			break;
14721da177e4SLinus Torvalds 		if (lookup_flags & LOOKUP_DIRECTORY) {
14731da177e4SLinus Torvalds 			err = -ENOTDIR;
147431e6b01fSNick Piggin 			if (!nd->inode->i_op->lookup)
14751da177e4SLinus Torvalds 				break;
14761da177e4SLinus Torvalds 		}
14771da177e4SLinus Torvalds 		goto return_base;
14781da177e4SLinus Torvalds lookup_parent:
14791da177e4SLinus Torvalds 		nd->last = this;
14801da177e4SLinus Torvalds 		nd->last_type = LAST_NORM;
14811da177e4SLinus Torvalds 		if (this.name[0] != '.')
14821da177e4SLinus Torvalds 			goto return_base;
14831da177e4SLinus Torvalds 		if (this.len == 1)
14841da177e4SLinus Torvalds 			nd->last_type = LAST_DOT;
14851da177e4SLinus Torvalds 		else if (this.len == 2 && this.name[1] == '.')
14861da177e4SLinus Torvalds 			nd->last_type = LAST_DOTDOT;
14871da177e4SLinus Torvalds 		else
14881da177e4SLinus Torvalds 			goto return_base;
14891da177e4SLinus Torvalds return_reval:
14901da177e4SLinus Torvalds 		/*
14911da177e4SLinus Torvalds 		 * We bypassed the ordinary revalidation routines.
14921da177e4SLinus Torvalds 		 * We may need to check the cached dentry for staleness.
14931da177e4SLinus Torvalds 		 */
1494fb045adbSNick Piggin 		if (need_reval_dot(nd->path.dentry)) {
1495f60aef7eSAl Viro 			if (nameidata_drop_rcu_last_maybe(nd))
1496f60aef7eSAl Viro 				return -ECHILD;
14971da177e4SLinus Torvalds 			/* Note: we do not d_invalidate() */
149834286d66SNick Piggin 			err = d_revalidate(nd->path.dentry, nd);
149934286d66SNick Piggin 			if (!err)
150034286d66SNick Piggin 				err = -ESTALE;
150134286d66SNick Piggin 			if (err < 0)
15021da177e4SLinus Torvalds 				break;
1503f60aef7eSAl Viro 			return 0;
15041da177e4SLinus Torvalds 		}
15051da177e4SLinus Torvalds return_base:
150631e6b01fSNick Piggin 		if (nameidata_drop_rcu_last_maybe(nd))
150731e6b01fSNick Piggin 			return -ECHILD;
15081da177e4SLinus Torvalds 		return 0;
15091da177e4SLinus Torvalds out_dput:
151031e6b01fSNick Piggin 		if (!(nd->flags & LOOKUP_RCU))
15111d957f9bSJan Blunck 			path_put_conditional(&next, nd);
15121da177e4SLinus Torvalds 		break;
15131da177e4SLinus Torvalds 	}
151431e6b01fSNick Piggin 	if (!(nd->flags & LOOKUP_RCU))
15151d957f9bSJan Blunck 		path_put(&nd->path);
15161da177e4SLinus Torvalds return_err:
15171da177e4SLinus Torvalds 	return err;
15181da177e4SLinus Torvalds }
15191da177e4SLinus Torvalds 
152031e6b01fSNick Piggin static inline int path_walk_rcu(const char *name, struct nameidata *nd)
152131e6b01fSNick Piggin {
152231e6b01fSNick Piggin 	current->total_link_count = 0;
152331e6b01fSNick Piggin 
152431e6b01fSNick Piggin 	return link_path_walk(name, nd);
152531e6b01fSNick Piggin }
152631e6b01fSNick Piggin 
152731e6b01fSNick Piggin static inline int path_walk_simple(const char *name, struct nameidata *nd)
152831e6b01fSNick Piggin {
152931e6b01fSNick Piggin 	current->total_link_count = 0;
153031e6b01fSNick Piggin 
153131e6b01fSNick Piggin 	return link_path_walk(name, nd);
153231e6b01fSNick Piggin }
153331e6b01fSNick Piggin 
1534fc9b52cdSHarvey Harrison static int path_walk(const char *name, struct nameidata *nd)
15351da177e4SLinus Torvalds {
15366de88d72SAl Viro 	struct path save = nd->path;
15376de88d72SAl Viro 	int result;
15386de88d72SAl Viro 
15391da177e4SLinus Torvalds 	current->total_link_count = 0;
15406de88d72SAl Viro 
15416de88d72SAl Viro 	/* make sure the stuff we saved doesn't go away */
15426de88d72SAl Viro 	path_get(&save);
15436de88d72SAl Viro 
15446de88d72SAl Viro 	result = link_path_walk(name, nd);
15456de88d72SAl Viro 	if (result == -ESTALE) {
15466de88d72SAl Viro 		/* nd->path had been dropped */
15476de88d72SAl Viro 		current->total_link_count = 0;
15486de88d72SAl Viro 		nd->path = save;
1549b306419aSAl Viro 		nd->inode = save.dentry->d_inode;
15506de88d72SAl Viro 		path_get(&nd->path);
15516de88d72SAl Viro 		nd->flags |= LOOKUP_REVAL;
15526de88d72SAl Viro 		result = link_path_walk(name, nd);
15536de88d72SAl Viro 	}
15546de88d72SAl Viro 
15556de88d72SAl Viro 	path_put(&save);
15566de88d72SAl Viro 
15576de88d72SAl Viro 	return result;
15581da177e4SLinus Torvalds }
15591da177e4SLinus Torvalds 
156031e6b01fSNick Piggin static void path_finish_rcu(struct nameidata *nd)
156131e6b01fSNick Piggin {
156231e6b01fSNick Piggin 	if (nd->flags & LOOKUP_RCU) {
156331e6b01fSNick Piggin 		/* RCU dangling. Cancel it. */
156431e6b01fSNick Piggin 		nd->flags &= ~LOOKUP_RCU;
156531e6b01fSNick Piggin 		nd->root.mnt = NULL;
156631e6b01fSNick Piggin 		rcu_read_unlock();
156731e6b01fSNick Piggin 		br_read_unlock(vfsmount_lock);
156831e6b01fSNick Piggin 	}
156931e6b01fSNick Piggin 	if (nd->file)
157031e6b01fSNick Piggin 		fput(nd->file);
157131e6b01fSNick Piggin }
157231e6b01fSNick Piggin 
157331e6b01fSNick Piggin static int path_init_rcu(int dfd, const char *name, unsigned int flags, struct nameidata *nd)
157431e6b01fSNick Piggin {
157531e6b01fSNick Piggin 	int retval = 0;
157631e6b01fSNick Piggin 	int fput_needed;
157731e6b01fSNick Piggin 	struct file *file;
157831e6b01fSNick Piggin 
157931e6b01fSNick Piggin 	nd->last_type = LAST_ROOT; /* if there are only slashes... */
158031e6b01fSNick Piggin 	nd->flags = flags | LOOKUP_RCU;
158131e6b01fSNick Piggin 	nd->depth = 0;
158231e6b01fSNick Piggin 	nd->root.mnt = NULL;
158331e6b01fSNick Piggin 	nd->file = NULL;
158431e6b01fSNick Piggin 
158531e6b01fSNick Piggin 	if (*name=='/') {
158631e6b01fSNick Piggin 		struct fs_struct *fs = current->fs;
1587c28cc364SNick Piggin 		unsigned seq;
158831e6b01fSNick Piggin 
158931e6b01fSNick Piggin 		br_read_lock(vfsmount_lock);
159031e6b01fSNick Piggin 		rcu_read_lock();
159131e6b01fSNick Piggin 
1592c28cc364SNick Piggin 		do {
1593c28cc364SNick Piggin 			seq = read_seqcount_begin(&fs->seq);
159431e6b01fSNick Piggin 			nd->root = fs->root;
159531e6b01fSNick Piggin 			nd->path = nd->root;
1596c28cc364SNick Piggin 			nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
1597c28cc364SNick Piggin 		} while (read_seqcount_retry(&fs->seq, seq));
159831e6b01fSNick Piggin 
159931e6b01fSNick Piggin 	} else if (dfd == AT_FDCWD) {
160031e6b01fSNick Piggin 		struct fs_struct *fs = current->fs;
1601c28cc364SNick Piggin 		unsigned seq;
160231e6b01fSNick Piggin 
160331e6b01fSNick Piggin 		br_read_lock(vfsmount_lock);
160431e6b01fSNick Piggin 		rcu_read_lock();
160531e6b01fSNick Piggin 
1606c28cc364SNick Piggin 		do {
1607c28cc364SNick Piggin 			seq = read_seqcount_begin(&fs->seq);
160831e6b01fSNick Piggin 			nd->path = fs->pwd;
1609c28cc364SNick Piggin 			nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
1610c28cc364SNick Piggin 		} while (read_seqcount_retry(&fs->seq, seq));
1611c28cc364SNick Piggin 
161231e6b01fSNick Piggin 	} else {
161331e6b01fSNick Piggin 		struct dentry *dentry;
161431e6b01fSNick Piggin 
161531e6b01fSNick Piggin 		file = fget_light(dfd, &fput_needed);
161631e6b01fSNick Piggin 		retval = -EBADF;
161731e6b01fSNick Piggin 		if (!file)
161831e6b01fSNick Piggin 			goto out_fail;
161931e6b01fSNick Piggin 
162031e6b01fSNick Piggin 		dentry = file->f_path.dentry;
162131e6b01fSNick Piggin 
162231e6b01fSNick Piggin 		retval = -ENOTDIR;
162331e6b01fSNick Piggin 		if (!S_ISDIR(dentry->d_inode->i_mode))
162431e6b01fSNick Piggin 			goto fput_fail;
162531e6b01fSNick Piggin 
162631e6b01fSNick Piggin 		retval = file_permission(file, MAY_EXEC);
162731e6b01fSNick Piggin 		if (retval)
162831e6b01fSNick Piggin 			goto fput_fail;
162931e6b01fSNick Piggin 
163031e6b01fSNick Piggin 		nd->path = file->f_path;
163131e6b01fSNick Piggin 		if (fput_needed)
163231e6b01fSNick Piggin 			nd->file = file;
163331e6b01fSNick Piggin 
1634c28cc364SNick Piggin 		nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
163531e6b01fSNick Piggin 		br_read_lock(vfsmount_lock);
163631e6b01fSNick Piggin 		rcu_read_lock();
163731e6b01fSNick Piggin 	}
163831e6b01fSNick Piggin 	nd->inode = nd->path.dentry->d_inode;
163931e6b01fSNick Piggin 	return 0;
164031e6b01fSNick Piggin 
164131e6b01fSNick Piggin fput_fail:
164231e6b01fSNick Piggin 	fput_light(file, fput_needed);
164331e6b01fSNick Piggin out_fail:
164431e6b01fSNick Piggin 	return retval;
164531e6b01fSNick Piggin }
164631e6b01fSNick Piggin 
16479b4a9b14SAl Viro static int path_init(int dfd, const char *name, unsigned int flags, struct nameidata *nd)
16481da177e4SLinus Torvalds {
1649ea3834d9SPrasanna Meda 	int retval = 0;
1650170aa3d0SUlrich Drepper 	int fput_needed;
1651170aa3d0SUlrich Drepper 	struct file *file;
16521da177e4SLinus Torvalds 
16531da177e4SLinus Torvalds 	nd->last_type = LAST_ROOT; /* if there are only slashes... */
16541da177e4SLinus Torvalds 	nd->flags = flags;
16551da177e4SLinus Torvalds 	nd->depth = 0;
16562a737871SAl Viro 	nd->root.mnt = NULL;
16571da177e4SLinus Torvalds 
16581da177e4SLinus Torvalds 	if (*name=='/') {
16592a737871SAl Viro 		set_root(nd);
16602a737871SAl Viro 		nd->path = nd->root;
16612a737871SAl Viro 		path_get(&nd->root);
16625590ff0dSUlrich Drepper 	} else if (dfd == AT_FDCWD) {
1663f7ad3c6bSMiklos Szeredi 		get_fs_pwd(current->fs, &nd->path);
16645590ff0dSUlrich Drepper 	} else {
16655590ff0dSUlrich Drepper 		struct dentry *dentry;
16665590ff0dSUlrich Drepper 
16675590ff0dSUlrich Drepper 		file = fget_light(dfd, &fput_needed);
16685590ff0dSUlrich Drepper 		retval = -EBADF;
1669170aa3d0SUlrich Drepper 		if (!file)
16706d09bb62STrond Myklebust 			goto out_fail;
16715590ff0dSUlrich Drepper 
16720f7fc9e4SJosef "Jeff" Sipek 		dentry = file->f_path.dentry;
16735590ff0dSUlrich Drepper 
16745590ff0dSUlrich Drepper 		retval = -ENOTDIR;
1675170aa3d0SUlrich Drepper 		if (!S_ISDIR(dentry->d_inode->i_mode))
16766d09bb62STrond Myklebust 			goto fput_fail;
16775590ff0dSUlrich Drepper 
16785590ff0dSUlrich Drepper 		retval = file_permission(file, MAY_EXEC);
1679170aa3d0SUlrich Drepper 		if (retval)
16806d09bb62STrond Myklebust 			goto fput_fail;
16815590ff0dSUlrich Drepper 
16825dd784d0SJan Blunck 		nd->path = file->f_path;
16835dd784d0SJan Blunck 		path_get(&file->f_path);
16845590ff0dSUlrich Drepper 
16855590ff0dSUlrich Drepper 		fput_light(file, fput_needed);
16861da177e4SLinus Torvalds 	}
168731e6b01fSNick Piggin 	nd->inode = nd->path.dentry->d_inode;
16889b4a9b14SAl Viro 	return 0;
16892dfdd266SJosef 'Jeff' Sipek 
16909b4a9b14SAl Viro fput_fail:
16919b4a9b14SAl Viro 	fput_light(file, fput_needed);
16929b4a9b14SAl Viro out_fail:
16939b4a9b14SAl Viro 	return retval;
16949b4a9b14SAl Viro }
16959b4a9b14SAl Viro 
16969b4a9b14SAl Viro /* Returns 0 and nd will be valid on success; Retuns error, otherwise. */
16979b4a9b14SAl Viro static int do_path_lookup(int dfd, const char *name,
16989b4a9b14SAl Viro 				unsigned int flags, struct nameidata *nd)
16999b4a9b14SAl Viro {
170031e6b01fSNick Piggin 	int retval;
170131e6b01fSNick Piggin 
170231e6b01fSNick Piggin 	/*
170331e6b01fSNick Piggin 	 * Path walking is largely split up into 2 different synchronisation
170431e6b01fSNick Piggin 	 * schemes, rcu-walk and ref-walk (explained in
170531e6b01fSNick Piggin 	 * Documentation/filesystems/path-lookup.txt). These share much of the
170631e6b01fSNick Piggin 	 * path walk code, but some things particularly setup, cleanup, and
170731e6b01fSNick Piggin 	 * following mounts are sufficiently divergent that functions are
170831e6b01fSNick Piggin 	 * duplicated. Typically there is a function foo(), and its RCU
170931e6b01fSNick Piggin 	 * analogue, foo_rcu().
171031e6b01fSNick Piggin 	 *
171131e6b01fSNick Piggin 	 * -ECHILD is the error number of choice (just to avoid clashes) that
171231e6b01fSNick Piggin 	 * is returned if some aspect of an rcu-walk fails. Such an error must
171331e6b01fSNick Piggin 	 * be handled by restarting a traditional ref-walk (which will always
171431e6b01fSNick Piggin 	 * be able to complete).
171531e6b01fSNick Piggin 	 */
171631e6b01fSNick Piggin 	retval = path_init_rcu(dfd, name, flags, nd);
171731e6b01fSNick Piggin 	if (unlikely(retval))
171831e6b01fSNick Piggin 		return retval;
171931e6b01fSNick Piggin 	retval = path_walk_rcu(name, nd);
172031e6b01fSNick Piggin 	path_finish_rcu(nd);
17212a737871SAl Viro 	if (nd->root.mnt) {
17222a737871SAl Viro 		path_put(&nd->root);
17232a737871SAl Viro 		nd->root.mnt = NULL;
17242a737871SAl Viro 	}
172531e6b01fSNick Piggin 
172631e6b01fSNick Piggin 	if (unlikely(retval == -ECHILD || retval == -ESTALE)) {
172731e6b01fSNick Piggin 		/* slower, locked walk */
172831e6b01fSNick Piggin 		if (retval == -ESTALE)
172931e6b01fSNick Piggin 			flags |= LOOKUP_REVAL;
173031e6b01fSNick Piggin 		retval = path_init(dfd, name, flags, nd);
173131e6b01fSNick Piggin 		if (unlikely(retval))
173231e6b01fSNick Piggin 			return retval;
173331e6b01fSNick Piggin 		retval = path_walk(name, nd);
173431e6b01fSNick Piggin 		if (nd->root.mnt) {
173531e6b01fSNick Piggin 			path_put(&nd->root);
173631e6b01fSNick Piggin 			nd->root.mnt = NULL;
173731e6b01fSNick Piggin 		}
173831e6b01fSNick Piggin 	}
173931e6b01fSNick Piggin 
174031e6b01fSNick Piggin 	if (likely(!retval)) {
174131e6b01fSNick Piggin 		if (unlikely(!audit_dummy_context())) {
174231e6b01fSNick Piggin 			if (nd->path.dentry && nd->inode)
174331e6b01fSNick Piggin 				audit_inode(name, nd->path.dentry);
174431e6b01fSNick Piggin 		}
174531e6b01fSNick Piggin 	}
174631e6b01fSNick Piggin 
1747170aa3d0SUlrich Drepper 	return retval;
17481da177e4SLinus Torvalds }
17491da177e4SLinus Torvalds 
1750fc9b52cdSHarvey Harrison int path_lookup(const char *name, unsigned int flags,
17515590ff0dSUlrich Drepper 			struct nameidata *nd)
17525590ff0dSUlrich Drepper {
17535590ff0dSUlrich Drepper 	return do_path_lookup(AT_FDCWD, name, flags, nd);
17545590ff0dSUlrich Drepper }
17555590ff0dSUlrich Drepper 
1756d1811465SAl Viro int kern_path(const char *name, unsigned int flags, struct path *path)
1757d1811465SAl Viro {
1758d1811465SAl Viro 	struct nameidata nd;
1759d1811465SAl Viro 	int res = do_path_lookup(AT_FDCWD, name, flags, &nd);
1760d1811465SAl Viro 	if (!res)
1761d1811465SAl Viro 		*path = nd.path;
1762d1811465SAl Viro 	return res;
1763d1811465SAl Viro }
1764d1811465SAl Viro 
176516f18200SJosef 'Jeff' Sipek /**
176616f18200SJosef 'Jeff' Sipek  * vfs_path_lookup - lookup a file path relative to a dentry-vfsmount pair
176716f18200SJosef 'Jeff' Sipek  * @dentry:  pointer to dentry of the base directory
176816f18200SJosef 'Jeff' Sipek  * @mnt: pointer to vfs mount of the base directory
176916f18200SJosef 'Jeff' Sipek  * @name: pointer to file name
177016f18200SJosef 'Jeff' Sipek  * @flags: lookup flags
177116f18200SJosef 'Jeff' Sipek  * @nd: pointer to nameidata
177216f18200SJosef 'Jeff' Sipek  */
177316f18200SJosef 'Jeff' Sipek int vfs_path_lookup(struct dentry *dentry, struct vfsmount *mnt,
177416f18200SJosef 'Jeff' Sipek 		    const char *name, unsigned int flags,
177516f18200SJosef 'Jeff' Sipek 		    struct nameidata *nd)
177616f18200SJosef 'Jeff' Sipek {
177716f18200SJosef 'Jeff' Sipek 	int retval;
177816f18200SJosef 'Jeff' Sipek 
177916f18200SJosef 'Jeff' Sipek 	/* same as do_path_lookup */
178016f18200SJosef 'Jeff' Sipek 	nd->last_type = LAST_ROOT;
178116f18200SJosef 'Jeff' Sipek 	nd->flags = flags;
178216f18200SJosef 'Jeff' Sipek 	nd->depth = 0;
178316f18200SJosef 'Jeff' Sipek 
1784c8e7f449SJan Blunck 	nd->path.dentry = dentry;
1785c8e7f449SJan Blunck 	nd->path.mnt = mnt;
1786c8e7f449SJan Blunck 	path_get(&nd->path);
17875b857119SAl Viro 	nd->root = nd->path;
17885b857119SAl Viro 	path_get(&nd->root);
178931e6b01fSNick Piggin 	nd->inode = nd->path.dentry->d_inode;
179016f18200SJosef 'Jeff' Sipek 
179116f18200SJosef 'Jeff' Sipek 	retval = path_walk(name, nd);
17924ac91378SJan Blunck 	if (unlikely(!retval && !audit_dummy_context() && nd->path.dentry &&
179331e6b01fSNick Piggin 				nd->inode))
17944ac91378SJan Blunck 		audit_inode(name, nd->path.dentry);
179516f18200SJosef 'Jeff' Sipek 
17962a737871SAl Viro 	path_put(&nd->root);
17972a737871SAl Viro 	nd->root.mnt = NULL;
179816f18200SJosef 'Jeff' Sipek 
17992a737871SAl Viro 	return retval;
180016f18200SJosef 'Jeff' Sipek }
180116f18200SJosef 'Jeff' Sipek 
1802eead1911SChristoph Hellwig static struct dentry *__lookup_hash(struct qstr *name,
1803eead1911SChristoph Hellwig 		struct dentry *base, struct nameidata *nd)
18041da177e4SLinus Torvalds {
180581fca444SChristoph Hellwig 	struct inode *inode = base->d_inode;
18061da177e4SLinus Torvalds 	struct dentry *dentry;
18071da177e4SLinus Torvalds 	int err;
18081da177e4SLinus Torvalds 
1809b74c79e9SNick Piggin 	err = exec_permission(inode, 0);
181081fca444SChristoph Hellwig 	if (err)
181181fca444SChristoph Hellwig 		return ERR_PTR(err);
18121da177e4SLinus Torvalds 
18131da177e4SLinus Torvalds 	/*
18141da177e4SLinus Torvalds 	 * See if the low-level filesystem might want
18151da177e4SLinus Torvalds 	 * to use its own hash..
18161da177e4SLinus Torvalds 	 */
1817fb045adbSNick Piggin 	if (base->d_flags & DCACHE_OP_HASH) {
1818b1e6a015SNick Piggin 		err = base->d_op->d_hash(base, inode, name);
18191da177e4SLinus Torvalds 		dentry = ERR_PTR(err);
18201da177e4SLinus Torvalds 		if (err < 0)
18211da177e4SLinus Torvalds 			goto out;
18221da177e4SLinus Torvalds 	}
18231da177e4SLinus Torvalds 
1824b04f784eSNick Piggin 	/*
1825b04f784eSNick Piggin 	 * Don't bother with __d_lookup: callers are for creat as
1826b04f784eSNick Piggin 	 * well as unlink, so a lot of the time it would cost
1827b04f784eSNick Piggin 	 * a double lookup.
18286e6b1bd1SAl Viro 	 */
18296e6b1bd1SAl Viro 	dentry = d_lookup(base, name);
18306e6b1bd1SAl Viro 
1831fb045adbSNick Piggin 	if (dentry && (dentry->d_flags & DCACHE_OP_REVALIDATE))
18326e6b1bd1SAl Viro 		dentry = do_revalidate(dentry, nd);
18336e6b1bd1SAl Viro 
18341da177e4SLinus Torvalds 	if (!dentry)
1835baa03890SNick Piggin 		dentry = d_alloc_and_lookup(base, name, nd);
18361da177e4SLinus Torvalds out:
18371da177e4SLinus Torvalds 	return dentry;
18381da177e4SLinus Torvalds }
18391da177e4SLinus Torvalds 
1840057f6c01SJames Morris /*
1841057f6c01SJames Morris  * Restricted form of lookup. Doesn't follow links, single-component only,
1842057f6c01SJames Morris  * needs parent already locked. Doesn't follow mounts.
1843057f6c01SJames Morris  * SMP-safe.
1844057f6c01SJames Morris  */
1845a244e169SAdrian Bunk static struct dentry *lookup_hash(struct nameidata *nd)
18461da177e4SLinus Torvalds {
18474ac91378SJan Blunck 	return __lookup_hash(&nd->last, nd->path.dentry, nd);
18481da177e4SLinus Torvalds }
18491da177e4SLinus Torvalds 
1850eead1911SChristoph Hellwig static int __lookup_one_len(const char *name, struct qstr *this,
1851eead1911SChristoph Hellwig 		struct dentry *base, int len)
18521da177e4SLinus Torvalds {
18531da177e4SLinus Torvalds 	unsigned long hash;
18541da177e4SLinus Torvalds 	unsigned int c;
18551da177e4SLinus Torvalds 
1856057f6c01SJames Morris 	this->name = name;
1857057f6c01SJames Morris 	this->len = len;
18581da177e4SLinus Torvalds 	if (!len)
1859057f6c01SJames Morris 		return -EACCES;
18601da177e4SLinus Torvalds 
18611da177e4SLinus Torvalds 	hash = init_name_hash();
18621da177e4SLinus Torvalds 	while (len--) {
18631da177e4SLinus Torvalds 		c = *(const unsigned char *)name++;
18641da177e4SLinus Torvalds 		if (c == '/' || c == '\0')
1865057f6c01SJames Morris 			return -EACCES;
18661da177e4SLinus Torvalds 		hash = partial_name_hash(c, hash);
18671da177e4SLinus Torvalds 	}
1868057f6c01SJames Morris 	this->hash = end_name_hash(hash);
1869057f6c01SJames Morris 	return 0;
1870057f6c01SJames Morris }
18711da177e4SLinus Torvalds 
1872eead1911SChristoph Hellwig /**
1873a6b91919SRandy Dunlap  * lookup_one_len - filesystem helper to lookup single pathname component
1874eead1911SChristoph Hellwig  * @name:	pathname component to lookup
1875eead1911SChristoph Hellwig  * @base:	base directory to lookup from
1876eead1911SChristoph Hellwig  * @len:	maximum length @len should be interpreted to
1877eead1911SChristoph Hellwig  *
1878a6b91919SRandy Dunlap  * Note that this routine is purely a helper for filesystem usage and should
1879a6b91919SRandy Dunlap  * not be called by generic code.  Also note that by using this function the
1880eead1911SChristoph Hellwig  * nameidata argument is passed to the filesystem methods and a filesystem
1881eead1911SChristoph Hellwig  * using this helper needs to be prepared for that.
1882eead1911SChristoph Hellwig  */
1883057f6c01SJames Morris struct dentry *lookup_one_len(const char *name, struct dentry *base, int len)
1884057f6c01SJames Morris {
1885057f6c01SJames Morris 	int err;
1886057f6c01SJames Morris 	struct qstr this;
1887057f6c01SJames Morris 
18882f9092e1SDavid Woodhouse 	WARN_ON_ONCE(!mutex_is_locked(&base->d_inode->i_mutex));
18892f9092e1SDavid Woodhouse 
1890057f6c01SJames Morris 	err = __lookup_one_len(name, &this, base, len);
1891057f6c01SJames Morris 	if (err)
1892057f6c01SJames Morris 		return ERR_PTR(err);
1893eead1911SChristoph Hellwig 
189449705b77SChristoph Hellwig 	return __lookup_hash(&this, base, NULL);
1895057f6c01SJames Morris }
1896057f6c01SJames Morris 
18972d8f3038SAl Viro int user_path_at(int dfd, const char __user *name, unsigned flags,
18982d8f3038SAl Viro 		 struct path *path)
18991da177e4SLinus Torvalds {
19002d8f3038SAl Viro 	struct nameidata nd;
19011da177e4SLinus Torvalds 	char *tmp = getname(name);
19021da177e4SLinus Torvalds 	int err = PTR_ERR(tmp);
19031da177e4SLinus Torvalds 	if (!IS_ERR(tmp)) {
19042d8f3038SAl Viro 
19052d8f3038SAl Viro 		BUG_ON(flags & LOOKUP_PARENT);
19062d8f3038SAl Viro 
19072d8f3038SAl Viro 		err = do_path_lookup(dfd, tmp, flags, &nd);
19081da177e4SLinus Torvalds 		putname(tmp);
19092d8f3038SAl Viro 		if (!err)
19102d8f3038SAl Viro 			*path = nd.path;
19111da177e4SLinus Torvalds 	}
19121da177e4SLinus Torvalds 	return err;
19131da177e4SLinus Torvalds }
19141da177e4SLinus Torvalds 
19152ad94ae6SAl Viro static int user_path_parent(int dfd, const char __user *path,
19162ad94ae6SAl Viro 			struct nameidata *nd, char **name)
19172ad94ae6SAl Viro {
19182ad94ae6SAl Viro 	char *s = getname(path);
19192ad94ae6SAl Viro 	int error;
19202ad94ae6SAl Viro 
19212ad94ae6SAl Viro 	if (IS_ERR(s))
19222ad94ae6SAl Viro 		return PTR_ERR(s);
19232ad94ae6SAl Viro 
19242ad94ae6SAl Viro 	error = do_path_lookup(dfd, s, LOOKUP_PARENT, nd);
19252ad94ae6SAl Viro 	if (error)
19262ad94ae6SAl Viro 		putname(s);
19272ad94ae6SAl Viro 	else
19282ad94ae6SAl Viro 		*name = s;
19292ad94ae6SAl Viro 
19302ad94ae6SAl Viro 	return error;
19312ad94ae6SAl Viro }
19322ad94ae6SAl Viro 
19331da177e4SLinus Torvalds /*
19341da177e4SLinus Torvalds  * It's inline, so penalty for filesystems that don't use sticky bit is
19351da177e4SLinus Torvalds  * minimal.
19361da177e4SLinus Torvalds  */
19371da177e4SLinus Torvalds static inline int check_sticky(struct inode *dir, struct inode *inode)
19381da177e4SLinus Torvalds {
1939da9592edSDavid Howells 	uid_t fsuid = current_fsuid();
1940da9592edSDavid Howells 
19411da177e4SLinus Torvalds 	if (!(dir->i_mode & S_ISVTX))
19421da177e4SLinus Torvalds 		return 0;
1943da9592edSDavid Howells 	if (inode->i_uid == fsuid)
19441da177e4SLinus Torvalds 		return 0;
1945da9592edSDavid Howells 	if (dir->i_uid == fsuid)
19461da177e4SLinus Torvalds 		return 0;
19471da177e4SLinus Torvalds 	return !capable(CAP_FOWNER);
19481da177e4SLinus Torvalds }
19491da177e4SLinus Torvalds 
19501da177e4SLinus Torvalds /*
19511da177e4SLinus Torvalds  *	Check whether we can remove a link victim from directory dir, check
19521da177e4SLinus Torvalds  *  whether the type of victim is right.
19531da177e4SLinus Torvalds  *  1. We can't do it if dir is read-only (done in permission())
19541da177e4SLinus Torvalds  *  2. We should have write and exec permissions on dir
19551da177e4SLinus Torvalds  *  3. We can't remove anything from append-only dir
19561da177e4SLinus Torvalds  *  4. We can't do anything with immutable dir (done in permission())
19571da177e4SLinus Torvalds  *  5. If the sticky bit on dir is set we should either
19581da177e4SLinus Torvalds  *	a. be owner of dir, or
19591da177e4SLinus Torvalds  *	b. be owner of victim, or
19601da177e4SLinus Torvalds  *	c. have CAP_FOWNER capability
19611da177e4SLinus Torvalds  *  6. If the victim is append-only or immutable we can't do antyhing with
19621da177e4SLinus Torvalds  *     links pointing to it.
19631da177e4SLinus Torvalds  *  7. If we were asked to remove a directory and victim isn't one - ENOTDIR.
19641da177e4SLinus Torvalds  *  8. If we were asked to remove a non-directory and victim isn't one - EISDIR.
19651da177e4SLinus Torvalds  *  9. We can't remove a root or mountpoint.
19661da177e4SLinus Torvalds  * 10. We don't allow removal of NFS sillyrenamed files; it's handled by
19671da177e4SLinus Torvalds  *     nfs_async_unlink().
19681da177e4SLinus Torvalds  */
1969858119e1SArjan van de Ven static int may_delete(struct inode *dir,struct dentry *victim,int isdir)
19701da177e4SLinus Torvalds {
19711da177e4SLinus Torvalds 	int error;
19721da177e4SLinus Torvalds 
19731da177e4SLinus Torvalds 	if (!victim->d_inode)
19741da177e4SLinus Torvalds 		return -ENOENT;
19751da177e4SLinus Torvalds 
19761da177e4SLinus Torvalds 	BUG_ON(victim->d_parent->d_inode != dir);
1977cccc6bbaSAl Viro 	audit_inode_child(victim, dir);
19781da177e4SLinus Torvalds 
1979f419a2e3SAl Viro 	error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
19801da177e4SLinus Torvalds 	if (error)
19811da177e4SLinus Torvalds 		return error;
19821da177e4SLinus Torvalds 	if (IS_APPEND(dir))
19831da177e4SLinus Torvalds 		return -EPERM;
19841da177e4SLinus Torvalds 	if (check_sticky(dir, victim->d_inode)||IS_APPEND(victim->d_inode)||
1985f9454548SHugh Dickins 	    IS_IMMUTABLE(victim->d_inode) || IS_SWAPFILE(victim->d_inode))
19861da177e4SLinus Torvalds 		return -EPERM;
19871da177e4SLinus Torvalds 	if (isdir) {
19881da177e4SLinus Torvalds 		if (!S_ISDIR(victim->d_inode->i_mode))
19891da177e4SLinus Torvalds 			return -ENOTDIR;
19901da177e4SLinus Torvalds 		if (IS_ROOT(victim))
19911da177e4SLinus Torvalds 			return -EBUSY;
19921da177e4SLinus Torvalds 	} else if (S_ISDIR(victim->d_inode->i_mode))
19931da177e4SLinus Torvalds 		return -EISDIR;
19941da177e4SLinus Torvalds 	if (IS_DEADDIR(dir))
19951da177e4SLinus Torvalds 		return -ENOENT;
19961da177e4SLinus Torvalds 	if (victim->d_flags & DCACHE_NFSFS_RENAMED)
19971da177e4SLinus Torvalds 		return -EBUSY;
19981da177e4SLinus Torvalds 	return 0;
19991da177e4SLinus Torvalds }
20001da177e4SLinus Torvalds 
20011da177e4SLinus Torvalds /*	Check whether we can create an object with dentry child in directory
20021da177e4SLinus Torvalds  *  dir.
20031da177e4SLinus Torvalds  *  1. We can't do it if child already exists (open has special treatment for
20041da177e4SLinus Torvalds  *     this case, but since we are inlined it's OK)
20051da177e4SLinus Torvalds  *  2. We can't do it if dir is read-only (done in permission())
20061da177e4SLinus Torvalds  *  3. We should have write and exec permissions on dir
20071da177e4SLinus Torvalds  *  4. We can't do it if dir is immutable (done in permission())
20081da177e4SLinus Torvalds  */
2009a95164d9SMiklos Szeredi static inline int may_create(struct inode *dir, struct dentry *child)
20101da177e4SLinus Torvalds {
20111da177e4SLinus Torvalds 	if (child->d_inode)
20121da177e4SLinus Torvalds 		return -EEXIST;
20131da177e4SLinus Torvalds 	if (IS_DEADDIR(dir))
20141da177e4SLinus Torvalds 		return -ENOENT;
2015f419a2e3SAl Viro 	return inode_permission(dir, MAY_WRITE | MAY_EXEC);
20161da177e4SLinus Torvalds }
20171da177e4SLinus Torvalds 
20181da177e4SLinus Torvalds /*
20191da177e4SLinus Torvalds  * p1 and p2 should be directories on the same fs.
20201da177e4SLinus Torvalds  */
20211da177e4SLinus Torvalds struct dentry *lock_rename(struct dentry *p1, struct dentry *p2)
20221da177e4SLinus Torvalds {
20231da177e4SLinus Torvalds 	struct dentry *p;
20241da177e4SLinus Torvalds 
20251da177e4SLinus Torvalds 	if (p1 == p2) {
2026f2eace23SIngo Molnar 		mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
20271da177e4SLinus Torvalds 		return NULL;
20281da177e4SLinus Torvalds 	}
20291da177e4SLinus Torvalds 
2030a11f3a05SArjan van de Ven 	mutex_lock(&p1->d_inode->i_sb->s_vfs_rename_mutex);
20311da177e4SLinus Torvalds 
2032e2761a11SOGAWA Hirofumi 	p = d_ancestor(p2, p1);
2033e2761a11SOGAWA Hirofumi 	if (p) {
2034f2eace23SIngo Molnar 		mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_PARENT);
2035f2eace23SIngo Molnar 		mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_CHILD);
20361da177e4SLinus Torvalds 		return p;
20371da177e4SLinus Torvalds 	}
20381da177e4SLinus Torvalds 
2039e2761a11SOGAWA Hirofumi 	p = d_ancestor(p1, p2);
2040e2761a11SOGAWA Hirofumi 	if (p) {
2041f2eace23SIngo Molnar 		mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
2042f2eace23SIngo Molnar 		mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_CHILD);
20431da177e4SLinus Torvalds 		return p;
20441da177e4SLinus Torvalds 	}
20451da177e4SLinus Torvalds 
2046f2eace23SIngo Molnar 	mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
2047f2eace23SIngo Molnar 	mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_CHILD);
20481da177e4SLinus Torvalds 	return NULL;
20491da177e4SLinus Torvalds }
20501da177e4SLinus Torvalds 
20511da177e4SLinus Torvalds void unlock_rename(struct dentry *p1, struct dentry *p2)
20521da177e4SLinus Torvalds {
20531b1dcc1bSJes Sorensen 	mutex_unlock(&p1->d_inode->i_mutex);
20541da177e4SLinus Torvalds 	if (p1 != p2) {
20551b1dcc1bSJes Sorensen 		mutex_unlock(&p2->d_inode->i_mutex);
2056a11f3a05SArjan van de Ven 		mutex_unlock(&p1->d_inode->i_sb->s_vfs_rename_mutex);
20571da177e4SLinus Torvalds 	}
20581da177e4SLinus Torvalds }
20591da177e4SLinus Torvalds 
20601da177e4SLinus Torvalds int vfs_create(struct inode *dir, struct dentry *dentry, int mode,
20611da177e4SLinus Torvalds 		struct nameidata *nd)
20621da177e4SLinus Torvalds {
2063a95164d9SMiklos Szeredi 	int error = may_create(dir, dentry);
20641da177e4SLinus Torvalds 
20651da177e4SLinus Torvalds 	if (error)
20661da177e4SLinus Torvalds 		return error;
20671da177e4SLinus Torvalds 
2068acfa4380SAl Viro 	if (!dir->i_op->create)
20691da177e4SLinus Torvalds 		return -EACCES;	/* shouldn't it be ENOSYS? */
20701da177e4SLinus Torvalds 	mode &= S_IALLUGO;
20711da177e4SLinus Torvalds 	mode |= S_IFREG;
20721da177e4SLinus Torvalds 	error = security_inode_create(dir, dentry, mode);
20731da177e4SLinus Torvalds 	if (error)
20741da177e4SLinus Torvalds 		return error;
20751da177e4SLinus Torvalds 	error = dir->i_op->create(dir, dentry, mode, nd);
2076a74574aaSStephen Smalley 	if (!error)
2077f38aa942SAmy Griffis 		fsnotify_create(dir, dentry);
20781da177e4SLinus Torvalds 	return error;
20791da177e4SLinus Torvalds }
20801da177e4SLinus Torvalds 
20813fb64190SChristoph Hellwig int may_open(struct path *path, int acc_mode, int flag)
20821da177e4SLinus Torvalds {
20833fb64190SChristoph Hellwig 	struct dentry *dentry = path->dentry;
20841da177e4SLinus Torvalds 	struct inode *inode = dentry->d_inode;
20851da177e4SLinus Torvalds 	int error;
20861da177e4SLinus Torvalds 
20871da177e4SLinus Torvalds 	if (!inode)
20881da177e4SLinus Torvalds 		return -ENOENT;
20891da177e4SLinus Torvalds 
2090c8fe8f30SChristoph Hellwig 	switch (inode->i_mode & S_IFMT) {
2091c8fe8f30SChristoph Hellwig 	case S_IFLNK:
20921da177e4SLinus Torvalds 		return -ELOOP;
2093c8fe8f30SChristoph Hellwig 	case S_IFDIR:
2094c8fe8f30SChristoph Hellwig 		if (acc_mode & MAY_WRITE)
20951da177e4SLinus Torvalds 			return -EISDIR;
2096c8fe8f30SChristoph Hellwig 		break;
2097c8fe8f30SChristoph Hellwig 	case S_IFBLK:
2098c8fe8f30SChristoph Hellwig 	case S_IFCHR:
20993fb64190SChristoph Hellwig 		if (path->mnt->mnt_flags & MNT_NODEV)
21001da177e4SLinus Torvalds 			return -EACCES;
2101c8fe8f30SChristoph Hellwig 		/*FALLTHRU*/
2102c8fe8f30SChristoph Hellwig 	case S_IFIFO:
2103c8fe8f30SChristoph Hellwig 	case S_IFSOCK:
21041da177e4SLinus Torvalds 		flag &= ~O_TRUNC;
2105c8fe8f30SChristoph Hellwig 		break;
21064a3fd211SDave Hansen 	}
2107b41572e9SDave Hansen 
21083fb64190SChristoph Hellwig 	error = inode_permission(inode, acc_mode);
2109b41572e9SDave Hansen 	if (error)
2110b41572e9SDave Hansen 		return error;
21116146f0d5SMimi Zohar 
21121da177e4SLinus Torvalds 	/*
21131da177e4SLinus Torvalds 	 * An append-only file must be opened in append mode for writing.
21141da177e4SLinus Torvalds 	 */
21151da177e4SLinus Torvalds 	if (IS_APPEND(inode)) {
21168737c930SAl Viro 		if  ((flag & O_ACCMODE) != O_RDONLY && !(flag & O_APPEND))
21177715b521SAl Viro 			return -EPERM;
21181da177e4SLinus Torvalds 		if (flag & O_TRUNC)
21197715b521SAl Viro 			return -EPERM;
21201da177e4SLinus Torvalds 	}
21211da177e4SLinus Torvalds 
21221da177e4SLinus Torvalds 	/* O_NOATIME can only be set by the owner or superuser */
21237715b521SAl Viro 	if (flag & O_NOATIME && !is_owner_or_cap(inode))
21247715b521SAl Viro 		return -EPERM;
21251da177e4SLinus Torvalds 
21261da177e4SLinus Torvalds 	/*
21271da177e4SLinus Torvalds 	 * Ensure there are no outstanding leases on the file.
21281da177e4SLinus Torvalds 	 */
2129b65a9cfcSAl Viro 	return break_lease(inode, flag);
21307715b521SAl Viro }
21317715b521SAl Viro 
2132e1181ee6SJeff Layton static int handle_truncate(struct file *filp)
21337715b521SAl Viro {
2134e1181ee6SJeff Layton 	struct path *path = &filp->f_path;
21357715b521SAl Viro 	struct inode *inode = path->dentry->d_inode;
21367715b521SAl Viro 	int error = get_write_access(inode);
21371da177e4SLinus Torvalds 	if (error)
21387715b521SAl Viro 		return error;
21391da177e4SLinus Torvalds 	/*
21401da177e4SLinus Torvalds 	 * Refuse to truncate files with mandatory locks held on them.
21411da177e4SLinus Torvalds 	 */
21421da177e4SLinus Torvalds 	error = locks_verify_locked(inode);
2143be6d3e56SKentaro Takeda 	if (!error)
2144ea0d3ab2STetsuo Handa 		error = security_path_truncate(path);
21451da177e4SLinus Torvalds 	if (!error) {
21467715b521SAl Viro 		error = do_truncate(path->dentry, 0,
2147d139d7ffSMiklos Szeredi 				    ATTR_MTIME|ATTR_CTIME|ATTR_OPEN,
2148e1181ee6SJeff Layton 				    filp);
21491da177e4SLinus Torvalds 	}
21501da177e4SLinus Torvalds 	put_write_access(inode);
2151acd0c935SMimi Zohar 	return error;
21521da177e4SLinus Torvalds }
21531da177e4SLinus Torvalds 
2154d57999e1SDave Hansen /*
2155d57999e1SDave Hansen  * Be careful about ever adding any more callers of this
2156d57999e1SDave Hansen  * function.  Its flags must be in the namei format, not
2157d57999e1SDave Hansen  * what get passed to sys_open().
2158d57999e1SDave Hansen  */
2159d57999e1SDave Hansen static int __open_namei_create(struct nameidata *nd, struct path *path,
21608737c930SAl Viro 				int open_flag, int mode)
2161aab520e2SDave Hansen {
2162aab520e2SDave Hansen 	int error;
21634ac91378SJan Blunck 	struct dentry *dir = nd->path.dentry;
2164aab520e2SDave Hansen 
2165aab520e2SDave Hansen 	if (!IS_POSIXACL(dir->d_inode))
2166ce3b0f8dSAl Viro 		mode &= ~current_umask();
2167be6d3e56SKentaro Takeda 	error = security_path_mknod(&nd->path, path->dentry, mode, 0);
2168be6d3e56SKentaro Takeda 	if (error)
2169be6d3e56SKentaro Takeda 		goto out_unlock;
2170aab520e2SDave Hansen 	error = vfs_create(dir->d_inode, path->dentry, mode, nd);
2171be6d3e56SKentaro Takeda out_unlock:
2172aab520e2SDave Hansen 	mutex_unlock(&dir->d_inode->i_mutex);
21734ac91378SJan Blunck 	dput(nd->path.dentry);
21744ac91378SJan Blunck 	nd->path.dentry = path->dentry;
217531e6b01fSNick Piggin 
2176aab520e2SDave Hansen 	if (error)
2177aab520e2SDave Hansen 		return error;
2178aab520e2SDave Hansen 	/* Don't check for write permission, don't truncate */
21798737c930SAl Viro 	return may_open(&nd->path, 0, open_flag & ~O_TRUNC);
2180aab520e2SDave Hansen }
2181aab520e2SDave Hansen 
21821da177e4SLinus Torvalds /*
2183d57999e1SDave Hansen  * Note that while the flag value (low two bits) for sys_open means:
2184d57999e1SDave Hansen  *	00 - read-only
2185d57999e1SDave Hansen  *	01 - write-only
2186d57999e1SDave Hansen  *	10 - read-write
2187d57999e1SDave Hansen  *	11 - special
2188d57999e1SDave Hansen  * it is changed into
2189d57999e1SDave Hansen  *	00 - no permissions needed
2190d57999e1SDave Hansen  *	01 - read-permission
2191d57999e1SDave Hansen  *	10 - write-permission
2192d57999e1SDave Hansen  *	11 - read-write
2193d57999e1SDave Hansen  * for the internal routines (ie open_namei()/follow_link() etc)
2194d57999e1SDave Hansen  * This is more logical, and also allows the 00 "no perm needed"
2195d57999e1SDave Hansen  * to be used for symlinks (where the permissions are checked
2196d57999e1SDave Hansen  * later).
2197d57999e1SDave Hansen  *
2198d57999e1SDave Hansen */
2199d57999e1SDave Hansen static inline int open_to_namei_flags(int flag)
2200d57999e1SDave Hansen {
2201d57999e1SDave Hansen 	if ((flag+1) & O_ACCMODE)
2202d57999e1SDave Hansen 		flag++;
2203d57999e1SDave Hansen 	return flag;
2204d57999e1SDave Hansen }
2205d57999e1SDave Hansen 
22067715b521SAl Viro static int open_will_truncate(int flag, struct inode *inode)
22074a3fd211SDave Hansen {
2208d57999e1SDave Hansen 	/*
22094a3fd211SDave Hansen 	 * We'll never write to the fs underlying
22104a3fd211SDave Hansen 	 * a device file.
22114a3fd211SDave Hansen 	 */
22124a3fd211SDave Hansen 	if (special_file(inode->i_mode))
22134a3fd211SDave Hansen 		return 0;
22144a3fd211SDave Hansen 	return (flag & O_TRUNC);
22154a3fd211SDave Hansen }
22164a3fd211SDave Hansen 
2217648fa861SAl Viro static struct file *finish_open(struct nameidata *nd,
22189a66179eSAl Viro 				int open_flag, int acc_mode)
2219648fa861SAl Viro {
2220648fa861SAl Viro 	struct file *filp;
2221648fa861SAl Viro 	int will_truncate;
2222648fa861SAl Viro 	int error;
2223648fa861SAl Viro 
22249a66179eSAl Viro 	will_truncate = open_will_truncate(open_flag, nd->path.dentry->d_inode);
2225648fa861SAl Viro 	if (will_truncate) {
2226648fa861SAl Viro 		error = mnt_want_write(nd->path.mnt);
2227648fa861SAl Viro 		if (error)
2228648fa861SAl Viro 			goto exit;
2229648fa861SAl Viro 	}
2230648fa861SAl Viro 	error = may_open(&nd->path, acc_mode, open_flag);
2231648fa861SAl Viro 	if (error) {
2232648fa861SAl Viro 		if (will_truncate)
2233648fa861SAl Viro 			mnt_drop_write(nd->path.mnt);
2234648fa861SAl Viro 		goto exit;
2235648fa861SAl Viro 	}
2236648fa861SAl Viro 	filp = nameidata_to_filp(nd);
2237648fa861SAl Viro 	if (!IS_ERR(filp)) {
2238648fa861SAl Viro 		error = ima_file_check(filp, acc_mode);
2239648fa861SAl Viro 		if (error) {
2240648fa861SAl Viro 			fput(filp);
2241648fa861SAl Viro 			filp = ERR_PTR(error);
2242648fa861SAl Viro 		}
2243648fa861SAl Viro 	}
2244648fa861SAl Viro 	if (!IS_ERR(filp)) {
2245648fa861SAl Viro 		if (will_truncate) {
2246e1181ee6SJeff Layton 			error = handle_truncate(filp);
2247648fa861SAl Viro 			if (error) {
2248648fa861SAl Viro 				fput(filp);
2249648fa861SAl Viro 				filp = ERR_PTR(error);
2250648fa861SAl Viro 			}
2251648fa861SAl Viro 		}
2252648fa861SAl Viro 	}
2253648fa861SAl Viro 	/*
2254648fa861SAl Viro 	 * It is now safe to drop the mnt write
2255648fa861SAl Viro 	 * because the filp has had a write taken
2256648fa861SAl Viro 	 * on its behalf.
2257648fa861SAl Viro 	 */
2258648fa861SAl Viro 	if (will_truncate)
2259648fa861SAl Viro 		mnt_drop_write(nd->path.mnt);
2260d893f1bcSAl Viro 	path_put(&nd->path);
2261648fa861SAl Viro 	return filp;
2262648fa861SAl Viro 
2263648fa861SAl Viro exit:
2264648fa861SAl Viro 	path_put(&nd->path);
2265648fa861SAl Viro 	return ERR_PTR(error);
2266648fa861SAl Viro }
2267648fa861SAl Viro 
226831e6b01fSNick Piggin /*
226931e6b01fSNick Piggin  * Handle O_CREAT case for do_filp_open
227031e6b01fSNick Piggin  */
2271fb1cc555SAl Viro static struct file *do_last(struct nameidata *nd, struct path *path,
22725b369df8SAl Viro 			    int open_flag, int acc_mode,
22733e297b61SAl Viro 			    int mode, const char *pathname)
2274fb1cc555SAl Viro {
2275a1e28038SAl Viro 	struct dentry *dir = nd->path.dentry;
2276fb1cc555SAl Viro 	struct file *filp;
22771f36f774SAl Viro 	int error = -EISDIR;
2278fb1cc555SAl Viro 
22791f36f774SAl Viro 	switch (nd->last_type) {
22801f36f774SAl Viro 	case LAST_DOTDOT:
22811f36f774SAl Viro 		follow_dotdot(nd);
22821f36f774SAl Viro 		dir = nd->path.dentry;
2283176306f5SNeil Brown 	case LAST_DOT:
2284fb045adbSNick Piggin 		if (need_reval_dot(dir)) {
2285f20877d9SJ. R. Okajima 			int status = d_revalidate(nd->path.dentry, nd);
2286f20877d9SJ. R. Okajima 			if (!status)
2287f20877d9SJ. R. Okajima 				status = -ESTALE;
2288f20877d9SJ. R. Okajima 			if (status < 0) {
2289f20877d9SJ. R. Okajima 				error = status;
2290a2c36b45SAl Viro 				goto exit;
22911f36f774SAl Viro 			}
2292f20877d9SJ. R. Okajima 		}
22931f36f774SAl Viro 		/* fallthrough */
22941f36f774SAl Viro 	case LAST_ROOT:
22951f36f774SAl Viro 		goto exit;
22961f36f774SAl Viro 	case LAST_BIND:
22971f36f774SAl Viro 		audit_inode(pathname, dir);
22981f36f774SAl Viro 		goto ok;
22991f36f774SAl Viro 	}
2300a2c36b45SAl Viro 
23011f36f774SAl Viro 	/* trailing slashes? */
230231e6b01fSNick Piggin 	if (nd->last.name[nd->last.len])
23031f36f774SAl Viro 		goto exit;
23041f36f774SAl Viro 
2305a1e28038SAl Viro 	mutex_lock(&dir->d_inode->i_mutex);
2306a1e28038SAl Viro 
2307a1e28038SAl Viro 	path->dentry = lookup_hash(nd);
2308a1e28038SAl Viro 	path->mnt = nd->path.mnt;
2309a1e28038SAl Viro 
2310fb1cc555SAl Viro 	error = PTR_ERR(path->dentry);
2311fb1cc555SAl Viro 	if (IS_ERR(path->dentry)) {
2312fb1cc555SAl Viro 		mutex_unlock(&dir->d_inode->i_mutex);
2313fb1cc555SAl Viro 		goto exit;
2314fb1cc555SAl Viro 	}
2315fb1cc555SAl Viro 
2316fb1cc555SAl Viro 	if (IS_ERR(nd->intent.open.file)) {
2317fb1cc555SAl Viro 		error = PTR_ERR(nd->intent.open.file);
2318fb1cc555SAl Viro 		goto exit_mutex_unlock;
2319fb1cc555SAl Viro 	}
2320fb1cc555SAl Viro 
2321fb1cc555SAl Viro 	/* Negative dentry, just create the file */
2322fb1cc555SAl Viro 	if (!path->dentry->d_inode) {
2323fb1cc555SAl Viro 		/*
2324fb1cc555SAl Viro 		 * This write is needed to ensure that a
2325fb1cc555SAl Viro 		 * ro->rw transition does not occur between
2326fb1cc555SAl Viro 		 * the time when the file is created and when
2327fb1cc555SAl Viro 		 * a permanent write count is taken through
2328fb1cc555SAl Viro 		 * the 'struct file' in nameidata_to_filp().
2329fb1cc555SAl Viro 		 */
2330fb1cc555SAl Viro 		error = mnt_want_write(nd->path.mnt);
2331fb1cc555SAl Viro 		if (error)
2332fb1cc555SAl Viro 			goto exit_mutex_unlock;
2333fb1cc555SAl Viro 		error = __open_namei_create(nd, path, open_flag, mode);
2334fb1cc555SAl Viro 		if (error) {
2335fb1cc555SAl Viro 			mnt_drop_write(nd->path.mnt);
2336fb1cc555SAl Viro 			goto exit;
2337fb1cc555SAl Viro 		}
2338fb1cc555SAl Viro 		filp = nameidata_to_filp(nd);
2339fb1cc555SAl Viro 		mnt_drop_write(nd->path.mnt);
2340d893f1bcSAl Viro 		path_put(&nd->path);
2341fb1cc555SAl Viro 		if (!IS_ERR(filp)) {
2342fb1cc555SAl Viro 			error = ima_file_check(filp, acc_mode);
2343fb1cc555SAl Viro 			if (error) {
2344fb1cc555SAl Viro 				fput(filp);
2345fb1cc555SAl Viro 				filp = ERR_PTR(error);
2346fb1cc555SAl Viro 			}
2347fb1cc555SAl Viro 		}
2348fb1cc555SAl Viro 		return filp;
2349fb1cc555SAl Viro 	}
2350fb1cc555SAl Viro 
2351fb1cc555SAl Viro 	/*
2352fb1cc555SAl Viro 	 * It already exists.
2353fb1cc555SAl Viro 	 */
2354fb1cc555SAl Viro 	mutex_unlock(&dir->d_inode->i_mutex);
2355fb1cc555SAl Viro 	audit_inode(pathname, path->dentry);
2356fb1cc555SAl Viro 
2357fb1cc555SAl Viro 	error = -EEXIST;
23585b369df8SAl Viro 	if (open_flag & O_EXCL)
2359fb1cc555SAl Viro 		goto exit_dput;
2360fb1cc555SAl Viro 
23619875cf80SDavid Howells 	error = follow_managed(path, nd->flags);
23629875cf80SDavid Howells 	if (error < 0)
2363fb1cc555SAl Viro 		goto exit_dput;
2364fb1cc555SAl Viro 
2365fb1cc555SAl Viro 	error = -ENOENT;
2366fb1cc555SAl Viro 	if (!path->dentry->d_inode)
2367fb1cc555SAl Viro 		goto exit_dput;
23689e67f361SAl Viro 
23699e67f361SAl Viro 	if (path->dentry->d_inode->i_op->follow_link)
2370fb1cc555SAl Viro 		return NULL;
2371fb1cc555SAl Viro 
2372fb1cc555SAl Viro 	path_to_nameidata(path, nd);
237331e6b01fSNick Piggin 	nd->inode = path->dentry->d_inode;
2374fb1cc555SAl Viro 	error = -EISDIR;
237531e6b01fSNick Piggin 	if (S_ISDIR(nd->inode->i_mode))
2376fb1cc555SAl Viro 		goto exit;
237767ee3ad2SAl Viro ok:
23789a66179eSAl Viro 	filp = finish_open(nd, open_flag, acc_mode);
2379fb1cc555SAl Viro 	return filp;
2380fb1cc555SAl Viro 
2381fb1cc555SAl Viro exit_mutex_unlock:
2382fb1cc555SAl Viro 	mutex_unlock(&dir->d_inode->i_mutex);
2383fb1cc555SAl Viro exit_dput:
2384fb1cc555SAl Viro 	path_put_conditional(path, nd);
2385fb1cc555SAl Viro exit:
2386fb1cc555SAl Viro 	path_put(&nd->path);
2387fb1cc555SAl Viro 	return ERR_PTR(error);
2388fb1cc555SAl Viro }
2389fb1cc555SAl Viro 
23904a3fd211SDave Hansen /*
23914a3fd211SDave Hansen  * Note that the low bits of the passed in "open_flag"
23924a3fd211SDave Hansen  * are not the same as in the local variable "flag". See
23934a3fd211SDave Hansen  * open_to_namei_flags() for more details.
23941da177e4SLinus Torvalds  */
2395a70e65dfSChristoph Hellwig struct file *do_filp_open(int dfd, const char *pathname,
23966e8341a1SAl Viro 		int open_flag, int mode, int acc_mode)
23971da177e4SLinus Torvalds {
23984a3fd211SDave Hansen 	struct file *filp;
2399a70e65dfSChristoph Hellwig 	struct nameidata nd;
24006e8341a1SAl Viro 	int error;
24019850c056SAl Viro 	struct path path;
24021da177e4SLinus Torvalds 	int count = 0;
2403d57999e1SDave Hansen 	int flag = open_to_namei_flags(open_flag);
240431e6b01fSNick Piggin 	int flags;
24051f36f774SAl Viro 
24061f36f774SAl Viro 	if (!(open_flag & O_CREAT))
24071f36f774SAl Viro 		mode = 0;
24081da177e4SLinus Torvalds 
2409b1085ba8SLino Sanfilippo 	/* Must never be set by userspace */
2410b1085ba8SLino Sanfilippo 	open_flag &= ~FMODE_NONOTIFY;
2411b1085ba8SLino Sanfilippo 
24126b2f3d1fSChristoph Hellwig 	/*
24136b2f3d1fSChristoph Hellwig 	 * O_SYNC is implemented as __O_SYNC|O_DSYNC.  As many places only
24146b2f3d1fSChristoph Hellwig 	 * check for O_DSYNC if the need any syncing at all we enforce it's
24156b2f3d1fSChristoph Hellwig 	 * always set instead of having to deal with possibly weird behaviour
24166b2f3d1fSChristoph Hellwig 	 * for malicious applications setting only __O_SYNC.
24176b2f3d1fSChristoph Hellwig 	 */
24186b2f3d1fSChristoph Hellwig 	if (open_flag & __O_SYNC)
24196b2f3d1fSChristoph Hellwig 		open_flag |= O_DSYNC;
24206b2f3d1fSChristoph Hellwig 
24216e8341a1SAl Viro 	if (!acc_mode)
24226d125529SAl Viro 		acc_mode = MAY_OPEN | ACC_MODE(open_flag);
24231da177e4SLinus Torvalds 
2424834f2a4aSTrond Myklebust 	/* O_TRUNC implies we need access checks for write permissions */
24254296e2cbSAl Viro 	if (open_flag & O_TRUNC)
2426834f2a4aSTrond Myklebust 		acc_mode |= MAY_WRITE;
2427834f2a4aSTrond Myklebust 
24281da177e4SLinus Torvalds 	/* Allow the LSM permission hook to distinguish append
24291da177e4SLinus Torvalds 	   access from general write access. */
24304296e2cbSAl Viro 	if (open_flag & O_APPEND)
24311da177e4SLinus Torvalds 		acc_mode |= MAY_APPEND;
24321da177e4SLinus Torvalds 
243331e6b01fSNick Piggin 	flags = LOOKUP_OPEN;
243431e6b01fSNick Piggin 	if (open_flag & O_CREAT) {
243531e6b01fSNick Piggin 		flags |= LOOKUP_CREATE;
243631e6b01fSNick Piggin 		if (open_flag & O_EXCL)
243731e6b01fSNick Piggin 			flags |= LOOKUP_EXCL;
2438654f562cSJ. R. Okajima 	}
243931e6b01fSNick Piggin 	if (open_flag & O_DIRECTORY)
244031e6b01fSNick Piggin 		flags |= LOOKUP_DIRECTORY;
244131e6b01fSNick Piggin 	if (!(open_flag & O_NOFOLLOW))
244231e6b01fSNick Piggin 		flags |= LOOKUP_FOLLOW;
244331e6b01fSNick Piggin 
244431e6b01fSNick Piggin 	filp = get_empty_filp();
244531e6b01fSNick Piggin 	if (!filp)
244631e6b01fSNick Piggin 		return ERR_PTR(-ENFILE);
244731e6b01fSNick Piggin 
244831e6b01fSNick Piggin 	filp->f_flags = open_flag;
244931e6b01fSNick Piggin 	nd.intent.open.file = filp;
245031e6b01fSNick Piggin 	nd.intent.open.flags = flag;
245131e6b01fSNick Piggin 	nd.intent.open.create_mode = mode;
245231e6b01fSNick Piggin 
245331e6b01fSNick Piggin 	if (open_flag & O_CREAT)
245431e6b01fSNick Piggin 		goto creat;
245531e6b01fSNick Piggin 
245631e6b01fSNick Piggin 	/* !O_CREAT, simple open */
245731e6b01fSNick Piggin 	error = do_path_lookup(dfd, pathname, flags, &nd);
245831e6b01fSNick Piggin 	if (unlikely(error))
24591858efd4SAl Viro 		goto out_filp2;
246031e6b01fSNick Piggin 	error = -ELOOP;
246131e6b01fSNick Piggin 	if (!(nd.flags & LOOKUP_FOLLOW)) {
246231e6b01fSNick Piggin 		if (nd.inode->i_op->follow_link)
24631858efd4SAl Viro 			goto out_path2;
246431e6b01fSNick Piggin 	}
246531e6b01fSNick Piggin 	error = -ENOTDIR;
246631e6b01fSNick Piggin 	if (nd.flags & LOOKUP_DIRECTORY) {
246731e6b01fSNick Piggin 		if (!nd.inode->i_op->lookup)
24681858efd4SAl Viro 			goto out_path2;
246931e6b01fSNick Piggin 	}
247031e6b01fSNick Piggin 	audit_inode(pathname, nd.path.dentry);
247131e6b01fSNick Piggin 	filp = finish_open(&nd, open_flag, acc_mode);
24721858efd4SAl Viro out2:
24732dab5974SLinus Torvalds 	release_open_intent(&nd);
247431e6b01fSNick Piggin 	return filp;
247531e6b01fSNick Piggin 
24761858efd4SAl Viro out_path2:
24771858efd4SAl Viro 	path_put(&nd.path);
24781858efd4SAl Viro out_filp2:
24791858efd4SAl Viro 	filp = ERR_PTR(error);
24801858efd4SAl Viro 	goto out2;
24811858efd4SAl Viro 
248231e6b01fSNick Piggin creat:
248331e6b01fSNick Piggin 	/* OK, have to create the file. Find the parent. */
248431e6b01fSNick Piggin 	error = path_init_rcu(dfd, pathname,
248531e6b01fSNick Piggin 			LOOKUP_PARENT | (flags & LOOKUP_REVAL), &nd);
248631e6b01fSNick Piggin 	if (error)
248731e6b01fSNick Piggin 		goto out_filp;
248831e6b01fSNick Piggin 	error = path_walk_rcu(pathname, &nd);
248931e6b01fSNick Piggin 	path_finish_rcu(&nd);
249031e6b01fSNick Piggin 	if (unlikely(error == -ECHILD || error == -ESTALE)) {
249131e6b01fSNick Piggin 		/* slower, locked walk */
249231e6b01fSNick Piggin 		if (error == -ESTALE) {
249331e6b01fSNick Piggin reval:
249431e6b01fSNick Piggin 			flags |= LOOKUP_REVAL;
249531e6b01fSNick Piggin 		}
249631e6b01fSNick Piggin 		error = path_init(dfd, pathname,
249731e6b01fSNick Piggin 				LOOKUP_PARENT | (flags & LOOKUP_REVAL), &nd);
249831e6b01fSNick Piggin 		if (error)
249931e6b01fSNick Piggin 			goto out_filp;
250031e6b01fSNick Piggin 
250131e6b01fSNick Piggin 		error = path_walk_simple(pathname, &nd);
250231e6b01fSNick Piggin 	}
250331e6b01fSNick Piggin 	if (unlikely(error))
250431e6b01fSNick Piggin 		goto out_filp;
250531e6b01fSNick Piggin 	if (unlikely(!audit_dummy_context()))
25069b4a9b14SAl Viro 		audit_inode(pathname, nd.path.dentry);
25071da177e4SLinus Torvalds 
25081da177e4SLinus Torvalds 	/*
2509a2c36b45SAl Viro 	 * We have the parent and last component.
25101da177e4SLinus Torvalds 	 */
251131e6b01fSNick Piggin 	nd.flags = flags;
25123e297b61SAl Viro 	filp = do_last(&nd, &path, open_flag, acc_mode, mode, pathname);
2513806b681cSAl Viro 	while (unlikely(!filp)) { /* trailing symlink */
25147b9337aaSNick Piggin 		struct path link = path;
25157b9337aaSNick Piggin 		struct inode *linki = link.dentry->d_inode;
2516def4af30SAl Viro 		void *cookie;
2517806b681cSAl Viro 		error = -ELOOP;
2518db372915SDavid Howells 		if (!(nd.flags & LOOKUP_FOLLOW))
25191f36f774SAl Viro 			goto exit_dput;
25201f36f774SAl Viro 		if (count++ == 32)
2521806b681cSAl Viro 			goto exit_dput;
2522806b681cSAl Viro 		/*
2523806b681cSAl Viro 		 * This is subtle. Instead of calling do_follow_link() we do
2524806b681cSAl Viro 		 * the thing by hands. The reason is that this way we have zero
2525806b681cSAl Viro 		 * link_count and path_walk() (called from ->follow_link)
2526806b681cSAl Viro 		 * honoring LOOKUP_PARENT.  After that we have the parent and
2527806b681cSAl Viro 		 * last component, i.e. we are in the same situation as after
2528806b681cSAl Viro 		 * the first path_walk().  Well, almost - if the last component
2529806b681cSAl Viro 		 * is normal we get its copy stored in nd->last.name and we will
2530806b681cSAl Viro 		 * have to putname() it when we are done. Procfs-like symlinks
2531806b681cSAl Viro 		 * just set LAST_BIND.
2532806b681cSAl Viro 		 */
2533806b681cSAl Viro 		nd.flags |= LOOKUP_PARENT;
25347b9337aaSNick Piggin 		error = security_inode_follow_link(link.dentry, &nd);
2535806b681cSAl Viro 		if (error)
2536806b681cSAl Viro 			goto exit_dput;
25377b9337aaSNick Piggin 		error = __do_follow_link(&link, &nd, &cookie);
2538def4af30SAl Viro 		if (unlikely(error)) {
25397b9337aaSNick Piggin 			if (!IS_ERR(cookie) && linki->i_op->put_link)
25407b9337aaSNick Piggin 				linki->i_op->put_link(link.dentry, &nd, cookie);
2541806b681cSAl Viro 			/* nd.path had been dropped */
25427b9337aaSNick Piggin 			nd.path = link;
254331e6b01fSNick Piggin 			goto out_path;
2544806b681cSAl Viro 		}
2545806b681cSAl Viro 		nd.flags &= ~LOOKUP_PARENT;
25463e297b61SAl Viro 		filp = do_last(&nd, &path, open_flag, acc_mode, mode, pathname);
25477b9337aaSNick Piggin 		if (linki->i_op->put_link)
25487b9337aaSNick Piggin 			linki->i_op->put_link(link.dentry, &nd, cookie);
25497b9337aaSNick Piggin 		path_put(&link);
2550806b681cSAl Viro 	}
255110fa8e62SAl Viro out:
25522a737871SAl Viro 	if (nd.root.mnt)
25532a737871SAl Viro 		path_put(&nd.root);
255431e6b01fSNick Piggin 	if (filp == ERR_PTR(-ESTALE) && !(flags & LOOKUP_REVAL))
255510fa8e62SAl Viro 		goto reval;
25562dab5974SLinus Torvalds 	release_open_intent(&nd);
255710fa8e62SAl Viro 	return filp;
25581da177e4SLinus Torvalds 
2559806b681cSAl Viro exit_dput:
2560806b681cSAl Viro 	path_put_conditional(&path, &nd);
256131e6b01fSNick Piggin out_path:
256231e6b01fSNick Piggin 	path_put(&nd.path);
256331e6b01fSNick Piggin out_filp:
256410fa8e62SAl Viro 	filp = ERR_PTR(error);
256510fa8e62SAl Viro 	goto out;
2566de459215SKirill Korotaev }
25671da177e4SLinus Torvalds 
25681da177e4SLinus Torvalds /**
2569a70e65dfSChristoph Hellwig  * filp_open - open file and return file pointer
2570a70e65dfSChristoph Hellwig  *
2571a70e65dfSChristoph Hellwig  * @filename:	path to open
2572a70e65dfSChristoph Hellwig  * @flags:	open flags as per the open(2) second argument
2573a70e65dfSChristoph Hellwig  * @mode:	mode for the new file if O_CREAT is set, else ignored
2574a70e65dfSChristoph Hellwig  *
2575a70e65dfSChristoph Hellwig  * This is the helper to open a file from kernelspace if you really
2576a70e65dfSChristoph Hellwig  * have to.  But in generally you should not do this, so please move
2577a70e65dfSChristoph Hellwig  * along, nothing to see here..
2578a70e65dfSChristoph Hellwig  */
2579a70e65dfSChristoph Hellwig struct file *filp_open(const char *filename, int flags, int mode)
2580a70e65dfSChristoph Hellwig {
25816e8341a1SAl Viro 	return do_filp_open(AT_FDCWD, filename, flags, mode, 0);
2582a70e65dfSChristoph Hellwig }
2583a70e65dfSChristoph Hellwig EXPORT_SYMBOL(filp_open);
2584a70e65dfSChristoph Hellwig 
2585a70e65dfSChristoph Hellwig /**
25861da177e4SLinus Torvalds  * lookup_create - lookup a dentry, creating it if it doesn't exist
25871da177e4SLinus Torvalds  * @nd: nameidata info
25881da177e4SLinus Torvalds  * @is_dir: directory flag
25891da177e4SLinus Torvalds  *
25901da177e4SLinus Torvalds  * Simple function to lookup and return a dentry and create it
25911da177e4SLinus Torvalds  * if it doesn't exist.  Is SMP-safe.
2592c663e5d8SChristoph Hellwig  *
25934ac91378SJan Blunck  * Returns with nd->path.dentry->d_inode->i_mutex locked.
25941da177e4SLinus Torvalds  */
25951da177e4SLinus Torvalds struct dentry *lookup_create(struct nameidata *nd, int is_dir)
25961da177e4SLinus Torvalds {
2597c663e5d8SChristoph Hellwig 	struct dentry *dentry = ERR_PTR(-EEXIST);
25981da177e4SLinus Torvalds 
25994ac91378SJan Blunck 	mutex_lock_nested(&nd->path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
2600c663e5d8SChristoph Hellwig 	/*
2601c663e5d8SChristoph Hellwig 	 * Yucky last component or no last component at all?
2602c663e5d8SChristoph Hellwig 	 * (foo/., foo/.., /////)
2603c663e5d8SChristoph Hellwig 	 */
26041da177e4SLinus Torvalds 	if (nd->last_type != LAST_NORM)
26051da177e4SLinus Torvalds 		goto fail;
26061da177e4SLinus Torvalds 	nd->flags &= ~LOOKUP_PARENT;
26073516586aSAl Viro 	nd->flags |= LOOKUP_CREATE | LOOKUP_EXCL;
2608a634904aSASANO Masahiro 	nd->intent.open.flags = O_EXCL;
2609c663e5d8SChristoph Hellwig 
2610c663e5d8SChristoph Hellwig 	/*
2611c663e5d8SChristoph Hellwig 	 * Do the final lookup.
2612c663e5d8SChristoph Hellwig 	 */
261349705b77SChristoph Hellwig 	dentry = lookup_hash(nd);
26141da177e4SLinus Torvalds 	if (IS_ERR(dentry))
26151da177e4SLinus Torvalds 		goto fail;
2616c663e5d8SChristoph Hellwig 
2617e9baf6e5SAl Viro 	if (dentry->d_inode)
2618e9baf6e5SAl Viro 		goto eexist;
2619c663e5d8SChristoph Hellwig 	/*
2620c663e5d8SChristoph Hellwig 	 * Special case - lookup gave negative, but... we had foo/bar/
2621c663e5d8SChristoph Hellwig 	 * From the vfs_mknod() POV we just have a negative dentry -
2622c663e5d8SChristoph Hellwig 	 * all is fine. Let's be bastards - you had / on the end, you've
2623c663e5d8SChristoph Hellwig 	 * been asking for (non-existent) directory. -ENOENT for you.
2624c663e5d8SChristoph Hellwig 	 */
2625e9baf6e5SAl Viro 	if (unlikely(!is_dir && nd->last.name[nd->last.len])) {
26261da177e4SLinus Torvalds 		dput(dentry);
26271da177e4SLinus Torvalds 		dentry = ERR_PTR(-ENOENT);
2628e9baf6e5SAl Viro 	}
2629e9baf6e5SAl Viro 	return dentry;
2630e9baf6e5SAl Viro eexist:
2631e9baf6e5SAl Viro 	dput(dentry);
2632e9baf6e5SAl Viro 	dentry = ERR_PTR(-EEXIST);
26331da177e4SLinus Torvalds fail:
26341da177e4SLinus Torvalds 	return dentry;
26351da177e4SLinus Torvalds }
2636f81a0bffSChristoph Hellwig EXPORT_SYMBOL_GPL(lookup_create);
26371da177e4SLinus Torvalds 
26381da177e4SLinus Torvalds int vfs_mknod(struct inode *dir, struct dentry *dentry, int mode, dev_t dev)
26391da177e4SLinus Torvalds {
2640a95164d9SMiklos Szeredi 	int error = may_create(dir, dentry);
26411da177e4SLinus Torvalds 
26421da177e4SLinus Torvalds 	if (error)
26431da177e4SLinus Torvalds 		return error;
26441da177e4SLinus Torvalds 
26451da177e4SLinus Torvalds 	if ((S_ISCHR(mode) || S_ISBLK(mode)) && !capable(CAP_MKNOD))
26461da177e4SLinus Torvalds 		return -EPERM;
26471da177e4SLinus Torvalds 
2648acfa4380SAl Viro 	if (!dir->i_op->mknod)
26491da177e4SLinus Torvalds 		return -EPERM;
26501da177e4SLinus Torvalds 
265108ce5f16SSerge E. Hallyn 	error = devcgroup_inode_mknod(mode, dev);
265208ce5f16SSerge E. Hallyn 	if (error)
265308ce5f16SSerge E. Hallyn 		return error;
265408ce5f16SSerge E. Hallyn 
26551da177e4SLinus Torvalds 	error = security_inode_mknod(dir, dentry, mode, dev);
26561da177e4SLinus Torvalds 	if (error)
26571da177e4SLinus Torvalds 		return error;
26581da177e4SLinus Torvalds 
26591da177e4SLinus Torvalds 	error = dir->i_op->mknod(dir, dentry, mode, dev);
2660a74574aaSStephen Smalley 	if (!error)
2661f38aa942SAmy Griffis 		fsnotify_create(dir, dentry);
26621da177e4SLinus Torvalds 	return error;
26631da177e4SLinus Torvalds }
26641da177e4SLinus Torvalds 
2665463c3197SDave Hansen static int may_mknod(mode_t mode)
2666463c3197SDave Hansen {
2667463c3197SDave Hansen 	switch (mode & S_IFMT) {
2668463c3197SDave Hansen 	case S_IFREG:
2669463c3197SDave Hansen 	case S_IFCHR:
2670463c3197SDave Hansen 	case S_IFBLK:
2671463c3197SDave Hansen 	case S_IFIFO:
2672463c3197SDave Hansen 	case S_IFSOCK:
2673463c3197SDave Hansen 	case 0: /* zero mode translates to S_IFREG */
2674463c3197SDave Hansen 		return 0;
2675463c3197SDave Hansen 	case S_IFDIR:
2676463c3197SDave Hansen 		return -EPERM;
2677463c3197SDave Hansen 	default:
2678463c3197SDave Hansen 		return -EINVAL;
2679463c3197SDave Hansen 	}
2680463c3197SDave Hansen }
2681463c3197SDave Hansen 
26822e4d0924SHeiko Carstens SYSCALL_DEFINE4(mknodat, int, dfd, const char __user *, filename, int, mode,
26832e4d0924SHeiko Carstens 		unsigned, dev)
26841da177e4SLinus Torvalds {
26852ad94ae6SAl Viro 	int error;
26861da177e4SLinus Torvalds 	char *tmp;
26871da177e4SLinus Torvalds 	struct dentry *dentry;
26881da177e4SLinus Torvalds 	struct nameidata nd;
26891da177e4SLinus Torvalds 
26901da177e4SLinus Torvalds 	if (S_ISDIR(mode))
26911da177e4SLinus Torvalds 		return -EPERM;
26921da177e4SLinus Torvalds 
26932ad94ae6SAl Viro 	error = user_path_parent(dfd, filename, &nd, &tmp);
26941da177e4SLinus Torvalds 	if (error)
26952ad94ae6SAl Viro 		return error;
26962ad94ae6SAl Viro 
26971da177e4SLinus Torvalds 	dentry = lookup_create(&nd, 0);
2698463c3197SDave Hansen 	if (IS_ERR(dentry)) {
26991da177e4SLinus Torvalds 		error = PTR_ERR(dentry);
2700463c3197SDave Hansen 		goto out_unlock;
2701463c3197SDave Hansen 	}
27024ac91378SJan Blunck 	if (!IS_POSIXACL(nd.path.dentry->d_inode))
2703ce3b0f8dSAl Viro 		mode &= ~current_umask();
2704463c3197SDave Hansen 	error = may_mknod(mode);
2705463c3197SDave Hansen 	if (error)
2706463c3197SDave Hansen 		goto out_dput;
2707463c3197SDave Hansen 	error = mnt_want_write(nd.path.mnt);
2708463c3197SDave Hansen 	if (error)
2709463c3197SDave Hansen 		goto out_dput;
2710be6d3e56SKentaro Takeda 	error = security_path_mknod(&nd.path, dentry, mode, dev);
2711be6d3e56SKentaro Takeda 	if (error)
2712be6d3e56SKentaro Takeda 		goto out_drop_write;
27131da177e4SLinus Torvalds 	switch (mode & S_IFMT) {
27141da177e4SLinus Torvalds 		case 0: case S_IFREG:
27154ac91378SJan Blunck 			error = vfs_create(nd.path.dentry->d_inode,dentry,mode,&nd);
27161da177e4SLinus Torvalds 			break;
27171da177e4SLinus Torvalds 		case S_IFCHR: case S_IFBLK:
27184ac91378SJan Blunck 			error = vfs_mknod(nd.path.dentry->d_inode,dentry,mode,
27191da177e4SLinus Torvalds 					new_decode_dev(dev));
27201da177e4SLinus Torvalds 			break;
27211da177e4SLinus Torvalds 		case S_IFIFO: case S_IFSOCK:
27224ac91378SJan Blunck 			error = vfs_mknod(nd.path.dentry->d_inode,dentry,mode,0);
27231da177e4SLinus Torvalds 			break;
27241da177e4SLinus Torvalds 	}
2725be6d3e56SKentaro Takeda out_drop_write:
2726463c3197SDave Hansen 	mnt_drop_write(nd.path.mnt);
2727463c3197SDave Hansen out_dput:
27281da177e4SLinus Torvalds 	dput(dentry);
2729463c3197SDave Hansen out_unlock:
27304ac91378SJan Blunck 	mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
27311d957f9bSJan Blunck 	path_put(&nd.path);
27321da177e4SLinus Torvalds 	putname(tmp);
27331da177e4SLinus Torvalds 
27341da177e4SLinus Torvalds 	return error;
27351da177e4SLinus Torvalds }
27361da177e4SLinus Torvalds 
27373480b257SHeiko Carstens SYSCALL_DEFINE3(mknod, const char __user *, filename, int, mode, unsigned, dev)
27385590ff0dSUlrich Drepper {
27395590ff0dSUlrich Drepper 	return sys_mknodat(AT_FDCWD, filename, mode, dev);
27405590ff0dSUlrich Drepper }
27415590ff0dSUlrich Drepper 
27421da177e4SLinus Torvalds int vfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
27431da177e4SLinus Torvalds {
2744a95164d9SMiklos Szeredi 	int error = may_create(dir, dentry);
27451da177e4SLinus Torvalds 
27461da177e4SLinus Torvalds 	if (error)
27471da177e4SLinus Torvalds 		return error;
27481da177e4SLinus Torvalds 
2749acfa4380SAl Viro 	if (!dir->i_op->mkdir)
27501da177e4SLinus Torvalds 		return -EPERM;
27511da177e4SLinus Torvalds 
27521da177e4SLinus Torvalds 	mode &= (S_IRWXUGO|S_ISVTX);
27531da177e4SLinus Torvalds 	error = security_inode_mkdir(dir, dentry, mode);
27541da177e4SLinus Torvalds 	if (error)
27551da177e4SLinus Torvalds 		return error;
27561da177e4SLinus Torvalds 
27571da177e4SLinus Torvalds 	error = dir->i_op->mkdir(dir, dentry, mode);
2758a74574aaSStephen Smalley 	if (!error)
2759f38aa942SAmy Griffis 		fsnotify_mkdir(dir, dentry);
27601da177e4SLinus Torvalds 	return error;
27611da177e4SLinus Torvalds }
27621da177e4SLinus Torvalds 
27632e4d0924SHeiko Carstens SYSCALL_DEFINE3(mkdirat, int, dfd, const char __user *, pathname, int, mode)
27641da177e4SLinus Torvalds {
27651da177e4SLinus Torvalds 	int error = 0;
27661da177e4SLinus Torvalds 	char * tmp;
27676902d925SDave Hansen 	struct dentry *dentry;
27686902d925SDave Hansen 	struct nameidata nd;
27691da177e4SLinus Torvalds 
27702ad94ae6SAl Viro 	error = user_path_parent(dfd, pathname, &nd, &tmp);
27712ad94ae6SAl Viro 	if (error)
27726902d925SDave Hansen 		goto out_err;
27731da177e4SLinus Torvalds 
27741da177e4SLinus Torvalds 	dentry = lookup_create(&nd, 1);
27751da177e4SLinus Torvalds 	error = PTR_ERR(dentry);
27766902d925SDave Hansen 	if (IS_ERR(dentry))
27776902d925SDave Hansen 		goto out_unlock;
27786902d925SDave Hansen 
27794ac91378SJan Blunck 	if (!IS_POSIXACL(nd.path.dentry->d_inode))
2780ce3b0f8dSAl Viro 		mode &= ~current_umask();
2781463c3197SDave Hansen 	error = mnt_want_write(nd.path.mnt);
2782463c3197SDave Hansen 	if (error)
2783463c3197SDave Hansen 		goto out_dput;
2784be6d3e56SKentaro Takeda 	error = security_path_mkdir(&nd.path, dentry, mode);
2785be6d3e56SKentaro Takeda 	if (error)
2786be6d3e56SKentaro Takeda 		goto out_drop_write;
27874ac91378SJan Blunck 	error = vfs_mkdir(nd.path.dentry->d_inode, dentry, mode);
2788be6d3e56SKentaro Takeda out_drop_write:
2789463c3197SDave Hansen 	mnt_drop_write(nd.path.mnt);
2790463c3197SDave Hansen out_dput:
27911da177e4SLinus Torvalds 	dput(dentry);
27926902d925SDave Hansen out_unlock:
27934ac91378SJan Blunck 	mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
27941d957f9bSJan Blunck 	path_put(&nd.path);
27951da177e4SLinus Torvalds 	putname(tmp);
27966902d925SDave Hansen out_err:
27971da177e4SLinus Torvalds 	return error;
27981da177e4SLinus Torvalds }
27991da177e4SLinus Torvalds 
28003cdad428SHeiko Carstens SYSCALL_DEFINE2(mkdir, const char __user *, pathname, int, mode)
28015590ff0dSUlrich Drepper {
28025590ff0dSUlrich Drepper 	return sys_mkdirat(AT_FDCWD, pathname, mode);
28035590ff0dSUlrich Drepper }
28045590ff0dSUlrich Drepper 
28051da177e4SLinus Torvalds /*
28061da177e4SLinus Torvalds  * We try to drop the dentry early: we should have
28071da177e4SLinus Torvalds  * a usage count of 2 if we're the only user of this
28081da177e4SLinus Torvalds  * dentry, and if that is true (possibly after pruning
28091da177e4SLinus Torvalds  * the dcache), then we drop the dentry now.
28101da177e4SLinus Torvalds  *
28111da177e4SLinus Torvalds  * A low-level filesystem can, if it choses, legally
28121da177e4SLinus Torvalds  * do a
28131da177e4SLinus Torvalds  *
28141da177e4SLinus Torvalds  *	if (!d_unhashed(dentry))
28151da177e4SLinus Torvalds  *		return -EBUSY;
28161da177e4SLinus Torvalds  *
28171da177e4SLinus Torvalds  * if it cannot handle the case of removing a directory
28181da177e4SLinus Torvalds  * that is still in use by something else..
28191da177e4SLinus Torvalds  */
28201da177e4SLinus Torvalds void dentry_unhash(struct dentry *dentry)
28211da177e4SLinus Torvalds {
28221da177e4SLinus Torvalds 	dget(dentry);
28231da177e4SLinus Torvalds 	shrink_dcache_parent(dentry);
28241da177e4SLinus Torvalds 	spin_lock(&dentry->d_lock);
2825b7ab39f6SNick Piggin 	if (dentry->d_count == 2)
28261da177e4SLinus Torvalds 		__d_drop(dentry);
28271da177e4SLinus Torvalds 	spin_unlock(&dentry->d_lock);
28281da177e4SLinus Torvalds }
28291da177e4SLinus Torvalds 
28301da177e4SLinus Torvalds int vfs_rmdir(struct inode *dir, struct dentry *dentry)
28311da177e4SLinus Torvalds {
28321da177e4SLinus Torvalds 	int error = may_delete(dir, dentry, 1);
28331da177e4SLinus Torvalds 
28341da177e4SLinus Torvalds 	if (error)
28351da177e4SLinus Torvalds 		return error;
28361da177e4SLinus Torvalds 
2837acfa4380SAl Viro 	if (!dir->i_op->rmdir)
28381da177e4SLinus Torvalds 		return -EPERM;
28391da177e4SLinus Torvalds 
28401b1dcc1bSJes Sorensen 	mutex_lock(&dentry->d_inode->i_mutex);
28411da177e4SLinus Torvalds 	dentry_unhash(dentry);
28421da177e4SLinus Torvalds 	if (d_mountpoint(dentry))
28431da177e4SLinus Torvalds 		error = -EBUSY;
28441da177e4SLinus Torvalds 	else {
28451da177e4SLinus Torvalds 		error = security_inode_rmdir(dir, dentry);
28461da177e4SLinus Torvalds 		if (!error) {
28471da177e4SLinus Torvalds 			error = dir->i_op->rmdir(dir, dentry);
2848d83c49f3SAl Viro 			if (!error) {
28491da177e4SLinus Torvalds 				dentry->d_inode->i_flags |= S_DEAD;
2850d83c49f3SAl Viro 				dont_mount(dentry);
2851d83c49f3SAl Viro 			}
28521da177e4SLinus Torvalds 		}
28531da177e4SLinus Torvalds 	}
28541b1dcc1bSJes Sorensen 	mutex_unlock(&dentry->d_inode->i_mutex);
28551da177e4SLinus Torvalds 	if (!error) {
28561da177e4SLinus Torvalds 		d_delete(dentry);
28571da177e4SLinus Torvalds 	}
28581da177e4SLinus Torvalds 	dput(dentry);
28591da177e4SLinus Torvalds 
28601da177e4SLinus Torvalds 	return error;
28611da177e4SLinus Torvalds }
28621da177e4SLinus Torvalds 
28635590ff0dSUlrich Drepper static long do_rmdir(int dfd, const char __user *pathname)
28641da177e4SLinus Torvalds {
28651da177e4SLinus Torvalds 	int error = 0;
28661da177e4SLinus Torvalds 	char * name;
28671da177e4SLinus Torvalds 	struct dentry *dentry;
28681da177e4SLinus Torvalds 	struct nameidata nd;
28691da177e4SLinus Torvalds 
28702ad94ae6SAl Viro 	error = user_path_parent(dfd, pathname, &nd, &name);
28711da177e4SLinus Torvalds 	if (error)
28722ad94ae6SAl Viro 		return error;
28731da177e4SLinus Torvalds 
28741da177e4SLinus Torvalds 	switch(nd.last_type) {
28751da177e4SLinus Torvalds 	case LAST_DOTDOT:
28761da177e4SLinus Torvalds 		error = -ENOTEMPTY;
28771da177e4SLinus Torvalds 		goto exit1;
28781da177e4SLinus Torvalds 	case LAST_DOT:
28791da177e4SLinus Torvalds 		error = -EINVAL;
28801da177e4SLinus Torvalds 		goto exit1;
28811da177e4SLinus Torvalds 	case LAST_ROOT:
28821da177e4SLinus Torvalds 		error = -EBUSY;
28831da177e4SLinus Torvalds 		goto exit1;
28841da177e4SLinus Torvalds 	}
28850612d9fbSOGAWA Hirofumi 
28860612d9fbSOGAWA Hirofumi 	nd.flags &= ~LOOKUP_PARENT;
28870612d9fbSOGAWA Hirofumi 
28884ac91378SJan Blunck 	mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
288949705b77SChristoph Hellwig 	dentry = lookup_hash(&nd);
28901da177e4SLinus Torvalds 	error = PTR_ERR(dentry);
28916902d925SDave Hansen 	if (IS_ERR(dentry))
28926902d925SDave Hansen 		goto exit2;
28930622753bSDave Hansen 	error = mnt_want_write(nd.path.mnt);
28940622753bSDave Hansen 	if (error)
28950622753bSDave Hansen 		goto exit3;
2896be6d3e56SKentaro Takeda 	error = security_path_rmdir(&nd.path, dentry);
2897be6d3e56SKentaro Takeda 	if (error)
2898be6d3e56SKentaro Takeda 		goto exit4;
28994ac91378SJan Blunck 	error = vfs_rmdir(nd.path.dentry->d_inode, dentry);
2900be6d3e56SKentaro Takeda exit4:
29010622753bSDave Hansen 	mnt_drop_write(nd.path.mnt);
29020622753bSDave Hansen exit3:
29031da177e4SLinus Torvalds 	dput(dentry);
29046902d925SDave Hansen exit2:
29054ac91378SJan Blunck 	mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
29061da177e4SLinus Torvalds exit1:
29071d957f9bSJan Blunck 	path_put(&nd.path);
29081da177e4SLinus Torvalds 	putname(name);
29091da177e4SLinus Torvalds 	return error;
29101da177e4SLinus Torvalds }
29111da177e4SLinus Torvalds 
29123cdad428SHeiko Carstens SYSCALL_DEFINE1(rmdir, const char __user *, pathname)
29135590ff0dSUlrich Drepper {
29145590ff0dSUlrich Drepper 	return do_rmdir(AT_FDCWD, pathname);
29155590ff0dSUlrich Drepper }
29165590ff0dSUlrich Drepper 
29171da177e4SLinus Torvalds int vfs_unlink(struct inode *dir, struct dentry *dentry)
29181da177e4SLinus Torvalds {
29191da177e4SLinus Torvalds 	int error = may_delete(dir, dentry, 0);
29201da177e4SLinus Torvalds 
29211da177e4SLinus Torvalds 	if (error)
29221da177e4SLinus Torvalds 		return error;
29231da177e4SLinus Torvalds 
2924acfa4380SAl Viro 	if (!dir->i_op->unlink)
29251da177e4SLinus Torvalds 		return -EPERM;
29261da177e4SLinus Torvalds 
29271b1dcc1bSJes Sorensen 	mutex_lock(&dentry->d_inode->i_mutex);
29281da177e4SLinus Torvalds 	if (d_mountpoint(dentry))
29291da177e4SLinus Torvalds 		error = -EBUSY;
29301da177e4SLinus Torvalds 	else {
29311da177e4SLinus Torvalds 		error = security_inode_unlink(dir, dentry);
2932bec1052eSAl Viro 		if (!error) {
29331da177e4SLinus Torvalds 			error = dir->i_op->unlink(dir, dentry);
2934bec1052eSAl Viro 			if (!error)
2935d83c49f3SAl Viro 				dont_mount(dentry);
2936bec1052eSAl Viro 		}
29371da177e4SLinus Torvalds 	}
29381b1dcc1bSJes Sorensen 	mutex_unlock(&dentry->d_inode->i_mutex);
29391da177e4SLinus Torvalds 
29401da177e4SLinus Torvalds 	/* We don't d_delete() NFS sillyrenamed files--they still exist. */
29411da177e4SLinus Torvalds 	if (!error && !(dentry->d_flags & DCACHE_NFSFS_RENAMED)) {
2942ece95912SJan Kara 		fsnotify_link_count(dentry->d_inode);
29431da177e4SLinus Torvalds 		d_delete(dentry);
29441da177e4SLinus Torvalds 	}
29450eeca283SRobert Love 
29461da177e4SLinus Torvalds 	return error;
29471da177e4SLinus Torvalds }
29481da177e4SLinus Torvalds 
29491da177e4SLinus Torvalds /*
29501da177e4SLinus Torvalds  * Make sure that the actual truncation of the file will occur outside its
29511b1dcc1bSJes Sorensen  * directory's i_mutex.  Truncate can take a long time if there is a lot of
29521da177e4SLinus Torvalds  * writeout happening, and we don't want to prevent access to the directory
29531da177e4SLinus Torvalds  * while waiting on the I/O.
29541da177e4SLinus Torvalds  */
29555590ff0dSUlrich Drepper static long do_unlinkat(int dfd, const char __user *pathname)
29561da177e4SLinus Torvalds {
29572ad94ae6SAl Viro 	int error;
29581da177e4SLinus Torvalds 	char *name;
29591da177e4SLinus Torvalds 	struct dentry *dentry;
29601da177e4SLinus Torvalds 	struct nameidata nd;
29611da177e4SLinus Torvalds 	struct inode *inode = NULL;
29621da177e4SLinus Torvalds 
29632ad94ae6SAl Viro 	error = user_path_parent(dfd, pathname, &nd, &name);
29641da177e4SLinus Torvalds 	if (error)
29652ad94ae6SAl Viro 		return error;
29662ad94ae6SAl Viro 
29671da177e4SLinus Torvalds 	error = -EISDIR;
29681da177e4SLinus Torvalds 	if (nd.last_type != LAST_NORM)
29691da177e4SLinus Torvalds 		goto exit1;
29700612d9fbSOGAWA Hirofumi 
29710612d9fbSOGAWA Hirofumi 	nd.flags &= ~LOOKUP_PARENT;
29720612d9fbSOGAWA Hirofumi 
29734ac91378SJan Blunck 	mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
297449705b77SChristoph Hellwig 	dentry = lookup_hash(&nd);
29751da177e4SLinus Torvalds 	error = PTR_ERR(dentry);
29761da177e4SLinus Torvalds 	if (!IS_ERR(dentry)) {
29771da177e4SLinus Torvalds 		/* Why not before? Because we want correct error value */
29781da177e4SLinus Torvalds 		if (nd.last.name[nd.last.len])
29791da177e4SLinus Torvalds 			goto slashes;
29801da177e4SLinus Torvalds 		inode = dentry->d_inode;
29811da177e4SLinus Torvalds 		if (inode)
29827de9c6eeSAl Viro 			ihold(inode);
29830622753bSDave Hansen 		error = mnt_want_write(nd.path.mnt);
29840622753bSDave Hansen 		if (error)
29850622753bSDave Hansen 			goto exit2;
2986be6d3e56SKentaro Takeda 		error = security_path_unlink(&nd.path, dentry);
2987be6d3e56SKentaro Takeda 		if (error)
2988be6d3e56SKentaro Takeda 			goto exit3;
29894ac91378SJan Blunck 		error = vfs_unlink(nd.path.dentry->d_inode, dentry);
2990be6d3e56SKentaro Takeda exit3:
29910622753bSDave Hansen 		mnt_drop_write(nd.path.mnt);
29921da177e4SLinus Torvalds 	exit2:
29931da177e4SLinus Torvalds 		dput(dentry);
29941da177e4SLinus Torvalds 	}
29954ac91378SJan Blunck 	mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
29961da177e4SLinus Torvalds 	if (inode)
29971da177e4SLinus Torvalds 		iput(inode);	/* truncate the inode here */
29981da177e4SLinus Torvalds exit1:
29991d957f9bSJan Blunck 	path_put(&nd.path);
30001da177e4SLinus Torvalds 	putname(name);
30011da177e4SLinus Torvalds 	return error;
30021da177e4SLinus Torvalds 
30031da177e4SLinus Torvalds slashes:
30041da177e4SLinus Torvalds 	error = !dentry->d_inode ? -ENOENT :
30051da177e4SLinus Torvalds 		S_ISDIR(dentry->d_inode->i_mode) ? -EISDIR : -ENOTDIR;
30061da177e4SLinus Torvalds 	goto exit2;
30071da177e4SLinus Torvalds }
30081da177e4SLinus Torvalds 
30092e4d0924SHeiko Carstens SYSCALL_DEFINE3(unlinkat, int, dfd, const char __user *, pathname, int, flag)
30105590ff0dSUlrich Drepper {
30115590ff0dSUlrich Drepper 	if ((flag & ~AT_REMOVEDIR) != 0)
30125590ff0dSUlrich Drepper 		return -EINVAL;
30135590ff0dSUlrich Drepper 
30145590ff0dSUlrich Drepper 	if (flag & AT_REMOVEDIR)
30155590ff0dSUlrich Drepper 		return do_rmdir(dfd, pathname);
30165590ff0dSUlrich Drepper 
30175590ff0dSUlrich Drepper 	return do_unlinkat(dfd, pathname);
30185590ff0dSUlrich Drepper }
30195590ff0dSUlrich Drepper 
30203480b257SHeiko Carstens SYSCALL_DEFINE1(unlink, const char __user *, pathname)
30215590ff0dSUlrich Drepper {
30225590ff0dSUlrich Drepper 	return do_unlinkat(AT_FDCWD, pathname);
30235590ff0dSUlrich Drepper }
30245590ff0dSUlrich Drepper 
3025db2e747bSMiklos Szeredi int vfs_symlink(struct inode *dir, struct dentry *dentry, const char *oldname)
30261da177e4SLinus Torvalds {
3027a95164d9SMiklos Szeredi 	int error = may_create(dir, dentry);
30281da177e4SLinus Torvalds 
30291da177e4SLinus Torvalds 	if (error)
30301da177e4SLinus Torvalds 		return error;
30311da177e4SLinus Torvalds 
3032acfa4380SAl Viro 	if (!dir->i_op->symlink)
30331da177e4SLinus Torvalds 		return -EPERM;
30341da177e4SLinus Torvalds 
30351da177e4SLinus Torvalds 	error = security_inode_symlink(dir, dentry, oldname);
30361da177e4SLinus Torvalds 	if (error)
30371da177e4SLinus Torvalds 		return error;
30381da177e4SLinus Torvalds 
30391da177e4SLinus Torvalds 	error = dir->i_op->symlink(dir, dentry, oldname);
3040a74574aaSStephen Smalley 	if (!error)
3041f38aa942SAmy Griffis 		fsnotify_create(dir, dentry);
30421da177e4SLinus Torvalds 	return error;
30431da177e4SLinus Torvalds }
30441da177e4SLinus Torvalds 
30452e4d0924SHeiko Carstens SYSCALL_DEFINE3(symlinkat, const char __user *, oldname,
30462e4d0924SHeiko Carstens 		int, newdfd, const char __user *, newname)
30471da177e4SLinus Torvalds {
30482ad94ae6SAl Viro 	int error;
30491da177e4SLinus Torvalds 	char *from;
30501da177e4SLinus Torvalds 	char *to;
30516902d925SDave Hansen 	struct dentry *dentry;
30526902d925SDave Hansen 	struct nameidata nd;
30531da177e4SLinus Torvalds 
30541da177e4SLinus Torvalds 	from = getname(oldname);
30551da177e4SLinus Torvalds 	if (IS_ERR(from))
30561da177e4SLinus Torvalds 		return PTR_ERR(from);
30572ad94ae6SAl Viro 
30582ad94ae6SAl Viro 	error = user_path_parent(newdfd, newname, &nd, &to);
30592ad94ae6SAl Viro 	if (error)
30606902d925SDave Hansen 		goto out_putname;
30611da177e4SLinus Torvalds 
30621da177e4SLinus Torvalds 	dentry = lookup_create(&nd, 0);
30631da177e4SLinus Torvalds 	error = PTR_ERR(dentry);
30646902d925SDave Hansen 	if (IS_ERR(dentry))
30656902d925SDave Hansen 		goto out_unlock;
30666902d925SDave Hansen 
306775c3f29dSDave Hansen 	error = mnt_want_write(nd.path.mnt);
306875c3f29dSDave Hansen 	if (error)
306975c3f29dSDave Hansen 		goto out_dput;
3070be6d3e56SKentaro Takeda 	error = security_path_symlink(&nd.path, dentry, from);
3071be6d3e56SKentaro Takeda 	if (error)
3072be6d3e56SKentaro Takeda 		goto out_drop_write;
3073db2e747bSMiklos Szeredi 	error = vfs_symlink(nd.path.dentry->d_inode, dentry, from);
3074be6d3e56SKentaro Takeda out_drop_write:
307575c3f29dSDave Hansen 	mnt_drop_write(nd.path.mnt);
307675c3f29dSDave Hansen out_dput:
30771da177e4SLinus Torvalds 	dput(dentry);
30786902d925SDave Hansen out_unlock:
30794ac91378SJan Blunck 	mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
30801d957f9bSJan Blunck 	path_put(&nd.path);
30811da177e4SLinus Torvalds 	putname(to);
30826902d925SDave Hansen out_putname:
30831da177e4SLinus Torvalds 	putname(from);
30841da177e4SLinus Torvalds 	return error;
30851da177e4SLinus Torvalds }
30861da177e4SLinus Torvalds 
30873480b257SHeiko Carstens SYSCALL_DEFINE2(symlink, const char __user *, oldname, const char __user *, newname)
30885590ff0dSUlrich Drepper {
30895590ff0dSUlrich Drepper 	return sys_symlinkat(oldname, AT_FDCWD, newname);
30905590ff0dSUlrich Drepper }
30915590ff0dSUlrich Drepper 
30921da177e4SLinus Torvalds int vfs_link(struct dentry *old_dentry, struct inode *dir, struct dentry *new_dentry)
30931da177e4SLinus Torvalds {
30941da177e4SLinus Torvalds 	struct inode *inode = old_dentry->d_inode;
30951da177e4SLinus Torvalds 	int error;
30961da177e4SLinus Torvalds 
30971da177e4SLinus Torvalds 	if (!inode)
30981da177e4SLinus Torvalds 		return -ENOENT;
30991da177e4SLinus Torvalds 
3100a95164d9SMiklos Szeredi 	error = may_create(dir, new_dentry);
31011da177e4SLinus Torvalds 	if (error)
31021da177e4SLinus Torvalds 		return error;
31031da177e4SLinus Torvalds 
31041da177e4SLinus Torvalds 	if (dir->i_sb != inode->i_sb)
31051da177e4SLinus Torvalds 		return -EXDEV;
31061da177e4SLinus Torvalds 
31071da177e4SLinus Torvalds 	/*
31081da177e4SLinus Torvalds 	 * A link to an append-only or immutable file cannot be created.
31091da177e4SLinus Torvalds 	 */
31101da177e4SLinus Torvalds 	if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
31111da177e4SLinus Torvalds 		return -EPERM;
3112acfa4380SAl Viro 	if (!dir->i_op->link)
31131da177e4SLinus Torvalds 		return -EPERM;
31147e79eedbSTetsuo Handa 	if (S_ISDIR(inode->i_mode))
31151da177e4SLinus Torvalds 		return -EPERM;
31161da177e4SLinus Torvalds 
31171da177e4SLinus Torvalds 	error = security_inode_link(old_dentry, dir, new_dentry);
31181da177e4SLinus Torvalds 	if (error)
31191da177e4SLinus Torvalds 		return error;
31201da177e4SLinus Torvalds 
31217e79eedbSTetsuo Handa 	mutex_lock(&inode->i_mutex);
31221da177e4SLinus Torvalds 	error = dir->i_op->link(old_dentry, dir, new_dentry);
31237e79eedbSTetsuo Handa 	mutex_unlock(&inode->i_mutex);
3124e31e14ecSStephen Smalley 	if (!error)
31257e79eedbSTetsuo Handa 		fsnotify_link(dir, inode, new_dentry);
31261da177e4SLinus Torvalds 	return error;
31271da177e4SLinus Torvalds }
31281da177e4SLinus Torvalds 
31291da177e4SLinus Torvalds /*
31301da177e4SLinus Torvalds  * Hardlinks are often used in delicate situations.  We avoid
31311da177e4SLinus Torvalds  * security-related surprises by not following symlinks on the
31321da177e4SLinus Torvalds  * newname.  --KAB
31331da177e4SLinus Torvalds  *
31341da177e4SLinus Torvalds  * We don't follow them on the oldname either to be compatible
31351da177e4SLinus Torvalds  * with linux 2.0, and to avoid hard-linking to directories
31361da177e4SLinus Torvalds  * and other special files.  --ADM
31371da177e4SLinus Torvalds  */
31382e4d0924SHeiko Carstens SYSCALL_DEFINE5(linkat, int, olddfd, const char __user *, oldname,
31392e4d0924SHeiko Carstens 		int, newdfd, const char __user *, newname, int, flags)
31401da177e4SLinus Torvalds {
31411da177e4SLinus Torvalds 	struct dentry *new_dentry;
31422d8f3038SAl Viro 	struct nameidata nd;
31432d8f3038SAl Viro 	struct path old_path;
31441da177e4SLinus Torvalds 	int error;
31451da177e4SLinus Torvalds 	char *to;
31461da177e4SLinus Torvalds 
314745c9b11aSUlrich Drepper 	if ((flags & ~AT_SYMLINK_FOLLOW) != 0)
3148c04030e1SUlrich Drepper 		return -EINVAL;
3149c04030e1SUlrich Drepper 
31502d8f3038SAl Viro 	error = user_path_at(olddfd, oldname,
315145c9b11aSUlrich Drepper 			     flags & AT_SYMLINK_FOLLOW ? LOOKUP_FOLLOW : 0,
31522d8f3038SAl Viro 			     &old_path);
31531da177e4SLinus Torvalds 	if (error)
31542ad94ae6SAl Viro 		return error;
31552ad94ae6SAl Viro 
31562ad94ae6SAl Viro 	error = user_path_parent(newdfd, newname, &nd, &to);
31571da177e4SLinus Torvalds 	if (error)
31581da177e4SLinus Torvalds 		goto out;
31591da177e4SLinus Torvalds 	error = -EXDEV;
31602d8f3038SAl Viro 	if (old_path.mnt != nd.path.mnt)
31611da177e4SLinus Torvalds 		goto out_release;
31621da177e4SLinus Torvalds 	new_dentry = lookup_create(&nd, 0);
31631da177e4SLinus Torvalds 	error = PTR_ERR(new_dentry);
31646902d925SDave Hansen 	if (IS_ERR(new_dentry))
31656902d925SDave Hansen 		goto out_unlock;
316675c3f29dSDave Hansen 	error = mnt_want_write(nd.path.mnt);
316775c3f29dSDave Hansen 	if (error)
316875c3f29dSDave Hansen 		goto out_dput;
3169be6d3e56SKentaro Takeda 	error = security_path_link(old_path.dentry, &nd.path, new_dentry);
3170be6d3e56SKentaro Takeda 	if (error)
3171be6d3e56SKentaro Takeda 		goto out_drop_write;
31722d8f3038SAl Viro 	error = vfs_link(old_path.dentry, nd.path.dentry->d_inode, new_dentry);
3173be6d3e56SKentaro Takeda out_drop_write:
317475c3f29dSDave Hansen 	mnt_drop_write(nd.path.mnt);
317575c3f29dSDave Hansen out_dput:
31761da177e4SLinus Torvalds 	dput(new_dentry);
31776902d925SDave Hansen out_unlock:
31784ac91378SJan Blunck 	mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
31791da177e4SLinus Torvalds out_release:
31801d957f9bSJan Blunck 	path_put(&nd.path);
31812ad94ae6SAl Viro 	putname(to);
31821da177e4SLinus Torvalds out:
31832d8f3038SAl Viro 	path_put(&old_path);
31841da177e4SLinus Torvalds 
31851da177e4SLinus Torvalds 	return error;
31861da177e4SLinus Torvalds }
31871da177e4SLinus Torvalds 
31883480b257SHeiko Carstens SYSCALL_DEFINE2(link, const char __user *, oldname, const char __user *, newname)
31895590ff0dSUlrich Drepper {
3190c04030e1SUlrich Drepper 	return sys_linkat(AT_FDCWD, oldname, AT_FDCWD, newname, 0);
31915590ff0dSUlrich Drepper }
31925590ff0dSUlrich Drepper 
31931da177e4SLinus Torvalds /*
31941da177e4SLinus Torvalds  * The worst of all namespace operations - renaming directory. "Perverted"
31951da177e4SLinus Torvalds  * doesn't even start to describe it. Somebody in UCB had a heck of a trip...
31961da177e4SLinus Torvalds  * Problems:
31971da177e4SLinus Torvalds  *	a) we can get into loop creation. Check is done in is_subdir().
31981da177e4SLinus Torvalds  *	b) race potential - two innocent renames can create a loop together.
31991da177e4SLinus Torvalds  *	   That's where 4.4 screws up. Current fix: serialization on
3200a11f3a05SArjan van de Ven  *	   sb->s_vfs_rename_mutex. We might be more accurate, but that's another
32011da177e4SLinus Torvalds  *	   story.
32021da177e4SLinus Torvalds  *	c) we have to lock _three_ objects - parents and victim (if it exists).
32031b1dcc1bSJes Sorensen  *	   And that - after we got ->i_mutex on parents (until then we don't know
32041da177e4SLinus Torvalds  *	   whether the target exists).  Solution: try to be smart with locking
32051da177e4SLinus Torvalds  *	   order for inodes.  We rely on the fact that tree topology may change
3206a11f3a05SArjan van de Ven  *	   only under ->s_vfs_rename_mutex _and_ that parent of the object we
32071da177e4SLinus Torvalds  *	   move will be locked.  Thus we can rank directories by the tree
32081da177e4SLinus Torvalds  *	   (ancestors first) and rank all non-directories after them.
32091da177e4SLinus Torvalds  *	   That works since everybody except rename does "lock parent, lookup,
3210a11f3a05SArjan van de Ven  *	   lock child" and rename is under ->s_vfs_rename_mutex.
32111da177e4SLinus Torvalds  *	   HOWEVER, it relies on the assumption that any object with ->lookup()
32121da177e4SLinus Torvalds  *	   has no more than 1 dentry.  If "hybrid" objects will ever appear,
32131da177e4SLinus Torvalds  *	   we'd better make sure that there's no link(2) for them.
32141da177e4SLinus Torvalds  *	d) some filesystems don't support opened-but-unlinked directories,
32151da177e4SLinus Torvalds  *	   either because of layout or because they are not ready to deal with
32161da177e4SLinus Torvalds  *	   all cases correctly. The latter will be fixed (taking this sort of
32171da177e4SLinus Torvalds  *	   stuff into VFS), but the former is not going away. Solution: the same
32181da177e4SLinus Torvalds  *	   trick as in rmdir().
32191da177e4SLinus Torvalds  *	e) conversion from fhandle to dentry may come in the wrong moment - when
32201b1dcc1bSJes Sorensen  *	   we are removing the target. Solution: we will have to grab ->i_mutex
32211da177e4SLinus Torvalds  *	   in the fhandle_to_dentry code. [FIXME - current nfsfh.c relies on
3222c41b20e7SAdam Buchbinder  *	   ->i_mutex on parents, which works but leads to some truly excessive
32231da177e4SLinus Torvalds  *	   locking].
32241da177e4SLinus Torvalds  */
322575c96f85SAdrian Bunk static int vfs_rename_dir(struct inode *old_dir, struct dentry *old_dentry,
32261da177e4SLinus Torvalds 			  struct inode *new_dir, struct dentry *new_dentry)
32271da177e4SLinus Torvalds {
32281da177e4SLinus Torvalds 	int error = 0;
32291da177e4SLinus Torvalds 	struct inode *target;
32301da177e4SLinus Torvalds 
32311da177e4SLinus Torvalds 	/*
32321da177e4SLinus Torvalds 	 * If we are going to change the parent - check write permissions,
32331da177e4SLinus Torvalds 	 * we'll need to flip '..'.
32341da177e4SLinus Torvalds 	 */
32351da177e4SLinus Torvalds 	if (new_dir != old_dir) {
3236f419a2e3SAl Viro 		error = inode_permission(old_dentry->d_inode, MAY_WRITE);
32371da177e4SLinus Torvalds 		if (error)
32381da177e4SLinus Torvalds 			return error;
32391da177e4SLinus Torvalds 	}
32401da177e4SLinus Torvalds 
32411da177e4SLinus Torvalds 	error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry);
32421da177e4SLinus Torvalds 	if (error)
32431da177e4SLinus Torvalds 		return error;
32441da177e4SLinus Torvalds 
32451da177e4SLinus Torvalds 	target = new_dentry->d_inode;
3246d83c49f3SAl Viro 	if (target)
32471b1dcc1bSJes Sorensen 		mutex_lock(&target->i_mutex);
32481da177e4SLinus Torvalds 	if (d_mountpoint(old_dentry)||d_mountpoint(new_dentry))
32491da177e4SLinus Torvalds 		error = -EBUSY;
3250d83c49f3SAl Viro 	else {
3251d83c49f3SAl Viro 		if (target)
3252d83c49f3SAl Viro 			dentry_unhash(new_dentry);
32531da177e4SLinus Torvalds 		error = old_dir->i_op->rename(old_dir, old_dentry, new_dir, new_dentry);
3254d83c49f3SAl Viro 	}
32551da177e4SLinus Torvalds 	if (target) {
3256d83c49f3SAl Viro 		if (!error) {
32571da177e4SLinus Torvalds 			target->i_flags |= S_DEAD;
3258d83c49f3SAl Viro 			dont_mount(new_dentry);
3259d83c49f3SAl Viro 		}
32601b1dcc1bSJes Sorensen 		mutex_unlock(&target->i_mutex);
32611da177e4SLinus Torvalds 		if (d_unhashed(new_dentry))
32621da177e4SLinus Torvalds 			d_rehash(new_dentry);
32631da177e4SLinus Torvalds 		dput(new_dentry);
32641da177e4SLinus Torvalds 	}
3265e31e14ecSStephen Smalley 	if (!error)
3266349457ccSMark Fasheh 		if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE))
32671da177e4SLinus Torvalds 			d_move(old_dentry,new_dentry);
32681da177e4SLinus Torvalds 	return error;
32691da177e4SLinus Torvalds }
32701da177e4SLinus Torvalds 
327175c96f85SAdrian Bunk static int vfs_rename_other(struct inode *old_dir, struct dentry *old_dentry,
32721da177e4SLinus Torvalds 			    struct inode *new_dir, struct dentry *new_dentry)
32731da177e4SLinus Torvalds {
32741da177e4SLinus Torvalds 	struct inode *target;
32751da177e4SLinus Torvalds 	int error;
32761da177e4SLinus Torvalds 
32771da177e4SLinus Torvalds 	error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry);
32781da177e4SLinus Torvalds 	if (error)
32791da177e4SLinus Torvalds 		return error;
32801da177e4SLinus Torvalds 
32811da177e4SLinus Torvalds 	dget(new_dentry);
32821da177e4SLinus Torvalds 	target = new_dentry->d_inode;
32831da177e4SLinus Torvalds 	if (target)
32841b1dcc1bSJes Sorensen 		mutex_lock(&target->i_mutex);
32851da177e4SLinus Torvalds 	if (d_mountpoint(old_dentry)||d_mountpoint(new_dentry))
32861da177e4SLinus Torvalds 		error = -EBUSY;
32871da177e4SLinus Torvalds 	else
32881da177e4SLinus Torvalds 		error = old_dir->i_op->rename(old_dir, old_dentry, new_dir, new_dentry);
32891da177e4SLinus Torvalds 	if (!error) {
3290bec1052eSAl Viro 		if (target)
3291d83c49f3SAl Viro 			dont_mount(new_dentry);
3292349457ccSMark Fasheh 		if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE))
32931da177e4SLinus Torvalds 			d_move(old_dentry, new_dentry);
32941da177e4SLinus Torvalds 	}
32951da177e4SLinus Torvalds 	if (target)
32961b1dcc1bSJes Sorensen 		mutex_unlock(&target->i_mutex);
32971da177e4SLinus Torvalds 	dput(new_dentry);
32981da177e4SLinus Torvalds 	return error;
32991da177e4SLinus Torvalds }
33001da177e4SLinus Torvalds 
33011da177e4SLinus Torvalds int vfs_rename(struct inode *old_dir, struct dentry *old_dentry,
33021da177e4SLinus Torvalds 	       struct inode *new_dir, struct dentry *new_dentry)
33031da177e4SLinus Torvalds {
33041da177e4SLinus Torvalds 	int error;
33051da177e4SLinus Torvalds 	int is_dir = S_ISDIR(old_dentry->d_inode->i_mode);
330659b0df21SEric Paris 	const unsigned char *old_name;
33071da177e4SLinus Torvalds 
33081da177e4SLinus Torvalds 	if (old_dentry->d_inode == new_dentry->d_inode)
33091da177e4SLinus Torvalds  		return 0;
33101da177e4SLinus Torvalds 
33111da177e4SLinus Torvalds 	error = may_delete(old_dir, old_dentry, is_dir);
33121da177e4SLinus Torvalds 	if (error)
33131da177e4SLinus Torvalds 		return error;
33141da177e4SLinus Torvalds 
33151da177e4SLinus Torvalds 	if (!new_dentry->d_inode)
3316a95164d9SMiklos Szeredi 		error = may_create(new_dir, new_dentry);
33171da177e4SLinus Torvalds 	else
33181da177e4SLinus Torvalds 		error = may_delete(new_dir, new_dentry, is_dir);
33191da177e4SLinus Torvalds 	if (error)
33201da177e4SLinus Torvalds 		return error;
33211da177e4SLinus Torvalds 
3322acfa4380SAl Viro 	if (!old_dir->i_op->rename)
33231da177e4SLinus Torvalds 		return -EPERM;
33241da177e4SLinus Torvalds 
33250eeca283SRobert Love 	old_name = fsnotify_oldname_init(old_dentry->d_name.name);
33260eeca283SRobert Love 
33271da177e4SLinus Torvalds 	if (is_dir)
33281da177e4SLinus Torvalds 		error = vfs_rename_dir(old_dir,old_dentry,new_dir,new_dentry);
33291da177e4SLinus Torvalds 	else
33301da177e4SLinus Torvalds 		error = vfs_rename_other(old_dir,old_dentry,new_dir,new_dentry);
3331123df294SAl Viro 	if (!error)
3332123df294SAl Viro 		fsnotify_move(old_dir, new_dir, old_name, is_dir,
33335a190ae6SAl Viro 			      new_dentry->d_inode, old_dentry);
33340eeca283SRobert Love 	fsnotify_oldname_free(old_name);
33350eeca283SRobert Love 
33361da177e4SLinus Torvalds 	return error;
33371da177e4SLinus Torvalds }
33381da177e4SLinus Torvalds 
33392e4d0924SHeiko Carstens SYSCALL_DEFINE4(renameat, int, olddfd, const char __user *, oldname,
33402e4d0924SHeiko Carstens 		int, newdfd, const char __user *, newname)
33411da177e4SLinus Torvalds {
33421da177e4SLinus Torvalds 	struct dentry *old_dir, *new_dir;
33431da177e4SLinus Torvalds 	struct dentry *old_dentry, *new_dentry;
33441da177e4SLinus Torvalds 	struct dentry *trap;
33451da177e4SLinus Torvalds 	struct nameidata oldnd, newnd;
33462ad94ae6SAl Viro 	char *from;
33472ad94ae6SAl Viro 	char *to;
33482ad94ae6SAl Viro 	int error;
33491da177e4SLinus Torvalds 
33502ad94ae6SAl Viro 	error = user_path_parent(olddfd, oldname, &oldnd, &from);
33511da177e4SLinus Torvalds 	if (error)
33521da177e4SLinus Torvalds 		goto exit;
33531da177e4SLinus Torvalds 
33542ad94ae6SAl Viro 	error = user_path_parent(newdfd, newname, &newnd, &to);
33551da177e4SLinus Torvalds 	if (error)
33561da177e4SLinus Torvalds 		goto exit1;
33571da177e4SLinus Torvalds 
33581da177e4SLinus Torvalds 	error = -EXDEV;
33594ac91378SJan Blunck 	if (oldnd.path.mnt != newnd.path.mnt)
33601da177e4SLinus Torvalds 		goto exit2;
33611da177e4SLinus Torvalds 
33624ac91378SJan Blunck 	old_dir = oldnd.path.dentry;
33631da177e4SLinus Torvalds 	error = -EBUSY;
33641da177e4SLinus Torvalds 	if (oldnd.last_type != LAST_NORM)
33651da177e4SLinus Torvalds 		goto exit2;
33661da177e4SLinus Torvalds 
33674ac91378SJan Blunck 	new_dir = newnd.path.dentry;
33681da177e4SLinus Torvalds 	if (newnd.last_type != LAST_NORM)
33691da177e4SLinus Torvalds 		goto exit2;
33701da177e4SLinus Torvalds 
33710612d9fbSOGAWA Hirofumi 	oldnd.flags &= ~LOOKUP_PARENT;
33720612d9fbSOGAWA Hirofumi 	newnd.flags &= ~LOOKUP_PARENT;
33734e9ed2f8SOGAWA Hirofumi 	newnd.flags |= LOOKUP_RENAME_TARGET;
33740612d9fbSOGAWA Hirofumi 
33751da177e4SLinus Torvalds 	trap = lock_rename(new_dir, old_dir);
33761da177e4SLinus Torvalds 
337749705b77SChristoph Hellwig 	old_dentry = lookup_hash(&oldnd);
33781da177e4SLinus Torvalds 	error = PTR_ERR(old_dentry);
33791da177e4SLinus Torvalds 	if (IS_ERR(old_dentry))
33801da177e4SLinus Torvalds 		goto exit3;
33811da177e4SLinus Torvalds 	/* source must exist */
33821da177e4SLinus Torvalds 	error = -ENOENT;
33831da177e4SLinus Torvalds 	if (!old_dentry->d_inode)
33841da177e4SLinus Torvalds 		goto exit4;
33851da177e4SLinus Torvalds 	/* unless the source is a directory trailing slashes give -ENOTDIR */
33861da177e4SLinus Torvalds 	if (!S_ISDIR(old_dentry->d_inode->i_mode)) {
33871da177e4SLinus Torvalds 		error = -ENOTDIR;
33881da177e4SLinus Torvalds 		if (oldnd.last.name[oldnd.last.len])
33891da177e4SLinus Torvalds 			goto exit4;
33901da177e4SLinus Torvalds 		if (newnd.last.name[newnd.last.len])
33911da177e4SLinus Torvalds 			goto exit4;
33921da177e4SLinus Torvalds 	}
33931da177e4SLinus Torvalds 	/* source should not be ancestor of target */
33941da177e4SLinus Torvalds 	error = -EINVAL;
33951da177e4SLinus Torvalds 	if (old_dentry == trap)
33961da177e4SLinus Torvalds 		goto exit4;
339749705b77SChristoph Hellwig 	new_dentry = lookup_hash(&newnd);
33981da177e4SLinus Torvalds 	error = PTR_ERR(new_dentry);
33991da177e4SLinus Torvalds 	if (IS_ERR(new_dentry))
34001da177e4SLinus Torvalds 		goto exit4;
34011da177e4SLinus Torvalds 	/* target should not be an ancestor of source */
34021da177e4SLinus Torvalds 	error = -ENOTEMPTY;
34031da177e4SLinus Torvalds 	if (new_dentry == trap)
34041da177e4SLinus Torvalds 		goto exit5;
34051da177e4SLinus Torvalds 
34069079b1ebSDave Hansen 	error = mnt_want_write(oldnd.path.mnt);
34079079b1ebSDave Hansen 	if (error)
34089079b1ebSDave Hansen 		goto exit5;
3409be6d3e56SKentaro Takeda 	error = security_path_rename(&oldnd.path, old_dentry,
3410be6d3e56SKentaro Takeda 				     &newnd.path, new_dentry);
3411be6d3e56SKentaro Takeda 	if (error)
3412be6d3e56SKentaro Takeda 		goto exit6;
34131da177e4SLinus Torvalds 	error = vfs_rename(old_dir->d_inode, old_dentry,
34141da177e4SLinus Torvalds 				   new_dir->d_inode, new_dentry);
3415be6d3e56SKentaro Takeda exit6:
34169079b1ebSDave Hansen 	mnt_drop_write(oldnd.path.mnt);
34171da177e4SLinus Torvalds exit5:
34181da177e4SLinus Torvalds 	dput(new_dentry);
34191da177e4SLinus Torvalds exit4:
34201da177e4SLinus Torvalds 	dput(old_dentry);
34211da177e4SLinus Torvalds exit3:
34221da177e4SLinus Torvalds 	unlock_rename(new_dir, old_dir);
34231da177e4SLinus Torvalds exit2:
34241d957f9bSJan Blunck 	path_put(&newnd.path);
34252ad94ae6SAl Viro 	putname(to);
34261da177e4SLinus Torvalds exit1:
34271d957f9bSJan Blunck 	path_put(&oldnd.path);
34281da177e4SLinus Torvalds 	putname(from);
34292ad94ae6SAl Viro exit:
34301da177e4SLinus Torvalds 	return error;
34311da177e4SLinus Torvalds }
34321da177e4SLinus Torvalds 
3433a26eab24SHeiko Carstens SYSCALL_DEFINE2(rename, const char __user *, oldname, const char __user *, newname)
34345590ff0dSUlrich Drepper {
34355590ff0dSUlrich Drepper 	return sys_renameat(AT_FDCWD, oldname, AT_FDCWD, newname);
34365590ff0dSUlrich Drepper }
34375590ff0dSUlrich Drepper 
34381da177e4SLinus Torvalds int vfs_readlink(struct dentry *dentry, char __user *buffer, int buflen, const char *link)
34391da177e4SLinus Torvalds {
34401da177e4SLinus Torvalds 	int len;
34411da177e4SLinus Torvalds 
34421da177e4SLinus Torvalds 	len = PTR_ERR(link);
34431da177e4SLinus Torvalds 	if (IS_ERR(link))
34441da177e4SLinus Torvalds 		goto out;
34451da177e4SLinus Torvalds 
34461da177e4SLinus Torvalds 	len = strlen(link);
34471da177e4SLinus Torvalds 	if (len > (unsigned) buflen)
34481da177e4SLinus Torvalds 		len = buflen;
34491da177e4SLinus Torvalds 	if (copy_to_user(buffer, link, len))
34501da177e4SLinus Torvalds 		len = -EFAULT;
34511da177e4SLinus Torvalds out:
34521da177e4SLinus Torvalds 	return len;
34531da177e4SLinus Torvalds }
34541da177e4SLinus Torvalds 
34551da177e4SLinus Torvalds /*
34561da177e4SLinus Torvalds  * A helper for ->readlink().  This should be used *ONLY* for symlinks that
34571da177e4SLinus Torvalds  * have ->follow_link() touching nd only in nd_set_link().  Using (or not
34581da177e4SLinus Torvalds  * using) it for any given inode is up to filesystem.
34591da177e4SLinus Torvalds  */
34601da177e4SLinus Torvalds int generic_readlink(struct dentry *dentry, char __user *buffer, int buflen)
34611da177e4SLinus Torvalds {
34621da177e4SLinus Torvalds 	struct nameidata nd;
3463cc314eefSLinus Torvalds 	void *cookie;
3464694a1764SMarcin Slusarz 	int res;
3465cc314eefSLinus Torvalds 
34661da177e4SLinus Torvalds 	nd.depth = 0;
3467cc314eefSLinus Torvalds 	cookie = dentry->d_inode->i_op->follow_link(dentry, &nd);
3468694a1764SMarcin Slusarz 	if (IS_ERR(cookie))
3469694a1764SMarcin Slusarz 		return PTR_ERR(cookie);
3470694a1764SMarcin Slusarz 
3471694a1764SMarcin Slusarz 	res = vfs_readlink(dentry, buffer, buflen, nd_get_link(&nd));
34721da177e4SLinus Torvalds 	if (dentry->d_inode->i_op->put_link)
3473cc314eefSLinus Torvalds 		dentry->d_inode->i_op->put_link(dentry, &nd, cookie);
3474694a1764SMarcin Slusarz 	return res;
34751da177e4SLinus Torvalds }
34761da177e4SLinus Torvalds 
34771da177e4SLinus Torvalds int vfs_follow_link(struct nameidata *nd, const char *link)
34781da177e4SLinus Torvalds {
34791da177e4SLinus Torvalds 	return __vfs_follow_link(nd, link);
34801da177e4SLinus Torvalds }
34811da177e4SLinus Torvalds 
34821da177e4SLinus Torvalds /* get the link contents into pagecache */
34831da177e4SLinus Torvalds static char *page_getlink(struct dentry * dentry, struct page **ppage)
34841da177e4SLinus Torvalds {
3485ebd09abbSDuane Griffin 	char *kaddr;
34861da177e4SLinus Torvalds 	struct page *page;
34871da177e4SLinus Torvalds 	struct address_space *mapping = dentry->d_inode->i_mapping;
3488090d2b18SPekka Enberg 	page = read_mapping_page(mapping, 0, NULL);
34891da177e4SLinus Torvalds 	if (IS_ERR(page))
34906fe6900eSNick Piggin 		return (char*)page;
34911da177e4SLinus Torvalds 	*ppage = page;
3492ebd09abbSDuane Griffin 	kaddr = kmap(page);
3493ebd09abbSDuane Griffin 	nd_terminate_link(kaddr, dentry->d_inode->i_size, PAGE_SIZE - 1);
3494ebd09abbSDuane Griffin 	return kaddr;
34951da177e4SLinus Torvalds }
34961da177e4SLinus Torvalds 
34971da177e4SLinus Torvalds int page_readlink(struct dentry *dentry, char __user *buffer, int buflen)
34981da177e4SLinus Torvalds {
34991da177e4SLinus Torvalds 	struct page *page = NULL;
35001da177e4SLinus Torvalds 	char *s = page_getlink(dentry, &page);
35011da177e4SLinus Torvalds 	int res = vfs_readlink(dentry,buffer,buflen,s);
35021da177e4SLinus Torvalds 	if (page) {
35031da177e4SLinus Torvalds 		kunmap(page);
35041da177e4SLinus Torvalds 		page_cache_release(page);
35051da177e4SLinus Torvalds 	}
35061da177e4SLinus Torvalds 	return res;
35071da177e4SLinus Torvalds }
35081da177e4SLinus Torvalds 
3509cc314eefSLinus Torvalds void *page_follow_link_light(struct dentry *dentry, struct nameidata *nd)
35101da177e4SLinus Torvalds {
3511cc314eefSLinus Torvalds 	struct page *page = NULL;
35121da177e4SLinus Torvalds 	nd_set_link(nd, page_getlink(dentry, &page));
3513cc314eefSLinus Torvalds 	return page;
35141da177e4SLinus Torvalds }
35151da177e4SLinus Torvalds 
3516cc314eefSLinus Torvalds void page_put_link(struct dentry *dentry, struct nameidata *nd, void *cookie)
35171da177e4SLinus Torvalds {
3518cc314eefSLinus Torvalds 	struct page *page = cookie;
3519cc314eefSLinus Torvalds 
3520cc314eefSLinus Torvalds 	if (page) {
35211da177e4SLinus Torvalds 		kunmap(page);
35221da177e4SLinus Torvalds 		page_cache_release(page);
35231da177e4SLinus Torvalds 	}
35241da177e4SLinus Torvalds }
35251da177e4SLinus Torvalds 
352654566b2cSNick Piggin /*
352754566b2cSNick Piggin  * The nofs argument instructs pagecache_write_begin to pass AOP_FLAG_NOFS
352854566b2cSNick Piggin  */
352954566b2cSNick Piggin int __page_symlink(struct inode *inode, const char *symname, int len, int nofs)
35301da177e4SLinus Torvalds {
35311da177e4SLinus Torvalds 	struct address_space *mapping = inode->i_mapping;
35320adb25d2SKirill Korotaev 	struct page *page;
3533afddba49SNick Piggin 	void *fsdata;
3534beb497abSDmitriy Monakhov 	int err;
35351da177e4SLinus Torvalds 	char *kaddr;
353654566b2cSNick Piggin 	unsigned int flags = AOP_FLAG_UNINTERRUPTIBLE;
353754566b2cSNick Piggin 	if (nofs)
353854566b2cSNick Piggin 		flags |= AOP_FLAG_NOFS;
35391da177e4SLinus Torvalds 
35407e53cac4SNeilBrown retry:
3541afddba49SNick Piggin 	err = pagecache_write_begin(NULL, mapping, 0, len-1,
354254566b2cSNick Piggin 				flags, &page, &fsdata);
35431da177e4SLinus Torvalds 	if (err)
3544afddba49SNick Piggin 		goto fail;
3545afddba49SNick Piggin 
35461da177e4SLinus Torvalds 	kaddr = kmap_atomic(page, KM_USER0);
35471da177e4SLinus Torvalds 	memcpy(kaddr, symname, len-1);
35481da177e4SLinus Torvalds 	kunmap_atomic(kaddr, KM_USER0);
3549afddba49SNick Piggin 
3550afddba49SNick Piggin 	err = pagecache_write_end(NULL, mapping, 0, len-1, len-1,
3551afddba49SNick Piggin 							page, fsdata);
35521da177e4SLinus Torvalds 	if (err < 0)
35531da177e4SLinus Torvalds 		goto fail;
3554afddba49SNick Piggin 	if (err < len-1)
3555afddba49SNick Piggin 		goto retry;
3556afddba49SNick Piggin 
35571da177e4SLinus Torvalds 	mark_inode_dirty(inode);
35581da177e4SLinus Torvalds 	return 0;
35591da177e4SLinus Torvalds fail:
35601da177e4SLinus Torvalds 	return err;
35611da177e4SLinus Torvalds }
35621da177e4SLinus Torvalds 
35630adb25d2SKirill Korotaev int page_symlink(struct inode *inode, const char *symname, int len)
35640adb25d2SKirill Korotaev {
35650adb25d2SKirill Korotaev 	return __page_symlink(inode, symname, len,
356654566b2cSNick Piggin 			!(mapping_gfp_mask(inode->i_mapping) & __GFP_FS));
35670adb25d2SKirill Korotaev }
35680adb25d2SKirill Korotaev 
356992e1d5beSArjan van de Ven const struct inode_operations page_symlink_inode_operations = {
35701da177e4SLinus Torvalds 	.readlink	= generic_readlink,
35711da177e4SLinus Torvalds 	.follow_link	= page_follow_link_light,
35721da177e4SLinus Torvalds 	.put_link	= page_put_link,
35731da177e4SLinus Torvalds };
35741da177e4SLinus Torvalds 
35752d8f3038SAl Viro EXPORT_SYMBOL(user_path_at);
3576cc53ce53SDavid Howells EXPORT_SYMBOL(follow_down_one);
35771da177e4SLinus Torvalds EXPORT_SYMBOL(follow_down);
35781da177e4SLinus Torvalds EXPORT_SYMBOL(follow_up);
35791da177e4SLinus Torvalds EXPORT_SYMBOL(get_write_access); /* binfmt_aout */
35801da177e4SLinus Torvalds EXPORT_SYMBOL(getname);
35811da177e4SLinus Torvalds EXPORT_SYMBOL(lock_rename);
35821da177e4SLinus Torvalds EXPORT_SYMBOL(lookup_one_len);
35831da177e4SLinus Torvalds EXPORT_SYMBOL(page_follow_link_light);
35841da177e4SLinus Torvalds EXPORT_SYMBOL(page_put_link);
35851da177e4SLinus Torvalds EXPORT_SYMBOL(page_readlink);
35860adb25d2SKirill Korotaev EXPORT_SYMBOL(__page_symlink);
35871da177e4SLinus Torvalds EXPORT_SYMBOL(page_symlink);
35881da177e4SLinus Torvalds EXPORT_SYMBOL(page_symlink_inode_operations);
35891da177e4SLinus Torvalds EXPORT_SYMBOL(path_lookup);
3590d1811465SAl Viro EXPORT_SYMBOL(kern_path);
359116f18200SJosef 'Jeff' Sipek EXPORT_SYMBOL(vfs_path_lookup);
3592f419a2e3SAl Viro EXPORT_SYMBOL(inode_permission);
35938c744fb8SChristoph Hellwig EXPORT_SYMBOL(file_permission);
35941da177e4SLinus Torvalds EXPORT_SYMBOL(unlock_rename);
35951da177e4SLinus Torvalds EXPORT_SYMBOL(vfs_create);
35961da177e4SLinus Torvalds EXPORT_SYMBOL(vfs_follow_link);
35971da177e4SLinus Torvalds EXPORT_SYMBOL(vfs_link);
35981da177e4SLinus Torvalds EXPORT_SYMBOL(vfs_mkdir);
35991da177e4SLinus Torvalds EXPORT_SYMBOL(vfs_mknod);
36001da177e4SLinus Torvalds EXPORT_SYMBOL(generic_permission);
36011da177e4SLinus Torvalds EXPORT_SYMBOL(vfs_readlink);
36021da177e4SLinus Torvalds EXPORT_SYMBOL(vfs_rename);
36031da177e4SLinus Torvalds EXPORT_SYMBOL(vfs_rmdir);
36041da177e4SLinus Torvalds EXPORT_SYMBOL(vfs_symlink);
36051da177e4SLinus Torvalds EXPORT_SYMBOL(vfs_unlink);
36061da177e4SLinus Torvalds EXPORT_SYMBOL(dentry_unhash);
36071da177e4SLinus Torvalds EXPORT_SYMBOL(generic_readlink);
3608