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/export.h>
19 #include <linux/kernel.h>
20 #include <linux/slab.h>
22 #include <linux/namei.h>
23 #include <linux/pagemap.h>
24 #include <linux/fsnotify.h>
25 #include <linux/personality.h>
26 #include <linux/security.h>
27 #include <linux/ima.h>
28 #include <linux/syscalls.h>
29 #include <linux/mount.h>
30 #include <linux/audit.h>
31 #include <linux/capability.h>
32 #include <linux/file.h>
33 #include <linux/fcntl.h>
34 #include <linux/device_cgroup.h>
35 #include <linux/fs_struct.h>
36 #include <linux/posix_acl.h>
37 #include <linux/hash.h>
38 #include <asm/uaccess.h>
43 /* [Feb-1997 T. Schoebel-Theuer]
44 * Fundamental changes in the pathname lookup mechanisms (namei)
45 * were necessary because of omirr. The reason is that omirr needs
46 * to know the _real_ pathname, not the user-supplied one, in case
47 * of symlinks (and also when transname replacements occur).
49 * The new code replaces the old recursive symlink resolution with
50 * an iterative one (in case of non-nested symlink chains). It does
51 * this with calls to <fs>_follow_link().
52 * As a side effect, dir_namei(), _namei() and follow_link() are now
53 * replaced with a single function lookup_dentry() that can handle all
54 * the special cases of the former code.
56 * With the new dcache, the pathname is stored at each inode, at least as
57 * long as the refcount of the inode is positive. As a side effect, the
58 * size of the dcache depends on the inode cache and thus is dynamic.
60 * [29-Apr-1998 C. Scott Ananian] Updated above description of symlink
61 * resolution to correspond with current state of the code.
63 * Note that the symlink resolution is not *completely* iterative.
64 * There is still a significant amount of tail- and mid- recursion in
65 * the algorithm. Also, note that <fs>_readlink() is not used in
66 * lookup_dentry(): lookup_dentry() on the result of <fs>_readlink()
67 * may return different results than <fs>_follow_link(). Many virtual
68 * filesystems (including /proc) exhibit this behavior.
71 /* [24-Feb-97 T. Schoebel-Theuer] Side effects caused by new implementation:
72 * New symlink semantics: when open() is called with flags O_CREAT | O_EXCL
73 * and the name already exists in form of a symlink, try to create the new
74 * name indicated by the symlink. The old code always complained that the
75 * name already exists, due to not following the symlink even if its target
76 * is nonexistent. The new semantics affects also mknod() and link() when
77 * the name is a symlink pointing to a non-existent name.
79 * I don't know which semantics is the right one, since I have no access
80 * to standards. But I found by trial that HP-UX 9.0 has the full "new"
81 * semantics implemented, while SunOS 4.1.1 and Solaris (SunOS 5.4) have the
82 * "old" one. Personally, I think the new semantics is much more logical.
83 * Note that "ln old new" where "new" is a symlink pointing to a non-existing
84 * file does succeed in both HP-UX and SunOs, but not in Solaris
85 * and in the old Linux semantics.
88 /* [16-Dec-97 Kevin Buhr] For security reasons, we change some symlink
89 * semantics. See the comments in "open_namei" and "do_link" below.
91 * [10-Sep-98 Alan Modra] Another symlink change.
94 /* [Feb-Apr 2000 AV] Complete rewrite. Rules for symlinks:
95 * inside the path - always follow.
96 * in the last component in creation/removal/renaming - never follow.
97 * if LOOKUP_FOLLOW passed - follow.
98 * if the pathname has trailing slashes - follow.
99 * otherwise - don't follow.
100 * (applied in that order).
102 * [Jun 2000 AV] Inconsistent behaviour of open() in case if flags==O_CREAT
103 * restored for 2.4. This is the last surviving part of old 4.2BSD bug.
104 * During the 2.4 we need to fix the userland stuff depending on it -
105 * hopefully we will be able to get rid of that wart in 2.5. So far only
106 * XEmacs seems to be relying on it...
109 * [Sep 2001 AV] Single-semaphore locking scheme (kudos to David Holland)
110 * implemented. Let's see if raised priority of ->s_vfs_rename_mutex gives
111 * any extra contention...
114 /* In order to reduce some races, while at the same time doing additional
115 * checking and hopefully speeding things up, we copy filenames to the
116 * kernel data space before using them..
118 * POSIX.1 2.4: an empty pathname is invalid (ENOENT).
119 * PATH_MAX includes the nul terminator --RR.
122 #define EMBEDDED_NAME_MAX (PATH_MAX - offsetof(struct filename, iname))
125 getname_flags(const char __user
*filename
, int flags
, int *empty
)
127 struct filename
*result
;
131 result
= audit_reusename(filename
);
135 result
= __getname();
136 if (unlikely(!result
))
137 return ERR_PTR(-ENOMEM
);
140 * First, try to embed the struct filename inside the names_cache
143 kname
= (char *)result
->iname
;
144 result
->name
= kname
;
146 len
= strncpy_from_user(kname
, filename
, EMBEDDED_NAME_MAX
);
147 if (unlikely(len
< 0)) {
153 * Uh-oh. We have a name that's approaching PATH_MAX. Allocate a
154 * separate struct filename so we can dedicate the entire
155 * names_cache allocation for the pathname, and re-do the copy from
158 if (unlikely(len
== EMBEDDED_NAME_MAX
)) {
159 const size_t size
= offsetof(struct filename
, iname
[1]);
160 kname
= (char *)result
;
163 * size is chosen that way we to guarantee that
164 * result->iname[0] is within the same object and that
165 * kname can't be equal to result->iname, no matter what.
167 result
= kzalloc(size
, GFP_KERNEL
);
168 if (unlikely(!result
)) {
170 return ERR_PTR(-ENOMEM
);
172 result
->name
= kname
;
173 len
= strncpy_from_user(kname
, filename
, PATH_MAX
);
174 if (unlikely(len
< 0)) {
179 if (unlikely(len
== PATH_MAX
)) {
182 return ERR_PTR(-ENAMETOOLONG
);
187 /* The empty path is special. */
188 if (unlikely(!len
)) {
191 if (!(flags
& LOOKUP_EMPTY
)) {
193 return ERR_PTR(-ENOENT
);
197 result
->uptr
= filename
;
198 result
->aname
= NULL
;
199 audit_getname(result
);
204 getname(const char __user
* filename
)
206 return getname_flags(filename
, 0, NULL
);
210 getname_kernel(const char * filename
)
212 struct filename
*result
;
213 int len
= strlen(filename
) + 1;
215 result
= __getname();
216 if (unlikely(!result
))
217 return ERR_PTR(-ENOMEM
);
219 if (len
<= EMBEDDED_NAME_MAX
) {
220 result
->name
= (char *)result
->iname
;
221 } else if (len
<= PATH_MAX
) {
222 struct filename
*tmp
;
224 tmp
= kmalloc(sizeof(*tmp
), GFP_KERNEL
);
225 if (unlikely(!tmp
)) {
227 return ERR_PTR(-ENOMEM
);
229 tmp
->name
= (char *)result
;
233 return ERR_PTR(-ENAMETOOLONG
);
235 memcpy((char *)result
->name
, filename
, len
);
237 result
->aname
= NULL
;
239 audit_getname(result
);
244 void putname(struct filename
*name
)
246 BUG_ON(name
->refcnt
<= 0);
248 if (--name
->refcnt
> 0)
251 if (name
->name
!= name
->iname
) {
252 __putname(name
->name
);
258 static int check_acl(struct inode
*inode
, int mask
)
260 #ifdef CONFIG_FS_POSIX_ACL
261 struct posix_acl
*acl
;
263 if (mask
& MAY_NOT_BLOCK
) {
264 acl
= get_cached_acl_rcu(inode
, ACL_TYPE_ACCESS
);
267 /* no ->get_acl() calls in RCU mode... */
268 if (acl
== ACL_NOT_CACHED
)
270 return posix_acl_permission(inode
, acl
, mask
& ~MAY_NOT_BLOCK
);
273 acl
= get_acl(inode
, ACL_TYPE_ACCESS
);
277 int error
= posix_acl_permission(inode
, acl
, mask
);
278 posix_acl_release(acl
);
287 * This does the basic permission checking
289 static int acl_permission_check(struct inode
*inode
, int mask
)
291 unsigned int mode
= inode
->i_mode
;
293 if (likely(uid_eq(current_fsuid(), inode
->i_uid
)))
296 if (IS_POSIXACL(inode
) && (mode
& S_IRWXG
)) {
297 int error
= check_acl(inode
, mask
);
298 if (error
!= -EAGAIN
)
302 if (in_group_p(inode
->i_gid
))
307 * If the DACs are ok we don't need any capability check.
309 if ((mask
& ~mode
& (MAY_READ
| MAY_WRITE
| MAY_EXEC
)) == 0)
315 * generic_permission - check for access rights on a Posix-like filesystem
316 * @inode: inode to check access rights for
317 * @mask: right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC, ...)
319 * Used to check for read/write/execute permissions on a file.
320 * We use "fsuid" for this, letting us set arbitrary permissions
321 * for filesystem access without changing the "normal" uids which
322 * are used for other things.
324 * generic_permission is rcu-walk aware. It returns -ECHILD in case an rcu-walk
325 * request cannot be satisfied (eg. requires blocking or too much complexity).
326 * It would then be called again in ref-walk mode.
328 int generic_permission(struct inode
*inode
, int mask
)
333 * Do the basic permission checks.
335 ret
= acl_permission_check(inode
, mask
);
339 if (S_ISDIR(inode
->i_mode
)) {
340 /* DACs are overridable for directories */
341 if (capable_wrt_inode_uidgid(inode
, CAP_DAC_OVERRIDE
))
343 if (!(mask
& MAY_WRITE
))
344 if (capable_wrt_inode_uidgid(inode
,
345 CAP_DAC_READ_SEARCH
))
350 * Read/write DACs are always overridable.
351 * Executable DACs are overridable when there is
352 * at least one exec bit set.
354 if (!(mask
& MAY_EXEC
) || (inode
->i_mode
& S_IXUGO
))
355 if (capable_wrt_inode_uidgid(inode
, CAP_DAC_OVERRIDE
))
359 * Searching includes executable on directories, else just read.
361 mask
&= MAY_READ
| MAY_WRITE
| MAY_EXEC
;
362 if (mask
== MAY_READ
)
363 if (capable_wrt_inode_uidgid(inode
, CAP_DAC_READ_SEARCH
))
368 EXPORT_SYMBOL(generic_permission
);
371 * We _really_ want to just do "generic_permission()" without
372 * even looking at the inode->i_op values. So we keep a cache
373 * flag in inode->i_opflags, that says "this has not special
374 * permission function, use the fast case".
376 static inline int do_inode_permission(struct inode
*inode
, int mask
)
378 if (unlikely(!(inode
->i_opflags
& IOP_FASTPERM
))) {
379 if (likely(inode
->i_op
->permission
))
380 return inode
->i_op
->permission(inode
, mask
);
382 /* This gets set once for the inode lifetime */
383 spin_lock(&inode
->i_lock
);
384 inode
->i_opflags
|= IOP_FASTPERM
;
385 spin_unlock(&inode
->i_lock
);
387 return generic_permission(inode
, mask
);
391 * __inode_permission - Check for access rights to a given inode
392 * @inode: Inode to check permission on
393 * @mask: Right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
395 * Check for read/write/execute permissions on an inode.
397 * When checking for MAY_APPEND, MAY_WRITE must also be set in @mask.
399 * This does not check for a read-only file system. You probably want
400 * inode_permission().
402 int __inode_permission(struct inode
*inode
, int mask
)
406 if (unlikely(mask
& MAY_WRITE
)) {
408 * Nobody gets write access to an immutable file.
410 if (IS_IMMUTABLE(inode
))
414 retval
= do_inode_permission(inode
, mask
);
418 retval
= devcgroup_inode_permission(inode
, mask
);
422 return security_inode_permission(inode
, mask
);
424 EXPORT_SYMBOL(__inode_permission
);
427 * sb_permission - Check superblock-level permissions
428 * @sb: Superblock of inode to check permission on
429 * @inode: Inode to check permission on
430 * @mask: Right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
432 * Separate out file-system wide checks from inode-specific permission checks.
434 static int sb_permission(struct super_block
*sb
, struct inode
*inode
, int mask
)
436 if (unlikely(mask
& MAY_WRITE
)) {
437 umode_t mode
= inode
->i_mode
;
439 /* Nobody gets write access to a read-only fs. */
440 if ((sb
->s_flags
& MS_RDONLY
) &&
441 (S_ISREG(mode
) || S_ISDIR(mode
) || S_ISLNK(mode
)))
448 * inode_permission - Check for access rights to a given inode
449 * @inode: Inode to check permission on
450 * @mask: Right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
452 * Check for read/write/execute permissions on an inode. We use fs[ug]id for
453 * this, letting us set arbitrary permissions for filesystem access without
454 * changing the "normal" UIDs which are used for other things.
456 * When checking for MAY_APPEND, MAY_WRITE must also be set in @mask.
458 int inode_permission(struct inode
*inode
, int mask
)
462 retval
= sb_permission(inode
->i_sb
, inode
, mask
);
465 return __inode_permission(inode
, mask
);
467 EXPORT_SYMBOL(inode_permission
);
470 * path_get - get a reference to a path
471 * @path: path to get the reference to
473 * Given a path increment the reference count to the dentry and the vfsmount.
475 void path_get(const struct path
*path
)
480 EXPORT_SYMBOL(path_get
);
483 * path_put - put a reference to a path
484 * @path: path to put the reference to
486 * Given a path decrement the reference count to the dentry and the vfsmount.
488 void path_put(const struct path
*path
)
493 EXPORT_SYMBOL(path_put
);
499 struct inode
*inode
; /* path.dentry.d_inode */
505 char *saved_names
[MAX_NESTED_LINKS
+ 1];
509 * path_connected - Verify that a path->dentry is below path->mnt.mnt_root
510 * @path: nameidate to verify
512 * Rename can sometimes move a file or directory outside of a bind
513 * mount, path_connected allows those cases to be detected.
515 static bool path_connected(const struct path
*path
)
517 struct vfsmount
*mnt
= path
->mnt
;
519 /* Only bind mounts can have disconnected paths */
520 if (mnt
->mnt_root
== mnt
->mnt_sb
->s_root
)
523 return is_subdir(path
->dentry
, mnt
->mnt_root
);
527 * Path walking has 2 modes, rcu-walk and ref-walk (see
528 * Documentation/filesystems/path-lookup.txt). In situations when we can't
529 * continue in RCU mode, we attempt to drop out of rcu-walk mode and grab
530 * normal reference counts on dentries and vfsmounts to transition to rcu-walk
531 * mode. Refcounts are grabbed at the last known good point before rcu-walk
532 * got stuck, so ref-walk may continue from there. If this is not successful
533 * (eg. a seqcount has changed), then failure is returned and it's up to caller
534 * to restart the path walk from the beginning in ref-walk mode.
538 * unlazy_walk - try to switch to ref-walk mode.
539 * @nd: nameidata pathwalk data
540 * @dentry: child of nd->path.dentry or NULL
541 * Returns: 0 on success, -ECHILD on failure
543 * unlazy_walk attempts to legitimize the current nd->path, nd->root and dentry
544 * for ref-walk mode. @dentry must be a path found by a do_lookup call on
545 * @nd or NULL. Must be called from rcu-walk context.
547 static int unlazy_walk(struct nameidata
*nd
, struct dentry
*dentry
)
549 struct fs_struct
*fs
= current
->fs
;
550 struct dentry
*parent
= nd
->path
.dentry
;
552 BUG_ON(!(nd
->flags
& LOOKUP_RCU
));
555 * After legitimizing the bastards, terminate_walk()
556 * will do the right thing for non-RCU mode, and all our
557 * subsequent exit cases should rcu_read_unlock()
558 * before returning. Do vfsmount first; if dentry
559 * can't be legitimized, just set nd->path.dentry to NULL
560 * and rely on dput(NULL) being a no-op.
562 if (!legitimize_mnt(nd
->path
.mnt
, nd
->m_seq
))
564 nd
->flags
&= ~LOOKUP_RCU
;
566 if (!lockref_get_not_dead(&parent
->d_lockref
)) {
567 nd
->path
.dentry
= NULL
;
572 * For a negative lookup, the lookup sequence point is the parents
573 * sequence point, and it only needs to revalidate the parent dentry.
575 * For a positive lookup, we need to move both the parent and the
576 * dentry from the RCU domain to be properly refcounted. And the
577 * sequence number in the dentry validates *both* dentry counters,
578 * since we checked the sequence number of the parent after we got
579 * the child sequence number. So we know the parent must still
580 * be valid if the child sequence number is still valid.
583 if (read_seqcount_retry(&parent
->d_seq
, nd
->seq
))
585 BUG_ON(nd
->inode
!= parent
->d_inode
);
587 if (!lockref_get_not_dead(&dentry
->d_lockref
))
589 if (read_seqcount_retry(&dentry
->d_seq
, nd
->seq
))
594 * Sequence counts matched. Now make sure that the root is
595 * still valid and get it if required.
597 if (nd
->root
.mnt
&& !(nd
->flags
& LOOKUP_ROOT
)) {
598 spin_lock(&fs
->lock
);
599 if (nd
->root
.mnt
!= fs
->root
.mnt
|| nd
->root
.dentry
!= fs
->root
.dentry
)
600 goto unlock_and_drop_dentry
;
602 spin_unlock(&fs
->lock
);
608 unlock_and_drop_dentry
:
609 spin_unlock(&fs
->lock
);
617 if (!(nd
->flags
& LOOKUP_ROOT
))
622 static inline int d_revalidate(struct dentry
*dentry
, unsigned int flags
)
624 return dentry
->d_op
->d_revalidate(dentry
, flags
);
628 * complete_walk - successful completion of path walk
629 * @nd: pointer nameidata
631 * If we had been in RCU mode, drop out of it and legitimize nd->path.
632 * Revalidate the final result, unless we'd already done that during
633 * the path walk or the filesystem doesn't ask for it. Return 0 on
634 * success, -error on failure. In case of failure caller does not
635 * need to drop nd->path.
637 static int complete_walk(struct nameidata
*nd
)
639 struct dentry
*dentry
= nd
->path
.dentry
;
642 if (nd
->flags
& LOOKUP_RCU
) {
643 nd
->flags
&= ~LOOKUP_RCU
;
644 if (!(nd
->flags
& LOOKUP_ROOT
))
647 if (!legitimize_mnt(nd
->path
.mnt
, nd
->m_seq
)) {
651 if (unlikely(!lockref_get_not_dead(&dentry
->d_lockref
))) {
653 mntput(nd
->path
.mnt
);
656 if (read_seqcount_retry(&dentry
->d_seq
, nd
->seq
)) {
659 mntput(nd
->path
.mnt
);
665 if (likely(!(nd
->flags
& LOOKUP_JUMPED
)))
668 if (likely(!(dentry
->d_flags
& DCACHE_OP_WEAK_REVALIDATE
)))
671 status
= dentry
->d_op
->d_weak_revalidate(dentry
, nd
->flags
);
682 static __always_inline
void set_root(struct nameidata
*nd
)
684 get_fs_root(current
->fs
, &nd
->root
);
687 static int link_path_walk(const char *, struct nameidata
*);
689 static __always_inline
unsigned set_root_rcu(struct nameidata
*nd
)
691 struct fs_struct
*fs
= current
->fs
;
695 seq
= read_seqcount_begin(&fs
->seq
);
697 res
= __read_seqcount_begin(&nd
->root
.dentry
->d_seq
);
698 } while (read_seqcount_retry(&fs
->seq
, seq
));
702 static void path_put_conditional(struct path
*path
, struct nameidata
*nd
)
705 if (path
->mnt
!= nd
->path
.mnt
)
709 static inline void path_to_nameidata(const struct path
*path
,
710 struct nameidata
*nd
)
712 if (!(nd
->flags
& LOOKUP_RCU
)) {
713 dput(nd
->path
.dentry
);
714 if (nd
->path
.mnt
!= path
->mnt
)
715 mntput(nd
->path
.mnt
);
717 nd
->path
.mnt
= path
->mnt
;
718 nd
->path
.dentry
= path
->dentry
;
722 * Helper to directly jump to a known parsed path from ->follow_link,
723 * caller must have taken a reference to path beforehand.
725 void nd_jump_link(struct nameidata
*nd
, struct path
*path
)
730 nd
->inode
= nd
->path
.dentry
->d_inode
;
731 nd
->flags
|= LOOKUP_JUMPED
;
734 void nd_set_link(struct nameidata
*nd
, char *path
)
736 nd
->saved_names
[nd
->depth
] = path
;
738 EXPORT_SYMBOL(nd_set_link
);
740 char *nd_get_link(struct nameidata
*nd
)
742 return nd
->saved_names
[nd
->depth
];
744 EXPORT_SYMBOL(nd_get_link
);
746 static inline void put_link(struct nameidata
*nd
, struct path
*link
, void *cookie
)
748 struct inode
*inode
= link
->dentry
->d_inode
;
749 if (inode
->i_op
->put_link
)
750 inode
->i_op
->put_link(link
->dentry
, nd
, cookie
);
754 int sysctl_protected_symlinks __read_mostly
= 0;
755 int sysctl_protected_hardlinks __read_mostly
= 0;
758 * may_follow_link - Check symlink following for unsafe situations
759 * @link: The path of the symlink
760 * @nd: nameidata pathwalk data
762 * In the case of the sysctl_protected_symlinks sysctl being enabled,
763 * CAP_DAC_OVERRIDE needs to be specifically ignored if the symlink is
764 * in a sticky world-writable directory. This is to protect privileged
765 * processes from failing races against path names that may change out
766 * from under them by way of other users creating malicious symlinks.
767 * It will permit symlinks to be followed only when outside a sticky
768 * world-writable directory, or when the uid of the symlink and follower
769 * match, or when the directory owner matches the symlink's owner.
771 * Returns 0 if following the symlink is allowed, -ve on error.
773 static inline int may_follow_link(struct path
*link
, struct nameidata
*nd
)
775 const struct inode
*inode
;
776 const struct inode
*parent
;
778 if (!sysctl_protected_symlinks
)
781 /* Allowed if owner and follower match. */
782 inode
= link
->dentry
->d_inode
;
783 if (uid_eq(current_cred()->fsuid
, inode
->i_uid
))
786 /* Allowed if parent directory not sticky and world-writable. */
787 parent
= nd
->path
.dentry
->d_inode
;
788 if ((parent
->i_mode
& (S_ISVTX
|S_IWOTH
)) != (S_ISVTX
|S_IWOTH
))
791 /* Allowed if parent directory and link owner match. */
792 if (uid_eq(parent
->i_uid
, inode
->i_uid
))
795 audit_log_link_denied("follow_link", link
);
796 path_put_conditional(link
, nd
);
802 * safe_hardlink_source - Check for safe hardlink conditions
803 * @inode: the source inode to hardlink from
805 * Return false if at least one of the following conditions:
806 * - inode is not a regular file
808 * - inode is setgid and group-exec
809 * - access failure for read and write
811 * Otherwise returns true.
813 static bool safe_hardlink_source(struct inode
*inode
)
815 umode_t mode
= inode
->i_mode
;
817 /* Special files should not get pinned to the filesystem. */
821 /* Setuid files should not get pinned to the filesystem. */
825 /* Executable setgid files should not get pinned to the filesystem. */
826 if ((mode
& (S_ISGID
| S_IXGRP
)) == (S_ISGID
| S_IXGRP
))
829 /* Hardlinking to unreadable or unwritable sources is dangerous. */
830 if (inode_permission(inode
, MAY_READ
| MAY_WRITE
))
837 * may_linkat - Check permissions for creating a hardlink
838 * @link: the source to hardlink from
840 * Block hardlink when all of:
841 * - sysctl_protected_hardlinks enabled
842 * - fsuid does not match inode
843 * - hardlink source is unsafe (see safe_hardlink_source() above)
846 * Returns 0 if successful, -ve on error.
848 static int may_linkat(struct path
*link
)
850 const struct cred
*cred
;
853 if (!sysctl_protected_hardlinks
)
856 cred
= current_cred();
857 inode
= link
->dentry
->d_inode
;
859 /* Source inode owner (or CAP_FOWNER) can hardlink all they like,
860 * otherwise, it must be a safe source.
862 if (uid_eq(cred
->fsuid
, inode
->i_uid
) || safe_hardlink_source(inode
) ||
866 audit_log_link_denied("linkat", link
);
870 static __always_inline
int
871 follow_link(struct path
*link
, struct nameidata
*nd
, void **p
)
873 struct dentry
*dentry
= link
->dentry
;
877 BUG_ON(nd
->flags
& LOOKUP_RCU
);
879 if (link
->mnt
== nd
->path
.mnt
)
883 if (unlikely(current
->total_link_count
>= 40))
884 goto out_put_nd_path
;
887 current
->total_link_count
++;
890 nd_set_link(nd
, NULL
);
892 error
= security_inode_follow_link(link
->dentry
, nd
);
894 goto out_put_nd_path
;
896 nd
->last_type
= LAST_BIND
;
897 *p
= dentry
->d_inode
->i_op
->follow_link(dentry
, nd
);
900 goto out_put_nd_path
;
905 if (unlikely(IS_ERR(s
))) {
907 put_link(nd
, link
, *p
);
916 nd
->flags
|= LOOKUP_JUMPED
;
918 nd
->inode
= nd
->path
.dentry
->d_inode
;
919 error
= link_path_walk(s
, nd
);
921 put_link(nd
, link
, *p
);
933 static int follow_up_rcu(struct path
*path
)
935 struct mount
*mnt
= real_mount(path
->mnt
);
936 struct mount
*parent
;
937 struct dentry
*mountpoint
;
939 parent
= mnt
->mnt_parent
;
940 if (&parent
->mnt
== path
->mnt
)
942 mountpoint
= mnt
->mnt_mountpoint
;
943 path
->dentry
= mountpoint
;
944 path
->mnt
= &parent
->mnt
;
949 * follow_up - Find the mountpoint of path's vfsmount
951 * Given a path, find the mountpoint of its source file system.
952 * Replace @path with the path of the mountpoint in the parent mount.
955 * Return 1 if we went up a level and 0 if we were already at the
958 int follow_up(struct path
*path
)
960 struct mount
*mnt
= real_mount(path
->mnt
);
961 struct mount
*parent
;
962 struct dentry
*mountpoint
;
964 read_seqlock_excl(&mount_lock
);
965 parent
= mnt
->mnt_parent
;
967 read_sequnlock_excl(&mount_lock
);
970 mntget(&parent
->mnt
);
971 mountpoint
= dget(mnt
->mnt_mountpoint
);
972 read_sequnlock_excl(&mount_lock
);
974 path
->dentry
= mountpoint
;
976 path
->mnt
= &parent
->mnt
;
979 EXPORT_SYMBOL(follow_up
);
982 * Perform an automount
983 * - return -EISDIR to tell follow_managed() to stop and return the path we
986 static int follow_automount(struct path
*path
, unsigned flags
,
989 struct vfsmount
*mnt
;
992 if (!path
->dentry
->d_op
|| !path
->dentry
->d_op
->d_automount
)
995 /* We don't want to mount if someone's just doing a stat -
996 * unless they're stat'ing a directory and appended a '/' to
999 * We do, however, want to mount if someone wants to open or
1000 * create a file of any type under the mountpoint, wants to
1001 * traverse through the mountpoint or wants to open the
1002 * mounted directory. Also, autofs may mark negative dentries
1003 * as being automount points. These will need the attentions
1004 * of the daemon to instantiate them before they can be used.
1006 if (!(flags
& (LOOKUP_PARENT
| LOOKUP_DIRECTORY
|
1007 LOOKUP_OPEN
| LOOKUP_CREATE
| LOOKUP_AUTOMOUNT
)) &&
1008 path
->dentry
->d_inode
)
1011 current
->total_link_count
++;
1012 if (current
->total_link_count
>= 40)
1015 mnt
= path
->dentry
->d_op
->d_automount(path
);
1018 * The filesystem is allowed to return -EISDIR here to indicate
1019 * it doesn't want to automount. For instance, autofs would do
1020 * this so that its userspace daemon can mount on this dentry.
1022 * However, we can only permit this if it's a terminal point in
1023 * the path being looked up; if it wasn't then the remainder of
1024 * the path is inaccessible and we should say so.
1026 if (PTR_ERR(mnt
) == -EISDIR
&& (flags
& LOOKUP_PARENT
))
1028 return PTR_ERR(mnt
);
1031 if (!mnt
) /* mount collision */
1034 if (!*need_mntput
) {
1035 /* lock_mount() may release path->mnt on error */
1037 *need_mntput
= true;
1039 err
= finish_automount(mnt
, path
);
1043 /* Someone else made a mount here whilst we were busy */
1048 path
->dentry
= dget(mnt
->mnt_root
);
1057 * Handle a dentry that is managed in some way.
1058 * - Flagged for transit management (autofs)
1059 * - Flagged as mountpoint
1060 * - Flagged as automount point
1062 * This may only be called in refwalk mode.
1064 * Serialization is taken care of in namespace.c
1066 static int follow_managed(struct path
*path
, unsigned flags
)
1068 struct vfsmount
*mnt
= path
->mnt
; /* held by caller, must be left alone */
1070 bool need_mntput
= false;
1073 /* Given that we're not holding a lock here, we retain the value in a
1074 * local variable for each dentry as we look at it so that we don't see
1075 * the components of that value change under us */
1076 while (managed
= ACCESS_ONCE(path
->dentry
->d_flags
),
1077 managed
&= DCACHE_MANAGED_DENTRY
,
1078 unlikely(managed
!= 0)) {
1079 /* Allow the filesystem to manage the transit without i_mutex
1081 if (managed
& DCACHE_MANAGE_TRANSIT
) {
1082 BUG_ON(!path
->dentry
->d_op
);
1083 BUG_ON(!path
->dentry
->d_op
->d_manage
);
1084 ret
= path
->dentry
->d_op
->d_manage(path
->dentry
, false);
1089 /* Transit to a mounted filesystem. */
1090 if (managed
& DCACHE_MOUNTED
) {
1091 struct vfsmount
*mounted
= lookup_mnt(path
);
1096 path
->mnt
= mounted
;
1097 path
->dentry
= dget(mounted
->mnt_root
);
1102 /* Something is mounted on this dentry in another
1103 * namespace and/or whatever was mounted there in this
1104 * namespace got unmounted before lookup_mnt() could
1108 /* Handle an automount point */
1109 if (managed
& DCACHE_NEED_AUTOMOUNT
) {
1110 ret
= follow_automount(path
, flags
, &need_mntput
);
1116 /* We didn't change the current path point */
1120 if (need_mntput
&& path
->mnt
== mnt
)
1124 return ret
< 0 ? ret
: need_mntput
;
1127 int follow_down_one(struct path
*path
)
1129 struct vfsmount
*mounted
;
1131 mounted
= lookup_mnt(path
);
1135 path
->mnt
= mounted
;
1136 path
->dentry
= dget(mounted
->mnt_root
);
1141 EXPORT_SYMBOL(follow_down_one
);
1143 static inline int managed_dentry_rcu(struct dentry
*dentry
)
1145 return (dentry
->d_flags
& DCACHE_MANAGE_TRANSIT
) ?
1146 dentry
->d_op
->d_manage(dentry
, true) : 0;
1150 * Try to skip to top of mountpoint pile in rcuwalk mode. Fail if
1151 * we meet a managed dentry that would need blocking.
1153 static bool __follow_mount_rcu(struct nameidata
*nd
, struct path
*path
,
1154 struct inode
**inode
)
1157 struct mount
*mounted
;
1159 * Don't forget we might have a non-mountpoint managed dentry
1160 * that wants to block transit.
1162 switch (managed_dentry_rcu(path
->dentry
)) {
1172 if (!d_mountpoint(path
->dentry
))
1173 return !(path
->dentry
->d_flags
& DCACHE_NEED_AUTOMOUNT
);
1175 mounted
= __lookup_mnt(path
->mnt
, path
->dentry
);
1178 path
->mnt
= &mounted
->mnt
;
1179 path
->dentry
= mounted
->mnt
.mnt_root
;
1180 nd
->flags
|= LOOKUP_JUMPED
;
1181 nd
->seq
= read_seqcount_begin(&path
->dentry
->d_seq
);
1183 * Update the inode too. We don't need to re-check the
1184 * dentry sequence number here after this d_inode read,
1185 * because a mount-point is always pinned.
1187 *inode
= path
->dentry
->d_inode
;
1189 return !read_seqretry(&mount_lock
, nd
->m_seq
) &&
1190 !(path
->dentry
->d_flags
& DCACHE_NEED_AUTOMOUNT
);
1193 static int follow_dotdot_rcu(struct nameidata
*nd
)
1195 struct inode
*inode
= nd
->inode
;
1200 if (nd
->path
.dentry
== nd
->root
.dentry
&&
1201 nd
->path
.mnt
== nd
->root
.mnt
) {
1204 if (nd
->path
.dentry
!= nd
->path
.mnt
->mnt_root
) {
1205 struct dentry
*old
= nd
->path
.dentry
;
1206 struct dentry
*parent
= old
->d_parent
;
1209 inode
= parent
->d_inode
;
1210 seq
= read_seqcount_begin(&parent
->d_seq
);
1211 if (read_seqcount_retry(&old
->d_seq
, nd
->seq
))
1213 nd
->path
.dentry
= parent
;
1215 if (unlikely(!path_connected(&nd
->path
)))
1219 if (!follow_up_rcu(&nd
->path
))
1221 inode
= nd
->path
.dentry
->d_inode
;
1222 nd
->seq
= read_seqcount_begin(&nd
->path
.dentry
->d_seq
);
1224 while (d_mountpoint(nd
->path
.dentry
)) {
1225 struct mount
*mounted
;
1226 mounted
= __lookup_mnt(nd
->path
.mnt
, nd
->path
.dentry
);
1229 nd
->path
.mnt
= &mounted
->mnt
;
1230 nd
->path
.dentry
= mounted
->mnt
.mnt_root
;
1231 inode
= nd
->path
.dentry
->d_inode
;
1232 nd
->seq
= read_seqcount_begin(&nd
->path
.dentry
->d_seq
);
1233 if (read_seqretry(&mount_lock
, nd
->m_seq
))
1240 nd
->flags
&= ~LOOKUP_RCU
;
1241 if (!(nd
->flags
& LOOKUP_ROOT
))
1242 nd
->root
.mnt
= NULL
;
1248 * Follow down to the covering mount currently visible to userspace. At each
1249 * point, the filesystem owning that dentry may be queried as to whether the
1250 * caller is permitted to proceed or not.
1252 int follow_down(struct path
*path
)
1257 while (managed
= ACCESS_ONCE(path
->dentry
->d_flags
),
1258 unlikely(managed
& DCACHE_MANAGED_DENTRY
)) {
1259 /* Allow the filesystem to manage the transit without i_mutex
1262 * We indicate to the filesystem if someone is trying to mount
1263 * something here. This gives autofs the chance to deny anyone
1264 * other than its daemon the right to mount on its
1267 * The filesystem may sleep at this point.
1269 if (managed
& DCACHE_MANAGE_TRANSIT
) {
1270 BUG_ON(!path
->dentry
->d_op
);
1271 BUG_ON(!path
->dentry
->d_op
->d_manage
);
1272 ret
= path
->dentry
->d_op
->d_manage(
1273 path
->dentry
, false);
1275 return ret
== -EISDIR
? 0 : ret
;
1278 /* Transit to a mounted filesystem. */
1279 if (managed
& DCACHE_MOUNTED
) {
1280 struct vfsmount
*mounted
= lookup_mnt(path
);
1285 path
->mnt
= mounted
;
1286 path
->dentry
= dget(mounted
->mnt_root
);
1290 /* Don't handle automount points here */
1295 EXPORT_SYMBOL(follow_down
);
1298 * Skip to top of mountpoint pile in refwalk mode for follow_dotdot()
1300 static void follow_mount(struct path
*path
)
1302 while (d_mountpoint(path
->dentry
)) {
1303 struct vfsmount
*mounted
= lookup_mnt(path
);
1308 path
->mnt
= mounted
;
1309 path
->dentry
= dget(mounted
->mnt_root
);
1313 static int follow_dotdot(struct nameidata
*nd
)
1319 struct dentry
*old
= nd
->path
.dentry
;
1321 if (nd
->path
.dentry
== nd
->root
.dentry
&&
1322 nd
->path
.mnt
== nd
->root
.mnt
) {
1325 if (nd
->path
.dentry
!= nd
->path
.mnt
->mnt_root
) {
1326 /* rare case of legitimate dget_parent()... */
1327 nd
->path
.dentry
= dget_parent(nd
->path
.dentry
);
1329 if (unlikely(!path_connected(&nd
->path
))) {
1330 path_put(&nd
->path
);
1335 if (!follow_up(&nd
->path
))
1338 follow_mount(&nd
->path
);
1339 nd
->inode
= nd
->path
.dentry
->d_inode
;
1344 * This looks up the name in dcache, possibly revalidates the old dentry and
1345 * allocates a new one if not found or not valid. In the need_lookup argument
1346 * returns whether i_op->lookup is necessary.
1348 * dir->d_inode->i_mutex must be held
1350 static struct dentry
*lookup_dcache(struct qstr
*name
, struct dentry
*dir
,
1351 unsigned int flags
, bool *need_lookup
)
1353 struct dentry
*dentry
;
1356 *need_lookup
= false;
1357 dentry
= d_lookup(dir
, name
);
1359 if (dentry
->d_flags
& DCACHE_OP_REVALIDATE
) {
1360 error
= d_revalidate(dentry
, flags
);
1361 if (unlikely(error
<= 0)) {
1364 return ERR_PTR(error
);
1366 d_invalidate(dentry
);
1375 dentry
= d_alloc(dir
, name
);
1376 if (unlikely(!dentry
))
1377 return ERR_PTR(-ENOMEM
);
1379 *need_lookup
= true;
1385 * Call i_op->lookup on the dentry. The dentry must be negative and
1388 * dir->d_inode->i_mutex must be held
1390 static struct dentry
*lookup_real(struct inode
*dir
, struct dentry
*dentry
,
1395 /* Don't create child dentry for a dead directory. */
1396 if (unlikely(IS_DEADDIR(dir
))) {
1398 return ERR_PTR(-ENOENT
);
1401 old
= dir
->i_op
->lookup(dir
, dentry
, flags
);
1402 if (unlikely(old
)) {
1409 static struct dentry
*__lookup_hash(struct qstr
*name
,
1410 struct dentry
*base
, unsigned int flags
)
1413 struct dentry
*dentry
;
1415 dentry
= lookup_dcache(name
, base
, flags
, &need_lookup
);
1419 return lookup_real(base
->d_inode
, dentry
, flags
);
1423 * It's more convoluted than I'd like it to be, but... it's still fairly
1424 * small and for now I'd prefer to have fast path as straight as possible.
1425 * It _is_ time-critical.
1427 static int lookup_fast(struct nameidata
*nd
,
1428 struct path
*path
, struct inode
**inode
)
1430 struct vfsmount
*mnt
= nd
->path
.mnt
;
1431 struct dentry
*dentry
, *parent
= nd
->path
.dentry
;
1437 * Rename seqlock is not required here because in the off chance
1438 * of a false negative due to a concurrent rename, we're going to
1439 * do the non-racy lookup, below.
1441 if (nd
->flags
& LOOKUP_RCU
) {
1444 dentry
= __d_lookup_rcu(parent
, &nd
->last
, &seq
);
1449 * This sequence count validates that the inode matches
1450 * the dentry name information from lookup.
1452 *inode
= dentry
->d_inode
;
1453 negative
= d_is_negative(dentry
);
1454 if (read_seqcount_retry(&dentry
->d_seq
, seq
))
1458 * This sequence count validates that the parent had no
1459 * changes while we did the lookup of the dentry above.
1461 * The memory barrier in read_seqcount_begin of child is
1462 * enough, we can use __read_seqcount_retry here.
1464 if (__read_seqcount_retry(&parent
->d_seq
, nd
->seq
))
1468 if (unlikely(dentry
->d_flags
& DCACHE_OP_REVALIDATE
)) {
1469 status
= d_revalidate(dentry
, nd
->flags
);
1470 if (unlikely(status
<= 0)) {
1471 if (status
!= -ECHILD
)
1477 * Note: do negative dentry check after revalidation in
1478 * case that drops it.
1483 path
->dentry
= dentry
;
1484 if (likely(__follow_mount_rcu(nd
, path
, inode
)))
1487 if (unlazy_walk(nd
, dentry
))
1490 dentry
= __d_lookup(parent
, &nd
->last
);
1493 if (unlikely(!dentry
))
1496 if (unlikely(dentry
->d_flags
& DCACHE_OP_REVALIDATE
) && need_reval
)
1497 status
= d_revalidate(dentry
, nd
->flags
);
1498 if (unlikely(status
<= 0)) {
1503 d_invalidate(dentry
);
1508 if (unlikely(d_is_negative(dentry
))) {
1513 path
->dentry
= dentry
;
1514 err
= follow_managed(path
, nd
->flags
);
1515 if (unlikely(err
< 0)) {
1516 path_put_conditional(path
, nd
);
1520 nd
->flags
|= LOOKUP_JUMPED
;
1521 *inode
= path
->dentry
->d_inode
;
1528 /* Fast lookup failed, do it the slow way */
1529 static int lookup_slow(struct nameidata
*nd
, struct path
*path
)
1531 struct dentry
*dentry
, *parent
;
1534 parent
= nd
->path
.dentry
;
1535 BUG_ON(nd
->inode
!= parent
->d_inode
);
1537 mutex_lock(&parent
->d_inode
->i_mutex
);
1538 dentry
= __lookup_hash(&nd
->last
, parent
, nd
->flags
);
1539 mutex_unlock(&parent
->d_inode
->i_mutex
);
1541 return PTR_ERR(dentry
);
1542 path
->mnt
= nd
->path
.mnt
;
1543 path
->dentry
= dentry
;
1544 err
= follow_managed(path
, nd
->flags
);
1545 if (unlikely(err
< 0)) {
1546 path_put_conditional(path
, nd
);
1550 nd
->flags
|= LOOKUP_JUMPED
;
1554 static inline int may_lookup(struct nameidata
*nd
)
1556 if (nd
->flags
& LOOKUP_RCU
) {
1557 int err
= inode_permission(nd
->inode
, MAY_EXEC
|MAY_NOT_BLOCK
);
1560 if (unlazy_walk(nd
, NULL
))
1563 return inode_permission(nd
->inode
, MAY_EXEC
);
1566 static inline int handle_dots(struct nameidata
*nd
, int type
)
1568 if (type
== LAST_DOTDOT
) {
1569 if (nd
->flags
& LOOKUP_RCU
) {
1570 if (follow_dotdot_rcu(nd
))
1573 return follow_dotdot(nd
);
1578 static void terminate_walk(struct nameidata
*nd
)
1580 if (!(nd
->flags
& LOOKUP_RCU
)) {
1581 path_put(&nd
->path
);
1583 nd
->flags
&= ~LOOKUP_RCU
;
1584 if (!(nd
->flags
& LOOKUP_ROOT
))
1585 nd
->root
.mnt
= NULL
;
1591 * Do we need to follow links? We _really_ want to be able
1592 * to do this check without having to look at inode->i_op,
1593 * so we keep a cache of "no, this doesn't need follow_link"
1594 * for the common case.
1596 static inline int should_follow_link(struct dentry
*dentry
, int follow
)
1598 return unlikely(d_is_symlink(dentry
)) ? follow
: 0;
1601 static inline int walk_component(struct nameidata
*nd
, struct path
*path
,
1604 struct inode
*inode
;
1607 * "." and ".." are special - ".." especially so because it has
1608 * to be able to know about the current root directory and
1609 * parent relationships.
1611 if (unlikely(nd
->last_type
!= LAST_NORM
))
1612 return handle_dots(nd
, nd
->last_type
);
1613 err
= lookup_fast(nd
, path
, &inode
);
1614 if (unlikely(err
)) {
1618 err
= lookup_slow(nd
, path
);
1622 inode
= path
->dentry
->d_inode
;
1624 if (d_is_negative(path
->dentry
))
1628 if (should_follow_link(path
->dentry
, follow
)) {
1629 if (nd
->flags
& LOOKUP_RCU
) {
1630 if (unlikely(nd
->path
.mnt
!= path
->mnt
||
1631 unlazy_walk(nd
, path
->dentry
))) {
1636 BUG_ON(inode
!= path
->dentry
->d_inode
);
1639 path_to_nameidata(path
, nd
);
1644 path_to_nameidata(path
, nd
);
1651 * This limits recursive symlink follows to 8, while
1652 * limiting consecutive symlinks to 40.
1654 * Without that kind of total limit, nasty chains of consecutive
1655 * symlinks can cause almost arbitrarily long lookups.
1657 static inline int nested_symlink(struct path
*path
, struct nameidata
*nd
)
1661 if (unlikely(current
->link_count
>= MAX_NESTED_LINKS
)) {
1662 path_put_conditional(path
, nd
);
1663 path_put(&nd
->path
);
1666 BUG_ON(nd
->depth
>= MAX_NESTED_LINKS
);
1669 current
->link_count
++;
1672 struct path link
= *path
;
1675 res
= follow_link(&link
, nd
, &cookie
);
1678 res
= walk_component(nd
, path
, LOOKUP_FOLLOW
);
1679 put_link(nd
, &link
, cookie
);
1682 current
->link_count
--;
1688 * We can do the critical dentry name comparison and hashing
1689 * operations one word at a time, but we are limited to:
1691 * - Architectures with fast unaligned word accesses. We could
1692 * do a "get_unaligned()" if this helps and is sufficiently
1695 * - non-CONFIG_DEBUG_PAGEALLOC configurations (so that we
1696 * do not trap on the (extremely unlikely) case of a page
1697 * crossing operation.
1699 * - Furthermore, we need an efficient 64-bit compile for the
1700 * 64-bit case in order to generate the "number of bytes in
1701 * the final mask". Again, that could be replaced with a
1702 * efficient population count instruction or similar.
1704 #ifdef CONFIG_DCACHE_WORD_ACCESS
1706 #include <asm/word-at-a-time.h>
1710 static inline unsigned int fold_hash(unsigned long hash
)
1712 return hash_64(hash
, 32);
1715 #else /* 32-bit case */
1717 #define fold_hash(x) (x)
1721 unsigned int full_name_hash(const unsigned char *name
, unsigned int len
)
1723 unsigned long a
, mask
;
1724 unsigned long hash
= 0;
1727 a
= load_unaligned_zeropad(name
);
1728 if (len
< sizeof(unsigned long))
1732 name
+= sizeof(unsigned long);
1733 len
-= sizeof(unsigned long);
1737 mask
= bytemask_from_count(len
);
1740 return fold_hash(hash
);
1742 EXPORT_SYMBOL(full_name_hash
);
1745 * Calculate the length and hash of the path component, and
1746 * return the "hash_len" as the result.
1748 static inline u64
hash_name(const char *name
)
1750 unsigned long a
, b
, adata
, bdata
, mask
, hash
, len
;
1751 const struct word_at_a_time constants
= WORD_AT_A_TIME_CONSTANTS
;
1754 len
= -sizeof(unsigned long);
1756 hash
= (hash
+ a
) * 9;
1757 len
+= sizeof(unsigned long);
1758 a
= load_unaligned_zeropad(name
+len
);
1759 b
= a
^ REPEAT_BYTE('/');
1760 } while (!(has_zero(a
, &adata
, &constants
) | has_zero(b
, &bdata
, &constants
)));
1762 adata
= prep_zero_mask(a
, adata
, &constants
);
1763 bdata
= prep_zero_mask(b
, bdata
, &constants
);
1765 mask
= create_zero_mask(adata
| bdata
);
1767 hash
+= a
& zero_bytemask(mask
);
1768 len
+= find_zero(mask
);
1769 return hashlen_create(fold_hash(hash
), len
);
1774 unsigned int full_name_hash(const unsigned char *name
, unsigned int len
)
1776 unsigned long hash
= init_name_hash();
1778 hash
= partial_name_hash(*name
++, hash
);
1779 return end_name_hash(hash
);
1781 EXPORT_SYMBOL(full_name_hash
);
1784 * We know there's a real path component here of at least
1787 static inline u64
hash_name(const char *name
)
1789 unsigned long hash
= init_name_hash();
1790 unsigned long len
= 0, c
;
1792 c
= (unsigned char)*name
;
1795 hash
= partial_name_hash(c
, hash
);
1796 c
= (unsigned char)name
[len
];
1797 } while (c
&& c
!= '/');
1798 return hashlen_create(end_name_hash(hash
), len
);
1805 * This is the basic name resolution function, turning a pathname into
1806 * the final dentry. We expect 'base' to be positive and a directory.
1808 * Returns 0 and nd will have valid dentry and mnt on success.
1809 * Returns error and drops reference to input namei data on failure.
1811 static int link_path_walk(const char *name
, struct nameidata
*nd
)
1821 /* At this point we know we have a real path component. */
1826 err
= may_lookup(nd
);
1830 hash_len
= hash_name(name
);
1833 if (name
[0] == '.') switch (hashlen_len(hash_len
)) {
1835 if (name
[1] == '.') {
1837 nd
->flags
|= LOOKUP_JUMPED
;
1843 if (likely(type
== LAST_NORM
)) {
1844 struct dentry
*parent
= nd
->path
.dentry
;
1845 nd
->flags
&= ~LOOKUP_JUMPED
;
1846 if (unlikely(parent
->d_flags
& DCACHE_OP_HASH
)) {
1847 struct qstr
this = { { .hash_len
= hash_len
}, .name
= name
};
1848 err
= parent
->d_op
->d_hash(parent
, &this);
1851 hash_len
= this.hash_len
;
1856 nd
->last
.hash_len
= hash_len
;
1857 nd
->last
.name
= name
;
1858 nd
->last_type
= type
;
1860 name
+= hashlen_len(hash_len
);
1864 * If it wasn't NUL, we know it was '/'. Skip that
1865 * slash, and continue until no more slashes.
1869 } while (unlikely(*name
== '/'));
1873 err
= walk_component(nd
, &next
, LOOKUP_FOLLOW
);
1878 err
= nested_symlink(&next
, nd
);
1882 if (!d_can_lookup(nd
->path
.dentry
)) {
1891 static int path_init(int dfd
, const struct filename
*name
, unsigned int flags
,
1892 struct nameidata
*nd
)
1895 const char *s
= name
->name
;
1897 nd
->last_type
= LAST_ROOT
; /* if there are only slashes... */
1898 nd
->flags
= flags
| LOOKUP_JUMPED
| LOOKUP_PARENT
;
1901 if (flags
& LOOKUP_ROOT
) {
1902 struct dentry
*root
= nd
->root
.dentry
;
1903 struct inode
*inode
= root
->d_inode
;
1905 if (!d_can_lookup(root
))
1907 retval
= inode_permission(inode
, MAY_EXEC
);
1911 nd
->path
= nd
->root
;
1913 if (flags
& LOOKUP_RCU
) {
1915 nd
->seq
= __read_seqcount_begin(&nd
->path
.dentry
->d_seq
);
1916 nd
->m_seq
= read_seqbegin(&mount_lock
);
1918 path_get(&nd
->path
);
1923 nd
->root
.mnt
= NULL
;
1925 nd
->m_seq
= read_seqbegin(&mount_lock
);
1927 if (flags
& LOOKUP_RCU
) {
1929 nd
->seq
= set_root_rcu(nd
);
1932 path_get(&nd
->root
);
1934 nd
->path
= nd
->root
;
1935 } else if (dfd
== AT_FDCWD
) {
1936 if (flags
& LOOKUP_RCU
) {
1937 struct fs_struct
*fs
= current
->fs
;
1943 seq
= read_seqcount_begin(&fs
->seq
);
1945 nd
->seq
= __read_seqcount_begin(&nd
->path
.dentry
->d_seq
);
1946 } while (read_seqcount_retry(&fs
->seq
, seq
));
1948 get_fs_pwd(current
->fs
, &nd
->path
);
1951 /* Caller must check execute permissions on the starting path component */
1952 struct fd f
= fdget_raw(dfd
);
1953 struct dentry
*dentry
;
1958 dentry
= f
.file
->f_path
.dentry
;
1961 if (!d_can_lookup(dentry
)) {
1967 nd
->path
= f
.file
->f_path
;
1968 if (flags
& LOOKUP_RCU
) {
1969 if (f
.flags
& FDPUT_FPUT
)
1971 nd
->seq
= __read_seqcount_begin(&nd
->path
.dentry
->d_seq
);
1974 path_get(&nd
->path
);
1979 nd
->inode
= nd
->path
.dentry
->d_inode
;
1980 if (!(flags
& LOOKUP_RCU
))
1982 if (likely(!read_seqcount_retry(&nd
->path
.dentry
->d_seq
, nd
->seq
)))
1984 if (!(nd
->flags
& LOOKUP_ROOT
))
1985 nd
->root
.mnt
= NULL
;
1989 current
->total_link_count
= 0;
1990 return link_path_walk(s
, nd
);
1993 static void path_cleanup(struct nameidata
*nd
)
1995 if (nd
->root
.mnt
&& !(nd
->flags
& LOOKUP_ROOT
)) {
1996 path_put(&nd
->root
);
1997 nd
->root
.mnt
= NULL
;
1999 if (unlikely(nd
->base
))
2003 static inline int lookup_last(struct nameidata
*nd
, struct path
*path
)
2005 if (nd
->last_type
== LAST_NORM
&& nd
->last
.name
[nd
->last
.len
])
2006 nd
->flags
|= LOOKUP_FOLLOW
| LOOKUP_DIRECTORY
;
2008 nd
->flags
&= ~LOOKUP_PARENT
;
2009 return walk_component(nd
, path
, nd
->flags
& LOOKUP_FOLLOW
);
2012 /* Returns 0 and nd will be valid on success; Retuns error, otherwise. */
2013 static int path_lookupat(int dfd
, const struct filename
*name
,
2014 unsigned int flags
, struct nameidata
*nd
)
2020 * Path walking is largely split up into 2 different synchronisation
2021 * schemes, rcu-walk and ref-walk (explained in
2022 * Documentation/filesystems/path-lookup.txt). These share much of the
2023 * path walk code, but some things particularly setup, cleanup, and
2024 * following mounts are sufficiently divergent that functions are
2025 * duplicated. Typically there is a function foo(), and its RCU
2026 * analogue, foo_rcu().
2028 * -ECHILD is the error number of choice (just to avoid clashes) that
2029 * is returned if some aspect of an rcu-walk fails. Such an error must
2030 * be handled by restarting a traditional ref-walk (which will always
2031 * be able to complete).
2033 err
= path_init(dfd
, name
, flags
, nd
);
2034 if (!err
&& !(flags
& LOOKUP_PARENT
)) {
2035 err
= lookup_last(nd
, &path
);
2038 struct path link
= path
;
2039 err
= may_follow_link(&link
, nd
);
2042 nd
->flags
|= LOOKUP_PARENT
;
2043 err
= follow_link(&link
, nd
, &cookie
);
2046 err
= lookup_last(nd
, &path
);
2047 put_link(nd
, &link
, cookie
);
2052 err
= complete_walk(nd
);
2054 if (!err
&& nd
->flags
& LOOKUP_DIRECTORY
) {
2055 if (!d_can_lookup(nd
->path
.dentry
)) {
2056 path_put(&nd
->path
);
2065 static int filename_lookup(int dfd
, struct filename
*name
,
2066 unsigned int flags
, struct nameidata
*nd
)
2068 int retval
= path_lookupat(dfd
, name
, flags
| LOOKUP_RCU
, nd
);
2069 if (unlikely(retval
== -ECHILD
))
2070 retval
= path_lookupat(dfd
, name
, flags
, nd
);
2071 if (unlikely(retval
== -ESTALE
))
2072 retval
= path_lookupat(dfd
, name
, flags
| LOOKUP_REVAL
, nd
);
2074 if (likely(!retval
))
2075 audit_inode(name
, nd
->path
.dentry
, flags
& LOOKUP_PARENT
);
2079 /* does lookup, returns the object with parent locked */
2080 struct dentry
*kern_path_locked(const char *name
, struct path
*path
)
2082 struct filename
*filename
= getname_kernel(name
);
2083 struct nameidata nd
;
2087 if (IS_ERR(filename
))
2088 return ERR_CAST(filename
);
2090 err
= filename_lookup(AT_FDCWD
, filename
, LOOKUP_PARENT
, &nd
);
2095 if (nd
.last_type
!= LAST_NORM
) {
2097 d
= ERR_PTR(-EINVAL
);
2100 mutex_lock_nested(&nd
.path
.dentry
->d_inode
->i_mutex
, I_MUTEX_PARENT
);
2101 d
= __lookup_hash(&nd
.last
, nd
.path
.dentry
, 0);
2103 mutex_unlock(&nd
.path
.dentry
->d_inode
->i_mutex
);
2113 int kern_path(const char *name
, unsigned int flags
, struct path
*path
)
2115 struct nameidata nd
;
2116 struct filename
*filename
= getname_kernel(name
);
2117 int res
= PTR_ERR(filename
);
2119 if (!IS_ERR(filename
)) {
2120 res
= filename_lookup(AT_FDCWD
, filename
, flags
, &nd
);
2127 EXPORT_SYMBOL(kern_path
);
2130 * vfs_path_lookup - lookup a file path relative to a dentry-vfsmount pair
2131 * @dentry: pointer to dentry of the base directory
2132 * @mnt: pointer to vfs mount of the base directory
2133 * @name: pointer to file name
2134 * @flags: lookup flags
2135 * @path: pointer to struct path to fill
2137 int vfs_path_lookup(struct dentry
*dentry
, struct vfsmount
*mnt
,
2138 const char *name
, unsigned int flags
,
2141 struct filename
*filename
= getname_kernel(name
);
2142 int err
= PTR_ERR(filename
);
2144 BUG_ON(flags
& LOOKUP_PARENT
);
2146 /* the first argument of filename_lookup() is ignored with LOOKUP_ROOT */
2147 if (!IS_ERR(filename
)) {
2148 struct nameidata nd
;
2149 nd
.root
.dentry
= dentry
;
2151 err
= filename_lookup(AT_FDCWD
, filename
,
2152 flags
| LOOKUP_ROOT
, &nd
);
2159 EXPORT_SYMBOL(vfs_path_lookup
);
2162 * Restricted form of lookup. Doesn't follow links, single-component only,
2163 * needs parent already locked. Doesn't follow mounts.
2166 static struct dentry
*lookup_hash(struct nameidata
*nd
)
2168 return __lookup_hash(&nd
->last
, nd
->path
.dentry
, nd
->flags
);
2172 * lookup_one_len - filesystem helper to lookup single pathname component
2173 * @name: pathname component to lookup
2174 * @base: base directory to lookup from
2175 * @len: maximum length @len should be interpreted to
2177 * Note that this routine is purely a helper for filesystem usage and should
2178 * not be called by generic code.
2180 struct dentry
*lookup_one_len(const char *name
, struct dentry
*base
, int len
)
2186 WARN_ON_ONCE(!mutex_is_locked(&base
->d_inode
->i_mutex
));
2190 this.hash
= full_name_hash(name
, len
);
2192 return ERR_PTR(-EACCES
);
2194 if (unlikely(name
[0] == '.')) {
2195 if (len
< 2 || (len
== 2 && name
[1] == '.'))
2196 return ERR_PTR(-EACCES
);
2200 c
= *(const unsigned char *)name
++;
2201 if (c
== '/' || c
== '\0')
2202 return ERR_PTR(-EACCES
);
2205 * See if the low-level filesystem might want
2206 * to use its own hash..
2208 if (base
->d_flags
& DCACHE_OP_HASH
) {
2209 int err
= base
->d_op
->d_hash(base
, &this);
2211 return ERR_PTR(err
);
2214 err
= inode_permission(base
->d_inode
, MAY_EXEC
);
2216 return ERR_PTR(err
);
2218 return __lookup_hash(&this, base
, 0);
2220 EXPORT_SYMBOL(lookup_one_len
);
2222 int user_path_at_empty(int dfd
, const char __user
*name
, unsigned flags
,
2223 struct path
*path
, int *empty
)
2225 struct nameidata nd
;
2226 struct filename
*tmp
= getname_flags(name
, flags
, empty
);
2227 int err
= PTR_ERR(tmp
);
2230 BUG_ON(flags
& LOOKUP_PARENT
);
2232 err
= filename_lookup(dfd
, tmp
, flags
, &nd
);
2240 int user_path_at(int dfd
, const char __user
*name
, unsigned flags
,
2243 return user_path_at_empty(dfd
, name
, flags
, path
, NULL
);
2245 EXPORT_SYMBOL(user_path_at
);
2248 * NB: most callers don't do anything directly with the reference to the
2249 * to struct filename, but the nd->last pointer points into the name string
2250 * allocated by getname. So we must hold the reference to it until all
2251 * path-walking is complete.
2253 static struct filename
*
2254 user_path_parent(int dfd
, const char __user
*path
, struct nameidata
*nd
,
2257 struct filename
*s
= getname(path
);
2260 /* only LOOKUP_REVAL is allowed in extra flags */
2261 flags
&= LOOKUP_REVAL
;
2266 error
= filename_lookup(dfd
, s
, flags
| LOOKUP_PARENT
, nd
);
2269 return ERR_PTR(error
);
2276 * mountpoint_last - look up last component for umount
2277 * @nd: pathwalk nameidata - currently pointing at parent directory of "last"
2278 * @path: pointer to container for result
2280 * This is a special lookup_last function just for umount. In this case, we
2281 * need to resolve the path without doing any revalidation.
2283 * The nameidata should be the result of doing a LOOKUP_PARENT pathwalk. Since
2284 * mountpoints are always pinned in the dcache, their ancestors are too. Thus,
2285 * in almost all cases, this lookup will be served out of the dcache. The only
2286 * cases where it won't are if nd->last refers to a symlink or the path is
2287 * bogus and it doesn't exist.
2290 * -error: if there was an error during lookup. This includes -ENOENT if the
2291 * lookup found a negative dentry. The nd->path reference will also be
2294 * 0: if we successfully resolved nd->path and found it to not to be a
2295 * symlink that needs to be followed. "path" will also be populated.
2296 * The nd->path reference will also be put.
2298 * 1: if we successfully resolved nd->last and found it to be a symlink
2299 * that needs to be followed. "path" will be populated with the path
2300 * to the link, and nd->path will *not* be put.
2303 mountpoint_last(struct nameidata
*nd
, struct path
*path
)
2306 struct dentry
*dentry
;
2307 struct dentry
*dir
= nd
->path
.dentry
;
2309 /* If we're in rcuwalk, drop out of it to handle last component */
2310 if (nd
->flags
& LOOKUP_RCU
) {
2311 if (unlazy_walk(nd
, NULL
)) {
2317 nd
->flags
&= ~LOOKUP_PARENT
;
2319 if (unlikely(nd
->last_type
!= LAST_NORM
)) {
2320 error
= handle_dots(nd
, nd
->last_type
);
2323 dentry
= dget(nd
->path
.dentry
);
2327 mutex_lock(&dir
->d_inode
->i_mutex
);
2328 dentry
= d_lookup(dir
, &nd
->last
);
2331 * No cached dentry. Mounted dentries are pinned in the cache,
2332 * so that means that this dentry is probably a symlink or the
2333 * path doesn't actually point to a mounted dentry.
2335 dentry
= d_alloc(dir
, &nd
->last
);
2338 mutex_unlock(&dir
->d_inode
->i_mutex
);
2341 dentry
= lookup_real(dir
->d_inode
, dentry
, nd
->flags
);
2342 error
= PTR_ERR(dentry
);
2343 if (IS_ERR(dentry
)) {
2344 mutex_unlock(&dir
->d_inode
->i_mutex
);
2348 mutex_unlock(&dir
->d_inode
->i_mutex
);
2351 if (d_is_negative(dentry
)) {
2356 path
->dentry
= dentry
;
2357 path
->mnt
= nd
->path
.mnt
;
2358 if (should_follow_link(dentry
, nd
->flags
& LOOKUP_FOLLOW
))
2369 * path_mountpoint - look up a path to be umounted
2370 * @dfd: directory file descriptor to start walk from
2371 * @name: full pathname to walk
2372 * @path: pointer to container for result
2373 * @flags: lookup flags
2375 * Look up the given name, but don't attempt to revalidate the last component.
2376 * Returns 0 and "path" will be valid on success; Returns error otherwise.
2379 path_mountpoint(int dfd
, const struct filename
*name
, struct path
*path
,
2382 struct nameidata nd
;
2385 err
= path_init(dfd
, name
, flags
, &nd
);
2389 err
= mountpoint_last(&nd
, path
);
2392 struct path link
= *path
;
2393 err
= may_follow_link(&link
, &nd
);
2396 nd
.flags
|= LOOKUP_PARENT
;
2397 err
= follow_link(&link
, &nd
, &cookie
);
2400 err
= mountpoint_last(&nd
, path
);
2401 put_link(&nd
, &link
, cookie
);
2409 filename_mountpoint(int dfd
, struct filename
*name
, struct path
*path
,
2414 return PTR_ERR(name
);
2415 error
= path_mountpoint(dfd
, name
, path
, flags
| LOOKUP_RCU
);
2416 if (unlikely(error
== -ECHILD
))
2417 error
= path_mountpoint(dfd
, name
, path
, flags
);
2418 if (unlikely(error
== -ESTALE
))
2419 error
= path_mountpoint(dfd
, name
, path
, flags
| LOOKUP_REVAL
);
2421 audit_inode(name
, path
->dentry
, 0);
2427 * user_path_mountpoint_at - lookup a path from userland in order to umount it
2428 * @dfd: directory file descriptor
2429 * @name: pathname from userland
2430 * @flags: lookup flags
2431 * @path: pointer to container to hold result
2433 * A umount is a special case for path walking. We're not actually interested
2434 * in the inode in this situation, and ESTALE errors can be a problem. We
2435 * simply want track down the dentry and vfsmount attached at the mountpoint
2436 * and avoid revalidating the last component.
2438 * Returns 0 and populates "path" on success.
2441 user_path_mountpoint_at(int dfd
, const char __user
*name
, unsigned int flags
,
2444 return filename_mountpoint(dfd
, getname(name
), path
, flags
);
2448 kern_path_mountpoint(int dfd
, const char *name
, struct path
*path
,
2451 return filename_mountpoint(dfd
, getname_kernel(name
), path
, flags
);
2453 EXPORT_SYMBOL(kern_path_mountpoint
);
2455 int __check_sticky(struct inode
*dir
, struct inode
*inode
)
2457 kuid_t fsuid
= current_fsuid();
2459 if (uid_eq(inode
->i_uid
, fsuid
))
2461 if (uid_eq(dir
->i_uid
, fsuid
))
2463 return !capable_wrt_inode_uidgid(inode
, CAP_FOWNER
);
2465 EXPORT_SYMBOL(__check_sticky
);
2468 * Check whether we can remove a link victim from directory dir, check
2469 * whether the type of victim is right.
2470 * 1. We can't do it if dir is read-only (done in permission())
2471 * 2. We should have write and exec permissions on dir
2472 * 3. We can't remove anything from append-only dir
2473 * 4. We can't do anything with immutable dir (done in permission())
2474 * 5. If the sticky bit on dir is set we should either
2475 * a. be owner of dir, or
2476 * b. be owner of victim, or
2477 * c. have CAP_FOWNER capability
2478 * 6. If the victim is append-only or immutable we can't do antyhing with
2479 * links pointing to it.
2480 * 7. If we were asked to remove a directory and victim isn't one - ENOTDIR.
2481 * 8. If we were asked to remove a non-directory and victim isn't one - EISDIR.
2482 * 9. We can't remove a root or mountpoint.
2483 * 10. We don't allow removal of NFS sillyrenamed files; it's handled by
2484 * nfs_async_unlink().
2486 static int may_delete(struct inode
*dir
, struct dentry
*victim
, bool isdir
)
2488 struct inode
*inode
= victim
->d_inode
;
2491 if (d_is_negative(victim
))
2495 BUG_ON(victim
->d_parent
->d_inode
!= dir
);
2496 audit_inode_child(dir
, victim
, AUDIT_TYPE_CHILD_DELETE
);
2498 error
= inode_permission(dir
, MAY_WRITE
| MAY_EXEC
);
2504 if (check_sticky(dir
, inode
) || IS_APPEND(inode
) ||
2505 IS_IMMUTABLE(inode
) || IS_SWAPFILE(inode
))
2508 if (!d_is_dir(victim
))
2510 if (IS_ROOT(victim
))
2512 } else if (d_is_dir(victim
))
2514 if (IS_DEADDIR(dir
))
2516 if (victim
->d_flags
& DCACHE_NFSFS_RENAMED
)
2521 /* Check whether we can create an object with dentry child in directory
2523 * 1. We can't do it if child already exists (open has special treatment for
2524 * this case, but since we are inlined it's OK)
2525 * 2. We can't do it if dir is read-only (done in permission())
2526 * 3. We should have write and exec permissions on dir
2527 * 4. We can't do it if dir is immutable (done in permission())
2529 static inline int may_create(struct inode
*dir
, struct dentry
*child
)
2531 audit_inode_child(dir
, child
, AUDIT_TYPE_CHILD_CREATE
);
2534 if (IS_DEADDIR(dir
))
2536 return inode_permission(dir
, MAY_WRITE
| MAY_EXEC
);
2540 * p1 and p2 should be directories on the same fs.
2542 struct dentry
*lock_rename(struct dentry
*p1
, struct dentry
*p2
)
2547 mutex_lock_nested(&p1
->d_inode
->i_mutex
, I_MUTEX_PARENT
);
2551 mutex_lock(&p1
->d_inode
->i_sb
->s_vfs_rename_mutex
);
2553 p
= d_ancestor(p2
, p1
);
2555 mutex_lock_nested(&p2
->d_inode
->i_mutex
, I_MUTEX_PARENT
);
2556 mutex_lock_nested(&p1
->d_inode
->i_mutex
, I_MUTEX_CHILD
);
2560 p
= d_ancestor(p1
, p2
);
2562 mutex_lock_nested(&p1
->d_inode
->i_mutex
, I_MUTEX_PARENT
);
2563 mutex_lock_nested(&p2
->d_inode
->i_mutex
, I_MUTEX_CHILD
);
2567 mutex_lock_nested(&p1
->d_inode
->i_mutex
, I_MUTEX_PARENT
);
2568 mutex_lock_nested(&p2
->d_inode
->i_mutex
, I_MUTEX_PARENT2
);
2571 EXPORT_SYMBOL(lock_rename
);
2573 void unlock_rename(struct dentry
*p1
, struct dentry
*p2
)
2575 mutex_unlock(&p1
->d_inode
->i_mutex
);
2577 mutex_unlock(&p2
->d_inode
->i_mutex
);
2578 mutex_unlock(&p1
->d_inode
->i_sb
->s_vfs_rename_mutex
);
2581 EXPORT_SYMBOL(unlock_rename
);
2583 int vfs_create(struct inode
*dir
, struct dentry
*dentry
, umode_t mode
,
2586 int error
= may_create(dir
, dentry
);
2590 if (!dir
->i_op
->create
)
2591 return -EACCES
; /* shouldn't it be ENOSYS? */
2594 error
= security_inode_create(dir
, dentry
, mode
);
2597 error
= dir
->i_op
->create(dir
, dentry
, mode
, want_excl
);
2599 fsnotify_create(dir
, dentry
);
2602 EXPORT_SYMBOL(vfs_create
);
2604 static int may_open(struct path
*path
, int acc_mode
, int flag
)
2606 struct dentry
*dentry
= path
->dentry
;
2607 struct inode
*inode
= dentry
->d_inode
;
2617 switch (inode
->i_mode
& S_IFMT
) {
2621 if (acc_mode
& MAY_WRITE
)
2626 if (path
->mnt
->mnt_flags
& MNT_NODEV
)
2635 error
= inode_permission(inode
, acc_mode
);
2640 * An append-only file must be opened in append mode for writing.
2642 if (IS_APPEND(inode
)) {
2643 if ((flag
& O_ACCMODE
) != O_RDONLY
&& !(flag
& O_APPEND
))
2649 /* O_NOATIME can only be set by the owner or superuser */
2650 if (flag
& O_NOATIME
&& !inode_owner_or_capable(inode
))
2656 static int handle_truncate(struct file
*filp
)
2658 struct path
*path
= &filp
->f_path
;
2659 struct inode
*inode
= path
->dentry
->d_inode
;
2660 int error
= get_write_access(inode
);
2664 * Refuse to truncate files with mandatory locks held on them.
2666 error
= locks_verify_locked(filp
);
2668 error
= security_path_truncate(path
);
2670 error
= do_truncate(path
->dentry
, 0,
2671 ATTR_MTIME
|ATTR_CTIME
|ATTR_OPEN
,
2674 put_write_access(inode
);
2678 static inline int open_to_namei_flags(int flag
)
2680 if ((flag
& O_ACCMODE
) == 3)
2685 static int may_o_create(struct path
*dir
, struct dentry
*dentry
, umode_t mode
)
2687 int error
= security_path_mknod(dir
, dentry
, mode
, 0);
2691 error
= inode_permission(dir
->dentry
->d_inode
, MAY_WRITE
| MAY_EXEC
);
2695 return security_inode_create(dir
->dentry
->d_inode
, dentry
, mode
);
2699 * Attempt to atomically look up, create and open a file from a negative
2702 * Returns 0 if successful. The file will have been created and attached to
2703 * @file by the filesystem calling finish_open().
2705 * Returns 1 if the file was looked up only or didn't need creating. The
2706 * caller will need to perform the open themselves. @path will have been
2707 * updated to point to the new dentry. This may be negative.
2709 * Returns an error code otherwise.
2711 static int atomic_open(struct nameidata
*nd
, struct dentry
*dentry
,
2712 struct path
*path
, struct file
*file
,
2713 const struct open_flags
*op
,
2714 bool got_write
, bool need_lookup
,
2717 struct inode
*dir
= nd
->path
.dentry
->d_inode
;
2718 unsigned open_flag
= open_to_namei_flags(op
->open_flag
);
2722 int create_error
= 0;
2723 struct dentry
*const DENTRY_NOT_SET
= (void *) -1UL;
2726 BUG_ON(dentry
->d_inode
);
2728 /* Don't create child dentry for a dead directory. */
2729 if (unlikely(IS_DEADDIR(dir
))) {
2735 if ((open_flag
& O_CREAT
) && !IS_POSIXACL(dir
))
2736 mode
&= ~current_umask();
2738 excl
= (open_flag
& (O_EXCL
| O_CREAT
)) == (O_EXCL
| O_CREAT
);
2740 open_flag
&= ~O_TRUNC
;
2743 * Checking write permission is tricky, bacuse we don't know if we are
2744 * going to actually need it: O_CREAT opens should work as long as the
2745 * file exists. But checking existence breaks atomicity. The trick is
2746 * to check access and if not granted clear O_CREAT from the flags.
2748 * Another problem is returing the "right" error value (e.g. for an
2749 * O_EXCL open we want to return EEXIST not EROFS).
2751 if (((open_flag
& (O_CREAT
| O_TRUNC
)) ||
2752 (open_flag
& O_ACCMODE
) != O_RDONLY
) && unlikely(!got_write
)) {
2753 if (!(open_flag
& O_CREAT
)) {
2755 * No O_CREATE -> atomicity not a requirement -> fall
2756 * back to lookup + open
2759 } else if (open_flag
& (O_EXCL
| O_TRUNC
)) {
2760 /* Fall back and fail with the right error */
2761 create_error
= -EROFS
;
2764 /* No side effects, safe to clear O_CREAT */
2765 create_error
= -EROFS
;
2766 open_flag
&= ~O_CREAT
;
2770 if (open_flag
& O_CREAT
) {
2771 error
= may_o_create(&nd
->path
, dentry
, mode
);
2773 create_error
= error
;
2774 if (open_flag
& O_EXCL
)
2776 open_flag
&= ~O_CREAT
;
2780 if (nd
->flags
& LOOKUP_DIRECTORY
)
2781 open_flag
|= O_DIRECTORY
;
2783 file
->f_path
.dentry
= DENTRY_NOT_SET
;
2784 file
->f_path
.mnt
= nd
->path
.mnt
;
2785 error
= dir
->i_op
->atomic_open(dir
, dentry
, file
, open_flag
, mode
,
2788 if (create_error
&& error
== -ENOENT
)
2789 error
= create_error
;
2793 if (error
) { /* returned 1, that is */
2794 if (WARN_ON(file
->f_path
.dentry
== DENTRY_NOT_SET
)) {
2798 if (file
->f_path
.dentry
) {
2800 dentry
= file
->f_path
.dentry
;
2802 if (*opened
& FILE_CREATED
)
2803 fsnotify_create(dir
, dentry
);
2804 if (!dentry
->d_inode
) {
2805 WARN_ON(*opened
& FILE_CREATED
);
2807 error
= create_error
;
2811 if (excl
&& !(*opened
& FILE_CREATED
)) {
2820 * We didn't have the inode before the open, so check open permission
2823 acc_mode
= op
->acc_mode
;
2824 if (*opened
& FILE_CREATED
) {
2825 WARN_ON(!(open_flag
& O_CREAT
));
2826 fsnotify_create(dir
, dentry
);
2827 acc_mode
= MAY_OPEN
;
2829 error
= may_open(&file
->f_path
, acc_mode
, open_flag
);
2839 dentry
= lookup_real(dir
, dentry
, nd
->flags
);
2841 return PTR_ERR(dentry
);
2844 int open_flag
= op
->open_flag
;
2846 error
= create_error
;
2847 if ((open_flag
& O_EXCL
)) {
2848 if (!dentry
->d_inode
)
2850 } else if (!dentry
->d_inode
) {
2852 } else if ((open_flag
& O_TRUNC
) &&
2856 /* will fail later, go on to get the right error */
2860 path
->dentry
= dentry
;
2861 path
->mnt
= nd
->path
.mnt
;
2866 * Look up and maybe create and open the last component.
2868 * Must be called with i_mutex held on parent.
2870 * Returns 0 if the file was successfully atomically created (if necessary) and
2871 * opened. In this case the file will be returned attached to @file.
2873 * Returns 1 if the file was not completely opened at this time, though lookups
2874 * and creations will have been performed and the dentry returned in @path will
2875 * be positive upon return if O_CREAT was specified. If O_CREAT wasn't
2876 * specified then a negative dentry may be returned.
2878 * An error code is returned otherwise.
2880 * FILE_CREATE will be set in @*opened if the dentry was created and will be
2881 * cleared otherwise prior to returning.
2883 static int lookup_open(struct nameidata
*nd
, struct path
*path
,
2885 const struct open_flags
*op
,
2886 bool got_write
, int *opened
)
2888 struct dentry
*dir
= nd
->path
.dentry
;
2889 struct inode
*dir_inode
= dir
->d_inode
;
2890 struct dentry
*dentry
;
2894 *opened
&= ~FILE_CREATED
;
2895 dentry
= lookup_dcache(&nd
->last
, dir
, nd
->flags
, &need_lookup
);
2897 return PTR_ERR(dentry
);
2899 /* Cached positive dentry: will open in f_op->open */
2900 if (!need_lookup
&& dentry
->d_inode
)
2903 if ((nd
->flags
& LOOKUP_OPEN
) && dir_inode
->i_op
->atomic_open
) {
2904 return atomic_open(nd
, dentry
, path
, file
, op
, got_write
,
2905 need_lookup
, opened
);
2909 BUG_ON(dentry
->d_inode
);
2911 dentry
= lookup_real(dir_inode
, dentry
, nd
->flags
);
2913 return PTR_ERR(dentry
);
2916 /* Negative dentry, just create the file */
2917 if (!dentry
->d_inode
&& (op
->open_flag
& O_CREAT
)) {
2918 umode_t mode
= op
->mode
;
2919 if (!IS_POSIXACL(dir
->d_inode
))
2920 mode
&= ~current_umask();
2922 * This write is needed to ensure that a
2923 * rw->ro transition does not occur between
2924 * the time when the file is created and when
2925 * a permanent write count is taken through
2926 * the 'struct file' in finish_open().
2932 *opened
|= FILE_CREATED
;
2933 error
= security_path_mknod(&nd
->path
, dentry
, mode
, 0);
2936 error
= vfs_create(dir
->d_inode
, dentry
, mode
,
2937 nd
->flags
& LOOKUP_EXCL
);
2942 path
->dentry
= dentry
;
2943 path
->mnt
= nd
->path
.mnt
;
2952 * Handle the last step of open()
2954 static int do_last(struct nameidata
*nd
, struct path
*path
,
2955 struct file
*file
, const struct open_flags
*op
,
2956 int *opened
, struct filename
*name
)
2958 struct dentry
*dir
= nd
->path
.dentry
;
2959 int open_flag
= op
->open_flag
;
2960 bool will_truncate
= (open_flag
& O_TRUNC
) != 0;
2961 bool got_write
= false;
2962 int acc_mode
= op
->acc_mode
;
2963 struct inode
*inode
;
2964 bool symlink_ok
= false;
2965 struct path save_parent
= { .dentry
= NULL
, .mnt
= NULL
};
2966 bool retried
= false;
2969 nd
->flags
&= ~LOOKUP_PARENT
;
2970 nd
->flags
|= op
->intent
;
2972 if (nd
->last_type
!= LAST_NORM
) {
2973 error
= handle_dots(nd
, nd
->last_type
);
2979 if (!(open_flag
& O_CREAT
)) {
2980 if (nd
->last
.name
[nd
->last
.len
])
2981 nd
->flags
|= LOOKUP_FOLLOW
| LOOKUP_DIRECTORY
;
2982 if (open_flag
& O_PATH
&& !(nd
->flags
& LOOKUP_FOLLOW
))
2984 /* we _can_ be in RCU mode here */
2985 error
= lookup_fast(nd
, path
, &inode
);
2992 BUG_ON(nd
->inode
!= dir
->d_inode
);
2994 /* create side of things */
2996 * This will *only* deal with leaving RCU mode - LOOKUP_JUMPED
2997 * has been cleared when we got to the last component we are
3000 error
= complete_walk(nd
);
3004 audit_inode(name
, dir
, LOOKUP_PARENT
);
3006 /* trailing slashes? */
3007 if (nd
->last
.name
[nd
->last
.len
])
3012 if (op
->open_flag
& (O_CREAT
| O_TRUNC
| O_WRONLY
| O_RDWR
)) {
3013 error
= mnt_want_write(nd
->path
.mnt
);
3017 * do _not_ fail yet - we might not need that or fail with
3018 * a different error; let lookup_open() decide; we'll be
3019 * dropping this one anyway.
3022 mutex_lock(&dir
->d_inode
->i_mutex
);
3023 error
= lookup_open(nd
, path
, file
, op
, got_write
, opened
);
3024 mutex_unlock(&dir
->d_inode
->i_mutex
);
3030 if ((*opened
& FILE_CREATED
) ||
3031 !S_ISREG(file_inode(file
)->i_mode
))
3032 will_truncate
= false;
3034 audit_inode(name
, file
->f_path
.dentry
, 0);
3038 if (*opened
& FILE_CREATED
) {
3039 /* Don't check for write permission, don't truncate */
3040 open_flag
&= ~O_TRUNC
;
3041 will_truncate
= false;
3042 acc_mode
= MAY_OPEN
;
3043 path_to_nameidata(path
, nd
);
3044 goto finish_open_created
;
3048 * create/update audit record if it already exists.
3050 if (d_is_positive(path
->dentry
))
3051 audit_inode(name
, path
->dentry
, 0);
3054 * If atomic_open() acquired write access it is dropped now due to
3055 * possible mount and symlink following (this might be optimized away if
3059 mnt_drop_write(nd
->path
.mnt
);
3064 if ((open_flag
& (O_EXCL
| O_CREAT
)) == (O_EXCL
| O_CREAT
))
3067 error
= follow_managed(path
, nd
->flags
);
3072 nd
->flags
|= LOOKUP_JUMPED
;
3074 BUG_ON(nd
->flags
& LOOKUP_RCU
);
3075 inode
= path
->dentry
->d_inode
;
3077 if (d_is_negative(path
->dentry
)) {
3078 path_to_nameidata(path
, nd
);
3082 /* we _can_ be in RCU mode here */
3083 if (should_follow_link(path
->dentry
, !symlink_ok
)) {
3084 if (nd
->flags
& LOOKUP_RCU
) {
3085 if (unlikely(nd
->path
.mnt
!= path
->mnt
||
3086 unlazy_walk(nd
, path
->dentry
))) {
3091 BUG_ON(inode
!= path
->dentry
->d_inode
);
3095 if ((nd
->flags
& LOOKUP_RCU
) || nd
->path
.mnt
!= path
->mnt
) {
3096 path_to_nameidata(path
, nd
);
3098 save_parent
.dentry
= nd
->path
.dentry
;
3099 save_parent
.mnt
= mntget(path
->mnt
);
3100 nd
->path
.dentry
= path
->dentry
;
3104 /* Why this, you ask? _Now_ we might have grown LOOKUP_JUMPED... */
3106 error
= complete_walk(nd
);
3108 path_put(&save_parent
);
3111 audit_inode(name
, nd
->path
.dentry
, 0);
3113 if ((open_flag
& O_CREAT
) && d_is_dir(nd
->path
.dentry
))
3116 if ((nd
->flags
& LOOKUP_DIRECTORY
) && !d_can_lookup(nd
->path
.dentry
))
3118 if (!d_is_reg(nd
->path
.dentry
))
3119 will_truncate
= false;
3121 if (will_truncate
) {
3122 error
= mnt_want_write(nd
->path
.mnt
);
3127 finish_open_created
:
3128 error
= may_open(&nd
->path
, acc_mode
, open_flag
);
3132 BUG_ON(*opened
& FILE_OPENED
); /* once it's opened, it's opened */
3133 error
= vfs_open(&nd
->path
, file
, current_cred());
3135 *opened
|= FILE_OPENED
;
3137 if (error
== -EOPENSTALE
)
3142 error
= open_check_o_direct(file
);
3145 error
= ima_file_check(file
, op
->acc_mode
, *opened
);
3149 if (will_truncate
) {
3150 error
= handle_truncate(file
);
3156 mnt_drop_write(nd
->path
.mnt
);
3157 path_put(&save_parent
);
3162 path_put_conditional(path
, nd
);
3169 /* If no saved parent or already retried then can't retry */
3170 if (!save_parent
.dentry
|| retried
)
3173 BUG_ON(save_parent
.dentry
!= dir
);
3174 path_put(&nd
->path
);
3175 nd
->path
= save_parent
;
3176 nd
->inode
= dir
->d_inode
;
3177 save_parent
.mnt
= NULL
;
3178 save_parent
.dentry
= NULL
;
3180 mnt_drop_write(nd
->path
.mnt
);
3187 static int do_tmpfile(int dfd
, struct filename
*pathname
,
3188 struct nameidata
*nd
, int flags
,
3189 const struct open_flags
*op
,
3190 struct file
*file
, int *opened
)
3192 static const struct qstr name
= QSTR_INIT("/", 1);
3193 struct dentry
*dentry
, *child
;
3195 int error
= path_lookupat(dfd
, pathname
,
3196 flags
| LOOKUP_DIRECTORY
, nd
);
3197 if (unlikely(error
))
3199 error
= mnt_want_write(nd
->path
.mnt
);
3200 if (unlikely(error
))
3202 /* we want directory to be writable */
3203 error
= inode_permission(nd
->inode
, MAY_WRITE
| MAY_EXEC
);
3206 dentry
= nd
->path
.dentry
;
3207 dir
= dentry
->d_inode
;
3208 if (!dir
->i_op
->tmpfile
) {
3209 error
= -EOPNOTSUPP
;
3212 child
= d_alloc(dentry
, &name
);
3213 if (unlikely(!child
)) {
3217 nd
->flags
&= ~LOOKUP_DIRECTORY
;
3218 nd
->flags
|= op
->intent
;
3219 dput(nd
->path
.dentry
);
3220 nd
->path
.dentry
= child
;
3221 error
= dir
->i_op
->tmpfile(dir
, nd
->path
.dentry
, op
->mode
);
3224 audit_inode(pathname
, nd
->path
.dentry
, 0);
3225 /* Don't check for other permissions, the inode was just created */
3226 error
= may_open(&nd
->path
, MAY_OPEN
, op
->open_flag
);
3229 file
->f_path
.mnt
= nd
->path
.mnt
;
3230 error
= finish_open(file
, nd
->path
.dentry
, NULL
, opened
);
3233 error
= open_check_o_direct(file
);
3236 } else if (!(op
->open_flag
& O_EXCL
)) {
3237 struct inode
*inode
= file_inode(file
);
3238 spin_lock(&inode
->i_lock
);
3239 inode
->i_state
|= I_LINKABLE
;
3240 spin_unlock(&inode
->i_lock
);
3243 mnt_drop_write(nd
->path
.mnt
);
3245 path_put(&nd
->path
);
3249 static struct file
*path_openat(int dfd
, struct filename
*pathname
,
3250 struct nameidata
*nd
, const struct open_flags
*op
, int flags
)
3257 file
= get_empty_filp();
3261 file
->f_flags
= op
->open_flag
;
3263 if (unlikely(file
->f_flags
& __O_TMPFILE
)) {
3264 error
= do_tmpfile(dfd
, pathname
, nd
, flags
, op
, file
, &opened
);
3268 error
= path_init(dfd
, pathname
, flags
, nd
);
3269 if (unlikely(error
))
3272 error
= do_last(nd
, &path
, file
, op
, &opened
, pathname
);
3273 while (unlikely(error
> 0)) { /* trailing symlink */
3274 struct path link
= path
;
3276 if (!(nd
->flags
& LOOKUP_FOLLOW
)) {
3277 path_put_conditional(&path
, nd
);
3278 path_put(&nd
->path
);
3282 error
= may_follow_link(&link
, nd
);
3283 if (unlikely(error
))
3285 nd
->flags
|= LOOKUP_PARENT
;
3286 nd
->flags
&= ~(LOOKUP_OPEN
|LOOKUP_CREATE
|LOOKUP_EXCL
);
3287 error
= follow_link(&link
, nd
, &cookie
);
3288 if (unlikely(error
))
3290 error
= do_last(nd
, &path
, file
, op
, &opened
, pathname
);
3291 put_link(nd
, &link
, cookie
);
3296 if (!(opened
& FILE_OPENED
)) {
3300 if (unlikely(error
)) {
3301 if (error
== -EOPENSTALE
) {
3302 if (flags
& LOOKUP_RCU
)
3307 file
= ERR_PTR(error
);
3312 struct file
*do_filp_open(int dfd
, struct filename
*pathname
,
3313 const struct open_flags
*op
)
3315 struct nameidata nd
;
3316 int flags
= op
->lookup_flags
;
3319 filp
= path_openat(dfd
, pathname
, &nd
, op
, flags
| LOOKUP_RCU
);
3320 if (unlikely(filp
== ERR_PTR(-ECHILD
)))
3321 filp
= path_openat(dfd
, pathname
, &nd
, op
, flags
);
3322 if (unlikely(filp
== ERR_PTR(-ESTALE
)))
3323 filp
= path_openat(dfd
, pathname
, &nd
, op
, flags
| LOOKUP_REVAL
);
3327 struct file
*do_file_open_root(struct dentry
*dentry
, struct vfsmount
*mnt
,
3328 const char *name
, const struct open_flags
*op
)
3330 struct nameidata nd
;
3332 struct filename
*filename
;
3333 int flags
= op
->lookup_flags
| LOOKUP_ROOT
;
3336 nd
.root
.dentry
= dentry
;
3338 if (d_is_symlink(dentry
) && op
->intent
& LOOKUP_OPEN
)
3339 return ERR_PTR(-ELOOP
);
3341 filename
= getname_kernel(name
);
3342 if (unlikely(IS_ERR(filename
)))
3343 return ERR_CAST(filename
);
3345 file
= path_openat(-1, filename
, &nd
, op
, flags
| LOOKUP_RCU
);
3346 if (unlikely(file
== ERR_PTR(-ECHILD
)))
3347 file
= path_openat(-1, filename
, &nd
, op
, flags
);
3348 if (unlikely(file
== ERR_PTR(-ESTALE
)))
3349 file
= path_openat(-1, filename
, &nd
, op
, flags
| LOOKUP_REVAL
);
3354 static struct dentry
*filename_create(int dfd
, struct filename
*name
,
3355 struct path
*path
, unsigned int lookup_flags
)
3357 struct dentry
*dentry
= ERR_PTR(-EEXIST
);
3358 struct nameidata nd
;
3361 bool is_dir
= (lookup_flags
& LOOKUP_DIRECTORY
);
3364 * Note that only LOOKUP_REVAL and LOOKUP_DIRECTORY matter here. Any
3365 * other flags passed in are ignored!
3367 lookup_flags
&= LOOKUP_REVAL
;
3369 error
= filename_lookup(dfd
, name
, LOOKUP_PARENT
|lookup_flags
, &nd
);
3371 return ERR_PTR(error
);
3374 * Yucky last component or no last component at all?
3375 * (foo/., foo/.., /////)
3377 if (nd
.last_type
!= LAST_NORM
)
3379 nd
.flags
&= ~LOOKUP_PARENT
;
3380 nd
.flags
|= LOOKUP_CREATE
| LOOKUP_EXCL
;
3382 /* don't fail immediately if it's r/o, at least try to report other errors */
3383 err2
= mnt_want_write(nd
.path
.mnt
);
3385 * Do the final lookup.
3387 mutex_lock_nested(&nd
.path
.dentry
->d_inode
->i_mutex
, I_MUTEX_PARENT
);
3388 dentry
= lookup_hash(&nd
);
3393 if (d_is_positive(dentry
))
3397 * Special case - lookup gave negative, but... we had foo/bar/
3398 * From the vfs_mknod() POV we just have a negative dentry -
3399 * all is fine. Let's be bastards - you had / on the end, you've
3400 * been asking for (non-existent) directory. -ENOENT for you.
3402 if (unlikely(!is_dir
&& nd
.last
.name
[nd
.last
.len
])) {
3406 if (unlikely(err2
)) {
3414 dentry
= ERR_PTR(error
);
3416 mutex_unlock(&nd
.path
.dentry
->d_inode
->i_mutex
);
3418 mnt_drop_write(nd
.path
.mnt
);
3424 struct dentry
*kern_path_create(int dfd
, const char *pathname
,
3425 struct path
*path
, unsigned int lookup_flags
)
3427 struct filename
*filename
= getname_kernel(pathname
);
3430 if (IS_ERR(filename
))
3431 return ERR_CAST(filename
);
3432 res
= filename_create(dfd
, filename
, path
, lookup_flags
);
3436 EXPORT_SYMBOL(kern_path_create
);
3438 void done_path_create(struct path
*path
, struct dentry
*dentry
)
3441 mutex_unlock(&path
->dentry
->d_inode
->i_mutex
);
3442 mnt_drop_write(path
->mnt
);
3445 EXPORT_SYMBOL(done_path_create
);
3447 struct dentry
*user_path_create(int dfd
, const char __user
*pathname
,
3448 struct path
*path
, unsigned int lookup_flags
)
3450 struct filename
*tmp
= getname(pathname
);
3453 return ERR_CAST(tmp
);
3454 res
= filename_create(dfd
, tmp
, path
, lookup_flags
);
3458 EXPORT_SYMBOL(user_path_create
);
3460 int vfs_mknod(struct inode
*dir
, struct dentry
*dentry
, umode_t mode
, dev_t dev
)
3462 int error
= may_create(dir
, dentry
);
3467 if ((S_ISCHR(mode
) || S_ISBLK(mode
)) && !capable(CAP_MKNOD
))
3470 if (!dir
->i_op
->mknod
)
3473 error
= devcgroup_inode_mknod(mode
, dev
);
3477 error
= security_inode_mknod(dir
, dentry
, mode
, dev
);
3481 error
= dir
->i_op
->mknod(dir
, dentry
, mode
, dev
);
3483 fsnotify_create(dir
, dentry
);
3486 EXPORT_SYMBOL(vfs_mknod
);
3488 static int may_mknod(umode_t mode
)
3490 switch (mode
& S_IFMT
) {
3496 case 0: /* zero mode translates to S_IFREG */
3505 SYSCALL_DEFINE4(mknodat
, int, dfd
, const char __user
*, filename
, umode_t
, mode
,
3508 struct dentry
*dentry
;
3511 unsigned int lookup_flags
= 0;
3513 error
= may_mknod(mode
);
3517 dentry
= user_path_create(dfd
, filename
, &path
, lookup_flags
);
3519 return PTR_ERR(dentry
);
3521 if (!IS_POSIXACL(path
.dentry
->d_inode
))
3522 mode
&= ~current_umask();
3523 error
= security_path_mknod(&path
, dentry
, mode
, dev
);
3526 switch (mode
& S_IFMT
) {
3527 case 0: case S_IFREG
:
3528 error
= vfs_create(path
.dentry
->d_inode
,dentry
,mode
,true);
3530 case S_IFCHR
: case S_IFBLK
:
3531 error
= vfs_mknod(path
.dentry
->d_inode
,dentry
,mode
,
3532 new_decode_dev(dev
));
3534 case S_IFIFO
: case S_IFSOCK
:
3535 error
= vfs_mknod(path
.dentry
->d_inode
,dentry
,mode
,0);
3539 done_path_create(&path
, dentry
);
3540 if (retry_estale(error
, lookup_flags
)) {
3541 lookup_flags
|= LOOKUP_REVAL
;
3547 SYSCALL_DEFINE3(mknod
, const char __user
*, filename
, umode_t
, mode
, unsigned, dev
)
3549 return sys_mknodat(AT_FDCWD
, filename
, mode
, dev
);
3552 int vfs_mkdir(struct inode
*dir
, struct dentry
*dentry
, umode_t mode
)
3554 int error
= may_create(dir
, dentry
);
3555 unsigned max_links
= dir
->i_sb
->s_max_links
;
3560 if (!dir
->i_op
->mkdir
)
3563 mode
&= (S_IRWXUGO
|S_ISVTX
);
3564 error
= security_inode_mkdir(dir
, dentry
, mode
);
3568 if (max_links
&& dir
->i_nlink
>= max_links
)
3571 error
= dir
->i_op
->mkdir(dir
, dentry
, mode
);
3573 fsnotify_mkdir(dir
, dentry
);
3576 EXPORT_SYMBOL(vfs_mkdir
);
3578 SYSCALL_DEFINE3(mkdirat
, int, dfd
, const char __user
*, pathname
, umode_t
, mode
)
3580 struct dentry
*dentry
;
3583 unsigned int lookup_flags
= LOOKUP_DIRECTORY
;
3586 dentry
= user_path_create(dfd
, pathname
, &path
, lookup_flags
);
3588 return PTR_ERR(dentry
);
3590 if (!IS_POSIXACL(path
.dentry
->d_inode
))
3591 mode
&= ~current_umask();
3592 error
= security_path_mkdir(&path
, dentry
, mode
);
3594 error
= vfs_mkdir(path
.dentry
->d_inode
, dentry
, mode
);
3595 done_path_create(&path
, dentry
);
3596 if (retry_estale(error
, lookup_flags
)) {
3597 lookup_flags
|= LOOKUP_REVAL
;
3603 SYSCALL_DEFINE2(mkdir
, const char __user
*, pathname
, umode_t
, mode
)
3605 return sys_mkdirat(AT_FDCWD
, pathname
, mode
);
3609 * The dentry_unhash() helper will try to drop the dentry early: we
3610 * should have a usage count of 1 if we're the only user of this
3611 * dentry, and if that is true (possibly after pruning the dcache),
3612 * then we drop the dentry now.
3614 * A low-level filesystem can, if it choses, legally
3617 * if (!d_unhashed(dentry))
3620 * if it cannot handle the case of removing a directory
3621 * that is still in use by something else..
3623 void dentry_unhash(struct dentry
*dentry
)
3625 shrink_dcache_parent(dentry
);
3626 spin_lock(&dentry
->d_lock
);
3627 if (dentry
->d_lockref
.count
== 1)
3629 spin_unlock(&dentry
->d_lock
);
3631 EXPORT_SYMBOL(dentry_unhash
);
3633 int vfs_rmdir(struct inode
*dir
, struct dentry
*dentry
)
3635 int error
= may_delete(dir
, dentry
, 1);
3640 if (!dir
->i_op
->rmdir
)
3644 mutex_lock(&dentry
->d_inode
->i_mutex
);
3647 if (is_local_mountpoint(dentry
))
3650 error
= security_inode_rmdir(dir
, dentry
);
3654 shrink_dcache_parent(dentry
);
3655 error
= dir
->i_op
->rmdir(dir
, dentry
);
3659 dentry
->d_inode
->i_flags
|= S_DEAD
;
3661 detach_mounts(dentry
);
3664 mutex_unlock(&dentry
->d_inode
->i_mutex
);
3670 EXPORT_SYMBOL(vfs_rmdir
);
3672 static long do_rmdir(int dfd
, const char __user
*pathname
)
3675 struct filename
*name
;
3676 struct dentry
*dentry
;
3677 struct nameidata nd
;
3678 unsigned int lookup_flags
= 0;
3680 name
= user_path_parent(dfd
, pathname
, &nd
, lookup_flags
);
3682 return PTR_ERR(name
);
3684 switch(nd
.last_type
) {
3696 nd
.flags
&= ~LOOKUP_PARENT
;
3697 error
= mnt_want_write(nd
.path
.mnt
);
3701 mutex_lock_nested(&nd
.path
.dentry
->d_inode
->i_mutex
, I_MUTEX_PARENT
);
3702 dentry
= lookup_hash(&nd
);
3703 error
= PTR_ERR(dentry
);
3706 if (!dentry
->d_inode
) {
3710 error
= security_path_rmdir(&nd
.path
, dentry
);
3713 error
= vfs_rmdir(nd
.path
.dentry
->d_inode
, dentry
);
3717 mutex_unlock(&nd
.path
.dentry
->d_inode
->i_mutex
);
3718 mnt_drop_write(nd
.path
.mnt
);
3722 if (retry_estale(error
, lookup_flags
)) {
3723 lookup_flags
|= LOOKUP_REVAL
;
3729 SYSCALL_DEFINE1(rmdir
, const char __user
*, pathname
)
3731 return do_rmdir(AT_FDCWD
, pathname
);
3735 * vfs_unlink - unlink a filesystem object
3736 * @dir: parent directory
3738 * @delegated_inode: returns victim inode, if the inode is delegated.
3740 * The caller must hold dir->i_mutex.
3742 * If vfs_unlink discovers a delegation, it will return -EWOULDBLOCK and
3743 * return a reference to the inode in delegated_inode. The caller
3744 * should then break the delegation on that inode and retry. Because
3745 * breaking a delegation may take a long time, the caller should drop
3746 * dir->i_mutex before doing so.
3748 * Alternatively, a caller may pass NULL for delegated_inode. This may
3749 * be appropriate for callers that expect the underlying filesystem not
3750 * to be NFS exported.
3752 int vfs_unlink(struct inode
*dir
, struct dentry
*dentry
, struct inode
**delegated_inode
)
3754 struct inode
*target
= dentry
->d_inode
;
3755 int error
= may_delete(dir
, dentry
, 0);
3760 if (!dir
->i_op
->unlink
)
3763 mutex_lock(&target
->i_mutex
);
3764 if (is_local_mountpoint(dentry
))
3767 error
= security_inode_unlink(dir
, dentry
);
3769 error
= try_break_deleg(target
, delegated_inode
);
3772 error
= dir
->i_op
->unlink(dir
, dentry
);
3775 detach_mounts(dentry
);
3780 mutex_unlock(&target
->i_mutex
);
3782 /* We don't d_delete() NFS sillyrenamed files--they still exist. */
3783 if (!error
&& !(dentry
->d_flags
& DCACHE_NFSFS_RENAMED
)) {
3784 fsnotify_link_count(target
);
3790 EXPORT_SYMBOL(vfs_unlink
);
3793 * Make sure that the actual truncation of the file will occur outside its
3794 * directory's i_mutex. Truncate can take a long time if there is a lot of
3795 * writeout happening, and we don't want to prevent access to the directory
3796 * while waiting on the I/O.
3798 static long do_unlinkat(int dfd
, const char __user
*pathname
)
3801 struct filename
*name
;
3802 struct dentry
*dentry
;
3803 struct nameidata nd
;
3804 struct inode
*inode
= NULL
;
3805 struct inode
*delegated_inode
= NULL
;
3806 unsigned int lookup_flags
= 0;
3808 name
= user_path_parent(dfd
, pathname
, &nd
, lookup_flags
);
3810 return PTR_ERR(name
);
3813 if (nd
.last_type
!= LAST_NORM
)
3816 nd
.flags
&= ~LOOKUP_PARENT
;
3817 error
= mnt_want_write(nd
.path
.mnt
);
3821 mutex_lock_nested(&nd
.path
.dentry
->d_inode
->i_mutex
, I_MUTEX_PARENT
);
3822 dentry
= lookup_hash(&nd
);
3823 error
= PTR_ERR(dentry
);
3824 if (!IS_ERR(dentry
)) {
3825 /* Why not before? Because we want correct error value */
3826 if (nd
.last
.name
[nd
.last
.len
])
3828 inode
= dentry
->d_inode
;
3829 if (d_is_negative(dentry
))
3832 error
= security_path_unlink(&nd
.path
, dentry
);
3835 error
= vfs_unlink(nd
.path
.dentry
->d_inode
, dentry
, &delegated_inode
);
3839 mutex_unlock(&nd
.path
.dentry
->d_inode
->i_mutex
);
3841 iput(inode
); /* truncate the inode here */
3843 if (delegated_inode
) {
3844 error
= break_deleg_wait(&delegated_inode
);
3848 mnt_drop_write(nd
.path
.mnt
);
3852 if (retry_estale(error
, lookup_flags
)) {
3853 lookup_flags
|= LOOKUP_REVAL
;
3860 if (d_is_negative(dentry
))
3862 else if (d_is_dir(dentry
))
3869 SYSCALL_DEFINE3(unlinkat
, int, dfd
, const char __user
*, pathname
, int, flag
)
3871 if ((flag
& ~AT_REMOVEDIR
) != 0)
3874 if (flag
& AT_REMOVEDIR
)
3875 return do_rmdir(dfd
, pathname
);
3877 return do_unlinkat(dfd
, pathname
);
3880 SYSCALL_DEFINE1(unlink
, const char __user
*, pathname
)
3882 return do_unlinkat(AT_FDCWD
, pathname
);
3885 int vfs_symlink(struct inode
*dir
, struct dentry
*dentry
, const char *oldname
)
3887 int error
= may_create(dir
, dentry
);
3892 if (!dir
->i_op
->symlink
)
3895 error
= security_inode_symlink(dir
, dentry
, oldname
);
3899 error
= dir
->i_op
->symlink(dir
, dentry
, oldname
);
3901 fsnotify_create(dir
, dentry
);
3904 EXPORT_SYMBOL(vfs_symlink
);
3906 SYSCALL_DEFINE3(symlinkat
, const char __user
*, oldname
,
3907 int, newdfd
, const char __user
*, newname
)
3910 struct filename
*from
;
3911 struct dentry
*dentry
;
3913 unsigned int lookup_flags
= 0;
3915 from
= getname(oldname
);
3917 return PTR_ERR(from
);
3919 dentry
= user_path_create(newdfd
, newname
, &path
, lookup_flags
);
3920 error
= PTR_ERR(dentry
);
3924 error
= security_path_symlink(&path
, dentry
, from
->name
);
3926 error
= vfs_symlink(path
.dentry
->d_inode
, dentry
, from
->name
);
3927 done_path_create(&path
, dentry
);
3928 if (retry_estale(error
, lookup_flags
)) {
3929 lookup_flags
|= LOOKUP_REVAL
;
3937 SYSCALL_DEFINE2(symlink
, const char __user
*, oldname
, const char __user
*, newname
)
3939 return sys_symlinkat(oldname
, AT_FDCWD
, newname
);
3943 * vfs_link - create a new link
3944 * @old_dentry: object to be linked
3946 * @new_dentry: where to create the new link
3947 * @delegated_inode: returns inode needing a delegation break
3949 * The caller must hold dir->i_mutex
3951 * If vfs_link discovers a delegation on the to-be-linked file in need
3952 * of breaking, it will return -EWOULDBLOCK and return a reference to the
3953 * inode in delegated_inode. The caller should then break the delegation
3954 * and retry. Because breaking a delegation may take a long time, the
3955 * caller should drop the i_mutex before doing so.
3957 * Alternatively, a caller may pass NULL for delegated_inode. This may
3958 * be appropriate for callers that expect the underlying filesystem not
3959 * to be NFS exported.
3961 int vfs_link(struct dentry
*old_dentry
, struct inode
*dir
, struct dentry
*new_dentry
, struct inode
**delegated_inode
)
3963 struct inode
*inode
= old_dentry
->d_inode
;
3964 unsigned max_links
= dir
->i_sb
->s_max_links
;
3970 error
= may_create(dir
, new_dentry
);
3974 if (dir
->i_sb
!= inode
->i_sb
)
3978 * A link to an append-only or immutable file cannot be created.
3980 if (IS_APPEND(inode
) || IS_IMMUTABLE(inode
))
3982 if (!dir
->i_op
->link
)
3984 if (S_ISDIR(inode
->i_mode
))
3987 error
= security_inode_link(old_dentry
, dir
, new_dentry
);
3991 mutex_lock(&inode
->i_mutex
);
3992 /* Make sure we don't allow creating hardlink to an unlinked file */
3993 if (inode
->i_nlink
== 0 && !(inode
->i_state
& I_LINKABLE
))
3995 else if (max_links
&& inode
->i_nlink
>= max_links
)
3998 error
= try_break_deleg(inode
, delegated_inode
);
4000 error
= dir
->i_op
->link(old_dentry
, dir
, new_dentry
);
4003 if (!error
&& (inode
->i_state
& I_LINKABLE
)) {
4004 spin_lock(&inode
->i_lock
);
4005 inode
->i_state
&= ~I_LINKABLE
;
4006 spin_unlock(&inode
->i_lock
);
4008 mutex_unlock(&inode
->i_mutex
);
4010 fsnotify_link(dir
, inode
, new_dentry
);
4013 EXPORT_SYMBOL(vfs_link
);
4016 * Hardlinks are often used in delicate situations. We avoid
4017 * security-related surprises by not following symlinks on the
4020 * We don't follow them on the oldname either to be compatible
4021 * with linux 2.0, and to avoid hard-linking to directories
4022 * and other special files. --ADM
4024 SYSCALL_DEFINE5(linkat
, int, olddfd
, const char __user
*, oldname
,
4025 int, newdfd
, const char __user
*, newname
, int, flags
)
4027 struct dentry
*new_dentry
;
4028 struct path old_path
, new_path
;
4029 struct inode
*delegated_inode
= NULL
;
4033 if ((flags
& ~(AT_SYMLINK_FOLLOW
| AT_EMPTY_PATH
)) != 0)
4036 * To use null names we require CAP_DAC_READ_SEARCH
4037 * This ensures that not everyone will be able to create
4038 * handlink using the passed filedescriptor.
4040 if (flags
& AT_EMPTY_PATH
) {
4041 if (!capable(CAP_DAC_READ_SEARCH
))
4046 if (flags
& AT_SYMLINK_FOLLOW
)
4047 how
|= LOOKUP_FOLLOW
;
4049 error
= user_path_at(olddfd
, oldname
, how
, &old_path
);
4053 new_dentry
= user_path_create(newdfd
, newname
, &new_path
,
4054 (how
& LOOKUP_REVAL
));
4055 error
= PTR_ERR(new_dentry
);
4056 if (IS_ERR(new_dentry
))
4060 if (old_path
.mnt
!= new_path
.mnt
)
4062 error
= may_linkat(&old_path
);
4063 if (unlikely(error
))
4065 error
= security_path_link(old_path
.dentry
, &new_path
, new_dentry
);
4068 error
= vfs_link(old_path
.dentry
, new_path
.dentry
->d_inode
, new_dentry
, &delegated_inode
);
4070 done_path_create(&new_path
, new_dentry
);
4071 if (delegated_inode
) {
4072 error
= break_deleg_wait(&delegated_inode
);
4074 path_put(&old_path
);
4078 if (retry_estale(error
, how
)) {
4079 path_put(&old_path
);
4080 how
|= LOOKUP_REVAL
;
4084 path_put(&old_path
);
4089 SYSCALL_DEFINE2(link
, const char __user
*, oldname
, const char __user
*, newname
)
4091 return sys_linkat(AT_FDCWD
, oldname
, AT_FDCWD
, newname
, 0);
4095 * vfs_rename - rename a filesystem object
4096 * @old_dir: parent of source
4097 * @old_dentry: source
4098 * @new_dir: parent of destination
4099 * @new_dentry: destination
4100 * @delegated_inode: returns an inode needing a delegation break
4101 * @flags: rename flags
4103 * The caller must hold multiple mutexes--see lock_rename()).
4105 * If vfs_rename discovers a delegation in need of breaking at either
4106 * the source or destination, it will return -EWOULDBLOCK and return a
4107 * reference to the inode in delegated_inode. The caller should then
4108 * break the delegation and retry. Because breaking a delegation may
4109 * take a long time, the caller should drop all locks before doing
4112 * Alternatively, a caller may pass NULL for delegated_inode. This may
4113 * be appropriate for callers that expect the underlying filesystem not
4114 * to be NFS exported.
4116 * The worst of all namespace operations - renaming directory. "Perverted"
4117 * doesn't even start to describe it. Somebody in UCB had a heck of a trip...
4119 * a) we can get into loop creation.
4120 * b) race potential - two innocent renames can create a loop together.
4121 * That's where 4.4 screws up. Current fix: serialization on
4122 * sb->s_vfs_rename_mutex. We might be more accurate, but that's another
4124 * c) we have to lock _four_ objects - parents and victim (if it exists),
4125 * and source (if it is not a directory).
4126 * And that - after we got ->i_mutex on parents (until then we don't know
4127 * whether the target exists). Solution: try to be smart with locking
4128 * order for inodes. We rely on the fact that tree topology may change
4129 * only under ->s_vfs_rename_mutex _and_ that parent of the object we
4130 * move will be locked. Thus we can rank directories by the tree
4131 * (ancestors first) and rank all non-directories after them.
4132 * That works since everybody except rename does "lock parent, lookup,
4133 * lock child" and rename is under ->s_vfs_rename_mutex.
4134 * HOWEVER, it relies on the assumption that any object with ->lookup()
4135 * has no more than 1 dentry. If "hybrid" objects will ever appear,
4136 * we'd better make sure that there's no link(2) for them.
4137 * d) conversion from fhandle to dentry may come in the wrong moment - when
4138 * we are removing the target. Solution: we will have to grab ->i_mutex
4139 * in the fhandle_to_dentry code. [FIXME - current nfsfh.c relies on
4140 * ->i_mutex on parents, which works but leads to some truly excessive
4143 int vfs_rename(struct inode
*old_dir
, struct dentry
*old_dentry
,
4144 struct inode
*new_dir
, struct dentry
*new_dentry
,
4145 struct inode
**delegated_inode
, unsigned int flags
)
4148 bool is_dir
= d_is_dir(old_dentry
);
4149 const unsigned char *old_name
;
4150 struct inode
*source
= old_dentry
->d_inode
;
4151 struct inode
*target
= new_dentry
->d_inode
;
4152 bool new_is_dir
= false;
4153 unsigned max_links
= new_dir
->i_sb
->s_max_links
;
4155 if (source
== target
)
4158 error
= may_delete(old_dir
, old_dentry
, is_dir
);
4163 error
= may_create(new_dir
, new_dentry
);
4165 new_is_dir
= d_is_dir(new_dentry
);
4167 if (!(flags
& RENAME_EXCHANGE
))
4168 error
= may_delete(new_dir
, new_dentry
, is_dir
);
4170 error
= may_delete(new_dir
, new_dentry
, new_is_dir
);
4175 if (!old_dir
->i_op
->rename
&& !old_dir
->i_op
->rename2
)
4178 if (flags
&& !old_dir
->i_op
->rename2
)
4182 * If we are going to change the parent - check write permissions,
4183 * we'll need to flip '..'.
4185 if (new_dir
!= old_dir
) {
4187 error
= inode_permission(source
, MAY_WRITE
);
4191 if ((flags
& RENAME_EXCHANGE
) && new_is_dir
) {
4192 error
= inode_permission(target
, MAY_WRITE
);
4198 error
= security_inode_rename(old_dir
, old_dentry
, new_dir
, new_dentry
,
4203 old_name
= fsnotify_oldname_init(old_dentry
->d_name
.name
);
4205 if (!is_dir
|| (flags
& RENAME_EXCHANGE
))
4206 lock_two_nondirectories(source
, target
);
4208 mutex_lock(&target
->i_mutex
);
4211 if (is_local_mountpoint(old_dentry
) || is_local_mountpoint(new_dentry
))
4214 if (max_links
&& new_dir
!= old_dir
) {
4216 if (is_dir
&& !new_is_dir
&& new_dir
->i_nlink
>= max_links
)
4218 if ((flags
& RENAME_EXCHANGE
) && !is_dir
&& new_is_dir
&&
4219 old_dir
->i_nlink
>= max_links
)
4222 if (is_dir
&& !(flags
& RENAME_EXCHANGE
) && target
)
4223 shrink_dcache_parent(new_dentry
);
4225 error
= try_break_deleg(source
, delegated_inode
);
4229 if (target
&& !new_is_dir
) {
4230 error
= try_break_deleg(target
, delegated_inode
);
4234 if (!old_dir
->i_op
->rename2
) {
4235 error
= old_dir
->i_op
->rename(old_dir
, old_dentry
,
4236 new_dir
, new_dentry
);
4238 WARN_ON(old_dir
->i_op
->rename
!= NULL
);
4239 error
= old_dir
->i_op
->rename2(old_dir
, old_dentry
,
4240 new_dir
, new_dentry
, flags
);
4245 if (!(flags
& RENAME_EXCHANGE
) && target
) {
4247 target
->i_flags
|= S_DEAD
;
4248 dont_mount(new_dentry
);
4249 detach_mounts(new_dentry
);
4251 if (!(old_dir
->i_sb
->s_type
->fs_flags
& FS_RENAME_DOES_D_MOVE
)) {
4252 if (!(flags
& RENAME_EXCHANGE
))
4253 d_move(old_dentry
, new_dentry
);
4255 d_exchange(old_dentry
, new_dentry
);
4258 if (!is_dir
|| (flags
& RENAME_EXCHANGE
))
4259 unlock_two_nondirectories(source
, target
);
4261 mutex_unlock(&target
->i_mutex
);
4264 fsnotify_move(old_dir
, new_dir
, old_name
, is_dir
,
4265 !(flags
& RENAME_EXCHANGE
) ? target
: NULL
, old_dentry
);
4266 if (flags
& RENAME_EXCHANGE
) {
4267 fsnotify_move(new_dir
, old_dir
, old_dentry
->d_name
.name
,
4268 new_is_dir
, NULL
, new_dentry
);
4271 fsnotify_oldname_free(old_name
);
4275 EXPORT_SYMBOL(vfs_rename
);
4277 SYSCALL_DEFINE5(renameat2
, int, olddfd
, const char __user
*, oldname
,
4278 int, newdfd
, const char __user
*, newname
, unsigned int, flags
)
4280 struct dentry
*old_dir
, *new_dir
;
4281 struct dentry
*old_dentry
, *new_dentry
;
4282 struct dentry
*trap
;
4283 struct nameidata oldnd
, newnd
;
4284 struct inode
*delegated_inode
= NULL
;
4285 struct filename
*from
;
4286 struct filename
*to
;
4287 unsigned int lookup_flags
= 0;
4288 bool should_retry
= false;
4291 if (flags
& ~(RENAME_NOREPLACE
| RENAME_EXCHANGE
| RENAME_WHITEOUT
))
4294 if ((flags
& (RENAME_NOREPLACE
| RENAME_WHITEOUT
)) &&
4295 (flags
& RENAME_EXCHANGE
))
4298 if ((flags
& RENAME_WHITEOUT
) && !capable(CAP_MKNOD
))
4302 from
= user_path_parent(olddfd
, oldname
, &oldnd
, lookup_flags
);
4304 error
= PTR_ERR(from
);
4308 to
= user_path_parent(newdfd
, newname
, &newnd
, lookup_flags
);
4310 error
= PTR_ERR(to
);
4315 if (oldnd
.path
.mnt
!= newnd
.path
.mnt
)
4318 old_dir
= oldnd
.path
.dentry
;
4320 if (oldnd
.last_type
!= LAST_NORM
)
4323 new_dir
= newnd
.path
.dentry
;
4324 if (flags
& RENAME_NOREPLACE
)
4326 if (newnd
.last_type
!= LAST_NORM
)
4329 error
= mnt_want_write(oldnd
.path
.mnt
);
4333 oldnd
.flags
&= ~LOOKUP_PARENT
;
4334 newnd
.flags
&= ~LOOKUP_PARENT
;
4335 if (!(flags
& RENAME_EXCHANGE
))
4336 newnd
.flags
|= LOOKUP_RENAME_TARGET
;
4339 trap
= lock_rename(new_dir
, old_dir
);
4341 old_dentry
= lookup_hash(&oldnd
);
4342 error
= PTR_ERR(old_dentry
);
4343 if (IS_ERR(old_dentry
))
4345 /* source must exist */
4347 if (d_is_negative(old_dentry
))
4349 new_dentry
= lookup_hash(&newnd
);
4350 error
= PTR_ERR(new_dentry
);
4351 if (IS_ERR(new_dentry
))
4354 if ((flags
& RENAME_NOREPLACE
) && d_is_positive(new_dentry
))
4356 if (flags
& RENAME_EXCHANGE
) {
4358 if (d_is_negative(new_dentry
))
4361 if (!d_is_dir(new_dentry
)) {
4363 if (newnd
.last
.name
[newnd
.last
.len
])
4367 /* unless the source is a directory trailing slashes give -ENOTDIR */
4368 if (!d_is_dir(old_dentry
)) {
4370 if (oldnd
.last
.name
[oldnd
.last
.len
])
4372 if (!(flags
& RENAME_EXCHANGE
) && newnd
.last
.name
[newnd
.last
.len
])
4375 /* source should not be ancestor of target */
4377 if (old_dentry
== trap
)
4379 /* target should not be an ancestor of source */
4380 if (!(flags
& RENAME_EXCHANGE
))
4382 if (new_dentry
== trap
)
4385 error
= security_path_rename(&oldnd
.path
, old_dentry
,
4386 &newnd
.path
, new_dentry
, flags
);
4389 error
= vfs_rename(old_dir
->d_inode
, old_dentry
,
4390 new_dir
->d_inode
, new_dentry
,
4391 &delegated_inode
, flags
);
4397 unlock_rename(new_dir
, old_dir
);
4398 if (delegated_inode
) {
4399 error
= break_deleg_wait(&delegated_inode
);
4403 mnt_drop_write(oldnd
.path
.mnt
);
4405 if (retry_estale(error
, lookup_flags
))
4406 should_retry
= true;
4407 path_put(&newnd
.path
);
4410 path_put(&oldnd
.path
);
4413 should_retry
= false;
4414 lookup_flags
|= LOOKUP_REVAL
;
4421 SYSCALL_DEFINE4(renameat
, int, olddfd
, const char __user
*, oldname
,
4422 int, newdfd
, const char __user
*, newname
)
4424 return sys_renameat2(olddfd
, oldname
, newdfd
, newname
, 0);
4427 SYSCALL_DEFINE2(rename
, const char __user
*, oldname
, const char __user
*, newname
)
4429 return sys_renameat2(AT_FDCWD
, oldname
, AT_FDCWD
, newname
, 0);
4432 int vfs_whiteout(struct inode
*dir
, struct dentry
*dentry
)
4434 int error
= may_create(dir
, dentry
);
4438 if (!dir
->i_op
->mknod
)
4441 return dir
->i_op
->mknod(dir
, dentry
,
4442 S_IFCHR
| WHITEOUT_MODE
, WHITEOUT_DEV
);
4444 EXPORT_SYMBOL(vfs_whiteout
);
4446 int readlink_copy(char __user
*buffer
, int buflen
, const char *link
)
4448 int len
= PTR_ERR(link
);
4453 if (len
> (unsigned) buflen
)
4455 if (copy_to_user(buffer
, link
, len
))
4460 EXPORT_SYMBOL(readlink_copy
);
4463 * A helper for ->readlink(). This should be used *ONLY* for symlinks that
4464 * have ->follow_link() touching nd only in nd_set_link(). Using (or not
4465 * using) it for any given inode is up to filesystem.
4467 int generic_readlink(struct dentry
*dentry
, char __user
*buffer
, int buflen
)
4469 struct nameidata nd
;
4474 cookie
= dentry
->d_inode
->i_op
->follow_link(dentry
, &nd
);
4476 return PTR_ERR(cookie
);
4478 res
= readlink_copy(buffer
, buflen
, nd_get_link(&nd
));
4479 if (dentry
->d_inode
->i_op
->put_link
)
4480 dentry
->d_inode
->i_op
->put_link(dentry
, &nd
, cookie
);
4483 EXPORT_SYMBOL(generic_readlink
);
4485 /* get the link contents into pagecache */
4486 static char *page_getlink(struct dentry
* dentry
, struct page
**ppage
)
4490 struct address_space
*mapping
= dentry
->d_inode
->i_mapping
;
4491 page
= read_mapping_page(mapping
, 0, NULL
);
4496 nd_terminate_link(kaddr
, dentry
->d_inode
->i_size
, PAGE_SIZE
- 1);
4500 int page_readlink(struct dentry
*dentry
, char __user
*buffer
, int buflen
)
4502 struct page
*page
= NULL
;
4503 int res
= readlink_copy(buffer
, buflen
, page_getlink(dentry
, &page
));
4506 page_cache_release(page
);
4510 EXPORT_SYMBOL(page_readlink
);
4512 void *page_follow_link_light(struct dentry
*dentry
, struct nameidata
*nd
)
4514 struct page
*page
= NULL
;
4515 nd_set_link(nd
, page_getlink(dentry
, &page
));
4518 EXPORT_SYMBOL(page_follow_link_light
);
4520 void page_put_link(struct dentry
*dentry
, struct nameidata
*nd
, void *cookie
)
4522 struct page
*page
= cookie
;
4526 page_cache_release(page
);
4529 EXPORT_SYMBOL(page_put_link
);
4532 * The nofs argument instructs pagecache_write_begin to pass AOP_FLAG_NOFS
4534 int __page_symlink(struct inode
*inode
, const char *symname
, int len
, int nofs
)
4536 struct address_space
*mapping
= inode
->i_mapping
;
4541 unsigned int flags
= AOP_FLAG_UNINTERRUPTIBLE
;
4543 flags
|= AOP_FLAG_NOFS
;
4546 err
= pagecache_write_begin(NULL
, mapping
, 0, len
-1,
4547 flags
, &page
, &fsdata
);
4551 kaddr
= kmap_atomic(page
);
4552 memcpy(kaddr
, symname
, len
-1);
4553 kunmap_atomic(kaddr
);
4555 err
= pagecache_write_end(NULL
, mapping
, 0, len
-1, len
-1,
4562 mark_inode_dirty(inode
);
4567 EXPORT_SYMBOL(__page_symlink
);
4569 int page_symlink(struct inode
*inode
, const char *symname
, int len
)
4571 return __page_symlink(inode
, symname
, len
,
4572 !(mapping_gfp_mask(inode
->i_mapping
) & __GFP_FS
));
4574 EXPORT_SYMBOL(page_symlink
);
4576 const struct inode_operations page_symlink_inode_operations
= {
4577 .readlink
= generic_readlink
,
4578 .follow_link
= page_follow_link_light
,
4579 .put_link
= page_put_link
,
4581 EXPORT_SYMBOL(page_symlink_inode_operations
);