[PATCH] pass MAY_OPEN to vfs_permission() explicitly
[linux-2.6/openmoko-kernel.git] / fs / namei.c
blob6b0e8e5e079ec409fe268ab726448fc44185a6a8
1 /*
2 * linux/fs/namei.c
4 * Copyright (C) 1991, 1992 Linus Torvalds
5 */
7 /*
8 * Some corrections by tytso.
9 */
11 /* [Feb 1997 T. Schoebel-Theuer] Complete rewrite of the pathname
12 * lookup logic.
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>
20 #include <linux/fs.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)
120 int retval;
121 unsigned long len = PATH_MAX;
123 if (!segment_eq(get_fs(), KERNEL_DS)) {
124 if ((unsigned long) filename >= TASK_SIZE)
125 return -EFAULT;
126 if (TASK_SIZE - (unsigned long) filename < PATH_MAX)
127 len = TASK_SIZE - (unsigned long) filename;
130 retval = strncpy_from_user(page, filename, len);
131 if (retval > 0) {
132 if (retval < len)
133 return 0;
134 return -ENAMETOOLONG;
135 } else if (!retval)
136 retval = -ENOENT;
137 return retval;
140 char * getname(const char __user * filename)
142 char *tmp, *result;
144 result = ERR_PTR(-ENOMEM);
145 tmp = __getname();
146 if (tmp) {
147 int retval = do_getname(filename, tmp);
149 result = tmp;
150 if (retval < 0) {
151 __putname(tmp);
152 result = ERR_PTR(retval);
155 audit_getname(result);
156 return result;
159 #ifdef CONFIG_AUDITSYSCALL
160 void putname(const char *name)
162 if (unlikely(!audit_dummy_context()))
163 audit_putname(name);
164 else
165 __putname(name);
167 EXPORT_SYMBOL(putname);
168 #endif
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)
190 mode >>= 6;
191 else {
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)
197 return error;
200 if (in_group_p(inode->i_gid))
201 mode >>= 3;
205 * If the DACs are ok we don't need any capability check.
207 if ((mask & ~mode) == 0)
208 return 0;
210 check_capabilities:
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))
218 return 0;
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))
225 return 0;
227 return -EACCES;
230 int permission(struct inode *inode, int mask, struct nameidata *nd)
232 int retval;
233 struct vfsmount *mnt = NULL;
235 if (nd)
236 mnt = nd->path.mnt;
238 if (mask & MAY_WRITE) {
239 umode_t mode = inode->i_mode;
242 * Nobody gets write access to a read-only fs.
244 if (IS_RDONLY(inode) &&
245 (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode)))
246 return -EROFS;
249 * Nobody gets write access to an immutable file.
251 if (IS_IMMUTABLE(inode))
252 return -EACCES;
255 if ((mask & MAY_EXEC) && S_ISREG(inode->i_mode)) {
257 * MAY_EXEC on regular files is denied if the fs is mounted
258 * with the "noexec" flag.
260 if (mnt && (mnt->mnt_flags & MNT_NOEXEC))
261 return -EACCES;
264 /* Ordinary permission routines do not understand MAY_APPEND. */
265 if (inode->i_op && inode->i_op->permission) {
266 retval = inode->i_op->permission(inode, mask);
267 if (!retval) {
269 * Exec permission on a regular file is denied if none
270 * of the execute bits are set.
272 * This check should be done by the ->permission()
273 * method.
275 if ((mask & MAY_EXEC) && S_ISREG(inode->i_mode) &&
276 !(inode->i_mode & S_IXUGO))
277 return -EACCES;
279 } else {
280 retval = generic_permission(inode, mask, NULL);
282 if (retval)
283 return retval;
285 retval = devcgroup_inode_permission(inode, mask);
286 if (retval)
287 return retval;
289 return security_inode_permission(inode,
290 mask & (MAY_READ|MAY_WRITE|MAY_EXEC));
294 * vfs_permission - check for access rights to a given path
295 * @nd: lookup result that describes the path
296 * @mask: right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
298 * Used to check for read/write/execute permissions on a path.
299 * We use "fsuid" for this, letting us set arbitrary permissions
300 * for filesystem access without changing the "normal" uids which
301 * are used for other things.
303 int vfs_permission(struct nameidata *nd, int mask)
305 return permission(nd->path.dentry->d_inode, mask, nd);
309 * file_permission - check for additional access rights to a given file
310 * @file: file to check access rights for
311 * @mask: right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
313 * Used to check for read/write/execute permissions on an already opened
314 * file.
316 * Note:
317 * Do not use this function in new code. All access checks should
318 * be done using vfs_permission().
320 int file_permission(struct file *file, int mask)
322 return permission(file->f_path.dentry->d_inode, mask, NULL);
326 * get_write_access() gets write permission for a file.
327 * put_write_access() releases this write permission.
328 * This is used for regular files.
329 * We cannot support write (and maybe mmap read-write shared) accesses and
330 * MAP_DENYWRITE mmappings simultaneously. The i_writecount field of an inode
331 * can have the following values:
332 * 0: no writers, no VM_DENYWRITE mappings
333 * < 0: (-i_writecount) vm_area_structs with VM_DENYWRITE set exist
334 * > 0: (i_writecount) users are writing to the file.
336 * Normally we operate on that counter with atomic_{inc,dec} and it's safe
337 * except for the cases where we don't hold i_writecount yet. Then we need to
338 * use {get,deny}_write_access() - these functions check the sign and refuse
339 * to do the change if sign is wrong. Exclusion between them is provided by
340 * the inode->i_lock spinlock.
343 int get_write_access(struct inode * inode)
345 spin_lock(&inode->i_lock);
346 if (atomic_read(&inode->i_writecount) < 0) {
347 spin_unlock(&inode->i_lock);
348 return -ETXTBSY;
350 atomic_inc(&inode->i_writecount);
351 spin_unlock(&inode->i_lock);
353 return 0;
356 int deny_write_access(struct file * file)
358 struct inode *inode = file->f_path.dentry->d_inode;
360 spin_lock(&inode->i_lock);
361 if (atomic_read(&inode->i_writecount) > 0) {
362 spin_unlock(&inode->i_lock);
363 return -ETXTBSY;
365 atomic_dec(&inode->i_writecount);
366 spin_unlock(&inode->i_lock);
368 return 0;
372 * path_get - get a reference to a path
373 * @path: path to get the reference to
375 * Given a path increment the reference count to the dentry and the vfsmount.
377 void path_get(struct path *path)
379 mntget(path->mnt);
380 dget(path->dentry);
382 EXPORT_SYMBOL(path_get);
385 * path_put - put a reference to a path
386 * @path: path to put the reference to
388 * Given a path decrement the reference count to the dentry and the vfsmount.
390 void path_put(struct path *path)
392 dput(path->dentry);
393 mntput(path->mnt);
395 EXPORT_SYMBOL(path_put);
398 * release_open_intent - free up open intent resources
399 * @nd: pointer to nameidata
401 void release_open_intent(struct nameidata *nd)
403 if (nd->intent.open.file->f_path.dentry == NULL)
404 put_filp(nd->intent.open.file);
405 else
406 fput(nd->intent.open.file);
409 static inline struct dentry *
410 do_revalidate(struct dentry *dentry, struct nameidata *nd)
412 int status = dentry->d_op->d_revalidate(dentry, nd);
413 if (unlikely(status <= 0)) {
415 * The dentry failed validation.
416 * If d_revalidate returned 0 attempt to invalidate
417 * the dentry otherwise d_revalidate is asking us
418 * to return a fail status.
420 if (!status) {
421 if (!d_invalidate(dentry)) {
422 dput(dentry);
423 dentry = NULL;
425 } else {
426 dput(dentry);
427 dentry = ERR_PTR(status);
430 return dentry;
434 * Internal lookup() using the new generic dcache.
435 * SMP-safe
437 static struct dentry * cached_lookup(struct dentry * parent, struct qstr * name, struct nameidata *nd)
439 struct dentry * dentry = __d_lookup(parent, name);
441 /* lockess __d_lookup may fail due to concurrent d_move()
442 * in some unrelated directory, so try with d_lookup
444 if (!dentry)
445 dentry = d_lookup(parent, name);
447 if (dentry && dentry->d_op && dentry->d_op->d_revalidate)
448 dentry = do_revalidate(dentry, nd);
450 return dentry;
454 * Short-cut version of permission(), for calling by
455 * path_walk(), when dcache lock is held. Combines parts
456 * of permission() and generic_permission(), and tests ONLY for
457 * MAY_EXEC permission.
459 * If appropriate, check DAC only. If not appropriate, or
460 * short-cut DAC fails, then call permission() to do more
461 * complete permission check.
463 static int exec_permission_lite(struct inode *inode,
464 struct nameidata *nd)
466 umode_t mode = inode->i_mode;
468 if (inode->i_op && inode->i_op->permission)
469 return -EAGAIN;
471 if (current->fsuid == inode->i_uid)
472 mode >>= 6;
473 else if (in_group_p(inode->i_gid))
474 mode >>= 3;
476 if (mode & MAY_EXEC)
477 goto ok;
479 if ((inode->i_mode & S_IXUGO) && capable(CAP_DAC_OVERRIDE))
480 goto ok;
482 if (S_ISDIR(inode->i_mode) && capable(CAP_DAC_OVERRIDE))
483 goto ok;
485 if (S_ISDIR(inode->i_mode) && capable(CAP_DAC_READ_SEARCH))
486 goto ok;
488 return -EACCES;
490 return security_inode_permission(inode, MAY_EXEC);
494 * This is called when everything else fails, and we actually have
495 * to go to the low-level filesystem to find out what we should do..
497 * We get the directory semaphore, and after getting that we also
498 * make sure that nobody added the entry to the dcache in the meantime..
499 * SMP-safe
501 static struct dentry * real_lookup(struct dentry * parent, struct qstr * name, struct nameidata *nd)
503 struct dentry * result;
504 struct inode *dir = parent->d_inode;
506 mutex_lock(&dir->i_mutex);
508 * First re-do the cached lookup just in case it was created
509 * while we waited for the directory semaphore..
511 * FIXME! This could use version numbering or similar to
512 * avoid unnecessary cache lookups.
514 * The "dcache_lock" is purely to protect the RCU list walker
515 * from concurrent renames at this point (we mustn't get false
516 * negatives from the RCU list walk here, unlike the optimistic
517 * fast walk).
519 * so doing d_lookup() (with seqlock), instead of lockfree __d_lookup
521 result = d_lookup(parent, name);
522 if (!result) {
523 struct dentry *dentry;
525 /* Don't create child dentry for a dead directory. */
526 result = ERR_PTR(-ENOENT);
527 if (IS_DEADDIR(dir))
528 goto out_unlock;
530 dentry = d_alloc(parent, name);
531 result = ERR_PTR(-ENOMEM);
532 if (dentry) {
533 result = dir->i_op->lookup(dir, dentry, nd);
534 if (result)
535 dput(dentry);
536 else
537 result = dentry;
539 out_unlock:
540 mutex_unlock(&dir->i_mutex);
541 return result;
545 * Uhhuh! Nasty case: the cache was re-populated while
546 * we waited on the semaphore. Need to revalidate.
548 mutex_unlock(&dir->i_mutex);
549 if (result->d_op && result->d_op->d_revalidate) {
550 result = do_revalidate(result, nd);
551 if (!result)
552 result = ERR_PTR(-ENOENT);
554 return result;
557 /* SMP-safe */
558 static __always_inline void
559 walk_init_root(const char *name, struct nameidata *nd)
561 struct fs_struct *fs = current->fs;
563 read_lock(&fs->lock);
564 nd->path = fs->root;
565 path_get(&fs->root);
566 read_unlock(&fs->lock);
570 * Wrapper to retry pathname resolution whenever the underlying
571 * file system returns an ESTALE.
573 * Retry the whole path once, forcing real lookup requests
574 * instead of relying on the dcache.
576 static __always_inline int link_path_walk(const char *name, struct nameidata *nd)
578 struct path save = nd->path;
579 int result;
581 /* make sure the stuff we saved doesn't go away */
582 path_get(&save);
584 result = __link_path_walk(name, nd);
585 if (result == -ESTALE) {
586 /* nd->path had been dropped */
587 nd->path = save;
588 path_get(&nd->path);
589 nd->flags |= LOOKUP_REVAL;
590 result = __link_path_walk(name, nd);
593 path_put(&save);
595 return result;
598 static __always_inline int __vfs_follow_link(struct nameidata *nd, const char *link)
600 int res = 0;
601 char *name;
602 if (IS_ERR(link))
603 goto fail;
605 if (*link == '/') {
606 path_put(&nd->path);
607 walk_init_root(link, nd);
609 res = link_path_walk(link, nd);
610 if (nd->depth || res || nd->last_type!=LAST_NORM)
611 return res;
613 * If it is an iterative symlinks resolution in open_namei() we
614 * have to copy the last component. And all that crap because of
615 * bloody create() on broken symlinks. Furrfu...
617 name = __getname();
618 if (unlikely(!name)) {
619 path_put(&nd->path);
620 return -ENOMEM;
622 strcpy(name, nd->last.name);
623 nd->last.name = name;
624 return 0;
625 fail:
626 path_put(&nd->path);
627 return PTR_ERR(link);
630 static void path_put_conditional(struct path *path, struct nameidata *nd)
632 dput(path->dentry);
633 if (path->mnt != nd->path.mnt)
634 mntput(path->mnt);
637 static inline void path_to_nameidata(struct path *path, struct nameidata *nd)
639 dput(nd->path.dentry);
640 if (nd->path.mnt != path->mnt)
641 mntput(nd->path.mnt);
642 nd->path.mnt = path->mnt;
643 nd->path.dentry = path->dentry;
646 static __always_inline int __do_follow_link(struct path *path, struct nameidata *nd)
648 int error;
649 void *cookie;
650 struct dentry *dentry = path->dentry;
652 touch_atime(path->mnt, dentry);
653 nd_set_link(nd, NULL);
655 if (path->mnt != nd->path.mnt) {
656 path_to_nameidata(path, nd);
657 dget(dentry);
659 mntget(path->mnt);
660 cookie = dentry->d_inode->i_op->follow_link(dentry, nd);
661 error = PTR_ERR(cookie);
662 if (!IS_ERR(cookie)) {
663 char *s = nd_get_link(nd);
664 error = 0;
665 if (s)
666 error = __vfs_follow_link(nd, s);
667 if (dentry->d_inode->i_op->put_link)
668 dentry->d_inode->i_op->put_link(dentry, nd, cookie);
670 path_put(path);
672 return error;
676 * This limits recursive symlink follows to 8, while
677 * limiting consecutive symlinks to 40.
679 * Without that kind of total limit, nasty chains of consecutive
680 * symlinks can cause almost arbitrarily long lookups.
682 static inline int do_follow_link(struct path *path, struct nameidata *nd)
684 int err = -ELOOP;
685 if (current->link_count >= MAX_NESTED_LINKS)
686 goto loop;
687 if (current->total_link_count >= 40)
688 goto loop;
689 BUG_ON(nd->depth >= MAX_NESTED_LINKS);
690 cond_resched();
691 err = security_inode_follow_link(path->dentry, nd);
692 if (err)
693 goto loop;
694 current->link_count++;
695 current->total_link_count++;
696 nd->depth++;
697 err = __do_follow_link(path, nd);
698 current->link_count--;
699 nd->depth--;
700 return err;
701 loop:
702 path_put_conditional(path, nd);
703 path_put(&nd->path);
704 return err;
707 int follow_up(struct vfsmount **mnt, struct dentry **dentry)
709 struct vfsmount *parent;
710 struct dentry *mountpoint;
711 spin_lock(&vfsmount_lock);
712 parent=(*mnt)->mnt_parent;
713 if (parent == *mnt) {
714 spin_unlock(&vfsmount_lock);
715 return 0;
717 mntget(parent);
718 mountpoint=dget((*mnt)->mnt_mountpoint);
719 spin_unlock(&vfsmount_lock);
720 dput(*dentry);
721 *dentry = mountpoint;
722 mntput(*mnt);
723 *mnt = parent;
724 return 1;
727 /* no need for dcache_lock, as serialization is taken care in
728 * namespace.c
730 static int __follow_mount(struct path *path)
732 int res = 0;
733 while (d_mountpoint(path->dentry)) {
734 struct vfsmount *mounted = lookup_mnt(path->mnt, path->dentry);
735 if (!mounted)
736 break;
737 dput(path->dentry);
738 if (res)
739 mntput(path->mnt);
740 path->mnt = mounted;
741 path->dentry = dget(mounted->mnt_root);
742 res = 1;
744 return res;
747 static void follow_mount(struct vfsmount **mnt, struct dentry **dentry)
749 while (d_mountpoint(*dentry)) {
750 struct vfsmount *mounted = lookup_mnt(*mnt, *dentry);
751 if (!mounted)
752 break;
753 dput(*dentry);
754 mntput(*mnt);
755 *mnt = mounted;
756 *dentry = dget(mounted->mnt_root);
760 /* no need for dcache_lock, as serialization is taken care in
761 * namespace.c
763 int follow_down(struct vfsmount **mnt, struct dentry **dentry)
765 struct vfsmount *mounted;
767 mounted = lookup_mnt(*mnt, *dentry);
768 if (mounted) {
769 dput(*dentry);
770 mntput(*mnt);
771 *mnt = mounted;
772 *dentry = dget(mounted->mnt_root);
773 return 1;
775 return 0;
778 static __always_inline void follow_dotdot(struct nameidata *nd)
780 struct fs_struct *fs = current->fs;
782 while(1) {
783 struct vfsmount *parent;
784 struct dentry *old = nd->path.dentry;
786 read_lock(&fs->lock);
787 if (nd->path.dentry == fs->root.dentry &&
788 nd->path.mnt == fs->root.mnt) {
789 read_unlock(&fs->lock);
790 break;
792 read_unlock(&fs->lock);
793 spin_lock(&dcache_lock);
794 if (nd->path.dentry != nd->path.mnt->mnt_root) {
795 nd->path.dentry = dget(nd->path.dentry->d_parent);
796 spin_unlock(&dcache_lock);
797 dput(old);
798 break;
800 spin_unlock(&dcache_lock);
801 spin_lock(&vfsmount_lock);
802 parent = nd->path.mnt->mnt_parent;
803 if (parent == nd->path.mnt) {
804 spin_unlock(&vfsmount_lock);
805 break;
807 mntget(parent);
808 nd->path.dentry = dget(nd->path.mnt->mnt_mountpoint);
809 spin_unlock(&vfsmount_lock);
810 dput(old);
811 mntput(nd->path.mnt);
812 nd->path.mnt = parent;
814 follow_mount(&nd->path.mnt, &nd->path.dentry);
818 * It's more convoluted than I'd like it to be, but... it's still fairly
819 * small and for now I'd prefer to have fast path as straight as possible.
820 * It _is_ time-critical.
822 static int do_lookup(struct nameidata *nd, struct qstr *name,
823 struct path *path)
825 struct vfsmount *mnt = nd->path.mnt;
826 struct dentry *dentry = __d_lookup(nd->path.dentry, name);
828 if (!dentry)
829 goto need_lookup;
830 if (dentry->d_op && dentry->d_op->d_revalidate)
831 goto need_revalidate;
832 done:
833 path->mnt = mnt;
834 path->dentry = dentry;
835 __follow_mount(path);
836 return 0;
838 need_lookup:
839 dentry = real_lookup(nd->path.dentry, name, nd);
840 if (IS_ERR(dentry))
841 goto fail;
842 goto done;
844 need_revalidate:
845 dentry = do_revalidate(dentry, nd);
846 if (!dentry)
847 goto need_lookup;
848 if (IS_ERR(dentry))
849 goto fail;
850 goto done;
852 fail:
853 return PTR_ERR(dentry);
857 * Name resolution.
858 * This is the basic name resolution function, turning a pathname into
859 * the final dentry. We expect 'base' to be positive and a directory.
861 * Returns 0 and nd will have valid dentry and mnt on success.
862 * Returns error and drops reference to input namei data on failure.
864 static int __link_path_walk(const char *name, struct nameidata *nd)
866 struct path next;
867 struct inode *inode;
868 int err;
869 unsigned int lookup_flags = nd->flags;
871 while (*name=='/')
872 name++;
873 if (!*name)
874 goto return_reval;
876 inode = nd->path.dentry->d_inode;
877 if (nd->depth)
878 lookup_flags = LOOKUP_FOLLOW | (nd->flags & LOOKUP_CONTINUE);
880 /* At this point we know we have a real path component. */
881 for(;;) {
882 unsigned long hash;
883 struct qstr this;
884 unsigned int c;
886 nd->flags |= LOOKUP_CONTINUE;
887 err = exec_permission_lite(inode, nd);
888 if (err == -EAGAIN)
889 err = vfs_permission(nd, MAY_EXEC);
890 if (err)
891 break;
893 this.name = name;
894 c = *(const unsigned char *)name;
896 hash = init_name_hash();
897 do {
898 name++;
899 hash = partial_name_hash(c, hash);
900 c = *(const unsigned char *)name;
901 } while (c && (c != '/'));
902 this.len = name - (const char *) this.name;
903 this.hash = end_name_hash(hash);
905 /* remove trailing slashes? */
906 if (!c)
907 goto last_component;
908 while (*++name == '/');
909 if (!*name)
910 goto last_with_slashes;
913 * "." and ".." are special - ".." especially so because it has
914 * to be able to know about the current root directory and
915 * parent relationships.
917 if (this.name[0] == '.') switch (this.len) {
918 default:
919 break;
920 case 2:
921 if (this.name[1] != '.')
922 break;
923 follow_dotdot(nd);
924 inode = nd->path.dentry->d_inode;
925 /* fallthrough */
926 case 1:
927 continue;
930 * See if the low-level filesystem might want
931 * to use its own hash..
933 if (nd->path.dentry->d_op && nd->path.dentry->d_op->d_hash) {
934 err = nd->path.dentry->d_op->d_hash(nd->path.dentry,
935 &this);
936 if (err < 0)
937 break;
939 /* This does the actual lookups.. */
940 err = do_lookup(nd, &this, &next);
941 if (err)
942 break;
944 err = -ENOENT;
945 inode = next.dentry->d_inode;
946 if (!inode)
947 goto out_dput;
948 err = -ENOTDIR;
949 if (!inode->i_op)
950 goto out_dput;
952 if (inode->i_op->follow_link) {
953 err = do_follow_link(&next, nd);
954 if (err)
955 goto return_err;
956 err = -ENOENT;
957 inode = nd->path.dentry->d_inode;
958 if (!inode)
959 break;
960 err = -ENOTDIR;
961 if (!inode->i_op)
962 break;
963 } else
964 path_to_nameidata(&next, nd);
965 err = -ENOTDIR;
966 if (!inode->i_op->lookup)
967 break;
968 continue;
969 /* here ends the main loop */
971 last_with_slashes:
972 lookup_flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
973 last_component:
974 /* Clear LOOKUP_CONTINUE iff it was previously unset */
975 nd->flags &= lookup_flags | ~LOOKUP_CONTINUE;
976 if (lookup_flags & LOOKUP_PARENT)
977 goto lookup_parent;
978 if (this.name[0] == '.') switch (this.len) {
979 default:
980 break;
981 case 2:
982 if (this.name[1] != '.')
983 break;
984 follow_dotdot(nd);
985 inode = nd->path.dentry->d_inode;
986 /* fallthrough */
987 case 1:
988 goto return_reval;
990 if (nd->path.dentry->d_op && nd->path.dentry->d_op->d_hash) {
991 err = nd->path.dentry->d_op->d_hash(nd->path.dentry,
992 &this);
993 if (err < 0)
994 break;
996 err = do_lookup(nd, &this, &next);
997 if (err)
998 break;
999 inode = next.dentry->d_inode;
1000 if ((lookup_flags & LOOKUP_FOLLOW)
1001 && inode && inode->i_op && inode->i_op->follow_link) {
1002 err = do_follow_link(&next, nd);
1003 if (err)
1004 goto return_err;
1005 inode = nd->path.dentry->d_inode;
1006 } else
1007 path_to_nameidata(&next, nd);
1008 err = -ENOENT;
1009 if (!inode)
1010 break;
1011 if (lookup_flags & LOOKUP_DIRECTORY) {
1012 err = -ENOTDIR;
1013 if (!inode->i_op || !inode->i_op->lookup)
1014 break;
1016 goto return_base;
1017 lookup_parent:
1018 nd->last = this;
1019 nd->last_type = LAST_NORM;
1020 if (this.name[0] != '.')
1021 goto return_base;
1022 if (this.len == 1)
1023 nd->last_type = LAST_DOT;
1024 else if (this.len == 2 && this.name[1] == '.')
1025 nd->last_type = LAST_DOTDOT;
1026 else
1027 goto return_base;
1028 return_reval:
1030 * We bypassed the ordinary revalidation routines.
1031 * We may need to check the cached dentry for staleness.
1033 if (nd->path.dentry && nd->path.dentry->d_sb &&
1034 (nd->path.dentry->d_sb->s_type->fs_flags & FS_REVAL_DOT)) {
1035 err = -ESTALE;
1036 /* Note: we do not d_invalidate() */
1037 if (!nd->path.dentry->d_op->d_revalidate(
1038 nd->path.dentry, nd))
1039 break;
1041 return_base:
1042 return 0;
1043 out_dput:
1044 path_put_conditional(&next, nd);
1045 break;
1047 path_put(&nd->path);
1048 return_err:
1049 return err;
1052 static int path_walk(const char *name, struct nameidata *nd)
1054 current->total_link_count = 0;
1055 return link_path_walk(name, nd);
1058 /* Returns 0 and nd will be valid on success; Retuns error, otherwise. */
1059 static int do_path_lookup(int dfd, const char *name,
1060 unsigned int flags, struct nameidata *nd)
1062 int retval = 0;
1063 int fput_needed;
1064 struct file *file;
1065 struct fs_struct *fs = current->fs;
1067 nd->last_type = LAST_ROOT; /* if there are only slashes... */
1068 nd->flags = flags;
1069 nd->depth = 0;
1071 if (*name=='/') {
1072 read_lock(&fs->lock);
1073 nd->path = fs->root;
1074 path_get(&fs->root);
1075 read_unlock(&fs->lock);
1076 } else if (dfd == AT_FDCWD) {
1077 read_lock(&fs->lock);
1078 nd->path = fs->pwd;
1079 path_get(&fs->pwd);
1080 read_unlock(&fs->lock);
1081 } else {
1082 struct dentry *dentry;
1084 file = fget_light(dfd, &fput_needed);
1085 retval = -EBADF;
1086 if (!file)
1087 goto out_fail;
1089 dentry = file->f_path.dentry;
1091 retval = -ENOTDIR;
1092 if (!S_ISDIR(dentry->d_inode->i_mode))
1093 goto fput_fail;
1095 retval = file_permission(file, MAY_EXEC);
1096 if (retval)
1097 goto fput_fail;
1099 nd->path = file->f_path;
1100 path_get(&file->f_path);
1102 fput_light(file, fput_needed);
1105 retval = path_walk(name, nd);
1106 if (unlikely(!retval && !audit_dummy_context() && nd->path.dentry &&
1107 nd->path.dentry->d_inode))
1108 audit_inode(name, nd->path.dentry);
1109 out_fail:
1110 return retval;
1112 fput_fail:
1113 fput_light(file, fput_needed);
1114 goto out_fail;
1117 int path_lookup(const char *name, unsigned int flags,
1118 struct nameidata *nd)
1120 return do_path_lookup(AT_FDCWD, name, flags, nd);
1124 * vfs_path_lookup - lookup a file path relative to a dentry-vfsmount pair
1125 * @dentry: pointer to dentry of the base directory
1126 * @mnt: pointer to vfs mount of the base directory
1127 * @name: pointer to file name
1128 * @flags: lookup flags
1129 * @nd: pointer to nameidata
1131 int vfs_path_lookup(struct dentry *dentry, struct vfsmount *mnt,
1132 const char *name, unsigned int flags,
1133 struct nameidata *nd)
1135 int retval;
1137 /* same as do_path_lookup */
1138 nd->last_type = LAST_ROOT;
1139 nd->flags = flags;
1140 nd->depth = 0;
1142 nd->path.dentry = dentry;
1143 nd->path.mnt = mnt;
1144 path_get(&nd->path);
1146 retval = path_walk(name, nd);
1147 if (unlikely(!retval && !audit_dummy_context() && nd->path.dentry &&
1148 nd->path.dentry->d_inode))
1149 audit_inode(name, nd->path.dentry);
1151 return retval;
1155 static int __path_lookup_intent_open(int dfd, const char *name,
1156 unsigned int lookup_flags, struct nameidata *nd,
1157 int open_flags, int create_mode)
1159 struct file *filp = get_empty_filp();
1160 int err;
1162 if (filp == NULL)
1163 return -ENFILE;
1164 nd->intent.open.file = filp;
1165 nd->intent.open.flags = open_flags;
1166 nd->intent.open.create_mode = create_mode;
1167 err = do_path_lookup(dfd, name, lookup_flags|LOOKUP_OPEN, nd);
1168 if (IS_ERR(nd->intent.open.file)) {
1169 if (err == 0) {
1170 err = PTR_ERR(nd->intent.open.file);
1171 path_put(&nd->path);
1173 } else if (err != 0)
1174 release_open_intent(nd);
1175 return err;
1179 * path_lookup_open - lookup a file path with open intent
1180 * @dfd: the directory to use as base, or AT_FDCWD
1181 * @name: pointer to file name
1182 * @lookup_flags: lookup intent flags
1183 * @nd: pointer to nameidata
1184 * @open_flags: open intent flags
1186 int path_lookup_open(int dfd, const char *name, unsigned int lookup_flags,
1187 struct nameidata *nd, int open_flags)
1189 return __path_lookup_intent_open(dfd, name, lookup_flags, nd,
1190 open_flags, 0);
1194 * path_lookup_create - lookup a file path with open + create intent
1195 * @dfd: the directory to use as base, or AT_FDCWD
1196 * @name: pointer to file name
1197 * @lookup_flags: lookup intent flags
1198 * @nd: pointer to nameidata
1199 * @open_flags: open intent flags
1200 * @create_mode: create intent flags
1202 static int path_lookup_create(int dfd, const char *name,
1203 unsigned int lookup_flags, struct nameidata *nd,
1204 int open_flags, int create_mode)
1206 return __path_lookup_intent_open(dfd, name, lookup_flags|LOOKUP_CREATE,
1207 nd, open_flags, create_mode);
1210 int __user_path_lookup_open(const char __user *name, unsigned int lookup_flags,
1211 struct nameidata *nd, int open_flags)
1213 char *tmp = getname(name);
1214 int err = PTR_ERR(tmp);
1216 if (!IS_ERR(tmp)) {
1217 err = __path_lookup_intent_open(AT_FDCWD, tmp, lookup_flags, nd, open_flags, 0);
1218 putname(tmp);
1220 return err;
1223 static struct dentry *__lookup_hash(struct qstr *name,
1224 struct dentry *base, struct nameidata *nd)
1226 struct dentry *dentry;
1227 struct inode *inode;
1228 int err;
1230 inode = base->d_inode;
1233 * See if the low-level filesystem might want
1234 * to use its own hash..
1236 if (base->d_op && base->d_op->d_hash) {
1237 err = base->d_op->d_hash(base, name);
1238 dentry = ERR_PTR(err);
1239 if (err < 0)
1240 goto out;
1243 dentry = cached_lookup(base, name, nd);
1244 if (!dentry) {
1245 struct dentry *new;
1247 /* Don't create child dentry for a dead directory. */
1248 dentry = ERR_PTR(-ENOENT);
1249 if (IS_DEADDIR(inode))
1250 goto out;
1252 new = d_alloc(base, name);
1253 dentry = ERR_PTR(-ENOMEM);
1254 if (!new)
1255 goto out;
1256 dentry = inode->i_op->lookup(inode, new, nd);
1257 if (!dentry)
1258 dentry = new;
1259 else
1260 dput(new);
1262 out:
1263 return dentry;
1267 * Restricted form of lookup. Doesn't follow links, single-component only,
1268 * needs parent already locked. Doesn't follow mounts.
1269 * SMP-safe.
1271 static struct dentry *lookup_hash(struct nameidata *nd)
1273 int err;
1275 err = permission(nd->path.dentry->d_inode, MAY_EXEC, nd);
1276 if (err)
1277 return ERR_PTR(err);
1278 return __lookup_hash(&nd->last, nd->path.dentry, nd);
1281 static int __lookup_one_len(const char *name, struct qstr *this,
1282 struct dentry *base, int len)
1284 unsigned long hash;
1285 unsigned int c;
1287 this->name = name;
1288 this->len = len;
1289 if (!len)
1290 return -EACCES;
1292 hash = init_name_hash();
1293 while (len--) {
1294 c = *(const unsigned char *)name++;
1295 if (c == '/' || c == '\0')
1296 return -EACCES;
1297 hash = partial_name_hash(c, hash);
1299 this->hash = end_name_hash(hash);
1300 return 0;
1304 * lookup_one_len - filesystem helper to lookup single pathname component
1305 * @name: pathname component to lookup
1306 * @base: base directory to lookup from
1307 * @len: maximum length @len should be interpreted to
1309 * Note that this routine is purely a helper for filesystem usage and should
1310 * not be called by generic code. Also note that by using this function the
1311 * nameidata argument is passed to the filesystem methods and a filesystem
1312 * using this helper needs to be prepared for that.
1314 struct dentry *lookup_one_len(const char *name, struct dentry *base, int len)
1316 int err;
1317 struct qstr this;
1319 err = __lookup_one_len(name, &this, base, len);
1320 if (err)
1321 return ERR_PTR(err);
1323 err = permission(base->d_inode, MAY_EXEC, NULL);
1324 if (err)
1325 return ERR_PTR(err);
1326 return __lookup_hash(&this, base, NULL);
1330 * lookup_one_noperm - bad hack for sysfs
1331 * @name: pathname component to lookup
1332 * @base: base directory to lookup from
1334 * This is a variant of lookup_one_len that doesn't perform any permission
1335 * checks. It's a horrible hack to work around the braindead sysfs
1336 * architecture and should not be used anywhere else.
1338 * DON'T USE THIS FUNCTION EVER, thanks.
1340 struct dentry *lookup_one_noperm(const char *name, struct dentry *base)
1342 int err;
1343 struct qstr this;
1345 err = __lookup_one_len(name, &this, base, strlen(name));
1346 if (err)
1347 return ERR_PTR(err);
1348 return __lookup_hash(&this, base, NULL);
1351 int __user_walk_fd(int dfd, const char __user *name, unsigned flags,
1352 struct nameidata *nd)
1354 char *tmp = getname(name);
1355 int err = PTR_ERR(tmp);
1357 if (!IS_ERR(tmp)) {
1358 err = do_path_lookup(dfd, tmp, flags, nd);
1359 putname(tmp);
1361 return err;
1364 int __user_walk(const char __user *name, unsigned flags, struct nameidata *nd)
1366 return __user_walk_fd(AT_FDCWD, name, flags, nd);
1370 * It's inline, so penalty for filesystems that don't use sticky bit is
1371 * minimal.
1373 static inline int check_sticky(struct inode *dir, struct inode *inode)
1375 if (!(dir->i_mode & S_ISVTX))
1376 return 0;
1377 if (inode->i_uid == current->fsuid)
1378 return 0;
1379 if (dir->i_uid == current->fsuid)
1380 return 0;
1381 return !capable(CAP_FOWNER);
1385 * Check whether we can remove a link victim from directory dir, check
1386 * whether the type of victim is right.
1387 * 1. We can't do it if dir is read-only (done in permission())
1388 * 2. We should have write and exec permissions on dir
1389 * 3. We can't remove anything from append-only dir
1390 * 4. We can't do anything with immutable dir (done in permission())
1391 * 5. If the sticky bit on dir is set we should either
1392 * a. be owner of dir, or
1393 * b. be owner of victim, or
1394 * c. have CAP_FOWNER capability
1395 * 6. If the victim is append-only or immutable we can't do antyhing with
1396 * links pointing to it.
1397 * 7. If we were asked to remove a directory and victim isn't one - ENOTDIR.
1398 * 8. If we were asked to remove a non-directory and victim isn't one - EISDIR.
1399 * 9. We can't remove a root or mountpoint.
1400 * 10. We don't allow removal of NFS sillyrenamed files; it's handled by
1401 * nfs_async_unlink().
1403 static int may_delete(struct inode *dir,struct dentry *victim,int isdir)
1405 int error;
1407 if (!victim->d_inode)
1408 return -ENOENT;
1410 BUG_ON(victim->d_parent->d_inode != dir);
1411 audit_inode_child(victim->d_name.name, victim, dir);
1413 error = permission(dir,MAY_WRITE | MAY_EXEC, NULL);
1414 if (error)
1415 return error;
1416 if (IS_APPEND(dir))
1417 return -EPERM;
1418 if (check_sticky(dir, victim->d_inode)||IS_APPEND(victim->d_inode)||
1419 IS_IMMUTABLE(victim->d_inode))
1420 return -EPERM;
1421 if (isdir) {
1422 if (!S_ISDIR(victim->d_inode->i_mode))
1423 return -ENOTDIR;
1424 if (IS_ROOT(victim))
1425 return -EBUSY;
1426 } else if (S_ISDIR(victim->d_inode->i_mode))
1427 return -EISDIR;
1428 if (IS_DEADDIR(dir))
1429 return -ENOENT;
1430 if (victim->d_flags & DCACHE_NFSFS_RENAMED)
1431 return -EBUSY;
1432 return 0;
1435 /* Check whether we can create an object with dentry child in directory
1436 * dir.
1437 * 1. We can't do it if child already exists (open has special treatment for
1438 * this case, but since we are inlined it's OK)
1439 * 2. We can't do it if dir is read-only (done in permission())
1440 * 3. We should have write and exec permissions on dir
1441 * 4. We can't do it if dir is immutable (done in permission())
1443 static inline int may_create(struct inode *dir, struct dentry *child,
1444 struct nameidata *nd)
1446 if (child->d_inode)
1447 return -EEXIST;
1448 if (IS_DEADDIR(dir))
1449 return -ENOENT;
1450 return permission(dir,MAY_WRITE | MAY_EXEC, nd);
1454 * O_DIRECTORY translates into forcing a directory lookup.
1456 static inline int lookup_flags(unsigned int f)
1458 unsigned long retval = LOOKUP_FOLLOW;
1460 if (f & O_NOFOLLOW)
1461 retval &= ~LOOKUP_FOLLOW;
1463 if (f & O_DIRECTORY)
1464 retval |= LOOKUP_DIRECTORY;
1466 return retval;
1470 * p1 and p2 should be directories on the same fs.
1472 struct dentry *lock_rename(struct dentry *p1, struct dentry *p2)
1474 struct dentry *p;
1476 if (p1 == p2) {
1477 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
1478 return NULL;
1481 mutex_lock(&p1->d_inode->i_sb->s_vfs_rename_mutex);
1483 for (p = p1; p->d_parent != p; p = p->d_parent) {
1484 if (p->d_parent == p2) {
1485 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_PARENT);
1486 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_CHILD);
1487 return p;
1491 for (p = p2; p->d_parent != p; p = p->d_parent) {
1492 if (p->d_parent == p1) {
1493 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
1494 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_CHILD);
1495 return p;
1499 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
1500 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_CHILD);
1501 return NULL;
1504 void unlock_rename(struct dentry *p1, struct dentry *p2)
1506 mutex_unlock(&p1->d_inode->i_mutex);
1507 if (p1 != p2) {
1508 mutex_unlock(&p2->d_inode->i_mutex);
1509 mutex_unlock(&p1->d_inode->i_sb->s_vfs_rename_mutex);
1513 int vfs_create(struct inode *dir, struct dentry *dentry, int mode,
1514 struct nameidata *nd)
1516 int error = may_create(dir, dentry, nd);
1518 if (error)
1519 return error;
1521 if (!dir->i_op || !dir->i_op->create)
1522 return -EACCES; /* shouldn't it be ENOSYS? */
1523 mode &= S_IALLUGO;
1524 mode |= S_IFREG;
1525 error = security_inode_create(dir, dentry, mode);
1526 if (error)
1527 return error;
1528 DQUOT_INIT(dir);
1529 error = dir->i_op->create(dir, dentry, mode, nd);
1530 if (!error)
1531 fsnotify_create(dir, dentry);
1532 return error;
1535 int may_open(struct nameidata *nd, int acc_mode, int flag)
1537 struct dentry *dentry = nd->path.dentry;
1538 struct inode *inode = dentry->d_inode;
1539 int error;
1541 if (!inode)
1542 return -ENOENT;
1544 if (S_ISLNK(inode->i_mode))
1545 return -ELOOP;
1547 if (S_ISDIR(inode->i_mode) && (acc_mode & MAY_WRITE))
1548 return -EISDIR;
1551 * FIFO's, sockets and device files are special: they don't
1552 * actually live on the filesystem itself, and as such you
1553 * can write to them even if the filesystem is read-only.
1555 if (S_ISFIFO(inode->i_mode) || S_ISSOCK(inode->i_mode)) {
1556 flag &= ~O_TRUNC;
1557 } else if (S_ISBLK(inode->i_mode) || S_ISCHR(inode->i_mode)) {
1558 if (nd->path.mnt->mnt_flags & MNT_NODEV)
1559 return -EACCES;
1561 flag &= ~O_TRUNC;
1564 error = vfs_permission(nd, acc_mode);
1565 if (error)
1566 return error;
1568 * An append-only file must be opened in append mode for writing.
1570 if (IS_APPEND(inode)) {
1571 if ((flag & FMODE_WRITE) && !(flag & O_APPEND))
1572 return -EPERM;
1573 if (flag & O_TRUNC)
1574 return -EPERM;
1577 /* O_NOATIME can only be set by the owner or superuser */
1578 if (flag & O_NOATIME)
1579 if (!is_owner_or_cap(inode))
1580 return -EPERM;
1583 * Ensure there are no outstanding leases on the file.
1585 error = break_lease(inode, flag);
1586 if (error)
1587 return error;
1589 if (flag & O_TRUNC) {
1590 error = get_write_access(inode);
1591 if (error)
1592 return error;
1595 * Refuse to truncate files with mandatory locks held on them.
1597 error = locks_verify_locked(inode);
1598 if (!error) {
1599 DQUOT_INIT(inode);
1601 error = do_truncate(dentry, 0,
1602 ATTR_MTIME|ATTR_CTIME|ATTR_OPEN,
1603 NULL);
1605 put_write_access(inode);
1606 if (error)
1607 return error;
1608 } else
1609 if (flag & FMODE_WRITE)
1610 DQUOT_INIT(inode);
1612 return 0;
1616 * Be careful about ever adding any more callers of this
1617 * function. Its flags must be in the namei format, not
1618 * what get passed to sys_open().
1620 static int __open_namei_create(struct nameidata *nd, struct path *path,
1621 int flag, int mode)
1623 int error;
1624 struct dentry *dir = nd->path.dentry;
1626 if (!IS_POSIXACL(dir->d_inode))
1627 mode &= ~current->fs->umask;
1628 error = vfs_create(dir->d_inode, path->dentry, mode, nd);
1629 mutex_unlock(&dir->d_inode->i_mutex);
1630 dput(nd->path.dentry);
1631 nd->path.dentry = path->dentry;
1632 if (error)
1633 return error;
1634 /* Don't check for write permission, don't truncate */
1635 return may_open(nd, 0, flag & ~O_TRUNC);
1639 * Note that while the flag value (low two bits) for sys_open means:
1640 * 00 - read-only
1641 * 01 - write-only
1642 * 10 - read-write
1643 * 11 - special
1644 * it is changed into
1645 * 00 - no permissions needed
1646 * 01 - read-permission
1647 * 10 - write-permission
1648 * 11 - read-write
1649 * for the internal routines (ie open_namei()/follow_link() etc)
1650 * This is more logical, and also allows the 00 "no perm needed"
1651 * to be used for symlinks (where the permissions are checked
1652 * later).
1655 static inline int open_to_namei_flags(int flag)
1657 if ((flag+1) & O_ACCMODE)
1658 flag++;
1659 return flag;
1662 static int open_will_write_to_fs(int flag, struct inode *inode)
1665 * We'll never write to the fs underlying
1666 * a device file.
1668 if (special_file(inode->i_mode))
1669 return 0;
1670 return (flag & O_TRUNC);
1674 * Note that the low bits of the passed in "open_flag"
1675 * are not the same as in the local variable "flag". See
1676 * open_to_namei_flags() for more details.
1678 struct file *do_filp_open(int dfd, const char *pathname,
1679 int open_flag, int mode)
1681 struct file *filp;
1682 struct nameidata nd;
1683 int acc_mode, error;
1684 struct path path;
1685 struct dentry *dir;
1686 int count = 0;
1687 int will_write;
1688 int flag = open_to_namei_flags(open_flag);
1690 acc_mode = MAY_OPEN | ACC_MODE(flag);
1692 /* O_TRUNC implies we need access checks for write permissions */
1693 if (flag & O_TRUNC)
1694 acc_mode |= MAY_WRITE;
1696 /* Allow the LSM permission hook to distinguish append
1697 access from general write access. */
1698 if (flag & O_APPEND)
1699 acc_mode |= MAY_APPEND;
1702 * The simplest case - just a plain lookup.
1704 if (!(flag & O_CREAT)) {
1705 error = path_lookup_open(dfd, pathname, lookup_flags(flag),
1706 &nd, flag);
1707 if (error)
1708 return ERR_PTR(error);
1709 goto ok;
1713 * Create - we need to know the parent.
1715 error = path_lookup_create(dfd, pathname, LOOKUP_PARENT,
1716 &nd, flag, mode);
1717 if (error)
1718 return ERR_PTR(error);
1721 * We have the parent and last component. First of all, check
1722 * that we are not asked to creat(2) an obvious directory - that
1723 * will not do.
1725 error = -EISDIR;
1726 if (nd.last_type != LAST_NORM || nd.last.name[nd.last.len])
1727 goto exit;
1729 dir = nd.path.dentry;
1730 nd.flags &= ~LOOKUP_PARENT;
1731 mutex_lock(&dir->d_inode->i_mutex);
1732 path.dentry = lookup_hash(&nd);
1733 path.mnt = nd.path.mnt;
1735 do_last:
1736 error = PTR_ERR(path.dentry);
1737 if (IS_ERR(path.dentry)) {
1738 mutex_unlock(&dir->d_inode->i_mutex);
1739 goto exit;
1742 if (IS_ERR(nd.intent.open.file)) {
1743 error = PTR_ERR(nd.intent.open.file);
1744 goto exit_mutex_unlock;
1747 /* Negative dentry, just create the file */
1748 if (!path.dentry->d_inode) {
1750 * This write is needed to ensure that a
1751 * ro->rw transition does not occur between
1752 * the time when the file is created and when
1753 * a permanent write count is taken through
1754 * the 'struct file' in nameidata_to_filp().
1756 error = mnt_want_write(nd.path.mnt);
1757 if (error)
1758 goto exit_mutex_unlock;
1759 error = __open_namei_create(&nd, &path, flag, mode);
1760 if (error) {
1761 mnt_drop_write(nd.path.mnt);
1762 goto exit;
1764 filp = nameidata_to_filp(&nd, open_flag);
1765 mnt_drop_write(nd.path.mnt);
1766 return filp;
1770 * It already exists.
1772 mutex_unlock(&dir->d_inode->i_mutex);
1773 audit_inode(pathname, path.dentry);
1775 error = -EEXIST;
1776 if (flag & O_EXCL)
1777 goto exit_dput;
1779 if (__follow_mount(&path)) {
1780 error = -ELOOP;
1781 if (flag & O_NOFOLLOW)
1782 goto exit_dput;
1785 error = -ENOENT;
1786 if (!path.dentry->d_inode)
1787 goto exit_dput;
1788 if (path.dentry->d_inode->i_op && path.dentry->d_inode->i_op->follow_link)
1789 goto do_link;
1791 path_to_nameidata(&path, &nd);
1792 error = -EISDIR;
1793 if (path.dentry->d_inode && S_ISDIR(path.dentry->d_inode->i_mode))
1794 goto exit;
1797 * Consider:
1798 * 1. may_open() truncates a file
1799 * 2. a rw->ro mount transition occurs
1800 * 3. nameidata_to_filp() fails due to
1801 * the ro mount.
1802 * That would be inconsistent, and should
1803 * be avoided. Taking this mnt write here
1804 * ensures that (2) can not occur.
1806 will_write = open_will_write_to_fs(flag, nd.path.dentry->d_inode);
1807 if (will_write) {
1808 error = mnt_want_write(nd.path.mnt);
1809 if (error)
1810 goto exit;
1812 error = may_open(&nd, acc_mode, flag);
1813 if (error) {
1814 if (will_write)
1815 mnt_drop_write(nd.path.mnt);
1816 goto exit;
1818 filp = nameidata_to_filp(&nd, open_flag);
1820 * It is now safe to drop the mnt write
1821 * because the filp has had a write taken
1822 * on its behalf.
1824 if (will_write)
1825 mnt_drop_write(nd.path.mnt);
1826 return filp;
1828 exit_mutex_unlock:
1829 mutex_unlock(&dir->d_inode->i_mutex);
1830 exit_dput:
1831 path_put_conditional(&path, &nd);
1832 exit:
1833 if (!IS_ERR(nd.intent.open.file))
1834 release_open_intent(&nd);
1835 path_put(&nd.path);
1836 return ERR_PTR(error);
1838 do_link:
1839 error = -ELOOP;
1840 if (flag & O_NOFOLLOW)
1841 goto exit_dput;
1843 * This is subtle. Instead of calling do_follow_link() we do the
1844 * thing by hands. The reason is that this way we have zero link_count
1845 * and path_walk() (called from ->follow_link) honoring LOOKUP_PARENT.
1846 * After that we have the parent and last component, i.e.
1847 * we are in the same situation as after the first path_walk().
1848 * Well, almost - if the last component is normal we get its copy
1849 * stored in nd->last.name and we will have to putname() it when we
1850 * are done. Procfs-like symlinks just set LAST_BIND.
1852 nd.flags |= LOOKUP_PARENT;
1853 error = security_inode_follow_link(path.dentry, &nd);
1854 if (error)
1855 goto exit_dput;
1856 error = __do_follow_link(&path, &nd);
1857 if (error) {
1858 /* Does someone understand code flow here? Or it is only
1859 * me so stupid? Anathema to whoever designed this non-sense
1860 * with "intent.open".
1862 release_open_intent(&nd);
1863 return ERR_PTR(error);
1865 nd.flags &= ~LOOKUP_PARENT;
1866 if (nd.last_type == LAST_BIND)
1867 goto ok;
1868 error = -EISDIR;
1869 if (nd.last_type != LAST_NORM)
1870 goto exit;
1871 if (nd.last.name[nd.last.len]) {
1872 __putname(nd.last.name);
1873 goto exit;
1875 error = -ELOOP;
1876 if (count++==32) {
1877 __putname(nd.last.name);
1878 goto exit;
1880 dir = nd.path.dentry;
1881 mutex_lock(&dir->d_inode->i_mutex);
1882 path.dentry = lookup_hash(&nd);
1883 path.mnt = nd.path.mnt;
1884 __putname(nd.last.name);
1885 goto do_last;
1889 * filp_open - open file and return file pointer
1891 * @filename: path to open
1892 * @flags: open flags as per the open(2) second argument
1893 * @mode: mode for the new file if O_CREAT is set, else ignored
1895 * This is the helper to open a file from kernelspace if you really
1896 * have to. But in generally you should not do this, so please move
1897 * along, nothing to see here..
1899 struct file *filp_open(const char *filename, int flags, int mode)
1901 return do_filp_open(AT_FDCWD, filename, flags, mode);
1903 EXPORT_SYMBOL(filp_open);
1906 * lookup_create - lookup a dentry, creating it if it doesn't exist
1907 * @nd: nameidata info
1908 * @is_dir: directory flag
1910 * Simple function to lookup and return a dentry and create it
1911 * if it doesn't exist. Is SMP-safe.
1913 * Returns with nd->path.dentry->d_inode->i_mutex locked.
1915 struct dentry *lookup_create(struct nameidata *nd, int is_dir)
1917 struct dentry *dentry = ERR_PTR(-EEXIST);
1919 mutex_lock_nested(&nd->path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
1921 * Yucky last component or no last component at all?
1922 * (foo/., foo/.., /////)
1924 if (nd->last_type != LAST_NORM)
1925 goto fail;
1926 nd->flags &= ~LOOKUP_PARENT;
1927 nd->flags |= LOOKUP_CREATE;
1928 nd->intent.open.flags = O_EXCL;
1931 * Do the final lookup.
1933 dentry = lookup_hash(nd);
1934 if (IS_ERR(dentry))
1935 goto fail;
1937 if (dentry->d_inode)
1938 goto eexist;
1940 * Special case - lookup gave negative, but... we had foo/bar/
1941 * From the vfs_mknod() POV we just have a negative dentry -
1942 * all is fine. Let's be bastards - you had / on the end, you've
1943 * been asking for (non-existent) directory. -ENOENT for you.
1945 if (unlikely(!is_dir && nd->last.name[nd->last.len])) {
1946 dput(dentry);
1947 dentry = ERR_PTR(-ENOENT);
1949 return dentry;
1950 eexist:
1951 dput(dentry);
1952 dentry = ERR_PTR(-EEXIST);
1953 fail:
1954 return dentry;
1956 EXPORT_SYMBOL_GPL(lookup_create);
1958 int vfs_mknod(struct inode *dir, struct dentry *dentry, int mode, dev_t dev)
1960 int error = may_create(dir, dentry, NULL);
1962 if (error)
1963 return error;
1965 if ((S_ISCHR(mode) || S_ISBLK(mode)) && !capable(CAP_MKNOD))
1966 return -EPERM;
1968 if (!dir->i_op || !dir->i_op->mknod)
1969 return -EPERM;
1971 error = devcgroup_inode_mknod(mode, dev);
1972 if (error)
1973 return error;
1975 error = security_inode_mknod(dir, dentry, mode, dev);
1976 if (error)
1977 return error;
1979 DQUOT_INIT(dir);
1980 error = dir->i_op->mknod(dir, dentry, mode, dev);
1981 if (!error)
1982 fsnotify_create(dir, dentry);
1983 return error;
1986 static int may_mknod(mode_t mode)
1988 switch (mode & S_IFMT) {
1989 case S_IFREG:
1990 case S_IFCHR:
1991 case S_IFBLK:
1992 case S_IFIFO:
1993 case S_IFSOCK:
1994 case 0: /* zero mode translates to S_IFREG */
1995 return 0;
1996 case S_IFDIR:
1997 return -EPERM;
1998 default:
1999 return -EINVAL;
2003 asmlinkage long sys_mknodat(int dfd, const char __user *filename, int mode,
2004 unsigned dev)
2006 int error = 0;
2007 char * tmp;
2008 struct dentry * dentry;
2009 struct nameidata nd;
2011 if (S_ISDIR(mode))
2012 return -EPERM;
2013 tmp = getname(filename);
2014 if (IS_ERR(tmp))
2015 return PTR_ERR(tmp);
2017 error = do_path_lookup(dfd, tmp, LOOKUP_PARENT, &nd);
2018 if (error)
2019 goto out;
2020 dentry = lookup_create(&nd, 0);
2021 if (IS_ERR(dentry)) {
2022 error = PTR_ERR(dentry);
2023 goto out_unlock;
2025 if (!IS_POSIXACL(nd.path.dentry->d_inode))
2026 mode &= ~current->fs->umask;
2027 error = may_mknod(mode);
2028 if (error)
2029 goto out_dput;
2030 error = mnt_want_write(nd.path.mnt);
2031 if (error)
2032 goto out_dput;
2033 switch (mode & S_IFMT) {
2034 case 0: case S_IFREG:
2035 error = vfs_create(nd.path.dentry->d_inode,dentry,mode,&nd);
2036 break;
2037 case S_IFCHR: case S_IFBLK:
2038 error = vfs_mknod(nd.path.dentry->d_inode,dentry,mode,
2039 new_decode_dev(dev));
2040 break;
2041 case S_IFIFO: case S_IFSOCK:
2042 error = vfs_mknod(nd.path.dentry->d_inode,dentry,mode,0);
2043 break;
2045 mnt_drop_write(nd.path.mnt);
2046 out_dput:
2047 dput(dentry);
2048 out_unlock:
2049 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
2050 path_put(&nd.path);
2051 out:
2052 putname(tmp);
2054 return error;
2057 asmlinkage long sys_mknod(const char __user *filename, int mode, unsigned dev)
2059 return sys_mknodat(AT_FDCWD, filename, mode, dev);
2062 int vfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
2064 int error = may_create(dir, dentry, NULL);
2066 if (error)
2067 return error;
2069 if (!dir->i_op || !dir->i_op->mkdir)
2070 return -EPERM;
2072 mode &= (S_IRWXUGO|S_ISVTX);
2073 error = security_inode_mkdir(dir, dentry, mode);
2074 if (error)
2075 return error;
2077 DQUOT_INIT(dir);
2078 error = dir->i_op->mkdir(dir, dentry, mode);
2079 if (!error)
2080 fsnotify_mkdir(dir, dentry);
2081 return error;
2084 asmlinkage long sys_mkdirat(int dfd, const char __user *pathname, int mode)
2086 int error = 0;
2087 char * tmp;
2088 struct dentry *dentry;
2089 struct nameidata nd;
2091 tmp = getname(pathname);
2092 error = PTR_ERR(tmp);
2093 if (IS_ERR(tmp))
2094 goto out_err;
2096 error = do_path_lookup(dfd, tmp, LOOKUP_PARENT, &nd);
2097 if (error)
2098 goto out;
2099 dentry = lookup_create(&nd, 1);
2100 error = PTR_ERR(dentry);
2101 if (IS_ERR(dentry))
2102 goto out_unlock;
2104 if (!IS_POSIXACL(nd.path.dentry->d_inode))
2105 mode &= ~current->fs->umask;
2106 error = mnt_want_write(nd.path.mnt);
2107 if (error)
2108 goto out_dput;
2109 error = vfs_mkdir(nd.path.dentry->d_inode, dentry, mode);
2110 mnt_drop_write(nd.path.mnt);
2111 out_dput:
2112 dput(dentry);
2113 out_unlock:
2114 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
2115 path_put(&nd.path);
2116 out:
2117 putname(tmp);
2118 out_err:
2119 return error;
2122 asmlinkage long sys_mkdir(const char __user *pathname, int mode)
2124 return sys_mkdirat(AT_FDCWD, pathname, mode);
2128 * We try to drop the dentry early: we should have
2129 * a usage count of 2 if we're the only user of this
2130 * dentry, and if that is true (possibly after pruning
2131 * the dcache), then we drop the dentry now.
2133 * A low-level filesystem can, if it choses, legally
2134 * do a
2136 * if (!d_unhashed(dentry))
2137 * return -EBUSY;
2139 * if it cannot handle the case of removing a directory
2140 * that is still in use by something else..
2142 void dentry_unhash(struct dentry *dentry)
2144 dget(dentry);
2145 shrink_dcache_parent(dentry);
2146 spin_lock(&dcache_lock);
2147 spin_lock(&dentry->d_lock);
2148 if (atomic_read(&dentry->d_count) == 2)
2149 __d_drop(dentry);
2150 spin_unlock(&dentry->d_lock);
2151 spin_unlock(&dcache_lock);
2154 int vfs_rmdir(struct inode *dir, struct dentry *dentry)
2156 int error = may_delete(dir, dentry, 1);
2158 if (error)
2159 return error;
2161 if (!dir->i_op || !dir->i_op->rmdir)
2162 return -EPERM;
2164 DQUOT_INIT(dir);
2166 mutex_lock(&dentry->d_inode->i_mutex);
2167 dentry_unhash(dentry);
2168 if (d_mountpoint(dentry))
2169 error = -EBUSY;
2170 else {
2171 error = security_inode_rmdir(dir, dentry);
2172 if (!error) {
2173 error = dir->i_op->rmdir(dir, dentry);
2174 if (!error)
2175 dentry->d_inode->i_flags |= S_DEAD;
2178 mutex_unlock(&dentry->d_inode->i_mutex);
2179 if (!error) {
2180 d_delete(dentry);
2182 dput(dentry);
2184 return error;
2187 static long do_rmdir(int dfd, const char __user *pathname)
2189 int error = 0;
2190 char * name;
2191 struct dentry *dentry;
2192 struct nameidata nd;
2194 name = getname(pathname);
2195 if(IS_ERR(name))
2196 return PTR_ERR(name);
2198 error = do_path_lookup(dfd, name, LOOKUP_PARENT, &nd);
2199 if (error)
2200 goto exit;
2202 switch(nd.last_type) {
2203 case LAST_DOTDOT:
2204 error = -ENOTEMPTY;
2205 goto exit1;
2206 case LAST_DOT:
2207 error = -EINVAL;
2208 goto exit1;
2209 case LAST_ROOT:
2210 error = -EBUSY;
2211 goto exit1;
2213 mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
2214 dentry = lookup_hash(&nd);
2215 error = PTR_ERR(dentry);
2216 if (IS_ERR(dentry))
2217 goto exit2;
2218 error = mnt_want_write(nd.path.mnt);
2219 if (error)
2220 goto exit3;
2221 error = vfs_rmdir(nd.path.dentry->d_inode, dentry);
2222 mnt_drop_write(nd.path.mnt);
2223 exit3:
2224 dput(dentry);
2225 exit2:
2226 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
2227 exit1:
2228 path_put(&nd.path);
2229 exit:
2230 putname(name);
2231 return error;
2234 asmlinkage long sys_rmdir(const char __user *pathname)
2236 return do_rmdir(AT_FDCWD, pathname);
2239 int vfs_unlink(struct inode *dir, struct dentry *dentry)
2241 int error = may_delete(dir, dentry, 0);
2243 if (error)
2244 return error;
2246 if (!dir->i_op || !dir->i_op->unlink)
2247 return -EPERM;
2249 DQUOT_INIT(dir);
2251 mutex_lock(&dentry->d_inode->i_mutex);
2252 if (d_mountpoint(dentry))
2253 error = -EBUSY;
2254 else {
2255 error = security_inode_unlink(dir, dentry);
2256 if (!error)
2257 error = dir->i_op->unlink(dir, dentry);
2259 mutex_unlock(&dentry->d_inode->i_mutex);
2261 /* We don't d_delete() NFS sillyrenamed files--they still exist. */
2262 if (!error && !(dentry->d_flags & DCACHE_NFSFS_RENAMED)) {
2263 fsnotify_link_count(dentry->d_inode);
2264 d_delete(dentry);
2267 return error;
2271 * Make sure that the actual truncation of the file will occur outside its
2272 * directory's i_mutex. Truncate can take a long time if there is a lot of
2273 * writeout happening, and we don't want to prevent access to the directory
2274 * while waiting on the I/O.
2276 static long do_unlinkat(int dfd, const char __user *pathname)
2278 int error = 0;
2279 char * name;
2280 struct dentry *dentry;
2281 struct nameidata nd;
2282 struct inode *inode = NULL;
2284 name = getname(pathname);
2285 if(IS_ERR(name))
2286 return PTR_ERR(name);
2288 error = do_path_lookup(dfd, name, LOOKUP_PARENT, &nd);
2289 if (error)
2290 goto exit;
2291 error = -EISDIR;
2292 if (nd.last_type != LAST_NORM)
2293 goto exit1;
2294 mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
2295 dentry = lookup_hash(&nd);
2296 error = PTR_ERR(dentry);
2297 if (!IS_ERR(dentry)) {
2298 /* Why not before? Because we want correct error value */
2299 if (nd.last.name[nd.last.len])
2300 goto slashes;
2301 inode = dentry->d_inode;
2302 if (inode)
2303 atomic_inc(&inode->i_count);
2304 error = mnt_want_write(nd.path.mnt);
2305 if (error)
2306 goto exit2;
2307 error = vfs_unlink(nd.path.dentry->d_inode, dentry);
2308 mnt_drop_write(nd.path.mnt);
2309 exit2:
2310 dput(dentry);
2312 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
2313 if (inode)
2314 iput(inode); /* truncate the inode here */
2315 exit1:
2316 path_put(&nd.path);
2317 exit:
2318 putname(name);
2319 return error;
2321 slashes:
2322 error = !dentry->d_inode ? -ENOENT :
2323 S_ISDIR(dentry->d_inode->i_mode) ? -EISDIR : -ENOTDIR;
2324 goto exit2;
2327 asmlinkage long sys_unlinkat(int dfd, const char __user *pathname, int flag)
2329 if ((flag & ~AT_REMOVEDIR) != 0)
2330 return -EINVAL;
2332 if (flag & AT_REMOVEDIR)
2333 return do_rmdir(dfd, pathname);
2335 return do_unlinkat(dfd, pathname);
2338 asmlinkage long sys_unlink(const char __user *pathname)
2340 return do_unlinkat(AT_FDCWD, pathname);
2343 int vfs_symlink(struct inode *dir, struct dentry *dentry, const char *oldname)
2345 int error = may_create(dir, dentry, NULL);
2347 if (error)
2348 return error;
2350 if (!dir->i_op || !dir->i_op->symlink)
2351 return -EPERM;
2353 error = security_inode_symlink(dir, dentry, oldname);
2354 if (error)
2355 return error;
2357 DQUOT_INIT(dir);
2358 error = dir->i_op->symlink(dir, dentry, oldname);
2359 if (!error)
2360 fsnotify_create(dir, dentry);
2361 return error;
2364 asmlinkage long sys_symlinkat(const char __user *oldname,
2365 int newdfd, const char __user *newname)
2367 int error = 0;
2368 char * from;
2369 char * to;
2370 struct dentry *dentry;
2371 struct nameidata nd;
2373 from = getname(oldname);
2374 if(IS_ERR(from))
2375 return PTR_ERR(from);
2376 to = getname(newname);
2377 error = PTR_ERR(to);
2378 if (IS_ERR(to))
2379 goto out_putname;
2381 error = do_path_lookup(newdfd, to, LOOKUP_PARENT, &nd);
2382 if (error)
2383 goto out;
2384 dentry = lookup_create(&nd, 0);
2385 error = PTR_ERR(dentry);
2386 if (IS_ERR(dentry))
2387 goto out_unlock;
2389 error = mnt_want_write(nd.path.mnt);
2390 if (error)
2391 goto out_dput;
2392 error = vfs_symlink(nd.path.dentry->d_inode, dentry, from);
2393 mnt_drop_write(nd.path.mnt);
2394 out_dput:
2395 dput(dentry);
2396 out_unlock:
2397 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
2398 path_put(&nd.path);
2399 out:
2400 putname(to);
2401 out_putname:
2402 putname(from);
2403 return error;
2406 asmlinkage long sys_symlink(const char __user *oldname, const char __user *newname)
2408 return sys_symlinkat(oldname, AT_FDCWD, newname);
2411 int vfs_link(struct dentry *old_dentry, struct inode *dir, struct dentry *new_dentry)
2413 struct inode *inode = old_dentry->d_inode;
2414 int error;
2416 if (!inode)
2417 return -ENOENT;
2419 error = may_create(dir, new_dentry, NULL);
2420 if (error)
2421 return error;
2423 if (dir->i_sb != inode->i_sb)
2424 return -EXDEV;
2427 * A link to an append-only or immutable file cannot be created.
2429 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
2430 return -EPERM;
2431 if (!dir->i_op || !dir->i_op->link)
2432 return -EPERM;
2433 if (S_ISDIR(inode->i_mode))
2434 return -EPERM;
2436 error = security_inode_link(old_dentry, dir, new_dentry);
2437 if (error)
2438 return error;
2440 mutex_lock(&inode->i_mutex);
2441 DQUOT_INIT(dir);
2442 error = dir->i_op->link(old_dentry, dir, new_dentry);
2443 mutex_unlock(&inode->i_mutex);
2444 if (!error)
2445 fsnotify_link(dir, inode, new_dentry);
2446 return error;
2450 * Hardlinks are often used in delicate situations. We avoid
2451 * security-related surprises by not following symlinks on the
2452 * newname. --KAB
2454 * We don't follow them on the oldname either to be compatible
2455 * with linux 2.0, and to avoid hard-linking to directories
2456 * and other special files. --ADM
2458 asmlinkage long sys_linkat(int olddfd, const char __user *oldname,
2459 int newdfd, const char __user *newname,
2460 int flags)
2462 struct dentry *new_dentry;
2463 struct nameidata nd, old_nd;
2464 int error;
2465 char * to;
2467 if ((flags & ~AT_SYMLINK_FOLLOW) != 0)
2468 return -EINVAL;
2470 to = getname(newname);
2471 if (IS_ERR(to))
2472 return PTR_ERR(to);
2474 error = __user_walk_fd(olddfd, oldname,
2475 flags & AT_SYMLINK_FOLLOW ? LOOKUP_FOLLOW : 0,
2476 &old_nd);
2477 if (error)
2478 goto exit;
2479 error = do_path_lookup(newdfd, to, LOOKUP_PARENT, &nd);
2480 if (error)
2481 goto out;
2482 error = -EXDEV;
2483 if (old_nd.path.mnt != nd.path.mnt)
2484 goto out_release;
2485 new_dentry = lookup_create(&nd, 0);
2486 error = PTR_ERR(new_dentry);
2487 if (IS_ERR(new_dentry))
2488 goto out_unlock;
2489 error = mnt_want_write(nd.path.mnt);
2490 if (error)
2491 goto out_dput;
2492 error = vfs_link(old_nd.path.dentry, nd.path.dentry->d_inode, new_dentry);
2493 mnt_drop_write(nd.path.mnt);
2494 out_dput:
2495 dput(new_dentry);
2496 out_unlock:
2497 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
2498 out_release:
2499 path_put(&nd.path);
2500 out:
2501 path_put(&old_nd.path);
2502 exit:
2503 putname(to);
2505 return error;
2508 asmlinkage long sys_link(const char __user *oldname, const char __user *newname)
2510 return sys_linkat(AT_FDCWD, oldname, AT_FDCWD, newname, 0);
2514 * The worst of all namespace operations - renaming directory. "Perverted"
2515 * doesn't even start to describe it. Somebody in UCB had a heck of a trip...
2516 * Problems:
2517 * a) we can get into loop creation. Check is done in is_subdir().
2518 * b) race potential - two innocent renames can create a loop together.
2519 * That's where 4.4 screws up. Current fix: serialization on
2520 * sb->s_vfs_rename_mutex. We might be more accurate, but that's another
2521 * story.
2522 * c) we have to lock _three_ objects - parents and victim (if it exists).
2523 * And that - after we got ->i_mutex on parents (until then we don't know
2524 * whether the target exists). Solution: try to be smart with locking
2525 * order for inodes. We rely on the fact that tree topology may change
2526 * only under ->s_vfs_rename_mutex _and_ that parent of the object we
2527 * move will be locked. Thus we can rank directories by the tree
2528 * (ancestors first) and rank all non-directories after them.
2529 * That works since everybody except rename does "lock parent, lookup,
2530 * lock child" and rename is under ->s_vfs_rename_mutex.
2531 * HOWEVER, it relies on the assumption that any object with ->lookup()
2532 * has no more than 1 dentry. If "hybrid" objects will ever appear,
2533 * we'd better make sure that there's no link(2) for them.
2534 * d) some filesystems don't support opened-but-unlinked directories,
2535 * either because of layout or because they are not ready to deal with
2536 * all cases correctly. The latter will be fixed (taking this sort of
2537 * stuff into VFS), but the former is not going away. Solution: the same
2538 * trick as in rmdir().
2539 * e) conversion from fhandle to dentry may come in the wrong moment - when
2540 * we are removing the target. Solution: we will have to grab ->i_mutex
2541 * in the fhandle_to_dentry code. [FIXME - current nfsfh.c relies on
2542 * ->i_mutex on parents, which works but leads to some truely excessive
2543 * locking].
2545 static int vfs_rename_dir(struct inode *old_dir, struct dentry *old_dentry,
2546 struct inode *new_dir, struct dentry *new_dentry)
2548 int error = 0;
2549 struct inode *target;
2552 * If we are going to change the parent - check write permissions,
2553 * we'll need to flip '..'.
2555 if (new_dir != old_dir) {
2556 error = permission(old_dentry->d_inode, MAY_WRITE, NULL);
2557 if (error)
2558 return error;
2561 error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry);
2562 if (error)
2563 return error;
2565 target = new_dentry->d_inode;
2566 if (target) {
2567 mutex_lock(&target->i_mutex);
2568 dentry_unhash(new_dentry);
2570 if (d_mountpoint(old_dentry)||d_mountpoint(new_dentry))
2571 error = -EBUSY;
2572 else
2573 error = old_dir->i_op->rename(old_dir, old_dentry, new_dir, new_dentry);
2574 if (target) {
2575 if (!error)
2576 target->i_flags |= S_DEAD;
2577 mutex_unlock(&target->i_mutex);
2578 if (d_unhashed(new_dentry))
2579 d_rehash(new_dentry);
2580 dput(new_dentry);
2582 if (!error)
2583 if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE))
2584 d_move(old_dentry,new_dentry);
2585 return error;
2588 static int vfs_rename_other(struct inode *old_dir, struct dentry *old_dentry,
2589 struct inode *new_dir, struct dentry *new_dentry)
2591 struct inode *target;
2592 int error;
2594 error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry);
2595 if (error)
2596 return error;
2598 dget(new_dentry);
2599 target = new_dentry->d_inode;
2600 if (target)
2601 mutex_lock(&target->i_mutex);
2602 if (d_mountpoint(old_dentry)||d_mountpoint(new_dentry))
2603 error = -EBUSY;
2604 else
2605 error = old_dir->i_op->rename(old_dir, old_dentry, new_dir, new_dentry);
2606 if (!error) {
2607 if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE))
2608 d_move(old_dentry, new_dentry);
2610 if (target)
2611 mutex_unlock(&target->i_mutex);
2612 dput(new_dentry);
2613 return error;
2616 int vfs_rename(struct inode *old_dir, struct dentry *old_dentry,
2617 struct inode *new_dir, struct dentry *new_dentry)
2619 int error;
2620 int is_dir = S_ISDIR(old_dentry->d_inode->i_mode);
2621 const char *old_name;
2623 if (old_dentry->d_inode == new_dentry->d_inode)
2624 return 0;
2626 error = may_delete(old_dir, old_dentry, is_dir);
2627 if (error)
2628 return error;
2630 if (!new_dentry->d_inode)
2631 error = may_create(new_dir, new_dentry, NULL);
2632 else
2633 error = may_delete(new_dir, new_dentry, is_dir);
2634 if (error)
2635 return error;
2637 if (!old_dir->i_op || !old_dir->i_op->rename)
2638 return -EPERM;
2640 DQUOT_INIT(old_dir);
2641 DQUOT_INIT(new_dir);
2643 old_name = fsnotify_oldname_init(old_dentry->d_name.name);
2645 if (is_dir)
2646 error = vfs_rename_dir(old_dir,old_dentry,new_dir,new_dentry);
2647 else
2648 error = vfs_rename_other(old_dir,old_dentry,new_dir,new_dentry);
2649 if (!error) {
2650 const char *new_name = old_dentry->d_name.name;
2651 fsnotify_move(old_dir, new_dir, old_name, new_name, is_dir,
2652 new_dentry->d_inode, old_dentry);
2654 fsnotify_oldname_free(old_name);
2656 return error;
2659 static int do_rename(int olddfd, const char *oldname,
2660 int newdfd, const char *newname)
2662 int error = 0;
2663 struct dentry * old_dir, * new_dir;
2664 struct dentry * old_dentry, *new_dentry;
2665 struct dentry * trap;
2666 struct nameidata oldnd, newnd;
2668 error = do_path_lookup(olddfd, oldname, LOOKUP_PARENT, &oldnd);
2669 if (error)
2670 goto exit;
2672 error = do_path_lookup(newdfd, newname, LOOKUP_PARENT, &newnd);
2673 if (error)
2674 goto exit1;
2676 error = -EXDEV;
2677 if (oldnd.path.mnt != newnd.path.mnt)
2678 goto exit2;
2680 old_dir = oldnd.path.dentry;
2681 error = -EBUSY;
2682 if (oldnd.last_type != LAST_NORM)
2683 goto exit2;
2685 new_dir = newnd.path.dentry;
2686 if (newnd.last_type != LAST_NORM)
2687 goto exit2;
2689 trap = lock_rename(new_dir, old_dir);
2691 old_dentry = lookup_hash(&oldnd);
2692 error = PTR_ERR(old_dentry);
2693 if (IS_ERR(old_dentry))
2694 goto exit3;
2695 /* source must exist */
2696 error = -ENOENT;
2697 if (!old_dentry->d_inode)
2698 goto exit4;
2699 /* unless the source is a directory trailing slashes give -ENOTDIR */
2700 if (!S_ISDIR(old_dentry->d_inode->i_mode)) {
2701 error = -ENOTDIR;
2702 if (oldnd.last.name[oldnd.last.len])
2703 goto exit4;
2704 if (newnd.last.name[newnd.last.len])
2705 goto exit4;
2707 /* source should not be ancestor of target */
2708 error = -EINVAL;
2709 if (old_dentry == trap)
2710 goto exit4;
2711 new_dentry = lookup_hash(&newnd);
2712 error = PTR_ERR(new_dentry);
2713 if (IS_ERR(new_dentry))
2714 goto exit4;
2715 /* target should not be an ancestor of source */
2716 error = -ENOTEMPTY;
2717 if (new_dentry == trap)
2718 goto exit5;
2720 error = mnt_want_write(oldnd.path.mnt);
2721 if (error)
2722 goto exit5;
2723 error = vfs_rename(old_dir->d_inode, old_dentry,
2724 new_dir->d_inode, new_dentry);
2725 mnt_drop_write(oldnd.path.mnt);
2726 exit5:
2727 dput(new_dentry);
2728 exit4:
2729 dput(old_dentry);
2730 exit3:
2731 unlock_rename(new_dir, old_dir);
2732 exit2:
2733 path_put(&newnd.path);
2734 exit1:
2735 path_put(&oldnd.path);
2736 exit:
2737 return error;
2740 asmlinkage long sys_renameat(int olddfd, const char __user *oldname,
2741 int newdfd, const char __user *newname)
2743 int error;
2744 char * from;
2745 char * to;
2747 from = getname(oldname);
2748 if(IS_ERR(from))
2749 return PTR_ERR(from);
2750 to = getname(newname);
2751 error = PTR_ERR(to);
2752 if (!IS_ERR(to)) {
2753 error = do_rename(olddfd, from, newdfd, to);
2754 putname(to);
2756 putname(from);
2757 return error;
2760 asmlinkage long sys_rename(const char __user *oldname, const char __user *newname)
2762 return sys_renameat(AT_FDCWD, oldname, AT_FDCWD, newname);
2765 int vfs_readlink(struct dentry *dentry, char __user *buffer, int buflen, const char *link)
2767 int len;
2769 len = PTR_ERR(link);
2770 if (IS_ERR(link))
2771 goto out;
2773 len = strlen(link);
2774 if (len > (unsigned) buflen)
2775 len = buflen;
2776 if (copy_to_user(buffer, link, len))
2777 len = -EFAULT;
2778 out:
2779 return len;
2783 * A helper for ->readlink(). This should be used *ONLY* for symlinks that
2784 * have ->follow_link() touching nd only in nd_set_link(). Using (or not
2785 * using) it for any given inode is up to filesystem.
2787 int generic_readlink(struct dentry *dentry, char __user *buffer, int buflen)
2789 struct nameidata nd;
2790 void *cookie;
2791 int res;
2793 nd.depth = 0;
2794 cookie = dentry->d_inode->i_op->follow_link(dentry, &nd);
2795 if (IS_ERR(cookie))
2796 return PTR_ERR(cookie);
2798 res = vfs_readlink(dentry, buffer, buflen, nd_get_link(&nd));
2799 if (dentry->d_inode->i_op->put_link)
2800 dentry->d_inode->i_op->put_link(dentry, &nd, cookie);
2801 return res;
2804 int vfs_follow_link(struct nameidata *nd, const char *link)
2806 return __vfs_follow_link(nd, link);
2809 /* get the link contents into pagecache */
2810 static char *page_getlink(struct dentry * dentry, struct page **ppage)
2812 struct page * page;
2813 struct address_space *mapping = dentry->d_inode->i_mapping;
2814 page = read_mapping_page(mapping, 0, NULL);
2815 if (IS_ERR(page))
2816 return (char*)page;
2817 *ppage = page;
2818 return kmap(page);
2821 int page_readlink(struct dentry *dentry, char __user *buffer, int buflen)
2823 struct page *page = NULL;
2824 char *s = page_getlink(dentry, &page);
2825 int res = vfs_readlink(dentry,buffer,buflen,s);
2826 if (page) {
2827 kunmap(page);
2828 page_cache_release(page);
2830 return res;
2833 void *page_follow_link_light(struct dentry *dentry, struct nameidata *nd)
2835 struct page *page = NULL;
2836 nd_set_link(nd, page_getlink(dentry, &page));
2837 return page;
2840 void page_put_link(struct dentry *dentry, struct nameidata *nd, void *cookie)
2842 struct page *page = cookie;
2844 if (page) {
2845 kunmap(page);
2846 page_cache_release(page);
2850 int __page_symlink(struct inode *inode, const char *symname, int len,
2851 gfp_t gfp_mask)
2853 struct address_space *mapping = inode->i_mapping;
2854 struct page *page;
2855 void *fsdata;
2856 int err;
2857 char *kaddr;
2859 retry:
2860 err = pagecache_write_begin(NULL, mapping, 0, len-1,
2861 AOP_FLAG_UNINTERRUPTIBLE, &page, &fsdata);
2862 if (err)
2863 goto fail;
2865 kaddr = kmap_atomic(page, KM_USER0);
2866 memcpy(kaddr, symname, len-1);
2867 kunmap_atomic(kaddr, KM_USER0);
2869 err = pagecache_write_end(NULL, mapping, 0, len-1, len-1,
2870 page, fsdata);
2871 if (err < 0)
2872 goto fail;
2873 if (err < len-1)
2874 goto retry;
2876 mark_inode_dirty(inode);
2877 return 0;
2878 fail:
2879 return err;
2882 int page_symlink(struct inode *inode, const char *symname, int len)
2884 return __page_symlink(inode, symname, len,
2885 mapping_gfp_mask(inode->i_mapping));
2888 const struct inode_operations page_symlink_inode_operations = {
2889 .readlink = generic_readlink,
2890 .follow_link = page_follow_link_light,
2891 .put_link = page_put_link,
2894 EXPORT_SYMBOL(__user_walk);
2895 EXPORT_SYMBOL(__user_walk_fd);
2896 EXPORT_SYMBOL(follow_down);
2897 EXPORT_SYMBOL(follow_up);
2898 EXPORT_SYMBOL(get_write_access); /* binfmt_aout */
2899 EXPORT_SYMBOL(getname);
2900 EXPORT_SYMBOL(lock_rename);
2901 EXPORT_SYMBOL(lookup_one_len);
2902 EXPORT_SYMBOL(page_follow_link_light);
2903 EXPORT_SYMBOL(page_put_link);
2904 EXPORT_SYMBOL(page_readlink);
2905 EXPORT_SYMBOL(__page_symlink);
2906 EXPORT_SYMBOL(page_symlink);
2907 EXPORT_SYMBOL(page_symlink_inode_operations);
2908 EXPORT_SYMBOL(path_lookup);
2909 EXPORT_SYMBOL(vfs_path_lookup);
2910 EXPORT_SYMBOL(permission);
2911 EXPORT_SYMBOL(vfs_permission);
2912 EXPORT_SYMBOL(file_permission);
2913 EXPORT_SYMBOL(unlock_rename);
2914 EXPORT_SYMBOL(vfs_create);
2915 EXPORT_SYMBOL(vfs_follow_link);
2916 EXPORT_SYMBOL(vfs_link);
2917 EXPORT_SYMBOL(vfs_mkdir);
2918 EXPORT_SYMBOL(vfs_mknod);
2919 EXPORT_SYMBOL(generic_permission);
2920 EXPORT_SYMBOL(vfs_readlink);
2921 EXPORT_SYMBOL(vfs_rename);
2922 EXPORT_SYMBOL(vfs_rmdir);
2923 EXPORT_SYMBOL(vfs_symlink);
2924 EXPORT_SYMBOL(vfs_unlink);
2925 EXPORT_SYMBOL(dentry_unhash);
2926 EXPORT_SYMBOL(generic_readlink);