1 // SPDX-License-Identifier: GPL-2.0
5 * Copyright (C) 1991, 1992 Linus Torvalds
9 * Some corrections by tytso.
12 /* [Feb 1997 T. Schoebel-Theuer] Complete rewrite of the pathname
15 /* [Feb-Apr 2000, AV] Rewrite to the new namespace architecture.
18 #include <linux/init.h>
19 #include <linux/export.h>
20 #include <linux/kernel.h>
21 #include <linux/slab.h>
23 #include <linux/namei.h>
24 #include <linux/pagemap.h>
25 #include <linux/fsnotify.h>
26 #include <linux/personality.h>
27 #include <linux/security.h>
28 #include <linux/ima.h>
29 #include <linux/syscalls.h>
30 #include <linux/mount.h>
31 #include <linux/audit.h>
32 #include <linux/capability.h>
33 #include <linux/file.h>
34 #include <linux/fcntl.h>
35 #include <linux/device_cgroup.h>
36 #include <linux/fs_struct.h>
37 #include <linux/posix_acl.h>
38 #include <linux/hash.h>
39 #include <linux/bitops.h>
40 #include <linux/init_task.h>
41 #include <linux/uaccess.h>
46 /* [Feb-1997 T. Schoebel-Theuer]
47 * Fundamental changes in the pathname lookup mechanisms (namei)
48 * were necessary because of omirr. The reason is that omirr needs
49 * to know the _real_ pathname, not the user-supplied one, in case
50 * of symlinks (and also when transname replacements occur).
52 * The new code replaces the old recursive symlink resolution with
53 * an iterative one (in case of non-nested symlink chains). It does
54 * this with calls to <fs>_follow_link().
55 * As a side effect, dir_namei(), _namei() and follow_link() are now
56 * replaced with a single function lookup_dentry() that can handle all
57 * the special cases of the former code.
59 * With the new dcache, the pathname is stored at each inode, at least as
60 * long as the refcount of the inode is positive. As a side effect, the
61 * size of the dcache depends on the inode cache and thus is dynamic.
63 * [29-Apr-1998 C. Scott Ananian] Updated above description of symlink
64 * resolution to correspond with current state of the code.
66 * Note that the symlink resolution is not *completely* iterative.
67 * There is still a significant amount of tail- and mid- recursion in
68 * the algorithm. Also, note that <fs>_readlink() is not used in
69 * lookup_dentry(): lookup_dentry() on the result of <fs>_readlink()
70 * may return different results than <fs>_follow_link(). Many virtual
71 * filesystems (including /proc) exhibit this behavior.
74 /* [24-Feb-97 T. Schoebel-Theuer] Side effects caused by new implementation:
75 * New symlink semantics: when open() is called with flags O_CREAT | O_EXCL
76 * and the name already exists in form of a symlink, try to create the new
77 * name indicated by the symlink. The old code always complained that the
78 * name already exists, due to not following the symlink even if its target
79 * is nonexistent. The new semantics affects also mknod() and link() when
80 * the name is a symlink pointing to a non-existent name.
82 * I don't know which semantics is the right one, since I have no access
83 * to standards. But I found by trial that HP-UX 9.0 has the full "new"
84 * semantics implemented, while SunOS 4.1.1 and Solaris (SunOS 5.4) have the
85 * "old" one. Personally, I think the new semantics is much more logical.
86 * Note that "ln old new" where "new" is a symlink pointing to a non-existing
87 * file does succeed in both HP-UX and SunOs, but not in Solaris
88 * and in the old Linux semantics.
91 /* [16-Dec-97 Kevin Buhr] For security reasons, we change some symlink
92 * semantics. See the comments in "open_namei" and "do_link" below.
94 * [10-Sep-98 Alan Modra] Another symlink change.
97 /* [Feb-Apr 2000 AV] Complete rewrite. Rules for symlinks:
98 * inside the path - always follow.
99 * in the last component in creation/removal/renaming - never follow.
100 * if LOOKUP_FOLLOW passed - follow.
101 * if the pathname has trailing slashes - follow.
102 * otherwise - don't follow.
103 * (applied in that order).
105 * [Jun 2000 AV] Inconsistent behaviour of open() in case if flags==O_CREAT
106 * restored for 2.4. This is the last surviving part of old 4.2BSD bug.
107 * During the 2.4 we need to fix the userland stuff depending on it -
108 * hopefully we will be able to get rid of that wart in 2.5. So far only
109 * XEmacs seems to be relying on it...
112 * [Sep 2001 AV] Single-semaphore locking scheme (kudos to David Holland)
113 * implemented. Let's see if raised priority of ->s_vfs_rename_mutex gives
114 * any extra contention...
117 /* In order to reduce some races, while at the same time doing additional
118 * checking and hopefully speeding things up, we copy filenames to the
119 * kernel data space before using them..
121 * POSIX.1 2.4: an empty pathname is invalid (ENOENT).
122 * PATH_MAX includes the nul terminator --RR.
125 #define EMBEDDED_NAME_MAX (PATH_MAX - offsetof(struct filename, iname))
128 getname_flags(const char __user *filename, int flags, int *empty)
130 struct filename *result;
134 result = audit_reusename(filename);
138 result = __getname();
139 if (unlikely(!result))
140 return ERR_PTR(-ENOMEM);
143 * First, try to embed the struct filename inside the names_cache
146 kname = (char *)result->iname;
147 result->name = kname;
149 len = strncpy_from_user(kname, filename, EMBEDDED_NAME_MAX);
150 if (unlikely(len < 0)) {
156 * Uh-oh. We have a name that's approaching PATH_MAX. Allocate a
157 * separate struct filename so we can dedicate the entire
158 * names_cache allocation for the pathname, and re-do the copy from
161 if (unlikely(len == EMBEDDED_NAME_MAX)) {
162 const size_t size = offsetof(struct filename, iname[1]);
163 kname = (char *)result;
166 * size is chosen that way we to guarantee that
167 * result->iname[0] is within the same object and that
168 * kname can't be equal to result->iname, no matter what.
170 result = kzalloc(size, GFP_KERNEL);
171 if (unlikely(!result)) {
173 return ERR_PTR(-ENOMEM);
175 result->name = kname;
176 len = strncpy_from_user(kname, filename, PATH_MAX);
177 if (unlikely(len < 0)) {
182 if (unlikely(len == PATH_MAX)) {
185 return ERR_PTR(-ENAMETOOLONG);
190 /* The empty path is special. */
191 if (unlikely(!len)) {
194 if (!(flags & LOOKUP_EMPTY)) {
196 return ERR_PTR(-ENOENT);
200 result->uptr = filename;
201 result->aname = NULL;
202 audit_getname(result);
207 getname(const char __user * filename)
209 return getname_flags(filename, 0, NULL);
213 getname_kernel(const char * filename)
215 struct filename *result;
216 int len = strlen(filename) + 1;
218 result = __getname();
219 if (unlikely(!result))
220 return ERR_PTR(-ENOMEM);
222 if (len <= EMBEDDED_NAME_MAX) {
223 result->name = (char *)result->iname;
224 } else if (len <= PATH_MAX) {
225 const size_t size = offsetof(struct filename, iname[1]);
226 struct filename *tmp;
228 tmp = kmalloc(size, GFP_KERNEL);
229 if (unlikely(!tmp)) {
231 return ERR_PTR(-ENOMEM);
233 tmp->name = (char *)result;
237 return ERR_PTR(-ENAMETOOLONG);
239 memcpy((char *)result->name, filename, len);
241 result->aname = NULL;
243 audit_getname(result);
248 void putname(struct filename *name)
250 BUG_ON(name->refcnt <= 0);
252 if (--name->refcnt > 0)
255 if (name->name != name->iname) {
256 __putname(name->name);
262 static int check_acl(struct inode *inode, int mask)
264 #ifdef CONFIG_FS_POSIX_ACL
265 struct posix_acl *acl;
267 if (mask & MAY_NOT_BLOCK) {
268 acl = get_cached_acl_rcu(inode, ACL_TYPE_ACCESS);
271 /* no ->get_acl() calls in RCU mode... */
272 if (is_uncached_acl(acl))
274 return posix_acl_permission(inode, acl, mask & ~MAY_NOT_BLOCK);
277 acl = get_acl(inode, ACL_TYPE_ACCESS);
281 int error = posix_acl_permission(inode, acl, mask);
282 posix_acl_release(acl);
291 * This does the basic permission checking
293 static int acl_permission_check(struct inode *inode, int mask)
295 unsigned int mode = inode->i_mode;
297 if (likely(uid_eq(current_fsuid(), inode->i_uid)))
300 if (IS_POSIXACL(inode) && (mode & S_IRWXG)) {
301 int error = check_acl(inode, mask);
302 if (error != -EAGAIN)
306 if (in_group_p(inode->i_gid))
311 * If the DACs are ok we don't need any capability check.
313 if ((mask & ~mode & (MAY_READ | MAY_WRITE | MAY_EXEC)) == 0)
319 * generic_permission - check for access rights on a Posix-like filesystem
320 * @inode: inode to check access rights for
321 * @mask: right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC, ...)
323 * Used to check for read/write/execute permissions on a file.
324 * We use "fsuid" for this, letting us set arbitrary permissions
325 * for filesystem access without changing the "normal" uids which
326 * are used for other things.
328 * generic_permission is rcu-walk aware. It returns -ECHILD in case an rcu-walk
329 * request cannot be satisfied (eg. requires blocking or too much complexity).
330 * It would then be called again in ref-walk mode.
332 int generic_permission(struct inode *inode, int mask)
337 * Do the basic permission checks.
339 ret = acl_permission_check(inode, mask);
343 if (S_ISDIR(inode->i_mode)) {
344 /* DACs are overridable for directories */
345 if (!(mask & MAY_WRITE))
346 if (capable_wrt_inode_uidgid(inode,
347 CAP_DAC_READ_SEARCH))
349 if (capable_wrt_inode_uidgid(inode, CAP_DAC_OVERRIDE))
355 * Searching includes executable on directories, else just read.
357 mask &= MAY_READ | MAY_WRITE | MAY_EXEC;
358 if (mask == MAY_READ)
359 if (capable_wrt_inode_uidgid(inode, CAP_DAC_READ_SEARCH))
362 * Read/write DACs are always overridable.
363 * Executable DACs are overridable when there is
364 * at least one exec bit set.
366 if (!(mask & MAY_EXEC) || (inode->i_mode & S_IXUGO))
367 if (capable_wrt_inode_uidgid(inode, CAP_DAC_OVERRIDE))
372 EXPORT_SYMBOL(generic_permission);
375 * We _really_ want to just do "generic_permission()" without
376 * even looking at the inode->i_op values. So we keep a cache
377 * flag in inode->i_opflags, that says "this has not special
378 * permission function, use the fast case".
380 static inline int do_inode_permission(struct inode *inode, int mask)
382 if (unlikely(!(inode->i_opflags & IOP_FASTPERM))) {
383 if (likely(inode->i_op->permission))
384 return inode->i_op->permission(inode, mask);
386 /* This gets set once for the inode lifetime */
387 spin_lock(&inode->i_lock);
388 inode->i_opflags |= IOP_FASTPERM;
389 spin_unlock(&inode->i_lock);
391 return generic_permission(inode, mask);
395 * sb_permission - Check superblock-level permissions
396 * @sb: Superblock of inode to check permission on
397 * @inode: Inode to check permission on
398 * @mask: Right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
400 * Separate out file-system wide checks from inode-specific permission checks.
402 static int sb_permission(struct super_block *sb, struct inode *inode, int mask)
404 if (unlikely(mask & MAY_WRITE)) {
405 umode_t mode = inode->i_mode;
407 /* Nobody gets write access to a read-only fs. */
408 if (sb_rdonly(sb) && (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode)))
415 * inode_permission - Check for access rights to a given inode
416 * @inode: Inode to check permission on
417 * @mask: Right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
419 * Check for read/write/execute permissions on an inode. We use fs[ug]id for
420 * this, letting us set arbitrary permissions for filesystem access without
421 * changing the "normal" UIDs which are used for other things.
423 * When checking for MAY_APPEND, MAY_WRITE must also be set in @mask.
425 int inode_permission(struct inode *inode, int mask)
429 retval = sb_permission(inode->i_sb, inode, mask);
433 if (unlikely(mask & MAY_WRITE)) {
435 * Nobody gets write access to an immutable file.
437 if (IS_IMMUTABLE(inode))
441 * Updating mtime will likely cause i_uid and i_gid to be
442 * written back improperly if their true value is unknown
445 if (HAS_UNMAPPED_ID(inode))
449 retval = do_inode_permission(inode, mask);
453 retval = devcgroup_inode_permission(inode, mask);
457 return security_inode_permission(inode, mask);
459 EXPORT_SYMBOL(inode_permission);
462 * path_get - get a reference to a path
463 * @path: path to get the reference to
465 * Given a path increment the reference count to the dentry and the vfsmount.
467 void path_get(const struct path *path)
472 EXPORT_SYMBOL(path_get);
475 * path_put - put a reference to a path
476 * @path: path to put the reference to
478 * Given a path decrement the reference count to the dentry and the vfsmount.
480 void path_put(const struct path *path)
485 EXPORT_SYMBOL(path_put);
487 #define EMBEDDED_LEVELS 2
492 struct inode *inode; /* path.dentry.d_inode */
494 unsigned seq, m_seq, r_seq;
497 int total_link_count;
500 struct delayed_call done;
503 } *stack, internal[EMBEDDED_LEVELS];
504 struct filename *name;
505 struct nameidata *saved;
506 struct inode *link_inode;
509 } __randomize_layout;
511 static void set_nameidata(struct nameidata *p, int dfd, struct filename *name)
513 struct nameidata *old = current->nameidata;
514 p->stack = p->internal;
517 p->total_link_count = old ? old->total_link_count : 0;
519 current->nameidata = p;
522 static void restore_nameidata(void)
524 struct nameidata *now = current->nameidata, *old = now->saved;
526 current->nameidata = old;
528 old->total_link_count = now->total_link_count;
529 if (now->stack != now->internal)
533 static int __nd_alloc_stack(struct nameidata *nd)
537 if (nd->flags & LOOKUP_RCU) {
538 p= kmalloc_array(MAXSYMLINKS, sizeof(struct saved),
543 p= kmalloc_array(MAXSYMLINKS, sizeof(struct saved),
548 memcpy(p, nd->internal, sizeof(nd->internal));
554 * path_connected - Verify that a path->dentry is below path->mnt.mnt_root
555 * @path: nameidate to verify
557 * Rename can sometimes move a file or directory outside of a bind
558 * mount, path_connected allows those cases to be detected.
560 static bool path_connected(const struct path *path)
562 struct vfsmount *mnt = path->mnt;
563 struct super_block *sb = mnt->mnt_sb;
565 /* Bind mounts and multi-root filesystems can have disconnected paths */
566 if (!(sb->s_iflags & SB_I_MULTIROOT) && (mnt->mnt_root == sb->s_root))
569 return is_subdir(path->dentry, mnt->mnt_root);
572 static inline int nd_alloc_stack(struct nameidata *nd)
574 if (likely(nd->depth != EMBEDDED_LEVELS))
576 if (likely(nd->stack != nd->internal))
578 return __nd_alloc_stack(nd);
581 static void drop_links(struct nameidata *nd)
585 struct saved *last = nd->stack + i;
586 do_delayed_call(&last->done);
587 clear_delayed_call(&last->done);
591 static void terminate_walk(struct nameidata *nd)
594 if (!(nd->flags & LOOKUP_RCU)) {
597 for (i = 0; i < nd->depth; i++)
598 path_put(&nd->stack[i].link);
599 if (nd->flags & LOOKUP_ROOT_GRABBED) {
601 nd->flags &= ~LOOKUP_ROOT_GRABBED;
604 nd->flags &= ~LOOKUP_RCU;
610 /* path_put is needed afterwards regardless of success or failure */
611 static bool legitimize_path(struct nameidata *nd,
612 struct path *path, unsigned seq)
614 int res = __legitimize_mnt(path->mnt, nd->m_seq);
621 if (unlikely(!lockref_get_not_dead(&path->dentry->d_lockref))) {
625 return !read_seqcount_retry(&path->dentry->d_seq, seq);
628 static bool legitimize_links(struct nameidata *nd)
631 for (i = 0; i < nd->depth; i++) {
632 struct saved *last = nd->stack + i;
633 if (unlikely(!legitimize_path(nd, &last->link, last->seq))) {
642 static bool legitimize_root(struct nameidata *nd)
645 * For scoped-lookups (where nd->root has been zeroed), we need to
646 * restart the whole lookup from scratch -- because set_root() is wrong
647 * for these lookups (nd->dfd is the root, not the filesystem root).
649 if (!nd->root.mnt && (nd->flags & LOOKUP_IS_SCOPED))
651 /* Nothing to do if nd->root is zero or is managed by the VFS user. */
652 if (!nd->root.mnt || (nd->flags & LOOKUP_ROOT))
654 nd->flags |= LOOKUP_ROOT_GRABBED;
655 return legitimize_path(nd, &nd->root, nd->root_seq);
659 * Path walking has 2 modes, rcu-walk and ref-walk (see
660 * Documentation/filesystems/path-lookup.txt). In situations when we can't
661 * continue in RCU mode, we attempt to drop out of rcu-walk mode and grab
662 * normal reference counts on dentries and vfsmounts to transition to ref-walk
663 * mode. Refcounts are grabbed at the last known good point before rcu-walk
664 * got stuck, so ref-walk may continue from there. If this is not successful
665 * (eg. a seqcount has changed), then failure is returned and it's up to caller
666 * to restart the path walk from the beginning in ref-walk mode.
670 * unlazy_walk - try to switch to ref-walk mode.
671 * @nd: nameidata pathwalk data
672 * Returns: 0 on success, -ECHILD on failure
674 * unlazy_walk attempts to legitimize the current nd->path and nd->root
676 * Must be called from rcu-walk context.
677 * Nothing should touch nameidata between unlazy_walk() failure and
680 static int unlazy_walk(struct nameidata *nd)
682 struct dentry *parent = nd->path.dentry;
684 BUG_ON(!(nd->flags & LOOKUP_RCU));
686 nd->flags &= ~LOOKUP_RCU;
687 if (unlikely(!legitimize_links(nd)))
689 if (unlikely(!legitimize_path(nd, &nd->path, nd->seq)))
691 if (unlikely(!legitimize_root(nd)))
694 BUG_ON(nd->inode != parent->d_inode);
699 nd->path.dentry = NULL;
706 * unlazy_child - try to switch to ref-walk mode.
707 * @nd: nameidata pathwalk data
708 * @dentry: child of nd->path.dentry
709 * @seq: seq number to check dentry against
710 * Returns: 0 on success, -ECHILD on failure
712 * unlazy_child attempts to legitimize the current nd->path, nd->root and dentry
713 * for ref-walk mode. @dentry must be a path found by a do_lookup call on
714 * @nd. Must be called from rcu-walk context.
715 * Nothing should touch nameidata between unlazy_child() failure and
718 static int unlazy_child(struct nameidata *nd, struct dentry *dentry, unsigned seq)
720 BUG_ON(!(nd->flags & LOOKUP_RCU));
722 nd->flags &= ~LOOKUP_RCU;
723 if (unlikely(!legitimize_links(nd)))
725 if (unlikely(!legitimize_mnt(nd->path.mnt, nd->m_seq)))
727 if (unlikely(!lockref_get_not_dead(&nd->path.dentry->d_lockref)))
731 * We need to move both the parent and the dentry from the RCU domain
732 * to be properly refcounted. And the sequence number in the dentry
733 * validates *both* dentry counters, since we checked the sequence
734 * number of the parent after we got the child sequence number. So we
735 * know the parent must still be valid if the child sequence number is
737 if (unlikely(!lockref_get_not_dead(&dentry->d_lockref)))
739 if (unlikely(read_seqcount_retry(&dentry->d_seq, seq)))
742 * Sequence counts matched. Now make sure that the root is
743 * still valid and get it if required.
745 if (unlikely(!legitimize_root(nd)))
753 nd->path.dentry = NULL;
763 static inline int d_revalidate(struct dentry *dentry, unsigned int flags)
765 if (unlikely(dentry->d_flags & DCACHE_OP_REVALIDATE))
766 return dentry->d_op->d_revalidate(dentry, flags);
772 * complete_walk - successful completion of path walk
773 * @nd: pointer nameidata
775 * If we had been in RCU mode, drop out of it and legitimize nd->path.
776 * Revalidate the final result, unless we'd already done that during
777 * the path walk or the filesystem doesn't ask for it. Return 0 on
778 * success, -error on failure. In case of failure caller does not
779 * need to drop nd->path.
781 static int complete_walk(struct nameidata *nd)
783 struct dentry *dentry = nd->path.dentry;
786 if (nd->flags & LOOKUP_RCU) {
788 * We don't want to zero nd->root for scoped-lookups or
789 * externally-managed nd->root.
791 if (!(nd->flags & (LOOKUP_ROOT | LOOKUP_IS_SCOPED)))
793 if (unlikely(unlazy_walk(nd)))
797 if (unlikely(nd->flags & LOOKUP_IS_SCOPED)) {
799 * While the guarantee of LOOKUP_IS_SCOPED is (roughly) "don't
800 * ever step outside the root during lookup" and should already
801 * be guaranteed by the rest of namei, we want to avoid a namei
802 * BUG resulting in userspace being given a path that was not
803 * scoped within the root at some point during the lookup.
805 * So, do a final sanity-check to make sure that in the
806 * worst-case scenario (a complete bypass of LOOKUP_IS_SCOPED)
807 * we won't silently return an fd completely outside of the
808 * requested root to userspace.
810 * Userspace could move the path outside the root after this
811 * check, but as discussed elsewhere this is not a concern (the
812 * resolved file was inside the root at some point).
814 if (!path_is_under(&nd->path, &nd->root))
818 if (likely(!(nd->flags & LOOKUP_JUMPED)))
821 if (likely(!(dentry->d_flags & DCACHE_OP_WEAK_REVALIDATE)))
824 status = dentry->d_op->d_weak_revalidate(dentry, nd->flags);
834 static int set_root(struct nameidata *nd)
836 struct fs_struct *fs = current->fs;
839 * Jumping to the real root in a scoped-lookup is a BUG in namei, but we
840 * still have to ensure it doesn't happen because it will cause a breakout
843 if (WARN_ON(nd->flags & LOOKUP_IS_SCOPED))
844 return -ENOTRECOVERABLE;
846 if (nd->flags & LOOKUP_RCU) {
850 seq = read_seqcount_begin(&fs->seq);
852 nd->root_seq = __read_seqcount_begin(&nd->root.dentry->d_seq);
853 } while (read_seqcount_retry(&fs->seq, seq));
855 get_fs_root(fs, &nd->root);
856 nd->flags |= LOOKUP_ROOT_GRABBED;
861 static void path_put_conditional(struct path *path, struct nameidata *nd)
864 if (path->mnt != nd->path.mnt)
868 static inline void path_to_nameidata(const struct path *path,
869 struct nameidata *nd)
871 if (!(nd->flags & LOOKUP_RCU)) {
872 dput(nd->path.dentry);
873 if (nd->path.mnt != path->mnt)
874 mntput(nd->path.mnt);
876 nd->path.mnt = path->mnt;
877 nd->path.dentry = path->dentry;
880 static int nd_jump_root(struct nameidata *nd)
882 if (unlikely(nd->flags & LOOKUP_BENEATH))
884 if (unlikely(nd->flags & LOOKUP_NO_XDEV)) {
885 /* Absolute path arguments to path_init() are allowed. */
886 if (nd->path.mnt != NULL && nd->path.mnt != nd->root.mnt)
890 int error = set_root(nd);
894 if (nd->flags & LOOKUP_RCU) {
898 nd->inode = d->d_inode;
899 nd->seq = nd->root_seq;
900 if (unlikely(read_seqcount_retry(&d->d_seq, nd->seq)))
906 nd->inode = nd->path.dentry->d_inode;
908 nd->flags |= LOOKUP_JUMPED;
913 * Helper to directly jump to a known parsed path from ->get_link,
914 * caller must have taken a reference to path beforehand.
916 int nd_jump_link(struct path *path)
919 struct nameidata *nd = current->nameidata;
921 if (unlikely(nd->flags & LOOKUP_NO_MAGICLINKS))
925 if (unlikely(nd->flags & LOOKUP_NO_XDEV)) {
926 if (nd->path.mnt != path->mnt)
929 /* Not currently safe for scoped-lookups. */
930 if (unlikely(nd->flags & LOOKUP_IS_SCOPED))
935 nd->inode = nd->path.dentry->d_inode;
936 nd->flags |= LOOKUP_JUMPED;
944 static inline void put_link(struct nameidata *nd)
946 struct saved *last = nd->stack + --nd->depth;
947 do_delayed_call(&last->done);
948 if (!(nd->flags & LOOKUP_RCU))
949 path_put(&last->link);
952 int sysctl_protected_symlinks __read_mostly = 0;
953 int sysctl_protected_hardlinks __read_mostly = 0;
954 int sysctl_protected_fifos __read_mostly;
955 int sysctl_protected_regular __read_mostly;
958 * may_follow_link - Check symlink following for unsafe situations
959 * @nd: nameidata pathwalk data
961 * In the case of the sysctl_protected_symlinks sysctl being enabled,
962 * CAP_DAC_OVERRIDE needs to be specifically ignored if the symlink is
963 * in a sticky world-writable directory. This is to protect privileged
964 * processes from failing races against path names that may change out
965 * from under them by way of other users creating malicious symlinks.
966 * It will permit symlinks to be followed only when outside a sticky
967 * world-writable directory, or when the uid of the symlink and follower
968 * match, or when the directory owner matches the symlink's owner.
970 * Returns 0 if following the symlink is allowed, -ve on error.
972 static inline int may_follow_link(struct nameidata *nd)
974 const struct inode *inode;
975 const struct inode *parent;
978 if (!sysctl_protected_symlinks)
981 /* Allowed if owner and follower match. */
982 inode = nd->link_inode;
983 if (uid_eq(current_cred()->fsuid, inode->i_uid))
986 /* Allowed if parent directory not sticky and world-writable. */
988 if ((parent->i_mode & (S_ISVTX|S_IWOTH)) != (S_ISVTX|S_IWOTH))
991 /* Allowed if parent directory and link owner match. */
992 puid = parent->i_uid;
993 if (uid_valid(puid) && uid_eq(puid, inode->i_uid))
996 if (nd->flags & LOOKUP_RCU)
999 audit_inode(nd->name, nd->stack[0].link.dentry, 0);
1000 audit_log_path_denied(AUDIT_ANOM_LINK, "follow_link");
1005 * safe_hardlink_source - Check for safe hardlink conditions
1006 * @inode: the source inode to hardlink from
1008 * Return false if at least one of the following conditions:
1009 * - inode is not a regular file
1011 * - inode is setgid and group-exec
1012 * - access failure for read and write
1014 * Otherwise returns true.
1016 static bool safe_hardlink_source(struct inode *inode)
1018 umode_t mode = inode->i_mode;
1020 /* Special files should not get pinned to the filesystem. */
1024 /* Setuid files should not get pinned to the filesystem. */
1028 /* Executable setgid files should not get pinned to the filesystem. */
1029 if ((mode & (S_ISGID | S_IXGRP)) == (S_ISGID | S_IXGRP))
1032 /* Hardlinking to unreadable or unwritable sources is dangerous. */
1033 if (inode_permission(inode, MAY_READ | MAY_WRITE))
1040 * may_linkat - Check permissions for creating a hardlink
1041 * @link: the source to hardlink from
1043 * Block hardlink when all of:
1044 * - sysctl_protected_hardlinks enabled
1045 * - fsuid does not match inode
1046 * - hardlink source is unsafe (see safe_hardlink_source() above)
1047 * - not CAP_FOWNER in a namespace with the inode owner uid mapped
1049 * Returns 0 if successful, -ve on error.
1051 static int may_linkat(struct path *link)
1053 struct inode *inode = link->dentry->d_inode;
1055 /* Inode writeback is not safe when the uid or gid are invalid. */
1056 if (!uid_valid(inode->i_uid) || !gid_valid(inode->i_gid))
1059 if (!sysctl_protected_hardlinks)
1062 /* Source inode owner (or CAP_FOWNER) can hardlink all they like,
1063 * otherwise, it must be a safe source.
1065 if (safe_hardlink_source(inode) || inode_owner_or_capable(inode))
1068 audit_log_path_denied(AUDIT_ANOM_LINK, "linkat");
1073 * may_create_in_sticky - Check whether an O_CREAT open in a sticky directory
1074 * should be allowed, or not, on files that already
1076 * @dir: the sticky parent directory
1077 * @inode: the inode of the file to open
1079 * Block an O_CREAT open of a FIFO (or a regular file) when:
1080 * - sysctl_protected_fifos (or sysctl_protected_regular) is enabled
1081 * - the file already exists
1082 * - we are in a sticky directory
1083 * - we don't own the file
1084 * - the owner of the directory doesn't own the file
1085 * - the directory is world writable
1086 * If the sysctl_protected_fifos (or sysctl_protected_regular) is set to 2
1087 * the directory doesn't have to be world writable: being group writable will
1090 * Returns 0 if the open is allowed, -ve on error.
1092 static int may_create_in_sticky(struct dentry * const dir,
1093 struct inode * const inode)
1095 if ((!sysctl_protected_fifos && S_ISFIFO(inode->i_mode)) ||
1096 (!sysctl_protected_regular && S_ISREG(inode->i_mode)) ||
1097 likely(!(dir->d_inode->i_mode & S_ISVTX)) ||
1098 uid_eq(inode->i_uid, dir->d_inode->i_uid) ||
1099 uid_eq(current_fsuid(), inode->i_uid))
1102 if (likely(dir->d_inode->i_mode & 0002) ||
1103 (dir->d_inode->i_mode & 0020 &&
1104 ((sysctl_protected_fifos >= 2 && S_ISFIFO(inode->i_mode)) ||
1105 (sysctl_protected_regular >= 2 && S_ISREG(inode->i_mode))))) {
1106 const char *operation = S_ISFIFO(inode->i_mode) ?
1107 "sticky_create_fifo" :
1108 "sticky_create_regular";
1109 audit_log_path_denied(AUDIT_ANOM_CREAT, operation);
1115 static __always_inline
1116 const char *get_link(struct nameidata *nd)
1118 struct saved *last = nd->stack + nd->depth - 1;
1119 struct dentry *dentry = last->link.dentry;
1120 struct inode *inode = nd->link_inode;
1124 if (unlikely(nd->flags & LOOKUP_NO_SYMLINKS))
1125 return ERR_PTR(-ELOOP);
1127 if (!(nd->flags & LOOKUP_RCU)) {
1128 touch_atime(&last->link);
1130 } else if (atime_needs_update(&last->link, inode)) {
1131 if (unlikely(unlazy_walk(nd)))
1132 return ERR_PTR(-ECHILD);
1133 touch_atime(&last->link);
1136 error = security_inode_follow_link(dentry, inode,
1137 nd->flags & LOOKUP_RCU);
1138 if (unlikely(error))
1139 return ERR_PTR(error);
1141 nd->last_type = LAST_BIND;
1142 res = READ_ONCE(inode->i_link);
1144 const char * (*get)(struct dentry *, struct inode *,
1145 struct delayed_call *);
1146 get = inode->i_op->get_link;
1147 if (nd->flags & LOOKUP_RCU) {
1148 res = get(NULL, inode, &last->done);
1149 if (res == ERR_PTR(-ECHILD)) {
1150 if (unlikely(unlazy_walk(nd)))
1151 return ERR_PTR(-ECHILD);
1152 res = get(dentry, inode, &last->done);
1155 res = get(dentry, inode, &last->done);
1157 if (IS_ERR_OR_NULL(res))
1161 error = nd_jump_root(nd);
1162 if (unlikely(error))
1163 return ERR_PTR(error);
1164 while (unlikely(*++res == '/'))
1173 * follow_up - Find the mountpoint of path's vfsmount
1175 * Given a path, find the mountpoint of its source file system.
1176 * Replace @path with the path of the mountpoint in the parent mount.
1179 * Return 1 if we went up a level and 0 if we were already at the
1182 int follow_up(struct path *path)
1184 struct mount *mnt = real_mount(path->mnt);
1185 struct mount *parent;
1186 struct dentry *mountpoint;
1188 read_seqlock_excl(&mount_lock);
1189 parent = mnt->mnt_parent;
1190 if (parent == mnt) {
1191 read_sequnlock_excl(&mount_lock);
1194 mntget(&parent->mnt);
1195 mountpoint = dget(mnt->mnt_mountpoint);
1196 read_sequnlock_excl(&mount_lock);
1198 path->dentry = mountpoint;
1200 path->mnt = &parent->mnt;
1203 EXPORT_SYMBOL(follow_up);
1206 * Perform an automount
1207 * - return -EISDIR to tell follow_managed() to stop and return the path we
1210 static int follow_automount(struct path *path, struct nameidata *nd,
1213 struct vfsmount *mnt;
1216 if (!path->dentry->d_op || !path->dentry->d_op->d_automount)
1219 /* We don't want to mount if someone's just doing a stat -
1220 * unless they're stat'ing a directory and appended a '/' to
1223 * We do, however, want to mount if someone wants to open or
1224 * create a file of any type under the mountpoint, wants to
1225 * traverse through the mountpoint or wants to open the
1226 * mounted directory. Also, autofs may mark negative dentries
1227 * as being automount points. These will need the attentions
1228 * of the daemon to instantiate them before they can be used.
1230 if (!(nd->flags & (LOOKUP_PARENT | LOOKUP_DIRECTORY |
1231 LOOKUP_OPEN | LOOKUP_CREATE | LOOKUP_AUTOMOUNT)) &&
1232 path->dentry->d_inode)
1235 nd->total_link_count++;
1236 if (nd->total_link_count >= 40)
1239 mnt = path->dentry->d_op->d_automount(path);
1242 * The filesystem is allowed to return -EISDIR here to indicate
1243 * it doesn't want to automount. For instance, autofs would do
1244 * this so that its userspace daemon can mount on this dentry.
1246 * However, we can only permit this if it's a terminal point in
1247 * the path being looked up; if it wasn't then the remainder of
1248 * the path is inaccessible and we should say so.
1250 if (PTR_ERR(mnt) == -EISDIR && (nd->flags & LOOKUP_PARENT))
1252 return PTR_ERR(mnt);
1255 if (!mnt) /* mount collision */
1258 if (!*need_mntput) {
1259 /* lock_mount() may release path->mnt on error */
1261 *need_mntput = true;
1263 err = finish_automount(mnt, path);
1267 /* Someone else made a mount here whilst we were busy */
1272 path->dentry = dget(mnt->mnt_root);
1281 * Handle a dentry that is managed in some way.
1282 * - Flagged for transit management (autofs)
1283 * - Flagged as mountpoint
1284 * - Flagged as automount point
1286 * This may only be called in refwalk mode.
1287 * On success path->dentry is known positive.
1289 * Serialization is taken care of in namespace.c
1291 static int follow_managed(struct path *path, struct nameidata *nd)
1293 struct vfsmount *mnt = path->mnt; /* held by caller, must be left alone */
1295 bool need_mntput = false;
1298 /* Given that we're not holding a lock here, we retain the value in a
1299 * local variable for each dentry as we look at it so that we don't see
1300 * the components of that value change under us */
1301 while (flags = smp_load_acquire(&path->dentry->d_flags),
1302 unlikely(flags & DCACHE_MANAGED_DENTRY)) {
1303 /* Allow the filesystem to manage the transit without i_mutex
1305 if (flags & DCACHE_MANAGE_TRANSIT) {
1306 BUG_ON(!path->dentry->d_op);
1307 BUG_ON(!path->dentry->d_op->d_manage);
1308 ret = path->dentry->d_op->d_manage(path, false);
1309 flags = smp_load_acquire(&path->dentry->d_flags);
1314 /* Transit to a mounted filesystem. */
1315 if (flags & DCACHE_MOUNTED) {
1316 struct vfsmount *mounted = lookup_mnt(path);
1321 path->mnt = mounted;
1322 path->dentry = dget(mounted->mnt_root);
1327 /* Something is mounted on this dentry in another
1328 * namespace and/or whatever was mounted there in this
1329 * namespace got unmounted before lookup_mnt() could
1333 /* Handle an automount point */
1334 if (flags & DCACHE_NEED_AUTOMOUNT) {
1335 ret = follow_automount(path, nd, &need_mntput);
1341 /* We didn't change the current path point */
1346 if (path->mnt == mnt)
1348 if (unlikely(nd->flags & LOOKUP_NO_XDEV))
1351 nd->flags |= LOOKUP_JUMPED;
1353 if (ret == -EISDIR || !ret)
1355 if (ret > 0 && unlikely(d_flags_negative(flags)))
1357 if (unlikely(ret < 0))
1358 path_put_conditional(path, nd);
1362 int follow_down_one(struct path *path)
1364 struct vfsmount *mounted;
1366 mounted = lookup_mnt(path);
1370 path->mnt = mounted;
1371 path->dentry = dget(mounted->mnt_root);
1376 EXPORT_SYMBOL(follow_down_one);
1378 static inline int managed_dentry_rcu(const struct path *path)
1380 return (path->dentry->d_flags & DCACHE_MANAGE_TRANSIT) ?
1381 path->dentry->d_op->d_manage(path, true) : 0;
1385 * Try to skip to top of mountpoint pile in rcuwalk mode. Fail if
1386 * we meet a managed dentry that would need blocking.
1388 static bool __follow_mount_rcu(struct nameidata *nd, struct path *path,
1389 struct inode **inode, unsigned *seqp)
1392 struct mount *mounted;
1394 * Don't forget we might have a non-mountpoint managed dentry
1395 * that wants to block transit.
1397 switch (managed_dentry_rcu(path)) {
1407 if (!d_mountpoint(path->dentry))
1408 return !(path->dentry->d_flags & DCACHE_NEED_AUTOMOUNT);
1410 mounted = __lookup_mnt(path->mnt, path->dentry);
1413 if (unlikely(nd->flags & LOOKUP_NO_XDEV))
1415 path->mnt = &mounted->mnt;
1416 path->dentry = mounted->mnt.mnt_root;
1417 nd->flags |= LOOKUP_JUMPED;
1418 *seqp = read_seqcount_begin(&path->dentry->d_seq);
1420 * Update the inode too. We don't need to re-check the
1421 * dentry sequence number here after this d_inode read,
1422 * because a mount-point is always pinned.
1424 *inode = path->dentry->d_inode;
1426 return !read_seqretry(&mount_lock, nd->m_seq) &&
1427 !(path->dentry->d_flags & DCACHE_NEED_AUTOMOUNT);
1430 static int follow_dotdot_rcu(struct nameidata *nd)
1432 struct inode *inode = nd->inode;
1435 if (path_equal(&nd->path, &nd->root)) {
1436 if (unlikely(nd->flags & LOOKUP_BENEATH))
1440 if (nd->path.dentry != nd->path.mnt->mnt_root) {
1441 struct dentry *old = nd->path.dentry;
1442 struct dentry *parent = old->d_parent;
1445 inode = parent->d_inode;
1446 seq = read_seqcount_begin(&parent->d_seq);
1447 if (unlikely(read_seqcount_retry(&old->d_seq, nd->seq)))
1449 nd->path.dentry = parent;
1451 if (unlikely(!path_connected(&nd->path)))
1455 struct mount *mnt = real_mount(nd->path.mnt);
1456 struct mount *mparent = mnt->mnt_parent;
1457 struct dentry *mountpoint = mnt->mnt_mountpoint;
1458 struct inode *inode2 = mountpoint->d_inode;
1459 unsigned seq = read_seqcount_begin(&mountpoint->d_seq);
1460 if (unlikely(read_seqretry(&mount_lock, nd->m_seq)))
1462 if (&mparent->mnt == nd->path.mnt)
1464 if (unlikely(nd->flags & LOOKUP_NO_XDEV))
1466 /* we know that mountpoint was pinned */
1467 nd->path.dentry = mountpoint;
1468 nd->path.mnt = &mparent->mnt;
1473 while (unlikely(d_mountpoint(nd->path.dentry))) {
1474 struct mount *mounted;
1475 mounted = __lookup_mnt(nd->path.mnt, nd->path.dentry);
1476 if (unlikely(read_seqretry(&mount_lock, nd->m_seq)))
1480 if (unlikely(nd->flags & LOOKUP_NO_XDEV))
1482 nd->path.mnt = &mounted->mnt;
1483 nd->path.dentry = mounted->mnt.mnt_root;
1484 inode = nd->path.dentry->d_inode;
1485 nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq);
1492 * Follow down to the covering mount currently visible to userspace. At each
1493 * point, the filesystem owning that dentry may be queried as to whether the
1494 * caller is permitted to proceed or not.
1496 int follow_down(struct path *path)
1501 while (managed = READ_ONCE(path->dentry->d_flags),
1502 unlikely(managed & DCACHE_MANAGED_DENTRY)) {
1503 /* Allow the filesystem to manage the transit without i_mutex
1506 * We indicate to the filesystem if someone is trying to mount
1507 * something here. This gives autofs the chance to deny anyone
1508 * other than its daemon the right to mount on its
1511 * The filesystem may sleep at this point.
1513 if (managed & DCACHE_MANAGE_TRANSIT) {
1514 BUG_ON(!path->dentry->d_op);
1515 BUG_ON(!path->dentry->d_op->d_manage);
1516 ret = path->dentry->d_op->d_manage(path, false);
1518 return ret == -EISDIR ? 0 : ret;
1521 /* Transit to a mounted filesystem. */
1522 if (managed & DCACHE_MOUNTED) {
1523 struct vfsmount *mounted = lookup_mnt(path);
1528 path->mnt = mounted;
1529 path->dentry = dget(mounted->mnt_root);
1533 /* Don't handle automount points here */
1538 EXPORT_SYMBOL(follow_down);
1541 * Skip to top of mountpoint pile in refwalk mode for follow_dotdot()
1543 static void follow_mount(struct path *path)
1545 while (d_mountpoint(path->dentry)) {
1546 struct vfsmount *mounted = lookup_mnt(path);
1551 path->mnt = mounted;
1552 path->dentry = dget(mounted->mnt_root);
1556 static int path_parent_directory(struct path *path)
1558 struct dentry *old = path->dentry;
1559 /* rare case of legitimate dget_parent()... */
1560 path->dentry = dget_parent(path->dentry);
1562 if (unlikely(!path_connected(path)))
1567 static int follow_dotdot(struct nameidata *nd)
1570 if (path_equal(&nd->path, &nd->root)) {
1571 if (unlikely(nd->flags & LOOKUP_BENEATH))
1575 if (nd->path.dentry != nd->path.mnt->mnt_root) {
1576 int ret = path_parent_directory(&nd->path);
1581 if (!follow_up(&nd->path))
1583 if (unlikely(nd->flags & LOOKUP_NO_XDEV))
1586 follow_mount(&nd->path);
1587 nd->inode = nd->path.dentry->d_inode;
1592 * This looks up the name in dcache and possibly revalidates the found dentry.
1593 * NULL is returned if the dentry does not exist in the cache.
1595 static struct dentry *lookup_dcache(const struct qstr *name,
1599 struct dentry *dentry = d_lookup(dir, name);
1601 int error = d_revalidate(dentry, flags);
1602 if (unlikely(error <= 0)) {
1604 d_invalidate(dentry);
1606 return ERR_PTR(error);
1613 * Parent directory has inode locked exclusive. This is one
1614 * and only case when ->lookup() gets called on non in-lookup
1615 * dentries - as the matter of fact, this only gets called
1616 * when directory is guaranteed to have no in-lookup children
1619 static struct dentry *__lookup_hash(const struct qstr *name,
1620 struct dentry *base, unsigned int flags)
1622 struct dentry *dentry = lookup_dcache(name, base, flags);
1624 struct inode *dir = base->d_inode;
1629 /* Don't create child dentry for a dead directory. */
1630 if (unlikely(IS_DEADDIR(dir)))
1631 return ERR_PTR(-ENOENT);
1633 dentry = d_alloc(base, name);
1634 if (unlikely(!dentry))
1635 return ERR_PTR(-ENOMEM);
1637 old = dir->i_op->lookup(dir, dentry, flags);
1638 if (unlikely(old)) {
1645 static int lookup_fast(struct nameidata *nd,
1646 struct path *path, struct inode **inode,
1649 struct vfsmount *mnt = nd->path.mnt;
1650 struct dentry *dentry, *parent = nd->path.dentry;
1655 * Rename seqlock is not required here because in the off chance
1656 * of a false negative due to a concurrent rename, the caller is
1657 * going to fall back to non-racy lookup.
1659 if (nd->flags & LOOKUP_RCU) {
1662 dentry = __d_lookup_rcu(parent, &nd->last, &seq);
1663 if (unlikely(!dentry)) {
1664 if (unlazy_walk(nd))
1670 * This sequence count validates that the inode matches
1671 * the dentry name information from lookup.
1673 *inode = d_backing_inode(dentry);
1674 negative = d_is_negative(dentry);
1675 if (unlikely(read_seqcount_retry(&dentry->d_seq, seq)))
1679 * This sequence count validates that the parent had no
1680 * changes while we did the lookup of the dentry above.
1682 * The memory barrier in read_seqcount_begin of child is
1683 * enough, we can use __read_seqcount_retry here.
1685 if (unlikely(__read_seqcount_retry(&parent->d_seq, nd->seq)))
1689 status = d_revalidate(dentry, nd->flags);
1690 if (likely(status > 0)) {
1692 * Note: do negative dentry check after revalidation in
1693 * case that drops it.
1695 if (unlikely(negative))
1698 path->dentry = dentry;
1699 if (likely(__follow_mount_rcu(nd, path, inode, seqp)))
1702 if (unlazy_child(nd, dentry, seq))
1704 if (unlikely(status == -ECHILD))
1705 /* we'd been told to redo it in non-rcu mode */
1706 status = d_revalidate(dentry, nd->flags);
1708 dentry = __d_lookup(parent, &nd->last);
1709 if (unlikely(!dentry))
1711 status = d_revalidate(dentry, nd->flags);
1713 if (unlikely(status <= 0)) {
1715 d_invalidate(dentry);
1721 path->dentry = dentry;
1722 err = follow_managed(path, nd);
1723 if (likely(err > 0))
1724 *inode = d_backing_inode(path->dentry);
1728 /* Fast lookup failed, do it the slow way */
1729 static struct dentry *__lookup_slow(const struct qstr *name,
1733 struct dentry *dentry, *old;
1734 struct inode *inode = dir->d_inode;
1735 DECLARE_WAIT_QUEUE_HEAD_ONSTACK(wq);
1737 /* Don't go there if it's already dead */
1738 if (unlikely(IS_DEADDIR(inode)))
1739 return ERR_PTR(-ENOENT);
1741 dentry = d_alloc_parallel(dir, name, &wq);
1744 if (unlikely(!d_in_lookup(dentry))) {
1745 int error = d_revalidate(dentry, flags);
1746 if (unlikely(error <= 0)) {
1748 d_invalidate(dentry);
1753 dentry = ERR_PTR(error);
1756 old = inode->i_op->lookup(inode, dentry, flags);
1757 d_lookup_done(dentry);
1758 if (unlikely(old)) {
1766 static struct dentry *lookup_slow(const struct qstr *name,
1770 struct inode *inode = dir->d_inode;
1772 inode_lock_shared(inode);
1773 res = __lookup_slow(name, dir, flags);
1774 inode_unlock_shared(inode);
1778 static inline int may_lookup(struct nameidata *nd)
1780 if (nd->flags & LOOKUP_RCU) {
1781 int err = inode_permission(nd->inode, MAY_EXEC|MAY_NOT_BLOCK);
1784 if (unlazy_walk(nd))
1787 return inode_permission(nd->inode, MAY_EXEC);
1790 static inline int handle_dots(struct nameidata *nd, int type)
1792 if (type == LAST_DOTDOT) {
1795 if (!nd->root.mnt) {
1796 error = set_root(nd);
1800 if (nd->flags & LOOKUP_RCU)
1801 error = follow_dotdot_rcu(nd);
1803 error = follow_dotdot(nd);
1807 if (unlikely(nd->flags & LOOKUP_IS_SCOPED)) {
1809 * If there was a racing rename or mount along our
1810 * path, then we can't be sure that ".." hasn't jumped
1811 * above nd->root (and so userspace should retry or use
1815 if (unlikely(__read_seqcount_retry(&mount_lock.seqcount, nd->m_seq)))
1817 if (unlikely(__read_seqcount_retry(&rename_lock.seqcount, nd->r_seq)))
1824 static int pick_link(struct nameidata *nd, struct path *link,
1825 struct inode *inode, unsigned seq)
1829 if (unlikely(nd->total_link_count++ >= MAXSYMLINKS)) {
1830 path_to_nameidata(link, nd);
1833 if (!(nd->flags & LOOKUP_RCU)) {
1834 if (link->mnt == nd->path.mnt)
1837 error = nd_alloc_stack(nd);
1838 if (unlikely(error)) {
1839 if (error == -ECHILD) {
1840 if (unlikely(!legitimize_path(nd, link, seq))) {
1843 nd->flags &= ~LOOKUP_RCU;
1844 nd->path.mnt = NULL;
1845 nd->path.dentry = NULL;
1847 } else if (likely(unlazy_walk(nd)) == 0)
1848 error = nd_alloc_stack(nd);
1856 last = nd->stack + nd->depth++;
1858 clear_delayed_call(&last->done);
1859 nd->link_inode = inode;
1864 enum {WALK_FOLLOW = 1, WALK_MORE = 2};
1867 * Do we need to follow links? We _really_ want to be able
1868 * to do this check without having to look at inode->i_op,
1869 * so we keep a cache of "no, this doesn't need follow_link"
1870 * for the common case.
1872 static inline int step_into(struct nameidata *nd, struct path *path,
1873 int flags, struct inode *inode, unsigned seq)
1875 if (!(flags & WALK_MORE) && nd->depth)
1877 if (likely(!d_is_symlink(path->dentry)) ||
1878 !(flags & WALK_FOLLOW || nd->flags & LOOKUP_FOLLOW)) {
1879 /* not a symlink or should not follow */
1880 path_to_nameidata(path, nd);
1885 /* make sure that d_is_symlink above matches inode */
1886 if (nd->flags & LOOKUP_RCU) {
1887 if (read_seqcount_retry(&path->dentry->d_seq, seq))
1890 return pick_link(nd, path, inode, seq);
1893 static int walk_component(struct nameidata *nd, int flags)
1896 struct inode *inode;
1900 * "." and ".." are special - ".." especially so because it has
1901 * to be able to know about the current root directory and
1902 * parent relationships.
1904 if (unlikely(nd->last_type != LAST_NORM)) {
1905 err = handle_dots(nd, nd->last_type);
1906 if (!(flags & WALK_MORE) && nd->depth)
1910 err = lookup_fast(nd, &path, &inode, &seq);
1911 if (unlikely(err <= 0)) {
1914 path.dentry = lookup_slow(&nd->last, nd->path.dentry,
1916 if (IS_ERR(path.dentry))
1917 return PTR_ERR(path.dentry);
1919 path.mnt = nd->path.mnt;
1920 err = follow_managed(&path, nd);
1921 if (unlikely(err < 0))
1924 seq = 0; /* we are already out of RCU mode */
1925 inode = d_backing_inode(path.dentry);
1928 return step_into(nd, &path, flags, inode, seq);
1932 * We can do the critical dentry name comparison and hashing
1933 * operations one word at a time, but we are limited to:
1935 * - Architectures with fast unaligned word accesses. We could
1936 * do a "get_unaligned()" if this helps and is sufficiently
1939 * - non-CONFIG_DEBUG_PAGEALLOC configurations (so that we
1940 * do not trap on the (extremely unlikely) case of a page
1941 * crossing operation.
1943 * - Furthermore, we need an efficient 64-bit compile for the
1944 * 64-bit case in order to generate the "number of bytes in
1945 * the final mask". Again, that could be replaced with a
1946 * efficient population count instruction or similar.
1948 #ifdef CONFIG_DCACHE_WORD_ACCESS
1950 #include <asm/word-at-a-time.h>
1954 /* Architecture provides HASH_MIX and fold_hash() in <asm/hash.h> */
1956 #elif defined(CONFIG_64BIT)
1958 * Register pressure in the mixing function is an issue, particularly
1959 * on 32-bit x86, but almost any function requires one state value and
1960 * one temporary. Instead, use a function designed for two state values
1961 * and no temporaries.
1963 * This function cannot create a collision in only two iterations, so
1964 * we have two iterations to achieve avalanche. In those two iterations,
1965 * we have six layers of mixing, which is enough to spread one bit's
1966 * influence out to 2^6 = 64 state bits.
1968 * Rotate constants are scored by considering either 64 one-bit input
1969 * deltas or 64*63/2 = 2016 two-bit input deltas, and finding the
1970 * probability of that delta causing a change to each of the 128 output
1971 * bits, using a sample of random initial states.
1973 * The Shannon entropy of the computed probabilities is then summed
1974 * to produce a score. Ideally, any input change has a 50% chance of
1975 * toggling any given output bit.
1977 * Mixing scores (in bits) for (12,45):
1978 * Input delta: 1-bit 2-bit
1979 * 1 round: 713.3 42542.6
1980 * 2 rounds: 2753.7 140389.8
1981 * 3 rounds: 5954.1 233458.2
1982 * 4 rounds: 7862.6 256672.2
1983 * Perfect: 8192 258048
1984 * (64*128) (64*63/2 * 128)
1986 #define HASH_MIX(x, y, a) \
1988 y ^= x, x = rol64(x,12),\
1989 x += y, y = rol64(y,45),\
1993 * Fold two longs into one 32-bit hash value. This must be fast, but
1994 * latency isn't quite as critical, as there is a fair bit of additional
1995 * work done before the hash value is used.
1997 static inline unsigned int fold_hash(unsigned long x, unsigned long y)
1999 y ^= x * GOLDEN_RATIO_64;
2000 y *= GOLDEN_RATIO_64;
2004 #else /* 32-bit case */
2007 * Mixing scores (in bits) for (7,20):
2008 * Input delta: 1-bit 2-bit
2009 * 1 round: 330.3 9201.6
2010 * 2 rounds: 1246.4 25475.4
2011 * 3 rounds: 1907.1 31295.1
2012 * 4 rounds: 2042.3 31718.6
2013 * Perfect: 2048 31744
2014 * (32*64) (32*31/2 * 64)
2016 #define HASH_MIX(x, y, a) \
2018 y ^= x, x = rol32(x, 7),\
2019 x += y, y = rol32(y,20),\
2022 static inline unsigned int fold_hash(unsigned long x, unsigned long y)
2024 /* Use arch-optimized multiply if one exists */
2025 return __hash_32(y ^ __hash_32(x));
2031 * Return the hash of a string of known length. This is carfully
2032 * designed to match hash_name(), which is the more critical function.
2033 * In particular, we must end by hashing a final word containing 0..7
2034 * payload bytes, to match the way that hash_name() iterates until it
2035 * finds the delimiter after the name.
2037 unsigned int full_name_hash(const void *salt, const char *name, unsigned int len)
2039 unsigned long a, x = 0, y = (unsigned long)salt;
2044 a = load_unaligned_zeropad(name);
2045 if (len < sizeof(unsigned long))
2048 name += sizeof(unsigned long);
2049 len -= sizeof(unsigned long);
2051 x ^= a & bytemask_from_count(len);
2053 return fold_hash(x, y);
2055 EXPORT_SYMBOL(full_name_hash);
2057 /* Return the "hash_len" (hash and length) of a null-terminated string */
2058 u64 hashlen_string(const void *salt, const char *name)
2060 unsigned long a = 0, x = 0, y = (unsigned long)salt;
2061 unsigned long adata, mask, len;
2062 const struct word_at_a_time constants = WORD_AT_A_TIME_CONSTANTS;
2069 len += sizeof(unsigned long);
2071 a = load_unaligned_zeropad(name+len);
2072 } while (!has_zero(a, &adata, &constants));
2074 adata = prep_zero_mask(a, adata, &constants);
2075 mask = create_zero_mask(adata);
2076 x ^= a & zero_bytemask(mask);
2078 return hashlen_create(fold_hash(x, y), len + find_zero(mask));
2080 EXPORT_SYMBOL(hashlen_string);
2083 * Calculate the length and hash of the path component, and
2084 * return the "hash_len" as the result.
2086 static inline u64 hash_name(const void *salt, const char *name)
2088 unsigned long a = 0, b, x = 0, y = (unsigned long)salt;
2089 unsigned long adata, bdata, mask, len;
2090 const struct word_at_a_time constants = WORD_AT_A_TIME_CONSTANTS;
2097 len += sizeof(unsigned long);
2099 a = load_unaligned_zeropad(name+len);
2100 b = a ^ REPEAT_BYTE('/');
2101 } while (!(has_zero(a, &adata, &constants) | has_zero(b, &bdata, &constants)));
2103 adata = prep_zero_mask(a, adata, &constants);
2104 bdata = prep_zero_mask(b, bdata, &constants);
2105 mask = create_zero_mask(adata | bdata);
2106 x ^= a & zero_bytemask(mask);
2108 return hashlen_create(fold_hash(x, y), len + find_zero(mask));
2111 #else /* !CONFIG_DCACHE_WORD_ACCESS: Slow, byte-at-a-time version */
2113 /* Return the hash of a string of known length */
2114 unsigned int full_name_hash(const void *salt, const char *name, unsigned int len)
2116 unsigned long hash = init_name_hash(salt);
2118 hash = partial_name_hash((unsigned char)*name++, hash);
2119 return end_name_hash(hash);
2121 EXPORT_SYMBOL(full_name_hash);
2123 /* Return the "hash_len" (hash and length) of a null-terminated string */
2124 u64 hashlen_string(const void *salt, const char *name)
2126 unsigned long hash = init_name_hash(salt);
2127 unsigned long len = 0, c;
2129 c = (unsigned char)*name;
2132 hash = partial_name_hash(c, hash);
2133 c = (unsigned char)name[len];
2135 return hashlen_create(end_name_hash(hash), len);
2137 EXPORT_SYMBOL(hashlen_string);
2140 * We know there's a real path component here of at least
2143 static inline u64 hash_name(const void *salt, const char *name)
2145 unsigned long hash = init_name_hash(salt);
2146 unsigned long len = 0, c;
2148 c = (unsigned char)*name;
2151 hash = partial_name_hash(c, hash);
2152 c = (unsigned char)name[len];
2153 } while (c && c != '/');
2154 return hashlen_create(end_name_hash(hash), len);
2161 * This is the basic name resolution function, turning a pathname into
2162 * the final dentry. We expect 'base' to be positive and a directory.
2164 * Returns 0 and nd will have valid dentry and mnt on success.
2165 * Returns error and drops reference to input namei data on failure.
2167 static int link_path_walk(const char *name, struct nameidata *nd)
2172 return PTR_ERR(name);
2178 /* At this point we know we have a real path component. */
2183 err = may_lookup(nd);
2187 hash_len = hash_name(nd->path.dentry, name);
2190 if (name[0] == '.') switch (hashlen_len(hash_len)) {
2192 if (name[1] == '.') {
2194 nd->flags |= LOOKUP_JUMPED;
2200 if (likely(type == LAST_NORM)) {
2201 struct dentry *parent = nd->path.dentry;
2202 nd->flags &= ~LOOKUP_JUMPED;
2203 if (unlikely(parent->d_flags & DCACHE_OP_HASH)) {
2204 struct qstr this = { { .hash_len = hash_len }, .name = name };
2205 err = parent->d_op->d_hash(parent, &this);
2208 hash_len = this.hash_len;
2213 nd->last.hash_len = hash_len;
2214 nd->last.name = name;
2215 nd->last_type = type;
2217 name += hashlen_len(hash_len);
2221 * If it wasn't NUL, we know it was '/'. Skip that
2222 * slash, and continue until no more slashes.
2226 } while (unlikely(*name == '/'));
2227 if (unlikely(!*name)) {
2229 /* pathname body, done */
2232 name = nd->stack[nd->depth - 1].name;
2233 /* trailing symlink, done */
2236 /* last component of nested symlink */
2237 err = walk_component(nd, WALK_FOLLOW);
2239 /* not the last component */
2240 err = walk_component(nd, WALK_FOLLOW | WALK_MORE);
2246 const char *s = get_link(nd);
2255 nd->stack[nd->depth - 1].name = name;
2260 if (unlikely(!d_can_lookup(nd->path.dentry))) {
2261 if (nd->flags & LOOKUP_RCU) {
2262 if (unlazy_walk(nd))
2270 /* must be paired with terminate_walk() */
2271 static const char *path_init(struct nameidata *nd, unsigned flags)
2274 const char *s = nd->name->name;
2277 flags &= ~LOOKUP_RCU;
2278 if (flags & LOOKUP_RCU)
2281 nd->last_type = LAST_ROOT; /* if there are only slashes... */
2282 nd->flags = flags | LOOKUP_JUMPED | LOOKUP_PARENT;
2285 nd->m_seq = __read_seqcount_begin(&mount_lock.seqcount);
2286 nd->r_seq = __read_seqcount_begin(&rename_lock.seqcount);
2289 if (flags & LOOKUP_ROOT) {
2290 struct dentry *root = nd->root.dentry;
2291 struct inode *inode = root->d_inode;
2292 if (*s && unlikely(!d_can_lookup(root)))
2293 return ERR_PTR(-ENOTDIR);
2294 nd->path = nd->root;
2296 if (flags & LOOKUP_RCU) {
2297 nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq);
2298 nd->root_seq = nd->seq;
2300 path_get(&nd->path);
2305 nd->root.mnt = NULL;
2306 nd->path.mnt = NULL;
2307 nd->path.dentry = NULL;
2309 /* Absolute pathname -- fetch the root (LOOKUP_IN_ROOT uses nd->dfd). */
2310 if (*s == '/' && !(flags & LOOKUP_IN_ROOT)) {
2311 error = nd_jump_root(nd);
2312 if (unlikely(error))
2313 return ERR_PTR(error);
2317 /* Relative pathname -- get the starting-point it is relative to. */
2318 if (nd->dfd == AT_FDCWD) {
2319 if (flags & LOOKUP_RCU) {
2320 struct fs_struct *fs = current->fs;
2324 seq = read_seqcount_begin(&fs->seq);
2326 nd->inode = nd->path.dentry->d_inode;
2327 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
2328 } while (read_seqcount_retry(&fs->seq, seq));
2330 get_fs_pwd(current->fs, &nd->path);
2331 nd->inode = nd->path.dentry->d_inode;
2334 /* Caller must check execute permissions on the starting path component */
2335 struct fd f = fdget_raw(nd->dfd);
2336 struct dentry *dentry;
2339 return ERR_PTR(-EBADF);
2341 dentry = f.file->f_path.dentry;
2343 if (*s && unlikely(!d_can_lookup(dentry))) {
2345 return ERR_PTR(-ENOTDIR);
2348 nd->path = f.file->f_path;
2349 if (flags & LOOKUP_RCU) {
2350 nd->inode = nd->path.dentry->d_inode;
2351 nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq);
2353 path_get(&nd->path);
2354 nd->inode = nd->path.dentry->d_inode;
2359 /* For scoped-lookups we need to set the root to the dirfd as well. */
2360 if (flags & LOOKUP_IS_SCOPED) {
2361 nd->root = nd->path;
2362 if (flags & LOOKUP_RCU) {
2363 nd->root_seq = nd->seq;
2365 path_get(&nd->root);
2366 nd->flags |= LOOKUP_ROOT_GRABBED;
2372 static const char *trailing_symlink(struct nameidata *nd)
2375 int error = may_follow_link(nd);
2376 if (unlikely(error))
2377 return ERR_PTR(error);
2378 nd->flags |= LOOKUP_PARENT;
2379 nd->stack[0].name = NULL;
2384 static inline int lookup_last(struct nameidata *nd)
2386 if (nd->last_type == LAST_NORM && nd->last.name[nd->last.len])
2387 nd->flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
2389 nd->flags &= ~LOOKUP_PARENT;
2390 return walk_component(nd, 0);
2393 static int handle_lookup_down(struct nameidata *nd)
2395 struct path path = nd->path;
2396 struct inode *inode = nd->inode;
2397 unsigned seq = nd->seq;
2400 if (nd->flags & LOOKUP_RCU) {
2402 * don't bother with unlazy_walk on failure - we are
2403 * at the very beginning of walk, so we lose nothing
2404 * if we simply redo everything in non-RCU mode
2406 if (unlikely(!__follow_mount_rcu(nd, &path, &inode, &seq)))
2410 err = follow_managed(&path, nd);
2411 if (unlikely(err < 0))
2413 inode = d_backing_inode(path.dentry);
2416 path_to_nameidata(&path, nd);
2422 /* Returns 0 and nd will be valid on success; Retuns error, otherwise. */
2423 static int path_lookupat(struct nameidata *nd, unsigned flags, struct path *path)
2425 const char *s = path_init(nd, flags);
2428 if (unlikely(flags & LOOKUP_DOWN) && !IS_ERR(s)) {
2429 err = handle_lookup_down(nd);
2430 if (unlikely(err < 0))
2434 while (!(err = link_path_walk(s, nd))
2435 && ((err = lookup_last(nd)) > 0)) {
2436 s = trailing_symlink(nd);
2439 err = complete_walk(nd);
2441 if (!err && nd->flags & LOOKUP_DIRECTORY)
2442 if (!d_can_lookup(nd->path.dentry))
2446 nd->path.mnt = NULL;
2447 nd->path.dentry = NULL;
2453 int filename_lookup(int dfd, struct filename *name, unsigned flags,
2454 struct path *path, struct path *root)
2457 struct nameidata nd;
2459 return PTR_ERR(name);
2460 if (unlikely(root)) {
2462 flags |= LOOKUP_ROOT;
2464 set_nameidata(&nd, dfd, name);
2465 retval = path_lookupat(&nd, flags | LOOKUP_RCU, path);
2466 if (unlikely(retval == -ECHILD))
2467 retval = path_lookupat(&nd, flags, path);
2468 if (unlikely(retval == -ESTALE))
2469 retval = path_lookupat(&nd, flags | LOOKUP_REVAL, path);
2471 if (likely(!retval))
2472 audit_inode(name, path->dentry, 0);
2473 restore_nameidata();
2478 /* Returns 0 and nd will be valid on success; Retuns error, otherwise. */
2479 static int path_parentat(struct nameidata *nd, unsigned flags,
2480 struct path *parent)
2482 const char *s = path_init(nd, flags);
2483 int err = link_path_walk(s, nd);
2485 err = complete_walk(nd);
2488 nd->path.mnt = NULL;
2489 nd->path.dentry = NULL;
2495 static struct filename *filename_parentat(int dfd, struct filename *name,
2496 unsigned int flags, struct path *parent,
2497 struct qstr *last, int *type)
2500 struct nameidata nd;
2504 set_nameidata(&nd, dfd, name);
2505 retval = path_parentat(&nd, flags | LOOKUP_RCU, parent);
2506 if (unlikely(retval == -ECHILD))
2507 retval = path_parentat(&nd, flags, parent);
2508 if (unlikely(retval == -ESTALE))
2509 retval = path_parentat(&nd, flags | LOOKUP_REVAL, parent);
2510 if (likely(!retval)) {
2512 *type = nd.last_type;
2513 audit_inode(name, parent->dentry, AUDIT_INODE_PARENT);
2516 name = ERR_PTR(retval);
2518 restore_nameidata();
2522 /* does lookup, returns the object with parent locked */
2523 struct dentry *kern_path_locked(const char *name, struct path *path)
2525 struct filename *filename;
2530 filename = filename_parentat(AT_FDCWD, getname_kernel(name), 0, path,
2532 if (IS_ERR(filename))
2533 return ERR_CAST(filename);
2534 if (unlikely(type != LAST_NORM)) {
2537 return ERR_PTR(-EINVAL);
2539 inode_lock_nested(path->dentry->d_inode, I_MUTEX_PARENT);
2540 d = __lookup_hash(&last, path->dentry, 0);
2542 inode_unlock(path->dentry->d_inode);
2549 int kern_path(const char *name, unsigned int flags, struct path *path)
2551 return filename_lookup(AT_FDCWD, getname_kernel(name),
2554 EXPORT_SYMBOL(kern_path);
2557 * vfs_path_lookup - lookup a file path relative to a dentry-vfsmount pair
2558 * @dentry: pointer to dentry of the base directory
2559 * @mnt: pointer to vfs mount of the base directory
2560 * @name: pointer to file name
2561 * @flags: lookup flags
2562 * @path: pointer to struct path to fill
2564 int vfs_path_lookup(struct dentry *dentry, struct vfsmount *mnt,
2565 const char *name, unsigned int flags,
2568 struct path root = {.mnt = mnt, .dentry = dentry};
2569 /* the first argument of filename_lookup() is ignored with root */
2570 return filename_lookup(AT_FDCWD, getname_kernel(name),
2571 flags , path, &root);
2573 EXPORT_SYMBOL(vfs_path_lookup);
2575 static int lookup_one_len_common(const char *name, struct dentry *base,
2576 int len, struct qstr *this)
2580 this->hash = full_name_hash(base, name, len);
2584 if (unlikely(name[0] == '.')) {
2585 if (len < 2 || (len == 2 && name[1] == '.'))
2590 unsigned int c = *(const unsigned char *)name++;
2591 if (c == '/' || c == '\0')
2595 * See if the low-level filesystem might want
2596 * to use its own hash..
2598 if (base->d_flags & DCACHE_OP_HASH) {
2599 int err = base->d_op->d_hash(base, this);
2604 return inode_permission(base->d_inode, MAY_EXEC);
2608 * try_lookup_one_len - filesystem helper to lookup single pathname component
2609 * @name: pathname component to lookup
2610 * @base: base directory to lookup from
2611 * @len: maximum length @len should be interpreted to
2613 * Look up a dentry by name in the dcache, returning NULL if it does not
2614 * currently exist. The function does not try to create a dentry.
2616 * Note that this routine is purely a helper for filesystem usage and should
2617 * not be called by generic code.
2619 * The caller must hold base->i_mutex.
2621 struct dentry *try_lookup_one_len(const char *name, struct dentry *base, int len)
2626 WARN_ON_ONCE(!inode_is_locked(base->d_inode));
2628 err = lookup_one_len_common(name, base, len, &this);
2630 return ERR_PTR(err);
2632 return lookup_dcache(&this, base, 0);
2634 EXPORT_SYMBOL(try_lookup_one_len);
2637 * lookup_one_len - filesystem helper to lookup single pathname component
2638 * @name: pathname component to lookup
2639 * @base: base directory to lookup from
2640 * @len: maximum length @len should be interpreted to
2642 * Note that this routine is purely a helper for filesystem usage and should
2643 * not be called by generic code.
2645 * The caller must hold base->i_mutex.
2647 struct dentry *lookup_one_len(const char *name, struct dentry *base, int len)
2649 struct dentry *dentry;
2653 WARN_ON_ONCE(!inode_is_locked(base->d_inode));
2655 err = lookup_one_len_common(name, base, len, &this);
2657 return ERR_PTR(err);
2659 dentry = lookup_dcache(&this, base, 0);
2660 return dentry ? dentry : __lookup_slow(&this, base, 0);
2662 EXPORT_SYMBOL(lookup_one_len);
2665 * lookup_one_len_unlocked - filesystem helper to lookup single pathname component
2666 * @name: pathname component to lookup
2667 * @base: base directory to lookup from
2668 * @len: maximum length @len should be interpreted to
2670 * Note that this routine is purely a helper for filesystem usage and should
2671 * not be called by generic code.
2673 * Unlike lookup_one_len, it should be called without the parent
2674 * i_mutex held, and will take the i_mutex itself if necessary.
2676 struct dentry *lookup_one_len_unlocked(const char *name,
2677 struct dentry *base, int len)
2683 err = lookup_one_len_common(name, base, len, &this);
2685 return ERR_PTR(err);
2687 ret = lookup_dcache(&this, base, 0);
2689 ret = lookup_slow(&this, base, 0);
2692 EXPORT_SYMBOL(lookup_one_len_unlocked);
2695 * Like lookup_one_len_unlocked(), except that it yields ERR_PTR(-ENOENT)
2696 * on negatives. Returns known positive or ERR_PTR(); that's what
2697 * most of the users want. Note that pinned negative with unlocked parent
2698 * _can_ become positive at any time, so callers of lookup_one_len_unlocked()
2699 * need to be very careful; pinned positives have ->d_inode stable, so
2700 * this one avoids such problems.
2702 struct dentry *lookup_positive_unlocked(const char *name,
2703 struct dentry *base, int len)
2705 struct dentry *ret = lookup_one_len_unlocked(name, base, len);
2706 if (!IS_ERR(ret) && d_flags_negative(smp_load_acquire(&ret->d_flags))) {
2708 ret = ERR_PTR(-ENOENT);
2712 EXPORT_SYMBOL(lookup_positive_unlocked);
2714 #ifdef CONFIG_UNIX98_PTYS
2715 int path_pts(struct path *path)
2717 /* Find something mounted on "pts" in the same directory as
2720 struct dentry *child, *parent;
2724 ret = path_parent_directory(path);
2728 parent = path->dentry;
2731 child = d_hash_and_lookup(parent, &this);
2735 path->dentry = child;
2742 int user_path_at_empty(int dfd, const char __user *name, unsigned flags,
2743 struct path *path, int *empty)
2745 return filename_lookup(dfd, getname_flags(name, flags, empty),
2748 EXPORT_SYMBOL(user_path_at_empty);
2751 * path_mountpoint - look up a path to be umounted
2752 * @nd: lookup context
2753 * @flags: lookup flags
2754 * @path: pointer to container for result
2756 * Look up the given name, but don't attempt to revalidate the last component.
2757 * Returns 0 and "path" will be valid on success; Returns error otherwise.
2760 path_mountpoint(struct nameidata *nd, unsigned flags, struct path *path)
2762 const char *s = path_init(nd, flags);
2765 while (!(err = link_path_walk(s, nd)) &&
2766 (err = lookup_last(nd)) > 0) {
2767 s = trailing_symlink(nd);
2769 if (!err && (nd->flags & LOOKUP_RCU))
2770 err = unlazy_walk(nd);
2772 err = handle_lookup_down(nd);
2775 nd->path.mnt = NULL;
2776 nd->path.dentry = NULL;
2783 filename_mountpoint(int dfd, struct filename *name, struct path *path,
2786 struct nameidata nd;
2789 return PTR_ERR(name);
2790 set_nameidata(&nd, dfd, name);
2791 error = path_mountpoint(&nd, flags | LOOKUP_RCU, path);
2792 if (unlikely(error == -ECHILD))
2793 error = path_mountpoint(&nd, flags, path);
2794 if (unlikely(error == -ESTALE))
2795 error = path_mountpoint(&nd, flags | LOOKUP_REVAL, path);
2797 audit_inode(name, path->dentry, AUDIT_INODE_NOEVAL);
2798 restore_nameidata();
2804 * user_path_mountpoint_at - lookup a path from userland in order to umount it
2805 * @dfd: directory file descriptor
2806 * @name: pathname from userland
2807 * @flags: lookup flags
2808 * @path: pointer to container to hold result
2810 * A umount is a special case for path walking. We're not actually interested
2811 * in the inode in this situation, and ESTALE errors can be a problem. We
2812 * simply want track down the dentry and vfsmount attached at the mountpoint
2813 * and avoid revalidating the last component.
2815 * Returns 0 and populates "path" on success.
2818 user_path_mountpoint_at(int dfd, const char __user *name, unsigned int flags,
2821 return filename_mountpoint(dfd, getname(name), path, flags);
2825 kern_path_mountpoint(int dfd, const char *name, struct path *path,
2828 return filename_mountpoint(dfd, getname_kernel(name), path, flags);
2830 EXPORT_SYMBOL(kern_path_mountpoint);
2832 int __check_sticky(struct inode *dir, struct inode *inode)
2834 kuid_t fsuid = current_fsuid();
2836 if (uid_eq(inode->i_uid, fsuid))
2838 if (uid_eq(dir->i_uid, fsuid))
2840 return !capable_wrt_inode_uidgid(inode, CAP_FOWNER);
2842 EXPORT_SYMBOL(__check_sticky);
2845 * Check whether we can remove a link victim from directory dir, check
2846 * whether the type of victim is right.
2847 * 1. We can't do it if dir is read-only (done in permission())
2848 * 2. We should have write and exec permissions on dir
2849 * 3. We can't remove anything from append-only dir
2850 * 4. We can't do anything with immutable dir (done in permission())
2851 * 5. If the sticky bit on dir is set we should either
2852 * a. be owner of dir, or
2853 * b. be owner of victim, or
2854 * c. have CAP_FOWNER capability
2855 * 6. If the victim is append-only or immutable we can't do antyhing with
2856 * links pointing to it.
2857 * 7. If the victim has an unknown uid or gid we can't change the inode.
2858 * 8. If we were asked to remove a directory and victim isn't one - ENOTDIR.
2859 * 9. If we were asked to remove a non-directory and victim isn't one - EISDIR.
2860 * 10. We can't remove a root or mountpoint.
2861 * 11. We don't allow removal of NFS sillyrenamed files; it's handled by
2862 * nfs_async_unlink().
2864 static int may_delete(struct inode *dir, struct dentry *victim, bool isdir)
2866 struct inode *inode = d_backing_inode(victim);
2869 if (d_is_negative(victim))
2873 BUG_ON(victim->d_parent->d_inode != dir);
2875 /* Inode writeback is not safe when the uid or gid are invalid. */
2876 if (!uid_valid(inode->i_uid) || !gid_valid(inode->i_gid))
2879 audit_inode_child(dir, victim, AUDIT_TYPE_CHILD_DELETE);
2881 error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
2887 if (check_sticky(dir, inode) || IS_APPEND(inode) ||
2888 IS_IMMUTABLE(inode) || IS_SWAPFILE(inode) || HAS_UNMAPPED_ID(inode))
2891 if (!d_is_dir(victim))
2893 if (IS_ROOT(victim))
2895 } else if (d_is_dir(victim))
2897 if (IS_DEADDIR(dir))
2899 if (victim->d_flags & DCACHE_NFSFS_RENAMED)
2904 /* Check whether we can create an object with dentry child in directory
2906 * 1. We can't do it if child already exists (open has special treatment for
2907 * this case, but since we are inlined it's OK)
2908 * 2. We can't do it if dir is read-only (done in permission())
2909 * 3. We can't do it if the fs can't represent the fsuid or fsgid.
2910 * 4. We should have write and exec permissions on dir
2911 * 5. We can't do it if dir is immutable (done in permission())
2913 static inline int may_create(struct inode *dir, struct dentry *child)
2915 struct user_namespace *s_user_ns;
2916 audit_inode_child(dir, child, AUDIT_TYPE_CHILD_CREATE);
2919 if (IS_DEADDIR(dir))
2921 s_user_ns = dir->i_sb->s_user_ns;
2922 if (!kuid_has_mapping(s_user_ns, current_fsuid()) ||
2923 !kgid_has_mapping(s_user_ns, current_fsgid()))
2925 return inode_permission(dir, MAY_WRITE | MAY_EXEC);
2929 * p1 and p2 should be directories on the same fs.
2931 struct dentry *lock_rename(struct dentry *p1, struct dentry *p2)
2936 inode_lock_nested(p1->d_inode, I_MUTEX_PARENT);
2940 mutex_lock(&p1->d_sb->s_vfs_rename_mutex);
2942 p = d_ancestor(p2, p1);
2944 inode_lock_nested(p2->d_inode, I_MUTEX_PARENT);
2945 inode_lock_nested(p1->d_inode, I_MUTEX_CHILD);
2949 p = d_ancestor(p1, p2);
2951 inode_lock_nested(p1->d_inode, I_MUTEX_PARENT);
2952 inode_lock_nested(p2->d_inode, I_MUTEX_CHILD);
2956 inode_lock_nested(p1->d_inode, I_MUTEX_PARENT);
2957 inode_lock_nested(p2->d_inode, I_MUTEX_PARENT2);
2960 EXPORT_SYMBOL(lock_rename);
2962 void unlock_rename(struct dentry *p1, struct dentry *p2)
2964 inode_unlock(p1->d_inode);
2966 inode_unlock(p2->d_inode);
2967 mutex_unlock(&p1->d_sb->s_vfs_rename_mutex);
2970 EXPORT_SYMBOL(unlock_rename);
2972 int vfs_create(struct inode *dir, struct dentry *dentry, umode_t mode,
2975 int error = may_create(dir, dentry);
2979 if (!dir->i_op->create)
2980 return -EACCES; /* shouldn't it be ENOSYS? */
2983 error = security_inode_create(dir, dentry, mode);
2986 error = dir->i_op->create(dir, dentry, mode, want_excl);
2988 fsnotify_create(dir, dentry);
2991 EXPORT_SYMBOL(vfs_create);
2993 int vfs_mkobj(struct dentry *dentry, umode_t mode,
2994 int (*f)(struct dentry *, umode_t, void *),
2997 struct inode *dir = dentry->d_parent->d_inode;
2998 int error = may_create(dir, dentry);
3004 error = security_inode_create(dir, dentry, mode);
3007 error = f(dentry, mode, arg);
3009 fsnotify_create(dir, dentry);
3012 EXPORT_SYMBOL(vfs_mkobj);
3014 bool may_open_dev(const struct path *path)
3016 return !(path->mnt->mnt_flags & MNT_NODEV) &&
3017 !(path->mnt->mnt_sb->s_iflags & SB_I_NODEV);
3020 static int may_open(const struct path *path, int acc_mode, int flag)
3022 struct dentry *dentry = path->dentry;
3023 struct inode *inode = dentry->d_inode;
3029 switch (inode->i_mode & S_IFMT) {
3033 if (acc_mode & MAY_WRITE)
3038 if (!may_open_dev(path))
3047 error = inode_permission(inode, MAY_OPEN | acc_mode);
3052 * An append-only file must be opened in append mode for writing.
3054 if (IS_APPEND(inode)) {
3055 if ((flag & O_ACCMODE) != O_RDONLY && !(flag & O_APPEND))
3061 /* O_NOATIME can only be set by the owner or superuser */
3062 if (flag & O_NOATIME && !inode_owner_or_capable(inode))
3068 static int handle_truncate(struct file *filp)
3070 const struct path *path = &filp->f_path;
3071 struct inode *inode = path->dentry->d_inode;
3072 int error = get_write_access(inode);
3076 * Refuse to truncate files with mandatory locks held on them.
3078 error = locks_verify_locked(filp);
3080 error = security_path_truncate(path);
3082 error = do_truncate(path->dentry, 0,
3083 ATTR_MTIME|ATTR_CTIME|ATTR_OPEN,
3086 put_write_access(inode);
3090 static inline int open_to_namei_flags(int flag)
3092 if ((flag & O_ACCMODE) == 3)
3097 static int may_o_create(const struct path *dir, struct dentry *dentry, umode_t mode)
3099 struct user_namespace *s_user_ns;
3100 int error = security_path_mknod(dir, dentry, mode, 0);
3104 s_user_ns = dir->dentry->d_sb->s_user_ns;
3105 if (!kuid_has_mapping(s_user_ns, current_fsuid()) ||
3106 !kgid_has_mapping(s_user_ns, current_fsgid()))
3109 error = inode_permission(dir->dentry->d_inode, MAY_WRITE | MAY_EXEC);
3113 return security_inode_create(dir->dentry->d_inode, dentry, mode);
3117 * Attempt to atomically look up, create and open a file from a negative
3120 * Returns 0 if successful. The file will have been created and attached to
3121 * @file by the filesystem calling finish_open().
3123 * If the file was looked up only or didn't need creating, FMODE_OPENED won't
3124 * be set. The caller will need to perform the open themselves. @path will
3125 * have been updated to point to the new dentry. This may be negative.
3127 * Returns an error code otherwise.
3129 static int atomic_open(struct nameidata *nd, struct dentry *dentry,
3130 struct path *path, struct file *file,
3131 const struct open_flags *op,
3132 int open_flag, umode_t mode)
3134 struct dentry *const DENTRY_NOT_SET = (void *) -1UL;
3135 struct inode *dir = nd->path.dentry->d_inode;
3138 if (!(~open_flag & (O_EXCL | O_CREAT))) /* both O_EXCL and O_CREAT */
3139 open_flag &= ~O_TRUNC;
3141 if (nd->flags & LOOKUP_DIRECTORY)
3142 open_flag |= O_DIRECTORY;
3144 file->f_path.dentry = DENTRY_NOT_SET;
3145 file->f_path.mnt = nd->path.mnt;
3146 error = dir->i_op->atomic_open(dir, dentry, file,
3147 open_to_namei_flags(open_flag), mode);
3148 d_lookup_done(dentry);
3150 if (file->f_mode & FMODE_OPENED) {
3152 * We didn't have the inode before the open, so check open
3155 int acc_mode = op->acc_mode;
3156 if (file->f_mode & FMODE_CREATED) {
3157 WARN_ON(!(open_flag & O_CREAT));
3158 fsnotify_create(dir, dentry);
3161 error = may_open(&file->f_path, acc_mode, open_flag);
3162 if (WARN_ON(error > 0))
3164 } else if (WARN_ON(file->f_path.dentry == DENTRY_NOT_SET)) {
3167 if (file->f_path.dentry) {
3169 dentry = file->f_path.dentry;
3171 if (file->f_mode & FMODE_CREATED)
3172 fsnotify_create(dir, dentry);
3173 if (unlikely(d_is_negative(dentry))) {
3176 path->dentry = dentry;
3177 path->mnt = nd->path.mnt;
3187 * Look up and maybe create and open the last component.
3189 * Must be called with parent locked (exclusive in O_CREAT case).
3191 * Returns 0 on success, that is, if
3192 * the file was successfully atomically created (if necessary) and opened, or
3193 * the file was not completely opened at this time, though lookups and
3194 * creations were performed.
3195 * These case are distinguished by presence of FMODE_OPENED on file->f_mode.
3196 * In the latter case dentry returned in @path might be negative if O_CREAT
3197 * hadn't been specified.
3199 * An error code is returned on failure.
3201 static int lookup_open(struct nameidata *nd, struct path *path,
3203 const struct open_flags *op,
3206 struct dentry *dir = nd->path.dentry;
3207 struct inode *dir_inode = dir->d_inode;
3208 int open_flag = op->open_flag;
3209 struct dentry *dentry;
3210 int error, create_error = 0;
3211 umode_t mode = op->mode;
3212 DECLARE_WAIT_QUEUE_HEAD_ONSTACK(wq);
3214 if (unlikely(IS_DEADDIR(dir_inode)))
3217 file->f_mode &= ~FMODE_CREATED;
3218 dentry = d_lookup(dir, &nd->last);
3221 dentry = d_alloc_parallel(dir, &nd->last, &wq);
3223 return PTR_ERR(dentry);
3225 if (d_in_lookup(dentry))
3228 error = d_revalidate(dentry, nd->flags);
3229 if (likely(error > 0))
3233 d_invalidate(dentry);
3237 if (dentry->d_inode) {
3238 /* Cached positive dentry: will open in f_op->open */
3243 * Checking write permission is tricky, bacuse we don't know if we are
3244 * going to actually need it: O_CREAT opens should work as long as the
3245 * file exists. But checking existence breaks atomicity. The trick is
3246 * to check access and if not granted clear O_CREAT from the flags.
3248 * Another problem is returing the "right" error value (e.g. for an
3249 * O_EXCL open we want to return EEXIST not EROFS).
3251 if (open_flag & O_CREAT) {
3252 if (!IS_POSIXACL(dir->d_inode))
3253 mode &= ~current_umask();
3254 if (unlikely(!got_write)) {
3255 create_error = -EROFS;
3256 open_flag &= ~O_CREAT;
3257 if (open_flag & (O_EXCL | O_TRUNC))
3259 /* No side effects, safe to clear O_CREAT */
3261 create_error = may_o_create(&nd->path, dentry, mode);
3263 open_flag &= ~O_CREAT;
3264 if (open_flag & O_EXCL)
3268 } else if ((open_flag & (O_TRUNC|O_WRONLY|O_RDWR)) &&
3269 unlikely(!got_write)) {
3271 * No O_CREATE -> atomicity not a requirement -> fall
3272 * back to lookup + open
3277 if (dir_inode->i_op->atomic_open) {
3278 error = atomic_open(nd, dentry, path, file, op, open_flag,
3280 if (unlikely(error == -ENOENT) && create_error)
3281 error = create_error;
3286 if (d_in_lookup(dentry)) {
3287 struct dentry *res = dir_inode->i_op->lookup(dir_inode, dentry,
3289 d_lookup_done(dentry);
3290 if (unlikely(res)) {
3292 error = PTR_ERR(res);
3300 /* Negative dentry, just create the file */
3301 if (!dentry->d_inode && (open_flag & O_CREAT)) {
3302 file->f_mode |= FMODE_CREATED;
3303 audit_inode_child(dir_inode, dentry, AUDIT_TYPE_CHILD_CREATE);
3304 if (!dir_inode->i_op->create) {
3308 error = dir_inode->i_op->create(dir_inode, dentry, mode,
3309 open_flag & O_EXCL);
3312 fsnotify_create(dir_inode, dentry);
3314 if (unlikely(create_error) && !dentry->d_inode) {
3315 error = create_error;
3319 path->dentry = dentry;
3320 path->mnt = nd->path.mnt;
3329 * Handle the last step of open()
3331 static int do_last(struct nameidata *nd,
3332 struct file *file, const struct open_flags *op)
3334 struct dentry *dir = nd->path.dentry;
3335 int open_flag = op->open_flag;
3336 bool will_truncate = (open_flag & O_TRUNC) != 0;
3337 bool got_write = false;
3338 int acc_mode = op->acc_mode;
3340 struct inode *inode;
3344 nd->flags &= ~LOOKUP_PARENT;
3345 nd->flags |= op->intent;
3347 if (nd->last_type != LAST_NORM) {
3348 error = handle_dots(nd, nd->last_type);
3349 if (unlikely(error))
3354 if (!(open_flag & O_CREAT)) {
3355 if (nd->last.name[nd->last.len])
3356 nd->flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
3357 /* we _can_ be in RCU mode here */
3358 error = lookup_fast(nd, &path, &inode, &seq);
3359 if (likely(error > 0))
3365 BUG_ON(nd->inode != dir->d_inode);
3366 BUG_ON(nd->flags & LOOKUP_RCU);
3368 /* create side of things */
3370 * This will *only* deal with leaving RCU mode - LOOKUP_JUMPED
3371 * has been cleared when we got to the last component we are
3374 error = complete_walk(nd);
3378 audit_inode(nd->name, dir, AUDIT_INODE_PARENT);
3379 /* trailing slashes? */
3380 if (unlikely(nd->last.name[nd->last.len]))
3384 if (open_flag & (O_CREAT | O_TRUNC | O_WRONLY | O_RDWR)) {
3385 error = mnt_want_write(nd->path.mnt);
3389 * do _not_ fail yet - we might not need that or fail with
3390 * a different error; let lookup_open() decide; we'll be
3391 * dropping this one anyway.
3394 if (open_flag & O_CREAT)
3395 inode_lock(dir->d_inode);
3397 inode_lock_shared(dir->d_inode);
3398 error = lookup_open(nd, &path, file, op, got_write);
3399 if (open_flag & O_CREAT)
3400 inode_unlock(dir->d_inode);
3402 inode_unlock_shared(dir->d_inode);
3407 if (file->f_mode & FMODE_OPENED) {
3408 if ((file->f_mode & FMODE_CREATED) ||
3409 !S_ISREG(file_inode(file)->i_mode))
3410 will_truncate = false;
3412 audit_inode(nd->name, file->f_path.dentry, 0);
3416 if (file->f_mode & FMODE_CREATED) {
3417 /* Don't check for write permission, don't truncate */
3418 open_flag &= ~O_TRUNC;
3419 will_truncate = false;
3421 path_to_nameidata(&path, nd);
3422 goto finish_open_created;
3426 * If atomic_open() acquired write access it is dropped now due to
3427 * possible mount and symlink following (this might be optimized away if
3431 mnt_drop_write(nd->path.mnt);
3435 error = follow_managed(&path, nd);
3436 if (unlikely(error < 0))
3440 * create/update audit record if it already exists.
3442 audit_inode(nd->name, path.dentry, 0);
3444 if (unlikely((open_flag & (O_EXCL | O_CREAT)) == (O_EXCL | O_CREAT))) {
3445 path_to_nameidata(&path, nd);
3449 seq = 0; /* out of RCU mode, so the value doesn't matter */
3450 inode = d_backing_inode(path.dentry);
3452 error = step_into(nd, &path, 0, inode, seq);
3453 if (unlikely(error))
3456 /* Why this, you ask? _Now_ we might have grown LOOKUP_JUMPED... */
3457 error = complete_walk(nd);
3460 audit_inode(nd->name, nd->path.dentry, 0);
3461 if (open_flag & O_CREAT) {
3463 if (d_is_dir(nd->path.dentry))
3465 error = may_create_in_sticky(dir,
3466 d_backing_inode(nd->path.dentry));
3467 if (unlikely(error))
3471 if ((nd->flags & LOOKUP_DIRECTORY) && !d_can_lookup(nd->path.dentry))
3473 if (!d_is_reg(nd->path.dentry))
3474 will_truncate = false;
3476 if (will_truncate) {
3477 error = mnt_want_write(nd->path.mnt);
3482 finish_open_created:
3483 error = may_open(&nd->path, acc_mode, open_flag);
3486 BUG_ON(file->f_mode & FMODE_OPENED); /* once it's opened, it's opened */
3487 error = vfs_open(&nd->path, file);
3491 error = ima_file_check(file, op->acc_mode);
3492 if (!error && will_truncate)
3493 error = handle_truncate(file);
3495 if (unlikely(error > 0)) {
3500 mnt_drop_write(nd->path.mnt);
3504 struct dentry *vfs_tmpfile(struct dentry *dentry, umode_t mode, int open_flag)
3506 struct dentry *child = NULL;
3507 struct inode *dir = dentry->d_inode;
3508 struct inode *inode;
3511 /* we want directory to be writable */
3512 error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
3515 error = -EOPNOTSUPP;
3516 if (!dir->i_op->tmpfile)
3519 child = d_alloc(dentry, &slash_name);
3520 if (unlikely(!child))
3522 error = dir->i_op->tmpfile(dir, child, mode);
3526 inode = child->d_inode;
3527 if (unlikely(!inode))
3529 if (!(open_flag & O_EXCL)) {
3530 spin_lock(&inode->i_lock);
3531 inode->i_state |= I_LINKABLE;
3532 spin_unlock(&inode->i_lock);
3534 ima_post_create_tmpfile(inode);
3539 return ERR_PTR(error);
3541 EXPORT_SYMBOL(vfs_tmpfile);
3543 static int do_tmpfile(struct nameidata *nd, unsigned flags,
3544 const struct open_flags *op,
3547 struct dentry *child;
3549 int error = path_lookupat(nd, flags | LOOKUP_DIRECTORY, &path);
3550 if (unlikely(error))
3552 error = mnt_want_write(path.mnt);
3553 if (unlikely(error))
3555 child = vfs_tmpfile(path.dentry, op->mode, op->open_flag);
3556 error = PTR_ERR(child);
3560 path.dentry = child;
3561 audit_inode(nd->name, child, 0);
3562 /* Don't check for other permissions, the inode was just created */
3563 error = may_open(&path, 0, op->open_flag);
3566 file->f_path.mnt = path.mnt;
3567 error = finish_open(file, child, NULL);
3569 mnt_drop_write(path.mnt);
3575 static int do_o_path(struct nameidata *nd, unsigned flags, struct file *file)
3578 int error = path_lookupat(nd, flags, &path);
3580 audit_inode(nd->name, path.dentry, 0);
3581 error = vfs_open(&path, file);
3587 static struct file *path_openat(struct nameidata *nd,
3588 const struct open_flags *op, unsigned flags)
3593 file = alloc_empty_file(op->open_flag, current_cred());
3597 if (unlikely(file->f_flags & __O_TMPFILE)) {
3598 error = do_tmpfile(nd, flags, op, file);
3599 } else if (unlikely(file->f_flags & O_PATH)) {
3600 error = do_o_path(nd, flags, file);
3602 const char *s = path_init(nd, flags);
3603 while (!(error = link_path_walk(s, nd)) &&
3604 (error = do_last(nd, file, op)) > 0) {
3605 nd->flags &= ~(LOOKUP_OPEN|LOOKUP_CREATE|LOOKUP_EXCL);
3606 s = trailing_symlink(nd);
3610 if (likely(!error)) {
3611 if (likely(file->f_mode & FMODE_OPENED))
3617 if (error == -EOPENSTALE) {
3618 if (flags & LOOKUP_RCU)
3623 return ERR_PTR(error);
3626 struct file *do_filp_open(int dfd, struct filename *pathname,
3627 const struct open_flags *op)
3629 struct nameidata nd;
3630 int flags = op->lookup_flags;
3633 set_nameidata(&nd, dfd, pathname);
3634 filp = path_openat(&nd, op, flags | LOOKUP_RCU);
3635 if (unlikely(filp == ERR_PTR(-ECHILD)))
3636 filp = path_openat(&nd, op, flags);
3637 if (unlikely(filp == ERR_PTR(-ESTALE)))
3638 filp = path_openat(&nd, op, flags | LOOKUP_REVAL);
3639 restore_nameidata();
3643 struct file *do_file_open_root(struct dentry *dentry, struct vfsmount *mnt,
3644 const char *name, const struct open_flags *op)
3646 struct nameidata nd;
3648 struct filename *filename;
3649 int flags = op->lookup_flags | LOOKUP_ROOT;
3652 nd.root.dentry = dentry;
3654 if (d_is_symlink(dentry) && op->intent & LOOKUP_OPEN)
3655 return ERR_PTR(-ELOOP);
3657 filename = getname_kernel(name);
3658 if (IS_ERR(filename))
3659 return ERR_CAST(filename);
3661 set_nameidata(&nd, -1, filename);
3662 file = path_openat(&nd, op, flags | LOOKUP_RCU);
3663 if (unlikely(file == ERR_PTR(-ECHILD)))
3664 file = path_openat(&nd, op, flags);
3665 if (unlikely(file == ERR_PTR(-ESTALE)))
3666 file = path_openat(&nd, op, flags | LOOKUP_REVAL);
3667 restore_nameidata();
3672 static struct dentry *filename_create(int dfd, struct filename *name,
3673 struct path *path, unsigned int lookup_flags)
3675 struct dentry *dentry = ERR_PTR(-EEXIST);
3680 bool is_dir = (lookup_flags & LOOKUP_DIRECTORY);
3683 * Note that only LOOKUP_REVAL and LOOKUP_DIRECTORY matter here. Any
3684 * other flags passed in are ignored!
3686 lookup_flags &= LOOKUP_REVAL;
3688 name = filename_parentat(dfd, name, lookup_flags, path, &last, &type);
3690 return ERR_CAST(name);
3693 * Yucky last component or no last component at all?
3694 * (foo/., foo/.., /////)
3696 if (unlikely(type != LAST_NORM))
3699 /* don't fail immediately if it's r/o, at least try to report other errors */
3700 err2 = mnt_want_write(path->mnt);
3702 * Do the final lookup.
3704 lookup_flags |= LOOKUP_CREATE | LOOKUP_EXCL;
3705 inode_lock_nested(path->dentry->d_inode, I_MUTEX_PARENT);
3706 dentry = __lookup_hash(&last, path->dentry, lookup_flags);
3711 if (d_is_positive(dentry))
3715 * Special case - lookup gave negative, but... we had foo/bar/
3716 * From the vfs_mknod() POV we just have a negative dentry -
3717 * all is fine. Let's be bastards - you had / on the end, you've
3718 * been asking for (non-existent) directory. -ENOENT for you.
3720 if (unlikely(!is_dir && last.name[last.len])) {
3724 if (unlikely(err2)) {
3732 dentry = ERR_PTR(error);
3734 inode_unlock(path->dentry->d_inode);
3736 mnt_drop_write(path->mnt);
3743 struct dentry *kern_path_create(int dfd, const char *pathname,
3744 struct path *path, unsigned int lookup_flags)
3746 return filename_create(dfd, getname_kernel(pathname),
3747 path, lookup_flags);
3749 EXPORT_SYMBOL(kern_path_create);
3751 void done_path_create(struct path *path, struct dentry *dentry)
3754 inode_unlock(path->dentry->d_inode);
3755 mnt_drop_write(path->mnt);
3758 EXPORT_SYMBOL(done_path_create);
3760 inline struct dentry *user_path_create(int dfd, const char __user *pathname,
3761 struct path *path, unsigned int lookup_flags)
3763 return filename_create(dfd, getname(pathname), path, lookup_flags);
3765 EXPORT_SYMBOL(user_path_create);
3767 int vfs_mknod(struct inode *dir, struct dentry *dentry, umode_t mode, dev_t dev)
3769 int error = may_create(dir, dentry);
3774 if ((S_ISCHR(mode) || S_ISBLK(mode)) && !capable(CAP_MKNOD))
3777 if (!dir->i_op->mknod)
3780 error = devcgroup_inode_mknod(mode, dev);
3784 error = security_inode_mknod(dir, dentry, mode, dev);
3788 error = dir->i_op->mknod(dir, dentry, mode, dev);
3790 fsnotify_create(dir, dentry);
3793 EXPORT_SYMBOL(vfs_mknod);
3795 static int may_mknod(umode_t mode)
3797 switch (mode & S_IFMT) {
3803 case 0: /* zero mode translates to S_IFREG */
3812 long do_mknodat(int dfd, const char __user *filename, umode_t mode,
3815 struct dentry *dentry;
3818 unsigned int lookup_flags = 0;
3820 error = may_mknod(mode);
3824 dentry = user_path_create(dfd, filename, &path, lookup_flags);
3826 return PTR_ERR(dentry);
3828 if (!IS_POSIXACL(path.dentry->d_inode))
3829 mode &= ~current_umask();
3830 error = security_path_mknod(&path, dentry, mode, dev);
3833 switch (mode & S_IFMT) {
3834 case 0: case S_IFREG:
3835 error = vfs_create(path.dentry->d_inode,dentry,mode,true);
3837 ima_post_path_mknod(dentry);
3839 case S_IFCHR: case S_IFBLK:
3840 error = vfs_mknod(path.dentry->d_inode,dentry,mode,
3841 new_decode_dev(dev));
3843 case S_IFIFO: case S_IFSOCK:
3844 error = vfs_mknod(path.dentry->d_inode,dentry,mode,0);
3848 done_path_create(&path, dentry);
3849 if (retry_estale(error, lookup_flags)) {
3850 lookup_flags |= LOOKUP_REVAL;
3856 SYSCALL_DEFINE4(mknodat, int, dfd, const char __user *, filename, umode_t, mode,
3859 return do_mknodat(dfd, filename, mode, dev);
3862 SYSCALL_DEFINE3(mknod, const char __user *, filename, umode_t, mode, unsigned, dev)
3864 return do_mknodat(AT_FDCWD, filename, mode, dev);
3867 int vfs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
3869 int error = may_create(dir, dentry);
3870 unsigned max_links = dir->i_sb->s_max_links;
3875 if (!dir->i_op->mkdir)
3878 mode &= (S_IRWXUGO|S_ISVTX);
3879 error = security_inode_mkdir(dir, dentry, mode);
3883 if (max_links && dir->i_nlink >= max_links)
3886 error = dir->i_op->mkdir(dir, dentry, mode);
3888 fsnotify_mkdir(dir, dentry);
3891 EXPORT_SYMBOL(vfs_mkdir);
3893 long do_mkdirat(int dfd, const char __user *pathname, umode_t mode)
3895 struct dentry *dentry;
3898 unsigned int lookup_flags = LOOKUP_DIRECTORY;
3901 dentry = user_path_create(dfd, pathname, &path, lookup_flags);
3903 return PTR_ERR(dentry);
3905 if (!IS_POSIXACL(path.dentry->d_inode))
3906 mode &= ~current_umask();
3907 error = security_path_mkdir(&path, dentry, mode);
3909 error = vfs_mkdir(path.dentry->d_inode, dentry, mode);
3910 done_path_create(&path, dentry);
3911 if (retry_estale(error, lookup_flags)) {
3912 lookup_flags |= LOOKUP_REVAL;
3918 SYSCALL_DEFINE3(mkdirat, int, dfd, const char __user *, pathname, umode_t, mode)
3920 return do_mkdirat(dfd, pathname, mode);
3923 SYSCALL_DEFINE2(mkdir, const char __user *, pathname, umode_t, mode)
3925 return do_mkdirat(AT_FDCWD, pathname, mode);
3928 int vfs_rmdir(struct inode *dir, struct dentry *dentry)
3930 int error = may_delete(dir, dentry, 1);
3935 if (!dir->i_op->rmdir)
3939 inode_lock(dentry->d_inode);
3942 if (is_local_mountpoint(dentry))
3945 error = security_inode_rmdir(dir, dentry);
3949 error = dir->i_op->rmdir(dir, dentry);
3953 shrink_dcache_parent(dentry);
3954 dentry->d_inode->i_flags |= S_DEAD;
3956 detach_mounts(dentry);
3957 fsnotify_rmdir(dir, dentry);
3960 inode_unlock(dentry->d_inode);
3966 EXPORT_SYMBOL(vfs_rmdir);
3968 long do_rmdir(int dfd, const char __user *pathname)
3971 struct filename *name;
3972 struct dentry *dentry;
3976 unsigned int lookup_flags = 0;
3978 name = filename_parentat(dfd, getname(pathname), lookup_flags,
3979 &path, &last, &type);
3981 return PTR_ERR(name);
3995 error = mnt_want_write(path.mnt);
3999 inode_lock_nested(path.dentry->d_inode, I_MUTEX_PARENT);
4000 dentry = __lookup_hash(&last, path.dentry, lookup_flags);
4001 error = PTR_ERR(dentry);
4004 if (!dentry->d_inode) {
4008 error = security_path_rmdir(&path, dentry);
4011 error = vfs_rmdir(path.dentry->d_inode, dentry);
4015 inode_unlock(path.dentry->d_inode);
4016 mnt_drop_write(path.mnt);
4020 if (retry_estale(error, lookup_flags)) {
4021 lookup_flags |= LOOKUP_REVAL;
4027 SYSCALL_DEFINE1(rmdir, const char __user *, pathname)
4029 return do_rmdir(AT_FDCWD, pathname);
4033 * vfs_unlink - unlink a filesystem object
4034 * @dir: parent directory
4036 * @delegated_inode: returns victim inode, if the inode is delegated.
4038 * The caller must hold dir->i_mutex.
4040 * If vfs_unlink discovers a delegation, it will return -EWOULDBLOCK and
4041 * return a reference to the inode in delegated_inode. The caller
4042 * should then break the delegation on that inode and retry. Because
4043 * breaking a delegation may take a long time, the caller should drop
4044 * dir->i_mutex before doing so.
4046 * Alternatively, a caller may pass NULL for delegated_inode. This may
4047 * be appropriate for callers that expect the underlying filesystem not
4048 * to be NFS exported.
4050 int vfs_unlink(struct inode *dir, struct dentry *dentry, struct inode **delegated_inode)
4052 struct inode *target = dentry->d_inode;
4053 int error = may_delete(dir, dentry, 0);
4058 if (!dir->i_op->unlink)
4062 if (is_local_mountpoint(dentry))
4065 error = security_inode_unlink(dir, dentry);
4067 error = try_break_deleg(target, delegated_inode);
4070 error = dir->i_op->unlink(dir, dentry);
4073 detach_mounts(dentry);
4074 fsnotify_unlink(dir, dentry);
4079 inode_unlock(target);
4081 /* We don't d_delete() NFS sillyrenamed files--they still exist. */
4082 if (!error && !(dentry->d_flags & DCACHE_NFSFS_RENAMED)) {
4083 fsnotify_link_count(target);
4089 EXPORT_SYMBOL(vfs_unlink);
4092 * Make sure that the actual truncation of the file will occur outside its
4093 * directory's i_mutex. Truncate can take a long time if there is a lot of
4094 * writeout happening, and we don't want to prevent access to the directory
4095 * while waiting on the I/O.
4097 long do_unlinkat(int dfd, struct filename *name)
4100 struct dentry *dentry;
4104 struct inode *inode = NULL;
4105 struct inode *delegated_inode = NULL;
4106 unsigned int lookup_flags = 0;
4108 name = filename_parentat(dfd, name, lookup_flags, &path, &last, &type);
4110 return PTR_ERR(name);
4113 if (type != LAST_NORM)
4116 error = mnt_want_write(path.mnt);
4120 inode_lock_nested(path.dentry->d_inode, I_MUTEX_PARENT);
4121 dentry = __lookup_hash(&last, path.dentry, lookup_flags);
4122 error = PTR_ERR(dentry);
4123 if (!IS_ERR(dentry)) {
4124 /* Why not before? Because we want correct error value */
4125 if (last.name[last.len])
4127 inode = dentry->d_inode;
4128 if (d_is_negative(dentry))
4131 error = security_path_unlink(&path, dentry);
4134 error = vfs_unlink(path.dentry->d_inode, dentry, &delegated_inode);
4138 inode_unlock(path.dentry->d_inode);
4140 iput(inode); /* truncate the inode here */
4142 if (delegated_inode) {
4143 error = break_deleg_wait(&delegated_inode);
4147 mnt_drop_write(path.mnt);
4150 if (retry_estale(error, lookup_flags)) {
4151 lookup_flags |= LOOKUP_REVAL;
4159 if (d_is_negative(dentry))
4161 else if (d_is_dir(dentry))
4168 SYSCALL_DEFINE3(unlinkat, int, dfd, const char __user *, pathname, int, flag)
4170 if ((flag & ~AT_REMOVEDIR) != 0)
4173 if (flag & AT_REMOVEDIR)
4174 return do_rmdir(dfd, pathname);
4176 return do_unlinkat(dfd, getname(pathname));
4179 SYSCALL_DEFINE1(unlink, const char __user *, pathname)
4181 return do_unlinkat(AT_FDCWD, getname(pathname));
4184 int vfs_symlink(struct inode *dir, struct dentry *dentry, const char *oldname)
4186 int error = may_create(dir, dentry);
4191 if (!dir->i_op->symlink)
4194 error = security_inode_symlink(dir, dentry, oldname);
4198 error = dir->i_op->symlink(dir, dentry, oldname);
4200 fsnotify_create(dir, dentry);
4203 EXPORT_SYMBOL(vfs_symlink);
4205 long do_symlinkat(const char __user *oldname, int newdfd,
4206 const char __user *newname)
4209 struct filename *from;
4210 struct dentry *dentry;
4212 unsigned int lookup_flags = 0;
4214 from = getname(oldname);
4216 return PTR_ERR(from);
4218 dentry = user_path_create(newdfd, newname, &path, lookup_flags);
4219 error = PTR_ERR(dentry);
4223 error = security_path_symlink(&path, dentry, from->name);
4225 error = vfs_symlink(path.dentry->d_inode, dentry, from->name);
4226 done_path_create(&path, dentry);
4227 if (retry_estale(error, lookup_flags)) {
4228 lookup_flags |= LOOKUP_REVAL;
4236 SYSCALL_DEFINE3(symlinkat, const char __user *, oldname,
4237 int, newdfd, const char __user *, newname)
4239 return do_symlinkat(oldname, newdfd, newname);
4242 SYSCALL_DEFINE2(symlink, const char __user *, oldname, const char __user *, newname)
4244 return do_symlinkat(oldname, AT_FDCWD, newname);
4248 * vfs_link - create a new link
4249 * @old_dentry: object to be linked
4251 * @new_dentry: where to create the new link
4252 * @delegated_inode: returns inode needing a delegation break
4254 * The caller must hold dir->i_mutex
4256 * If vfs_link discovers a delegation on the to-be-linked file in need
4257 * of breaking, it will return -EWOULDBLOCK and return a reference to the
4258 * inode in delegated_inode. The caller should then break the delegation
4259 * and retry. Because breaking a delegation may take a long time, the
4260 * caller should drop the i_mutex before doing so.
4262 * Alternatively, a caller may pass NULL for delegated_inode. This may
4263 * be appropriate for callers that expect the underlying filesystem not
4264 * to be NFS exported.
4266 int vfs_link(struct dentry *old_dentry, struct inode *dir, struct dentry *new_dentry, struct inode **delegated_inode)
4268 struct inode *inode = old_dentry->d_inode;
4269 unsigned max_links = dir->i_sb->s_max_links;
4275 error = may_create(dir, new_dentry);
4279 if (dir->i_sb != inode->i_sb)
4283 * A link to an append-only or immutable file cannot be created.
4285 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
4288 * Updating the link count will likely cause i_uid and i_gid to
4289 * be writen back improperly if their true value is unknown to
4292 if (HAS_UNMAPPED_ID(inode))
4294 if (!dir->i_op->link)
4296 if (S_ISDIR(inode->i_mode))
4299 error = security_inode_link(old_dentry, dir, new_dentry);
4304 /* Make sure we don't allow creating hardlink to an unlinked file */
4305 if (inode->i_nlink == 0 && !(inode->i_state & I_LINKABLE))
4307 else if (max_links && inode->i_nlink >= max_links)
4310 error = try_break_deleg(inode, delegated_inode);
4312 error = dir->i_op->link(old_dentry, dir, new_dentry);
4315 if (!error && (inode->i_state & I_LINKABLE)) {
4316 spin_lock(&inode->i_lock);
4317 inode->i_state &= ~I_LINKABLE;
4318 spin_unlock(&inode->i_lock);
4320 inode_unlock(inode);
4322 fsnotify_link(dir, inode, new_dentry);
4325 EXPORT_SYMBOL(vfs_link);
4328 * Hardlinks are often used in delicate situations. We avoid
4329 * security-related surprises by not following symlinks on the
4332 * We don't follow them on the oldname either to be compatible
4333 * with linux 2.0, and to avoid hard-linking to directories
4334 * and other special files. --ADM
4336 int do_linkat(int olddfd, const char __user *oldname, int newdfd,
4337 const char __user *newname, int flags)
4339 struct dentry *new_dentry;
4340 struct path old_path, new_path;
4341 struct inode *delegated_inode = NULL;
4345 if ((flags & ~(AT_SYMLINK_FOLLOW | AT_EMPTY_PATH)) != 0)
4348 * To use null names we require CAP_DAC_READ_SEARCH
4349 * This ensures that not everyone will be able to create
4350 * handlink using the passed filedescriptor.
4352 if (flags & AT_EMPTY_PATH) {
4353 if (!capable(CAP_DAC_READ_SEARCH))
4358 if (flags & AT_SYMLINK_FOLLOW)
4359 how |= LOOKUP_FOLLOW;
4361 error = user_path_at(olddfd, oldname, how, &old_path);
4365 new_dentry = user_path_create(newdfd, newname, &new_path,
4366 (how & LOOKUP_REVAL));
4367 error = PTR_ERR(new_dentry);
4368 if (IS_ERR(new_dentry))
4372 if (old_path.mnt != new_path.mnt)
4374 error = may_linkat(&old_path);
4375 if (unlikely(error))
4377 error = security_path_link(old_path.dentry, &new_path, new_dentry);
4380 error = vfs_link(old_path.dentry, new_path.dentry->d_inode, new_dentry, &delegated_inode);
4382 done_path_create(&new_path, new_dentry);
4383 if (delegated_inode) {
4384 error = break_deleg_wait(&delegated_inode);
4386 path_put(&old_path);
4390 if (retry_estale(error, how)) {
4391 path_put(&old_path);
4392 how |= LOOKUP_REVAL;
4396 path_put(&old_path);
4401 SYSCALL_DEFINE5(linkat, int, olddfd, const char __user *, oldname,
4402 int, newdfd, const char __user *, newname, int, flags)
4404 return do_linkat(olddfd, oldname, newdfd, newname, flags);
4407 SYSCALL_DEFINE2(link, const char __user *, oldname, const char __user *, newname)
4409 return do_linkat(AT_FDCWD, oldname, AT_FDCWD, newname, 0);
4413 * vfs_rename - rename a filesystem object
4414 * @old_dir: parent of source
4415 * @old_dentry: source
4416 * @new_dir: parent of destination
4417 * @new_dentry: destination
4418 * @delegated_inode: returns an inode needing a delegation break
4419 * @flags: rename flags
4421 * The caller must hold multiple mutexes--see lock_rename()).
4423 * If vfs_rename discovers a delegation in need of breaking at either
4424 * the source or destination, it will return -EWOULDBLOCK and return a
4425 * reference to the inode in delegated_inode. The caller should then
4426 * break the delegation and retry. Because breaking a delegation may
4427 * take a long time, the caller should drop all locks before doing
4430 * Alternatively, a caller may pass NULL for delegated_inode. This may
4431 * be appropriate for callers that expect the underlying filesystem not
4432 * to be NFS exported.
4434 * The worst of all namespace operations - renaming directory. "Perverted"
4435 * doesn't even start to describe it. Somebody in UCB had a heck of a trip...
4438 * a) we can get into loop creation.
4439 * b) race potential - two innocent renames can create a loop together.
4440 * That's where 4.4 screws up. Current fix: serialization on
4441 * sb->s_vfs_rename_mutex. We might be more accurate, but that's another
4443 * c) we have to lock _four_ objects - parents and victim (if it exists),
4444 * and source (if it is not a directory).
4445 * And that - after we got ->i_mutex on parents (until then we don't know
4446 * whether the target exists). Solution: try to be smart with locking
4447 * order for inodes. We rely on the fact that tree topology may change
4448 * only under ->s_vfs_rename_mutex _and_ that parent of the object we
4449 * move will be locked. Thus we can rank directories by the tree
4450 * (ancestors first) and rank all non-directories after them.
4451 * That works since everybody except rename does "lock parent, lookup,
4452 * lock child" and rename is under ->s_vfs_rename_mutex.
4453 * HOWEVER, it relies on the assumption that any object with ->lookup()
4454 * has no more than 1 dentry. If "hybrid" objects will ever appear,
4455 * we'd better make sure that there's no link(2) for them.
4456 * d) conversion from fhandle to dentry may come in the wrong moment - when
4457 * we are removing the target. Solution: we will have to grab ->i_mutex
4458 * in the fhandle_to_dentry code. [FIXME - current nfsfh.c relies on
4459 * ->i_mutex on parents, which works but leads to some truly excessive
4462 int vfs_rename(struct inode *old_dir, struct dentry *old_dentry,
4463 struct inode *new_dir, struct dentry *new_dentry,
4464 struct inode **delegated_inode, unsigned int flags)
4467 bool is_dir = d_is_dir(old_dentry);
4468 struct inode *source = old_dentry->d_inode;
4469 struct inode *target = new_dentry->d_inode;
4470 bool new_is_dir = false;
4471 unsigned max_links = new_dir->i_sb->s_max_links;
4472 struct name_snapshot old_name;
4474 if (source == target)
4477 error = may_delete(old_dir, old_dentry, is_dir);
4482 error = may_create(new_dir, new_dentry);
4484 new_is_dir = d_is_dir(new_dentry);
4486 if (!(flags & RENAME_EXCHANGE))
4487 error = may_delete(new_dir, new_dentry, is_dir);
4489 error = may_delete(new_dir, new_dentry, new_is_dir);
4494 if (!old_dir->i_op->rename)
4498 * If we are going to change the parent - check write permissions,
4499 * we'll need to flip '..'.
4501 if (new_dir != old_dir) {
4503 error = inode_permission(source, MAY_WRITE);
4507 if ((flags & RENAME_EXCHANGE) && new_is_dir) {
4508 error = inode_permission(target, MAY_WRITE);
4514 error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry,
4519 take_dentry_name_snapshot(&old_name, old_dentry);
4521 if (!is_dir || (flags & RENAME_EXCHANGE))
4522 lock_two_nondirectories(source, target);
4527 if (is_local_mountpoint(old_dentry) || is_local_mountpoint(new_dentry))
4530 if (max_links && new_dir != old_dir) {
4532 if (is_dir && !new_is_dir && new_dir->i_nlink >= max_links)
4534 if ((flags & RENAME_EXCHANGE) && !is_dir && new_is_dir &&
4535 old_dir->i_nlink >= max_links)
4539 error = try_break_deleg(source, delegated_inode);
4543 if (target && !new_is_dir) {
4544 error = try_break_deleg(target, delegated_inode);
4548 error = old_dir->i_op->rename(old_dir, old_dentry,
4549 new_dir, new_dentry, flags);
4553 if (!(flags & RENAME_EXCHANGE) && target) {
4555 shrink_dcache_parent(new_dentry);
4556 target->i_flags |= S_DEAD;
4558 dont_mount(new_dentry);
4559 detach_mounts(new_dentry);
4561 if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE)) {
4562 if (!(flags & RENAME_EXCHANGE))
4563 d_move(old_dentry, new_dentry);
4565 d_exchange(old_dentry, new_dentry);
4568 if (!is_dir || (flags & RENAME_EXCHANGE))
4569 unlock_two_nondirectories(source, target);
4571 inode_unlock(target);
4574 fsnotify_move(old_dir, new_dir, &old_name.name, is_dir,
4575 !(flags & RENAME_EXCHANGE) ? target : NULL, old_dentry);
4576 if (flags & RENAME_EXCHANGE) {
4577 fsnotify_move(new_dir, old_dir, &old_dentry->d_name,
4578 new_is_dir, NULL, new_dentry);
4581 release_dentry_name_snapshot(&old_name);
4585 EXPORT_SYMBOL(vfs_rename);
4587 static int do_renameat2(int olddfd, const char __user *oldname, int newdfd,
4588 const char __user *newname, unsigned int flags)
4590 struct dentry *old_dentry, *new_dentry;
4591 struct dentry *trap;
4592 struct path old_path, new_path;
4593 struct qstr old_last, new_last;
4594 int old_type, new_type;
4595 struct inode *delegated_inode = NULL;
4596 struct filename *from;
4597 struct filename *to;
4598 unsigned int lookup_flags = 0, target_flags = LOOKUP_RENAME_TARGET;
4599 bool should_retry = false;
4602 if (flags & ~(RENAME_NOREPLACE | RENAME_EXCHANGE | RENAME_WHITEOUT))
4605 if ((flags & (RENAME_NOREPLACE | RENAME_WHITEOUT)) &&
4606 (flags & RENAME_EXCHANGE))
4609 if ((flags & RENAME_WHITEOUT) && !capable(CAP_MKNOD))
4612 if (flags & RENAME_EXCHANGE)
4616 from = filename_parentat(olddfd, getname(oldname), lookup_flags,
4617 &old_path, &old_last, &old_type);
4619 error = PTR_ERR(from);
4623 to = filename_parentat(newdfd, getname(newname), lookup_flags,
4624 &new_path, &new_last, &new_type);
4626 error = PTR_ERR(to);
4631 if (old_path.mnt != new_path.mnt)
4635 if (old_type != LAST_NORM)
4638 if (flags & RENAME_NOREPLACE)
4640 if (new_type != LAST_NORM)
4643 error = mnt_want_write(old_path.mnt);
4648 trap = lock_rename(new_path.dentry, old_path.dentry);
4650 old_dentry = __lookup_hash(&old_last, old_path.dentry, lookup_flags);
4651 error = PTR_ERR(old_dentry);
4652 if (IS_ERR(old_dentry))
4654 /* source must exist */
4656 if (d_is_negative(old_dentry))
4658 new_dentry = __lookup_hash(&new_last, new_path.dentry, lookup_flags | target_flags);
4659 error = PTR_ERR(new_dentry);
4660 if (IS_ERR(new_dentry))
4663 if ((flags & RENAME_NOREPLACE) && d_is_positive(new_dentry))
4665 if (flags & RENAME_EXCHANGE) {
4667 if (d_is_negative(new_dentry))
4670 if (!d_is_dir(new_dentry)) {
4672 if (new_last.name[new_last.len])
4676 /* unless the source is a directory trailing slashes give -ENOTDIR */
4677 if (!d_is_dir(old_dentry)) {
4679 if (old_last.name[old_last.len])
4681 if (!(flags & RENAME_EXCHANGE) && new_last.name[new_last.len])
4684 /* source should not be ancestor of target */
4686 if (old_dentry == trap)
4688 /* target should not be an ancestor of source */
4689 if (!(flags & RENAME_EXCHANGE))
4691 if (new_dentry == trap)
4694 error = security_path_rename(&old_path, old_dentry,
4695 &new_path, new_dentry, flags);
4698 error = vfs_rename(old_path.dentry->d_inode, old_dentry,
4699 new_path.dentry->d_inode, new_dentry,
4700 &delegated_inode, flags);
4706 unlock_rename(new_path.dentry, old_path.dentry);
4707 if (delegated_inode) {
4708 error = break_deleg_wait(&delegated_inode);
4712 mnt_drop_write(old_path.mnt);
4714 if (retry_estale(error, lookup_flags))
4715 should_retry = true;
4716 path_put(&new_path);
4719 path_put(&old_path);
4722 should_retry = false;
4723 lookup_flags |= LOOKUP_REVAL;
4730 SYSCALL_DEFINE5(renameat2, int, olddfd, const char __user *, oldname,
4731 int, newdfd, const char __user *, newname, unsigned int, flags)
4733 return do_renameat2(olddfd, oldname, newdfd, newname, flags);
4736 SYSCALL_DEFINE4(renameat, int, olddfd, const char __user *, oldname,
4737 int, newdfd, const char __user *, newname)
4739 return do_renameat2(olddfd, oldname, newdfd, newname, 0);
4742 SYSCALL_DEFINE2(rename, const char __user *, oldname, const char __user *, newname)
4744 return do_renameat2(AT_FDCWD, oldname, AT_FDCWD, newname, 0);
4747 int vfs_whiteout(struct inode *dir, struct dentry *dentry)
4749 int error = may_create(dir, dentry);
4753 if (!dir->i_op->mknod)
4756 return dir->i_op->mknod(dir, dentry,
4757 S_IFCHR | WHITEOUT_MODE, WHITEOUT_DEV);
4759 EXPORT_SYMBOL(vfs_whiteout);
4761 int readlink_copy(char __user *buffer, int buflen, const char *link)
4763 int len = PTR_ERR(link);
4768 if (len > (unsigned) buflen)
4770 if (copy_to_user(buffer, link, len))
4777 * vfs_readlink - copy symlink body into userspace buffer
4778 * @dentry: dentry on which to get symbolic link
4779 * @buffer: user memory pointer
4780 * @buflen: size of buffer
4782 * Does not touch atime. That's up to the caller if necessary
4784 * Does not call security hook.
4786 int vfs_readlink(struct dentry *dentry, char __user *buffer, int buflen)
4788 struct inode *inode = d_inode(dentry);
4789 DEFINE_DELAYED_CALL(done);
4793 if (unlikely(!(inode->i_opflags & IOP_DEFAULT_READLINK))) {
4794 if (unlikely(inode->i_op->readlink))
4795 return inode->i_op->readlink(dentry, buffer, buflen);
4797 if (!d_is_symlink(dentry))
4800 spin_lock(&inode->i_lock);
4801 inode->i_opflags |= IOP_DEFAULT_READLINK;
4802 spin_unlock(&inode->i_lock);
4805 link = READ_ONCE(inode->i_link);
4807 link = inode->i_op->get_link(dentry, inode, &done);
4809 return PTR_ERR(link);
4811 res = readlink_copy(buffer, buflen, link);
4812 do_delayed_call(&done);
4815 EXPORT_SYMBOL(vfs_readlink);
4818 * vfs_get_link - get symlink body
4819 * @dentry: dentry on which to get symbolic link
4820 * @done: caller needs to free returned data with this
4822 * Calls security hook and i_op->get_link() on the supplied inode.
4824 * It does not touch atime. That's up to the caller if necessary.
4826 * Does not work on "special" symlinks like /proc/$$/fd/N
4828 const char *vfs_get_link(struct dentry *dentry, struct delayed_call *done)
4830 const char *res = ERR_PTR(-EINVAL);
4831 struct inode *inode = d_inode(dentry);
4833 if (d_is_symlink(dentry)) {
4834 res = ERR_PTR(security_inode_readlink(dentry));
4836 res = inode->i_op->get_link(dentry, inode, done);
4840 EXPORT_SYMBOL(vfs_get_link);
4842 /* get the link contents into pagecache */
4843 const char *page_get_link(struct dentry *dentry, struct inode *inode,
4844 struct delayed_call *callback)
4848 struct address_space *mapping = inode->i_mapping;
4851 page = find_get_page(mapping, 0);
4853 return ERR_PTR(-ECHILD);
4854 if (!PageUptodate(page)) {
4856 return ERR_PTR(-ECHILD);
4859 page = read_mapping_page(mapping, 0, NULL);
4863 set_delayed_call(callback, page_put_link, page);
4864 BUG_ON(mapping_gfp_mask(mapping) & __GFP_HIGHMEM);
4865 kaddr = page_address(page);
4866 nd_terminate_link(kaddr, inode->i_size, PAGE_SIZE - 1);
4870 EXPORT_SYMBOL(page_get_link);
4872 void page_put_link(void *arg)
4876 EXPORT_SYMBOL(page_put_link);
4878 int page_readlink(struct dentry *dentry, char __user *buffer, int buflen)
4880 DEFINE_DELAYED_CALL(done);
4881 int res = readlink_copy(buffer, buflen,
4882 page_get_link(dentry, d_inode(dentry),
4884 do_delayed_call(&done);
4887 EXPORT_SYMBOL(page_readlink);
4890 * The nofs argument instructs pagecache_write_begin to pass AOP_FLAG_NOFS
4892 int __page_symlink(struct inode *inode, const char *symname, int len, int nofs)
4894 struct address_space *mapping = inode->i_mapping;
4898 unsigned int flags = 0;
4900 flags |= AOP_FLAG_NOFS;
4903 err = pagecache_write_begin(NULL, mapping, 0, len-1,
4904 flags, &page, &fsdata);
4908 memcpy(page_address(page), symname, len-1);
4910 err = pagecache_write_end(NULL, mapping, 0, len-1, len-1,
4917 mark_inode_dirty(inode);
4922 EXPORT_SYMBOL(__page_symlink);
4924 int page_symlink(struct inode *inode, const char *symname, int len)
4926 return __page_symlink(inode, symname, len,
4927 !mapping_gfp_constraint(inode->i_mapping, __GFP_FS));
4929 EXPORT_SYMBOL(page_symlink);
4931 const struct inode_operations page_symlink_inode_operations = {
4932 .get_link = page_get_link,
4934 EXPORT_SYMBOL(page_symlink_inode_operations);