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.
121 void final_putname(struct filename
*name
)
123 if (name
->separate
) {
124 __putname(name
->name
);
131 #define EMBEDDED_NAME_MAX (PATH_MAX - sizeof(struct filename))
133 static struct filename
*
134 getname_flags(const char __user
*filename
, int flags
, int *empty
)
136 struct filename
*result
, *err
;
141 result
= audit_reusename(filename
);
145 result
= __getname();
146 if (unlikely(!result
))
147 return ERR_PTR(-ENOMEM
);
150 * First, try to embed the struct filename inside the names_cache
153 kname
= (char *)result
+ sizeof(*result
);
154 result
->name
= kname
;
155 result
->separate
= false;
156 max
= EMBEDDED_NAME_MAX
;
159 len
= strncpy_from_user(kname
, filename
, max
);
160 if (unlikely(len
< 0)) {
166 * Uh-oh. We have a name that's approaching PATH_MAX. Allocate a
167 * separate struct filename so we can dedicate the entire
168 * names_cache allocation for the pathname, and re-do the copy from
171 if (len
== EMBEDDED_NAME_MAX
&& max
== EMBEDDED_NAME_MAX
) {
172 kname
= (char *)result
;
174 result
= kzalloc(sizeof(*result
), GFP_KERNEL
);
176 err
= ERR_PTR(-ENOMEM
);
177 result
= (struct filename
*)kname
;
180 result
->name
= kname
;
181 result
->separate
= true;
186 /* The empty path is special. */
187 if (unlikely(!len
)) {
190 err
= ERR_PTR(-ENOENT
);
191 if (!(flags
& LOOKUP_EMPTY
))
195 err
= ERR_PTR(-ENAMETOOLONG
);
196 if (unlikely(len
>= PATH_MAX
))
199 result
->uptr
= filename
;
200 result
->aname
= NULL
;
201 audit_getname(result
);
205 final_putname(result
);
210 getname(const char __user
* filename
)
212 return getname_flags(filename
, 0, NULL
);
216 * The "getname_kernel()" interface doesn't do pathnames longer
217 * than EMBEDDED_NAME_MAX. Deal with it - you're a kernel user.
220 getname_kernel(const char * filename
)
222 struct filename
*result
;
226 len
= strlen(filename
);
227 if (len
>= EMBEDDED_NAME_MAX
)
228 return ERR_PTR(-ENAMETOOLONG
);
230 result
= __getname();
231 if (unlikely(!result
))
232 return ERR_PTR(-ENOMEM
);
234 kname
= (char *)result
+ sizeof(*result
);
235 result
->name
= kname
;
237 result
->aname
= NULL
;
238 result
->separate
= false;
240 strlcpy(kname
, filename
, EMBEDDED_NAME_MAX
);
244 #ifdef CONFIG_AUDITSYSCALL
245 void putname(struct filename
*name
)
247 if (unlikely(!audit_dummy_context()))
248 return audit_putname(name
);
253 static int check_acl(struct inode
*inode
, int mask
)
255 #ifdef CONFIG_FS_POSIX_ACL
256 struct posix_acl
*acl
;
258 if (mask
& MAY_NOT_BLOCK
) {
259 acl
= get_cached_acl_rcu(inode
, ACL_TYPE_ACCESS
);
262 /* no ->get_acl() calls in RCU mode... */
263 if (acl
== ACL_NOT_CACHED
)
265 return posix_acl_permission(inode
, acl
, mask
& ~MAY_NOT_BLOCK
);
268 acl
= get_acl(inode
, ACL_TYPE_ACCESS
);
272 int error
= posix_acl_permission(inode
, acl
, mask
);
273 posix_acl_release(acl
);
282 * This does the basic permission checking
284 static int acl_permission_check(struct inode
*inode
, int mask
)
286 unsigned int mode
= inode
->i_mode
;
288 if (likely(uid_eq(current_fsuid(), inode
->i_uid
)))
291 if (IS_POSIXACL(inode
) && (mode
& S_IRWXG
)) {
292 int error
= check_acl(inode
, mask
);
293 if (error
!= -EAGAIN
)
297 if (in_group_p(inode
->i_gid
))
302 * If the DACs are ok we don't need any capability check.
304 if ((mask
& ~mode
& (MAY_READ
| MAY_WRITE
| MAY_EXEC
)) == 0)
310 * generic_permission - check for access rights on a Posix-like filesystem
311 * @inode: inode to check access rights for
312 * @mask: right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC, ...)
314 * Used to check for read/write/execute permissions on a file.
315 * We use "fsuid" for this, letting us set arbitrary permissions
316 * for filesystem access without changing the "normal" uids which
317 * are used for other things.
319 * generic_permission is rcu-walk aware. It returns -ECHILD in case an rcu-walk
320 * request cannot be satisfied (eg. requires blocking or too much complexity).
321 * It would then be called again in ref-walk mode.
323 int generic_permission(struct inode
*inode
, int mask
)
328 * Do the basic permission checks.
330 ret
= acl_permission_check(inode
, mask
);
334 if (S_ISDIR(inode
->i_mode
)) {
335 /* DACs are overridable for directories */
336 if (capable_wrt_inode_uidgid(inode
, CAP_DAC_OVERRIDE
))
338 if (!(mask
& MAY_WRITE
))
339 if (capable_wrt_inode_uidgid(inode
,
340 CAP_DAC_READ_SEARCH
))
345 * Read/write DACs are always overridable.
346 * Executable DACs are overridable when there is
347 * at least one exec bit set.
349 if (!(mask
& MAY_EXEC
) || (inode
->i_mode
& S_IXUGO
))
350 if (capable_wrt_inode_uidgid(inode
, CAP_DAC_OVERRIDE
))
354 * Searching includes executable on directories, else just read.
356 mask
&= MAY_READ
| MAY_WRITE
| MAY_EXEC
;
357 if (mask
== MAY_READ
)
358 if (capable_wrt_inode_uidgid(inode
, CAP_DAC_READ_SEARCH
))
363 EXPORT_SYMBOL(generic_permission
);
366 * We _really_ want to just do "generic_permission()" without
367 * even looking at the inode->i_op values. So we keep a cache
368 * flag in inode->i_opflags, that says "this has not special
369 * permission function, use the fast case".
371 static inline int do_inode_permission(struct inode
*inode
, int mask
)
373 if (unlikely(!(inode
->i_opflags
& IOP_FASTPERM
))) {
374 if (likely(inode
->i_op
->permission
))
375 return inode
->i_op
->permission(inode
, mask
);
377 /* This gets set once for the inode lifetime */
378 spin_lock(&inode
->i_lock
);
379 inode
->i_opflags
|= IOP_FASTPERM
;
380 spin_unlock(&inode
->i_lock
);
382 return generic_permission(inode
, mask
);
386 * __inode_permission - Check for access rights to a given inode
387 * @inode: Inode to check permission on
388 * @mask: Right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
390 * Check for read/write/execute permissions on an inode.
392 * When checking for MAY_APPEND, MAY_WRITE must also be set in @mask.
394 * This does not check for a read-only file system. You probably want
395 * inode_permission().
397 int __inode_permission(struct inode
*inode
, int mask
)
401 if (unlikely(mask
& MAY_WRITE
)) {
403 * Nobody gets write access to an immutable file.
405 if (IS_IMMUTABLE(inode
))
409 retval
= do_inode_permission(inode
, mask
);
413 retval
= devcgroup_inode_permission(inode
, mask
);
417 return security_inode_permission(inode
, mask
);
421 * sb_permission - Check superblock-level permissions
422 * @sb: Superblock of inode to check permission on
423 * @inode: Inode to check permission on
424 * @mask: Right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
426 * Separate out file-system wide checks from inode-specific permission checks.
428 static int sb_permission(struct super_block
*sb
, struct inode
*inode
, int mask
)
430 if (unlikely(mask
& MAY_WRITE
)) {
431 umode_t mode
= inode
->i_mode
;
433 /* Nobody gets write access to a read-only fs. */
434 if ((sb
->s_flags
& MS_RDONLY
) &&
435 (S_ISREG(mode
) || S_ISDIR(mode
) || S_ISLNK(mode
)))
442 * inode_permission - Check for access rights to a given inode
443 * @inode: Inode to check permission on
444 * @mask: Right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
446 * Check for read/write/execute permissions on an inode. We use fs[ug]id for
447 * this, letting us set arbitrary permissions for filesystem access without
448 * changing the "normal" UIDs which are used for other things.
450 * When checking for MAY_APPEND, MAY_WRITE must also be set in @mask.
452 int inode_permission(struct inode
*inode
, int mask
)
456 retval
= sb_permission(inode
->i_sb
, inode
, mask
);
459 return __inode_permission(inode
, mask
);
461 EXPORT_SYMBOL(inode_permission
);
464 * path_get - get a reference to a path
465 * @path: path to get the reference to
467 * Given a path increment the reference count to the dentry and the vfsmount.
469 void path_get(const struct path
*path
)
474 EXPORT_SYMBOL(path_get
);
477 * path_put - put a reference to a path
478 * @path: path to put the reference to
480 * Given a path decrement the reference count to the dentry and the vfsmount.
482 void path_put(const struct path
*path
)
487 EXPORT_SYMBOL(path_put
);
490 * Path walking has 2 modes, rcu-walk and ref-walk (see
491 * Documentation/filesystems/path-lookup.txt). In situations when we can't
492 * continue in RCU mode, we attempt to drop out of rcu-walk mode and grab
493 * normal reference counts on dentries and vfsmounts to transition to rcu-walk
494 * mode. Refcounts are grabbed at the last known good point before rcu-walk
495 * got stuck, so ref-walk may continue from there. If this is not successful
496 * (eg. a seqcount has changed), then failure is returned and it's up to caller
497 * to restart the path walk from the beginning in ref-walk mode.
501 * unlazy_walk - try to switch to ref-walk mode.
502 * @nd: nameidata pathwalk data
503 * @dentry: child of nd->path.dentry or NULL
504 * Returns: 0 on success, -ECHILD on failure
506 * unlazy_walk attempts to legitimize the current nd->path, nd->root and dentry
507 * for ref-walk mode. @dentry must be a path found by a do_lookup call on
508 * @nd or NULL. Must be called from rcu-walk context.
510 static int unlazy_walk(struct nameidata
*nd
, struct dentry
*dentry
)
512 struct fs_struct
*fs
= current
->fs
;
513 struct dentry
*parent
= nd
->path
.dentry
;
515 BUG_ON(!(nd
->flags
& LOOKUP_RCU
));
518 * After legitimizing the bastards, terminate_walk()
519 * will do the right thing for non-RCU mode, and all our
520 * subsequent exit cases should rcu_read_unlock()
521 * before returning. Do vfsmount first; if dentry
522 * can't be legitimized, just set nd->path.dentry to NULL
523 * and rely on dput(NULL) being a no-op.
525 if (!legitimize_mnt(nd
->path
.mnt
, nd
->m_seq
))
527 nd
->flags
&= ~LOOKUP_RCU
;
529 if (!lockref_get_not_dead(&parent
->d_lockref
)) {
530 nd
->path
.dentry
= NULL
;
535 * For a negative lookup, the lookup sequence point is the parents
536 * sequence point, and it only needs to revalidate the parent dentry.
538 * For a positive lookup, we need to move both the parent and the
539 * dentry from the RCU domain to be properly refcounted. And the
540 * sequence number in the dentry validates *both* dentry counters,
541 * since we checked the sequence number of the parent after we got
542 * the child sequence number. So we know the parent must still
543 * be valid if the child sequence number is still valid.
546 if (read_seqcount_retry(&parent
->d_seq
, nd
->seq
))
548 BUG_ON(nd
->inode
!= parent
->d_inode
);
550 if (!lockref_get_not_dead(&dentry
->d_lockref
))
552 if (read_seqcount_retry(&dentry
->d_seq
, nd
->seq
))
557 * Sequence counts matched. Now make sure that the root is
558 * still valid and get it if required.
560 if (nd
->root
.mnt
&& !(nd
->flags
& LOOKUP_ROOT
)) {
561 spin_lock(&fs
->lock
);
562 if (nd
->root
.mnt
!= fs
->root
.mnt
|| nd
->root
.dentry
!= fs
->root
.dentry
)
563 goto unlock_and_drop_dentry
;
565 spin_unlock(&fs
->lock
);
571 unlock_and_drop_dentry
:
572 spin_unlock(&fs
->lock
);
580 if (!(nd
->flags
& LOOKUP_ROOT
))
585 static inline int d_revalidate(struct dentry
*dentry
, unsigned int flags
)
587 return dentry
->d_op
->d_revalidate(dentry
, flags
);
591 * complete_walk - successful completion of path walk
592 * @nd: pointer nameidata
594 * If we had been in RCU mode, drop out of it and legitimize nd->path.
595 * Revalidate the final result, unless we'd already done that during
596 * the path walk or the filesystem doesn't ask for it. Return 0 on
597 * success, -error on failure. In case of failure caller does not
598 * need to drop nd->path.
600 static int complete_walk(struct nameidata
*nd
)
602 struct dentry
*dentry
= nd
->path
.dentry
;
605 if (nd
->flags
& LOOKUP_RCU
) {
606 nd
->flags
&= ~LOOKUP_RCU
;
607 if (!(nd
->flags
& LOOKUP_ROOT
))
610 if (!legitimize_mnt(nd
->path
.mnt
, nd
->m_seq
)) {
614 if (unlikely(!lockref_get_not_dead(&dentry
->d_lockref
))) {
616 mntput(nd
->path
.mnt
);
619 if (read_seqcount_retry(&dentry
->d_seq
, nd
->seq
)) {
622 mntput(nd
->path
.mnt
);
628 if (likely(!(nd
->flags
& LOOKUP_JUMPED
)))
631 if (likely(!(dentry
->d_flags
& DCACHE_OP_WEAK_REVALIDATE
)))
634 status
= dentry
->d_op
->d_weak_revalidate(dentry
, nd
->flags
);
645 static __always_inline
void set_root(struct nameidata
*nd
)
648 get_fs_root(current
->fs
, &nd
->root
);
651 static int link_path_walk(const char *, struct nameidata
*);
653 static __always_inline
void set_root_rcu(struct nameidata
*nd
)
656 struct fs_struct
*fs
= current
->fs
;
660 seq
= read_seqcount_begin(&fs
->seq
);
662 nd
->seq
= __read_seqcount_begin(&nd
->root
.dentry
->d_seq
);
663 } while (read_seqcount_retry(&fs
->seq
, seq
));
667 static void path_put_conditional(struct path
*path
, struct nameidata
*nd
)
670 if (path
->mnt
!= nd
->path
.mnt
)
674 static inline void path_to_nameidata(const struct path
*path
,
675 struct nameidata
*nd
)
677 if (!(nd
->flags
& LOOKUP_RCU
)) {
678 dput(nd
->path
.dentry
);
679 if (nd
->path
.mnt
!= path
->mnt
)
680 mntput(nd
->path
.mnt
);
682 nd
->path
.mnt
= path
->mnt
;
683 nd
->path
.dentry
= path
->dentry
;
687 * Helper to directly jump to a known parsed path from ->follow_link,
688 * caller must have taken a reference to path beforehand.
690 void nd_jump_link(struct nameidata
*nd
, struct path
*path
)
695 nd
->inode
= nd
->path
.dentry
->d_inode
;
696 nd
->flags
|= LOOKUP_JUMPED
;
699 static inline void put_link(struct nameidata
*nd
, struct path
*link
, void *cookie
)
701 struct inode
*inode
= link
->dentry
->d_inode
;
702 if (inode
->i_op
->put_link
)
703 inode
->i_op
->put_link(link
->dentry
, nd
, cookie
);
707 int sysctl_protected_symlinks __read_mostly
= 0;
708 int sysctl_protected_hardlinks __read_mostly
= 0;
711 * may_follow_link - Check symlink following for unsafe situations
712 * @link: The path of the symlink
713 * @nd: nameidata pathwalk data
715 * In the case of the sysctl_protected_symlinks sysctl being enabled,
716 * CAP_DAC_OVERRIDE needs to be specifically ignored if the symlink is
717 * in a sticky world-writable directory. This is to protect privileged
718 * processes from failing races against path names that may change out
719 * from under them by way of other users creating malicious symlinks.
720 * It will permit symlinks to be followed only when outside a sticky
721 * world-writable directory, or when the uid of the symlink and follower
722 * match, or when the directory owner matches the symlink's owner.
724 * Returns 0 if following the symlink is allowed, -ve on error.
726 static inline int may_follow_link(struct path
*link
, struct nameidata
*nd
)
728 const struct inode
*inode
;
729 const struct inode
*parent
;
731 if (!sysctl_protected_symlinks
)
734 /* Allowed if owner and follower match. */
735 inode
= link
->dentry
->d_inode
;
736 if (uid_eq(current_cred()->fsuid
, inode
->i_uid
))
739 /* Allowed if parent directory not sticky and world-writable. */
740 parent
= nd
->path
.dentry
->d_inode
;
741 if ((parent
->i_mode
& (S_ISVTX
|S_IWOTH
)) != (S_ISVTX
|S_IWOTH
))
744 /* Allowed if parent directory and link owner match. */
745 if (uid_eq(parent
->i_uid
, inode
->i_uid
))
748 audit_log_link_denied("follow_link", link
);
749 path_put_conditional(link
, nd
);
755 * safe_hardlink_source - Check for safe hardlink conditions
756 * @inode: the source inode to hardlink from
758 * Return false if at least one of the following conditions:
759 * - inode is not a regular file
761 * - inode is setgid and group-exec
762 * - access failure for read and write
764 * Otherwise returns true.
766 static bool safe_hardlink_source(struct inode
*inode
)
768 umode_t mode
= inode
->i_mode
;
770 /* Special files should not get pinned to the filesystem. */
774 /* Setuid files should not get pinned to the filesystem. */
778 /* Executable setgid files should not get pinned to the filesystem. */
779 if ((mode
& (S_ISGID
| S_IXGRP
)) == (S_ISGID
| S_IXGRP
))
782 /* Hardlinking to unreadable or unwritable sources is dangerous. */
783 if (inode_permission(inode
, MAY_READ
| MAY_WRITE
))
790 * may_linkat - Check permissions for creating a hardlink
791 * @link: the source to hardlink from
793 * Block hardlink when all of:
794 * - sysctl_protected_hardlinks enabled
795 * - fsuid does not match inode
796 * - hardlink source is unsafe (see safe_hardlink_source() above)
799 * Returns 0 if successful, -ve on error.
801 static int may_linkat(struct path
*link
)
803 const struct cred
*cred
;
806 if (!sysctl_protected_hardlinks
)
809 cred
= current_cred();
810 inode
= link
->dentry
->d_inode
;
812 /* Source inode owner (or CAP_FOWNER) can hardlink all they like,
813 * otherwise, it must be a safe source.
815 if (uid_eq(cred
->fsuid
, inode
->i_uid
) || safe_hardlink_source(inode
) ||
819 audit_log_link_denied("linkat", link
);
823 static __always_inline
int
824 follow_link(struct path
*link
, struct nameidata
*nd
, void **p
)
826 struct dentry
*dentry
= link
->dentry
;
830 BUG_ON(nd
->flags
& LOOKUP_RCU
);
832 if (link
->mnt
== nd
->path
.mnt
)
836 if (unlikely(current
->total_link_count
>= 40))
837 goto out_put_nd_path
;
840 current
->total_link_count
++;
843 nd_set_link(nd
, NULL
);
845 error
= security_inode_follow_link(link
->dentry
, nd
);
847 goto out_put_nd_path
;
849 nd
->last_type
= LAST_BIND
;
850 *p
= dentry
->d_inode
->i_op
->follow_link(dentry
, nd
);
853 goto out_put_nd_path
;
858 if (unlikely(IS_ERR(s
))) {
860 put_link(nd
, link
, *p
);
868 nd
->flags
|= LOOKUP_JUMPED
;
870 nd
->inode
= nd
->path
.dentry
->d_inode
;
871 error
= link_path_walk(s
, nd
);
873 put_link(nd
, link
, *p
);
885 static int follow_up_rcu(struct path
*path
)
887 struct mount
*mnt
= real_mount(path
->mnt
);
888 struct mount
*parent
;
889 struct dentry
*mountpoint
;
891 parent
= mnt
->mnt_parent
;
892 if (&parent
->mnt
== path
->mnt
)
894 mountpoint
= mnt
->mnt_mountpoint
;
895 path
->dentry
= mountpoint
;
896 path
->mnt
= &parent
->mnt
;
901 * follow_up - Find the mountpoint of path's vfsmount
903 * Given a path, find the mountpoint of its source file system.
904 * Replace @path with the path of the mountpoint in the parent mount.
907 * Return 1 if we went up a level and 0 if we were already at the
910 int follow_up(struct path
*path
)
912 struct mount
*mnt
= real_mount(path
->mnt
);
913 struct mount
*parent
;
914 struct dentry
*mountpoint
;
916 read_seqlock_excl(&mount_lock
);
917 parent
= mnt
->mnt_parent
;
919 read_sequnlock_excl(&mount_lock
);
922 mntget(&parent
->mnt
);
923 mountpoint
= dget(mnt
->mnt_mountpoint
);
924 read_sequnlock_excl(&mount_lock
);
926 path
->dentry
= mountpoint
;
928 path
->mnt
= &parent
->mnt
;
931 EXPORT_SYMBOL(follow_up
);
934 * Perform an automount
935 * - return -EISDIR to tell follow_managed() to stop and return the path we
938 static int follow_automount(struct path
*path
, unsigned flags
,
941 struct vfsmount
*mnt
;
944 if (!path
->dentry
->d_op
|| !path
->dentry
->d_op
->d_automount
)
947 /* We don't want to mount if someone's just doing a stat -
948 * unless they're stat'ing a directory and appended a '/' to
951 * We do, however, want to mount if someone wants to open or
952 * create a file of any type under the mountpoint, wants to
953 * traverse through the mountpoint or wants to open the
954 * mounted directory. Also, autofs may mark negative dentries
955 * as being automount points. These will need the attentions
956 * of the daemon to instantiate them before they can be used.
958 if (!(flags
& (LOOKUP_PARENT
| LOOKUP_DIRECTORY
|
959 LOOKUP_OPEN
| LOOKUP_CREATE
| LOOKUP_AUTOMOUNT
)) &&
960 path
->dentry
->d_inode
)
963 current
->total_link_count
++;
964 if (current
->total_link_count
>= 40)
967 mnt
= path
->dentry
->d_op
->d_automount(path
);
970 * The filesystem is allowed to return -EISDIR here to indicate
971 * it doesn't want to automount. For instance, autofs would do
972 * this so that its userspace daemon can mount on this dentry.
974 * However, we can only permit this if it's a terminal point in
975 * the path being looked up; if it wasn't then the remainder of
976 * the path is inaccessible and we should say so.
978 if (PTR_ERR(mnt
) == -EISDIR
&& (flags
& LOOKUP_PARENT
))
983 if (!mnt
) /* mount collision */
987 /* lock_mount() may release path->mnt on error */
991 err
= finish_automount(mnt
, path
);
995 /* Someone else made a mount here whilst we were busy */
1000 path
->dentry
= dget(mnt
->mnt_root
);
1009 * Handle a dentry that is managed in some way.
1010 * - Flagged for transit management (autofs)
1011 * - Flagged as mountpoint
1012 * - Flagged as automount point
1014 * This may only be called in refwalk mode.
1016 * Serialization is taken care of in namespace.c
1018 static int follow_managed(struct path
*path
, unsigned flags
)
1020 struct vfsmount
*mnt
= path
->mnt
; /* held by caller, must be left alone */
1022 bool need_mntput
= false;
1025 /* Given that we're not holding a lock here, we retain the value in a
1026 * local variable for each dentry as we look at it so that we don't see
1027 * the components of that value change under us */
1028 while (managed
= ACCESS_ONCE(path
->dentry
->d_flags
),
1029 managed
&= DCACHE_MANAGED_DENTRY
,
1030 unlikely(managed
!= 0)) {
1031 /* Allow the filesystem to manage the transit without i_mutex
1033 if (managed
& DCACHE_MANAGE_TRANSIT
) {
1034 BUG_ON(!path
->dentry
->d_op
);
1035 BUG_ON(!path
->dentry
->d_op
->d_manage
);
1036 ret
= path
->dentry
->d_op
->d_manage(path
->dentry
, false);
1041 /* Transit to a mounted filesystem. */
1042 if (managed
& DCACHE_MOUNTED
) {
1043 struct vfsmount
*mounted
= lookup_mnt(path
);
1048 path
->mnt
= mounted
;
1049 path
->dentry
= dget(mounted
->mnt_root
);
1054 /* Something is mounted on this dentry in another
1055 * namespace and/or whatever was mounted there in this
1056 * namespace got unmounted before lookup_mnt() could
1060 /* Handle an automount point */
1061 if (managed
& DCACHE_NEED_AUTOMOUNT
) {
1062 ret
= follow_automount(path
, flags
, &need_mntput
);
1068 /* We didn't change the current path point */
1072 if (need_mntput
&& path
->mnt
== mnt
)
1076 return ret
< 0 ? ret
: need_mntput
;
1079 int follow_down_one(struct path
*path
)
1081 struct vfsmount
*mounted
;
1083 mounted
= lookup_mnt(path
);
1087 path
->mnt
= mounted
;
1088 path
->dentry
= dget(mounted
->mnt_root
);
1093 EXPORT_SYMBOL(follow_down_one
);
1095 static inline int managed_dentry_rcu(struct dentry
*dentry
)
1097 return (dentry
->d_flags
& DCACHE_MANAGE_TRANSIT
) ?
1098 dentry
->d_op
->d_manage(dentry
, true) : 0;
1102 * Try to skip to top of mountpoint pile in rcuwalk mode. Fail if
1103 * we meet a managed dentry that would need blocking.
1105 static bool __follow_mount_rcu(struct nameidata
*nd
, struct path
*path
,
1106 struct inode
**inode
)
1109 struct mount
*mounted
;
1111 * Don't forget we might have a non-mountpoint managed dentry
1112 * that wants to block transit.
1114 switch (managed_dentry_rcu(path
->dentry
)) {
1124 if (!d_mountpoint(path
->dentry
))
1125 return !(path
->dentry
->d_flags
& DCACHE_NEED_AUTOMOUNT
);
1127 mounted
= __lookup_mnt(path
->mnt
, path
->dentry
);
1130 path
->mnt
= &mounted
->mnt
;
1131 path
->dentry
= mounted
->mnt
.mnt_root
;
1132 nd
->flags
|= LOOKUP_JUMPED
;
1133 nd
->seq
= read_seqcount_begin(&path
->dentry
->d_seq
);
1135 * Update the inode too. We don't need to re-check the
1136 * dentry sequence number here after this d_inode read,
1137 * because a mount-point is always pinned.
1139 *inode
= path
->dentry
->d_inode
;
1141 return read_seqretry(&mount_lock
, nd
->m_seq
) &&
1142 !(path
->dentry
->d_flags
& DCACHE_NEED_AUTOMOUNT
);
1145 static int follow_dotdot_rcu(struct nameidata
*nd
)
1150 if (nd
->path
.dentry
== nd
->root
.dentry
&&
1151 nd
->path
.mnt
== nd
->root
.mnt
) {
1154 if (nd
->path
.dentry
!= nd
->path
.mnt
->mnt_root
) {
1155 struct dentry
*old
= nd
->path
.dentry
;
1156 struct dentry
*parent
= old
->d_parent
;
1159 seq
= read_seqcount_begin(&parent
->d_seq
);
1160 if (read_seqcount_retry(&old
->d_seq
, nd
->seq
))
1162 nd
->path
.dentry
= parent
;
1166 if (!follow_up_rcu(&nd
->path
))
1168 nd
->seq
= read_seqcount_begin(&nd
->path
.dentry
->d_seq
);
1170 while (d_mountpoint(nd
->path
.dentry
)) {
1171 struct mount
*mounted
;
1172 mounted
= __lookup_mnt(nd
->path
.mnt
, nd
->path
.dentry
);
1175 nd
->path
.mnt
= &mounted
->mnt
;
1176 nd
->path
.dentry
= mounted
->mnt
.mnt_root
;
1177 nd
->seq
= read_seqcount_begin(&nd
->path
.dentry
->d_seq
);
1178 if (!read_seqretry(&mount_lock
, nd
->m_seq
))
1181 nd
->inode
= nd
->path
.dentry
->d_inode
;
1185 nd
->flags
&= ~LOOKUP_RCU
;
1186 if (!(nd
->flags
& LOOKUP_ROOT
))
1187 nd
->root
.mnt
= NULL
;
1193 * Follow down to the covering mount currently visible to userspace. At each
1194 * point, the filesystem owning that dentry may be queried as to whether the
1195 * caller is permitted to proceed or not.
1197 int follow_down(struct path
*path
)
1202 while (managed
= ACCESS_ONCE(path
->dentry
->d_flags
),
1203 unlikely(managed
& DCACHE_MANAGED_DENTRY
)) {
1204 /* Allow the filesystem to manage the transit without i_mutex
1207 * We indicate to the filesystem if someone is trying to mount
1208 * something here. This gives autofs the chance to deny anyone
1209 * other than its daemon the right to mount on its
1212 * The filesystem may sleep at this point.
1214 if (managed
& DCACHE_MANAGE_TRANSIT
) {
1215 BUG_ON(!path
->dentry
->d_op
);
1216 BUG_ON(!path
->dentry
->d_op
->d_manage
);
1217 ret
= path
->dentry
->d_op
->d_manage(
1218 path
->dentry
, false);
1220 return ret
== -EISDIR
? 0 : ret
;
1223 /* Transit to a mounted filesystem. */
1224 if (managed
& DCACHE_MOUNTED
) {
1225 struct vfsmount
*mounted
= lookup_mnt(path
);
1230 path
->mnt
= mounted
;
1231 path
->dentry
= dget(mounted
->mnt_root
);
1235 /* Don't handle automount points here */
1240 EXPORT_SYMBOL(follow_down
);
1243 * Skip to top of mountpoint pile in refwalk mode for follow_dotdot()
1245 static void follow_mount(struct path
*path
)
1247 while (d_mountpoint(path
->dentry
)) {
1248 struct vfsmount
*mounted
= lookup_mnt(path
);
1253 path
->mnt
= mounted
;
1254 path
->dentry
= dget(mounted
->mnt_root
);
1258 static void follow_dotdot(struct nameidata
*nd
)
1263 struct dentry
*old
= nd
->path
.dentry
;
1265 if (nd
->path
.dentry
== nd
->root
.dentry
&&
1266 nd
->path
.mnt
== nd
->root
.mnt
) {
1269 if (nd
->path
.dentry
!= nd
->path
.mnt
->mnt_root
) {
1270 /* rare case of legitimate dget_parent()... */
1271 nd
->path
.dentry
= dget_parent(nd
->path
.dentry
);
1275 if (!follow_up(&nd
->path
))
1278 follow_mount(&nd
->path
);
1279 nd
->inode
= nd
->path
.dentry
->d_inode
;
1283 * This looks up the name in dcache, possibly revalidates the old dentry and
1284 * allocates a new one if not found or not valid. In the need_lookup argument
1285 * returns whether i_op->lookup is necessary.
1287 * dir->d_inode->i_mutex must be held
1289 static struct dentry
*lookup_dcache(struct qstr
*name
, struct dentry
*dir
,
1290 unsigned int flags
, bool *need_lookup
)
1292 struct dentry
*dentry
;
1295 *need_lookup
= false;
1296 dentry
= d_lookup(dir
, name
);
1298 if (dentry
->d_flags
& DCACHE_OP_REVALIDATE
) {
1299 error
= d_revalidate(dentry
, flags
);
1300 if (unlikely(error
<= 0)) {
1303 return ERR_PTR(error
);
1304 } else if (!d_invalidate(dentry
)) {
1313 dentry
= d_alloc(dir
, name
);
1314 if (unlikely(!dentry
))
1315 return ERR_PTR(-ENOMEM
);
1317 *need_lookup
= true;
1323 * Call i_op->lookup on the dentry. The dentry must be negative and
1326 * dir->d_inode->i_mutex must be held
1328 static struct dentry
*lookup_real(struct inode
*dir
, struct dentry
*dentry
,
1333 /* Don't create child dentry for a dead directory. */
1334 if (unlikely(IS_DEADDIR(dir
))) {
1336 return ERR_PTR(-ENOENT
);
1339 old
= dir
->i_op
->lookup(dir
, dentry
, flags
);
1340 if (unlikely(old
)) {
1347 static struct dentry
*__lookup_hash(struct qstr
*name
,
1348 struct dentry
*base
, unsigned int flags
)
1351 struct dentry
*dentry
;
1353 dentry
= lookup_dcache(name
, base
, flags
, &need_lookup
);
1357 return lookup_real(base
->d_inode
, dentry
, flags
);
1361 * It's more convoluted than I'd like it to be, but... it's still fairly
1362 * small and for now I'd prefer to have fast path as straight as possible.
1363 * It _is_ time-critical.
1365 static int lookup_fast(struct nameidata
*nd
,
1366 struct path
*path
, struct inode
**inode
)
1368 struct vfsmount
*mnt
= nd
->path
.mnt
;
1369 struct dentry
*dentry
, *parent
= nd
->path
.dentry
;
1375 * Rename seqlock is not required here because in the off chance
1376 * of a false negative due to a concurrent rename, we're going to
1377 * do the non-racy lookup, below.
1379 if (nd
->flags
& LOOKUP_RCU
) {
1381 dentry
= __d_lookup_rcu(parent
, &nd
->last
, &seq
);
1386 * This sequence count validates that the inode matches
1387 * the dentry name information from lookup.
1389 *inode
= dentry
->d_inode
;
1390 if (read_seqcount_retry(&dentry
->d_seq
, seq
))
1394 * This sequence count validates that the parent had no
1395 * changes while we did the lookup of the dentry above.
1397 * The memory barrier in read_seqcount_begin of child is
1398 * enough, we can use __read_seqcount_retry here.
1400 if (__read_seqcount_retry(&parent
->d_seq
, nd
->seq
))
1404 if (unlikely(dentry
->d_flags
& DCACHE_OP_REVALIDATE
)) {
1405 status
= d_revalidate(dentry
, nd
->flags
);
1406 if (unlikely(status
<= 0)) {
1407 if (status
!= -ECHILD
)
1413 path
->dentry
= dentry
;
1414 if (likely(__follow_mount_rcu(nd
, path
, inode
)))
1417 if (unlazy_walk(nd
, dentry
))
1420 dentry
= __d_lookup(parent
, &nd
->last
);
1423 if (unlikely(!dentry
))
1426 if (unlikely(dentry
->d_flags
& DCACHE_OP_REVALIDATE
) && need_reval
)
1427 status
= d_revalidate(dentry
, nd
->flags
);
1428 if (unlikely(status
<= 0)) {
1433 if (!d_invalidate(dentry
)) {
1440 path
->dentry
= dentry
;
1441 err
= follow_managed(path
, nd
->flags
);
1442 if (unlikely(err
< 0)) {
1443 path_put_conditional(path
, nd
);
1447 nd
->flags
|= LOOKUP_JUMPED
;
1448 *inode
= path
->dentry
->d_inode
;
1455 /* Fast lookup failed, do it the slow way */
1456 static int lookup_slow(struct nameidata
*nd
, struct path
*path
)
1458 struct dentry
*dentry
, *parent
;
1461 parent
= nd
->path
.dentry
;
1462 BUG_ON(nd
->inode
!= parent
->d_inode
);
1464 mutex_lock(&parent
->d_inode
->i_mutex
);
1465 dentry
= __lookup_hash(&nd
->last
, parent
, nd
->flags
);
1466 mutex_unlock(&parent
->d_inode
->i_mutex
);
1468 return PTR_ERR(dentry
);
1469 path
->mnt
= nd
->path
.mnt
;
1470 path
->dentry
= dentry
;
1471 err
= follow_managed(path
, nd
->flags
);
1472 if (unlikely(err
< 0)) {
1473 path_put_conditional(path
, nd
);
1477 nd
->flags
|= LOOKUP_JUMPED
;
1481 static inline int may_lookup(struct nameidata
*nd
)
1483 if (nd
->flags
& LOOKUP_RCU
) {
1484 int err
= inode_permission(nd
->inode
, MAY_EXEC
|MAY_NOT_BLOCK
);
1487 if (unlazy_walk(nd
, NULL
))
1490 return inode_permission(nd
->inode
, MAY_EXEC
);
1493 static inline int handle_dots(struct nameidata
*nd
, int type
)
1495 if (type
== LAST_DOTDOT
) {
1496 if (nd
->flags
& LOOKUP_RCU
) {
1497 if (follow_dotdot_rcu(nd
))
1505 static void terminate_walk(struct nameidata
*nd
)
1507 if (!(nd
->flags
& LOOKUP_RCU
)) {
1508 path_put(&nd
->path
);
1510 nd
->flags
&= ~LOOKUP_RCU
;
1511 if (!(nd
->flags
& LOOKUP_ROOT
))
1512 nd
->root
.mnt
= NULL
;
1518 * Do we need to follow links? We _really_ want to be able
1519 * to do this check without having to look at inode->i_op,
1520 * so we keep a cache of "no, this doesn't need follow_link"
1521 * for the common case.
1523 static inline int should_follow_link(struct dentry
*dentry
, int follow
)
1525 return unlikely(d_is_symlink(dentry
)) ? follow
: 0;
1528 static inline int walk_component(struct nameidata
*nd
, struct path
*path
,
1531 struct inode
*inode
;
1534 * "." and ".." are special - ".." especially so because it has
1535 * to be able to know about the current root directory and
1536 * parent relationships.
1538 if (unlikely(nd
->last_type
!= LAST_NORM
))
1539 return handle_dots(nd
, nd
->last_type
);
1540 err
= lookup_fast(nd
, path
, &inode
);
1541 if (unlikely(err
)) {
1545 err
= lookup_slow(nd
, path
);
1549 inode
= path
->dentry
->d_inode
;
1552 if (!inode
|| d_is_negative(path
->dentry
))
1555 if (should_follow_link(path
->dentry
, follow
)) {
1556 if (nd
->flags
& LOOKUP_RCU
) {
1557 if (unlikely(unlazy_walk(nd
, path
->dentry
))) {
1562 BUG_ON(inode
!= path
->dentry
->d_inode
);
1565 path_to_nameidata(path
, nd
);
1570 path_to_nameidata(path
, nd
);
1577 * This limits recursive symlink follows to 8, while
1578 * limiting consecutive symlinks to 40.
1580 * Without that kind of total limit, nasty chains of consecutive
1581 * symlinks can cause almost arbitrarily long lookups.
1583 static inline int nested_symlink(struct path
*path
, struct nameidata
*nd
)
1587 if (unlikely(current
->link_count
>= MAX_NESTED_LINKS
)) {
1588 path_put_conditional(path
, nd
);
1589 path_put(&nd
->path
);
1592 BUG_ON(nd
->depth
>= MAX_NESTED_LINKS
);
1595 current
->link_count
++;
1598 struct path link
= *path
;
1601 res
= follow_link(&link
, nd
, &cookie
);
1604 res
= walk_component(nd
, path
, LOOKUP_FOLLOW
);
1605 put_link(nd
, &link
, cookie
);
1608 current
->link_count
--;
1614 * We can do the critical dentry name comparison and hashing
1615 * operations one word at a time, but we are limited to:
1617 * - Architectures with fast unaligned word accesses. We could
1618 * do a "get_unaligned()" if this helps and is sufficiently
1621 * - non-CONFIG_DEBUG_PAGEALLOC configurations (so that we
1622 * do not trap on the (extremely unlikely) case of a page
1623 * crossing operation.
1625 * - Furthermore, we need an efficient 64-bit compile for the
1626 * 64-bit case in order to generate the "number of bytes in
1627 * the final mask". Again, that could be replaced with a
1628 * efficient population count instruction or similar.
1630 #ifdef CONFIG_DCACHE_WORD_ACCESS
1632 #include <asm/word-at-a-time.h>
1636 static inline unsigned int fold_hash(unsigned long hash
)
1638 return hash_64(hash
, 32);
1641 #else /* 32-bit case */
1643 #define fold_hash(x) (x)
1647 unsigned int full_name_hash(const unsigned char *name
, unsigned int len
)
1649 unsigned long a
, mask
;
1650 unsigned long hash
= 0;
1653 a
= load_unaligned_zeropad(name
);
1654 if (len
< sizeof(unsigned long))
1658 name
+= sizeof(unsigned long);
1659 len
-= sizeof(unsigned long);
1663 mask
= bytemask_from_count(len
);
1666 return fold_hash(hash
);
1668 EXPORT_SYMBOL(full_name_hash
);
1671 * Calculate the length and hash of the path component, and
1672 * fill in the qstr. return the "len" as the result.
1674 static inline unsigned long hash_name(const char *name
, struct qstr
*res
)
1676 unsigned long a
, b
, adata
, bdata
, mask
, hash
, len
;
1677 const struct word_at_a_time constants
= WORD_AT_A_TIME_CONSTANTS
;
1681 len
= -sizeof(unsigned long);
1683 hash
= (hash
+ a
) * 9;
1684 len
+= sizeof(unsigned long);
1685 a
= load_unaligned_zeropad(name
+len
);
1686 b
= a
^ REPEAT_BYTE('/');
1687 } while (!(has_zero(a
, &adata
, &constants
) | has_zero(b
, &bdata
, &constants
)));
1689 adata
= prep_zero_mask(a
, adata
, &constants
);
1690 bdata
= prep_zero_mask(b
, bdata
, &constants
);
1692 mask
= create_zero_mask(adata
| bdata
);
1694 hash
+= a
& zero_bytemask(mask
);
1695 len
+= find_zero(mask
);
1696 res
->hash_len
= hashlen_create(fold_hash(hash
), len
);
1703 unsigned int full_name_hash(const unsigned char *name
, unsigned int len
)
1705 unsigned long hash
= init_name_hash();
1707 hash
= partial_name_hash(*name
++, hash
);
1708 return end_name_hash(hash
);
1710 EXPORT_SYMBOL(full_name_hash
);
1713 * We know there's a real path component here of at least
1716 static inline long hash_name(const char *name
, struct qstr
*res
)
1718 unsigned long hash
= init_name_hash();
1719 unsigned long len
= 0, c
;
1722 c
= (unsigned char)*name
;
1725 hash
= partial_name_hash(c
, hash
);
1726 c
= (unsigned char)name
[len
];
1727 } while (c
&& c
!= '/');
1728 res
->hash_len
= hashlen_create(end_name_hash(hash
), len
);
1736 * This is the basic name resolution function, turning a pathname into
1737 * the final dentry. We expect 'base' to be positive and a directory.
1739 * Returns 0 and nd will have valid dentry and mnt on success.
1740 * Returns error and drops reference to input namei data on failure.
1742 static int link_path_walk(const char *name
, struct nameidata
*nd
)
1752 /* At this point we know we have a real path component. */
1758 err
= may_lookup(nd
);
1762 len
= hash_name(name
, &this);
1765 if (name
[0] == '.') switch (len
) {
1767 if (name
[1] == '.') {
1769 nd
->flags
|= LOOKUP_JUMPED
;
1775 if (likely(type
== LAST_NORM
)) {
1776 struct dentry
*parent
= nd
->path
.dentry
;
1777 nd
->flags
&= ~LOOKUP_JUMPED
;
1778 if (unlikely(parent
->d_flags
& DCACHE_OP_HASH
)) {
1779 err
= parent
->d_op
->d_hash(parent
, &this);
1786 nd
->last_type
= type
;
1791 * If it wasn't NUL, we know it was '/'. Skip that
1792 * slash, and continue until no more slashes.
1796 } while (unlikely(name
[len
] == '/'));
1802 err
= walk_component(nd
, &next
, LOOKUP_FOLLOW
);
1807 err
= nested_symlink(&next
, nd
);
1811 if (!d_can_lookup(nd
->path
.dentry
)) {
1820 static int path_init(int dfd
, const char *name
, unsigned int flags
,
1821 struct nameidata
*nd
, struct file
**fp
)
1825 nd
->last_type
= LAST_ROOT
; /* if there are only slashes... */
1826 nd
->flags
= flags
| LOOKUP_JUMPED
;
1828 if (flags
& LOOKUP_ROOT
) {
1829 struct dentry
*root
= nd
->root
.dentry
;
1830 struct inode
*inode
= root
->d_inode
;
1832 if (!d_can_lookup(root
))
1834 retval
= inode_permission(inode
, MAY_EXEC
);
1838 nd
->path
= nd
->root
;
1840 if (flags
& LOOKUP_RCU
) {
1842 nd
->seq
= __read_seqcount_begin(&nd
->path
.dentry
->d_seq
);
1843 nd
->m_seq
= read_seqbegin(&mount_lock
);
1845 path_get(&nd
->path
);
1850 nd
->root
.mnt
= NULL
;
1852 nd
->m_seq
= read_seqbegin(&mount_lock
);
1854 if (flags
& LOOKUP_RCU
) {
1859 path_get(&nd
->root
);
1861 nd
->path
= nd
->root
;
1862 } else if (dfd
== AT_FDCWD
) {
1863 if (flags
& LOOKUP_RCU
) {
1864 struct fs_struct
*fs
= current
->fs
;
1870 seq
= read_seqcount_begin(&fs
->seq
);
1872 nd
->seq
= __read_seqcount_begin(&nd
->path
.dentry
->d_seq
);
1873 } while (read_seqcount_retry(&fs
->seq
, seq
));
1875 get_fs_pwd(current
->fs
, &nd
->path
);
1878 /* Caller must check execute permissions on the starting path component */
1879 struct fd f
= fdget_raw(dfd
);
1880 struct dentry
*dentry
;
1885 dentry
= f
.file
->f_path
.dentry
;
1888 if (!d_can_lookup(dentry
)) {
1894 nd
->path
= f
.file
->f_path
;
1895 if (flags
& LOOKUP_RCU
) {
1896 if (f
.flags
& FDPUT_FPUT
)
1898 nd
->seq
= __read_seqcount_begin(&nd
->path
.dentry
->d_seq
);
1901 path_get(&nd
->path
);
1906 nd
->inode
= nd
->path
.dentry
->d_inode
;
1910 static inline int lookup_last(struct nameidata
*nd
, struct path
*path
)
1912 if (nd
->last_type
== LAST_NORM
&& nd
->last
.name
[nd
->last
.len
])
1913 nd
->flags
|= LOOKUP_FOLLOW
| LOOKUP_DIRECTORY
;
1915 nd
->flags
&= ~LOOKUP_PARENT
;
1916 return walk_component(nd
, path
, nd
->flags
& LOOKUP_FOLLOW
);
1919 /* Returns 0 and nd will be valid on success; Retuns error, otherwise. */
1920 static int path_lookupat(int dfd
, const char *name
,
1921 unsigned int flags
, struct nameidata
*nd
)
1923 struct file
*base
= NULL
;
1928 * Path walking is largely split up into 2 different synchronisation
1929 * schemes, rcu-walk and ref-walk (explained in
1930 * Documentation/filesystems/path-lookup.txt). These share much of the
1931 * path walk code, but some things particularly setup, cleanup, and
1932 * following mounts are sufficiently divergent that functions are
1933 * duplicated. Typically there is a function foo(), and its RCU
1934 * analogue, foo_rcu().
1936 * -ECHILD is the error number of choice (just to avoid clashes) that
1937 * is returned if some aspect of an rcu-walk fails. Such an error must
1938 * be handled by restarting a traditional ref-walk (which will always
1939 * be able to complete).
1941 err
= path_init(dfd
, name
, flags
| LOOKUP_PARENT
, nd
, &base
);
1946 current
->total_link_count
= 0;
1947 err
= link_path_walk(name
, nd
);
1949 if (!err
&& !(flags
& LOOKUP_PARENT
)) {
1950 err
= lookup_last(nd
, &path
);
1953 struct path link
= path
;
1954 err
= may_follow_link(&link
, nd
);
1957 nd
->flags
|= LOOKUP_PARENT
;
1958 err
= follow_link(&link
, nd
, &cookie
);
1961 err
= lookup_last(nd
, &path
);
1962 put_link(nd
, &link
, cookie
);
1967 err
= complete_walk(nd
);
1969 if (!err
&& nd
->flags
& LOOKUP_DIRECTORY
) {
1970 if (!d_can_lookup(nd
->path
.dentry
)) {
1971 path_put(&nd
->path
);
1979 if (nd
->root
.mnt
&& !(nd
->flags
& LOOKUP_ROOT
)) {
1980 path_put(&nd
->root
);
1981 nd
->root
.mnt
= NULL
;
1986 static int filename_lookup(int dfd
, struct filename
*name
,
1987 unsigned int flags
, struct nameidata
*nd
)
1989 int retval
= path_lookupat(dfd
, name
->name
, flags
| LOOKUP_RCU
, nd
);
1990 if (unlikely(retval
== -ECHILD
))
1991 retval
= path_lookupat(dfd
, name
->name
, flags
, nd
);
1992 if (unlikely(retval
== -ESTALE
))
1993 retval
= path_lookupat(dfd
, name
->name
,
1994 flags
| LOOKUP_REVAL
, nd
);
1996 if (likely(!retval
))
1997 audit_inode(name
, nd
->path
.dentry
, flags
& LOOKUP_PARENT
);
2001 static int do_path_lookup(int dfd
, const char *name
,
2002 unsigned int flags
, struct nameidata
*nd
)
2004 struct filename filename
= { .name
= name
};
2006 return filename_lookup(dfd
, &filename
, flags
, nd
);
2009 /* does lookup, returns the object with parent locked */
2010 struct dentry
*kern_path_locked(const char *name
, struct path
*path
)
2012 struct nameidata nd
;
2014 int err
= do_path_lookup(AT_FDCWD
, name
, LOOKUP_PARENT
, &nd
);
2016 return ERR_PTR(err
);
2017 if (nd
.last_type
!= LAST_NORM
) {
2019 return ERR_PTR(-EINVAL
);
2021 mutex_lock_nested(&nd
.path
.dentry
->d_inode
->i_mutex
, I_MUTEX_PARENT
);
2022 d
= __lookup_hash(&nd
.last
, nd
.path
.dentry
, 0);
2024 mutex_unlock(&nd
.path
.dentry
->d_inode
->i_mutex
);
2032 int kern_path(const char *name
, unsigned int flags
, struct path
*path
)
2034 struct nameidata nd
;
2035 int res
= do_path_lookup(AT_FDCWD
, name
, flags
, &nd
);
2040 EXPORT_SYMBOL(kern_path
);
2043 * vfs_path_lookup - lookup a file path relative to a dentry-vfsmount pair
2044 * @dentry: pointer to dentry of the base directory
2045 * @mnt: pointer to vfs mount of the base directory
2046 * @name: pointer to file name
2047 * @flags: lookup flags
2048 * @path: pointer to struct path to fill
2050 int vfs_path_lookup(struct dentry
*dentry
, struct vfsmount
*mnt
,
2051 const char *name
, unsigned int flags
,
2054 struct nameidata nd
;
2056 nd
.root
.dentry
= dentry
;
2058 BUG_ON(flags
& LOOKUP_PARENT
);
2059 /* the first argument of do_path_lookup() is ignored with LOOKUP_ROOT */
2060 err
= do_path_lookup(AT_FDCWD
, name
, flags
| LOOKUP_ROOT
, &nd
);
2065 EXPORT_SYMBOL(vfs_path_lookup
);
2068 * Restricted form of lookup. Doesn't follow links, single-component only,
2069 * needs parent already locked. Doesn't follow mounts.
2072 static struct dentry
*lookup_hash(struct nameidata
*nd
)
2074 return __lookup_hash(&nd
->last
, nd
->path
.dentry
, nd
->flags
);
2078 * lookup_one_len - filesystem helper to lookup single pathname component
2079 * @name: pathname component to lookup
2080 * @base: base directory to lookup from
2081 * @len: maximum length @len should be interpreted to
2083 * Note that this routine is purely a helper for filesystem usage and should
2084 * not be called by generic code. Also note that by using this function the
2085 * nameidata argument is passed to the filesystem methods and a filesystem
2086 * using this helper needs to be prepared for that.
2088 struct dentry
*lookup_one_len(const char *name
, struct dentry
*base
, int len
)
2094 WARN_ON_ONCE(!mutex_is_locked(&base
->d_inode
->i_mutex
));
2098 this.hash
= full_name_hash(name
, len
);
2100 return ERR_PTR(-EACCES
);
2102 if (unlikely(name
[0] == '.')) {
2103 if (len
< 2 || (len
== 2 && name
[1] == '.'))
2104 return ERR_PTR(-EACCES
);
2108 c
= *(const unsigned char *)name
++;
2109 if (c
== '/' || c
== '\0')
2110 return ERR_PTR(-EACCES
);
2113 * See if the low-level filesystem might want
2114 * to use its own hash..
2116 if (base
->d_flags
& DCACHE_OP_HASH
) {
2117 int err
= base
->d_op
->d_hash(base
, &this);
2119 return ERR_PTR(err
);
2122 err
= inode_permission(base
->d_inode
, MAY_EXEC
);
2124 return ERR_PTR(err
);
2126 return __lookup_hash(&this, base
, 0);
2128 EXPORT_SYMBOL(lookup_one_len
);
2130 int user_path_at_empty(int dfd
, const char __user
*name
, unsigned flags
,
2131 struct path
*path
, int *empty
)
2133 struct nameidata nd
;
2134 struct filename
*tmp
= getname_flags(name
, flags
, empty
);
2135 int err
= PTR_ERR(tmp
);
2138 BUG_ON(flags
& LOOKUP_PARENT
);
2140 err
= filename_lookup(dfd
, tmp
, flags
, &nd
);
2148 int user_path_at(int dfd
, const char __user
*name
, unsigned flags
,
2151 return user_path_at_empty(dfd
, name
, flags
, path
, NULL
);
2153 EXPORT_SYMBOL(user_path_at
);
2156 * NB: most callers don't do anything directly with the reference to the
2157 * to struct filename, but the nd->last pointer points into the name string
2158 * allocated by getname. So we must hold the reference to it until all
2159 * path-walking is complete.
2161 static struct filename
*
2162 user_path_parent(int dfd
, const char __user
*path
, struct nameidata
*nd
,
2165 struct filename
*s
= getname(path
);
2168 /* only LOOKUP_REVAL is allowed in extra flags */
2169 flags
&= LOOKUP_REVAL
;
2174 error
= filename_lookup(dfd
, s
, flags
| LOOKUP_PARENT
, nd
);
2177 return ERR_PTR(error
);
2184 * mountpoint_last - look up last component for umount
2185 * @nd: pathwalk nameidata - currently pointing at parent directory of "last"
2186 * @path: pointer to container for result
2188 * This is a special lookup_last function just for umount. In this case, we
2189 * need to resolve the path without doing any revalidation.
2191 * The nameidata should be the result of doing a LOOKUP_PARENT pathwalk. Since
2192 * mountpoints are always pinned in the dcache, their ancestors are too. Thus,
2193 * in almost all cases, this lookup will be served out of the dcache. The only
2194 * cases where it won't are if nd->last refers to a symlink or the path is
2195 * bogus and it doesn't exist.
2198 * -error: if there was an error during lookup. This includes -ENOENT if the
2199 * lookup found a negative dentry. The nd->path reference will also be
2202 * 0: if we successfully resolved nd->path and found it to not to be a
2203 * symlink that needs to be followed. "path" will also be populated.
2204 * The nd->path reference will also be put.
2206 * 1: if we successfully resolved nd->last and found it to be a symlink
2207 * that needs to be followed. "path" will be populated with the path
2208 * to the link, and nd->path will *not* be put.
2211 mountpoint_last(struct nameidata
*nd
, struct path
*path
)
2214 struct dentry
*dentry
;
2215 struct dentry
*dir
= nd
->path
.dentry
;
2217 /* If we're in rcuwalk, drop out of it to handle last component */
2218 if (nd
->flags
& LOOKUP_RCU
) {
2219 if (unlazy_walk(nd
, NULL
)) {
2225 nd
->flags
&= ~LOOKUP_PARENT
;
2227 if (unlikely(nd
->last_type
!= LAST_NORM
)) {
2228 error
= handle_dots(nd
, nd
->last_type
);
2231 dentry
= dget(nd
->path
.dentry
);
2235 mutex_lock(&dir
->d_inode
->i_mutex
);
2236 dentry
= d_lookup(dir
, &nd
->last
);
2239 * No cached dentry. Mounted dentries are pinned in the cache,
2240 * so that means that this dentry is probably a symlink or the
2241 * path doesn't actually point to a mounted dentry.
2243 dentry
= d_alloc(dir
, &nd
->last
);
2246 mutex_unlock(&dir
->d_inode
->i_mutex
);
2249 dentry
= lookup_real(dir
->d_inode
, dentry
, nd
->flags
);
2250 error
= PTR_ERR(dentry
);
2251 if (IS_ERR(dentry
)) {
2252 mutex_unlock(&dir
->d_inode
->i_mutex
);
2256 mutex_unlock(&dir
->d_inode
->i_mutex
);
2259 if (!dentry
->d_inode
|| d_is_negative(dentry
)) {
2264 path
->dentry
= dentry
;
2265 path
->mnt
= nd
->path
.mnt
;
2266 if (should_follow_link(dentry
, nd
->flags
& LOOKUP_FOLLOW
))
2277 * path_mountpoint - look up a path to be umounted
2278 * @dfd: directory file descriptor to start walk from
2279 * @name: full pathname to walk
2280 * @path: pointer to container for result
2281 * @flags: lookup flags
2283 * Look up the given name, but don't attempt to revalidate the last component.
2284 * Returns 0 and "path" will be valid on success; Returns error otherwise.
2287 path_mountpoint(int dfd
, const char *name
, struct path
*path
, unsigned int flags
)
2289 struct file
*base
= NULL
;
2290 struct nameidata nd
;
2293 err
= path_init(dfd
, name
, flags
| LOOKUP_PARENT
, &nd
, &base
);
2297 current
->total_link_count
= 0;
2298 err
= link_path_walk(name
, &nd
);
2302 err
= mountpoint_last(&nd
, path
);
2305 struct path link
= *path
;
2306 err
= may_follow_link(&link
, &nd
);
2309 nd
.flags
|= LOOKUP_PARENT
;
2310 err
= follow_link(&link
, &nd
, &cookie
);
2313 err
= mountpoint_last(&nd
, path
);
2314 put_link(&nd
, &link
, cookie
);
2320 if (nd
.root
.mnt
&& !(nd
.flags
& LOOKUP_ROOT
))
2327 filename_mountpoint(int dfd
, struct filename
*s
, struct path
*path
,
2330 int error
= path_mountpoint(dfd
, s
->name
, path
, flags
| LOOKUP_RCU
);
2331 if (unlikely(error
== -ECHILD
))
2332 error
= path_mountpoint(dfd
, s
->name
, path
, flags
);
2333 if (unlikely(error
== -ESTALE
))
2334 error
= path_mountpoint(dfd
, s
->name
, path
, flags
| LOOKUP_REVAL
);
2336 audit_inode(s
, path
->dentry
, 0);
2341 * user_path_mountpoint_at - lookup a path from userland in order to umount it
2342 * @dfd: directory file descriptor
2343 * @name: pathname from userland
2344 * @flags: lookup flags
2345 * @path: pointer to container to hold result
2347 * A umount is a special case for path walking. We're not actually interested
2348 * in the inode in this situation, and ESTALE errors can be a problem. We
2349 * simply want track down the dentry and vfsmount attached at the mountpoint
2350 * and avoid revalidating the last component.
2352 * Returns 0 and populates "path" on success.
2355 user_path_mountpoint_at(int dfd
, const char __user
*name
, unsigned int flags
,
2358 struct filename
*s
= getname(name
);
2362 error
= filename_mountpoint(dfd
, s
, path
, flags
);
2368 kern_path_mountpoint(int dfd
, const char *name
, struct path
*path
,
2371 struct filename s
= {.name
= name
};
2372 return filename_mountpoint(dfd
, &s
, path
, flags
);
2374 EXPORT_SYMBOL(kern_path_mountpoint
);
2377 * It's inline, so penalty for filesystems that don't use sticky bit is
2380 static inline int check_sticky(struct inode
*dir
, struct inode
*inode
)
2382 kuid_t fsuid
= current_fsuid();
2384 if (!(dir
->i_mode
& S_ISVTX
))
2386 if (uid_eq(inode
->i_uid
, fsuid
))
2388 if (uid_eq(dir
->i_uid
, fsuid
))
2390 return !capable_wrt_inode_uidgid(inode
, CAP_FOWNER
);
2394 * Check whether we can remove a link victim from directory dir, check
2395 * whether the type of victim is right.
2396 * 1. We can't do it if dir is read-only (done in permission())
2397 * 2. We should have write and exec permissions on dir
2398 * 3. We can't remove anything from append-only dir
2399 * 4. We can't do anything with immutable dir (done in permission())
2400 * 5. If the sticky bit on dir is set we should either
2401 * a. be owner of dir, or
2402 * b. be owner of victim, or
2403 * c. have CAP_FOWNER capability
2404 * 6. If the victim is append-only or immutable we can't do antyhing with
2405 * links pointing to it.
2406 * 7. If we were asked to remove a directory and victim isn't one - ENOTDIR.
2407 * 8. If we were asked to remove a non-directory and victim isn't one - EISDIR.
2408 * 9. We can't remove a root or mountpoint.
2409 * 10. We don't allow removal of NFS sillyrenamed files; it's handled by
2410 * nfs_async_unlink().
2412 static int may_delete(struct inode
*dir
, struct dentry
*victim
, bool isdir
)
2414 struct inode
*inode
= victim
->d_inode
;
2417 if (d_is_negative(victim
))
2421 BUG_ON(victim
->d_parent
->d_inode
!= dir
);
2422 audit_inode_child(dir
, victim
, AUDIT_TYPE_CHILD_DELETE
);
2424 error
= inode_permission(dir
, MAY_WRITE
| MAY_EXEC
);
2430 if (check_sticky(dir
, inode
) || IS_APPEND(inode
) ||
2431 IS_IMMUTABLE(inode
) || IS_SWAPFILE(inode
))
2434 if (!d_is_dir(victim
))
2436 if (IS_ROOT(victim
))
2438 } else if (d_is_dir(victim
))
2440 if (IS_DEADDIR(dir
))
2442 if (victim
->d_flags
& DCACHE_NFSFS_RENAMED
)
2447 /* Check whether we can create an object with dentry child in directory
2449 * 1. We can't do it if child already exists (open has special treatment for
2450 * this case, but since we are inlined it's OK)
2451 * 2. We can't do it if dir is read-only (done in permission())
2452 * 3. We should have write and exec permissions on dir
2453 * 4. We can't do it if dir is immutable (done in permission())
2455 static inline int may_create(struct inode
*dir
, struct dentry
*child
)
2457 audit_inode_child(dir
, child
, AUDIT_TYPE_CHILD_CREATE
);
2460 if (IS_DEADDIR(dir
))
2462 return inode_permission(dir
, MAY_WRITE
| MAY_EXEC
);
2466 * p1 and p2 should be directories on the same fs.
2468 struct dentry
*lock_rename(struct dentry
*p1
, struct dentry
*p2
)
2473 mutex_lock_nested(&p1
->d_inode
->i_mutex
, I_MUTEX_PARENT
);
2477 mutex_lock(&p1
->d_inode
->i_sb
->s_vfs_rename_mutex
);
2479 p
= d_ancestor(p2
, p1
);
2481 mutex_lock_nested(&p2
->d_inode
->i_mutex
, I_MUTEX_PARENT
);
2482 mutex_lock_nested(&p1
->d_inode
->i_mutex
, I_MUTEX_CHILD
);
2486 p
= d_ancestor(p1
, p2
);
2488 mutex_lock_nested(&p1
->d_inode
->i_mutex
, I_MUTEX_PARENT
);
2489 mutex_lock_nested(&p2
->d_inode
->i_mutex
, I_MUTEX_CHILD
);
2493 mutex_lock_nested(&p1
->d_inode
->i_mutex
, I_MUTEX_PARENT
);
2494 mutex_lock_nested(&p2
->d_inode
->i_mutex
, I_MUTEX_CHILD
);
2497 EXPORT_SYMBOL(lock_rename
);
2499 void unlock_rename(struct dentry
*p1
, struct dentry
*p2
)
2501 mutex_unlock(&p1
->d_inode
->i_mutex
);
2503 mutex_unlock(&p2
->d_inode
->i_mutex
);
2504 mutex_unlock(&p1
->d_inode
->i_sb
->s_vfs_rename_mutex
);
2507 EXPORT_SYMBOL(unlock_rename
);
2509 int vfs_create(struct inode
*dir
, struct dentry
*dentry
, umode_t mode
,
2512 int error
= may_create(dir
, dentry
);
2516 if (!dir
->i_op
->create
)
2517 return -EACCES
; /* shouldn't it be ENOSYS? */
2520 error
= security_inode_create(dir
, dentry
, mode
);
2523 error
= dir
->i_op
->create(dir
, dentry
, mode
, want_excl
);
2525 fsnotify_create(dir
, dentry
);
2528 EXPORT_SYMBOL(vfs_create
);
2530 static int may_open(struct path
*path
, int acc_mode
, int flag
)
2532 struct dentry
*dentry
= path
->dentry
;
2533 struct inode
*inode
= dentry
->d_inode
;
2543 switch (inode
->i_mode
& S_IFMT
) {
2547 if (acc_mode
& MAY_WRITE
)
2552 if (path
->mnt
->mnt_flags
& MNT_NODEV
)
2561 error
= inode_permission(inode
, acc_mode
);
2566 * An append-only file must be opened in append mode for writing.
2568 if (IS_APPEND(inode
)) {
2569 if ((flag
& O_ACCMODE
) != O_RDONLY
&& !(flag
& O_APPEND
))
2575 /* O_NOATIME can only be set by the owner or superuser */
2576 if (flag
& O_NOATIME
&& !inode_owner_or_capable(inode
))
2582 static int handle_truncate(struct file
*filp
)
2584 struct path
*path
= &filp
->f_path
;
2585 struct inode
*inode
= path
->dentry
->d_inode
;
2586 int error
= get_write_access(inode
);
2590 * Refuse to truncate files with mandatory locks held on them.
2592 error
= locks_verify_locked(filp
);
2594 error
= security_path_truncate(path
);
2596 error
= do_truncate(path
->dentry
, 0,
2597 ATTR_MTIME
|ATTR_CTIME
|ATTR_OPEN
,
2600 put_write_access(inode
);
2604 static inline int open_to_namei_flags(int flag
)
2606 if ((flag
& O_ACCMODE
) == 3)
2611 static int may_o_create(struct path
*dir
, struct dentry
*dentry
, umode_t mode
)
2613 int error
= security_path_mknod(dir
, dentry
, mode
, 0);
2617 error
= inode_permission(dir
->dentry
->d_inode
, MAY_WRITE
| MAY_EXEC
);
2621 return security_inode_create(dir
->dentry
->d_inode
, dentry
, mode
);
2625 * Attempt to atomically look up, create and open a file from a negative
2628 * Returns 0 if successful. The file will have been created and attached to
2629 * @file by the filesystem calling finish_open().
2631 * Returns 1 if the file was looked up only or didn't need creating. The
2632 * caller will need to perform the open themselves. @path will have been
2633 * updated to point to the new dentry. This may be negative.
2635 * Returns an error code otherwise.
2637 static int atomic_open(struct nameidata
*nd
, struct dentry
*dentry
,
2638 struct path
*path
, struct file
*file
,
2639 const struct open_flags
*op
,
2640 bool got_write
, bool need_lookup
,
2643 struct inode
*dir
= nd
->path
.dentry
->d_inode
;
2644 unsigned open_flag
= open_to_namei_flags(op
->open_flag
);
2648 int create_error
= 0;
2649 struct dentry
*const DENTRY_NOT_SET
= (void *) -1UL;
2652 BUG_ON(dentry
->d_inode
);
2654 /* Don't create child dentry for a dead directory. */
2655 if (unlikely(IS_DEADDIR(dir
))) {
2661 if ((open_flag
& O_CREAT
) && !IS_POSIXACL(dir
))
2662 mode
&= ~current_umask();
2664 excl
= (open_flag
& (O_EXCL
| O_CREAT
)) == (O_EXCL
| O_CREAT
);
2666 open_flag
&= ~O_TRUNC
;
2669 * Checking write permission is tricky, bacuse we don't know if we are
2670 * going to actually need it: O_CREAT opens should work as long as the
2671 * file exists. But checking existence breaks atomicity. The trick is
2672 * to check access and if not granted clear O_CREAT from the flags.
2674 * Another problem is returing the "right" error value (e.g. for an
2675 * O_EXCL open we want to return EEXIST not EROFS).
2677 if (((open_flag
& (O_CREAT
| O_TRUNC
)) ||
2678 (open_flag
& O_ACCMODE
) != O_RDONLY
) && unlikely(!got_write
)) {
2679 if (!(open_flag
& O_CREAT
)) {
2681 * No O_CREATE -> atomicity not a requirement -> fall
2682 * back to lookup + open
2685 } else if (open_flag
& (O_EXCL
| O_TRUNC
)) {
2686 /* Fall back and fail with the right error */
2687 create_error
= -EROFS
;
2690 /* No side effects, safe to clear O_CREAT */
2691 create_error
= -EROFS
;
2692 open_flag
&= ~O_CREAT
;
2696 if (open_flag
& O_CREAT
) {
2697 error
= may_o_create(&nd
->path
, dentry
, mode
);
2699 create_error
= error
;
2700 if (open_flag
& O_EXCL
)
2702 open_flag
&= ~O_CREAT
;
2706 if (nd
->flags
& LOOKUP_DIRECTORY
)
2707 open_flag
|= O_DIRECTORY
;
2709 file
->f_path
.dentry
= DENTRY_NOT_SET
;
2710 file
->f_path
.mnt
= nd
->path
.mnt
;
2711 error
= dir
->i_op
->atomic_open(dir
, dentry
, file
, open_flag
, mode
,
2714 if (create_error
&& error
== -ENOENT
)
2715 error
= create_error
;
2719 if (error
) { /* returned 1, that is */
2720 if (WARN_ON(file
->f_path
.dentry
== DENTRY_NOT_SET
)) {
2724 if (file
->f_path
.dentry
) {
2726 dentry
= file
->f_path
.dentry
;
2728 if (*opened
& FILE_CREATED
)
2729 fsnotify_create(dir
, dentry
);
2730 if (!dentry
->d_inode
) {
2731 WARN_ON(*opened
& FILE_CREATED
);
2733 error
= create_error
;
2737 if (excl
&& !(*opened
& FILE_CREATED
)) {
2746 * We didn't have the inode before the open, so check open permission
2749 acc_mode
= op
->acc_mode
;
2750 if (*opened
& FILE_CREATED
) {
2751 WARN_ON(!(open_flag
& O_CREAT
));
2752 fsnotify_create(dir
, dentry
);
2753 acc_mode
= MAY_OPEN
;
2755 error
= may_open(&file
->f_path
, acc_mode
, open_flag
);
2765 dentry
= lookup_real(dir
, dentry
, nd
->flags
);
2767 return PTR_ERR(dentry
);
2770 int open_flag
= op
->open_flag
;
2772 error
= create_error
;
2773 if ((open_flag
& O_EXCL
)) {
2774 if (!dentry
->d_inode
)
2776 } else if (!dentry
->d_inode
) {
2778 } else if ((open_flag
& O_TRUNC
) &&
2779 S_ISREG(dentry
->d_inode
->i_mode
)) {
2782 /* will fail later, go on to get the right error */
2786 path
->dentry
= dentry
;
2787 path
->mnt
= nd
->path
.mnt
;
2792 * Look up and maybe create and open the last component.
2794 * Must be called with i_mutex held on parent.
2796 * Returns 0 if the file was successfully atomically created (if necessary) and
2797 * opened. In this case the file will be returned attached to @file.
2799 * Returns 1 if the file was not completely opened at this time, though lookups
2800 * and creations will have been performed and the dentry returned in @path will
2801 * be positive upon return if O_CREAT was specified. If O_CREAT wasn't
2802 * specified then a negative dentry may be returned.
2804 * An error code is returned otherwise.
2806 * FILE_CREATE will be set in @*opened if the dentry was created and will be
2807 * cleared otherwise prior to returning.
2809 static int lookup_open(struct nameidata
*nd
, struct path
*path
,
2811 const struct open_flags
*op
,
2812 bool got_write
, int *opened
)
2814 struct dentry
*dir
= nd
->path
.dentry
;
2815 struct inode
*dir_inode
= dir
->d_inode
;
2816 struct dentry
*dentry
;
2820 *opened
&= ~FILE_CREATED
;
2821 dentry
= lookup_dcache(&nd
->last
, dir
, nd
->flags
, &need_lookup
);
2823 return PTR_ERR(dentry
);
2825 /* Cached positive dentry: will open in f_op->open */
2826 if (!need_lookup
&& dentry
->d_inode
)
2829 if ((nd
->flags
& LOOKUP_OPEN
) && dir_inode
->i_op
->atomic_open
) {
2830 return atomic_open(nd
, dentry
, path
, file
, op
, got_write
,
2831 need_lookup
, opened
);
2835 BUG_ON(dentry
->d_inode
);
2837 dentry
= lookup_real(dir_inode
, dentry
, nd
->flags
);
2839 return PTR_ERR(dentry
);
2842 /* Negative dentry, just create the file */
2843 if (!dentry
->d_inode
&& (op
->open_flag
& O_CREAT
)) {
2844 umode_t mode
= op
->mode
;
2845 if (!IS_POSIXACL(dir
->d_inode
))
2846 mode
&= ~current_umask();
2848 * This write is needed to ensure that a
2849 * rw->ro transition does not occur between
2850 * the time when the file is created and when
2851 * a permanent write count is taken through
2852 * the 'struct file' in finish_open().
2858 *opened
|= FILE_CREATED
;
2859 error
= security_path_mknod(&nd
->path
, dentry
, mode
, 0);
2862 error
= vfs_create(dir
->d_inode
, dentry
, mode
,
2863 nd
->flags
& LOOKUP_EXCL
);
2868 path
->dentry
= dentry
;
2869 path
->mnt
= nd
->path
.mnt
;
2878 * Handle the last step of open()
2880 static int do_last(struct nameidata
*nd
, struct path
*path
,
2881 struct file
*file
, const struct open_flags
*op
,
2882 int *opened
, struct filename
*name
)
2884 struct dentry
*dir
= nd
->path
.dentry
;
2885 int open_flag
= op
->open_flag
;
2886 bool will_truncate
= (open_flag
& O_TRUNC
) != 0;
2887 bool got_write
= false;
2888 int acc_mode
= op
->acc_mode
;
2889 struct inode
*inode
;
2890 bool symlink_ok
= false;
2891 struct path save_parent
= { .dentry
= NULL
, .mnt
= NULL
};
2892 bool retried
= false;
2895 nd
->flags
&= ~LOOKUP_PARENT
;
2896 nd
->flags
|= op
->intent
;
2898 if (nd
->last_type
!= LAST_NORM
) {
2899 error
= handle_dots(nd
, nd
->last_type
);
2905 if (!(open_flag
& O_CREAT
)) {
2906 if (nd
->last
.name
[nd
->last
.len
])
2907 nd
->flags
|= LOOKUP_FOLLOW
| LOOKUP_DIRECTORY
;
2908 if (open_flag
& O_PATH
&& !(nd
->flags
& LOOKUP_FOLLOW
))
2910 /* we _can_ be in RCU mode here */
2911 error
= lookup_fast(nd
, path
, &inode
);
2918 BUG_ON(nd
->inode
!= dir
->d_inode
);
2920 /* create side of things */
2922 * This will *only* deal with leaving RCU mode - LOOKUP_JUMPED
2923 * has been cleared when we got to the last component we are
2926 error
= complete_walk(nd
);
2930 audit_inode(name
, dir
, LOOKUP_PARENT
);
2932 /* trailing slashes? */
2933 if (nd
->last
.name
[nd
->last
.len
])
2938 if (op
->open_flag
& (O_CREAT
| O_TRUNC
| O_WRONLY
| O_RDWR
)) {
2939 error
= mnt_want_write(nd
->path
.mnt
);
2943 * do _not_ fail yet - we might not need that or fail with
2944 * a different error; let lookup_open() decide; we'll be
2945 * dropping this one anyway.
2948 mutex_lock(&dir
->d_inode
->i_mutex
);
2949 error
= lookup_open(nd
, path
, file
, op
, got_write
, opened
);
2950 mutex_unlock(&dir
->d_inode
->i_mutex
);
2956 if ((*opened
& FILE_CREATED
) ||
2957 !S_ISREG(file_inode(file
)->i_mode
))
2958 will_truncate
= false;
2960 audit_inode(name
, file
->f_path
.dentry
, 0);
2964 if (*opened
& FILE_CREATED
) {
2965 /* Don't check for write permission, don't truncate */
2966 open_flag
&= ~O_TRUNC
;
2967 will_truncate
= false;
2968 acc_mode
= MAY_OPEN
;
2969 path_to_nameidata(path
, nd
);
2970 goto finish_open_created
;
2974 * create/update audit record if it already exists.
2976 if (d_is_positive(path
->dentry
))
2977 audit_inode(name
, path
->dentry
, 0);
2980 * If atomic_open() acquired write access it is dropped now due to
2981 * possible mount and symlink following (this might be optimized away if
2985 mnt_drop_write(nd
->path
.mnt
);
2990 if ((open_flag
& (O_EXCL
| O_CREAT
)) == (O_EXCL
| O_CREAT
))
2993 error
= follow_managed(path
, nd
->flags
);
2998 nd
->flags
|= LOOKUP_JUMPED
;
3000 BUG_ON(nd
->flags
& LOOKUP_RCU
);
3001 inode
= path
->dentry
->d_inode
;
3003 /* we _can_ be in RCU mode here */
3005 if (!inode
|| d_is_negative(path
->dentry
)) {
3006 path_to_nameidata(path
, nd
);
3010 if (should_follow_link(path
->dentry
, !symlink_ok
)) {
3011 if (nd
->flags
& LOOKUP_RCU
) {
3012 if (unlikely(unlazy_walk(nd
, path
->dentry
))) {
3017 BUG_ON(inode
!= path
->dentry
->d_inode
);
3021 if ((nd
->flags
& LOOKUP_RCU
) || nd
->path
.mnt
!= path
->mnt
) {
3022 path_to_nameidata(path
, nd
);
3024 save_parent
.dentry
= nd
->path
.dentry
;
3025 save_parent
.mnt
= mntget(path
->mnt
);
3026 nd
->path
.dentry
= path
->dentry
;
3030 /* Why this, you ask? _Now_ we might have grown LOOKUP_JUMPED... */
3032 error
= complete_walk(nd
);
3034 path_put(&save_parent
);
3037 audit_inode(name
, nd
->path
.dentry
, 0);
3039 if ((open_flag
& O_CREAT
) && d_is_dir(nd
->path
.dentry
))
3042 if ((nd
->flags
& LOOKUP_DIRECTORY
) && !d_can_lookup(nd
->path
.dentry
))
3044 if (!S_ISREG(nd
->inode
->i_mode
))
3045 will_truncate
= false;
3047 if (will_truncate
) {
3048 error
= mnt_want_write(nd
->path
.mnt
);
3053 finish_open_created
:
3054 error
= may_open(&nd
->path
, acc_mode
, open_flag
);
3057 file
->f_path
.mnt
= nd
->path
.mnt
;
3058 error
= finish_open(file
, nd
->path
.dentry
, NULL
, opened
);
3060 if (error
== -EOPENSTALE
)
3065 error
= open_check_o_direct(file
);
3068 error
= ima_file_check(file
, op
->acc_mode
);
3072 if (will_truncate
) {
3073 error
= handle_truncate(file
);
3079 mnt_drop_write(nd
->path
.mnt
);
3080 path_put(&save_parent
);
3085 path_put_conditional(path
, nd
);
3092 /* If no saved parent or already retried then can't retry */
3093 if (!save_parent
.dentry
|| retried
)
3096 BUG_ON(save_parent
.dentry
!= dir
);
3097 path_put(&nd
->path
);
3098 nd
->path
= save_parent
;
3099 nd
->inode
= dir
->d_inode
;
3100 save_parent
.mnt
= NULL
;
3101 save_parent
.dentry
= NULL
;
3103 mnt_drop_write(nd
->path
.mnt
);
3110 static int do_tmpfile(int dfd
, struct filename
*pathname
,
3111 struct nameidata
*nd
, int flags
,
3112 const struct open_flags
*op
,
3113 struct file
*file
, int *opened
)
3115 static const struct qstr name
= QSTR_INIT("/", 1);
3116 struct dentry
*dentry
, *child
;
3118 int error
= path_lookupat(dfd
, pathname
->name
,
3119 flags
| LOOKUP_DIRECTORY
, nd
);
3120 if (unlikely(error
))
3122 error
= mnt_want_write(nd
->path
.mnt
);
3123 if (unlikely(error
))
3125 /* we want directory to be writable */
3126 error
= inode_permission(nd
->inode
, MAY_WRITE
| MAY_EXEC
);
3129 dentry
= nd
->path
.dentry
;
3130 dir
= dentry
->d_inode
;
3131 if (!dir
->i_op
->tmpfile
) {
3132 error
= -EOPNOTSUPP
;
3135 child
= d_alloc(dentry
, &name
);
3136 if (unlikely(!child
)) {
3140 nd
->flags
&= ~LOOKUP_DIRECTORY
;
3141 nd
->flags
|= op
->intent
;
3142 dput(nd
->path
.dentry
);
3143 nd
->path
.dentry
= child
;
3144 error
= dir
->i_op
->tmpfile(dir
, nd
->path
.dentry
, op
->mode
);
3147 audit_inode(pathname
, nd
->path
.dentry
, 0);
3148 error
= may_open(&nd
->path
, op
->acc_mode
, op
->open_flag
);
3151 file
->f_path
.mnt
= nd
->path
.mnt
;
3152 error
= finish_open(file
, nd
->path
.dentry
, NULL
, opened
);
3155 error
= open_check_o_direct(file
);
3158 } else if (!(op
->open_flag
& O_EXCL
)) {
3159 struct inode
*inode
= file_inode(file
);
3160 spin_lock(&inode
->i_lock
);
3161 inode
->i_state
|= I_LINKABLE
;
3162 spin_unlock(&inode
->i_lock
);
3165 mnt_drop_write(nd
->path
.mnt
);
3167 path_put(&nd
->path
);
3171 static struct file
*path_openat(int dfd
, struct filename
*pathname
,
3172 struct nameidata
*nd
, const struct open_flags
*op
, int flags
)
3174 struct file
*base
= NULL
;
3180 file
= get_empty_filp();
3184 file
->f_flags
= op
->open_flag
;
3186 if (unlikely(file
->f_flags
& __O_TMPFILE
)) {
3187 error
= do_tmpfile(dfd
, pathname
, nd
, flags
, op
, file
, &opened
);
3191 error
= path_init(dfd
, pathname
->name
, flags
| LOOKUP_PARENT
, nd
, &base
);
3192 if (unlikely(error
))
3195 current
->total_link_count
= 0;
3196 error
= link_path_walk(pathname
->name
, nd
);
3197 if (unlikely(error
))
3200 error
= do_last(nd
, &path
, file
, op
, &opened
, pathname
);
3201 while (unlikely(error
> 0)) { /* trailing symlink */
3202 struct path link
= path
;
3204 if (!(nd
->flags
& LOOKUP_FOLLOW
)) {
3205 path_put_conditional(&path
, nd
);
3206 path_put(&nd
->path
);
3210 error
= may_follow_link(&link
, nd
);
3211 if (unlikely(error
))
3213 nd
->flags
|= LOOKUP_PARENT
;
3214 nd
->flags
&= ~(LOOKUP_OPEN
|LOOKUP_CREATE
|LOOKUP_EXCL
);
3215 error
= follow_link(&link
, nd
, &cookie
);
3216 if (unlikely(error
))
3218 error
= do_last(nd
, &path
, file
, op
, &opened
, pathname
);
3219 put_link(nd
, &link
, cookie
);
3222 if (nd
->root
.mnt
&& !(nd
->flags
& LOOKUP_ROOT
))
3223 path_put(&nd
->root
);
3226 if (!(opened
& FILE_OPENED
)) {
3230 if (unlikely(error
)) {
3231 if (error
== -EOPENSTALE
) {
3232 if (flags
& LOOKUP_RCU
)
3237 file
= ERR_PTR(error
);
3242 struct file
*do_filp_open(int dfd
, struct filename
*pathname
,
3243 const struct open_flags
*op
)
3245 struct nameidata nd
;
3246 int flags
= op
->lookup_flags
;
3249 filp
= path_openat(dfd
, pathname
, &nd
, op
, flags
| LOOKUP_RCU
);
3250 if (unlikely(filp
== ERR_PTR(-ECHILD
)))
3251 filp
= path_openat(dfd
, pathname
, &nd
, op
, flags
);
3252 if (unlikely(filp
== ERR_PTR(-ESTALE
)))
3253 filp
= path_openat(dfd
, pathname
, &nd
, op
, flags
| LOOKUP_REVAL
);
3257 struct file
*do_file_open_root(struct dentry
*dentry
, struct vfsmount
*mnt
,
3258 const char *name
, const struct open_flags
*op
)
3260 struct nameidata nd
;
3262 struct filename filename
= { .name
= name
};
3263 int flags
= op
->lookup_flags
| LOOKUP_ROOT
;
3266 nd
.root
.dentry
= dentry
;
3268 if (d_is_symlink(dentry
) && op
->intent
& LOOKUP_OPEN
)
3269 return ERR_PTR(-ELOOP
);
3271 file
= path_openat(-1, &filename
, &nd
, op
, flags
| LOOKUP_RCU
);
3272 if (unlikely(file
== ERR_PTR(-ECHILD
)))
3273 file
= path_openat(-1, &filename
, &nd
, op
, flags
);
3274 if (unlikely(file
== ERR_PTR(-ESTALE
)))
3275 file
= path_openat(-1, &filename
, &nd
, op
, flags
| LOOKUP_REVAL
);
3279 struct dentry
*kern_path_create(int dfd
, const char *pathname
,
3280 struct path
*path
, unsigned int lookup_flags
)
3282 struct dentry
*dentry
= ERR_PTR(-EEXIST
);
3283 struct nameidata nd
;
3286 bool is_dir
= (lookup_flags
& LOOKUP_DIRECTORY
);
3289 * Note that only LOOKUP_REVAL and LOOKUP_DIRECTORY matter here. Any
3290 * other flags passed in are ignored!
3292 lookup_flags
&= LOOKUP_REVAL
;
3294 error
= do_path_lookup(dfd
, pathname
, LOOKUP_PARENT
|lookup_flags
, &nd
);
3296 return ERR_PTR(error
);
3299 * Yucky last component or no last component at all?
3300 * (foo/., foo/.., /////)
3302 if (nd
.last_type
!= LAST_NORM
)
3304 nd
.flags
&= ~LOOKUP_PARENT
;
3305 nd
.flags
|= LOOKUP_CREATE
| LOOKUP_EXCL
;
3307 /* don't fail immediately if it's r/o, at least try to report other errors */
3308 err2
= mnt_want_write(nd
.path
.mnt
);
3310 * Do the final lookup.
3312 mutex_lock_nested(&nd
.path
.dentry
->d_inode
->i_mutex
, I_MUTEX_PARENT
);
3313 dentry
= lookup_hash(&nd
);
3318 if (d_is_positive(dentry
))
3322 * Special case - lookup gave negative, but... we had foo/bar/
3323 * From the vfs_mknod() POV we just have a negative dentry -
3324 * all is fine. Let's be bastards - you had / on the end, you've
3325 * been asking for (non-existent) directory. -ENOENT for you.
3327 if (unlikely(!is_dir
&& nd
.last
.name
[nd
.last
.len
])) {
3331 if (unlikely(err2
)) {
3339 dentry
= ERR_PTR(error
);
3341 mutex_unlock(&nd
.path
.dentry
->d_inode
->i_mutex
);
3343 mnt_drop_write(nd
.path
.mnt
);
3348 EXPORT_SYMBOL(kern_path_create
);
3350 void done_path_create(struct path
*path
, struct dentry
*dentry
)
3353 mutex_unlock(&path
->dentry
->d_inode
->i_mutex
);
3354 mnt_drop_write(path
->mnt
);
3357 EXPORT_SYMBOL(done_path_create
);
3359 struct dentry
*user_path_create(int dfd
, const char __user
*pathname
,
3360 struct path
*path
, unsigned int lookup_flags
)
3362 struct filename
*tmp
= getname(pathname
);
3365 return ERR_CAST(tmp
);
3366 res
= kern_path_create(dfd
, tmp
->name
, path
, lookup_flags
);
3370 EXPORT_SYMBOL(user_path_create
);
3372 int vfs_mknod(struct inode
*dir
, struct dentry
*dentry
, umode_t mode
, dev_t dev
)
3374 int error
= may_create(dir
, dentry
);
3379 if ((S_ISCHR(mode
) || S_ISBLK(mode
)) && !capable(CAP_MKNOD
))
3382 if (!dir
->i_op
->mknod
)
3385 error
= devcgroup_inode_mknod(mode
, dev
);
3389 error
= security_inode_mknod(dir
, dentry
, mode
, dev
);
3393 error
= dir
->i_op
->mknod(dir
, dentry
, mode
, dev
);
3395 fsnotify_create(dir
, dentry
);
3398 EXPORT_SYMBOL(vfs_mknod
);
3400 static int may_mknod(umode_t mode
)
3402 switch (mode
& S_IFMT
) {
3408 case 0: /* zero mode translates to S_IFREG */
3417 SYSCALL_DEFINE4(mknodat
, int, dfd
, const char __user
*, filename
, umode_t
, mode
,
3420 struct dentry
*dentry
;
3423 unsigned int lookup_flags
= 0;
3425 error
= may_mknod(mode
);
3429 dentry
= user_path_create(dfd
, filename
, &path
, lookup_flags
);
3431 return PTR_ERR(dentry
);
3433 if (!IS_POSIXACL(path
.dentry
->d_inode
))
3434 mode
&= ~current_umask();
3435 error
= security_path_mknod(&path
, dentry
, mode
, dev
);
3438 switch (mode
& S_IFMT
) {
3439 case 0: case S_IFREG
:
3440 error
= vfs_create(path
.dentry
->d_inode
,dentry
,mode
,true);
3442 case S_IFCHR
: case S_IFBLK
:
3443 error
= vfs_mknod(path
.dentry
->d_inode
,dentry
,mode
,
3444 new_decode_dev(dev
));
3446 case S_IFIFO
: case S_IFSOCK
:
3447 error
= vfs_mknod(path
.dentry
->d_inode
,dentry
,mode
,0);
3451 done_path_create(&path
, dentry
);
3452 if (retry_estale(error
, lookup_flags
)) {
3453 lookup_flags
|= LOOKUP_REVAL
;
3459 SYSCALL_DEFINE3(mknod
, const char __user
*, filename
, umode_t
, mode
, unsigned, dev
)
3461 return sys_mknodat(AT_FDCWD
, filename
, mode
, dev
);
3464 int vfs_mkdir(struct inode
*dir
, struct dentry
*dentry
, umode_t mode
)
3466 int error
= may_create(dir
, dentry
);
3467 unsigned max_links
= dir
->i_sb
->s_max_links
;
3472 if (!dir
->i_op
->mkdir
)
3475 mode
&= (S_IRWXUGO
|S_ISVTX
);
3476 error
= security_inode_mkdir(dir
, dentry
, mode
);
3480 if (max_links
&& dir
->i_nlink
>= max_links
)
3483 error
= dir
->i_op
->mkdir(dir
, dentry
, mode
);
3485 fsnotify_mkdir(dir
, dentry
);
3488 EXPORT_SYMBOL(vfs_mkdir
);
3490 SYSCALL_DEFINE3(mkdirat
, int, dfd
, const char __user
*, pathname
, umode_t
, mode
)
3492 struct dentry
*dentry
;
3495 unsigned int lookup_flags
= LOOKUP_DIRECTORY
;
3498 dentry
= user_path_create(dfd
, pathname
, &path
, lookup_flags
);
3500 return PTR_ERR(dentry
);
3502 if (!IS_POSIXACL(path
.dentry
->d_inode
))
3503 mode
&= ~current_umask();
3504 error
= security_path_mkdir(&path
, dentry
, mode
);
3506 error
= vfs_mkdir(path
.dentry
->d_inode
, dentry
, mode
);
3507 done_path_create(&path
, dentry
);
3508 if (retry_estale(error
, lookup_flags
)) {
3509 lookup_flags
|= LOOKUP_REVAL
;
3515 SYSCALL_DEFINE2(mkdir
, const char __user
*, pathname
, umode_t
, mode
)
3517 return sys_mkdirat(AT_FDCWD
, pathname
, mode
);
3521 * The dentry_unhash() helper will try to drop the dentry early: we
3522 * should have a usage count of 1 if we're the only user of this
3523 * dentry, and if that is true (possibly after pruning the dcache),
3524 * then we drop the dentry now.
3526 * A low-level filesystem can, if it choses, legally
3529 * if (!d_unhashed(dentry))
3532 * if it cannot handle the case of removing a directory
3533 * that is still in use by something else..
3535 void dentry_unhash(struct dentry
*dentry
)
3537 shrink_dcache_parent(dentry
);
3538 spin_lock(&dentry
->d_lock
);
3539 if (dentry
->d_lockref
.count
== 1)
3541 spin_unlock(&dentry
->d_lock
);
3543 EXPORT_SYMBOL(dentry_unhash
);
3545 int vfs_rmdir(struct inode
*dir
, struct dentry
*dentry
)
3547 int error
= may_delete(dir
, dentry
, 1);
3552 if (!dir
->i_op
->rmdir
)
3556 mutex_lock(&dentry
->d_inode
->i_mutex
);
3559 if (d_mountpoint(dentry
))
3562 error
= security_inode_rmdir(dir
, dentry
);
3566 shrink_dcache_parent(dentry
);
3567 error
= dir
->i_op
->rmdir(dir
, dentry
);
3571 dentry
->d_inode
->i_flags
|= S_DEAD
;
3575 mutex_unlock(&dentry
->d_inode
->i_mutex
);
3581 EXPORT_SYMBOL(vfs_rmdir
);
3583 static long do_rmdir(int dfd
, const char __user
*pathname
)
3586 struct filename
*name
;
3587 struct dentry
*dentry
;
3588 struct nameidata nd
;
3589 unsigned int lookup_flags
= 0;
3591 name
= user_path_parent(dfd
, pathname
, &nd
, lookup_flags
);
3593 return PTR_ERR(name
);
3595 switch(nd
.last_type
) {
3607 nd
.flags
&= ~LOOKUP_PARENT
;
3608 error
= mnt_want_write(nd
.path
.mnt
);
3612 mutex_lock_nested(&nd
.path
.dentry
->d_inode
->i_mutex
, I_MUTEX_PARENT
);
3613 dentry
= lookup_hash(&nd
);
3614 error
= PTR_ERR(dentry
);
3617 if (!dentry
->d_inode
) {
3621 error
= security_path_rmdir(&nd
.path
, dentry
);
3624 error
= vfs_rmdir(nd
.path
.dentry
->d_inode
, dentry
);
3628 mutex_unlock(&nd
.path
.dentry
->d_inode
->i_mutex
);
3629 mnt_drop_write(nd
.path
.mnt
);
3633 if (retry_estale(error
, lookup_flags
)) {
3634 lookup_flags
|= LOOKUP_REVAL
;
3640 SYSCALL_DEFINE1(rmdir
, const char __user
*, pathname
)
3642 return do_rmdir(AT_FDCWD
, pathname
);
3646 * vfs_unlink - unlink a filesystem object
3647 * @dir: parent directory
3649 * @delegated_inode: returns victim inode, if the inode is delegated.
3651 * The caller must hold dir->i_mutex.
3653 * If vfs_unlink discovers a delegation, it will return -EWOULDBLOCK and
3654 * return a reference to the inode in delegated_inode. The caller
3655 * should then break the delegation on that inode and retry. Because
3656 * breaking a delegation may take a long time, the caller should drop
3657 * dir->i_mutex before doing so.
3659 * Alternatively, a caller may pass NULL for delegated_inode. This may
3660 * be appropriate for callers that expect the underlying filesystem not
3661 * to be NFS exported.
3663 int vfs_unlink(struct inode
*dir
, struct dentry
*dentry
, struct inode
**delegated_inode
)
3665 struct inode
*target
= dentry
->d_inode
;
3666 int error
= may_delete(dir
, dentry
, 0);
3671 if (!dir
->i_op
->unlink
)
3674 mutex_lock(&target
->i_mutex
);
3675 if (d_mountpoint(dentry
))
3678 error
= security_inode_unlink(dir
, dentry
);
3680 error
= try_break_deleg(target
, delegated_inode
);
3683 error
= dir
->i_op
->unlink(dir
, dentry
);
3689 mutex_unlock(&target
->i_mutex
);
3691 /* We don't d_delete() NFS sillyrenamed files--they still exist. */
3692 if (!error
&& !(dentry
->d_flags
& DCACHE_NFSFS_RENAMED
)) {
3693 fsnotify_link_count(target
);
3699 EXPORT_SYMBOL(vfs_unlink
);
3702 * Make sure that the actual truncation of the file will occur outside its
3703 * directory's i_mutex. Truncate can take a long time if there is a lot of
3704 * writeout happening, and we don't want to prevent access to the directory
3705 * while waiting on the I/O.
3707 static long do_unlinkat(int dfd
, const char __user
*pathname
)
3710 struct filename
*name
;
3711 struct dentry
*dentry
;
3712 struct nameidata nd
;
3713 struct inode
*inode
= NULL
;
3714 struct inode
*delegated_inode
= NULL
;
3715 unsigned int lookup_flags
= 0;
3717 name
= user_path_parent(dfd
, pathname
, &nd
, lookup_flags
);
3719 return PTR_ERR(name
);
3722 if (nd
.last_type
!= LAST_NORM
)
3725 nd
.flags
&= ~LOOKUP_PARENT
;
3726 error
= mnt_want_write(nd
.path
.mnt
);
3730 mutex_lock_nested(&nd
.path
.dentry
->d_inode
->i_mutex
, I_MUTEX_PARENT
);
3731 dentry
= lookup_hash(&nd
);
3732 error
= PTR_ERR(dentry
);
3733 if (!IS_ERR(dentry
)) {
3734 /* Why not before? Because we want correct error value */
3735 if (nd
.last
.name
[nd
.last
.len
])
3737 inode
= dentry
->d_inode
;
3738 if (d_is_negative(dentry
))
3741 error
= security_path_unlink(&nd
.path
, dentry
);
3744 error
= vfs_unlink(nd
.path
.dentry
->d_inode
, dentry
, &delegated_inode
);
3748 mutex_unlock(&nd
.path
.dentry
->d_inode
->i_mutex
);
3750 iput(inode
); /* truncate the inode here */
3752 if (delegated_inode
) {
3753 error
= break_deleg_wait(&delegated_inode
);
3757 mnt_drop_write(nd
.path
.mnt
);
3761 if (retry_estale(error
, lookup_flags
)) {
3762 lookup_flags
|= LOOKUP_REVAL
;
3769 if (d_is_negative(dentry
))
3771 else if (d_is_dir(dentry
))
3778 SYSCALL_DEFINE3(unlinkat
, int, dfd
, const char __user
*, pathname
, int, flag
)
3780 if ((flag
& ~AT_REMOVEDIR
) != 0)
3783 if (flag
& AT_REMOVEDIR
)
3784 return do_rmdir(dfd
, pathname
);
3786 return do_unlinkat(dfd
, pathname
);
3789 SYSCALL_DEFINE1(unlink
, const char __user
*, pathname
)
3791 return do_unlinkat(AT_FDCWD
, pathname
);
3794 int vfs_symlink(struct inode
*dir
, struct dentry
*dentry
, const char *oldname
)
3796 int error
= may_create(dir
, dentry
);
3801 if (!dir
->i_op
->symlink
)
3804 error
= security_inode_symlink(dir
, dentry
, oldname
);
3808 error
= dir
->i_op
->symlink(dir
, dentry
, oldname
);
3810 fsnotify_create(dir
, dentry
);
3813 EXPORT_SYMBOL(vfs_symlink
);
3815 SYSCALL_DEFINE3(symlinkat
, const char __user
*, oldname
,
3816 int, newdfd
, const char __user
*, newname
)
3819 struct filename
*from
;
3820 struct dentry
*dentry
;
3822 unsigned int lookup_flags
= 0;
3824 from
= getname(oldname
);
3826 return PTR_ERR(from
);
3828 dentry
= user_path_create(newdfd
, newname
, &path
, lookup_flags
);
3829 error
= PTR_ERR(dentry
);
3833 error
= security_path_symlink(&path
, dentry
, from
->name
);
3835 error
= vfs_symlink(path
.dentry
->d_inode
, dentry
, from
->name
);
3836 done_path_create(&path
, dentry
);
3837 if (retry_estale(error
, lookup_flags
)) {
3838 lookup_flags
|= LOOKUP_REVAL
;
3846 SYSCALL_DEFINE2(symlink
, const char __user
*, oldname
, const char __user
*, newname
)
3848 return sys_symlinkat(oldname
, AT_FDCWD
, newname
);
3852 * vfs_link - create a new link
3853 * @old_dentry: object to be linked
3855 * @new_dentry: where to create the new link
3856 * @delegated_inode: returns inode needing a delegation break
3858 * The caller must hold dir->i_mutex
3860 * If vfs_link discovers a delegation on the to-be-linked file in need
3861 * of breaking, it will return -EWOULDBLOCK and return a reference to the
3862 * inode in delegated_inode. The caller should then break the delegation
3863 * and retry. Because breaking a delegation may take a long time, the
3864 * caller should drop the i_mutex before doing so.
3866 * Alternatively, a caller may pass NULL for delegated_inode. This may
3867 * be appropriate for callers that expect the underlying filesystem not
3868 * to be NFS exported.
3870 int vfs_link(struct dentry
*old_dentry
, struct inode
*dir
, struct dentry
*new_dentry
, struct inode
**delegated_inode
)
3872 struct inode
*inode
= old_dentry
->d_inode
;
3873 unsigned max_links
= dir
->i_sb
->s_max_links
;
3879 error
= may_create(dir
, new_dentry
);
3883 if (dir
->i_sb
!= inode
->i_sb
)
3887 * A link to an append-only or immutable file cannot be created.
3889 if (IS_APPEND(inode
) || IS_IMMUTABLE(inode
))
3891 if (!dir
->i_op
->link
)
3893 if (S_ISDIR(inode
->i_mode
))
3896 error
= security_inode_link(old_dentry
, dir
, new_dentry
);
3900 mutex_lock(&inode
->i_mutex
);
3901 /* Make sure we don't allow creating hardlink to an unlinked file */
3902 if (inode
->i_nlink
== 0 && !(inode
->i_state
& I_LINKABLE
))
3904 else if (max_links
&& inode
->i_nlink
>= max_links
)
3907 error
= try_break_deleg(inode
, delegated_inode
);
3909 error
= dir
->i_op
->link(old_dentry
, dir
, new_dentry
);
3912 if (!error
&& (inode
->i_state
& I_LINKABLE
)) {
3913 spin_lock(&inode
->i_lock
);
3914 inode
->i_state
&= ~I_LINKABLE
;
3915 spin_unlock(&inode
->i_lock
);
3917 mutex_unlock(&inode
->i_mutex
);
3919 fsnotify_link(dir
, inode
, new_dentry
);
3922 EXPORT_SYMBOL(vfs_link
);
3925 * Hardlinks are often used in delicate situations. We avoid
3926 * security-related surprises by not following symlinks on the
3929 * We don't follow them on the oldname either to be compatible
3930 * with linux 2.0, and to avoid hard-linking to directories
3931 * and other special files. --ADM
3933 SYSCALL_DEFINE5(linkat
, int, olddfd
, const char __user
*, oldname
,
3934 int, newdfd
, const char __user
*, newname
, int, flags
)
3936 struct dentry
*new_dentry
;
3937 struct path old_path
, new_path
;
3938 struct inode
*delegated_inode
= NULL
;
3942 if ((flags
& ~(AT_SYMLINK_FOLLOW
| AT_EMPTY_PATH
)) != 0)
3945 * To use null names we require CAP_DAC_READ_SEARCH
3946 * This ensures that not everyone will be able to create
3947 * handlink using the passed filedescriptor.
3949 if (flags
& AT_EMPTY_PATH
) {
3950 if (!capable(CAP_DAC_READ_SEARCH
))
3955 if (flags
& AT_SYMLINK_FOLLOW
)
3956 how
|= LOOKUP_FOLLOW
;
3958 error
= user_path_at(olddfd
, oldname
, how
, &old_path
);
3962 new_dentry
= user_path_create(newdfd
, newname
, &new_path
,
3963 (how
& LOOKUP_REVAL
));
3964 error
= PTR_ERR(new_dentry
);
3965 if (IS_ERR(new_dentry
))
3969 if (old_path
.mnt
!= new_path
.mnt
)
3971 error
= may_linkat(&old_path
);
3972 if (unlikely(error
))
3974 error
= security_path_link(old_path
.dentry
, &new_path
, new_dentry
);
3977 error
= vfs_link(old_path
.dentry
, new_path
.dentry
->d_inode
, new_dentry
, &delegated_inode
);
3979 done_path_create(&new_path
, new_dentry
);
3980 if (delegated_inode
) {
3981 error
= break_deleg_wait(&delegated_inode
);
3983 path_put(&old_path
);
3987 if (retry_estale(error
, how
)) {
3988 path_put(&old_path
);
3989 how
|= LOOKUP_REVAL
;
3993 path_put(&old_path
);
3998 SYSCALL_DEFINE2(link
, const char __user
*, oldname
, const char __user
*, newname
)
4000 return sys_linkat(AT_FDCWD
, oldname
, AT_FDCWD
, newname
, 0);
4004 * vfs_rename - rename a filesystem object
4005 * @old_dir: parent of source
4006 * @old_dentry: source
4007 * @new_dir: parent of destination
4008 * @new_dentry: destination
4009 * @delegated_inode: returns an inode needing a delegation break
4010 * @flags: rename flags
4012 * The caller must hold multiple mutexes--see lock_rename()).
4014 * If vfs_rename discovers a delegation in need of breaking at either
4015 * the source or destination, it will return -EWOULDBLOCK and return a
4016 * reference to the inode in delegated_inode. The caller should then
4017 * break the delegation and retry. Because breaking a delegation may
4018 * take a long time, the caller should drop all locks before doing
4021 * Alternatively, a caller may pass NULL for delegated_inode. This may
4022 * be appropriate for callers that expect the underlying filesystem not
4023 * to be NFS exported.
4025 * The worst of all namespace operations - renaming directory. "Perverted"
4026 * doesn't even start to describe it. Somebody in UCB had a heck of a trip...
4028 * a) we can get into loop creation.
4029 * b) race potential - two innocent renames can create a loop together.
4030 * That's where 4.4 screws up. Current fix: serialization on
4031 * sb->s_vfs_rename_mutex. We might be more accurate, but that's another
4033 * c) we have to lock _four_ objects - parents and victim (if it exists),
4034 * and source (if it is not a directory).
4035 * And that - after we got ->i_mutex on parents (until then we don't know
4036 * whether the target exists). Solution: try to be smart with locking
4037 * order for inodes. We rely on the fact that tree topology may change
4038 * only under ->s_vfs_rename_mutex _and_ that parent of the object we
4039 * move will be locked. Thus we can rank directories by the tree
4040 * (ancestors first) and rank all non-directories after them.
4041 * That works since everybody except rename does "lock parent, lookup,
4042 * lock child" and rename is under ->s_vfs_rename_mutex.
4043 * HOWEVER, it relies on the assumption that any object with ->lookup()
4044 * has no more than 1 dentry. If "hybrid" objects will ever appear,
4045 * we'd better make sure that there's no link(2) for them.
4046 * d) conversion from fhandle to dentry may come in the wrong moment - when
4047 * we are removing the target. Solution: we will have to grab ->i_mutex
4048 * in the fhandle_to_dentry code. [FIXME - current nfsfh.c relies on
4049 * ->i_mutex on parents, which works but leads to some truly excessive
4052 int vfs_rename(struct inode
*old_dir
, struct dentry
*old_dentry
,
4053 struct inode
*new_dir
, struct dentry
*new_dentry
,
4054 struct inode
**delegated_inode
, unsigned int flags
)
4057 bool is_dir
= d_is_dir(old_dentry
);
4058 const unsigned char *old_name
;
4059 struct inode
*source
= old_dentry
->d_inode
;
4060 struct inode
*target
= new_dentry
->d_inode
;
4061 bool new_is_dir
= false;
4062 unsigned max_links
= new_dir
->i_sb
->s_max_links
;
4064 if (source
== target
)
4067 error
= may_delete(old_dir
, old_dentry
, is_dir
);
4072 error
= may_create(new_dir
, new_dentry
);
4074 new_is_dir
= d_is_dir(new_dentry
);
4076 if (!(flags
& RENAME_EXCHANGE
))
4077 error
= may_delete(new_dir
, new_dentry
, is_dir
);
4079 error
= may_delete(new_dir
, new_dentry
, new_is_dir
);
4084 if (!old_dir
->i_op
->rename
&& !old_dir
->i_op
->rename2
)
4087 if (flags
&& !old_dir
->i_op
->rename2
)
4091 * If we are going to change the parent - check write permissions,
4092 * we'll need to flip '..'.
4094 if (new_dir
!= old_dir
) {
4096 error
= inode_permission(source
, MAY_WRITE
);
4100 if ((flags
& RENAME_EXCHANGE
) && new_is_dir
) {
4101 error
= inode_permission(target
, MAY_WRITE
);
4107 error
= security_inode_rename(old_dir
, old_dentry
, new_dir
, new_dentry
,
4112 old_name
= fsnotify_oldname_init(old_dentry
->d_name
.name
);
4114 if (!is_dir
|| (flags
& RENAME_EXCHANGE
))
4115 lock_two_nondirectories(source
, target
);
4117 mutex_lock(&target
->i_mutex
);
4120 if (d_mountpoint(old_dentry
) || d_mountpoint(new_dentry
))
4123 if (max_links
&& new_dir
!= old_dir
) {
4125 if (is_dir
&& !new_is_dir
&& new_dir
->i_nlink
>= max_links
)
4127 if ((flags
& RENAME_EXCHANGE
) && !is_dir
&& new_is_dir
&&
4128 old_dir
->i_nlink
>= max_links
)
4131 if (is_dir
&& !(flags
& RENAME_EXCHANGE
) && target
)
4132 shrink_dcache_parent(new_dentry
);
4134 error
= try_break_deleg(source
, delegated_inode
);
4138 if (target
&& !new_is_dir
) {
4139 error
= try_break_deleg(target
, delegated_inode
);
4143 if (!old_dir
->i_op
->rename2
) {
4144 error
= old_dir
->i_op
->rename(old_dir
, old_dentry
,
4145 new_dir
, new_dentry
);
4147 WARN_ON(old_dir
->i_op
->rename
!= NULL
);
4148 error
= old_dir
->i_op
->rename2(old_dir
, old_dentry
,
4149 new_dir
, new_dentry
, flags
);
4154 if (!(flags
& RENAME_EXCHANGE
) && target
) {
4156 target
->i_flags
|= S_DEAD
;
4157 dont_mount(new_dentry
);
4159 if (!(old_dir
->i_sb
->s_type
->fs_flags
& FS_RENAME_DOES_D_MOVE
)) {
4160 if (!(flags
& RENAME_EXCHANGE
))
4161 d_move(old_dentry
, new_dentry
);
4163 d_exchange(old_dentry
, new_dentry
);
4166 if (!is_dir
|| (flags
& RENAME_EXCHANGE
))
4167 unlock_two_nondirectories(source
, target
);
4169 mutex_unlock(&target
->i_mutex
);
4172 fsnotify_move(old_dir
, new_dir
, old_name
, is_dir
,
4173 !(flags
& RENAME_EXCHANGE
) ? target
: NULL
, old_dentry
);
4174 if (flags
& RENAME_EXCHANGE
) {
4175 fsnotify_move(new_dir
, old_dir
, old_dentry
->d_name
.name
,
4176 new_is_dir
, NULL
, new_dentry
);
4179 fsnotify_oldname_free(old_name
);
4183 EXPORT_SYMBOL(vfs_rename
);
4185 SYSCALL_DEFINE5(renameat2
, int, olddfd
, const char __user
*, oldname
,
4186 int, newdfd
, const char __user
*, newname
, unsigned int, flags
)
4188 struct dentry
*old_dir
, *new_dir
;
4189 struct dentry
*old_dentry
, *new_dentry
;
4190 struct dentry
*trap
;
4191 struct nameidata oldnd
, newnd
;
4192 struct inode
*delegated_inode
= NULL
;
4193 struct filename
*from
;
4194 struct filename
*to
;
4195 unsigned int lookup_flags
= 0;
4196 bool should_retry
= false;
4199 if (flags
& ~(RENAME_NOREPLACE
| RENAME_EXCHANGE
))
4202 if ((flags
& RENAME_NOREPLACE
) && (flags
& RENAME_EXCHANGE
))
4206 from
= user_path_parent(olddfd
, oldname
, &oldnd
, lookup_flags
);
4208 error
= PTR_ERR(from
);
4212 to
= user_path_parent(newdfd
, newname
, &newnd
, lookup_flags
);
4214 error
= PTR_ERR(to
);
4219 if (oldnd
.path
.mnt
!= newnd
.path
.mnt
)
4222 old_dir
= oldnd
.path
.dentry
;
4224 if (oldnd
.last_type
!= LAST_NORM
)
4227 new_dir
= newnd
.path
.dentry
;
4228 if (flags
& RENAME_NOREPLACE
)
4230 if (newnd
.last_type
!= LAST_NORM
)
4233 error
= mnt_want_write(oldnd
.path
.mnt
);
4237 oldnd
.flags
&= ~LOOKUP_PARENT
;
4238 newnd
.flags
&= ~LOOKUP_PARENT
;
4239 if (!(flags
& RENAME_EXCHANGE
))
4240 newnd
.flags
|= LOOKUP_RENAME_TARGET
;
4243 trap
= lock_rename(new_dir
, old_dir
);
4245 old_dentry
= lookup_hash(&oldnd
);
4246 error
= PTR_ERR(old_dentry
);
4247 if (IS_ERR(old_dentry
))
4249 /* source must exist */
4251 if (d_is_negative(old_dentry
))
4253 new_dentry
= lookup_hash(&newnd
);
4254 error
= PTR_ERR(new_dentry
);
4255 if (IS_ERR(new_dentry
))
4258 if ((flags
& RENAME_NOREPLACE
) && d_is_positive(new_dentry
))
4260 if (flags
& RENAME_EXCHANGE
) {
4262 if (d_is_negative(new_dentry
))
4265 if (!d_is_dir(new_dentry
)) {
4267 if (newnd
.last
.name
[newnd
.last
.len
])
4271 /* unless the source is a directory trailing slashes give -ENOTDIR */
4272 if (!d_is_dir(old_dentry
)) {
4274 if (oldnd
.last
.name
[oldnd
.last
.len
])
4276 if (!(flags
& RENAME_EXCHANGE
) && newnd
.last
.name
[newnd
.last
.len
])
4279 /* source should not be ancestor of target */
4281 if (old_dentry
== trap
)
4283 /* target should not be an ancestor of source */
4284 if (!(flags
& RENAME_EXCHANGE
))
4286 if (new_dentry
== trap
)
4289 error
= security_path_rename(&oldnd
.path
, old_dentry
,
4290 &newnd
.path
, new_dentry
, flags
);
4293 error
= vfs_rename(old_dir
->d_inode
, old_dentry
,
4294 new_dir
->d_inode
, new_dentry
,
4295 &delegated_inode
, flags
);
4301 unlock_rename(new_dir
, old_dir
);
4302 if (delegated_inode
) {
4303 error
= break_deleg_wait(&delegated_inode
);
4307 mnt_drop_write(oldnd
.path
.mnt
);
4309 if (retry_estale(error
, lookup_flags
))
4310 should_retry
= true;
4311 path_put(&newnd
.path
);
4314 path_put(&oldnd
.path
);
4317 should_retry
= false;
4318 lookup_flags
|= LOOKUP_REVAL
;
4325 SYSCALL_DEFINE4(renameat
, int, olddfd
, const char __user
*, oldname
,
4326 int, newdfd
, const char __user
*, newname
)
4328 return sys_renameat2(olddfd
, oldname
, newdfd
, newname
, 0);
4331 SYSCALL_DEFINE2(rename
, const char __user
*, oldname
, const char __user
*, newname
)
4333 return sys_renameat2(AT_FDCWD
, oldname
, AT_FDCWD
, newname
, 0);
4336 int readlink_copy(char __user
*buffer
, int buflen
, const char *link
)
4338 int len
= PTR_ERR(link
);
4343 if (len
> (unsigned) buflen
)
4345 if (copy_to_user(buffer
, link
, len
))
4350 EXPORT_SYMBOL(readlink_copy
);
4353 * A helper for ->readlink(). This should be used *ONLY* for symlinks that
4354 * have ->follow_link() touching nd only in nd_set_link(). Using (or not
4355 * using) it for any given inode is up to filesystem.
4357 int generic_readlink(struct dentry
*dentry
, char __user
*buffer
, int buflen
)
4359 struct nameidata nd
;
4364 cookie
= dentry
->d_inode
->i_op
->follow_link(dentry
, &nd
);
4366 return PTR_ERR(cookie
);
4368 res
= readlink_copy(buffer
, buflen
, nd_get_link(&nd
));
4369 if (dentry
->d_inode
->i_op
->put_link
)
4370 dentry
->d_inode
->i_op
->put_link(dentry
, &nd
, cookie
);
4373 EXPORT_SYMBOL(generic_readlink
);
4375 /* get the link contents into pagecache */
4376 static char *page_getlink(struct dentry
* dentry
, struct page
**ppage
)
4380 struct address_space
*mapping
= dentry
->d_inode
->i_mapping
;
4381 page
= read_mapping_page(mapping
, 0, NULL
);
4386 nd_terminate_link(kaddr
, dentry
->d_inode
->i_size
, PAGE_SIZE
- 1);
4390 int page_readlink(struct dentry
*dentry
, char __user
*buffer
, int buflen
)
4392 struct page
*page
= NULL
;
4393 int res
= readlink_copy(buffer
, buflen
, page_getlink(dentry
, &page
));
4396 page_cache_release(page
);
4400 EXPORT_SYMBOL(page_readlink
);
4402 void *page_follow_link_light(struct dentry
*dentry
, struct nameidata
*nd
)
4404 struct page
*page
= NULL
;
4405 nd_set_link(nd
, page_getlink(dentry
, &page
));
4408 EXPORT_SYMBOL(page_follow_link_light
);
4410 void page_put_link(struct dentry
*dentry
, struct nameidata
*nd
, void *cookie
)
4412 struct page
*page
= cookie
;
4416 page_cache_release(page
);
4419 EXPORT_SYMBOL(page_put_link
);
4422 * The nofs argument instructs pagecache_write_begin to pass AOP_FLAG_NOFS
4424 int __page_symlink(struct inode
*inode
, const char *symname
, int len
, int nofs
)
4426 struct address_space
*mapping
= inode
->i_mapping
;
4431 unsigned int flags
= AOP_FLAG_UNINTERRUPTIBLE
;
4433 flags
|= AOP_FLAG_NOFS
;
4436 err
= pagecache_write_begin(NULL
, mapping
, 0, len
-1,
4437 flags
, &page
, &fsdata
);
4441 kaddr
= kmap_atomic(page
);
4442 memcpy(kaddr
, symname
, len
-1);
4443 kunmap_atomic(kaddr
);
4445 err
= pagecache_write_end(NULL
, mapping
, 0, len
-1, len
-1,
4452 mark_inode_dirty(inode
);
4457 EXPORT_SYMBOL(__page_symlink
);
4459 int page_symlink(struct inode
*inode
, const char *symname
, int len
)
4461 return __page_symlink(inode
, symname
, len
,
4462 !(mapping_gfp_mask(inode
->i_mapping
) & __GFP_FS
));
4464 EXPORT_SYMBOL(page_symlink
);
4466 const struct inode_operations page_symlink_inode_operations
= {
4467 .readlink
= generic_readlink
,
4468 .follow_link
= page_follow_link_light
,
4469 .put_link
= page_put_link
,
4471 EXPORT_SYMBOL(page_symlink_inode_operations
);