4 * Copyright (C) 1991, 1992 Linus Torvalds
8 * Some corrections by tytso.
11 /* [Feb 1997 T. Schoebel-Theuer] Complete rewrite of the pathname
14 /* [Feb-Apr 2000, AV] Rewrite to the new namespace architecture.
17 #include <linux/init.h>
18 #include <linux/module.h>
19 #include <linux/slab.h>
21 #include <linux/namei.h>
22 #include <linux/quotaops.h>
23 #include <linux/pagemap.h>
24 #include <linux/fsnotify.h>
25 #include <linux/personality.h>
26 #include <linux/security.h>
27 #include <linux/syscalls.h>
28 #include <linux/mount.h>
29 #include <linux/audit.h>
30 #include <linux/capability.h>
31 #include <linux/file.h>
32 #include <linux/fcntl.h>
33 #include <linux/device_cgroup.h>
34 #include <asm/uaccess.h>
36 #define ACC_MODE(x) ("\000\004\002\006"[(x)&O_ACCMODE])
38 /* [Feb-1997 T. Schoebel-Theuer]
39 * Fundamental changes in the pathname lookup mechanisms (namei)
40 * were necessary because of omirr. The reason is that omirr needs
41 * to know the _real_ pathname, not the user-supplied one, in case
42 * of symlinks (and also when transname replacements occur).
44 * The new code replaces the old recursive symlink resolution with
45 * an iterative one (in case of non-nested symlink chains). It does
46 * this with calls to <fs>_follow_link().
47 * As a side effect, dir_namei(), _namei() and follow_link() are now
48 * replaced with a single function lookup_dentry() that can handle all
49 * the special cases of the former code.
51 * With the new dcache, the pathname is stored at each inode, at least as
52 * long as the refcount of the inode is positive. As a side effect, the
53 * size of the dcache depends on the inode cache and thus is dynamic.
55 * [29-Apr-1998 C. Scott Ananian] Updated above description of symlink
56 * resolution to correspond with current state of the code.
58 * Note that the symlink resolution is not *completely* iterative.
59 * There is still a significant amount of tail- and mid- recursion in
60 * the algorithm. Also, note that <fs>_readlink() is not used in
61 * lookup_dentry(): lookup_dentry() on the result of <fs>_readlink()
62 * may return different results than <fs>_follow_link(). Many virtual
63 * filesystems (including /proc) exhibit this behavior.
66 /* [24-Feb-97 T. Schoebel-Theuer] Side effects caused by new implementation:
67 * New symlink semantics: when open() is called with flags O_CREAT | O_EXCL
68 * and the name already exists in form of a symlink, try to create the new
69 * name indicated by the symlink. The old code always complained that the
70 * name already exists, due to not following the symlink even if its target
71 * is nonexistent. The new semantics affects also mknod() and link() when
72 * the name is a symlink pointing to a non-existant name.
74 * I don't know which semantics is the right one, since I have no access
75 * to standards. But I found by trial that HP-UX 9.0 has the full "new"
76 * semantics implemented, while SunOS 4.1.1 and Solaris (SunOS 5.4) have the
77 * "old" one. Personally, I think the new semantics is much more logical.
78 * Note that "ln old new" where "new" is a symlink pointing to a non-existing
79 * file does succeed in both HP-UX and SunOs, but not in Solaris
80 * and in the old Linux semantics.
83 /* [16-Dec-97 Kevin Buhr] For security reasons, we change some symlink
84 * semantics. See the comments in "open_namei" and "do_link" below.
86 * [10-Sep-98 Alan Modra] Another symlink change.
89 /* [Feb-Apr 2000 AV] Complete rewrite. Rules for symlinks:
90 * inside the path - always follow.
91 * in the last component in creation/removal/renaming - never follow.
92 * if LOOKUP_FOLLOW passed - follow.
93 * if the pathname has trailing slashes - follow.
94 * otherwise - don't follow.
95 * (applied in that order).
97 * [Jun 2000 AV] Inconsistent behaviour of open() in case if flags==O_CREAT
98 * restored for 2.4. This is the last surviving part of old 4.2BSD bug.
99 * During the 2.4 we need to fix the userland stuff depending on it -
100 * hopefully we will be able to get rid of that wart in 2.5. So far only
101 * XEmacs seems to be relying on it...
104 * [Sep 2001 AV] Single-semaphore locking scheme (kudos to David Holland)
105 * implemented. Let's see if raised priority of ->s_vfs_rename_mutex gives
106 * any extra contention...
109 static int __link_path_walk(const char *name
, struct nameidata
*nd
);
111 /* In order to reduce some races, while at the same time doing additional
112 * checking and hopefully speeding things up, we copy filenames to the
113 * kernel data space before using them..
115 * POSIX.1 2.4: an empty pathname is invalid (ENOENT).
116 * PATH_MAX includes the nul terminator --RR.
118 static int do_getname(const char __user
*filename
, char *page
)
121 unsigned long len
= PATH_MAX
;
123 if (!segment_eq(get_fs(), KERNEL_DS
)) {
124 if ((unsigned long) filename
>= TASK_SIZE
)
126 if (TASK_SIZE
- (unsigned long) filename
< PATH_MAX
)
127 len
= TASK_SIZE
- (unsigned long) filename
;
130 retval
= strncpy_from_user(page
, filename
, len
);
134 return -ENAMETOOLONG
;
140 char * getname(const char __user
* filename
)
144 result
= ERR_PTR(-ENOMEM
);
147 int retval
= do_getname(filename
, tmp
);
152 result
= ERR_PTR(retval
);
155 audit_getname(result
);
159 #ifdef CONFIG_AUDITSYSCALL
160 void putname(const char *name
)
162 if (unlikely(!audit_dummy_context()))
167 EXPORT_SYMBOL(putname
);
172 * generic_permission - check for access rights on a Posix-like filesystem
173 * @inode: inode to check access rights for
174 * @mask: right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
175 * @check_acl: optional callback to check for Posix ACLs
177 * Used to check for read/write/execute permissions on a file.
178 * We use "fsuid" for this, letting us set arbitrary permissions
179 * for filesystem access without changing the "normal" uids which
180 * are used for other things..
182 int generic_permission(struct inode
*inode
, int mask
,
183 int (*check_acl
)(struct inode
*inode
, int mask
))
185 umode_t mode
= inode
->i_mode
;
187 mask
&= MAY_READ
| MAY_WRITE
| MAY_EXEC
;
189 if (current
->fsuid
== inode
->i_uid
)
192 if (IS_POSIXACL(inode
) && (mode
& S_IRWXG
) && check_acl
) {
193 int error
= check_acl(inode
, mask
);
194 if (error
== -EACCES
)
195 goto check_capabilities
;
196 else if (error
!= -EAGAIN
)
200 if (in_group_p(inode
->i_gid
))
205 * If the DACs are ok we don't need any capability check.
207 if ((mask
& ~mode
) == 0)
212 * Read/write DACs are always overridable.
213 * Executable DACs are overridable if at least one exec bit is set.
215 if (!(mask
& MAY_EXEC
) ||
216 (inode
->i_mode
& S_IXUGO
) || S_ISDIR(inode
->i_mode
))
217 if (capable(CAP_DAC_OVERRIDE
))
221 * Searching includes executable on directories, else just read.
223 if (mask
== MAY_READ
|| (S_ISDIR(inode
->i_mode
) && !(mask
& MAY_WRITE
)))
224 if (capable(CAP_DAC_READ_SEARCH
))
230 int inode_permission(struct inode
*inode
, int mask
)
234 if (mask
& MAY_WRITE
) {
235 umode_t mode
= inode
->i_mode
;
238 * Nobody gets write access to a read-only fs.
240 if (IS_RDONLY(inode
) &&
241 (S_ISREG(mode
) || S_ISDIR(mode
) || S_ISLNK(mode
)))
245 * Nobody gets write access to an immutable file.
247 if (IS_IMMUTABLE(inode
))
251 /* Ordinary permission routines do not understand MAY_APPEND. */
252 if (inode
->i_op
&& inode
->i_op
->permission
) {
253 retval
= inode
->i_op
->permission(inode
, mask
);
256 * Exec permission on a regular file is denied if none
257 * of the execute bits are set.
259 * This check should be done by the ->permission()
262 if ((mask
& MAY_EXEC
) && S_ISREG(inode
->i_mode
) &&
263 !(inode
->i_mode
& S_IXUGO
))
267 retval
= generic_permission(inode
, mask
, NULL
);
272 retval
= devcgroup_inode_permission(inode
, mask
);
276 return security_inode_permission(inode
,
277 mask
& (MAY_READ
|MAY_WRITE
|MAY_EXEC
|MAY_APPEND
));
281 * vfs_permission - check for access rights to a given path
282 * @nd: lookup result that describes the path
283 * @mask: right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
285 * Used to check for read/write/execute permissions on a path.
286 * We use "fsuid" for this, letting us set arbitrary permissions
287 * for filesystem access without changing the "normal" uids which
288 * are used for other things.
290 int vfs_permission(struct nameidata
*nd
, int mask
)
292 return inode_permission(nd
->path
.dentry
->d_inode
, mask
);
296 * file_permission - check for additional access rights to a given file
297 * @file: file to check access rights for
298 * @mask: right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
300 * Used to check for read/write/execute permissions on an already opened
304 * Do not use this function in new code. All access checks should
305 * be done using vfs_permission().
307 int file_permission(struct file
*file
, int mask
)
309 return inode_permission(file
->f_path
.dentry
->d_inode
, mask
);
313 * get_write_access() gets write permission for a file.
314 * put_write_access() releases this write permission.
315 * This is used for regular files.
316 * We cannot support write (and maybe mmap read-write shared) accesses and
317 * MAP_DENYWRITE mmappings simultaneously. The i_writecount field of an inode
318 * can have the following values:
319 * 0: no writers, no VM_DENYWRITE mappings
320 * < 0: (-i_writecount) vm_area_structs with VM_DENYWRITE set exist
321 * > 0: (i_writecount) users are writing to the file.
323 * Normally we operate on that counter with atomic_{inc,dec} and it's safe
324 * except for the cases where we don't hold i_writecount yet. Then we need to
325 * use {get,deny}_write_access() - these functions check the sign and refuse
326 * to do the change if sign is wrong. Exclusion between them is provided by
327 * the inode->i_lock spinlock.
330 int get_write_access(struct inode
* inode
)
332 spin_lock(&inode
->i_lock
);
333 if (atomic_read(&inode
->i_writecount
) < 0) {
334 spin_unlock(&inode
->i_lock
);
337 atomic_inc(&inode
->i_writecount
);
338 spin_unlock(&inode
->i_lock
);
343 int deny_write_access(struct file
* file
)
345 struct inode
*inode
= file
->f_path
.dentry
->d_inode
;
347 spin_lock(&inode
->i_lock
);
348 if (atomic_read(&inode
->i_writecount
) > 0) {
349 spin_unlock(&inode
->i_lock
);
352 atomic_dec(&inode
->i_writecount
);
353 spin_unlock(&inode
->i_lock
);
359 * path_get - get a reference to a path
360 * @path: path to get the reference to
362 * Given a path increment the reference count to the dentry and the vfsmount.
364 void path_get(struct path
*path
)
369 EXPORT_SYMBOL(path_get
);
372 * path_put - put a reference to a path
373 * @path: path to put the reference to
375 * Given a path decrement the reference count to the dentry and the vfsmount.
377 void path_put(struct path
*path
)
382 EXPORT_SYMBOL(path_put
);
385 * release_open_intent - free up open intent resources
386 * @nd: pointer to nameidata
388 void release_open_intent(struct nameidata
*nd
)
390 if (nd
->intent
.open
.file
->f_path
.dentry
== NULL
)
391 put_filp(nd
->intent
.open
.file
);
393 fput(nd
->intent
.open
.file
);
396 static inline struct dentry
*
397 do_revalidate(struct dentry
*dentry
, struct nameidata
*nd
)
399 int status
= dentry
->d_op
->d_revalidate(dentry
, nd
);
400 if (unlikely(status
<= 0)) {
402 * The dentry failed validation.
403 * If d_revalidate returned 0 attempt to invalidate
404 * the dentry otherwise d_revalidate is asking us
405 * to return a fail status.
408 if (!d_invalidate(dentry
)) {
414 dentry
= ERR_PTR(status
);
421 * Internal lookup() using the new generic dcache.
424 static struct dentry
* cached_lookup(struct dentry
* parent
, struct qstr
* name
, struct nameidata
*nd
)
426 struct dentry
* dentry
= __d_lookup(parent
, name
);
428 /* lockess __d_lookup may fail due to concurrent d_move()
429 * in some unrelated directory, so try with d_lookup
432 dentry
= d_lookup(parent
, name
);
434 if (dentry
&& dentry
->d_op
&& dentry
->d_op
->d_revalidate
)
435 dentry
= do_revalidate(dentry
, nd
);
441 * Short-cut version of permission(), for calling by
442 * path_walk(), when dcache lock is held. Combines parts
443 * of permission() and generic_permission(), and tests ONLY for
444 * MAY_EXEC permission.
446 * If appropriate, check DAC only. If not appropriate, or
447 * short-cut DAC fails, then call permission() to do more
448 * complete permission check.
450 static int exec_permission_lite(struct inode
*inode
)
452 umode_t mode
= inode
->i_mode
;
454 if (inode
->i_op
&& inode
->i_op
->permission
)
457 if (current
->fsuid
== inode
->i_uid
)
459 else if (in_group_p(inode
->i_gid
))
465 if ((inode
->i_mode
& S_IXUGO
) && capable(CAP_DAC_OVERRIDE
))
468 if (S_ISDIR(inode
->i_mode
) && capable(CAP_DAC_OVERRIDE
))
471 if (S_ISDIR(inode
->i_mode
) && capable(CAP_DAC_READ_SEARCH
))
476 return security_inode_permission(inode
, MAY_EXEC
);
480 * This is called when everything else fails, and we actually have
481 * to go to the low-level filesystem to find out what we should do..
483 * We get the directory semaphore, and after getting that we also
484 * make sure that nobody added the entry to the dcache in the meantime..
487 static struct dentry
* real_lookup(struct dentry
* parent
, struct qstr
* name
, struct nameidata
*nd
)
489 struct dentry
* result
;
490 struct inode
*dir
= parent
->d_inode
;
492 mutex_lock(&dir
->i_mutex
);
494 * First re-do the cached lookup just in case it was created
495 * while we waited for the directory semaphore..
497 * FIXME! This could use version numbering or similar to
498 * avoid unnecessary cache lookups.
500 * The "dcache_lock" is purely to protect the RCU list walker
501 * from concurrent renames at this point (we mustn't get false
502 * negatives from the RCU list walk here, unlike the optimistic
505 * so doing d_lookup() (with seqlock), instead of lockfree __d_lookup
507 result
= d_lookup(parent
, name
);
509 struct dentry
*dentry
;
511 /* Don't create child dentry for a dead directory. */
512 result
= ERR_PTR(-ENOENT
);
516 dentry
= d_alloc(parent
, name
);
517 result
= ERR_PTR(-ENOMEM
);
519 result
= dir
->i_op
->lookup(dir
, dentry
, nd
);
526 mutex_unlock(&dir
->i_mutex
);
531 * Uhhuh! Nasty case: the cache was re-populated while
532 * we waited on the semaphore. Need to revalidate.
534 mutex_unlock(&dir
->i_mutex
);
535 if (result
->d_op
&& result
->d_op
->d_revalidate
) {
536 result
= do_revalidate(result
, nd
);
538 result
= ERR_PTR(-ENOENT
);
544 static __always_inline
void
545 walk_init_root(const char *name
, struct nameidata
*nd
)
547 struct fs_struct
*fs
= current
->fs
;
549 read_lock(&fs
->lock
);
552 read_unlock(&fs
->lock
);
556 * Wrapper to retry pathname resolution whenever the underlying
557 * file system returns an ESTALE.
559 * Retry the whole path once, forcing real lookup requests
560 * instead of relying on the dcache.
562 static __always_inline
int link_path_walk(const char *name
, struct nameidata
*nd
)
564 struct path save
= nd
->path
;
567 /* make sure the stuff we saved doesn't go away */
570 result
= __link_path_walk(name
, nd
);
571 if (result
== -ESTALE
) {
572 /* nd->path had been dropped */
575 nd
->flags
|= LOOKUP_REVAL
;
576 result
= __link_path_walk(name
, nd
);
584 static __always_inline
int __vfs_follow_link(struct nameidata
*nd
, const char *link
)
593 walk_init_root(link
, nd
);
595 res
= link_path_walk(link
, nd
);
596 if (nd
->depth
|| res
|| nd
->last_type
!=LAST_NORM
)
599 * If it is an iterative symlinks resolution in open_namei() we
600 * have to copy the last component. And all that crap because of
601 * bloody create() on broken symlinks. Furrfu...
604 if (unlikely(!name
)) {
608 strcpy(name
, nd
->last
.name
);
609 nd
->last
.name
= name
;
613 return PTR_ERR(link
);
616 static void path_put_conditional(struct path
*path
, struct nameidata
*nd
)
619 if (path
->mnt
!= nd
->path
.mnt
)
623 static inline void path_to_nameidata(struct path
*path
, struct nameidata
*nd
)
625 dput(nd
->path
.dentry
);
626 if (nd
->path
.mnt
!= path
->mnt
)
627 mntput(nd
->path
.mnt
);
628 nd
->path
.mnt
= path
->mnt
;
629 nd
->path
.dentry
= path
->dentry
;
632 static __always_inline
int __do_follow_link(struct path
*path
, struct nameidata
*nd
)
636 struct dentry
*dentry
= path
->dentry
;
638 touch_atime(path
->mnt
, dentry
);
639 nd_set_link(nd
, NULL
);
641 if (path
->mnt
!= nd
->path
.mnt
) {
642 path_to_nameidata(path
, nd
);
646 cookie
= dentry
->d_inode
->i_op
->follow_link(dentry
, nd
);
647 error
= PTR_ERR(cookie
);
648 if (!IS_ERR(cookie
)) {
649 char *s
= nd_get_link(nd
);
652 error
= __vfs_follow_link(nd
, s
);
653 if (dentry
->d_inode
->i_op
->put_link
)
654 dentry
->d_inode
->i_op
->put_link(dentry
, nd
, cookie
);
662 * This limits recursive symlink follows to 8, while
663 * limiting consecutive symlinks to 40.
665 * Without that kind of total limit, nasty chains of consecutive
666 * symlinks can cause almost arbitrarily long lookups.
668 static inline int do_follow_link(struct path
*path
, struct nameidata
*nd
)
671 if (current
->link_count
>= MAX_NESTED_LINKS
)
673 if (current
->total_link_count
>= 40)
675 BUG_ON(nd
->depth
>= MAX_NESTED_LINKS
);
677 err
= security_inode_follow_link(path
->dentry
, nd
);
680 current
->link_count
++;
681 current
->total_link_count
++;
683 err
= __do_follow_link(path
, nd
);
684 current
->link_count
--;
688 path_put_conditional(path
, nd
);
693 int follow_up(struct vfsmount
**mnt
, struct dentry
**dentry
)
695 struct vfsmount
*parent
;
696 struct dentry
*mountpoint
;
697 spin_lock(&vfsmount_lock
);
698 parent
=(*mnt
)->mnt_parent
;
699 if (parent
== *mnt
) {
700 spin_unlock(&vfsmount_lock
);
704 mountpoint
=dget((*mnt
)->mnt_mountpoint
);
705 spin_unlock(&vfsmount_lock
);
707 *dentry
= mountpoint
;
713 /* no need for dcache_lock, as serialization is taken care in
716 static int __follow_mount(struct path
*path
)
719 while (d_mountpoint(path
->dentry
)) {
720 struct vfsmount
*mounted
= lookup_mnt(path
->mnt
, path
->dentry
);
727 path
->dentry
= dget(mounted
->mnt_root
);
733 static void follow_mount(struct vfsmount
**mnt
, struct dentry
**dentry
)
735 while (d_mountpoint(*dentry
)) {
736 struct vfsmount
*mounted
= lookup_mnt(*mnt
, *dentry
);
742 *dentry
= dget(mounted
->mnt_root
);
746 /* no need for dcache_lock, as serialization is taken care in
749 int follow_down(struct vfsmount
**mnt
, struct dentry
**dentry
)
751 struct vfsmount
*mounted
;
753 mounted
= lookup_mnt(*mnt
, *dentry
);
758 *dentry
= dget(mounted
->mnt_root
);
764 static __always_inline
void follow_dotdot(struct nameidata
*nd
)
766 struct fs_struct
*fs
= current
->fs
;
769 struct vfsmount
*parent
;
770 struct dentry
*old
= nd
->path
.dentry
;
772 read_lock(&fs
->lock
);
773 if (nd
->path
.dentry
== fs
->root
.dentry
&&
774 nd
->path
.mnt
== fs
->root
.mnt
) {
775 read_unlock(&fs
->lock
);
778 read_unlock(&fs
->lock
);
779 spin_lock(&dcache_lock
);
780 if (nd
->path
.dentry
!= nd
->path
.mnt
->mnt_root
) {
781 nd
->path
.dentry
= dget(nd
->path
.dentry
->d_parent
);
782 spin_unlock(&dcache_lock
);
786 spin_unlock(&dcache_lock
);
787 spin_lock(&vfsmount_lock
);
788 parent
= nd
->path
.mnt
->mnt_parent
;
789 if (parent
== nd
->path
.mnt
) {
790 spin_unlock(&vfsmount_lock
);
794 nd
->path
.dentry
= dget(nd
->path
.mnt
->mnt_mountpoint
);
795 spin_unlock(&vfsmount_lock
);
797 mntput(nd
->path
.mnt
);
798 nd
->path
.mnt
= parent
;
800 follow_mount(&nd
->path
.mnt
, &nd
->path
.dentry
);
804 * It's more convoluted than I'd like it to be, but... it's still fairly
805 * small and for now I'd prefer to have fast path as straight as possible.
806 * It _is_ time-critical.
808 static int do_lookup(struct nameidata
*nd
, struct qstr
*name
,
811 struct vfsmount
*mnt
= nd
->path
.mnt
;
812 struct dentry
*dentry
= __d_lookup(nd
->path
.dentry
, name
);
816 if (dentry
->d_op
&& dentry
->d_op
->d_revalidate
)
817 goto need_revalidate
;
820 path
->dentry
= dentry
;
821 __follow_mount(path
);
825 dentry
= real_lookup(nd
->path
.dentry
, name
, nd
);
831 dentry
= do_revalidate(dentry
, nd
);
839 return PTR_ERR(dentry
);
844 * This is the basic name resolution function, turning a pathname into
845 * the final dentry. We expect 'base' to be positive and a directory.
847 * Returns 0 and nd will have valid dentry and mnt on success.
848 * Returns error and drops reference to input namei data on failure.
850 static int __link_path_walk(const char *name
, struct nameidata
*nd
)
855 unsigned int lookup_flags
= nd
->flags
;
862 inode
= nd
->path
.dentry
->d_inode
;
864 lookup_flags
= LOOKUP_FOLLOW
| (nd
->flags
& LOOKUP_CONTINUE
);
866 /* At this point we know we have a real path component. */
872 nd
->flags
|= LOOKUP_CONTINUE
;
873 err
= exec_permission_lite(inode
);
875 err
= vfs_permission(nd
, MAY_EXEC
);
880 c
= *(const unsigned char *)name
;
882 hash
= init_name_hash();
885 hash
= partial_name_hash(c
, hash
);
886 c
= *(const unsigned char *)name
;
887 } while (c
&& (c
!= '/'));
888 this.len
= name
- (const char *) this.name
;
889 this.hash
= end_name_hash(hash
);
891 /* remove trailing slashes? */
894 while (*++name
== '/');
896 goto last_with_slashes
;
899 * "." and ".." are special - ".." especially so because it has
900 * to be able to know about the current root directory and
901 * parent relationships.
903 if (this.name
[0] == '.') switch (this.len
) {
907 if (this.name
[1] != '.')
910 inode
= nd
->path
.dentry
->d_inode
;
916 * See if the low-level filesystem might want
917 * to use its own hash..
919 if (nd
->path
.dentry
->d_op
&& nd
->path
.dentry
->d_op
->d_hash
) {
920 err
= nd
->path
.dentry
->d_op
->d_hash(nd
->path
.dentry
,
925 /* This does the actual lookups.. */
926 err
= do_lookup(nd
, &this, &next
);
931 inode
= next
.dentry
->d_inode
;
938 if (inode
->i_op
->follow_link
) {
939 err
= do_follow_link(&next
, nd
);
943 inode
= nd
->path
.dentry
->d_inode
;
950 path_to_nameidata(&next
, nd
);
952 if (!inode
->i_op
->lookup
)
955 /* here ends the main loop */
958 lookup_flags
|= LOOKUP_FOLLOW
| LOOKUP_DIRECTORY
;
960 /* Clear LOOKUP_CONTINUE iff it was previously unset */
961 nd
->flags
&= lookup_flags
| ~LOOKUP_CONTINUE
;
962 if (lookup_flags
& LOOKUP_PARENT
)
964 if (this.name
[0] == '.') switch (this.len
) {
968 if (this.name
[1] != '.')
971 inode
= nd
->path
.dentry
->d_inode
;
976 if (nd
->path
.dentry
->d_op
&& nd
->path
.dentry
->d_op
->d_hash
) {
977 err
= nd
->path
.dentry
->d_op
->d_hash(nd
->path
.dentry
,
982 err
= do_lookup(nd
, &this, &next
);
985 inode
= next
.dentry
->d_inode
;
986 if ((lookup_flags
& LOOKUP_FOLLOW
)
987 && inode
&& inode
->i_op
&& inode
->i_op
->follow_link
) {
988 err
= do_follow_link(&next
, nd
);
991 inode
= nd
->path
.dentry
->d_inode
;
993 path_to_nameidata(&next
, nd
);
997 if (lookup_flags
& LOOKUP_DIRECTORY
) {
999 if (!inode
->i_op
|| !inode
->i_op
->lookup
)
1005 nd
->last_type
= LAST_NORM
;
1006 if (this.name
[0] != '.')
1009 nd
->last_type
= LAST_DOT
;
1010 else if (this.len
== 2 && this.name
[1] == '.')
1011 nd
->last_type
= LAST_DOTDOT
;
1016 * We bypassed the ordinary revalidation routines.
1017 * We may need to check the cached dentry for staleness.
1019 if (nd
->path
.dentry
&& nd
->path
.dentry
->d_sb
&&
1020 (nd
->path
.dentry
->d_sb
->s_type
->fs_flags
& FS_REVAL_DOT
)) {
1022 /* Note: we do not d_invalidate() */
1023 if (!nd
->path
.dentry
->d_op
->d_revalidate(
1024 nd
->path
.dentry
, nd
))
1030 path_put_conditional(&next
, nd
);
1033 path_put(&nd
->path
);
1038 static int path_walk(const char *name
, struct nameidata
*nd
)
1040 current
->total_link_count
= 0;
1041 return link_path_walk(name
, nd
);
1044 /* Returns 0 and nd will be valid on success; Retuns error, otherwise. */
1045 static int do_path_lookup(int dfd
, const char *name
,
1046 unsigned int flags
, struct nameidata
*nd
)
1051 struct fs_struct
*fs
= current
->fs
;
1053 nd
->last_type
= LAST_ROOT
; /* if there are only slashes... */
1058 read_lock(&fs
->lock
);
1059 nd
->path
= fs
->root
;
1060 path_get(&fs
->root
);
1061 read_unlock(&fs
->lock
);
1062 } else if (dfd
== AT_FDCWD
) {
1063 read_lock(&fs
->lock
);
1066 read_unlock(&fs
->lock
);
1068 struct dentry
*dentry
;
1070 file
= fget_light(dfd
, &fput_needed
);
1075 dentry
= file
->f_path
.dentry
;
1078 if (!S_ISDIR(dentry
->d_inode
->i_mode
))
1081 retval
= file_permission(file
, MAY_EXEC
);
1085 nd
->path
= file
->f_path
;
1086 path_get(&file
->f_path
);
1088 fput_light(file
, fput_needed
);
1091 retval
= path_walk(name
, nd
);
1092 if (unlikely(!retval
&& !audit_dummy_context() && nd
->path
.dentry
&&
1093 nd
->path
.dentry
->d_inode
))
1094 audit_inode(name
, nd
->path
.dentry
);
1099 fput_light(file
, fput_needed
);
1103 int path_lookup(const char *name
, unsigned int flags
,
1104 struct nameidata
*nd
)
1106 return do_path_lookup(AT_FDCWD
, name
, flags
, nd
);
1109 int kern_path(const char *name
, unsigned int flags
, struct path
*path
)
1111 struct nameidata nd
;
1112 int res
= do_path_lookup(AT_FDCWD
, name
, flags
, &nd
);
1119 * vfs_path_lookup - lookup a file path relative to a dentry-vfsmount pair
1120 * @dentry: pointer to dentry of the base directory
1121 * @mnt: pointer to vfs mount of the base directory
1122 * @name: pointer to file name
1123 * @flags: lookup flags
1124 * @nd: pointer to nameidata
1126 int vfs_path_lookup(struct dentry
*dentry
, struct vfsmount
*mnt
,
1127 const char *name
, unsigned int flags
,
1128 struct nameidata
*nd
)
1132 /* same as do_path_lookup */
1133 nd
->last_type
= LAST_ROOT
;
1137 nd
->path
.dentry
= dentry
;
1139 path_get(&nd
->path
);
1141 retval
= path_walk(name
, nd
);
1142 if (unlikely(!retval
&& !audit_dummy_context() && nd
->path
.dentry
&&
1143 nd
->path
.dentry
->d_inode
))
1144 audit_inode(name
, nd
->path
.dentry
);
1151 * path_lookup_open - lookup a file path with open intent
1152 * @dfd: the directory to use as base, or AT_FDCWD
1153 * @name: pointer to file name
1154 * @lookup_flags: lookup intent flags
1155 * @nd: pointer to nameidata
1156 * @open_flags: open intent flags
1158 int path_lookup_open(int dfd
, const char *name
, unsigned int lookup_flags
,
1159 struct nameidata
*nd
, int open_flags
)
1161 struct file
*filp
= get_empty_filp();
1166 nd
->intent
.open
.file
= filp
;
1167 nd
->intent
.open
.flags
= open_flags
;
1168 nd
->intent
.open
.create_mode
= 0;
1169 err
= do_path_lookup(dfd
, name
, lookup_flags
|LOOKUP_OPEN
, nd
);
1170 if (IS_ERR(nd
->intent
.open
.file
)) {
1172 err
= PTR_ERR(nd
->intent
.open
.file
);
1173 path_put(&nd
->path
);
1175 } else if (err
!= 0)
1176 release_open_intent(nd
);
1180 static struct dentry
*__lookup_hash(struct qstr
*name
,
1181 struct dentry
*base
, struct nameidata
*nd
)
1183 struct dentry
*dentry
;
1184 struct inode
*inode
;
1187 inode
= base
->d_inode
;
1190 * See if the low-level filesystem might want
1191 * to use its own hash..
1193 if (base
->d_op
&& base
->d_op
->d_hash
) {
1194 err
= base
->d_op
->d_hash(base
, name
);
1195 dentry
= ERR_PTR(err
);
1200 dentry
= cached_lookup(base
, name
, nd
);
1204 /* Don't create child dentry for a dead directory. */
1205 dentry
= ERR_PTR(-ENOENT
);
1206 if (IS_DEADDIR(inode
))
1209 new = d_alloc(base
, name
);
1210 dentry
= ERR_PTR(-ENOMEM
);
1213 dentry
= inode
->i_op
->lookup(inode
, new, nd
);
1224 * Restricted form of lookup. Doesn't follow links, single-component only,
1225 * needs parent already locked. Doesn't follow mounts.
1228 static struct dentry
*lookup_hash(struct nameidata
*nd
)
1232 err
= inode_permission(nd
->path
.dentry
->d_inode
, MAY_EXEC
);
1234 return ERR_PTR(err
);
1235 return __lookup_hash(&nd
->last
, nd
->path
.dentry
, nd
);
1238 static int __lookup_one_len(const char *name
, struct qstr
*this,
1239 struct dentry
*base
, int len
)
1249 hash
= init_name_hash();
1251 c
= *(const unsigned char *)name
++;
1252 if (c
== '/' || c
== '\0')
1254 hash
= partial_name_hash(c
, hash
);
1256 this->hash
= end_name_hash(hash
);
1261 * lookup_one_len - filesystem helper to lookup single pathname component
1262 * @name: pathname component to lookup
1263 * @base: base directory to lookup from
1264 * @len: maximum length @len should be interpreted to
1266 * Note that this routine is purely a helper for filesystem usage and should
1267 * not be called by generic code. Also note that by using this function the
1268 * nameidata argument is passed to the filesystem methods and a filesystem
1269 * using this helper needs to be prepared for that.
1271 struct dentry
*lookup_one_len(const char *name
, struct dentry
*base
, int len
)
1276 err
= __lookup_one_len(name
, &this, base
, len
);
1278 return ERR_PTR(err
);
1280 err
= inode_permission(base
->d_inode
, MAY_EXEC
);
1282 return ERR_PTR(err
);
1283 return __lookup_hash(&this, base
, NULL
);
1287 * lookup_one_noperm - bad hack for sysfs
1288 * @name: pathname component to lookup
1289 * @base: base directory to lookup from
1291 * This is a variant of lookup_one_len that doesn't perform any permission
1292 * checks. It's a horrible hack to work around the braindead sysfs
1293 * architecture and should not be used anywhere else.
1295 * DON'T USE THIS FUNCTION EVER, thanks.
1297 struct dentry
*lookup_one_noperm(const char *name
, struct dentry
*base
)
1302 err
= __lookup_one_len(name
, &this, base
, strlen(name
));
1304 return ERR_PTR(err
);
1305 return __lookup_hash(&this, base
, NULL
);
1308 int user_path_at(int dfd
, const char __user
*name
, unsigned flags
,
1311 struct nameidata nd
;
1312 char *tmp
= getname(name
);
1313 int err
= PTR_ERR(tmp
);
1316 BUG_ON(flags
& LOOKUP_PARENT
);
1318 err
= do_path_lookup(dfd
, tmp
, flags
, &nd
);
1326 static int user_path_parent(int dfd
, const char __user
*path
,
1327 struct nameidata
*nd
, char **name
)
1329 char *s
= getname(path
);
1335 error
= do_path_lookup(dfd
, s
, LOOKUP_PARENT
, nd
);
1345 * It's inline, so penalty for filesystems that don't use sticky bit is
1348 static inline int check_sticky(struct inode
*dir
, struct inode
*inode
)
1350 if (!(dir
->i_mode
& S_ISVTX
))
1352 if (inode
->i_uid
== current
->fsuid
)
1354 if (dir
->i_uid
== current
->fsuid
)
1356 return !capable(CAP_FOWNER
);
1360 * Check whether we can remove a link victim from directory dir, check
1361 * whether the type of victim is right.
1362 * 1. We can't do it if dir is read-only (done in permission())
1363 * 2. We should have write and exec permissions on dir
1364 * 3. We can't remove anything from append-only dir
1365 * 4. We can't do anything with immutable dir (done in permission())
1366 * 5. If the sticky bit on dir is set we should either
1367 * a. be owner of dir, or
1368 * b. be owner of victim, or
1369 * c. have CAP_FOWNER capability
1370 * 6. If the victim is append-only or immutable we can't do antyhing with
1371 * links pointing to it.
1372 * 7. If we were asked to remove a directory and victim isn't one - ENOTDIR.
1373 * 8. If we were asked to remove a non-directory and victim isn't one - EISDIR.
1374 * 9. We can't remove a root or mountpoint.
1375 * 10. We don't allow removal of NFS sillyrenamed files; it's handled by
1376 * nfs_async_unlink().
1378 static int may_delete(struct inode
*dir
,struct dentry
*victim
,int isdir
)
1382 if (!victim
->d_inode
)
1385 BUG_ON(victim
->d_parent
->d_inode
!= dir
);
1386 audit_inode_child(victim
->d_name
.name
, victim
, dir
);
1388 error
= inode_permission(dir
, MAY_WRITE
| MAY_EXEC
);
1393 if (check_sticky(dir
, victim
->d_inode
)||IS_APPEND(victim
->d_inode
)||
1394 IS_IMMUTABLE(victim
->d_inode
))
1397 if (!S_ISDIR(victim
->d_inode
->i_mode
))
1399 if (IS_ROOT(victim
))
1401 } else if (S_ISDIR(victim
->d_inode
->i_mode
))
1403 if (IS_DEADDIR(dir
))
1405 if (victim
->d_flags
& DCACHE_NFSFS_RENAMED
)
1410 /* Check whether we can create an object with dentry child in directory
1412 * 1. We can't do it if child already exists (open has special treatment for
1413 * this case, but since we are inlined it's OK)
1414 * 2. We can't do it if dir is read-only (done in permission())
1415 * 3. We should have write and exec permissions on dir
1416 * 4. We can't do it if dir is immutable (done in permission())
1418 static inline int may_create(struct inode
*dir
, struct dentry
*child
)
1422 if (IS_DEADDIR(dir
))
1424 return inode_permission(dir
, MAY_WRITE
| MAY_EXEC
);
1428 * O_DIRECTORY translates into forcing a directory lookup.
1430 static inline int lookup_flags(unsigned int f
)
1432 unsigned long retval
= LOOKUP_FOLLOW
;
1435 retval
&= ~LOOKUP_FOLLOW
;
1437 if (f
& O_DIRECTORY
)
1438 retval
|= LOOKUP_DIRECTORY
;
1444 * p1 and p2 should be directories on the same fs.
1446 struct dentry
*lock_rename(struct dentry
*p1
, struct dentry
*p2
)
1451 mutex_lock_nested(&p1
->d_inode
->i_mutex
, I_MUTEX_PARENT
);
1455 mutex_lock(&p1
->d_inode
->i_sb
->s_vfs_rename_mutex
);
1457 p
= d_ancestor(p2
, p1
);
1459 mutex_lock_nested(&p2
->d_inode
->i_mutex
, I_MUTEX_PARENT
);
1460 mutex_lock_nested(&p1
->d_inode
->i_mutex
, I_MUTEX_CHILD
);
1464 p
= d_ancestor(p1
, p2
);
1466 mutex_lock_nested(&p1
->d_inode
->i_mutex
, I_MUTEX_PARENT
);
1467 mutex_lock_nested(&p2
->d_inode
->i_mutex
, I_MUTEX_CHILD
);
1471 mutex_lock_nested(&p1
->d_inode
->i_mutex
, I_MUTEX_PARENT
);
1472 mutex_lock_nested(&p2
->d_inode
->i_mutex
, I_MUTEX_CHILD
);
1476 void unlock_rename(struct dentry
*p1
, struct dentry
*p2
)
1478 mutex_unlock(&p1
->d_inode
->i_mutex
);
1480 mutex_unlock(&p2
->d_inode
->i_mutex
);
1481 mutex_unlock(&p1
->d_inode
->i_sb
->s_vfs_rename_mutex
);
1485 int vfs_create(struct inode
*dir
, struct dentry
*dentry
, int mode
,
1486 struct nameidata
*nd
)
1488 int error
= may_create(dir
, dentry
);
1493 if (!dir
->i_op
|| !dir
->i_op
->create
)
1494 return -EACCES
; /* shouldn't it be ENOSYS? */
1497 error
= security_inode_create(dir
, dentry
, mode
);
1501 error
= dir
->i_op
->create(dir
, dentry
, mode
, nd
);
1503 fsnotify_create(dir
, dentry
);
1507 int may_open(struct nameidata
*nd
, int acc_mode
, int flag
)
1509 struct dentry
*dentry
= nd
->path
.dentry
;
1510 struct inode
*inode
= dentry
->d_inode
;
1516 if (S_ISLNK(inode
->i_mode
))
1519 if (S_ISDIR(inode
->i_mode
) && (acc_mode
& MAY_WRITE
))
1523 * FIFO's, sockets and device files are special: they don't
1524 * actually live on the filesystem itself, and as such you
1525 * can write to them even if the filesystem is read-only.
1527 if (S_ISFIFO(inode
->i_mode
) || S_ISSOCK(inode
->i_mode
)) {
1529 } else if (S_ISBLK(inode
->i_mode
) || S_ISCHR(inode
->i_mode
)) {
1530 if (nd
->path
.mnt
->mnt_flags
& MNT_NODEV
)
1536 error
= vfs_permission(nd
, acc_mode
);
1540 * An append-only file must be opened in append mode for writing.
1542 if (IS_APPEND(inode
)) {
1543 if ((flag
& FMODE_WRITE
) && !(flag
& O_APPEND
))
1549 /* O_NOATIME can only be set by the owner or superuser */
1550 if (flag
& O_NOATIME
)
1551 if (!is_owner_or_cap(inode
))
1555 * Ensure there are no outstanding leases on the file.
1557 error
= break_lease(inode
, flag
);
1561 if (flag
& O_TRUNC
) {
1562 error
= get_write_access(inode
);
1567 * Refuse to truncate files with mandatory locks held on them.
1569 error
= locks_verify_locked(inode
);
1573 error
= do_truncate(dentry
, 0,
1574 ATTR_MTIME
|ATTR_CTIME
|ATTR_OPEN
,
1577 put_write_access(inode
);
1581 if (flag
& FMODE_WRITE
)
1588 * Be careful about ever adding any more callers of this
1589 * function. Its flags must be in the namei format, not
1590 * what get passed to sys_open().
1592 static int __open_namei_create(struct nameidata
*nd
, struct path
*path
,
1596 struct dentry
*dir
= nd
->path
.dentry
;
1598 if (!IS_POSIXACL(dir
->d_inode
))
1599 mode
&= ~current
->fs
->umask
;
1600 error
= vfs_create(dir
->d_inode
, path
->dentry
, mode
, nd
);
1601 mutex_unlock(&dir
->d_inode
->i_mutex
);
1602 dput(nd
->path
.dentry
);
1603 nd
->path
.dentry
= path
->dentry
;
1606 /* Don't check for write permission, don't truncate */
1607 return may_open(nd
, 0, flag
& ~O_TRUNC
);
1611 * Note that while the flag value (low two bits) for sys_open means:
1616 * it is changed into
1617 * 00 - no permissions needed
1618 * 01 - read-permission
1619 * 10 - write-permission
1621 * for the internal routines (ie open_namei()/follow_link() etc)
1622 * This is more logical, and also allows the 00 "no perm needed"
1623 * to be used for symlinks (where the permissions are checked
1627 static inline int open_to_namei_flags(int flag
)
1629 if ((flag
+1) & O_ACCMODE
)
1634 static int open_will_write_to_fs(int flag
, struct inode
*inode
)
1637 * We'll never write to the fs underlying
1640 if (special_file(inode
->i_mode
))
1642 return (flag
& O_TRUNC
);
1646 * Note that the low bits of the passed in "open_flag"
1647 * are not the same as in the local variable "flag". See
1648 * open_to_namei_flags() for more details.
1650 struct file
*do_filp_open(int dfd
, const char *pathname
,
1651 int open_flag
, int mode
)
1654 struct nameidata nd
;
1655 int acc_mode
, error
;
1660 int flag
= open_to_namei_flags(open_flag
);
1662 acc_mode
= MAY_OPEN
| ACC_MODE(flag
);
1664 /* O_TRUNC implies we need access checks for write permissions */
1666 acc_mode
|= MAY_WRITE
;
1668 /* Allow the LSM permission hook to distinguish append
1669 access from general write access. */
1670 if (flag
& O_APPEND
)
1671 acc_mode
|= MAY_APPEND
;
1674 * The simplest case - just a plain lookup.
1676 if (!(flag
& O_CREAT
)) {
1677 error
= path_lookup_open(dfd
, pathname
, lookup_flags(flag
),
1680 return ERR_PTR(error
);
1685 * Create - we need to know the parent.
1687 error
= do_path_lookup(dfd
, pathname
, LOOKUP_PARENT
, &nd
);
1689 return ERR_PTR(error
);
1692 * We have the parent and last component. First of all, check
1693 * that we are not asked to creat(2) an obvious directory - that
1697 if (nd
.last_type
!= LAST_NORM
|| nd
.last
.name
[nd
.last
.len
])
1701 filp
= get_empty_filp();
1704 nd
.intent
.open
.file
= filp
;
1705 nd
.intent
.open
.flags
= flag
;
1706 nd
.intent
.open
.create_mode
= mode
;
1707 dir
= nd
.path
.dentry
;
1708 nd
.flags
&= ~LOOKUP_PARENT
;
1709 nd
.flags
|= LOOKUP_CREATE
| LOOKUP_OPEN
;
1711 nd
.flags
|= LOOKUP_EXCL
;
1712 mutex_lock(&dir
->d_inode
->i_mutex
);
1713 path
.dentry
= lookup_hash(&nd
);
1714 path
.mnt
= nd
.path
.mnt
;
1717 error
= PTR_ERR(path
.dentry
);
1718 if (IS_ERR(path
.dentry
)) {
1719 mutex_unlock(&dir
->d_inode
->i_mutex
);
1723 if (IS_ERR(nd
.intent
.open
.file
)) {
1724 error
= PTR_ERR(nd
.intent
.open
.file
);
1725 goto exit_mutex_unlock
;
1728 /* Negative dentry, just create the file */
1729 if (!path
.dentry
->d_inode
) {
1731 * This write is needed to ensure that a
1732 * ro->rw transition does not occur between
1733 * the time when the file is created and when
1734 * a permanent write count is taken through
1735 * the 'struct file' in nameidata_to_filp().
1737 error
= mnt_want_write(nd
.path
.mnt
);
1739 goto exit_mutex_unlock
;
1740 error
= __open_namei_create(&nd
, &path
, flag
, mode
);
1742 mnt_drop_write(nd
.path
.mnt
);
1745 filp
= nameidata_to_filp(&nd
, open_flag
);
1746 mnt_drop_write(nd
.path
.mnt
);
1751 * It already exists.
1753 mutex_unlock(&dir
->d_inode
->i_mutex
);
1754 audit_inode(pathname
, path
.dentry
);
1760 if (__follow_mount(&path
)) {
1762 if (flag
& O_NOFOLLOW
)
1767 if (!path
.dentry
->d_inode
)
1769 if (path
.dentry
->d_inode
->i_op
&& path
.dentry
->d_inode
->i_op
->follow_link
)
1772 path_to_nameidata(&path
, &nd
);
1774 if (path
.dentry
->d_inode
&& S_ISDIR(path
.dentry
->d_inode
->i_mode
))
1779 * 1. may_open() truncates a file
1780 * 2. a rw->ro mount transition occurs
1781 * 3. nameidata_to_filp() fails due to
1783 * That would be inconsistent, and should
1784 * be avoided. Taking this mnt write here
1785 * ensures that (2) can not occur.
1787 will_write
= open_will_write_to_fs(flag
, nd
.path
.dentry
->d_inode
);
1789 error
= mnt_want_write(nd
.path
.mnt
);
1793 error
= may_open(&nd
, acc_mode
, flag
);
1796 mnt_drop_write(nd
.path
.mnt
);
1799 filp
= nameidata_to_filp(&nd
, open_flag
);
1801 * It is now safe to drop the mnt write
1802 * because the filp has had a write taken
1806 mnt_drop_write(nd
.path
.mnt
);
1810 mutex_unlock(&dir
->d_inode
->i_mutex
);
1812 path_put_conditional(&path
, &nd
);
1814 if (!IS_ERR(nd
.intent
.open
.file
))
1815 release_open_intent(&nd
);
1818 return ERR_PTR(error
);
1822 if (flag
& O_NOFOLLOW
)
1825 * This is subtle. Instead of calling do_follow_link() we do the
1826 * thing by hands. The reason is that this way we have zero link_count
1827 * and path_walk() (called from ->follow_link) honoring LOOKUP_PARENT.
1828 * After that we have the parent and last component, i.e.
1829 * we are in the same situation as after the first path_walk().
1830 * Well, almost - if the last component is normal we get its copy
1831 * stored in nd->last.name and we will have to putname() it when we
1832 * are done. Procfs-like symlinks just set LAST_BIND.
1834 nd
.flags
|= LOOKUP_PARENT
;
1835 error
= security_inode_follow_link(path
.dentry
, &nd
);
1838 error
= __do_follow_link(&path
, &nd
);
1840 /* Does someone understand code flow here? Or it is only
1841 * me so stupid? Anathema to whoever designed this non-sense
1842 * with "intent.open".
1844 release_open_intent(&nd
);
1845 return ERR_PTR(error
);
1847 nd
.flags
&= ~LOOKUP_PARENT
;
1848 if (nd
.last_type
== LAST_BIND
)
1851 if (nd
.last_type
!= LAST_NORM
)
1853 if (nd
.last
.name
[nd
.last
.len
]) {
1854 __putname(nd
.last
.name
);
1859 __putname(nd
.last
.name
);
1862 dir
= nd
.path
.dentry
;
1863 mutex_lock(&dir
->d_inode
->i_mutex
);
1864 path
.dentry
= lookup_hash(&nd
);
1865 path
.mnt
= nd
.path
.mnt
;
1866 __putname(nd
.last
.name
);
1871 * filp_open - open file and return file pointer
1873 * @filename: path to open
1874 * @flags: open flags as per the open(2) second argument
1875 * @mode: mode for the new file if O_CREAT is set, else ignored
1877 * This is the helper to open a file from kernelspace if you really
1878 * have to. But in generally you should not do this, so please move
1879 * along, nothing to see here..
1881 struct file
*filp_open(const char *filename
, int flags
, int mode
)
1883 return do_filp_open(AT_FDCWD
, filename
, flags
, mode
);
1885 EXPORT_SYMBOL(filp_open
);
1888 * lookup_create - lookup a dentry, creating it if it doesn't exist
1889 * @nd: nameidata info
1890 * @is_dir: directory flag
1892 * Simple function to lookup and return a dentry and create it
1893 * if it doesn't exist. Is SMP-safe.
1895 * Returns with nd->path.dentry->d_inode->i_mutex locked.
1897 struct dentry
*lookup_create(struct nameidata
*nd
, int is_dir
)
1899 struct dentry
*dentry
= ERR_PTR(-EEXIST
);
1901 mutex_lock_nested(&nd
->path
.dentry
->d_inode
->i_mutex
, I_MUTEX_PARENT
);
1903 * Yucky last component or no last component at all?
1904 * (foo/., foo/.., /////)
1906 if (nd
->last_type
!= LAST_NORM
)
1908 nd
->flags
&= ~LOOKUP_PARENT
;
1909 nd
->flags
|= LOOKUP_CREATE
| LOOKUP_EXCL
;
1910 nd
->intent
.open
.flags
= O_EXCL
;
1913 * Do the final lookup.
1915 dentry
= lookup_hash(nd
);
1919 if (dentry
->d_inode
)
1922 * Special case - lookup gave negative, but... we had foo/bar/
1923 * From the vfs_mknod() POV we just have a negative dentry -
1924 * all is fine. Let's be bastards - you had / on the end, you've
1925 * been asking for (non-existent) directory. -ENOENT for you.
1927 if (unlikely(!is_dir
&& nd
->last
.name
[nd
->last
.len
])) {
1929 dentry
= ERR_PTR(-ENOENT
);
1934 dentry
= ERR_PTR(-EEXIST
);
1938 EXPORT_SYMBOL_GPL(lookup_create
);
1940 int vfs_mknod(struct inode
*dir
, struct dentry
*dentry
, int mode
, dev_t dev
)
1942 int error
= may_create(dir
, dentry
);
1947 if ((S_ISCHR(mode
) || S_ISBLK(mode
)) && !capable(CAP_MKNOD
))
1950 if (!dir
->i_op
|| !dir
->i_op
->mknod
)
1953 error
= devcgroup_inode_mknod(mode
, dev
);
1957 error
= security_inode_mknod(dir
, dentry
, mode
, dev
);
1962 error
= dir
->i_op
->mknod(dir
, dentry
, mode
, dev
);
1964 fsnotify_create(dir
, dentry
);
1968 static int may_mknod(mode_t mode
)
1970 switch (mode
& S_IFMT
) {
1976 case 0: /* zero mode translates to S_IFREG */
1985 asmlinkage
long sys_mknodat(int dfd
, const char __user
*filename
, int mode
,
1990 struct dentry
*dentry
;
1991 struct nameidata nd
;
1996 error
= user_path_parent(dfd
, filename
, &nd
, &tmp
);
2000 dentry
= lookup_create(&nd
, 0);
2001 if (IS_ERR(dentry
)) {
2002 error
= PTR_ERR(dentry
);
2005 if (!IS_POSIXACL(nd
.path
.dentry
->d_inode
))
2006 mode
&= ~current
->fs
->umask
;
2007 error
= may_mknod(mode
);
2010 error
= mnt_want_write(nd
.path
.mnt
);
2013 switch (mode
& S_IFMT
) {
2014 case 0: case S_IFREG
:
2015 error
= vfs_create(nd
.path
.dentry
->d_inode
,dentry
,mode
,&nd
);
2017 case S_IFCHR
: case S_IFBLK
:
2018 error
= vfs_mknod(nd
.path
.dentry
->d_inode
,dentry
,mode
,
2019 new_decode_dev(dev
));
2021 case S_IFIFO
: case S_IFSOCK
:
2022 error
= vfs_mknod(nd
.path
.dentry
->d_inode
,dentry
,mode
,0);
2025 mnt_drop_write(nd
.path
.mnt
);
2029 mutex_unlock(&nd
.path
.dentry
->d_inode
->i_mutex
);
2036 asmlinkage
long sys_mknod(const char __user
*filename
, int mode
, unsigned dev
)
2038 return sys_mknodat(AT_FDCWD
, filename
, mode
, dev
);
2041 int vfs_mkdir(struct inode
*dir
, struct dentry
*dentry
, int mode
)
2043 int error
= may_create(dir
, dentry
);
2048 if (!dir
->i_op
|| !dir
->i_op
->mkdir
)
2051 mode
&= (S_IRWXUGO
|S_ISVTX
);
2052 error
= security_inode_mkdir(dir
, dentry
, mode
);
2057 error
= dir
->i_op
->mkdir(dir
, dentry
, mode
);
2059 fsnotify_mkdir(dir
, dentry
);
2063 asmlinkage
long sys_mkdirat(int dfd
, const char __user
*pathname
, int mode
)
2067 struct dentry
*dentry
;
2068 struct nameidata nd
;
2070 error
= user_path_parent(dfd
, pathname
, &nd
, &tmp
);
2074 dentry
= lookup_create(&nd
, 1);
2075 error
= PTR_ERR(dentry
);
2079 if (!IS_POSIXACL(nd
.path
.dentry
->d_inode
))
2080 mode
&= ~current
->fs
->umask
;
2081 error
= mnt_want_write(nd
.path
.mnt
);
2084 error
= vfs_mkdir(nd
.path
.dentry
->d_inode
, dentry
, mode
);
2085 mnt_drop_write(nd
.path
.mnt
);
2089 mutex_unlock(&nd
.path
.dentry
->d_inode
->i_mutex
);
2096 asmlinkage
long sys_mkdir(const char __user
*pathname
, int mode
)
2098 return sys_mkdirat(AT_FDCWD
, pathname
, mode
);
2102 * We try to drop the dentry early: we should have
2103 * a usage count of 2 if we're the only user of this
2104 * dentry, and if that is true (possibly after pruning
2105 * the dcache), then we drop the dentry now.
2107 * A low-level filesystem can, if it choses, legally
2110 * if (!d_unhashed(dentry))
2113 * if it cannot handle the case of removing a directory
2114 * that is still in use by something else..
2116 void dentry_unhash(struct dentry
*dentry
)
2119 shrink_dcache_parent(dentry
);
2120 spin_lock(&dcache_lock
);
2121 spin_lock(&dentry
->d_lock
);
2122 if (atomic_read(&dentry
->d_count
) == 2)
2124 spin_unlock(&dentry
->d_lock
);
2125 spin_unlock(&dcache_lock
);
2128 int vfs_rmdir(struct inode
*dir
, struct dentry
*dentry
)
2130 int error
= may_delete(dir
, dentry
, 1);
2135 if (!dir
->i_op
|| !dir
->i_op
->rmdir
)
2140 mutex_lock(&dentry
->d_inode
->i_mutex
);
2141 dentry_unhash(dentry
);
2142 if (d_mountpoint(dentry
))
2145 error
= security_inode_rmdir(dir
, dentry
);
2147 error
= dir
->i_op
->rmdir(dir
, dentry
);
2149 dentry
->d_inode
->i_flags
|= S_DEAD
;
2152 mutex_unlock(&dentry
->d_inode
->i_mutex
);
2161 static long do_rmdir(int dfd
, const char __user
*pathname
)
2165 struct dentry
*dentry
;
2166 struct nameidata nd
;
2168 error
= user_path_parent(dfd
, pathname
, &nd
, &name
);
2172 switch(nd
.last_type
) {
2184 nd
.flags
&= ~LOOKUP_PARENT
;
2186 mutex_lock_nested(&nd
.path
.dentry
->d_inode
->i_mutex
, I_MUTEX_PARENT
);
2187 dentry
= lookup_hash(&nd
);
2188 error
= PTR_ERR(dentry
);
2191 error
= mnt_want_write(nd
.path
.mnt
);
2194 error
= vfs_rmdir(nd
.path
.dentry
->d_inode
, dentry
);
2195 mnt_drop_write(nd
.path
.mnt
);
2199 mutex_unlock(&nd
.path
.dentry
->d_inode
->i_mutex
);
2206 asmlinkage
long sys_rmdir(const char __user
*pathname
)
2208 return do_rmdir(AT_FDCWD
, pathname
);
2211 int vfs_unlink(struct inode
*dir
, struct dentry
*dentry
)
2213 int error
= may_delete(dir
, dentry
, 0);
2218 if (!dir
->i_op
|| !dir
->i_op
->unlink
)
2223 mutex_lock(&dentry
->d_inode
->i_mutex
);
2224 if (d_mountpoint(dentry
))
2227 error
= security_inode_unlink(dir
, dentry
);
2229 error
= dir
->i_op
->unlink(dir
, dentry
);
2231 mutex_unlock(&dentry
->d_inode
->i_mutex
);
2233 /* We don't d_delete() NFS sillyrenamed files--they still exist. */
2234 if (!error
&& !(dentry
->d_flags
& DCACHE_NFSFS_RENAMED
)) {
2235 fsnotify_link_count(dentry
->d_inode
);
2243 * Make sure that the actual truncation of the file will occur outside its
2244 * directory's i_mutex. Truncate can take a long time if there is a lot of
2245 * writeout happening, and we don't want to prevent access to the directory
2246 * while waiting on the I/O.
2248 static long do_unlinkat(int dfd
, const char __user
*pathname
)
2252 struct dentry
*dentry
;
2253 struct nameidata nd
;
2254 struct inode
*inode
= NULL
;
2256 error
= user_path_parent(dfd
, pathname
, &nd
, &name
);
2261 if (nd
.last_type
!= LAST_NORM
)
2264 nd
.flags
&= ~LOOKUP_PARENT
;
2266 mutex_lock_nested(&nd
.path
.dentry
->d_inode
->i_mutex
, I_MUTEX_PARENT
);
2267 dentry
= lookup_hash(&nd
);
2268 error
= PTR_ERR(dentry
);
2269 if (!IS_ERR(dentry
)) {
2270 /* Why not before? Because we want correct error value */
2271 if (nd
.last
.name
[nd
.last
.len
])
2273 inode
= dentry
->d_inode
;
2275 atomic_inc(&inode
->i_count
);
2276 error
= mnt_want_write(nd
.path
.mnt
);
2279 error
= vfs_unlink(nd
.path
.dentry
->d_inode
, dentry
);
2280 mnt_drop_write(nd
.path
.mnt
);
2284 mutex_unlock(&nd
.path
.dentry
->d_inode
->i_mutex
);
2286 iput(inode
); /* truncate the inode here */
2293 error
= !dentry
->d_inode
? -ENOENT
:
2294 S_ISDIR(dentry
->d_inode
->i_mode
) ? -EISDIR
: -ENOTDIR
;
2298 asmlinkage
long sys_unlinkat(int dfd
, const char __user
*pathname
, int flag
)
2300 if ((flag
& ~AT_REMOVEDIR
) != 0)
2303 if (flag
& AT_REMOVEDIR
)
2304 return do_rmdir(dfd
, pathname
);
2306 return do_unlinkat(dfd
, pathname
);
2309 asmlinkage
long sys_unlink(const char __user
*pathname
)
2311 return do_unlinkat(AT_FDCWD
, pathname
);
2314 int vfs_symlink(struct inode
*dir
, struct dentry
*dentry
, const char *oldname
)
2316 int error
= may_create(dir
, dentry
);
2321 if (!dir
->i_op
|| !dir
->i_op
->symlink
)
2324 error
= security_inode_symlink(dir
, dentry
, oldname
);
2329 error
= dir
->i_op
->symlink(dir
, dentry
, oldname
);
2331 fsnotify_create(dir
, dentry
);
2335 asmlinkage
long sys_symlinkat(const char __user
*oldname
,
2336 int newdfd
, const char __user
*newname
)
2341 struct dentry
*dentry
;
2342 struct nameidata nd
;
2344 from
= getname(oldname
);
2346 return PTR_ERR(from
);
2348 error
= user_path_parent(newdfd
, newname
, &nd
, &to
);
2352 dentry
= lookup_create(&nd
, 0);
2353 error
= PTR_ERR(dentry
);
2357 error
= mnt_want_write(nd
.path
.mnt
);
2360 error
= vfs_symlink(nd
.path
.dentry
->d_inode
, dentry
, from
);
2361 mnt_drop_write(nd
.path
.mnt
);
2365 mutex_unlock(&nd
.path
.dentry
->d_inode
->i_mutex
);
2373 asmlinkage
long sys_symlink(const char __user
*oldname
, const char __user
*newname
)
2375 return sys_symlinkat(oldname
, AT_FDCWD
, newname
);
2378 int vfs_link(struct dentry
*old_dentry
, struct inode
*dir
, struct dentry
*new_dentry
)
2380 struct inode
*inode
= old_dentry
->d_inode
;
2386 error
= may_create(dir
, new_dentry
);
2390 if (dir
->i_sb
!= inode
->i_sb
)
2394 * A link to an append-only or immutable file cannot be created.
2396 if (IS_APPEND(inode
) || IS_IMMUTABLE(inode
))
2398 if (!dir
->i_op
|| !dir
->i_op
->link
)
2400 if (S_ISDIR(inode
->i_mode
))
2403 error
= security_inode_link(old_dentry
, dir
, new_dentry
);
2407 mutex_lock(&inode
->i_mutex
);
2409 error
= dir
->i_op
->link(old_dentry
, dir
, new_dentry
);
2410 mutex_unlock(&inode
->i_mutex
);
2412 fsnotify_link(dir
, inode
, new_dentry
);
2417 * Hardlinks are often used in delicate situations. We avoid
2418 * security-related surprises by not following symlinks on the
2421 * We don't follow them on the oldname either to be compatible
2422 * with linux 2.0, and to avoid hard-linking to directories
2423 * and other special files. --ADM
2425 asmlinkage
long sys_linkat(int olddfd
, const char __user
*oldname
,
2426 int newdfd
, const char __user
*newname
,
2429 struct dentry
*new_dentry
;
2430 struct nameidata nd
;
2431 struct path old_path
;
2435 if ((flags
& ~AT_SYMLINK_FOLLOW
) != 0)
2438 error
= user_path_at(olddfd
, oldname
,
2439 flags
& AT_SYMLINK_FOLLOW
? LOOKUP_FOLLOW
: 0,
2444 error
= user_path_parent(newdfd
, newname
, &nd
, &to
);
2448 if (old_path
.mnt
!= nd
.path
.mnt
)
2450 new_dentry
= lookup_create(&nd
, 0);
2451 error
= PTR_ERR(new_dentry
);
2452 if (IS_ERR(new_dentry
))
2454 error
= mnt_want_write(nd
.path
.mnt
);
2457 error
= vfs_link(old_path
.dentry
, nd
.path
.dentry
->d_inode
, new_dentry
);
2458 mnt_drop_write(nd
.path
.mnt
);
2462 mutex_unlock(&nd
.path
.dentry
->d_inode
->i_mutex
);
2467 path_put(&old_path
);
2472 asmlinkage
long sys_link(const char __user
*oldname
, const char __user
*newname
)
2474 return sys_linkat(AT_FDCWD
, oldname
, AT_FDCWD
, newname
, 0);
2478 * The worst of all namespace operations - renaming directory. "Perverted"
2479 * doesn't even start to describe it. Somebody in UCB had a heck of a trip...
2481 * a) we can get into loop creation. Check is done in is_subdir().
2482 * b) race potential - two innocent renames can create a loop together.
2483 * That's where 4.4 screws up. Current fix: serialization on
2484 * sb->s_vfs_rename_mutex. We might be more accurate, but that's another
2486 * c) we have to lock _three_ objects - parents and victim (if it exists).
2487 * And that - after we got ->i_mutex on parents (until then we don't know
2488 * whether the target exists). Solution: try to be smart with locking
2489 * order for inodes. We rely on the fact that tree topology may change
2490 * only under ->s_vfs_rename_mutex _and_ that parent of the object we
2491 * move will be locked. Thus we can rank directories by the tree
2492 * (ancestors first) and rank all non-directories after them.
2493 * That works since everybody except rename does "lock parent, lookup,
2494 * lock child" and rename is under ->s_vfs_rename_mutex.
2495 * HOWEVER, it relies on the assumption that any object with ->lookup()
2496 * has no more than 1 dentry. If "hybrid" objects will ever appear,
2497 * we'd better make sure that there's no link(2) for them.
2498 * d) some filesystems don't support opened-but-unlinked directories,
2499 * either because of layout or because they are not ready to deal with
2500 * all cases correctly. The latter will be fixed (taking this sort of
2501 * stuff into VFS), but the former is not going away. Solution: the same
2502 * trick as in rmdir().
2503 * e) conversion from fhandle to dentry may come in the wrong moment - when
2504 * we are removing the target. Solution: we will have to grab ->i_mutex
2505 * in the fhandle_to_dentry code. [FIXME - current nfsfh.c relies on
2506 * ->i_mutex on parents, which works but leads to some truely excessive
2509 static int vfs_rename_dir(struct inode
*old_dir
, struct dentry
*old_dentry
,
2510 struct inode
*new_dir
, struct dentry
*new_dentry
)
2513 struct inode
*target
;
2516 * If we are going to change the parent - check write permissions,
2517 * we'll need to flip '..'.
2519 if (new_dir
!= old_dir
) {
2520 error
= inode_permission(old_dentry
->d_inode
, MAY_WRITE
);
2525 error
= security_inode_rename(old_dir
, old_dentry
, new_dir
, new_dentry
);
2529 target
= new_dentry
->d_inode
;
2531 mutex_lock(&target
->i_mutex
);
2532 dentry_unhash(new_dentry
);
2534 if (d_mountpoint(old_dentry
)||d_mountpoint(new_dentry
))
2537 error
= old_dir
->i_op
->rename(old_dir
, old_dentry
, new_dir
, new_dentry
);
2540 target
->i_flags
|= S_DEAD
;
2541 mutex_unlock(&target
->i_mutex
);
2542 if (d_unhashed(new_dentry
))
2543 d_rehash(new_dentry
);
2547 if (!(old_dir
->i_sb
->s_type
->fs_flags
& FS_RENAME_DOES_D_MOVE
))
2548 d_move(old_dentry
,new_dentry
);
2552 static int vfs_rename_other(struct inode
*old_dir
, struct dentry
*old_dentry
,
2553 struct inode
*new_dir
, struct dentry
*new_dentry
)
2555 struct inode
*target
;
2558 error
= security_inode_rename(old_dir
, old_dentry
, new_dir
, new_dentry
);
2563 target
= new_dentry
->d_inode
;
2565 mutex_lock(&target
->i_mutex
);
2566 if (d_mountpoint(old_dentry
)||d_mountpoint(new_dentry
))
2569 error
= old_dir
->i_op
->rename(old_dir
, old_dentry
, new_dir
, new_dentry
);
2571 if (!(old_dir
->i_sb
->s_type
->fs_flags
& FS_RENAME_DOES_D_MOVE
))
2572 d_move(old_dentry
, new_dentry
);
2575 mutex_unlock(&target
->i_mutex
);
2580 int vfs_rename(struct inode
*old_dir
, struct dentry
*old_dentry
,
2581 struct inode
*new_dir
, struct dentry
*new_dentry
)
2584 int is_dir
= S_ISDIR(old_dentry
->d_inode
->i_mode
);
2585 const char *old_name
;
2587 if (old_dentry
->d_inode
== new_dentry
->d_inode
)
2590 error
= may_delete(old_dir
, old_dentry
, is_dir
);
2594 if (!new_dentry
->d_inode
)
2595 error
= may_create(new_dir
, new_dentry
);
2597 error
= may_delete(new_dir
, new_dentry
, is_dir
);
2601 if (!old_dir
->i_op
|| !old_dir
->i_op
->rename
)
2604 DQUOT_INIT(old_dir
);
2605 DQUOT_INIT(new_dir
);
2607 old_name
= fsnotify_oldname_init(old_dentry
->d_name
.name
);
2610 error
= vfs_rename_dir(old_dir
,old_dentry
,new_dir
,new_dentry
);
2612 error
= vfs_rename_other(old_dir
,old_dentry
,new_dir
,new_dentry
);
2614 const char *new_name
= old_dentry
->d_name
.name
;
2615 fsnotify_move(old_dir
, new_dir
, old_name
, new_name
, is_dir
,
2616 new_dentry
->d_inode
, old_dentry
);
2618 fsnotify_oldname_free(old_name
);
2623 asmlinkage
long sys_renameat(int olddfd
, const char __user
*oldname
,
2624 int newdfd
, const char __user
*newname
)
2626 struct dentry
*old_dir
, *new_dir
;
2627 struct dentry
*old_dentry
, *new_dentry
;
2628 struct dentry
*trap
;
2629 struct nameidata oldnd
, newnd
;
2634 error
= user_path_parent(olddfd
, oldname
, &oldnd
, &from
);
2638 error
= user_path_parent(newdfd
, newname
, &newnd
, &to
);
2643 if (oldnd
.path
.mnt
!= newnd
.path
.mnt
)
2646 old_dir
= oldnd
.path
.dentry
;
2648 if (oldnd
.last_type
!= LAST_NORM
)
2651 new_dir
= newnd
.path
.dentry
;
2652 if (newnd
.last_type
!= LAST_NORM
)
2655 oldnd
.flags
&= ~LOOKUP_PARENT
;
2656 newnd
.flags
&= ~LOOKUP_PARENT
;
2658 trap
= lock_rename(new_dir
, old_dir
);
2660 old_dentry
= lookup_hash(&oldnd
);
2661 error
= PTR_ERR(old_dentry
);
2662 if (IS_ERR(old_dentry
))
2664 /* source must exist */
2666 if (!old_dentry
->d_inode
)
2668 /* unless the source is a directory trailing slashes give -ENOTDIR */
2669 if (!S_ISDIR(old_dentry
->d_inode
->i_mode
)) {
2671 if (oldnd
.last
.name
[oldnd
.last
.len
])
2673 if (newnd
.last
.name
[newnd
.last
.len
])
2676 /* source should not be ancestor of target */
2678 if (old_dentry
== trap
)
2680 new_dentry
= lookup_hash(&newnd
);
2681 error
= PTR_ERR(new_dentry
);
2682 if (IS_ERR(new_dentry
))
2684 /* target should not be an ancestor of source */
2686 if (new_dentry
== trap
)
2689 error
= mnt_want_write(oldnd
.path
.mnt
);
2692 error
= vfs_rename(old_dir
->d_inode
, old_dentry
,
2693 new_dir
->d_inode
, new_dentry
);
2694 mnt_drop_write(oldnd
.path
.mnt
);
2700 unlock_rename(new_dir
, old_dir
);
2702 path_put(&newnd
.path
);
2705 path_put(&oldnd
.path
);
2711 asmlinkage
long sys_rename(const char __user
*oldname
, const char __user
*newname
)
2713 return sys_renameat(AT_FDCWD
, oldname
, AT_FDCWD
, newname
);
2716 int vfs_readlink(struct dentry
*dentry
, char __user
*buffer
, int buflen
, const char *link
)
2720 len
= PTR_ERR(link
);
2725 if (len
> (unsigned) buflen
)
2727 if (copy_to_user(buffer
, link
, len
))
2734 * A helper for ->readlink(). This should be used *ONLY* for symlinks that
2735 * have ->follow_link() touching nd only in nd_set_link(). Using (or not
2736 * using) it for any given inode is up to filesystem.
2738 int generic_readlink(struct dentry
*dentry
, char __user
*buffer
, int buflen
)
2740 struct nameidata nd
;
2745 cookie
= dentry
->d_inode
->i_op
->follow_link(dentry
, &nd
);
2747 return PTR_ERR(cookie
);
2749 res
= vfs_readlink(dentry
, buffer
, buflen
, nd_get_link(&nd
));
2750 if (dentry
->d_inode
->i_op
->put_link
)
2751 dentry
->d_inode
->i_op
->put_link(dentry
, &nd
, cookie
);
2755 int vfs_follow_link(struct nameidata
*nd
, const char *link
)
2757 return __vfs_follow_link(nd
, link
);
2760 /* get the link contents into pagecache */
2761 static char *page_getlink(struct dentry
* dentry
, struct page
**ppage
)
2764 struct address_space
*mapping
= dentry
->d_inode
->i_mapping
;
2765 page
= read_mapping_page(mapping
, 0, NULL
);
2772 int page_readlink(struct dentry
*dentry
, char __user
*buffer
, int buflen
)
2774 struct page
*page
= NULL
;
2775 char *s
= page_getlink(dentry
, &page
);
2776 int res
= vfs_readlink(dentry
,buffer
,buflen
,s
);
2779 page_cache_release(page
);
2784 void *page_follow_link_light(struct dentry
*dentry
, struct nameidata
*nd
)
2786 struct page
*page
= NULL
;
2787 nd_set_link(nd
, page_getlink(dentry
, &page
));
2791 void page_put_link(struct dentry
*dentry
, struct nameidata
*nd
, void *cookie
)
2793 struct page
*page
= cookie
;
2797 page_cache_release(page
);
2801 int __page_symlink(struct inode
*inode
, const char *symname
, int len
,
2804 struct address_space
*mapping
= inode
->i_mapping
;
2811 err
= pagecache_write_begin(NULL
, mapping
, 0, len
-1,
2812 AOP_FLAG_UNINTERRUPTIBLE
, &page
, &fsdata
);
2816 kaddr
= kmap_atomic(page
, KM_USER0
);
2817 memcpy(kaddr
, symname
, len
-1);
2818 kunmap_atomic(kaddr
, KM_USER0
);
2820 err
= pagecache_write_end(NULL
, mapping
, 0, len
-1, len
-1,
2827 mark_inode_dirty(inode
);
2833 int page_symlink(struct inode
*inode
, const char *symname
, int len
)
2835 return __page_symlink(inode
, symname
, len
,
2836 mapping_gfp_mask(inode
->i_mapping
));
2839 const struct inode_operations page_symlink_inode_operations
= {
2840 .readlink
= generic_readlink
,
2841 .follow_link
= page_follow_link_light
,
2842 .put_link
= page_put_link
,
2845 EXPORT_SYMBOL(user_path_at
);
2846 EXPORT_SYMBOL(follow_down
);
2847 EXPORT_SYMBOL(follow_up
);
2848 EXPORT_SYMBOL(get_write_access
); /* binfmt_aout */
2849 EXPORT_SYMBOL(getname
);
2850 EXPORT_SYMBOL(lock_rename
);
2851 EXPORT_SYMBOL(lookup_one_len
);
2852 EXPORT_SYMBOL(page_follow_link_light
);
2853 EXPORT_SYMBOL(page_put_link
);
2854 EXPORT_SYMBOL(page_readlink
);
2855 EXPORT_SYMBOL(__page_symlink
);
2856 EXPORT_SYMBOL(page_symlink
);
2857 EXPORT_SYMBOL(page_symlink_inode_operations
);
2858 EXPORT_SYMBOL(path_lookup
);
2859 EXPORT_SYMBOL(kern_path
);
2860 EXPORT_SYMBOL(vfs_path_lookup
);
2861 EXPORT_SYMBOL(inode_permission
);
2862 EXPORT_SYMBOL(vfs_permission
);
2863 EXPORT_SYMBOL(file_permission
);
2864 EXPORT_SYMBOL(unlock_rename
);
2865 EXPORT_SYMBOL(vfs_create
);
2866 EXPORT_SYMBOL(vfs_follow_link
);
2867 EXPORT_SYMBOL(vfs_link
);
2868 EXPORT_SYMBOL(vfs_mkdir
);
2869 EXPORT_SYMBOL(vfs_mknod
);
2870 EXPORT_SYMBOL(generic_permission
);
2871 EXPORT_SYMBOL(vfs_readlink
);
2872 EXPORT_SYMBOL(vfs_rename
);
2873 EXPORT_SYMBOL(vfs_rmdir
);
2874 EXPORT_SYMBOL(vfs_symlink
);
2875 EXPORT_SYMBOL(vfs_unlink
);
2876 EXPORT_SYMBOL(dentry_unhash
);
2877 EXPORT_SYMBOL(generic_readlink
);