4 * Copyright (C) 1991, 1992 Linus Torvalds
8 * Some corrections by tytso.
11 /* [Feb 1997 T. Schoebel-Theuer] Complete rewrite of the pathname
14 /* [Feb-Apr 2000, AV] Rewrite to the new namespace architecture.
17 #include <linux/init.h>
18 #include <linux/module.h>
19 #include <linux/slab.h>
21 #include <linux/namei.h>
22 #include <linux/pagemap.h>
23 #include <linux/fsnotify.h>
24 #include <linux/personality.h>
25 #include <linux/security.h>
26 #include <linux/ima.h>
27 #include <linux/syscalls.h>
28 #include <linux/mount.h>
29 #include <linux/audit.h>
30 #include <linux/capability.h>
31 #include <linux/file.h>
32 #include <linux/fcntl.h>
33 #include <linux/device_cgroup.h>
34 #include <linux/fs_struct.h>
35 #include <linux/posix_acl.h>
36 #include <asm/uaccess.h>
40 /* [Feb-1997 T. Schoebel-Theuer]
41 * Fundamental changes in the pathname lookup mechanisms (namei)
42 * were necessary because of omirr. The reason is that omirr needs
43 * to know the _real_ pathname, not the user-supplied one, in case
44 * of symlinks (and also when transname replacements occur).
46 * The new code replaces the old recursive symlink resolution with
47 * an iterative one (in case of non-nested symlink chains). It does
48 * this with calls to <fs>_follow_link().
49 * As a side effect, dir_namei(), _namei() and follow_link() are now
50 * replaced with a single function lookup_dentry() that can handle all
51 * the special cases of the former code.
53 * With the new dcache, the pathname is stored at each inode, at least as
54 * long as the refcount of the inode is positive. As a side effect, the
55 * size of the dcache depends on the inode cache and thus is dynamic.
57 * [29-Apr-1998 C. Scott Ananian] Updated above description of symlink
58 * resolution to correspond with current state of the code.
60 * Note that the symlink resolution is not *completely* iterative.
61 * There is still a significant amount of tail- and mid- recursion in
62 * the algorithm. Also, note that <fs>_readlink() is not used in
63 * lookup_dentry(): lookup_dentry() on the result of <fs>_readlink()
64 * may return different results than <fs>_follow_link(). Many virtual
65 * filesystems (including /proc) exhibit this behavior.
68 /* [24-Feb-97 T. Schoebel-Theuer] Side effects caused by new implementation:
69 * New symlink semantics: when open() is called with flags O_CREAT | O_EXCL
70 * and the name already exists in form of a symlink, try to create the new
71 * name indicated by the symlink. The old code always complained that the
72 * name already exists, due to not following the symlink even if its target
73 * is nonexistent. The new semantics affects also mknod() and link() when
74 * the name is a symlink pointing to a non-existent name.
76 * I don't know which semantics is the right one, since I have no access
77 * to standards. But I found by trial that HP-UX 9.0 has the full "new"
78 * semantics implemented, while SunOS 4.1.1 and Solaris (SunOS 5.4) have the
79 * "old" one. Personally, I think the new semantics is much more logical.
80 * Note that "ln old new" where "new" is a symlink pointing to a non-existing
81 * file does succeed in both HP-UX and SunOs, but not in Solaris
82 * and in the old Linux semantics.
85 /* [16-Dec-97 Kevin Buhr] For security reasons, we change some symlink
86 * semantics. See the comments in "open_namei" and "do_link" below.
88 * [10-Sep-98 Alan Modra] Another symlink change.
91 /* [Feb-Apr 2000 AV] Complete rewrite. Rules for symlinks:
92 * inside the path - always follow.
93 * in the last component in creation/removal/renaming - never follow.
94 * if LOOKUP_FOLLOW passed - follow.
95 * if the pathname has trailing slashes - follow.
96 * otherwise - don't follow.
97 * (applied in that order).
99 * [Jun 2000 AV] Inconsistent behaviour of open() in case if flags==O_CREAT
100 * restored for 2.4. This is the last surviving part of old 4.2BSD bug.
101 * During the 2.4 we need to fix the userland stuff depending on it -
102 * hopefully we will be able to get rid of that wart in 2.5. So far only
103 * XEmacs seems to be relying on it...
106 * [Sep 2001 AV] Single-semaphore locking scheme (kudos to David Holland)
107 * implemented. Let's see if raised priority of ->s_vfs_rename_mutex gives
108 * any extra contention...
111 /* In order to reduce some races, while at the same time doing additional
112 * checking and hopefully speeding things up, we copy filenames to the
113 * kernel data space before using them..
115 * POSIX.1 2.4: an empty pathname is invalid (ENOENT).
116 * PATH_MAX includes the nul terminator --RR.
118 static int do_getname(const char __user
*filename
, char *page
)
121 unsigned long len
= PATH_MAX
;
123 if (!segment_eq(get_fs(), KERNEL_DS
)) {
124 if ((unsigned long) filename
>= TASK_SIZE
)
126 if (TASK_SIZE
- (unsigned long) filename
< PATH_MAX
)
127 len
= TASK_SIZE
- (unsigned long) filename
;
130 retval
= strncpy_from_user(page
, filename
, len
);
134 return -ENAMETOOLONG
;
140 static char *getname_flags_empty(const char __user
* filename
,
141 int flags
, int *empty
)
145 result
= ERR_PTR(-ENOMEM
);
148 int retval
= do_getname(filename
, tmp
);
152 if (retval
== -ENOENT
&& empty
)
154 if (retval
!= -ENOENT
|| !(flags
& LOOKUP_EMPTY
)) {
156 result
= ERR_PTR(retval
);
160 audit_getname(result
);
164 char *getname(const char __user
* filename
)
166 return getname_flags_empty(filename
, 0, 0);
169 #ifdef CONFIG_AUDITSYSCALL
170 void putname(const char *name
)
172 if (unlikely(!audit_dummy_context()))
177 EXPORT_SYMBOL(putname
);
180 static int check_acl(struct inode
*inode
, int mask
)
182 #ifdef CONFIG_FS_POSIX_ACL
183 struct posix_acl
*acl
;
185 if (mask
& MAY_NOT_BLOCK
) {
186 acl
= get_cached_acl_rcu(inode
, ACL_TYPE_ACCESS
);
189 /* no ->get_acl() calls in RCU mode... */
190 if (acl
== ACL_NOT_CACHED
)
192 return posix_acl_permission(inode
, acl
, mask
& ~MAY_NOT_BLOCK
);
195 acl
= get_cached_acl(inode
, ACL_TYPE_ACCESS
);
198 * A filesystem can force a ACL callback by just never filling the
199 * ACL cache. But normally you'd fill the cache either at inode
200 * instantiation time, or on the first ->get_acl call.
202 * If the filesystem doesn't have a get_acl() function at all, we'll
203 * just create the negative cache entry.
205 if (acl
== ACL_NOT_CACHED
) {
206 if (inode
->i_op
->get_acl
) {
207 acl
= inode
->i_op
->get_acl(inode
, ACL_TYPE_ACCESS
);
211 set_cached_acl(inode
, ACL_TYPE_ACCESS
, NULL
);
217 int error
= posix_acl_permission(inode
, acl
, mask
);
218 posix_acl_release(acl
);
227 * This does basic POSIX ACL permission checking
229 static int acl_permission_check(struct inode
*inode
, int mask
)
231 unsigned int mode
= inode
->i_mode
;
233 mask
&= MAY_READ
| MAY_WRITE
| MAY_EXEC
| MAY_NOT_BLOCK
;
235 if (current_user_ns() != inode_userns(inode
))
238 if (likely(current_fsuid() == inode
->i_uid
))
241 if (IS_POSIXACL(inode
) && (mode
& S_IRWXG
)) {
242 int error
= check_acl(inode
, mask
);
243 if (error
!= -EAGAIN
)
247 if (in_group_p(inode
->i_gid
))
253 * If the DACs are ok we don't need any capability check.
255 if ((mask
& ~mode
& (MAY_READ
| MAY_WRITE
| MAY_EXEC
)) == 0)
261 * generic_permission - check for access rights on a Posix-like filesystem
262 * @inode: inode to check access rights for
263 * @mask: right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
265 * Used to check for read/write/execute permissions on a file.
266 * We use "fsuid" for this, letting us set arbitrary permissions
267 * for filesystem access without changing the "normal" uids which
268 * are used for other things.
270 * generic_permission is rcu-walk aware. It returns -ECHILD in case an rcu-walk
271 * request cannot be satisfied (eg. requires blocking or too much complexity).
272 * It would then be called again in ref-walk mode.
274 int generic_permission(struct inode
*inode
, int mask
)
279 * Do the basic POSIX ACL permission checks.
281 ret
= acl_permission_check(inode
, mask
);
285 if (S_ISDIR(inode
->i_mode
)) {
286 /* DACs are overridable for directories */
287 if (ns_capable(inode_userns(inode
), CAP_DAC_OVERRIDE
))
289 if (!(mask
& MAY_WRITE
))
290 if (ns_capable(inode_userns(inode
), CAP_DAC_READ_SEARCH
))
295 * Read/write DACs are always overridable.
296 * Executable DACs are overridable when there is
297 * at least one exec bit set.
299 if (!(mask
& MAY_EXEC
) || (inode
->i_mode
& S_IXUGO
))
300 if (ns_capable(inode_userns(inode
), CAP_DAC_OVERRIDE
))
304 * Searching includes executable on directories, else just read.
306 mask
&= MAY_READ
| MAY_WRITE
| MAY_EXEC
;
307 if (mask
== MAY_READ
)
308 if (ns_capable(inode_userns(inode
), CAP_DAC_READ_SEARCH
))
315 * We _really_ want to just do "generic_permission()" without
316 * even looking at the inode->i_op values. So we keep a cache
317 * flag in inode->i_opflags, that says "this has not special
318 * permission function, use the fast case".
320 static inline int do_inode_permission(struct inode
*inode
, int mask
)
322 if (unlikely(!(inode
->i_opflags
& IOP_FASTPERM
))) {
323 if (likely(inode
->i_op
->permission
))
324 return inode
->i_op
->permission(inode
, mask
);
326 /* This gets set once for the inode lifetime */
327 spin_lock(&inode
->i_lock
);
328 inode
->i_opflags
|= IOP_FASTPERM
;
329 spin_unlock(&inode
->i_lock
);
331 return generic_permission(inode
, mask
);
335 * inode_permission - check for access rights to a given inode
336 * @inode: inode to check permission on
337 * @mask: right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
339 * Used to check for read/write/execute permissions on an inode.
340 * We use "fsuid" for this, letting us set arbitrary permissions
341 * for filesystem access without changing the "normal" uids which
342 * are used for other things.
344 int inode_permission(struct inode
*inode
, int mask
)
348 if (unlikely(mask
& MAY_WRITE
)) {
349 umode_t mode
= inode
->i_mode
;
352 * Nobody gets write access to a read-only fs.
354 if (IS_RDONLY(inode
) &&
355 (S_ISREG(mode
) || S_ISDIR(mode
) || S_ISLNK(mode
)))
359 * Nobody gets write access to an immutable file.
361 if (IS_IMMUTABLE(inode
))
365 retval
= do_inode_permission(inode
, mask
);
369 retval
= devcgroup_inode_permission(inode
, mask
);
373 return security_inode_permission(inode
, mask
);
377 * path_get - get a reference to a path
378 * @path: path to get the reference to
380 * Given a path increment the reference count to the dentry and the vfsmount.
382 void path_get(struct path
*path
)
387 EXPORT_SYMBOL(path_get
);
390 * path_put - put a reference to a path
391 * @path: path to put the reference to
393 * Given a path decrement the reference count to the dentry and the vfsmount.
395 void path_put(struct path
*path
)
400 EXPORT_SYMBOL(path_put
);
403 * Path walking has 2 modes, rcu-walk and ref-walk (see
404 * Documentation/filesystems/path-lookup.txt). In situations when we can't
405 * continue in RCU mode, we attempt to drop out of rcu-walk mode and grab
406 * normal reference counts on dentries and vfsmounts to transition to rcu-walk
407 * mode. Refcounts are grabbed at the last known good point before rcu-walk
408 * got stuck, so ref-walk may continue from there. If this is not successful
409 * (eg. a seqcount has changed), then failure is returned and it's up to caller
410 * to restart the path walk from the beginning in ref-walk mode.
414 * unlazy_walk - try to switch to ref-walk mode.
415 * @nd: nameidata pathwalk data
416 * @dentry: child of nd->path.dentry or NULL
417 * Returns: 0 on success, -ECHILD on failure
419 * unlazy_walk attempts to legitimize the current nd->path, nd->root and dentry
420 * for ref-walk mode. @dentry must be a path found by a do_lookup call on
421 * @nd or NULL. Must be called from rcu-walk context.
423 static int unlazy_walk(struct nameidata
*nd
, struct dentry
*dentry
)
425 struct fs_struct
*fs
= current
->fs
;
426 struct dentry
*parent
= nd
->path
.dentry
;
429 BUG_ON(!(nd
->flags
& LOOKUP_RCU
));
430 if (nd
->root
.mnt
&& !(nd
->flags
& LOOKUP_ROOT
)) {
432 spin_lock(&fs
->lock
);
433 if (nd
->root
.mnt
!= fs
->root
.mnt
||
434 nd
->root
.dentry
!= fs
->root
.dentry
)
437 spin_lock(&parent
->d_lock
);
439 if (!__d_rcu_to_refcount(parent
, nd
->seq
))
441 BUG_ON(nd
->inode
!= parent
->d_inode
);
443 if (dentry
->d_parent
!= parent
)
445 spin_lock_nested(&dentry
->d_lock
, DENTRY_D_LOCK_NESTED
);
446 if (!__d_rcu_to_refcount(dentry
, nd
->seq
))
449 * If the sequence check on the child dentry passed, then
450 * the child has not been removed from its parent. This
451 * means the parent dentry must be valid and able to take
452 * a reference at this point.
454 BUG_ON(!IS_ROOT(dentry
) && dentry
->d_parent
!= parent
);
455 BUG_ON(!parent
->d_count
);
457 spin_unlock(&dentry
->d_lock
);
459 spin_unlock(&parent
->d_lock
);
462 spin_unlock(&fs
->lock
);
464 mntget(nd
->path
.mnt
);
467 br_read_unlock(vfsmount_lock
);
468 nd
->flags
&= ~LOOKUP_RCU
;
472 spin_unlock(&dentry
->d_lock
);
474 spin_unlock(&parent
->d_lock
);
477 spin_unlock(&fs
->lock
);
482 * release_open_intent - free up open intent resources
483 * @nd: pointer to nameidata
485 void release_open_intent(struct nameidata
*nd
)
487 struct file
*file
= nd
->intent
.open
.file
;
489 if (file
&& !IS_ERR(file
)) {
490 if (file
->f_path
.dentry
== NULL
)
497 static inline int d_revalidate(struct dentry
*dentry
, struct nameidata
*nd
)
499 return dentry
->d_op
->d_revalidate(dentry
, nd
);
503 * complete_walk - successful completion of path walk
504 * @nd: pointer nameidata
506 * If we had been in RCU mode, drop out of it and legitimize nd->path.
507 * Revalidate the final result, unless we'd already done that during
508 * the path walk or the filesystem doesn't ask for it. Return 0 on
509 * success, -error on failure. In case of failure caller does not
510 * need to drop nd->path.
512 static int complete_walk(struct nameidata
*nd
)
514 struct dentry
*dentry
= nd
->path
.dentry
;
517 if (nd
->flags
& LOOKUP_RCU
) {
518 nd
->flags
&= ~LOOKUP_RCU
;
519 if (!(nd
->flags
& LOOKUP_ROOT
))
521 spin_lock(&dentry
->d_lock
);
522 if (unlikely(!__d_rcu_to_refcount(dentry
, nd
->seq
))) {
523 spin_unlock(&dentry
->d_lock
);
525 br_read_unlock(vfsmount_lock
);
528 BUG_ON(nd
->inode
!= dentry
->d_inode
);
529 spin_unlock(&dentry
->d_lock
);
530 mntget(nd
->path
.mnt
);
532 br_read_unlock(vfsmount_lock
);
535 if (likely(!(nd
->flags
& LOOKUP_JUMPED
)))
538 if (likely(!(dentry
->d_flags
& DCACHE_OP_REVALIDATE
)))
541 if (likely(!(dentry
->d_sb
->s_type
->fs_flags
& FS_REVAL_DOT
)))
544 /* Note: we do not d_invalidate() */
545 status
= d_revalidate(dentry
, nd
);
556 static __always_inline
void set_root(struct nameidata
*nd
)
559 get_fs_root(current
->fs
, &nd
->root
);
562 static int link_path_walk(const char *, struct nameidata
*);
564 static __always_inline
void set_root_rcu(struct nameidata
*nd
)
567 struct fs_struct
*fs
= current
->fs
;
571 seq
= read_seqcount_begin(&fs
->seq
);
573 nd
->seq
= __read_seqcount_begin(&nd
->root
.dentry
->d_seq
);
574 } while (read_seqcount_retry(&fs
->seq
, seq
));
578 static __always_inline
int __vfs_follow_link(struct nameidata
*nd
, const char *link
)
590 nd
->flags
|= LOOKUP_JUMPED
;
592 nd
->inode
= nd
->path
.dentry
->d_inode
;
594 ret
= link_path_walk(link
, nd
);
598 return PTR_ERR(link
);
601 static void path_put_conditional(struct path
*path
, struct nameidata
*nd
)
604 if (path
->mnt
!= nd
->path
.mnt
)
608 static inline void path_to_nameidata(const struct path
*path
,
609 struct nameidata
*nd
)
611 if (!(nd
->flags
& LOOKUP_RCU
)) {
612 dput(nd
->path
.dentry
);
613 if (nd
->path
.mnt
!= path
->mnt
)
614 mntput(nd
->path
.mnt
);
616 nd
->path
.mnt
= path
->mnt
;
617 nd
->path
.dentry
= path
->dentry
;
620 static inline void put_link(struct nameidata
*nd
, struct path
*link
, void *cookie
)
622 struct inode
*inode
= link
->dentry
->d_inode
;
623 if (!IS_ERR(cookie
) && inode
->i_op
->put_link
)
624 inode
->i_op
->put_link(link
->dentry
, nd
, cookie
);
628 static __always_inline
int
629 follow_link(struct path
*link
, struct nameidata
*nd
, void **p
)
632 struct dentry
*dentry
= link
->dentry
;
634 BUG_ON(nd
->flags
& LOOKUP_RCU
);
636 if (link
->mnt
== nd
->path
.mnt
)
639 if (unlikely(current
->total_link_count
>= 40)) {
640 *p
= ERR_PTR(-ELOOP
); /* no ->put_link(), please */
645 current
->total_link_count
++;
647 touch_atime(link
->mnt
, dentry
);
648 nd_set_link(nd
, NULL
);
650 error
= security_inode_follow_link(link
->dentry
, nd
);
652 *p
= ERR_PTR(error
); /* no ->put_link(), please */
657 nd
->last_type
= LAST_BIND
;
658 *p
= dentry
->d_inode
->i_op
->follow_link(dentry
, nd
);
661 char *s
= nd_get_link(nd
);
664 error
= __vfs_follow_link(nd
, s
);
665 else if (nd
->last_type
== LAST_BIND
) {
666 nd
->flags
|= LOOKUP_JUMPED
;
667 nd
->inode
= nd
->path
.dentry
->d_inode
;
668 if (nd
->inode
->i_op
->follow_link
) {
669 /* stepped on a _really_ weird one */
678 static int follow_up_rcu(struct path
*path
)
680 struct vfsmount
*parent
;
681 struct dentry
*mountpoint
;
683 parent
= path
->mnt
->mnt_parent
;
684 if (parent
== path
->mnt
)
686 mountpoint
= path
->mnt
->mnt_mountpoint
;
687 path
->dentry
= mountpoint
;
692 int follow_up(struct path
*path
)
694 struct vfsmount
*parent
;
695 struct dentry
*mountpoint
;
697 br_read_lock(vfsmount_lock
);
698 parent
= path
->mnt
->mnt_parent
;
699 if (parent
== path
->mnt
) {
700 br_read_unlock(vfsmount_lock
);
704 mountpoint
= dget(path
->mnt
->mnt_mountpoint
);
705 br_read_unlock(vfsmount_lock
);
707 path
->dentry
= mountpoint
;
714 * Perform an automount
715 * - return -EISDIR to tell follow_managed() to stop and return the path we
718 static int follow_automount(struct path
*path
, unsigned flags
,
721 struct vfsmount
*mnt
;
724 if (!path
->dentry
->d_op
|| !path
->dentry
->d_op
->d_automount
)
727 /* We don't want to mount if someone supplied AT_NO_AUTOMOUNT
728 * and this is the terminal part of the path.
730 if ((flags
& LOOKUP_NO_AUTOMOUNT
) && !(flags
& LOOKUP_PARENT
))
731 return -EISDIR
; /* we actually want to stop here */
734 * We don't want to mount if someone's just doing a stat and they've
735 * set AT_SYMLINK_NOFOLLOW - unless they're stat'ing a directory and
736 * appended a '/' to the name.
738 if (!(flags
& LOOKUP_FOLLOW
)) {
739 /* We do, however, want to mount if someone wants to open or
740 * create a file of any type under the mountpoint, wants to
741 * traverse through the mountpoint or wants to open the mounted
743 * Also, autofs may mark negative dentries as being automount
744 * points. These will need the attentions of the daemon to
745 * instantiate them before they can be used.
747 if (!(flags
& (LOOKUP_PARENT
| LOOKUP_DIRECTORY
|
748 LOOKUP_OPEN
| LOOKUP_CREATE
)) &&
749 path
->dentry
->d_inode
)
752 current
->total_link_count
++;
753 if (current
->total_link_count
>= 40)
756 mnt
= path
->dentry
->d_op
->d_automount(path
);
759 * The filesystem is allowed to return -EISDIR here to indicate
760 * it doesn't want to automount. For instance, autofs would do
761 * this so that its userspace daemon can mount on this dentry.
763 * However, we can only permit this if it's a terminal point in
764 * the path being looked up; if it wasn't then the remainder of
765 * the path is inaccessible and we should say so.
767 if (PTR_ERR(mnt
) == -EISDIR
&& (flags
& LOOKUP_PARENT
))
772 if (!mnt
) /* mount collision */
776 /* lock_mount() may release path->mnt on error */
780 err
= finish_automount(mnt
, path
);
784 /* Someone else made a mount here whilst we were busy */
789 path
->dentry
= dget(mnt
->mnt_root
);
798 * Handle a dentry that is managed in some way.
799 * - Flagged for transit management (autofs)
800 * - Flagged as mountpoint
801 * - Flagged as automount point
803 * This may only be called in refwalk mode.
805 * Serialization is taken care of in namespace.c
807 static int follow_managed(struct path
*path
, unsigned flags
)
809 struct vfsmount
*mnt
= path
->mnt
; /* held by caller, must be left alone */
811 bool need_mntput
= false;
814 /* Given that we're not holding a lock here, we retain the value in a
815 * local variable for each dentry as we look at it so that we don't see
816 * the components of that value change under us */
817 while (managed
= ACCESS_ONCE(path
->dentry
->d_flags
),
818 managed
&= DCACHE_MANAGED_DENTRY
,
819 unlikely(managed
!= 0)) {
820 /* Allow the filesystem to manage the transit without i_mutex
822 if (managed
& DCACHE_MANAGE_TRANSIT
) {
823 BUG_ON(!path
->dentry
->d_op
);
824 BUG_ON(!path
->dentry
->d_op
->d_manage
);
825 ret
= path
->dentry
->d_op
->d_manage(path
->dentry
, false);
830 /* Transit to a mounted filesystem. */
831 if (managed
& DCACHE_MOUNTED
) {
832 struct vfsmount
*mounted
= lookup_mnt(path
);
838 path
->dentry
= dget(mounted
->mnt_root
);
843 /* Something is mounted on this dentry in another
844 * namespace and/or whatever was mounted there in this
845 * namespace got unmounted before we managed to get the
849 /* Handle an automount point */
850 if (managed
& DCACHE_NEED_AUTOMOUNT
) {
851 ret
= follow_automount(path
, flags
, &need_mntput
);
857 /* We didn't change the current path point */
861 if (need_mntput
&& path
->mnt
== mnt
)
868 int follow_down_one(struct path
*path
)
870 struct vfsmount
*mounted
;
872 mounted
= lookup_mnt(path
);
877 path
->dentry
= dget(mounted
->mnt_root
);
883 static inline bool managed_dentry_might_block(struct dentry
*dentry
)
885 return (dentry
->d_flags
& DCACHE_MANAGE_TRANSIT
&&
886 dentry
->d_op
->d_manage(dentry
, true) < 0);
890 * Try to skip to top of mountpoint pile in rcuwalk mode. Fail if
891 * we meet a managed dentry that would need blocking.
893 static bool __follow_mount_rcu(struct nameidata
*nd
, struct path
*path
,
894 struct inode
**inode
)
897 struct vfsmount
*mounted
;
899 * Don't forget we might have a non-mountpoint managed dentry
900 * that wants to block transit.
902 if (unlikely(managed_dentry_might_block(path
->dentry
)))
905 if (!d_mountpoint(path
->dentry
))
908 mounted
= __lookup_mnt(path
->mnt
, path
->dentry
, 1);
912 path
->dentry
= mounted
->mnt_root
;
913 nd
->seq
= read_seqcount_begin(&path
->dentry
->d_seq
);
915 * Update the inode too. We don't need to re-check the
916 * dentry sequence number here after this d_inode read,
917 * because a mount-point is always pinned.
919 *inode
= path
->dentry
->d_inode
;
924 static void follow_mount_rcu(struct nameidata
*nd
)
926 while (d_mountpoint(nd
->path
.dentry
)) {
927 struct vfsmount
*mounted
;
928 mounted
= __lookup_mnt(nd
->path
.mnt
, nd
->path
.dentry
, 1);
931 nd
->path
.mnt
= mounted
;
932 nd
->path
.dentry
= mounted
->mnt_root
;
933 nd
->seq
= read_seqcount_begin(&nd
->path
.dentry
->d_seq
);
937 static int follow_dotdot_rcu(struct nameidata
*nd
)
942 if (nd
->path
.dentry
== nd
->root
.dentry
&&
943 nd
->path
.mnt
== nd
->root
.mnt
) {
946 if (nd
->path
.dentry
!= nd
->path
.mnt
->mnt_root
) {
947 struct dentry
*old
= nd
->path
.dentry
;
948 struct dentry
*parent
= old
->d_parent
;
951 seq
= read_seqcount_begin(&parent
->d_seq
);
952 if (read_seqcount_retry(&old
->d_seq
, nd
->seq
))
954 nd
->path
.dentry
= parent
;
958 if (!follow_up_rcu(&nd
->path
))
960 nd
->seq
= read_seqcount_begin(&nd
->path
.dentry
->d_seq
);
962 follow_mount_rcu(nd
);
963 nd
->inode
= nd
->path
.dentry
->d_inode
;
967 nd
->flags
&= ~LOOKUP_RCU
;
968 if (!(nd
->flags
& LOOKUP_ROOT
))
971 br_read_unlock(vfsmount_lock
);
976 * Follow down to the covering mount currently visible to userspace. At each
977 * point, the filesystem owning that dentry may be queried as to whether the
978 * caller is permitted to proceed or not.
980 int follow_down(struct path
*path
)
985 while (managed
= ACCESS_ONCE(path
->dentry
->d_flags
),
986 unlikely(managed
& DCACHE_MANAGED_DENTRY
)) {
987 /* Allow the filesystem to manage the transit without i_mutex
990 * We indicate to the filesystem if someone is trying to mount
991 * something here. This gives autofs the chance to deny anyone
992 * other than its daemon the right to mount on its
995 * The filesystem may sleep at this point.
997 if (managed
& DCACHE_MANAGE_TRANSIT
) {
998 BUG_ON(!path
->dentry
->d_op
);
999 BUG_ON(!path
->dentry
->d_op
->d_manage
);
1000 ret
= path
->dentry
->d_op
->d_manage(
1001 path
->dentry
, false);
1003 return ret
== -EISDIR
? 0 : ret
;
1006 /* Transit to a mounted filesystem. */
1007 if (managed
& DCACHE_MOUNTED
) {
1008 struct vfsmount
*mounted
= lookup_mnt(path
);
1013 path
->mnt
= mounted
;
1014 path
->dentry
= dget(mounted
->mnt_root
);
1018 /* Don't handle automount points here */
1025 * Skip to top of mountpoint pile in refwalk mode for follow_dotdot()
1027 static void follow_mount(struct path
*path
)
1029 while (d_mountpoint(path
->dentry
)) {
1030 struct vfsmount
*mounted
= lookup_mnt(path
);
1035 path
->mnt
= mounted
;
1036 path
->dentry
= dget(mounted
->mnt_root
);
1040 static void follow_dotdot(struct nameidata
*nd
)
1045 struct dentry
*old
= nd
->path
.dentry
;
1047 if (nd
->path
.dentry
== nd
->root
.dentry
&&
1048 nd
->path
.mnt
== nd
->root
.mnt
) {
1051 if (nd
->path
.dentry
!= nd
->path
.mnt
->mnt_root
) {
1052 /* rare case of legitimate dget_parent()... */
1053 nd
->path
.dentry
= dget_parent(nd
->path
.dentry
);
1057 if (!follow_up(&nd
->path
))
1060 follow_mount(&nd
->path
);
1061 nd
->inode
= nd
->path
.dentry
->d_inode
;
1065 * Allocate a dentry with name and parent, and perform a parent
1066 * directory ->lookup on it. Returns the new dentry, or ERR_PTR
1067 * on error. parent->d_inode->i_mutex must be held. d_lookup must
1068 * have verified that no child exists while under i_mutex.
1070 static struct dentry
*d_alloc_and_lookup(struct dentry
*parent
,
1071 struct qstr
*name
, struct nameidata
*nd
)
1073 struct inode
*inode
= parent
->d_inode
;
1074 struct dentry
*dentry
;
1077 /* Don't create child dentry for a dead directory. */
1078 if (unlikely(IS_DEADDIR(inode
)))
1079 return ERR_PTR(-ENOENT
);
1081 dentry
= d_alloc(parent
, name
);
1082 if (unlikely(!dentry
))
1083 return ERR_PTR(-ENOMEM
);
1085 old
= inode
->i_op
->lookup(inode
, dentry
, nd
);
1086 if (unlikely(old
)) {
1094 * We already have a dentry, but require a lookup to be performed on the parent
1095 * directory to fill in d_inode. Returns the new dentry, or ERR_PTR on error.
1096 * parent->d_inode->i_mutex must be held. d_lookup must have verified that no
1097 * child exists while under i_mutex.
1099 static struct dentry
*d_inode_lookup(struct dentry
*parent
, struct dentry
*dentry
,
1100 struct nameidata
*nd
)
1102 struct inode
*inode
= parent
->d_inode
;
1105 /* Don't create child dentry for a dead directory. */
1106 if (unlikely(IS_DEADDIR(inode
)))
1107 return ERR_PTR(-ENOENT
);
1109 old
= inode
->i_op
->lookup(inode
, dentry
, nd
);
1110 if (unlikely(old
)) {
1118 * It's more convoluted than I'd like it to be, but... it's still fairly
1119 * small and for now I'd prefer to have fast path as straight as possible.
1120 * It _is_ time-critical.
1122 static int do_lookup(struct nameidata
*nd
, struct qstr
*name
,
1123 struct path
*path
, struct inode
**inode
)
1125 struct vfsmount
*mnt
= nd
->path
.mnt
;
1126 struct dentry
*dentry
, *parent
= nd
->path
.dentry
;
1132 * Rename seqlock is not required here because in the off chance
1133 * of a false negative due to a concurrent rename, we're going to
1134 * do the non-racy lookup, below.
1136 if (nd
->flags
& LOOKUP_RCU
) {
1139 dentry
= __d_lookup_rcu(parent
, name
, &seq
, inode
);
1143 /* Memory barrier in read_seqcount_begin of child is enough */
1144 if (__read_seqcount_retry(&parent
->d_seq
, nd
->seq
))
1148 if (unlikely(dentry
->d_flags
& DCACHE_OP_REVALIDATE
)) {
1149 status
= d_revalidate(dentry
, nd
);
1150 if (unlikely(status
<= 0)) {
1151 if (status
!= -ECHILD
)
1156 if (unlikely(d_need_lookup(dentry
)))
1159 path
->dentry
= dentry
;
1160 if (unlikely(!__follow_mount_rcu(nd
, path
, inode
)))
1162 if (unlikely(path
->dentry
->d_flags
& DCACHE_NEED_AUTOMOUNT
))
1166 if (unlazy_walk(nd
, dentry
))
1169 dentry
= __d_lookup(parent
, name
);
1172 if (dentry
&& unlikely(d_need_lookup(dentry
))) {
1177 if (unlikely(!dentry
)) {
1178 struct inode
*dir
= parent
->d_inode
;
1179 BUG_ON(nd
->inode
!= dir
);
1181 mutex_lock(&dir
->i_mutex
);
1182 dentry
= d_lookup(parent
, name
);
1183 if (likely(!dentry
)) {
1184 dentry
= d_alloc_and_lookup(parent
, name
, nd
);
1185 if (IS_ERR(dentry
)) {
1186 mutex_unlock(&dir
->i_mutex
);
1187 return PTR_ERR(dentry
);
1192 } else if (unlikely(d_need_lookup(dentry
))) {
1193 dentry
= d_inode_lookup(parent
, dentry
, nd
);
1194 if (IS_ERR(dentry
)) {
1195 mutex_unlock(&dir
->i_mutex
);
1196 return PTR_ERR(dentry
);
1202 mutex_unlock(&dir
->i_mutex
);
1204 if (unlikely(dentry
->d_flags
& DCACHE_OP_REVALIDATE
) && need_reval
)
1205 status
= d_revalidate(dentry
, nd
);
1206 if (unlikely(status
<= 0)) {
1211 if (!d_invalidate(dentry
)) {
1220 path
->dentry
= dentry
;
1221 err
= follow_managed(path
, nd
->flags
);
1222 if (unlikely(err
< 0)) {
1223 path_put_conditional(path
, nd
);
1226 *inode
= path
->dentry
->d_inode
;
1230 static inline int may_lookup(struct nameidata
*nd
)
1232 if (nd
->flags
& LOOKUP_RCU
) {
1233 int err
= inode_permission(nd
->inode
, MAY_EXEC
|MAY_NOT_BLOCK
);
1236 if (unlazy_walk(nd
, NULL
))
1239 return inode_permission(nd
->inode
, MAY_EXEC
);
1242 static inline int handle_dots(struct nameidata
*nd
, int type
)
1244 if (type
== LAST_DOTDOT
) {
1245 if (nd
->flags
& LOOKUP_RCU
) {
1246 if (follow_dotdot_rcu(nd
))
1254 static void terminate_walk(struct nameidata
*nd
)
1256 if (!(nd
->flags
& LOOKUP_RCU
)) {
1257 path_put(&nd
->path
);
1259 nd
->flags
&= ~LOOKUP_RCU
;
1260 if (!(nd
->flags
& LOOKUP_ROOT
))
1261 nd
->root
.mnt
= NULL
;
1263 br_read_unlock(vfsmount_lock
);
1268 * Do we need to follow links? We _really_ want to be able
1269 * to do this check without having to look at inode->i_op,
1270 * so we keep a cache of "no, this doesn't need follow_link"
1271 * for the common case.
1273 static inline int should_follow_link(struct inode
*inode
, int follow
)
1275 if (unlikely(!(inode
->i_opflags
& IOP_NOFOLLOW
))) {
1276 if (likely(inode
->i_op
->follow_link
))
1279 /* This gets set once for the inode lifetime */
1280 spin_lock(&inode
->i_lock
);
1281 inode
->i_opflags
|= IOP_NOFOLLOW
;
1282 spin_unlock(&inode
->i_lock
);
1287 static inline int walk_component(struct nameidata
*nd
, struct path
*path
,
1288 struct qstr
*name
, int type
, int follow
)
1290 struct inode
*inode
;
1293 * "." and ".." are special - ".." especially so because it has
1294 * to be able to know about the current root directory and
1295 * parent relationships.
1297 if (unlikely(type
!= LAST_NORM
))
1298 return handle_dots(nd
, type
);
1299 err
= do_lookup(nd
, name
, path
, &inode
);
1300 if (unlikely(err
)) {
1305 path_to_nameidata(path
, nd
);
1309 if (should_follow_link(inode
, follow
)) {
1310 if (nd
->flags
& LOOKUP_RCU
) {
1311 if (unlikely(unlazy_walk(nd
, path
->dentry
))) {
1316 BUG_ON(inode
!= path
->dentry
->d_inode
);
1319 path_to_nameidata(path
, nd
);
1325 * This limits recursive symlink follows to 8, while
1326 * limiting consecutive symlinks to 40.
1328 * Without that kind of total limit, nasty chains of consecutive
1329 * symlinks can cause almost arbitrarily long lookups.
1331 static inline int nested_symlink(struct path
*path
, struct nameidata
*nd
)
1335 if (unlikely(current
->link_count
>= MAX_NESTED_LINKS
)) {
1336 path_put_conditional(path
, nd
);
1337 path_put(&nd
->path
);
1340 BUG_ON(nd
->depth
>= MAX_NESTED_LINKS
);
1343 current
->link_count
++;
1346 struct path link
= *path
;
1349 res
= follow_link(&link
, nd
, &cookie
);
1351 res
= walk_component(nd
, path
, &nd
->last
,
1352 nd
->last_type
, LOOKUP_FOLLOW
);
1353 put_link(nd
, &link
, cookie
);
1356 current
->link_count
--;
1362 * We really don't want to look at inode->i_op->lookup
1363 * when we don't have to. So we keep a cache bit in
1364 * the inode ->i_opflags field that says "yes, we can
1365 * do lookup on this inode".
1367 static inline int can_lookup(struct inode
*inode
)
1369 if (likely(inode
->i_opflags
& IOP_LOOKUP
))
1371 if (likely(!inode
->i_op
->lookup
))
1374 /* We do this once for the lifetime of the inode */
1375 spin_lock(&inode
->i_lock
);
1376 inode
->i_opflags
|= IOP_LOOKUP
;
1377 spin_unlock(&inode
->i_lock
);
1383 * This is the basic name resolution function, turning a pathname into
1384 * the final dentry. We expect 'base' to be positive and a directory.
1386 * Returns 0 and nd will have valid dentry and mnt on success.
1387 * Returns error and drops reference to input namei data on failure.
1389 static int link_path_walk(const char *name
, struct nameidata
*nd
)
1399 /* At this point we know we have a real path component. */
1406 err
= may_lookup(nd
);
1411 c
= *(const unsigned char *)name
;
1413 hash
= init_name_hash();
1416 hash
= partial_name_hash(c
, hash
);
1417 c
= *(const unsigned char *)name
;
1418 } while (c
&& (c
!= '/'));
1419 this.len
= name
- (const char *) this.name
;
1420 this.hash
= end_name_hash(hash
);
1423 if (this.name
[0] == '.') switch (this.len
) {
1425 if (this.name
[1] == '.') {
1427 nd
->flags
|= LOOKUP_JUMPED
;
1433 if (likely(type
== LAST_NORM
)) {
1434 struct dentry
*parent
= nd
->path
.dentry
;
1435 nd
->flags
&= ~LOOKUP_JUMPED
;
1436 if (unlikely(parent
->d_flags
& DCACHE_OP_HASH
)) {
1437 err
= parent
->d_op
->d_hash(parent
, nd
->inode
,
1444 /* remove trailing slashes? */
1446 goto last_component
;
1447 while (*++name
== '/');
1449 goto last_component
;
1451 err
= walk_component(nd
, &next
, &this, type
, LOOKUP_FOLLOW
);
1456 err
= nested_symlink(&next
, nd
);
1460 if (can_lookup(nd
->inode
))
1464 /* here ends the main loop */
1468 nd
->last_type
= type
;
1475 static int path_init(int dfd
, const char *name
, unsigned int flags
,
1476 struct nameidata
*nd
, struct file
**fp
)
1482 nd
->last_type
= LAST_ROOT
; /* if there are only slashes... */
1483 nd
->flags
= flags
| LOOKUP_JUMPED
;
1485 if (flags
& LOOKUP_ROOT
) {
1486 struct inode
*inode
= nd
->root
.dentry
->d_inode
;
1488 if (!inode
->i_op
->lookup
)
1490 retval
= inode_permission(inode
, MAY_EXEC
);
1494 nd
->path
= nd
->root
;
1496 if (flags
& LOOKUP_RCU
) {
1497 br_read_lock(vfsmount_lock
);
1499 nd
->seq
= __read_seqcount_begin(&nd
->path
.dentry
->d_seq
);
1501 path_get(&nd
->path
);
1506 nd
->root
.mnt
= NULL
;
1509 if (flags
& LOOKUP_RCU
) {
1510 br_read_lock(vfsmount_lock
);
1515 path_get(&nd
->root
);
1517 nd
->path
= nd
->root
;
1518 } else if (dfd
== AT_FDCWD
) {
1519 if (flags
& LOOKUP_RCU
) {
1520 struct fs_struct
*fs
= current
->fs
;
1523 br_read_lock(vfsmount_lock
);
1527 seq
= read_seqcount_begin(&fs
->seq
);
1529 nd
->seq
= __read_seqcount_begin(&nd
->path
.dentry
->d_seq
);
1530 } while (read_seqcount_retry(&fs
->seq
, seq
));
1532 get_fs_pwd(current
->fs
, &nd
->path
);
1535 struct dentry
*dentry
;
1537 file
= fget_raw_light(dfd
, &fput_needed
);
1542 dentry
= file
->f_path
.dentry
;
1546 if (!S_ISDIR(dentry
->d_inode
->i_mode
))
1549 retval
= inode_permission(dentry
->d_inode
, MAY_EXEC
);
1554 nd
->path
= file
->f_path
;
1555 if (flags
& LOOKUP_RCU
) {
1558 nd
->seq
= __read_seqcount_begin(&nd
->path
.dentry
->d_seq
);
1559 br_read_lock(vfsmount_lock
);
1562 path_get(&file
->f_path
);
1563 fput_light(file
, fput_needed
);
1567 nd
->inode
= nd
->path
.dentry
->d_inode
;
1571 fput_light(file
, fput_needed
);
1576 static inline int lookup_last(struct nameidata
*nd
, struct path
*path
)
1578 if (nd
->last_type
== LAST_NORM
&& nd
->last
.name
[nd
->last
.len
])
1579 nd
->flags
|= LOOKUP_FOLLOW
| LOOKUP_DIRECTORY
;
1581 nd
->flags
&= ~LOOKUP_PARENT
;
1582 return walk_component(nd
, path
, &nd
->last
, nd
->last_type
,
1583 nd
->flags
& LOOKUP_FOLLOW
);
1586 /* Returns 0 and nd will be valid on success; Retuns error, otherwise. */
1587 static int path_lookupat(int dfd
, const char *name
,
1588 unsigned int flags
, struct nameidata
*nd
)
1590 struct file
*base
= NULL
;
1595 * Path walking is largely split up into 2 different synchronisation
1596 * schemes, rcu-walk and ref-walk (explained in
1597 * Documentation/filesystems/path-lookup.txt). These share much of the
1598 * path walk code, but some things particularly setup, cleanup, and
1599 * following mounts are sufficiently divergent that functions are
1600 * duplicated. Typically there is a function foo(), and its RCU
1601 * analogue, foo_rcu().
1603 * -ECHILD is the error number of choice (just to avoid clashes) that
1604 * is returned if some aspect of an rcu-walk fails. Such an error must
1605 * be handled by restarting a traditional ref-walk (which will always
1606 * be able to complete).
1608 err
= path_init(dfd
, name
, flags
| LOOKUP_PARENT
, nd
, &base
);
1613 current
->total_link_count
= 0;
1614 err
= link_path_walk(name
, nd
);
1616 if (!err
&& !(flags
& LOOKUP_PARENT
)) {
1617 err
= lookup_last(nd
, &path
);
1620 struct path link
= path
;
1621 nd
->flags
|= LOOKUP_PARENT
;
1622 err
= follow_link(&link
, nd
, &cookie
);
1624 err
= lookup_last(nd
, &path
);
1625 put_link(nd
, &link
, cookie
);
1630 err
= complete_walk(nd
);
1632 if (!err
&& nd
->flags
& LOOKUP_DIRECTORY
) {
1633 if (!nd
->inode
->i_op
->lookup
) {
1634 path_put(&nd
->path
);
1642 if (nd
->root
.mnt
&& !(nd
->flags
& LOOKUP_ROOT
)) {
1643 path_put(&nd
->root
);
1644 nd
->root
.mnt
= NULL
;
1649 static int do_path_lookup(int dfd
, const char *name
,
1650 unsigned int flags
, struct nameidata
*nd
)
1652 int retval
= path_lookupat(dfd
, name
, flags
| LOOKUP_RCU
, nd
);
1653 if (unlikely(retval
== -ECHILD
))
1654 retval
= path_lookupat(dfd
, name
, flags
, nd
);
1655 if (unlikely(retval
== -ESTALE
))
1656 retval
= path_lookupat(dfd
, name
, flags
| LOOKUP_REVAL
, nd
);
1658 if (likely(!retval
)) {
1659 if (unlikely(!audit_dummy_context())) {
1660 if (nd
->path
.dentry
&& nd
->inode
)
1661 audit_inode(name
, nd
->path
.dentry
);
1667 int kern_path_parent(const char *name
, struct nameidata
*nd
)
1669 return do_path_lookup(AT_FDCWD
, name
, LOOKUP_PARENT
, nd
);
1672 int kern_path(const char *name
, unsigned int flags
, struct path
*path
)
1674 struct nameidata nd
;
1675 int res
= do_path_lookup(AT_FDCWD
, name
, flags
, &nd
);
1682 * vfs_path_lookup - lookup a file path relative to a dentry-vfsmount pair
1683 * @dentry: pointer to dentry of the base directory
1684 * @mnt: pointer to vfs mount of the base directory
1685 * @name: pointer to file name
1686 * @flags: lookup flags
1687 * @path: pointer to struct path to fill
1689 int vfs_path_lookup(struct dentry
*dentry
, struct vfsmount
*mnt
,
1690 const char *name
, unsigned int flags
,
1693 struct nameidata nd
;
1695 nd
.root
.dentry
= dentry
;
1697 BUG_ON(flags
& LOOKUP_PARENT
);
1698 /* the first argument of do_path_lookup() is ignored with LOOKUP_ROOT */
1699 err
= do_path_lookup(AT_FDCWD
, name
, flags
| LOOKUP_ROOT
, &nd
);
1705 static struct dentry
*__lookup_hash(struct qstr
*name
,
1706 struct dentry
*base
, struct nameidata
*nd
)
1708 struct inode
*inode
= base
->d_inode
;
1709 struct dentry
*dentry
;
1712 err
= inode_permission(inode
, MAY_EXEC
);
1714 return ERR_PTR(err
);
1717 * Don't bother with __d_lookup: callers are for creat as
1718 * well as unlink, so a lot of the time it would cost
1721 dentry
= d_lookup(base
, name
);
1723 if (dentry
&& d_need_lookup(dentry
)) {
1725 * __lookup_hash is called with the parent dir's i_mutex already
1726 * held, so we are good to go here.
1728 dentry
= d_inode_lookup(base
, dentry
, nd
);
1733 if (dentry
&& (dentry
->d_flags
& DCACHE_OP_REVALIDATE
)) {
1734 int status
= d_revalidate(dentry
, nd
);
1735 if (unlikely(status
<= 0)) {
1737 * The dentry failed validation.
1738 * If d_revalidate returned 0 attempt to invalidate
1739 * the dentry otherwise d_revalidate is asking us
1740 * to return a fail status.
1744 return ERR_PTR(status
);
1745 } else if (!d_invalidate(dentry
)) {
1753 dentry
= d_alloc_and_lookup(base
, name
, nd
);
1759 * Restricted form of lookup. Doesn't follow links, single-component only,
1760 * needs parent already locked. Doesn't follow mounts.
1763 static struct dentry
*lookup_hash(struct nameidata
*nd
)
1765 return __lookup_hash(&nd
->last
, nd
->path
.dentry
, nd
);
1769 * lookup_one_len - filesystem helper to lookup single pathname component
1770 * @name: pathname component to lookup
1771 * @base: base directory to lookup from
1772 * @len: maximum length @len should be interpreted to
1774 * Note that this routine is purely a helper for filesystem usage and should
1775 * not be called by generic code. Also note that by using this function the
1776 * nameidata argument is passed to the filesystem methods and a filesystem
1777 * using this helper needs to be prepared for that.
1779 struct dentry
*lookup_one_len(const char *name
, struct dentry
*base
, int len
)
1785 WARN_ON_ONCE(!mutex_is_locked(&base
->d_inode
->i_mutex
));
1790 return ERR_PTR(-EACCES
);
1792 hash
= init_name_hash();
1794 c
= *(const unsigned char *)name
++;
1795 if (c
== '/' || c
== '\0')
1796 return ERR_PTR(-EACCES
);
1797 hash
= partial_name_hash(c
, hash
);
1799 this.hash
= end_name_hash(hash
);
1801 * See if the low-level filesystem might want
1802 * to use its own hash..
1804 if (base
->d_flags
& DCACHE_OP_HASH
) {
1805 int err
= base
->d_op
->d_hash(base
, base
->d_inode
, &this);
1807 return ERR_PTR(err
);
1810 return __lookup_hash(&this, base
, NULL
);
1813 int user_path_at_empty(int dfd
, const char __user
*name
, unsigned flags
,
1814 struct path
*path
, int *empty
)
1816 struct nameidata nd
;
1817 char *tmp
= getname_flags_empty(name
, flags
, empty
);
1818 int err
= PTR_ERR(tmp
);
1821 BUG_ON(flags
& LOOKUP_PARENT
);
1823 err
= do_path_lookup(dfd
, tmp
, flags
, &nd
);
1831 int user_path_at(int dfd
, const char __user
*name
, unsigned flags
,
1834 return user_path_at_empty(dfd
, name
, flags
, path
, 0);
1837 static int user_path_parent(int dfd
, const char __user
*path
,
1838 struct nameidata
*nd
, char **name
)
1840 char *s
= getname(path
);
1846 error
= do_path_lookup(dfd
, s
, LOOKUP_PARENT
, nd
);
1856 * It's inline, so penalty for filesystems that don't use sticky bit is
1859 static inline int check_sticky(struct inode
*dir
, struct inode
*inode
)
1861 uid_t fsuid
= current_fsuid();
1863 if (!(dir
->i_mode
& S_ISVTX
))
1865 if (current_user_ns() != inode_userns(inode
))
1867 if (inode
->i_uid
== fsuid
)
1869 if (dir
->i_uid
== fsuid
)
1873 return !ns_capable(inode_userns(inode
), CAP_FOWNER
);
1877 * Check whether we can remove a link victim from directory dir, check
1878 * whether the type of victim is right.
1879 * 1. We can't do it if dir is read-only (done in permission())
1880 * 2. We should have write and exec permissions on dir
1881 * 3. We can't remove anything from append-only dir
1882 * 4. We can't do anything with immutable dir (done in permission())
1883 * 5. If the sticky bit on dir is set we should either
1884 * a. be owner of dir, or
1885 * b. be owner of victim, or
1886 * c. have CAP_FOWNER capability
1887 * 6. If the victim is append-only or immutable we can't do antyhing with
1888 * links pointing to it.
1889 * 7. If we were asked to remove a directory and victim isn't one - ENOTDIR.
1890 * 8. If we were asked to remove a non-directory and victim isn't one - EISDIR.
1891 * 9. We can't remove a root or mountpoint.
1892 * 10. We don't allow removal of NFS sillyrenamed files; it's handled by
1893 * nfs_async_unlink().
1895 static int may_delete(struct inode
*dir
,struct dentry
*victim
,int isdir
)
1899 if (!victim
->d_inode
)
1902 BUG_ON(victim
->d_parent
->d_inode
!= dir
);
1903 audit_inode_child(victim
, dir
);
1905 error
= inode_permission(dir
, MAY_WRITE
| MAY_EXEC
);
1910 if (check_sticky(dir
, victim
->d_inode
)||IS_APPEND(victim
->d_inode
)||
1911 IS_IMMUTABLE(victim
->d_inode
) || IS_SWAPFILE(victim
->d_inode
))
1914 if (!S_ISDIR(victim
->d_inode
->i_mode
))
1916 if (IS_ROOT(victim
))
1918 } else if (S_ISDIR(victim
->d_inode
->i_mode
))
1920 if (IS_DEADDIR(dir
))
1922 if (victim
->d_flags
& DCACHE_NFSFS_RENAMED
)
1927 /* Check whether we can create an object with dentry child in directory
1929 * 1. We can't do it if child already exists (open has special treatment for
1930 * this case, but since we are inlined it's OK)
1931 * 2. We can't do it if dir is read-only (done in permission())
1932 * 3. We should have write and exec permissions on dir
1933 * 4. We can't do it if dir is immutable (done in permission())
1935 static inline int may_create(struct inode
*dir
, struct dentry
*child
)
1939 if (IS_DEADDIR(dir
))
1941 return inode_permission(dir
, MAY_WRITE
| MAY_EXEC
);
1945 * p1 and p2 should be directories on the same fs.
1947 struct dentry
*lock_rename(struct dentry
*p1
, struct dentry
*p2
)
1952 mutex_lock_nested(&p1
->d_inode
->i_mutex
, I_MUTEX_PARENT
);
1956 mutex_lock(&p1
->d_inode
->i_sb
->s_vfs_rename_mutex
);
1958 p
= d_ancestor(p2
, p1
);
1960 mutex_lock_nested(&p2
->d_inode
->i_mutex
, I_MUTEX_PARENT
);
1961 mutex_lock_nested(&p1
->d_inode
->i_mutex
, I_MUTEX_CHILD
);
1965 p
= d_ancestor(p1
, p2
);
1967 mutex_lock_nested(&p1
->d_inode
->i_mutex
, I_MUTEX_PARENT
);
1968 mutex_lock_nested(&p2
->d_inode
->i_mutex
, I_MUTEX_CHILD
);
1972 mutex_lock_nested(&p1
->d_inode
->i_mutex
, I_MUTEX_PARENT
);
1973 mutex_lock_nested(&p2
->d_inode
->i_mutex
, I_MUTEX_CHILD
);
1977 void unlock_rename(struct dentry
*p1
, struct dentry
*p2
)
1979 mutex_unlock(&p1
->d_inode
->i_mutex
);
1981 mutex_unlock(&p2
->d_inode
->i_mutex
);
1982 mutex_unlock(&p1
->d_inode
->i_sb
->s_vfs_rename_mutex
);
1986 int vfs_create(struct inode
*dir
, struct dentry
*dentry
, int mode
,
1987 struct nameidata
*nd
)
1989 int error
= may_create(dir
, dentry
);
1994 if (!dir
->i_op
->create
)
1995 return -EACCES
; /* shouldn't it be ENOSYS? */
1998 error
= security_inode_create(dir
, dentry
, mode
);
2001 error
= dir
->i_op
->create(dir
, dentry
, mode
, nd
);
2003 fsnotify_create(dir
, dentry
);
2007 static int may_open(struct path
*path
, int acc_mode
, int flag
)
2009 struct dentry
*dentry
= path
->dentry
;
2010 struct inode
*inode
= dentry
->d_inode
;
2020 switch (inode
->i_mode
& S_IFMT
) {
2024 if (acc_mode
& MAY_WRITE
)
2029 if (path
->mnt
->mnt_flags
& MNT_NODEV
)
2038 error
= inode_permission(inode
, acc_mode
);
2043 * An append-only file must be opened in append mode for writing.
2045 if (IS_APPEND(inode
)) {
2046 if ((flag
& O_ACCMODE
) != O_RDONLY
&& !(flag
& O_APPEND
))
2052 /* O_NOATIME can only be set by the owner or superuser */
2053 if (flag
& O_NOATIME
&& !inode_owner_or_capable(inode
))
2057 * Ensure there are no outstanding leases on the file.
2059 return break_lease(inode
, flag
);
2062 static int handle_truncate(struct file
*filp
)
2064 struct path
*path
= &filp
->f_path
;
2065 struct inode
*inode
= path
->dentry
->d_inode
;
2066 int error
= get_write_access(inode
);
2070 * Refuse to truncate files with mandatory locks held on them.
2072 error
= locks_verify_locked(inode
);
2074 error
= security_path_truncate(path
);
2076 error
= do_truncate(path
->dentry
, 0,
2077 ATTR_MTIME
|ATTR_CTIME
|ATTR_OPEN
,
2080 put_write_access(inode
);
2084 static inline int open_to_namei_flags(int flag
)
2086 if ((flag
& O_ACCMODE
) == 3)
2092 * Handle the last step of open()
2094 static struct file
*do_last(struct nameidata
*nd
, struct path
*path
,
2095 const struct open_flags
*op
, const char *pathname
)
2097 struct dentry
*dir
= nd
->path
.dentry
;
2098 struct dentry
*dentry
;
2099 int open_flag
= op
->open_flag
;
2100 int will_truncate
= open_flag
& O_TRUNC
;
2102 int acc_mode
= op
->acc_mode
;
2106 nd
->flags
&= ~LOOKUP_PARENT
;
2107 nd
->flags
|= op
->intent
;
2109 switch (nd
->last_type
) {
2112 error
= handle_dots(nd
, nd
->last_type
);
2114 return ERR_PTR(error
);
2117 error
= complete_walk(nd
);
2119 return ERR_PTR(error
);
2120 audit_inode(pathname
, nd
->path
.dentry
);
2121 if (open_flag
& O_CREAT
) {
2127 error
= complete_walk(nd
);
2129 return ERR_PTR(error
);
2130 audit_inode(pathname
, dir
);
2134 if (!(open_flag
& O_CREAT
)) {
2136 if (nd
->last
.name
[nd
->last
.len
])
2137 nd
->flags
|= LOOKUP_FOLLOW
| LOOKUP_DIRECTORY
;
2138 if (open_flag
& O_PATH
&& !(nd
->flags
& LOOKUP_FOLLOW
))
2140 /* we _can_ be in RCU mode here */
2141 error
= walk_component(nd
, path
, &nd
->last
, LAST_NORM
,
2144 return ERR_PTR(error
);
2145 if (error
) /* symlink */
2148 error
= complete_walk(nd
);
2150 return ERR_PTR(-ECHILD
);
2153 if (nd
->flags
& LOOKUP_DIRECTORY
) {
2154 if (!nd
->inode
->i_op
->lookup
)
2157 audit_inode(pathname
, nd
->path
.dentry
);
2161 /* create side of things */
2162 error
= complete_walk(nd
);
2164 return ERR_PTR(error
);
2166 audit_inode(pathname
, dir
);
2168 /* trailing slashes? */
2169 if (nd
->last
.name
[nd
->last
.len
])
2172 mutex_lock(&dir
->d_inode
->i_mutex
);
2174 dentry
= lookup_hash(nd
);
2175 error
= PTR_ERR(dentry
);
2176 if (IS_ERR(dentry
)) {
2177 mutex_unlock(&dir
->d_inode
->i_mutex
);
2181 path
->dentry
= dentry
;
2182 path
->mnt
= nd
->path
.mnt
;
2184 /* Negative dentry, just create the file */
2185 if (!dentry
->d_inode
) {
2186 int mode
= op
->mode
;
2187 if (!IS_POSIXACL(dir
->d_inode
))
2188 mode
&= ~current_umask();
2190 * This write is needed to ensure that a
2191 * rw->ro transition does not occur between
2192 * the time when the file is created and when
2193 * a permanent write count is taken through
2194 * the 'struct file' in nameidata_to_filp().
2196 error
= mnt_want_write(nd
->path
.mnt
);
2198 goto exit_mutex_unlock
;
2200 /* Don't check for write permission, don't truncate */
2201 open_flag
&= ~O_TRUNC
;
2203 acc_mode
= MAY_OPEN
;
2204 error
= security_path_mknod(&nd
->path
, dentry
, mode
, 0);
2206 goto exit_mutex_unlock
;
2207 error
= vfs_create(dir
->d_inode
, dentry
, mode
, nd
);
2209 goto exit_mutex_unlock
;
2210 mutex_unlock(&dir
->d_inode
->i_mutex
);
2211 dput(nd
->path
.dentry
);
2212 nd
->path
.dentry
= dentry
;
2217 * It already exists.
2219 mutex_unlock(&dir
->d_inode
->i_mutex
);
2220 audit_inode(pathname
, path
->dentry
);
2223 if (open_flag
& O_EXCL
)
2226 error
= follow_managed(path
, nd
->flags
);
2231 if (!path
->dentry
->d_inode
)
2234 if (path
->dentry
->d_inode
->i_op
->follow_link
)
2237 path_to_nameidata(path
, nd
);
2238 nd
->inode
= path
->dentry
->d_inode
;
2240 if (S_ISDIR(nd
->inode
->i_mode
))
2243 if (!S_ISREG(nd
->inode
->i_mode
))
2246 if (will_truncate
) {
2247 error
= mnt_want_write(nd
->path
.mnt
);
2253 error
= may_open(&nd
->path
, acc_mode
, open_flag
);
2256 filp
= nameidata_to_filp(nd
);
2257 if (!IS_ERR(filp
)) {
2258 error
= ima_file_check(filp
, op
->acc_mode
);
2261 filp
= ERR_PTR(error
);
2264 if (!IS_ERR(filp
)) {
2265 if (will_truncate
) {
2266 error
= handle_truncate(filp
);
2269 filp
= ERR_PTR(error
);
2275 mnt_drop_write(nd
->path
.mnt
);
2276 path_put(&nd
->path
);
2280 mutex_unlock(&dir
->d_inode
->i_mutex
);
2282 path_put_conditional(path
, nd
);
2284 filp
= ERR_PTR(error
);
2288 static struct file
*path_openat(int dfd
, const char *pathname
,
2289 struct nameidata
*nd
, const struct open_flags
*op
, int flags
)
2291 struct file
*base
= NULL
;
2296 filp
= get_empty_filp();
2298 return ERR_PTR(-ENFILE
);
2300 filp
->f_flags
= op
->open_flag
;
2301 nd
->intent
.open
.file
= filp
;
2302 nd
->intent
.open
.flags
= open_to_namei_flags(op
->open_flag
);
2303 nd
->intent
.open
.create_mode
= op
->mode
;
2305 error
= path_init(dfd
, pathname
, flags
| LOOKUP_PARENT
, nd
, &base
);
2306 if (unlikely(error
))
2309 current
->total_link_count
= 0;
2310 error
= link_path_walk(pathname
, nd
);
2311 if (unlikely(error
))
2314 filp
= do_last(nd
, &path
, op
, pathname
);
2315 while (unlikely(!filp
)) { /* trailing symlink */
2316 struct path link
= path
;
2318 if (!(nd
->flags
& LOOKUP_FOLLOW
)) {
2319 path_put_conditional(&path
, nd
);
2320 path_put(&nd
->path
);
2321 filp
= ERR_PTR(-ELOOP
);
2324 nd
->flags
|= LOOKUP_PARENT
;
2325 nd
->flags
&= ~(LOOKUP_OPEN
|LOOKUP_CREATE
|LOOKUP_EXCL
);
2326 error
= follow_link(&link
, nd
, &cookie
);
2327 if (unlikely(error
))
2328 filp
= ERR_PTR(error
);
2330 filp
= do_last(nd
, &path
, op
, pathname
);
2331 put_link(nd
, &link
, cookie
);
2334 if (nd
->root
.mnt
&& !(nd
->flags
& LOOKUP_ROOT
))
2335 path_put(&nd
->root
);
2338 release_open_intent(nd
);
2342 filp
= ERR_PTR(error
);
2346 struct file
*do_filp_open(int dfd
, const char *pathname
,
2347 const struct open_flags
*op
, int flags
)
2349 struct nameidata nd
;
2352 filp
= path_openat(dfd
, pathname
, &nd
, op
, flags
| LOOKUP_RCU
);
2353 if (unlikely(filp
== ERR_PTR(-ECHILD
)))
2354 filp
= path_openat(dfd
, pathname
, &nd
, op
, flags
);
2355 if (unlikely(filp
== ERR_PTR(-ESTALE
)))
2356 filp
= path_openat(dfd
, pathname
, &nd
, op
, flags
| LOOKUP_REVAL
);
2360 struct file
*do_file_open_root(struct dentry
*dentry
, struct vfsmount
*mnt
,
2361 const char *name
, const struct open_flags
*op
, int flags
)
2363 struct nameidata nd
;
2367 nd
.root
.dentry
= dentry
;
2369 flags
|= LOOKUP_ROOT
;
2371 if (dentry
->d_inode
->i_op
->follow_link
&& op
->intent
& LOOKUP_OPEN
)
2372 return ERR_PTR(-ELOOP
);
2374 file
= path_openat(-1, name
, &nd
, op
, flags
| LOOKUP_RCU
);
2375 if (unlikely(file
== ERR_PTR(-ECHILD
)))
2376 file
= path_openat(-1, name
, &nd
, op
, flags
);
2377 if (unlikely(file
== ERR_PTR(-ESTALE
)))
2378 file
= path_openat(-1, name
, &nd
, op
, flags
| LOOKUP_REVAL
);
2382 struct dentry
*kern_path_create(int dfd
, const char *pathname
, struct path
*path
, int is_dir
)
2384 struct dentry
*dentry
= ERR_PTR(-EEXIST
);
2385 struct nameidata nd
;
2386 int error
= do_path_lookup(dfd
, pathname
, LOOKUP_PARENT
, &nd
);
2388 return ERR_PTR(error
);
2391 * Yucky last component or no last component at all?
2392 * (foo/., foo/.., /////)
2394 if (nd
.last_type
!= LAST_NORM
)
2396 nd
.flags
&= ~LOOKUP_PARENT
;
2397 nd
.flags
|= LOOKUP_CREATE
| LOOKUP_EXCL
;
2398 nd
.intent
.open
.flags
= O_EXCL
;
2401 * Do the final lookup.
2403 mutex_lock_nested(&nd
.path
.dentry
->d_inode
->i_mutex
, I_MUTEX_PARENT
);
2404 dentry
= lookup_hash(&nd
);
2408 if (dentry
->d_inode
)
2411 * Special case - lookup gave negative, but... we had foo/bar/
2412 * From the vfs_mknod() POV we just have a negative dentry -
2413 * all is fine. Let's be bastards - you had / on the end, you've
2414 * been asking for (non-existent) directory. -ENOENT for you.
2416 if (unlikely(!is_dir
&& nd
.last
.name
[nd
.last
.len
])) {
2418 dentry
= ERR_PTR(-ENOENT
);
2425 dentry
= ERR_PTR(-EEXIST
);
2427 mutex_unlock(&nd
.path
.dentry
->d_inode
->i_mutex
);
2432 EXPORT_SYMBOL(kern_path_create
);
2434 struct dentry
*user_path_create(int dfd
, const char __user
*pathname
, struct path
*path
, int is_dir
)
2436 char *tmp
= getname(pathname
);
2439 return ERR_CAST(tmp
);
2440 res
= kern_path_create(dfd
, tmp
, path
, is_dir
);
2444 EXPORT_SYMBOL(user_path_create
);
2446 int vfs_mknod(struct inode
*dir
, struct dentry
*dentry
, int mode
, dev_t dev
)
2448 int error
= may_create(dir
, dentry
);
2453 if ((S_ISCHR(mode
) || S_ISBLK(mode
)) &&
2454 !ns_capable(inode_userns(dir
), CAP_MKNOD
))
2457 if (!dir
->i_op
->mknod
)
2460 error
= devcgroup_inode_mknod(mode
, dev
);
2464 error
= security_inode_mknod(dir
, dentry
, mode
, dev
);
2468 error
= dir
->i_op
->mknod(dir
, dentry
, mode
, dev
);
2470 fsnotify_create(dir
, dentry
);
2474 static int may_mknod(mode_t mode
)
2476 switch (mode
& S_IFMT
) {
2482 case 0: /* zero mode translates to S_IFREG */
2491 SYSCALL_DEFINE4(mknodat
, int, dfd
, const char __user
*, filename
, int, mode
,
2494 struct dentry
*dentry
;
2501 dentry
= user_path_create(dfd
, filename
, &path
, 0);
2503 return PTR_ERR(dentry
);
2505 if (!IS_POSIXACL(path
.dentry
->d_inode
))
2506 mode
&= ~current_umask();
2507 error
= may_mknod(mode
);
2510 error
= mnt_want_write(path
.mnt
);
2513 error
= security_path_mknod(&path
, dentry
, mode
, dev
);
2515 goto out_drop_write
;
2516 switch (mode
& S_IFMT
) {
2517 case 0: case S_IFREG
:
2518 error
= vfs_create(path
.dentry
->d_inode
,dentry
,mode
,NULL
);
2520 case S_IFCHR
: case S_IFBLK
:
2521 error
= vfs_mknod(path
.dentry
->d_inode
,dentry
,mode
,
2522 new_decode_dev(dev
));
2524 case S_IFIFO
: case S_IFSOCK
:
2525 error
= vfs_mknod(path
.dentry
->d_inode
,dentry
,mode
,0);
2529 mnt_drop_write(path
.mnt
);
2532 mutex_unlock(&path
.dentry
->d_inode
->i_mutex
);
2538 SYSCALL_DEFINE3(mknod
, const char __user
*, filename
, int, mode
, unsigned, dev
)
2540 return sys_mknodat(AT_FDCWD
, filename
, mode
, dev
);
2543 int vfs_mkdir(struct inode
*dir
, struct dentry
*dentry
, int mode
)
2545 int error
= may_create(dir
, dentry
);
2550 if (!dir
->i_op
->mkdir
)
2553 mode
&= (S_IRWXUGO
|S_ISVTX
);
2554 error
= security_inode_mkdir(dir
, dentry
, mode
);
2558 error
= dir
->i_op
->mkdir(dir
, dentry
, mode
);
2560 fsnotify_mkdir(dir
, dentry
);
2564 SYSCALL_DEFINE3(mkdirat
, int, dfd
, const char __user
*, pathname
, int, mode
)
2566 struct dentry
*dentry
;
2570 dentry
= user_path_create(dfd
, pathname
, &path
, 1);
2572 return PTR_ERR(dentry
);
2574 if (!IS_POSIXACL(path
.dentry
->d_inode
))
2575 mode
&= ~current_umask();
2576 error
= mnt_want_write(path
.mnt
);
2579 error
= security_path_mkdir(&path
, dentry
, mode
);
2581 goto out_drop_write
;
2582 error
= vfs_mkdir(path
.dentry
->d_inode
, dentry
, mode
);
2584 mnt_drop_write(path
.mnt
);
2587 mutex_unlock(&path
.dentry
->d_inode
->i_mutex
);
2592 SYSCALL_DEFINE2(mkdir
, const char __user
*, pathname
, int, mode
)
2594 return sys_mkdirat(AT_FDCWD
, pathname
, mode
);
2598 * The dentry_unhash() helper will try to drop the dentry early: we
2599 * should have a usage count of 2 if we're the only user of this
2600 * dentry, and if that is true (possibly after pruning the dcache),
2601 * then we drop the dentry now.
2603 * A low-level filesystem can, if it choses, legally
2606 * if (!d_unhashed(dentry))
2609 * if it cannot handle the case of removing a directory
2610 * that is still in use by something else..
2612 void dentry_unhash(struct dentry
*dentry
)
2614 shrink_dcache_parent(dentry
);
2615 spin_lock(&dentry
->d_lock
);
2616 if (dentry
->d_count
== 1)
2618 spin_unlock(&dentry
->d_lock
);
2621 int vfs_rmdir(struct inode
*dir
, struct dentry
*dentry
)
2623 int error
= may_delete(dir
, dentry
, 1);
2628 if (!dir
->i_op
->rmdir
)
2631 mutex_lock(&dentry
->d_inode
->i_mutex
);
2634 if (d_mountpoint(dentry
))
2637 error
= security_inode_rmdir(dir
, dentry
);
2641 shrink_dcache_parent(dentry
);
2642 error
= dir
->i_op
->rmdir(dir
, dentry
);
2646 dentry
->d_inode
->i_flags
|= S_DEAD
;
2650 mutex_unlock(&dentry
->d_inode
->i_mutex
);
2656 static long do_rmdir(int dfd
, const char __user
*pathname
)
2660 struct dentry
*dentry
;
2661 struct nameidata nd
;
2663 error
= user_path_parent(dfd
, pathname
, &nd
, &name
);
2667 switch(nd
.last_type
) {
2679 nd
.flags
&= ~LOOKUP_PARENT
;
2681 mutex_lock_nested(&nd
.path
.dentry
->d_inode
->i_mutex
, I_MUTEX_PARENT
);
2682 dentry
= lookup_hash(&nd
);
2683 error
= PTR_ERR(dentry
);
2686 if (!dentry
->d_inode
) {
2690 error
= mnt_want_write(nd
.path
.mnt
);
2693 error
= security_path_rmdir(&nd
.path
, dentry
);
2696 error
= vfs_rmdir(nd
.path
.dentry
->d_inode
, dentry
);
2698 mnt_drop_write(nd
.path
.mnt
);
2702 mutex_unlock(&nd
.path
.dentry
->d_inode
->i_mutex
);
2709 SYSCALL_DEFINE1(rmdir
, const char __user
*, pathname
)
2711 return do_rmdir(AT_FDCWD
, pathname
);
2714 int vfs_unlink(struct inode
*dir
, struct dentry
*dentry
)
2716 int error
= may_delete(dir
, dentry
, 0);
2721 if (!dir
->i_op
->unlink
)
2724 mutex_lock(&dentry
->d_inode
->i_mutex
);
2725 if (d_mountpoint(dentry
))
2728 error
= security_inode_unlink(dir
, dentry
);
2730 error
= dir
->i_op
->unlink(dir
, dentry
);
2735 mutex_unlock(&dentry
->d_inode
->i_mutex
);
2737 /* We don't d_delete() NFS sillyrenamed files--they still exist. */
2738 if (!error
&& !(dentry
->d_flags
& DCACHE_NFSFS_RENAMED
)) {
2739 fsnotify_link_count(dentry
->d_inode
);
2747 * Make sure that the actual truncation of the file will occur outside its
2748 * directory's i_mutex. Truncate can take a long time if there is a lot of
2749 * writeout happening, and we don't want to prevent access to the directory
2750 * while waiting on the I/O.
2752 static long do_unlinkat(int dfd
, const char __user
*pathname
)
2756 struct dentry
*dentry
;
2757 struct nameidata nd
;
2758 struct inode
*inode
= NULL
;
2760 error
= user_path_parent(dfd
, pathname
, &nd
, &name
);
2765 if (nd
.last_type
!= LAST_NORM
)
2768 nd
.flags
&= ~LOOKUP_PARENT
;
2770 mutex_lock_nested(&nd
.path
.dentry
->d_inode
->i_mutex
, I_MUTEX_PARENT
);
2771 dentry
= lookup_hash(&nd
);
2772 error
= PTR_ERR(dentry
);
2773 if (!IS_ERR(dentry
)) {
2774 /* Why not before? Because we want correct error value */
2775 if (nd
.last
.name
[nd
.last
.len
])
2777 inode
= dentry
->d_inode
;
2781 error
= mnt_want_write(nd
.path
.mnt
);
2784 error
= security_path_unlink(&nd
.path
, dentry
);
2787 error
= vfs_unlink(nd
.path
.dentry
->d_inode
, dentry
);
2789 mnt_drop_write(nd
.path
.mnt
);
2793 mutex_unlock(&nd
.path
.dentry
->d_inode
->i_mutex
);
2795 iput(inode
); /* truncate the inode here */
2802 error
= !dentry
->d_inode
? -ENOENT
:
2803 S_ISDIR(dentry
->d_inode
->i_mode
) ? -EISDIR
: -ENOTDIR
;
2807 SYSCALL_DEFINE3(unlinkat
, int, dfd
, const char __user
*, pathname
, int, flag
)
2809 if ((flag
& ~AT_REMOVEDIR
) != 0)
2812 if (flag
& AT_REMOVEDIR
)
2813 return do_rmdir(dfd
, pathname
);
2815 return do_unlinkat(dfd
, pathname
);
2818 SYSCALL_DEFINE1(unlink
, const char __user
*, pathname
)
2820 return do_unlinkat(AT_FDCWD
, pathname
);
2823 int vfs_symlink(struct inode
*dir
, struct dentry
*dentry
, const char *oldname
)
2825 int error
= may_create(dir
, dentry
);
2830 if (!dir
->i_op
->symlink
)
2833 error
= security_inode_symlink(dir
, dentry
, oldname
);
2837 error
= dir
->i_op
->symlink(dir
, dentry
, oldname
);
2839 fsnotify_create(dir
, dentry
);
2843 SYSCALL_DEFINE3(symlinkat
, const char __user
*, oldname
,
2844 int, newdfd
, const char __user
*, newname
)
2848 struct dentry
*dentry
;
2851 from
= getname(oldname
);
2853 return PTR_ERR(from
);
2855 dentry
= user_path_create(newdfd
, newname
, &path
, 0);
2856 error
= PTR_ERR(dentry
);
2860 error
= mnt_want_write(path
.mnt
);
2863 error
= security_path_symlink(&path
, dentry
, from
);
2865 goto out_drop_write
;
2866 error
= vfs_symlink(path
.dentry
->d_inode
, dentry
, from
);
2868 mnt_drop_write(path
.mnt
);
2871 mutex_unlock(&path
.dentry
->d_inode
->i_mutex
);
2878 SYSCALL_DEFINE2(symlink
, const char __user
*, oldname
, const char __user
*, newname
)
2880 return sys_symlinkat(oldname
, AT_FDCWD
, newname
);
2883 int vfs_link(struct dentry
*old_dentry
, struct inode
*dir
, struct dentry
*new_dentry
)
2885 struct inode
*inode
= old_dentry
->d_inode
;
2891 error
= may_create(dir
, new_dentry
);
2895 if (dir
->i_sb
!= inode
->i_sb
)
2899 * A link to an append-only or immutable file cannot be created.
2901 if (IS_APPEND(inode
) || IS_IMMUTABLE(inode
))
2903 if (!dir
->i_op
->link
)
2905 if (S_ISDIR(inode
->i_mode
))
2908 error
= security_inode_link(old_dentry
, dir
, new_dentry
);
2912 mutex_lock(&inode
->i_mutex
);
2913 /* Make sure we don't allow creating hardlink to an unlinked file */
2914 if (inode
->i_nlink
== 0)
2917 error
= dir
->i_op
->link(old_dentry
, dir
, new_dentry
);
2918 mutex_unlock(&inode
->i_mutex
);
2920 fsnotify_link(dir
, inode
, new_dentry
);
2925 * Hardlinks are often used in delicate situations. We avoid
2926 * security-related surprises by not following symlinks on the
2929 * We don't follow them on the oldname either to be compatible
2930 * with linux 2.0, and to avoid hard-linking to directories
2931 * and other special files. --ADM
2933 SYSCALL_DEFINE5(linkat
, int, olddfd
, const char __user
*, oldname
,
2934 int, newdfd
, const char __user
*, newname
, int, flags
)
2936 struct dentry
*new_dentry
;
2937 struct path old_path
, new_path
;
2941 if ((flags
& ~(AT_SYMLINK_FOLLOW
| AT_EMPTY_PATH
)) != 0)
2944 * To use null names we require CAP_DAC_READ_SEARCH
2945 * This ensures that not everyone will be able to create
2946 * handlink using the passed filedescriptor.
2948 if (flags
& AT_EMPTY_PATH
) {
2949 if (!capable(CAP_DAC_READ_SEARCH
))
2954 if (flags
& AT_SYMLINK_FOLLOW
)
2955 how
|= LOOKUP_FOLLOW
;
2957 error
= user_path_at(olddfd
, oldname
, how
, &old_path
);
2961 new_dentry
= user_path_create(newdfd
, newname
, &new_path
, 0);
2962 error
= PTR_ERR(new_dentry
);
2963 if (IS_ERR(new_dentry
))
2967 if (old_path
.mnt
!= new_path
.mnt
)
2969 error
= mnt_want_write(new_path
.mnt
);
2972 error
= security_path_link(old_path
.dentry
, &new_path
, new_dentry
);
2974 goto out_drop_write
;
2975 error
= vfs_link(old_path
.dentry
, new_path
.dentry
->d_inode
, new_dentry
);
2977 mnt_drop_write(new_path
.mnt
);
2980 mutex_unlock(&new_path
.dentry
->d_inode
->i_mutex
);
2981 path_put(&new_path
);
2983 path_put(&old_path
);
2988 SYSCALL_DEFINE2(link
, const char __user
*, oldname
, const char __user
*, newname
)
2990 return sys_linkat(AT_FDCWD
, oldname
, AT_FDCWD
, newname
, 0);
2994 * The worst of all namespace operations - renaming directory. "Perverted"
2995 * doesn't even start to describe it. Somebody in UCB had a heck of a trip...
2997 * a) we can get into loop creation. Check is done in is_subdir().
2998 * b) race potential - two innocent renames can create a loop together.
2999 * That's where 4.4 screws up. Current fix: serialization on
3000 * sb->s_vfs_rename_mutex. We might be more accurate, but that's another
3002 * c) we have to lock _three_ objects - parents and victim (if it exists).
3003 * And that - after we got ->i_mutex on parents (until then we don't know
3004 * whether the target exists). Solution: try to be smart with locking
3005 * order for inodes. We rely on the fact that tree topology may change
3006 * only under ->s_vfs_rename_mutex _and_ that parent of the object we
3007 * move will be locked. Thus we can rank directories by the tree
3008 * (ancestors first) and rank all non-directories after them.
3009 * That works since everybody except rename does "lock parent, lookup,
3010 * lock child" and rename is under ->s_vfs_rename_mutex.
3011 * HOWEVER, it relies on the assumption that any object with ->lookup()
3012 * has no more than 1 dentry. If "hybrid" objects will ever appear,
3013 * we'd better make sure that there's no link(2) for them.
3014 * d) conversion from fhandle to dentry may come in the wrong moment - when
3015 * we are removing the target. Solution: we will have to grab ->i_mutex
3016 * in the fhandle_to_dentry code. [FIXME - current nfsfh.c relies on
3017 * ->i_mutex on parents, which works but leads to some truly excessive
3020 static int vfs_rename_dir(struct inode
*old_dir
, struct dentry
*old_dentry
,
3021 struct inode
*new_dir
, struct dentry
*new_dentry
)
3024 struct inode
*target
= new_dentry
->d_inode
;
3027 * If we are going to change the parent - check write permissions,
3028 * we'll need to flip '..'.
3030 if (new_dir
!= old_dir
) {
3031 error
= inode_permission(old_dentry
->d_inode
, MAY_WRITE
);
3036 error
= security_inode_rename(old_dir
, old_dentry
, new_dir
, new_dentry
);
3041 mutex_lock(&target
->i_mutex
);
3044 if (d_mountpoint(old_dentry
) || d_mountpoint(new_dentry
))
3048 shrink_dcache_parent(new_dentry
);
3049 error
= old_dir
->i_op
->rename(old_dir
, old_dentry
, new_dir
, new_dentry
);
3054 target
->i_flags
|= S_DEAD
;
3055 dont_mount(new_dentry
);
3059 mutex_unlock(&target
->i_mutex
);
3061 if (!(old_dir
->i_sb
->s_type
->fs_flags
& FS_RENAME_DOES_D_MOVE
))
3062 d_move(old_dentry
,new_dentry
);
3066 static int vfs_rename_other(struct inode
*old_dir
, struct dentry
*old_dentry
,
3067 struct inode
*new_dir
, struct dentry
*new_dentry
)
3069 struct inode
*target
= new_dentry
->d_inode
;
3072 error
= security_inode_rename(old_dir
, old_dentry
, new_dir
, new_dentry
);
3078 mutex_lock(&target
->i_mutex
);
3081 if (d_mountpoint(old_dentry
)||d_mountpoint(new_dentry
))
3084 error
= old_dir
->i_op
->rename(old_dir
, old_dentry
, new_dir
, new_dentry
);
3089 dont_mount(new_dentry
);
3090 if (!(old_dir
->i_sb
->s_type
->fs_flags
& FS_RENAME_DOES_D_MOVE
))
3091 d_move(old_dentry
, new_dentry
);
3094 mutex_unlock(&target
->i_mutex
);
3099 int vfs_rename(struct inode
*old_dir
, struct dentry
*old_dentry
,
3100 struct inode
*new_dir
, struct dentry
*new_dentry
)
3103 int is_dir
= S_ISDIR(old_dentry
->d_inode
->i_mode
);
3104 const unsigned char *old_name
;
3106 if (old_dentry
->d_inode
== new_dentry
->d_inode
)
3109 error
= may_delete(old_dir
, old_dentry
, is_dir
);
3113 if (!new_dentry
->d_inode
)
3114 error
= may_create(new_dir
, new_dentry
);
3116 error
= may_delete(new_dir
, new_dentry
, is_dir
);
3120 if (!old_dir
->i_op
->rename
)
3123 old_name
= fsnotify_oldname_init(old_dentry
->d_name
.name
);
3126 error
= vfs_rename_dir(old_dir
,old_dentry
,new_dir
,new_dentry
);
3128 error
= vfs_rename_other(old_dir
,old_dentry
,new_dir
,new_dentry
);
3130 fsnotify_move(old_dir
, new_dir
, old_name
, is_dir
,
3131 new_dentry
->d_inode
, old_dentry
);
3132 fsnotify_oldname_free(old_name
);
3137 SYSCALL_DEFINE4(renameat
, int, olddfd
, const char __user
*, oldname
,
3138 int, newdfd
, const char __user
*, newname
)
3140 struct dentry
*old_dir
, *new_dir
;
3141 struct dentry
*old_dentry
, *new_dentry
;
3142 struct dentry
*trap
;
3143 struct nameidata oldnd
, newnd
;
3148 error
= user_path_parent(olddfd
, oldname
, &oldnd
, &from
);
3152 error
= user_path_parent(newdfd
, newname
, &newnd
, &to
);
3157 if (oldnd
.path
.mnt
!= newnd
.path
.mnt
)
3160 old_dir
= oldnd
.path
.dentry
;
3162 if (oldnd
.last_type
!= LAST_NORM
)
3165 new_dir
= newnd
.path
.dentry
;
3166 if (newnd
.last_type
!= LAST_NORM
)
3169 oldnd
.flags
&= ~LOOKUP_PARENT
;
3170 newnd
.flags
&= ~LOOKUP_PARENT
;
3171 newnd
.flags
|= LOOKUP_RENAME_TARGET
;
3173 trap
= lock_rename(new_dir
, old_dir
);
3175 old_dentry
= lookup_hash(&oldnd
);
3176 error
= PTR_ERR(old_dentry
);
3177 if (IS_ERR(old_dentry
))
3179 /* source must exist */
3181 if (!old_dentry
->d_inode
)
3183 /* unless the source is a directory trailing slashes give -ENOTDIR */
3184 if (!S_ISDIR(old_dentry
->d_inode
->i_mode
)) {
3186 if (oldnd
.last
.name
[oldnd
.last
.len
])
3188 if (newnd
.last
.name
[newnd
.last
.len
])
3191 /* source should not be ancestor of target */
3193 if (old_dentry
== trap
)
3195 new_dentry
= lookup_hash(&newnd
);
3196 error
= PTR_ERR(new_dentry
);
3197 if (IS_ERR(new_dentry
))
3199 /* target should not be an ancestor of source */
3201 if (new_dentry
== trap
)
3204 error
= mnt_want_write(oldnd
.path
.mnt
);
3207 error
= security_path_rename(&oldnd
.path
, old_dentry
,
3208 &newnd
.path
, new_dentry
);
3211 error
= vfs_rename(old_dir
->d_inode
, old_dentry
,
3212 new_dir
->d_inode
, new_dentry
);
3214 mnt_drop_write(oldnd
.path
.mnt
);
3220 unlock_rename(new_dir
, old_dir
);
3222 path_put(&newnd
.path
);
3225 path_put(&oldnd
.path
);
3231 SYSCALL_DEFINE2(rename
, const char __user
*, oldname
, const char __user
*, newname
)
3233 return sys_renameat(AT_FDCWD
, oldname
, AT_FDCWD
, newname
);
3236 int vfs_readlink(struct dentry
*dentry
, char __user
*buffer
, int buflen
, const char *link
)
3240 len
= PTR_ERR(link
);
3245 if (len
> (unsigned) buflen
)
3247 if (copy_to_user(buffer
, link
, len
))
3254 * A helper for ->readlink(). This should be used *ONLY* for symlinks that
3255 * have ->follow_link() touching nd only in nd_set_link(). Using (or not
3256 * using) it for any given inode is up to filesystem.
3258 int generic_readlink(struct dentry
*dentry
, char __user
*buffer
, int buflen
)
3260 struct nameidata nd
;
3265 cookie
= dentry
->d_inode
->i_op
->follow_link(dentry
, &nd
);
3267 return PTR_ERR(cookie
);
3269 res
= vfs_readlink(dentry
, buffer
, buflen
, nd_get_link(&nd
));
3270 if (dentry
->d_inode
->i_op
->put_link
)
3271 dentry
->d_inode
->i_op
->put_link(dentry
, &nd
, cookie
);
3275 int vfs_follow_link(struct nameidata
*nd
, const char *link
)
3277 return __vfs_follow_link(nd
, link
);
3280 /* get the link contents into pagecache */
3281 static char *page_getlink(struct dentry
* dentry
, struct page
**ppage
)
3285 struct address_space
*mapping
= dentry
->d_inode
->i_mapping
;
3286 page
= read_mapping_page(mapping
, 0, NULL
);
3291 nd_terminate_link(kaddr
, dentry
->d_inode
->i_size
, PAGE_SIZE
- 1);
3295 int page_readlink(struct dentry
*dentry
, char __user
*buffer
, int buflen
)
3297 struct page
*page
= NULL
;
3298 char *s
= page_getlink(dentry
, &page
);
3299 int res
= vfs_readlink(dentry
,buffer
,buflen
,s
);
3302 page_cache_release(page
);
3307 void *page_follow_link_light(struct dentry
*dentry
, struct nameidata
*nd
)
3309 struct page
*page
= NULL
;
3310 nd_set_link(nd
, page_getlink(dentry
, &page
));
3314 void page_put_link(struct dentry
*dentry
, struct nameidata
*nd
, void *cookie
)
3316 struct page
*page
= cookie
;
3320 page_cache_release(page
);
3325 * The nofs argument instructs pagecache_write_begin to pass AOP_FLAG_NOFS
3327 int __page_symlink(struct inode
*inode
, const char *symname
, int len
, int nofs
)
3329 struct address_space
*mapping
= inode
->i_mapping
;
3334 unsigned int flags
= AOP_FLAG_UNINTERRUPTIBLE
;
3336 flags
|= AOP_FLAG_NOFS
;
3339 err
= pagecache_write_begin(NULL
, mapping
, 0, len
-1,
3340 flags
, &page
, &fsdata
);
3344 kaddr
= kmap_atomic(page
, KM_USER0
);
3345 memcpy(kaddr
, symname
, len
-1);
3346 kunmap_atomic(kaddr
, KM_USER0
);
3348 err
= pagecache_write_end(NULL
, mapping
, 0, len
-1, len
-1,
3355 mark_inode_dirty(inode
);
3361 int page_symlink(struct inode
*inode
, const char *symname
, int len
)
3363 return __page_symlink(inode
, symname
, len
,
3364 !(mapping_gfp_mask(inode
->i_mapping
) & __GFP_FS
));
3367 const struct inode_operations page_symlink_inode_operations
= {
3368 .readlink
= generic_readlink
,
3369 .follow_link
= page_follow_link_light
,
3370 .put_link
= page_put_link
,
3373 EXPORT_SYMBOL(user_path_at
);
3374 EXPORT_SYMBOL(follow_down_one
);
3375 EXPORT_SYMBOL(follow_down
);
3376 EXPORT_SYMBOL(follow_up
);
3377 EXPORT_SYMBOL(get_write_access
); /* binfmt_aout */
3378 EXPORT_SYMBOL(getname
);
3379 EXPORT_SYMBOL(lock_rename
);
3380 EXPORT_SYMBOL(lookup_one_len
);
3381 EXPORT_SYMBOL(page_follow_link_light
);
3382 EXPORT_SYMBOL(page_put_link
);
3383 EXPORT_SYMBOL(page_readlink
);
3384 EXPORT_SYMBOL(__page_symlink
);
3385 EXPORT_SYMBOL(page_symlink
);
3386 EXPORT_SYMBOL(page_symlink_inode_operations
);
3387 EXPORT_SYMBOL(kern_path
);
3388 EXPORT_SYMBOL(vfs_path_lookup
);
3389 EXPORT_SYMBOL(inode_permission
);
3390 EXPORT_SYMBOL(unlock_rename
);
3391 EXPORT_SYMBOL(vfs_create
);
3392 EXPORT_SYMBOL(vfs_follow_link
);
3393 EXPORT_SYMBOL(vfs_link
);
3394 EXPORT_SYMBOL(vfs_mkdir
);
3395 EXPORT_SYMBOL(vfs_mknod
);
3396 EXPORT_SYMBOL(generic_permission
);
3397 EXPORT_SYMBOL(vfs_readlink
);
3398 EXPORT_SYMBOL(vfs_rename
);
3399 EXPORT_SYMBOL(vfs_rmdir
);
3400 EXPORT_SYMBOL(vfs_symlink
);
3401 EXPORT_SYMBOL(vfs_unlink
);
3402 EXPORT_SYMBOL(dentry_unhash
);
3403 EXPORT_SYMBOL(generic_readlink
);