[PATCH] take noexec checks to very few callers that care
[safe/jmp/linux-2.6] / fs / namei.c
1 /*
2  *  linux/fs/namei.c
3  *
4  *  Copyright (C) 1991, 1992  Linus Torvalds
5  */
6
7 /*
8  * Some corrections by tytso.
9  */
10
11 /* [Feb 1997 T. Schoebel-Theuer] Complete rewrite of the pathname
12  * lookup logic.
13  */
14 /* [Feb-Apr 2000, AV] Rewrite to the new namespace architecture.
15  */
16
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>
35
36 #define ACC_MODE(x) ("\000\004\002\006"[(x)&O_ACCMODE])
37
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).
43  *
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.
50  *
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.
54  *
55  * [29-Apr-1998 C. Scott Ananian] Updated above description of symlink
56  * resolution to correspond with current state of the code.
57  *
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.
64  */
65
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.
73  *
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.
81  */
82
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.
85  *
86  * [10-Sep-98 Alan Modra] Another symlink change.
87  */
88
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).
96  *
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...
102  */
103 /*
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...
107  */
108
109 static int __link_path_walk(const char *name, struct nameidata *nd);
110
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..
114  *
115  * POSIX.1 2.4: an empty pathname is invalid (ENOENT).
116  * PATH_MAX includes the nul terminator --RR.
117  */
118 static int do_getname(const char __user *filename, char *page)
119 {
120         int retval;
121         unsigned long len = PATH_MAX;
122
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;
128         }
129
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;
138 }
139
140 char * getname(const char __user * filename)
141 {
142         char *tmp, *result;
143
144         result = ERR_PTR(-ENOMEM);
145         tmp = __getname();
146         if (tmp)  {
147                 int retval = do_getname(filename, tmp);
148
149                 result = tmp;
150                 if (retval < 0) {
151                         __putname(tmp);
152                         result = ERR_PTR(retval);
153                 }
154         }
155         audit_getname(result);
156         return result;
157 }
158
159 #ifdef CONFIG_AUDITSYSCALL
160 void putname(const char *name)
161 {
162         if (unlikely(!audit_dummy_context()))
163                 audit_putname(name);
164         else
165                 __putname(name);
166 }
167 EXPORT_SYMBOL(putname);
168 #endif
169
170
171 /**
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
176  *
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..
181  */
182 int generic_permission(struct inode *inode, int mask,
183                 int (*check_acl)(struct inode *inode, int mask))
184 {
185         umode_t                 mode = inode->i_mode;
186
187         mask &= MAY_READ | MAY_WRITE | MAY_EXEC;
188
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;
198                 }
199
200                 if (in_group_p(inode->i_gid))
201                         mode >>= 3;
202         }
203
204         /*
205          * If the DACs are ok we don't need any capability check.
206          */
207         if ((mask & ~mode) == 0)
208                 return 0;
209
210  check_capabilities:
211         /*
212          * Read/write DACs are always overridable.
213          * Executable DACs are overridable if at least one exec bit is set.
214          */
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;
219
220         /*
221          * Searching includes executable on directories, else just read.
222          */
223         if (mask == MAY_READ || (S_ISDIR(inode->i_mode) && !(mask & MAY_WRITE)))
224                 if (capable(CAP_DAC_READ_SEARCH))
225                         return 0;
226
227         return -EACCES;
228 }
229
230 int permission(struct inode *inode, int mask, struct nameidata *nd)
231 {
232         int retval;
233         struct vfsmount *mnt = NULL;
234
235         if (nd)
236                 mnt = nd->path.mnt;
237
238         if (mask & MAY_WRITE) {
239                 umode_t mode = inode->i_mode;
240
241                 /*
242                  * Nobody gets write access to a read-only fs.
243                  */
244                 if (IS_RDONLY(inode) &&
245                     (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode)))
246                         return -EROFS;
247
248                 /*
249                  * Nobody gets write access to an immutable file.
250                  */
251                 if (IS_IMMUTABLE(inode))
252                         return -EACCES;
253         }
254
255         /* Ordinary permission routines do not understand MAY_APPEND. */
256         if (inode->i_op && inode->i_op->permission) {
257                 retval = inode->i_op->permission(inode, mask);
258                 if (!retval) {
259                         /*
260                          * Exec permission on a regular file is denied if none
261                          * of the execute bits are set.
262                          *
263                          * This check should be done by the ->permission()
264                          * method.
265                          */
266                         if ((mask & MAY_EXEC) && S_ISREG(inode->i_mode) &&
267                             !(inode->i_mode & S_IXUGO))
268                                 return -EACCES;
269                 }
270         } else {
271                 retval = generic_permission(inode, mask, NULL);
272         }
273         if (retval)
274                 return retval;
275
276         retval = devcgroup_inode_permission(inode, mask);
277         if (retval)
278                 return retval;
279
280         return security_inode_permission(inode,
281                         mask & (MAY_READ|MAY_WRITE|MAY_EXEC));
282 }
283
284 /**
285  * vfs_permission  -  check for access rights to a given path
286  * @nd:         lookup result that describes the path
287  * @mask:       right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
288  *
289  * Used to check for read/write/execute permissions on a path.
290  * We use "fsuid" for this, letting us set arbitrary permissions
291  * for filesystem access without changing the "normal" uids which
292  * are used for other things.
293  */
294 int vfs_permission(struct nameidata *nd, int mask)
295 {
296         return permission(nd->path.dentry->d_inode, mask, nd);
297 }
298
299 /**
300  * file_permission  -  check for additional access rights to a given file
301  * @file:       file to check access rights for
302  * @mask:       right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
303  *
304  * Used to check for read/write/execute permissions on an already opened
305  * file.
306  *
307  * Note:
308  *      Do not use this function in new code.  All access checks should
309  *      be done using vfs_permission().
310  */
311 int file_permission(struct file *file, int mask)
312 {
313         return permission(file->f_path.dentry->d_inode, mask, NULL);
314 }
315
316 /*
317  * get_write_access() gets write permission for a file.
318  * put_write_access() releases this write permission.
319  * This is used for regular files.
320  * We cannot support write (and maybe mmap read-write shared) accesses and
321  * MAP_DENYWRITE mmappings simultaneously. The i_writecount field of an inode
322  * can have the following values:
323  * 0: no writers, no VM_DENYWRITE mappings
324  * < 0: (-i_writecount) vm_area_structs with VM_DENYWRITE set exist
325  * > 0: (i_writecount) users are writing to the file.
326  *
327  * Normally we operate on that counter with atomic_{inc,dec} and it's safe
328  * except for the cases where we don't hold i_writecount yet. Then we need to
329  * use {get,deny}_write_access() - these functions check the sign and refuse
330  * to do the change if sign is wrong. Exclusion between them is provided by
331  * the inode->i_lock spinlock.
332  */
333
334 int get_write_access(struct inode * inode)
335 {
336         spin_lock(&inode->i_lock);
337         if (atomic_read(&inode->i_writecount) < 0) {
338                 spin_unlock(&inode->i_lock);
339                 return -ETXTBSY;
340         }
341         atomic_inc(&inode->i_writecount);
342         spin_unlock(&inode->i_lock);
343
344         return 0;
345 }
346
347 int deny_write_access(struct file * file)
348 {
349         struct inode *inode = file->f_path.dentry->d_inode;
350
351         spin_lock(&inode->i_lock);
352         if (atomic_read(&inode->i_writecount) > 0) {
353                 spin_unlock(&inode->i_lock);
354                 return -ETXTBSY;
355         }
356         atomic_dec(&inode->i_writecount);
357         spin_unlock(&inode->i_lock);
358
359         return 0;
360 }
361
362 /**
363  * path_get - get a reference to a path
364  * @path: path to get the reference to
365  *
366  * Given a path increment the reference count to the dentry and the vfsmount.
367  */
368 void path_get(struct path *path)
369 {
370         mntget(path->mnt);
371         dget(path->dentry);
372 }
373 EXPORT_SYMBOL(path_get);
374
375 /**
376  * path_put - put a reference to a path
377  * @path: path to put the reference to
378  *
379  * Given a path decrement the reference count to the dentry and the vfsmount.
380  */
381 void path_put(struct path *path)
382 {
383         dput(path->dentry);
384         mntput(path->mnt);
385 }
386 EXPORT_SYMBOL(path_put);
387
388 /**
389  * release_open_intent - free up open intent resources
390  * @nd: pointer to nameidata
391  */
392 void release_open_intent(struct nameidata *nd)
393 {
394         if (nd->intent.open.file->f_path.dentry == NULL)
395                 put_filp(nd->intent.open.file);
396         else
397                 fput(nd->intent.open.file);
398 }
399
400 static inline struct dentry *
401 do_revalidate(struct dentry *dentry, struct nameidata *nd)
402 {
403         int status = dentry->d_op->d_revalidate(dentry, nd);
404         if (unlikely(status <= 0)) {
405                 /*
406                  * The dentry failed validation.
407                  * If d_revalidate returned 0 attempt to invalidate
408                  * the dentry otherwise d_revalidate is asking us
409                  * to return a fail status.
410                  */
411                 if (!status) {
412                         if (!d_invalidate(dentry)) {
413                                 dput(dentry);
414                                 dentry = NULL;
415                         }
416                 } else {
417                         dput(dentry);
418                         dentry = ERR_PTR(status);
419                 }
420         }
421         return dentry;
422 }
423
424 /*
425  * Internal lookup() using the new generic dcache.
426  * SMP-safe
427  */
428 static struct dentry * cached_lookup(struct dentry * parent, struct qstr * name, struct nameidata *nd)
429 {
430         struct dentry * dentry = __d_lookup(parent, name);
431
432         /* lockess __d_lookup may fail due to concurrent d_move() 
433          * in some unrelated directory, so try with d_lookup
434          */
435         if (!dentry)
436                 dentry = d_lookup(parent, name);
437
438         if (dentry && dentry->d_op && dentry->d_op->d_revalidate)
439                 dentry = do_revalidate(dentry, nd);
440
441         return dentry;
442 }
443
444 /*
445  * Short-cut version of permission(), for calling by
446  * path_walk(), when dcache lock is held.  Combines parts
447  * of permission() and generic_permission(), and tests ONLY for
448  * MAY_EXEC permission.
449  *
450  * If appropriate, check DAC only.  If not appropriate, or
451  * short-cut DAC fails, then call permission() to do more
452  * complete permission check.
453  */
454 static int exec_permission_lite(struct inode *inode)
455 {
456         umode_t mode = inode->i_mode;
457
458         if (inode->i_op && inode->i_op->permission)
459                 return -EAGAIN;
460
461         if (current->fsuid == inode->i_uid)
462                 mode >>= 6;
463         else if (in_group_p(inode->i_gid))
464                 mode >>= 3;
465
466         if (mode & MAY_EXEC)
467                 goto ok;
468
469         if ((inode->i_mode & S_IXUGO) && capable(CAP_DAC_OVERRIDE))
470                 goto ok;
471
472         if (S_ISDIR(inode->i_mode) && capable(CAP_DAC_OVERRIDE))
473                 goto ok;
474
475         if (S_ISDIR(inode->i_mode) && capable(CAP_DAC_READ_SEARCH))
476                 goto ok;
477
478         return -EACCES;
479 ok:
480         return security_inode_permission(inode, MAY_EXEC);
481 }
482
483 /*
484  * This is called when everything else fails, and we actually have
485  * to go to the low-level filesystem to find out what we should do..
486  *
487  * We get the directory semaphore, and after getting that we also
488  * make sure that nobody added the entry to the dcache in the meantime..
489  * SMP-safe
490  */
491 static struct dentry * real_lookup(struct dentry * parent, struct qstr * name, struct nameidata *nd)
492 {
493         struct dentry * result;
494         struct inode *dir = parent->d_inode;
495
496         mutex_lock(&dir->i_mutex);
497         /*
498          * First re-do the cached lookup just in case it was created
499          * while we waited for the directory semaphore..
500          *
501          * FIXME! This could use version numbering or similar to
502          * avoid unnecessary cache lookups.
503          *
504          * The "dcache_lock" is purely to protect the RCU list walker
505          * from concurrent renames at this point (we mustn't get false
506          * negatives from the RCU list walk here, unlike the optimistic
507          * fast walk).
508          *
509          * so doing d_lookup() (with seqlock), instead of lockfree __d_lookup
510          */
511         result = d_lookup(parent, name);
512         if (!result) {
513                 struct dentry *dentry;
514
515                 /* Don't create child dentry for a dead directory. */
516                 result = ERR_PTR(-ENOENT);
517                 if (IS_DEADDIR(dir))
518                         goto out_unlock;
519
520                 dentry = d_alloc(parent, name);
521                 result = ERR_PTR(-ENOMEM);
522                 if (dentry) {
523                         result = dir->i_op->lookup(dir, dentry, nd);
524                         if (result)
525                                 dput(dentry);
526                         else
527                                 result = dentry;
528                 }
529 out_unlock:
530                 mutex_unlock(&dir->i_mutex);
531                 return result;
532         }
533
534         /*
535          * Uhhuh! Nasty case: the cache was re-populated while
536          * we waited on the semaphore. Need to revalidate.
537          */
538         mutex_unlock(&dir->i_mutex);
539         if (result->d_op && result->d_op->d_revalidate) {
540                 result = do_revalidate(result, nd);
541                 if (!result)
542                         result = ERR_PTR(-ENOENT);
543         }
544         return result;
545 }
546
547 /* SMP-safe */
548 static __always_inline void
549 walk_init_root(const char *name, struct nameidata *nd)
550 {
551         struct fs_struct *fs = current->fs;
552
553         read_lock(&fs->lock);
554         nd->path = fs->root;
555         path_get(&fs->root);
556         read_unlock(&fs->lock);
557 }
558
559 /*
560  * Wrapper to retry pathname resolution whenever the underlying
561  * file system returns an ESTALE.
562  *
563  * Retry the whole path once, forcing real lookup requests
564  * instead of relying on the dcache.
565  */
566 static __always_inline int link_path_walk(const char *name, struct nameidata *nd)
567 {
568         struct path save = nd->path;
569         int result;
570
571         /* make sure the stuff we saved doesn't go away */
572         path_get(&save);
573
574         result = __link_path_walk(name, nd);
575         if (result == -ESTALE) {
576                 /* nd->path had been dropped */
577                 nd->path = save;
578                 path_get(&nd->path);
579                 nd->flags |= LOOKUP_REVAL;
580                 result = __link_path_walk(name, nd);
581         }
582
583         path_put(&save);
584
585         return result;
586 }
587
588 static __always_inline int __vfs_follow_link(struct nameidata *nd, const char *link)
589 {
590         int res = 0;
591         char *name;
592         if (IS_ERR(link))
593                 goto fail;
594
595         if (*link == '/') {
596                 path_put(&nd->path);
597                 walk_init_root(link, nd);
598         }
599         res = link_path_walk(link, nd);
600         if (nd->depth || res || nd->last_type!=LAST_NORM)
601                 return res;
602         /*
603          * If it is an iterative symlinks resolution in open_namei() we
604          * have to copy the last component. And all that crap because of
605          * bloody create() on broken symlinks. Furrfu...
606          */
607         name = __getname();
608         if (unlikely(!name)) {
609                 path_put(&nd->path);
610                 return -ENOMEM;
611         }
612         strcpy(name, nd->last.name);
613         nd->last.name = name;
614         return 0;
615 fail:
616         path_put(&nd->path);
617         return PTR_ERR(link);
618 }
619
620 static void path_put_conditional(struct path *path, struct nameidata *nd)
621 {
622         dput(path->dentry);
623         if (path->mnt != nd->path.mnt)
624                 mntput(path->mnt);
625 }
626
627 static inline void path_to_nameidata(struct path *path, struct nameidata *nd)
628 {
629         dput(nd->path.dentry);
630         if (nd->path.mnt != path->mnt)
631                 mntput(nd->path.mnt);
632         nd->path.mnt = path->mnt;
633         nd->path.dentry = path->dentry;
634 }
635
636 static __always_inline int __do_follow_link(struct path *path, struct nameidata *nd)
637 {
638         int error;
639         void *cookie;
640         struct dentry *dentry = path->dentry;
641
642         touch_atime(path->mnt, dentry);
643         nd_set_link(nd, NULL);
644
645         if (path->mnt != nd->path.mnt) {
646                 path_to_nameidata(path, nd);
647                 dget(dentry);
648         }
649         mntget(path->mnt);
650         cookie = dentry->d_inode->i_op->follow_link(dentry, nd);
651         error = PTR_ERR(cookie);
652         if (!IS_ERR(cookie)) {
653                 char *s = nd_get_link(nd);
654                 error = 0;
655                 if (s)
656                         error = __vfs_follow_link(nd, s);
657                 if (dentry->d_inode->i_op->put_link)
658                         dentry->d_inode->i_op->put_link(dentry, nd, cookie);
659         }
660         path_put(path);
661
662         return error;
663 }
664
665 /*
666  * This limits recursive symlink follows to 8, while
667  * limiting consecutive symlinks to 40.
668  *
669  * Without that kind of total limit, nasty chains of consecutive
670  * symlinks can cause almost arbitrarily long lookups. 
671  */
672 static inline int do_follow_link(struct path *path, struct nameidata *nd)
673 {
674         int err = -ELOOP;
675         if (current->link_count >= MAX_NESTED_LINKS)
676                 goto loop;
677         if (current->total_link_count >= 40)
678                 goto loop;
679         BUG_ON(nd->depth >= MAX_NESTED_LINKS);
680         cond_resched();
681         err = security_inode_follow_link(path->dentry, nd);
682         if (err)
683                 goto loop;
684         current->link_count++;
685         current->total_link_count++;
686         nd->depth++;
687         err = __do_follow_link(path, nd);
688         current->link_count--;
689         nd->depth--;
690         return err;
691 loop:
692         path_put_conditional(path, nd);
693         path_put(&nd->path);
694         return err;
695 }
696
697 int follow_up(struct vfsmount **mnt, struct dentry **dentry)
698 {
699         struct vfsmount *parent;
700         struct dentry *mountpoint;
701         spin_lock(&vfsmount_lock);
702         parent=(*mnt)->mnt_parent;
703         if (parent == *mnt) {
704                 spin_unlock(&vfsmount_lock);
705                 return 0;
706         }
707         mntget(parent);
708         mountpoint=dget((*mnt)->mnt_mountpoint);
709         spin_unlock(&vfsmount_lock);
710         dput(*dentry);
711         *dentry = mountpoint;
712         mntput(*mnt);
713         *mnt = parent;
714         return 1;
715 }
716
717 /* no need for dcache_lock, as serialization is taken care in
718  * namespace.c
719  */
720 static int __follow_mount(struct path *path)
721 {
722         int res = 0;
723         while (d_mountpoint(path->dentry)) {
724                 struct vfsmount *mounted = lookup_mnt(path->mnt, path->dentry);
725                 if (!mounted)
726                         break;
727                 dput(path->dentry);
728                 if (res)
729                         mntput(path->mnt);
730                 path->mnt = mounted;
731                 path->dentry = dget(mounted->mnt_root);
732                 res = 1;
733         }
734         return res;
735 }
736
737 static void follow_mount(struct vfsmount **mnt, struct dentry **dentry)
738 {
739         while (d_mountpoint(*dentry)) {
740                 struct vfsmount *mounted = lookup_mnt(*mnt, *dentry);
741                 if (!mounted)
742                         break;
743                 dput(*dentry);
744                 mntput(*mnt);
745                 *mnt = mounted;
746                 *dentry = dget(mounted->mnt_root);
747         }
748 }
749
750 /* no need for dcache_lock, as serialization is taken care in
751  * namespace.c
752  */
753 int follow_down(struct vfsmount **mnt, struct dentry **dentry)
754 {
755         struct vfsmount *mounted;
756
757         mounted = lookup_mnt(*mnt, *dentry);
758         if (mounted) {
759                 dput(*dentry);
760                 mntput(*mnt);
761                 *mnt = mounted;
762                 *dentry = dget(mounted->mnt_root);
763                 return 1;
764         }
765         return 0;
766 }
767
768 static __always_inline void follow_dotdot(struct nameidata *nd)
769 {
770         struct fs_struct *fs = current->fs;
771
772         while(1) {
773                 struct vfsmount *parent;
774                 struct dentry *old = nd->path.dentry;
775
776                 read_lock(&fs->lock);
777                 if (nd->path.dentry == fs->root.dentry &&
778                     nd->path.mnt == fs->root.mnt) {
779                         read_unlock(&fs->lock);
780                         break;
781                 }
782                 read_unlock(&fs->lock);
783                 spin_lock(&dcache_lock);
784                 if (nd->path.dentry != nd->path.mnt->mnt_root) {
785                         nd->path.dentry = dget(nd->path.dentry->d_parent);
786                         spin_unlock(&dcache_lock);
787                         dput(old);
788                         break;
789                 }
790                 spin_unlock(&dcache_lock);
791                 spin_lock(&vfsmount_lock);
792                 parent = nd->path.mnt->mnt_parent;
793                 if (parent == nd->path.mnt) {
794                         spin_unlock(&vfsmount_lock);
795                         break;
796                 }
797                 mntget(parent);
798                 nd->path.dentry = dget(nd->path.mnt->mnt_mountpoint);
799                 spin_unlock(&vfsmount_lock);
800                 dput(old);
801                 mntput(nd->path.mnt);
802                 nd->path.mnt = parent;
803         }
804         follow_mount(&nd->path.mnt, &nd->path.dentry);
805 }
806
807 /*
808  *  It's more convoluted than I'd like it to be, but... it's still fairly
809  *  small and for now I'd prefer to have fast path as straight as possible.
810  *  It _is_ time-critical.
811  */
812 static int do_lookup(struct nameidata *nd, struct qstr *name,
813                      struct path *path)
814 {
815         struct vfsmount *mnt = nd->path.mnt;
816         struct dentry *dentry = __d_lookup(nd->path.dentry, name);
817
818         if (!dentry)
819                 goto need_lookup;
820         if (dentry->d_op && dentry->d_op->d_revalidate)
821                 goto need_revalidate;
822 done:
823         path->mnt = mnt;
824         path->dentry = dentry;
825         __follow_mount(path);
826         return 0;
827
828 need_lookup:
829         dentry = real_lookup(nd->path.dentry, name, nd);
830         if (IS_ERR(dentry))
831                 goto fail;
832         goto done;
833
834 need_revalidate:
835         dentry = do_revalidate(dentry, nd);
836         if (!dentry)
837                 goto need_lookup;
838         if (IS_ERR(dentry))
839                 goto fail;
840         goto done;
841
842 fail:
843         return PTR_ERR(dentry);
844 }
845
846 /*
847  * Name resolution.
848  * This is the basic name resolution function, turning a pathname into
849  * the final dentry. We expect 'base' to be positive and a directory.
850  *
851  * Returns 0 and nd will have valid dentry and mnt on success.
852  * Returns error and drops reference to input namei data on failure.
853  */
854 static int __link_path_walk(const char *name, struct nameidata *nd)
855 {
856         struct path next;
857         struct inode *inode;
858         int err;
859         unsigned int lookup_flags = nd->flags;
860         
861         while (*name=='/')
862                 name++;
863         if (!*name)
864                 goto return_reval;
865
866         inode = nd->path.dentry->d_inode;
867         if (nd->depth)
868                 lookup_flags = LOOKUP_FOLLOW | (nd->flags & LOOKUP_CONTINUE);
869
870         /* At this point we know we have a real path component. */
871         for(;;) {
872                 unsigned long hash;
873                 struct qstr this;
874                 unsigned int c;
875
876                 nd->flags |= LOOKUP_CONTINUE;
877                 err = exec_permission_lite(inode);
878                 if (err == -EAGAIN)
879                         err = vfs_permission(nd, MAY_EXEC);
880                 if (err)
881                         break;
882
883                 this.name = name;
884                 c = *(const unsigned char *)name;
885
886                 hash = init_name_hash();
887                 do {
888                         name++;
889                         hash = partial_name_hash(c, hash);
890                         c = *(const unsigned char *)name;
891                 } while (c && (c != '/'));
892                 this.len = name - (const char *) this.name;
893                 this.hash = end_name_hash(hash);
894
895                 /* remove trailing slashes? */
896                 if (!c)
897                         goto last_component;
898                 while (*++name == '/');
899                 if (!*name)
900                         goto last_with_slashes;
901
902                 /*
903                  * "." and ".." are special - ".." especially so because it has
904                  * to be able to know about the current root directory and
905                  * parent relationships.
906                  */
907                 if (this.name[0] == '.') switch (this.len) {
908                         default:
909                                 break;
910                         case 2: 
911                                 if (this.name[1] != '.')
912                                         break;
913                                 follow_dotdot(nd);
914                                 inode = nd->path.dentry->d_inode;
915                                 /* fallthrough */
916                         case 1:
917                                 continue;
918                 }
919                 /*
920                  * See if the low-level filesystem might want
921                  * to use its own hash..
922                  */
923                 if (nd->path.dentry->d_op && nd->path.dentry->d_op->d_hash) {
924                         err = nd->path.dentry->d_op->d_hash(nd->path.dentry,
925                                                             &this);
926                         if (err < 0)
927                                 break;
928                 }
929                 /* This does the actual lookups.. */
930                 err = do_lookup(nd, &this, &next);
931                 if (err)
932                         break;
933
934                 err = -ENOENT;
935                 inode = next.dentry->d_inode;
936                 if (!inode)
937                         goto out_dput;
938                 err = -ENOTDIR; 
939                 if (!inode->i_op)
940                         goto out_dput;
941
942                 if (inode->i_op->follow_link) {
943                         err = do_follow_link(&next, nd);
944                         if (err)
945                                 goto return_err;
946                         err = -ENOENT;
947                         inode = nd->path.dentry->d_inode;
948                         if (!inode)
949                                 break;
950                         err = -ENOTDIR; 
951                         if (!inode->i_op)
952                                 break;
953                 } else
954                         path_to_nameidata(&next, nd);
955                 err = -ENOTDIR; 
956                 if (!inode->i_op->lookup)
957                         break;
958                 continue;
959                 /* here ends the main loop */
960
961 last_with_slashes:
962                 lookup_flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
963 last_component:
964                 /* Clear LOOKUP_CONTINUE iff it was previously unset */
965                 nd->flags &= lookup_flags | ~LOOKUP_CONTINUE;
966                 if (lookup_flags & LOOKUP_PARENT)
967                         goto lookup_parent;
968                 if (this.name[0] == '.') switch (this.len) {
969                         default:
970                                 break;
971                         case 2: 
972                                 if (this.name[1] != '.')
973                                         break;
974                                 follow_dotdot(nd);
975                                 inode = nd->path.dentry->d_inode;
976                                 /* fallthrough */
977                         case 1:
978                                 goto return_reval;
979                 }
980                 if (nd->path.dentry->d_op && nd->path.dentry->d_op->d_hash) {
981                         err = nd->path.dentry->d_op->d_hash(nd->path.dentry,
982                                                             &this);
983                         if (err < 0)
984                                 break;
985                 }
986                 err = do_lookup(nd, &this, &next);
987                 if (err)
988                         break;
989                 inode = next.dentry->d_inode;
990                 if ((lookup_flags & LOOKUP_FOLLOW)
991                     && inode && inode->i_op && inode->i_op->follow_link) {
992                         err = do_follow_link(&next, nd);
993                         if (err)
994                                 goto return_err;
995                         inode = nd->path.dentry->d_inode;
996                 } else
997                         path_to_nameidata(&next, nd);
998                 err = -ENOENT;
999                 if (!inode)
1000                         break;
1001                 if (lookup_flags & LOOKUP_DIRECTORY) {
1002                         err = -ENOTDIR; 
1003                         if (!inode->i_op || !inode->i_op->lookup)
1004                                 break;
1005                 }
1006                 goto return_base;
1007 lookup_parent:
1008                 nd->last = this;
1009                 nd->last_type = LAST_NORM;
1010                 if (this.name[0] != '.')
1011                         goto return_base;
1012                 if (this.len == 1)
1013                         nd->last_type = LAST_DOT;
1014                 else if (this.len == 2 && this.name[1] == '.')
1015                         nd->last_type = LAST_DOTDOT;
1016                 else
1017                         goto return_base;
1018 return_reval:
1019                 /*
1020                  * We bypassed the ordinary revalidation routines.
1021                  * We may need to check the cached dentry for staleness.
1022                  */
1023                 if (nd->path.dentry && nd->path.dentry->d_sb &&
1024                     (nd->path.dentry->d_sb->s_type->fs_flags & FS_REVAL_DOT)) {
1025                         err = -ESTALE;
1026                         /* Note: we do not d_invalidate() */
1027                         if (!nd->path.dentry->d_op->d_revalidate(
1028                                         nd->path.dentry, nd))
1029                                 break;
1030                 }
1031 return_base:
1032                 return 0;
1033 out_dput:
1034                 path_put_conditional(&next, nd);
1035                 break;
1036         }
1037         path_put(&nd->path);
1038 return_err:
1039         return err;
1040 }
1041
1042 static int path_walk(const char *name, struct nameidata *nd)
1043 {
1044         current->total_link_count = 0;
1045         return link_path_walk(name, nd);
1046 }
1047
1048 /* Returns 0 and nd will be valid on success; Retuns error, otherwise. */
1049 static int do_path_lookup(int dfd, const char *name,
1050                                 unsigned int flags, struct nameidata *nd)
1051 {
1052         int retval = 0;
1053         int fput_needed;
1054         struct file *file;
1055         struct fs_struct *fs = current->fs;
1056
1057         nd->last_type = LAST_ROOT; /* if there are only slashes... */
1058         nd->flags = flags;
1059         nd->depth = 0;
1060
1061         if (*name=='/') {
1062                 read_lock(&fs->lock);
1063                 nd->path = fs->root;
1064                 path_get(&fs->root);
1065                 read_unlock(&fs->lock);
1066         } else if (dfd == AT_FDCWD) {
1067                 read_lock(&fs->lock);
1068                 nd->path = fs->pwd;
1069                 path_get(&fs->pwd);
1070                 read_unlock(&fs->lock);
1071         } else {
1072                 struct dentry *dentry;
1073
1074                 file = fget_light(dfd, &fput_needed);
1075                 retval = -EBADF;
1076                 if (!file)
1077                         goto out_fail;
1078
1079                 dentry = file->f_path.dentry;
1080
1081                 retval = -ENOTDIR;
1082                 if (!S_ISDIR(dentry->d_inode->i_mode))
1083                         goto fput_fail;
1084
1085                 retval = file_permission(file, MAY_EXEC);
1086                 if (retval)
1087                         goto fput_fail;
1088
1089                 nd->path = file->f_path;
1090                 path_get(&file->f_path);
1091
1092                 fput_light(file, fput_needed);
1093         }
1094
1095         retval = path_walk(name, nd);
1096         if (unlikely(!retval && !audit_dummy_context() && nd->path.dentry &&
1097                                 nd->path.dentry->d_inode))
1098                 audit_inode(name, nd->path.dentry);
1099 out_fail:
1100         return retval;
1101
1102 fput_fail:
1103         fput_light(file, fput_needed);
1104         goto out_fail;
1105 }
1106
1107 int path_lookup(const char *name, unsigned int flags,
1108                         struct nameidata *nd)
1109 {
1110         return do_path_lookup(AT_FDCWD, name, flags, nd);
1111 }
1112
1113 /**
1114  * vfs_path_lookup - lookup a file path relative to a dentry-vfsmount pair
1115  * @dentry:  pointer to dentry of the base directory
1116  * @mnt: pointer to vfs mount of the base directory
1117  * @name: pointer to file name
1118  * @flags: lookup flags
1119  * @nd: pointer to nameidata
1120  */
1121 int vfs_path_lookup(struct dentry *dentry, struct vfsmount *mnt,
1122                     const char *name, unsigned int flags,
1123                     struct nameidata *nd)
1124 {
1125         int retval;
1126
1127         /* same as do_path_lookup */
1128         nd->last_type = LAST_ROOT;
1129         nd->flags = flags;
1130         nd->depth = 0;
1131
1132         nd->path.dentry = dentry;
1133         nd->path.mnt = mnt;
1134         path_get(&nd->path);
1135
1136         retval = path_walk(name, nd);
1137         if (unlikely(!retval && !audit_dummy_context() && nd->path.dentry &&
1138                                 nd->path.dentry->d_inode))
1139                 audit_inode(name, nd->path.dentry);
1140
1141         return retval;
1142
1143 }
1144
1145 static int __path_lookup_intent_open(int dfd, const char *name,
1146                 unsigned int lookup_flags, struct nameidata *nd,
1147                 int open_flags, int create_mode)
1148 {
1149         struct file *filp = get_empty_filp();
1150         int err;
1151
1152         if (filp == NULL)
1153                 return -ENFILE;
1154         nd->intent.open.file = filp;
1155         nd->intent.open.flags = open_flags;
1156         nd->intent.open.create_mode = create_mode;
1157         err = do_path_lookup(dfd, name, lookup_flags|LOOKUP_OPEN, nd);
1158         if (IS_ERR(nd->intent.open.file)) {
1159                 if (err == 0) {
1160                         err = PTR_ERR(nd->intent.open.file);
1161                         path_put(&nd->path);
1162                 }
1163         } else if (err != 0)
1164                 release_open_intent(nd);
1165         return err;
1166 }
1167
1168 /**
1169  * path_lookup_open - lookup a file path with open intent
1170  * @dfd: the directory to use as base, or AT_FDCWD
1171  * @name: pointer to file name
1172  * @lookup_flags: lookup intent flags
1173  * @nd: pointer to nameidata
1174  * @open_flags: open intent flags
1175  */
1176 int path_lookup_open(int dfd, const char *name, unsigned int lookup_flags,
1177                 struct nameidata *nd, int open_flags)
1178 {
1179         return __path_lookup_intent_open(dfd, name, lookup_flags, nd,
1180                         open_flags, 0);
1181 }
1182
1183 /**
1184  * path_lookup_create - lookup a file path with open + create intent
1185  * @dfd: the directory to use as base, or AT_FDCWD
1186  * @name: pointer to file name
1187  * @lookup_flags: lookup intent flags
1188  * @nd: pointer to nameidata
1189  * @open_flags: open intent flags
1190  * @create_mode: create intent flags
1191  */
1192 static int path_lookup_create(int dfd, const char *name,
1193                               unsigned int lookup_flags, struct nameidata *nd,
1194                               int open_flags, int create_mode)
1195 {
1196         return __path_lookup_intent_open(dfd, name, lookup_flags|LOOKUP_CREATE,
1197                         nd, open_flags, create_mode);
1198 }
1199
1200 int __user_path_lookup_open(const char __user *name, unsigned int lookup_flags,
1201                 struct nameidata *nd, int open_flags)
1202 {
1203         char *tmp = getname(name);
1204         int err = PTR_ERR(tmp);
1205
1206         if (!IS_ERR(tmp)) {
1207                 err = __path_lookup_intent_open(AT_FDCWD, tmp, lookup_flags, nd, open_flags, 0);
1208                 putname(tmp);
1209         }
1210         return err;
1211 }
1212
1213 static struct dentry *__lookup_hash(struct qstr *name,
1214                 struct dentry *base, struct nameidata *nd)
1215 {
1216         struct dentry *dentry;
1217         struct inode *inode;
1218         int err;
1219
1220         inode = base->d_inode;
1221
1222         /*
1223          * See if the low-level filesystem might want
1224          * to use its own hash..
1225          */
1226         if (base->d_op && base->d_op->d_hash) {
1227                 err = base->d_op->d_hash(base, name);
1228                 dentry = ERR_PTR(err);
1229                 if (err < 0)
1230                         goto out;
1231         }
1232
1233         dentry = cached_lookup(base, name, nd);
1234         if (!dentry) {
1235                 struct dentry *new;
1236
1237                 /* Don't create child dentry for a dead directory. */
1238                 dentry = ERR_PTR(-ENOENT);
1239                 if (IS_DEADDIR(inode))
1240                         goto out;
1241
1242                 new = d_alloc(base, name);
1243                 dentry = ERR_PTR(-ENOMEM);
1244                 if (!new)
1245                         goto out;
1246                 dentry = inode->i_op->lookup(inode, new, nd);
1247                 if (!dentry)
1248                         dentry = new;
1249                 else
1250                         dput(new);
1251         }
1252 out:
1253         return dentry;
1254 }
1255
1256 /*
1257  * Restricted form of lookup. Doesn't follow links, single-component only,
1258  * needs parent already locked. Doesn't follow mounts.
1259  * SMP-safe.
1260  */
1261 static struct dentry *lookup_hash(struct nameidata *nd)
1262 {
1263         int err;
1264
1265         err = permission(nd->path.dentry->d_inode, MAY_EXEC, nd);
1266         if (err)
1267                 return ERR_PTR(err);
1268         return __lookup_hash(&nd->last, nd->path.dentry, nd);
1269 }
1270
1271 static int __lookup_one_len(const char *name, struct qstr *this,
1272                 struct dentry *base, int len)
1273 {
1274         unsigned long hash;
1275         unsigned int c;
1276
1277         this->name = name;
1278         this->len = len;
1279         if (!len)
1280                 return -EACCES;
1281
1282         hash = init_name_hash();
1283         while (len--) {
1284                 c = *(const unsigned char *)name++;
1285                 if (c == '/' || c == '\0')
1286                         return -EACCES;
1287                 hash = partial_name_hash(c, hash);
1288         }
1289         this->hash = end_name_hash(hash);
1290         return 0;
1291 }
1292
1293 /**
1294  * lookup_one_len - filesystem helper to lookup single pathname component
1295  * @name:       pathname component to lookup
1296  * @base:       base directory to lookup from
1297  * @len:        maximum length @len should be interpreted to
1298  *
1299  * Note that this routine is purely a helper for filesystem usage and should
1300  * not be called by generic code.  Also note that by using this function the
1301  * nameidata argument is passed to the filesystem methods and a filesystem
1302  * using this helper needs to be prepared for that.
1303  */
1304 struct dentry *lookup_one_len(const char *name, struct dentry *base, int len)
1305 {
1306         int err;
1307         struct qstr this;
1308
1309         err = __lookup_one_len(name, &this, base, len);
1310         if (err)
1311                 return ERR_PTR(err);
1312
1313         err = permission(base->d_inode, MAY_EXEC, NULL);
1314         if (err)
1315                 return ERR_PTR(err);
1316         return __lookup_hash(&this, base, NULL);
1317 }
1318
1319 /**
1320  * lookup_one_noperm - bad hack for sysfs
1321  * @name:       pathname component to lookup
1322  * @base:       base directory to lookup from
1323  *
1324  * This is a variant of lookup_one_len that doesn't perform any permission
1325  * checks.   It's a horrible hack to work around the braindead sysfs
1326  * architecture and should not be used anywhere else.
1327  *
1328  * DON'T USE THIS FUNCTION EVER, thanks.
1329  */
1330 struct dentry *lookup_one_noperm(const char *name, struct dentry *base)
1331 {
1332         int err;
1333         struct qstr this;
1334
1335         err = __lookup_one_len(name, &this, base, strlen(name));
1336         if (err)
1337                 return ERR_PTR(err);
1338         return __lookup_hash(&this, base, NULL);
1339 }
1340
1341 int __user_walk_fd(int dfd, const char __user *name, unsigned flags,
1342                             struct nameidata *nd)
1343 {
1344         char *tmp = getname(name);
1345         int err = PTR_ERR(tmp);
1346
1347         if (!IS_ERR(tmp)) {
1348                 err = do_path_lookup(dfd, tmp, flags, nd);
1349                 putname(tmp);
1350         }
1351         return err;
1352 }
1353
1354 int __user_walk(const char __user *name, unsigned flags, struct nameidata *nd)
1355 {
1356         return __user_walk_fd(AT_FDCWD, name, flags, nd);
1357 }
1358
1359 /*
1360  * It's inline, so penalty for filesystems that don't use sticky bit is
1361  * minimal.
1362  */
1363 static inline int check_sticky(struct inode *dir, struct inode *inode)
1364 {
1365         if (!(dir->i_mode & S_ISVTX))
1366                 return 0;
1367         if (inode->i_uid == current->fsuid)
1368                 return 0;
1369         if (dir->i_uid == current->fsuid)
1370                 return 0;
1371         return !capable(CAP_FOWNER);
1372 }
1373
1374 /*
1375  *      Check whether we can remove a link victim from directory dir, check
1376  *  whether the type of victim is right.
1377  *  1. We can't do it if dir is read-only (done in permission())
1378  *  2. We should have write and exec permissions on dir
1379  *  3. We can't remove anything from append-only dir
1380  *  4. We can't do anything with immutable dir (done in permission())
1381  *  5. If the sticky bit on dir is set we should either
1382  *      a. be owner of dir, or
1383  *      b. be owner of victim, or
1384  *      c. have CAP_FOWNER capability
1385  *  6. If the victim is append-only or immutable we can't do antyhing with
1386  *     links pointing to it.
1387  *  7. If we were asked to remove a directory and victim isn't one - ENOTDIR.
1388  *  8. If we were asked to remove a non-directory and victim isn't one - EISDIR.
1389  *  9. We can't remove a root or mountpoint.
1390  * 10. We don't allow removal of NFS sillyrenamed files; it's handled by
1391  *     nfs_async_unlink().
1392  */
1393 static int may_delete(struct inode *dir,struct dentry *victim,int isdir)
1394 {
1395         int error;
1396
1397         if (!victim->d_inode)
1398                 return -ENOENT;
1399
1400         BUG_ON(victim->d_parent->d_inode != dir);
1401         audit_inode_child(victim->d_name.name, victim, dir);
1402
1403         error = permission(dir,MAY_WRITE | MAY_EXEC, NULL);
1404         if (error)
1405                 return error;
1406         if (IS_APPEND(dir))
1407                 return -EPERM;
1408         if (check_sticky(dir, victim->d_inode)||IS_APPEND(victim->d_inode)||
1409             IS_IMMUTABLE(victim->d_inode))
1410                 return -EPERM;
1411         if (isdir) {
1412                 if (!S_ISDIR(victim->d_inode->i_mode))
1413                         return -ENOTDIR;
1414                 if (IS_ROOT(victim))
1415                         return -EBUSY;
1416         } else if (S_ISDIR(victim->d_inode->i_mode))
1417                 return -EISDIR;
1418         if (IS_DEADDIR(dir))
1419                 return -ENOENT;
1420         if (victim->d_flags & DCACHE_NFSFS_RENAMED)
1421                 return -EBUSY;
1422         return 0;
1423 }
1424
1425 /*      Check whether we can create an object with dentry child in directory
1426  *  dir.
1427  *  1. We can't do it if child already exists (open has special treatment for
1428  *     this case, but since we are inlined it's OK)
1429  *  2. We can't do it if dir is read-only (done in permission())
1430  *  3. We should have write and exec permissions on dir
1431  *  4. We can't do it if dir is immutable (done in permission())
1432  */
1433 static inline int may_create(struct inode *dir, struct dentry *child,
1434                              struct nameidata *nd)
1435 {
1436         if (child->d_inode)
1437                 return -EEXIST;
1438         if (IS_DEADDIR(dir))
1439                 return -ENOENT;
1440         return permission(dir,MAY_WRITE | MAY_EXEC, nd);
1441 }
1442
1443 /* 
1444  * O_DIRECTORY translates into forcing a directory lookup.
1445  */
1446 static inline int lookup_flags(unsigned int f)
1447 {
1448         unsigned long retval = LOOKUP_FOLLOW;
1449
1450         if (f & O_NOFOLLOW)
1451                 retval &= ~LOOKUP_FOLLOW;
1452         
1453         if (f & O_DIRECTORY)
1454                 retval |= LOOKUP_DIRECTORY;
1455
1456         return retval;
1457 }
1458
1459 /*
1460  * p1 and p2 should be directories on the same fs.
1461  */
1462 struct dentry *lock_rename(struct dentry *p1, struct dentry *p2)
1463 {
1464         struct dentry *p;
1465
1466         if (p1 == p2) {
1467                 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
1468                 return NULL;
1469         }
1470
1471         mutex_lock(&p1->d_inode->i_sb->s_vfs_rename_mutex);
1472
1473         for (p = p1; p->d_parent != p; p = p->d_parent) {
1474                 if (p->d_parent == p2) {
1475                         mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_PARENT);
1476                         mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_CHILD);
1477                         return p;
1478                 }
1479         }
1480
1481         for (p = p2; p->d_parent != p; p = p->d_parent) {
1482                 if (p->d_parent == p1) {
1483                         mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
1484                         mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_CHILD);
1485                         return p;
1486                 }
1487         }
1488
1489         mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
1490         mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_CHILD);
1491         return NULL;
1492 }
1493
1494 void unlock_rename(struct dentry *p1, struct dentry *p2)
1495 {
1496         mutex_unlock(&p1->d_inode->i_mutex);
1497         if (p1 != p2) {
1498                 mutex_unlock(&p2->d_inode->i_mutex);
1499                 mutex_unlock(&p1->d_inode->i_sb->s_vfs_rename_mutex);
1500         }
1501 }
1502
1503 int vfs_create(struct inode *dir, struct dentry *dentry, int mode,
1504                 struct nameidata *nd)
1505 {
1506         int error = may_create(dir, dentry, nd);
1507
1508         if (error)
1509                 return error;
1510
1511         if (!dir->i_op || !dir->i_op->create)
1512                 return -EACCES; /* shouldn't it be ENOSYS? */
1513         mode &= S_IALLUGO;
1514         mode |= S_IFREG;
1515         error = security_inode_create(dir, dentry, mode);
1516         if (error)
1517                 return error;
1518         DQUOT_INIT(dir);
1519         error = dir->i_op->create(dir, dentry, mode, nd);
1520         if (!error)
1521                 fsnotify_create(dir, dentry);
1522         return error;
1523 }
1524
1525 int may_open(struct nameidata *nd, int acc_mode, int flag)
1526 {
1527         struct dentry *dentry = nd->path.dentry;
1528         struct inode *inode = dentry->d_inode;
1529         int error;
1530
1531         if (!inode)
1532                 return -ENOENT;
1533
1534         if (S_ISLNK(inode->i_mode))
1535                 return -ELOOP;
1536         
1537         if (S_ISDIR(inode->i_mode) && (acc_mode & MAY_WRITE))
1538                 return -EISDIR;
1539
1540         /*
1541          * FIFO's, sockets and device files are special: they don't
1542          * actually live on the filesystem itself, and as such you
1543          * can write to them even if the filesystem is read-only.
1544          */
1545         if (S_ISFIFO(inode->i_mode) || S_ISSOCK(inode->i_mode)) {
1546                 flag &= ~O_TRUNC;
1547         } else if (S_ISBLK(inode->i_mode) || S_ISCHR(inode->i_mode)) {
1548                 if (nd->path.mnt->mnt_flags & MNT_NODEV)
1549                         return -EACCES;
1550
1551                 flag &= ~O_TRUNC;
1552         }
1553
1554         error = vfs_permission(nd, acc_mode);
1555         if (error)
1556                 return error;
1557         /*
1558          * An append-only file must be opened in append mode for writing.
1559          */
1560         if (IS_APPEND(inode)) {
1561                 if  ((flag & FMODE_WRITE) && !(flag & O_APPEND))
1562                         return -EPERM;
1563                 if (flag & O_TRUNC)
1564                         return -EPERM;
1565         }
1566
1567         /* O_NOATIME can only be set by the owner or superuser */
1568         if (flag & O_NOATIME)
1569                 if (!is_owner_or_cap(inode))
1570                         return -EPERM;
1571
1572         /*
1573          * Ensure there are no outstanding leases on the file.
1574          */
1575         error = break_lease(inode, flag);
1576         if (error)
1577                 return error;
1578
1579         if (flag & O_TRUNC) {
1580                 error = get_write_access(inode);
1581                 if (error)
1582                         return error;
1583
1584                 /*
1585                  * Refuse to truncate files with mandatory locks held on them.
1586                  */
1587                 error = locks_verify_locked(inode);
1588                 if (!error) {
1589                         DQUOT_INIT(inode);
1590
1591                         error = do_truncate(dentry, 0,
1592                                             ATTR_MTIME|ATTR_CTIME|ATTR_OPEN,
1593                                             NULL);
1594                 }
1595                 put_write_access(inode);
1596                 if (error)
1597                         return error;
1598         } else
1599                 if (flag & FMODE_WRITE)
1600                         DQUOT_INIT(inode);
1601
1602         return 0;
1603 }
1604
1605 /*
1606  * Be careful about ever adding any more callers of this
1607  * function.  Its flags must be in the namei format, not
1608  * what get passed to sys_open().
1609  */
1610 static int __open_namei_create(struct nameidata *nd, struct path *path,
1611                                 int flag, int mode)
1612 {
1613         int error;
1614         struct dentry *dir = nd->path.dentry;
1615
1616         if (!IS_POSIXACL(dir->d_inode))
1617                 mode &= ~current->fs->umask;
1618         error = vfs_create(dir->d_inode, path->dentry, mode, nd);
1619         mutex_unlock(&dir->d_inode->i_mutex);
1620         dput(nd->path.dentry);
1621         nd->path.dentry = path->dentry;
1622         if (error)
1623                 return error;
1624         /* Don't check for write permission, don't truncate */
1625         return may_open(nd, 0, flag & ~O_TRUNC);
1626 }
1627
1628 /*
1629  * Note that while the flag value (low two bits) for sys_open means:
1630  *      00 - read-only
1631  *      01 - write-only
1632  *      10 - read-write
1633  *      11 - special
1634  * it is changed into
1635  *      00 - no permissions needed
1636  *      01 - read-permission
1637  *      10 - write-permission
1638  *      11 - read-write
1639  * for the internal routines (ie open_namei()/follow_link() etc)
1640  * This is more logical, and also allows the 00 "no perm needed"
1641  * to be used for symlinks (where the permissions are checked
1642  * later).
1643  *
1644 */
1645 static inline int open_to_namei_flags(int flag)
1646 {
1647         if ((flag+1) & O_ACCMODE)
1648                 flag++;
1649         return flag;
1650 }
1651
1652 static int open_will_write_to_fs(int flag, struct inode *inode)
1653 {
1654         /*
1655          * We'll never write to the fs underlying
1656          * a device file.
1657          */
1658         if (special_file(inode->i_mode))
1659                 return 0;
1660         return (flag & O_TRUNC);
1661 }
1662
1663 /*
1664  * Note that the low bits of the passed in "open_flag"
1665  * are not the same as in the local variable "flag". See
1666  * open_to_namei_flags() for more details.
1667  */
1668 struct file *do_filp_open(int dfd, const char *pathname,
1669                 int open_flag, int mode)
1670 {
1671         struct file *filp;
1672         struct nameidata nd;
1673         int acc_mode, error;
1674         struct path path;
1675         struct dentry *dir;
1676         int count = 0;
1677         int will_write;
1678         int flag = open_to_namei_flags(open_flag);
1679
1680         acc_mode = MAY_OPEN | ACC_MODE(flag);
1681
1682         /* O_TRUNC implies we need access checks for write permissions */
1683         if (flag & O_TRUNC)
1684                 acc_mode |= MAY_WRITE;
1685
1686         /* Allow the LSM permission hook to distinguish append 
1687            access from general write access. */
1688         if (flag & O_APPEND)
1689                 acc_mode |= MAY_APPEND;
1690
1691         /*
1692          * The simplest case - just a plain lookup.
1693          */
1694         if (!(flag & O_CREAT)) {
1695                 error = path_lookup_open(dfd, pathname, lookup_flags(flag),
1696                                          &nd, flag);
1697                 if (error)
1698                         return ERR_PTR(error);
1699                 goto ok;
1700         }
1701
1702         /*
1703          * Create - we need to know the parent.
1704          */
1705         error = path_lookup_create(dfd, pathname, LOOKUP_PARENT,
1706                                    &nd, flag, mode);
1707         if (error)
1708                 return ERR_PTR(error);
1709
1710         /*
1711          * We have the parent and last component. First of all, check
1712          * that we are not asked to creat(2) an obvious directory - that
1713          * will not do.
1714          */
1715         error = -EISDIR;
1716         if (nd.last_type != LAST_NORM || nd.last.name[nd.last.len])
1717                 goto exit;
1718
1719         dir = nd.path.dentry;
1720         nd.flags &= ~LOOKUP_PARENT;
1721         mutex_lock(&dir->d_inode->i_mutex);
1722         path.dentry = lookup_hash(&nd);
1723         path.mnt = nd.path.mnt;
1724
1725 do_last:
1726         error = PTR_ERR(path.dentry);
1727         if (IS_ERR(path.dentry)) {
1728                 mutex_unlock(&dir->d_inode->i_mutex);
1729                 goto exit;
1730         }
1731
1732         if (IS_ERR(nd.intent.open.file)) {
1733                 error = PTR_ERR(nd.intent.open.file);
1734                 goto exit_mutex_unlock;
1735         }
1736
1737         /* Negative dentry, just create the file */
1738         if (!path.dentry->d_inode) {
1739                 /*
1740                  * This write is needed to ensure that a
1741                  * ro->rw transition does not occur between
1742                  * the time when the file is created and when
1743                  * a permanent write count is taken through
1744                  * the 'struct file' in nameidata_to_filp().
1745                  */
1746                 error = mnt_want_write(nd.path.mnt);
1747                 if (error)
1748                         goto exit_mutex_unlock;
1749                 error = __open_namei_create(&nd, &path, flag, mode);
1750                 if (error) {
1751                         mnt_drop_write(nd.path.mnt);
1752                         goto exit;
1753                 }
1754                 filp = nameidata_to_filp(&nd, open_flag);
1755                 mnt_drop_write(nd.path.mnt);
1756                 return filp;
1757         }
1758
1759         /*
1760          * It already exists.
1761          */
1762         mutex_unlock(&dir->d_inode->i_mutex);
1763         audit_inode(pathname, path.dentry);
1764
1765         error = -EEXIST;
1766         if (flag & O_EXCL)
1767                 goto exit_dput;
1768
1769         if (__follow_mount(&path)) {
1770                 error = -ELOOP;
1771                 if (flag & O_NOFOLLOW)
1772                         goto exit_dput;
1773         }
1774
1775         error = -ENOENT;
1776         if (!path.dentry->d_inode)
1777                 goto exit_dput;
1778         if (path.dentry->d_inode->i_op && path.dentry->d_inode->i_op->follow_link)
1779                 goto do_link;
1780
1781         path_to_nameidata(&path, &nd);
1782         error = -EISDIR;
1783         if (path.dentry->d_inode && S_ISDIR(path.dentry->d_inode->i_mode))
1784                 goto exit;
1785 ok:
1786         /*
1787          * Consider:
1788          * 1. may_open() truncates a file
1789          * 2. a rw->ro mount transition occurs
1790          * 3. nameidata_to_filp() fails due to
1791          *    the ro mount.
1792          * That would be inconsistent, and should
1793          * be avoided. Taking this mnt write here
1794          * ensures that (2) can not occur.
1795          */
1796         will_write = open_will_write_to_fs(flag, nd.path.dentry->d_inode);
1797         if (will_write) {
1798                 error = mnt_want_write(nd.path.mnt);
1799                 if (error)
1800                         goto exit;
1801         }
1802         error = may_open(&nd, acc_mode, flag);
1803         if (error) {
1804                 if (will_write)
1805                         mnt_drop_write(nd.path.mnt);
1806                 goto exit;
1807         }
1808         filp = nameidata_to_filp(&nd, open_flag);
1809         /*
1810          * It is now safe to drop the mnt write
1811          * because the filp has had a write taken
1812          * on its behalf.
1813          */
1814         if (will_write)
1815                 mnt_drop_write(nd.path.mnt);
1816         return filp;
1817
1818 exit_mutex_unlock:
1819         mutex_unlock(&dir->d_inode->i_mutex);
1820 exit_dput:
1821         path_put_conditional(&path, &nd);
1822 exit:
1823         if (!IS_ERR(nd.intent.open.file))
1824                 release_open_intent(&nd);
1825         path_put(&nd.path);
1826         return ERR_PTR(error);
1827
1828 do_link:
1829         error = -ELOOP;
1830         if (flag & O_NOFOLLOW)
1831                 goto exit_dput;
1832         /*
1833          * This is subtle. Instead of calling do_follow_link() we do the
1834          * thing by hands. The reason is that this way we have zero link_count
1835          * and path_walk() (called from ->follow_link) honoring LOOKUP_PARENT.
1836          * After that we have the parent and last component, i.e.
1837          * we are in the same situation as after the first path_walk().
1838          * Well, almost - if the last component is normal we get its copy
1839          * stored in nd->last.name and we will have to putname() it when we
1840          * are done. Procfs-like symlinks just set LAST_BIND.
1841          */
1842         nd.flags |= LOOKUP_PARENT;
1843         error = security_inode_follow_link(path.dentry, &nd);
1844         if (error)
1845                 goto exit_dput;
1846         error = __do_follow_link(&path, &nd);
1847         if (error) {
1848                 /* Does someone understand code flow here? Or it is only
1849                  * me so stupid? Anathema to whoever designed this non-sense
1850                  * with "intent.open".
1851                  */
1852                 release_open_intent(&nd);
1853                 return ERR_PTR(error);
1854         }
1855         nd.flags &= ~LOOKUP_PARENT;
1856         if (nd.last_type == LAST_BIND)
1857                 goto ok;
1858         error = -EISDIR;
1859         if (nd.last_type != LAST_NORM)
1860                 goto exit;
1861         if (nd.last.name[nd.last.len]) {
1862                 __putname(nd.last.name);
1863                 goto exit;
1864         }
1865         error = -ELOOP;
1866         if (count++==32) {
1867                 __putname(nd.last.name);
1868                 goto exit;
1869         }
1870         dir = nd.path.dentry;
1871         mutex_lock(&dir->d_inode->i_mutex);
1872         path.dentry = lookup_hash(&nd);
1873         path.mnt = nd.path.mnt;
1874         __putname(nd.last.name);
1875         goto do_last;
1876 }
1877
1878 /**
1879  * filp_open - open file and return file pointer
1880  *
1881  * @filename:   path to open
1882  * @flags:      open flags as per the open(2) second argument
1883  * @mode:       mode for the new file if O_CREAT is set, else ignored
1884  *
1885  * This is the helper to open a file from kernelspace if you really
1886  * have to.  But in generally you should not do this, so please move
1887  * along, nothing to see here..
1888  */
1889 struct file *filp_open(const char *filename, int flags, int mode)
1890 {
1891         return do_filp_open(AT_FDCWD, filename, flags, mode);
1892 }
1893 EXPORT_SYMBOL(filp_open);
1894
1895 /**
1896  * lookup_create - lookup a dentry, creating it if it doesn't exist
1897  * @nd: nameidata info
1898  * @is_dir: directory flag
1899  *
1900  * Simple function to lookup and return a dentry and create it
1901  * if it doesn't exist.  Is SMP-safe.
1902  *
1903  * Returns with nd->path.dentry->d_inode->i_mutex locked.
1904  */
1905 struct dentry *lookup_create(struct nameidata *nd, int is_dir)
1906 {
1907         struct dentry *dentry = ERR_PTR(-EEXIST);
1908
1909         mutex_lock_nested(&nd->path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
1910         /*
1911          * Yucky last component or no last component at all?
1912          * (foo/., foo/.., /////)
1913          */
1914         if (nd->last_type != LAST_NORM)
1915                 goto fail;
1916         nd->flags &= ~LOOKUP_PARENT;
1917         nd->flags |= LOOKUP_CREATE;
1918         nd->intent.open.flags = O_EXCL;
1919
1920         /*
1921          * Do the final lookup.
1922          */
1923         dentry = lookup_hash(nd);
1924         if (IS_ERR(dentry))
1925                 goto fail;
1926
1927         if (dentry->d_inode)
1928                 goto eexist;
1929         /*
1930          * Special case - lookup gave negative, but... we had foo/bar/
1931          * From the vfs_mknod() POV we just have a negative dentry -
1932          * all is fine. Let's be bastards - you had / on the end, you've
1933          * been asking for (non-existent) directory. -ENOENT for you.
1934          */
1935         if (unlikely(!is_dir && nd->last.name[nd->last.len])) {
1936                 dput(dentry);
1937                 dentry = ERR_PTR(-ENOENT);
1938         }
1939         return dentry;
1940 eexist:
1941         dput(dentry);
1942         dentry = ERR_PTR(-EEXIST);
1943 fail:
1944         return dentry;
1945 }
1946 EXPORT_SYMBOL_GPL(lookup_create);
1947
1948 int vfs_mknod(struct inode *dir, struct dentry *dentry, int mode, dev_t dev)
1949 {
1950         int error = may_create(dir, dentry, NULL);
1951
1952         if (error)
1953                 return error;
1954
1955         if ((S_ISCHR(mode) || S_ISBLK(mode)) && !capable(CAP_MKNOD))
1956                 return -EPERM;
1957
1958         if (!dir->i_op || !dir->i_op->mknod)
1959                 return -EPERM;
1960
1961         error = devcgroup_inode_mknod(mode, dev);
1962         if (error)
1963                 return error;
1964
1965         error = security_inode_mknod(dir, dentry, mode, dev);
1966         if (error)
1967                 return error;
1968
1969         DQUOT_INIT(dir);
1970         error = dir->i_op->mknod(dir, dentry, mode, dev);
1971         if (!error)
1972                 fsnotify_create(dir, dentry);
1973         return error;
1974 }
1975
1976 static int may_mknod(mode_t mode)
1977 {
1978         switch (mode & S_IFMT) {
1979         case S_IFREG:
1980         case S_IFCHR:
1981         case S_IFBLK:
1982         case S_IFIFO:
1983         case S_IFSOCK:
1984         case 0: /* zero mode translates to S_IFREG */
1985                 return 0;
1986         case S_IFDIR:
1987                 return -EPERM;
1988         default:
1989                 return -EINVAL;
1990         }
1991 }
1992
1993 asmlinkage long sys_mknodat(int dfd, const char __user *filename, int mode,
1994                                 unsigned dev)
1995 {
1996         int error = 0;
1997         char * tmp;
1998         struct dentry * dentry;
1999         struct nameidata nd;
2000
2001         if (S_ISDIR(mode))
2002                 return -EPERM;
2003         tmp = getname(filename);
2004         if (IS_ERR(tmp))
2005                 return PTR_ERR(tmp);
2006
2007         error = do_path_lookup(dfd, tmp, LOOKUP_PARENT, &nd);
2008         if (error)
2009                 goto out;
2010         dentry = lookup_create(&nd, 0);
2011         if (IS_ERR(dentry)) {
2012                 error = PTR_ERR(dentry);
2013                 goto out_unlock;
2014         }
2015         if (!IS_POSIXACL(nd.path.dentry->d_inode))
2016                 mode &= ~current->fs->umask;
2017         error = may_mknod(mode);
2018         if (error)
2019                 goto out_dput;
2020         error = mnt_want_write(nd.path.mnt);
2021         if (error)
2022                 goto out_dput;
2023         switch (mode & S_IFMT) {
2024                 case 0: case S_IFREG:
2025                         error = vfs_create(nd.path.dentry->d_inode,dentry,mode,&nd);
2026                         break;
2027                 case S_IFCHR: case S_IFBLK:
2028                         error = vfs_mknod(nd.path.dentry->d_inode,dentry,mode,
2029                                         new_decode_dev(dev));
2030                         break;
2031                 case S_IFIFO: case S_IFSOCK:
2032                         error = vfs_mknod(nd.path.dentry->d_inode,dentry,mode,0);
2033                         break;
2034         }
2035         mnt_drop_write(nd.path.mnt);
2036 out_dput:
2037         dput(dentry);
2038 out_unlock:
2039         mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
2040         path_put(&nd.path);
2041 out:
2042         putname(tmp);
2043
2044         return error;
2045 }
2046
2047 asmlinkage long sys_mknod(const char __user *filename, int mode, unsigned dev)
2048 {
2049         return sys_mknodat(AT_FDCWD, filename, mode, dev);
2050 }
2051
2052 int vfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
2053 {
2054         int error = may_create(dir, dentry, NULL);
2055
2056         if (error)
2057                 return error;
2058
2059         if (!dir->i_op || !dir->i_op->mkdir)
2060                 return -EPERM;
2061
2062         mode &= (S_IRWXUGO|S_ISVTX);
2063         error = security_inode_mkdir(dir, dentry, mode);
2064         if (error)
2065                 return error;
2066
2067         DQUOT_INIT(dir);
2068         error = dir->i_op->mkdir(dir, dentry, mode);
2069         if (!error)
2070                 fsnotify_mkdir(dir, dentry);
2071         return error;
2072 }
2073
2074 asmlinkage long sys_mkdirat(int dfd, const char __user *pathname, int mode)
2075 {
2076         int error = 0;
2077         char * tmp;
2078         struct dentry *dentry;
2079         struct nameidata nd;
2080
2081         tmp = getname(pathname);
2082         error = PTR_ERR(tmp);
2083         if (IS_ERR(tmp))
2084                 goto out_err;
2085
2086         error = do_path_lookup(dfd, tmp, LOOKUP_PARENT, &nd);
2087         if (error)
2088                 goto out;
2089         dentry = lookup_create(&nd, 1);
2090         error = PTR_ERR(dentry);
2091         if (IS_ERR(dentry))
2092                 goto out_unlock;
2093
2094         if (!IS_POSIXACL(nd.path.dentry->d_inode))
2095                 mode &= ~current->fs->umask;
2096         error = mnt_want_write(nd.path.mnt);
2097         if (error)
2098                 goto out_dput;
2099         error = vfs_mkdir(nd.path.dentry->d_inode, dentry, mode);
2100         mnt_drop_write(nd.path.mnt);
2101 out_dput:
2102         dput(dentry);
2103 out_unlock:
2104         mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
2105         path_put(&nd.path);
2106 out:
2107         putname(tmp);
2108 out_err:
2109         return error;
2110 }
2111
2112 asmlinkage long sys_mkdir(const char __user *pathname, int mode)
2113 {
2114         return sys_mkdirat(AT_FDCWD, pathname, mode);
2115 }
2116
2117 /*
2118  * We try to drop the dentry early: we should have
2119  * a usage count of 2 if we're the only user of this
2120  * dentry, and if that is true (possibly after pruning
2121  * the dcache), then we drop the dentry now.
2122  *
2123  * A low-level filesystem can, if it choses, legally
2124  * do a
2125  *
2126  *      if (!d_unhashed(dentry))
2127  *              return -EBUSY;
2128  *
2129  * if it cannot handle the case of removing a directory
2130  * that is still in use by something else..
2131  */
2132 void dentry_unhash(struct dentry *dentry)
2133 {
2134         dget(dentry);
2135         shrink_dcache_parent(dentry);
2136         spin_lock(&dcache_lock);
2137         spin_lock(&dentry->d_lock);
2138         if (atomic_read(&dentry->d_count) == 2)
2139                 __d_drop(dentry);
2140         spin_unlock(&dentry->d_lock);
2141         spin_unlock(&dcache_lock);
2142 }
2143
2144 int vfs_rmdir(struct inode *dir, struct dentry *dentry)
2145 {
2146         int error = may_delete(dir, dentry, 1);
2147
2148         if (error)
2149                 return error;
2150
2151         if (!dir->i_op || !dir->i_op->rmdir)
2152                 return -EPERM;
2153
2154         DQUOT_INIT(dir);
2155
2156         mutex_lock(&dentry->d_inode->i_mutex);
2157         dentry_unhash(dentry);
2158         if (d_mountpoint(dentry))
2159                 error = -EBUSY;
2160         else {
2161                 error = security_inode_rmdir(dir, dentry);
2162                 if (!error) {
2163                         error = dir->i_op->rmdir(dir, dentry);
2164                         if (!error)
2165                                 dentry->d_inode->i_flags |= S_DEAD;
2166                 }
2167         }
2168         mutex_unlock(&dentry->d_inode->i_mutex);
2169         if (!error) {
2170                 d_delete(dentry);
2171         }
2172         dput(dentry);
2173
2174         return error;
2175 }
2176
2177 static long do_rmdir(int dfd, const char __user *pathname)
2178 {
2179         int error = 0;
2180         char * name;
2181         struct dentry *dentry;
2182         struct nameidata nd;
2183
2184         name = getname(pathname);
2185         if(IS_ERR(name))
2186                 return PTR_ERR(name);
2187
2188         error = do_path_lookup(dfd, name, LOOKUP_PARENT, &nd);
2189         if (error)
2190                 goto exit;
2191
2192         switch(nd.last_type) {
2193                 case LAST_DOTDOT:
2194                         error = -ENOTEMPTY;
2195                         goto exit1;
2196                 case LAST_DOT:
2197                         error = -EINVAL;
2198                         goto exit1;
2199                 case LAST_ROOT:
2200                         error = -EBUSY;
2201                         goto exit1;
2202         }
2203         mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
2204         dentry = lookup_hash(&nd);
2205         error = PTR_ERR(dentry);
2206         if (IS_ERR(dentry))
2207                 goto exit2;
2208         error = mnt_want_write(nd.path.mnt);
2209         if (error)
2210                 goto exit3;
2211         error = vfs_rmdir(nd.path.dentry->d_inode, dentry);
2212         mnt_drop_write(nd.path.mnt);
2213 exit3:
2214         dput(dentry);
2215 exit2:
2216         mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
2217 exit1:
2218         path_put(&nd.path);
2219 exit:
2220         putname(name);
2221         return error;
2222 }
2223
2224 asmlinkage long sys_rmdir(const char __user *pathname)
2225 {
2226         return do_rmdir(AT_FDCWD, pathname);
2227 }
2228
2229 int vfs_unlink(struct inode *dir, struct dentry *dentry)
2230 {
2231         int error = may_delete(dir, dentry, 0);
2232
2233         if (error)
2234                 return error;
2235
2236         if (!dir->i_op || !dir->i_op->unlink)
2237                 return -EPERM;
2238
2239         DQUOT_INIT(dir);
2240
2241         mutex_lock(&dentry->d_inode->i_mutex);
2242         if (d_mountpoint(dentry))
2243                 error = -EBUSY;
2244         else {
2245                 error = security_inode_unlink(dir, dentry);
2246                 if (!error)
2247                         error = dir->i_op->unlink(dir, dentry);
2248         }
2249         mutex_unlock(&dentry->d_inode->i_mutex);
2250
2251         /* We don't d_delete() NFS sillyrenamed files--they still exist. */
2252         if (!error && !(dentry->d_flags & DCACHE_NFSFS_RENAMED)) {
2253                 fsnotify_link_count(dentry->d_inode);
2254                 d_delete(dentry);
2255         }
2256
2257         return error;
2258 }
2259
2260 /*
2261  * Make sure that the actual truncation of the file will occur outside its
2262  * directory's i_mutex.  Truncate can take a long time if there is a lot of
2263  * writeout happening, and we don't want to prevent access to the directory
2264  * while waiting on the I/O.
2265  */
2266 static long do_unlinkat(int dfd, const char __user *pathname)
2267 {
2268         int error = 0;
2269         char * name;
2270         struct dentry *dentry;
2271         struct nameidata nd;
2272         struct inode *inode = NULL;
2273
2274         name = getname(pathname);
2275         if(IS_ERR(name))
2276                 return PTR_ERR(name);
2277
2278         error = do_path_lookup(dfd, name, LOOKUP_PARENT, &nd);
2279         if (error)
2280                 goto exit;
2281         error = -EISDIR;
2282         if (nd.last_type != LAST_NORM)
2283                 goto exit1;
2284         mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
2285         dentry = lookup_hash(&nd);
2286         error = PTR_ERR(dentry);
2287         if (!IS_ERR(dentry)) {
2288                 /* Why not before? Because we want correct error value */
2289                 if (nd.last.name[nd.last.len])
2290                         goto slashes;
2291                 inode = dentry->d_inode;
2292                 if (inode)
2293                         atomic_inc(&inode->i_count);
2294                 error = mnt_want_write(nd.path.mnt);
2295                 if (error)
2296                         goto exit2;
2297                 error = vfs_unlink(nd.path.dentry->d_inode, dentry);
2298                 mnt_drop_write(nd.path.mnt);
2299         exit2:
2300                 dput(dentry);
2301         }
2302         mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
2303         if (inode)
2304                 iput(inode);    /* truncate the inode here */
2305 exit1:
2306         path_put(&nd.path);
2307 exit:
2308         putname(name);
2309         return error;
2310
2311 slashes:
2312         error = !dentry->d_inode ? -ENOENT :
2313                 S_ISDIR(dentry->d_inode->i_mode) ? -EISDIR : -ENOTDIR;
2314         goto exit2;
2315 }
2316
2317 asmlinkage long sys_unlinkat(int dfd, const char __user *pathname, int flag)
2318 {
2319         if ((flag & ~AT_REMOVEDIR) != 0)
2320                 return -EINVAL;
2321
2322         if (flag & AT_REMOVEDIR)
2323                 return do_rmdir(dfd, pathname);
2324
2325         return do_unlinkat(dfd, pathname);
2326 }
2327
2328 asmlinkage long sys_unlink(const char __user *pathname)
2329 {
2330         return do_unlinkat(AT_FDCWD, pathname);
2331 }
2332
2333 int vfs_symlink(struct inode *dir, struct dentry *dentry, const char *oldname)
2334 {
2335         int error = may_create(dir, dentry, NULL);
2336
2337         if (error)
2338                 return error;
2339
2340         if (!dir->i_op || !dir->i_op->symlink)
2341                 return -EPERM;
2342
2343         error = security_inode_symlink(dir, dentry, oldname);
2344         if (error)
2345                 return error;
2346
2347         DQUOT_INIT(dir);
2348         error = dir->i_op->symlink(dir, dentry, oldname);
2349         if (!error)
2350                 fsnotify_create(dir, dentry);
2351         return error;
2352 }
2353
2354 asmlinkage long sys_symlinkat(const char __user *oldname,
2355                               int newdfd, const char __user *newname)
2356 {
2357         int error = 0;
2358         char * from;
2359         char * to;
2360         struct dentry *dentry;
2361         struct nameidata nd;
2362
2363         from = getname(oldname);
2364         if(IS_ERR(from))
2365                 return PTR_ERR(from);
2366         to = getname(newname);
2367         error = PTR_ERR(to);
2368         if (IS_ERR(to))
2369                 goto out_putname;
2370
2371         error = do_path_lookup(newdfd, to, LOOKUP_PARENT, &nd);
2372         if (error)
2373                 goto out;
2374         dentry = lookup_create(&nd, 0);
2375         error = PTR_ERR(dentry);
2376         if (IS_ERR(dentry))
2377                 goto out_unlock;
2378
2379         error = mnt_want_write(nd.path.mnt);
2380         if (error)
2381                 goto out_dput;
2382         error = vfs_symlink(nd.path.dentry->d_inode, dentry, from);
2383         mnt_drop_write(nd.path.mnt);
2384 out_dput:
2385         dput(dentry);
2386 out_unlock:
2387         mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
2388         path_put(&nd.path);
2389 out:
2390         putname(to);
2391 out_putname:
2392         putname(from);
2393         return error;
2394 }
2395
2396 asmlinkage long sys_symlink(const char __user *oldname, const char __user *newname)
2397 {
2398         return sys_symlinkat(oldname, AT_FDCWD, newname);
2399 }
2400
2401 int vfs_link(struct dentry *old_dentry, struct inode *dir, struct dentry *new_dentry)
2402 {
2403         struct inode *inode = old_dentry->d_inode;
2404         int error;
2405
2406         if (!inode)
2407                 return -ENOENT;
2408
2409         error = may_create(dir, new_dentry, NULL);
2410         if (error)
2411                 return error;
2412
2413         if (dir->i_sb != inode->i_sb)
2414                 return -EXDEV;
2415
2416         /*
2417          * A link to an append-only or immutable file cannot be created.
2418          */
2419         if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
2420                 return -EPERM;
2421         if (!dir->i_op || !dir->i_op->link)
2422                 return -EPERM;
2423         if (S_ISDIR(inode->i_mode))
2424                 return -EPERM;
2425
2426         error = security_inode_link(old_dentry, dir, new_dentry);
2427         if (error)
2428                 return error;
2429
2430         mutex_lock(&inode->i_mutex);
2431         DQUOT_INIT(dir);
2432         error = dir->i_op->link(old_dentry, dir, new_dentry);
2433         mutex_unlock(&inode->i_mutex);
2434         if (!error)
2435                 fsnotify_link(dir, inode, new_dentry);
2436         return error;
2437 }
2438
2439 /*
2440  * Hardlinks are often used in delicate situations.  We avoid
2441  * security-related surprises by not following symlinks on the
2442  * newname.  --KAB
2443  *
2444  * We don't follow them on the oldname either to be compatible
2445  * with linux 2.0, and to avoid hard-linking to directories
2446  * and other special files.  --ADM
2447  */
2448 asmlinkage long sys_linkat(int olddfd, const char __user *oldname,
2449                            int newdfd, const char __user *newname,
2450                            int flags)
2451 {
2452         struct dentry *new_dentry;
2453         struct nameidata nd, old_nd;
2454         int error;
2455         char * to;
2456
2457         if ((flags & ~AT_SYMLINK_FOLLOW) != 0)
2458                 return -EINVAL;
2459
2460         to = getname(newname);
2461         if (IS_ERR(to))
2462                 return PTR_ERR(to);
2463
2464         error = __user_walk_fd(olddfd, oldname,
2465                                flags & AT_SYMLINK_FOLLOW ? LOOKUP_FOLLOW : 0,
2466                                &old_nd);
2467         if (error)
2468                 goto exit;
2469         error = do_path_lookup(newdfd, to, LOOKUP_PARENT, &nd);
2470         if (error)
2471                 goto out;
2472         error = -EXDEV;
2473         if (old_nd.path.mnt != nd.path.mnt)
2474                 goto out_release;
2475         new_dentry = lookup_create(&nd, 0);
2476         error = PTR_ERR(new_dentry);
2477         if (IS_ERR(new_dentry))
2478                 goto out_unlock;
2479         error = mnt_want_write(nd.path.mnt);
2480         if (error)
2481                 goto out_dput;
2482         error = vfs_link(old_nd.path.dentry, nd.path.dentry->d_inode, new_dentry);
2483         mnt_drop_write(nd.path.mnt);
2484 out_dput:
2485         dput(new_dentry);
2486 out_unlock:
2487         mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
2488 out_release:
2489         path_put(&nd.path);
2490 out:
2491         path_put(&old_nd.path);
2492 exit:
2493         putname(to);
2494
2495         return error;
2496 }
2497
2498 asmlinkage long sys_link(const char __user *oldname, const char __user *newname)
2499 {
2500         return sys_linkat(AT_FDCWD, oldname, AT_FDCWD, newname, 0);
2501 }
2502
2503 /*
2504  * The worst of all namespace operations - renaming directory. "Perverted"
2505  * doesn't even start to describe it. Somebody in UCB had a heck of a trip...
2506  * Problems:
2507  *      a) we can get into loop creation. Check is done in is_subdir().
2508  *      b) race potential - two innocent renames can create a loop together.
2509  *         That's where 4.4 screws up. Current fix: serialization on
2510  *         sb->s_vfs_rename_mutex. We might be more accurate, but that's another
2511  *         story.
2512  *      c) we have to lock _three_ objects - parents and victim (if it exists).
2513  *         And that - after we got ->i_mutex on parents (until then we don't know
2514  *         whether the target exists).  Solution: try to be smart with locking
2515  *         order for inodes.  We rely on the fact that tree topology may change
2516  *         only under ->s_vfs_rename_mutex _and_ that parent of the object we
2517  *         move will be locked.  Thus we can rank directories by the tree
2518  *         (ancestors first) and rank all non-directories after them.
2519  *         That works since everybody except rename does "lock parent, lookup,
2520  *         lock child" and rename is under ->s_vfs_rename_mutex.
2521  *         HOWEVER, it relies on the assumption that any object with ->lookup()
2522  *         has no more than 1 dentry.  If "hybrid" objects will ever appear,
2523  *         we'd better make sure that there's no link(2) for them.
2524  *      d) some filesystems don't support opened-but-unlinked directories,
2525  *         either because of layout or because they are not ready to deal with
2526  *         all cases correctly. The latter will be fixed (taking this sort of
2527  *         stuff into VFS), but the former is not going away. Solution: the same
2528  *         trick as in rmdir().
2529  *      e) conversion from fhandle to dentry may come in the wrong moment - when
2530  *         we are removing the target. Solution: we will have to grab ->i_mutex
2531  *         in the fhandle_to_dentry code. [FIXME - current nfsfh.c relies on
2532  *         ->i_mutex on parents, which works but leads to some truely excessive
2533  *         locking].
2534  */
2535 static int vfs_rename_dir(struct inode *old_dir, struct dentry *old_dentry,
2536                           struct inode *new_dir, struct dentry *new_dentry)
2537 {
2538         int error = 0;
2539         struct inode *target;
2540
2541         /*
2542          * If we are going to change the parent - check write permissions,
2543          * we'll need to flip '..'.
2544          */
2545         if (new_dir != old_dir) {
2546                 error = permission(old_dentry->d_inode, MAY_WRITE, NULL);
2547                 if (error)
2548                         return error;
2549         }
2550
2551         error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry);
2552         if (error)
2553                 return error;
2554
2555         target = new_dentry->d_inode;
2556         if (target) {
2557                 mutex_lock(&target->i_mutex);
2558                 dentry_unhash(new_dentry);
2559         }
2560         if (d_mountpoint(old_dentry)||d_mountpoint(new_dentry))
2561                 error = -EBUSY;
2562         else 
2563                 error = old_dir->i_op->rename(old_dir, old_dentry, new_dir, new_dentry);
2564         if (target) {
2565                 if (!error)
2566                         target->i_flags |= S_DEAD;
2567                 mutex_unlock(&target->i_mutex);
2568                 if (d_unhashed(new_dentry))
2569                         d_rehash(new_dentry);
2570                 dput(new_dentry);
2571         }
2572         if (!error)
2573                 if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE))
2574                         d_move(old_dentry,new_dentry);
2575         return error;
2576 }
2577
2578 static int vfs_rename_other(struct inode *old_dir, struct dentry *old_dentry,
2579                             struct inode *new_dir, struct dentry *new_dentry)
2580 {
2581         struct inode *target;
2582         int error;
2583
2584         error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry);
2585         if (error)
2586                 return error;
2587
2588         dget(new_dentry);
2589         target = new_dentry->d_inode;
2590         if (target)
2591                 mutex_lock(&target->i_mutex);
2592         if (d_mountpoint(old_dentry)||d_mountpoint(new_dentry))
2593                 error = -EBUSY;
2594         else
2595                 error = old_dir->i_op->rename(old_dir, old_dentry, new_dir, new_dentry);
2596         if (!error) {
2597                 if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE))
2598                         d_move(old_dentry, new_dentry);
2599         }
2600         if (target)
2601                 mutex_unlock(&target->i_mutex);
2602         dput(new_dentry);
2603         return error;
2604 }
2605
2606 int vfs_rename(struct inode *old_dir, struct dentry *old_dentry,
2607                struct inode *new_dir, struct dentry *new_dentry)
2608 {
2609         int error;
2610         int is_dir = S_ISDIR(old_dentry->d_inode->i_mode);
2611         const char *old_name;
2612
2613         if (old_dentry->d_inode == new_dentry->d_inode)
2614                 return 0;
2615  
2616         error = may_delete(old_dir, old_dentry, is_dir);
2617         if (error)
2618                 return error;
2619
2620         if (!new_dentry->d_inode)
2621                 error = may_create(new_dir, new_dentry, NULL);
2622         else
2623                 error = may_delete(new_dir, new_dentry, is_dir);
2624         if (error)
2625                 return error;
2626
2627         if (!old_dir->i_op || !old_dir->i_op->rename)
2628                 return -EPERM;
2629
2630         DQUOT_INIT(old_dir);
2631         DQUOT_INIT(new_dir);
2632
2633         old_name = fsnotify_oldname_init(old_dentry->d_name.name);
2634
2635         if (is_dir)
2636                 error = vfs_rename_dir(old_dir,old_dentry,new_dir,new_dentry);
2637         else
2638                 error = vfs_rename_other(old_dir,old_dentry,new_dir,new_dentry);
2639         if (!error) {
2640                 const char *new_name = old_dentry->d_name.name;
2641                 fsnotify_move(old_dir, new_dir, old_name, new_name, is_dir,
2642                               new_dentry->d_inode, old_dentry);
2643         }
2644         fsnotify_oldname_free(old_name);
2645
2646         return error;
2647 }
2648
2649 static int do_rename(int olddfd, const char *oldname,
2650                         int newdfd, const char *newname)
2651 {
2652         int error = 0;
2653         struct dentry * old_dir, * new_dir;
2654         struct dentry * old_dentry, *new_dentry;
2655         struct dentry * trap;
2656         struct nameidata oldnd, newnd;
2657
2658         error = do_path_lookup(olddfd, oldname, LOOKUP_PARENT, &oldnd);
2659         if (error)
2660                 goto exit;
2661
2662         error = do_path_lookup(newdfd, newname, LOOKUP_PARENT, &newnd);
2663         if (error)
2664                 goto exit1;
2665
2666         error = -EXDEV;
2667         if (oldnd.path.mnt != newnd.path.mnt)
2668                 goto exit2;
2669
2670         old_dir = oldnd.path.dentry;
2671         error = -EBUSY;
2672         if (oldnd.last_type != LAST_NORM)
2673                 goto exit2;
2674
2675         new_dir = newnd.path.dentry;
2676         if (newnd.last_type != LAST_NORM)
2677                 goto exit2;
2678
2679         trap = lock_rename(new_dir, old_dir);
2680
2681         old_dentry = lookup_hash(&oldnd);
2682         error = PTR_ERR(old_dentry);
2683         if (IS_ERR(old_dentry))
2684                 goto exit3;
2685         /* source must exist */
2686         error = -ENOENT;
2687         if (!old_dentry->d_inode)
2688                 goto exit4;
2689         /* unless the source is a directory trailing slashes give -ENOTDIR */
2690         if (!S_ISDIR(old_dentry->d_inode->i_mode)) {
2691                 error = -ENOTDIR;
2692                 if (oldnd.last.name[oldnd.last.len])
2693                         goto exit4;
2694                 if (newnd.last.name[newnd.last.len])
2695                         goto exit4;
2696         }
2697         /* source should not be ancestor of target */
2698         error = -EINVAL;
2699         if (old_dentry == trap)
2700                 goto exit4;
2701         new_dentry = lookup_hash(&newnd);
2702         error = PTR_ERR(new_dentry);
2703         if (IS_ERR(new_dentry))
2704                 goto exit4;
2705         /* target should not be an ancestor of source */
2706         error = -ENOTEMPTY;
2707         if (new_dentry == trap)
2708                 goto exit5;
2709
2710         error = mnt_want_write(oldnd.path.mnt);
2711         if (error)
2712                 goto exit5;
2713         error = vfs_rename(old_dir->d_inode, old_dentry,
2714                                    new_dir->d_inode, new_dentry);
2715         mnt_drop_write(oldnd.path.mnt);
2716 exit5:
2717         dput(new_dentry);
2718 exit4:
2719         dput(old_dentry);
2720 exit3:
2721         unlock_rename(new_dir, old_dir);
2722 exit2:
2723         path_put(&newnd.path);
2724 exit1:
2725         path_put(&oldnd.path);
2726 exit:
2727         return error;
2728 }
2729
2730 asmlinkage long sys_renameat(int olddfd, const char __user *oldname,
2731                              int newdfd, const char __user *newname)
2732 {
2733         int error;
2734         char * from;
2735         char * to;
2736
2737         from = getname(oldname);
2738         if(IS_ERR(from))
2739                 return PTR_ERR(from);
2740         to = getname(newname);
2741         error = PTR_ERR(to);
2742         if (!IS_ERR(to)) {
2743                 error = do_rename(olddfd, from, newdfd, to);
2744                 putname(to);
2745         }
2746         putname(from);
2747         return error;
2748 }
2749
2750 asmlinkage long sys_rename(const char __user *oldname, const char __user *newname)
2751 {
2752         return sys_renameat(AT_FDCWD, oldname, AT_FDCWD, newname);
2753 }
2754
2755 int vfs_readlink(struct dentry *dentry, char __user *buffer, int buflen, const char *link)
2756 {
2757         int len;
2758
2759         len = PTR_ERR(link);
2760         if (IS_ERR(link))
2761                 goto out;
2762
2763         len = strlen(link);
2764         if (len > (unsigned) buflen)
2765                 len = buflen;
2766         if (copy_to_user(buffer, link, len))
2767                 len = -EFAULT;
2768 out:
2769         return len;
2770 }
2771
2772 /*
2773  * A helper for ->readlink().  This should be used *ONLY* for symlinks that
2774  * have ->follow_link() touching nd only in nd_set_link().  Using (or not
2775  * using) it for any given inode is up to filesystem.
2776  */
2777 int generic_readlink(struct dentry *dentry, char __user *buffer, int buflen)
2778 {
2779         struct nameidata nd;
2780         void *cookie;
2781         int res;
2782
2783         nd.depth = 0;
2784         cookie = dentry->d_inode->i_op->follow_link(dentry, &nd);
2785         if (IS_ERR(cookie))
2786                 return PTR_ERR(cookie);
2787
2788         res = vfs_readlink(dentry, buffer, buflen, nd_get_link(&nd));
2789         if (dentry->d_inode->i_op->put_link)
2790                 dentry->d_inode->i_op->put_link(dentry, &nd, cookie);
2791         return res;
2792 }
2793
2794 int vfs_follow_link(struct nameidata *nd, const char *link)
2795 {
2796         return __vfs_follow_link(nd, link);
2797 }
2798
2799 /* get the link contents into pagecache */
2800 static char *page_getlink(struct dentry * dentry, struct page **ppage)
2801 {
2802         struct page * page;
2803         struct address_space *mapping = dentry->d_inode->i_mapping;
2804         page = read_mapping_page(mapping, 0, NULL);
2805         if (IS_ERR(page))
2806                 return (char*)page;
2807         *ppage = page;
2808         return kmap(page);
2809 }
2810
2811 int page_readlink(struct dentry *dentry, char __user *buffer, int buflen)
2812 {
2813         struct page *page = NULL;
2814         char *s = page_getlink(dentry, &page);
2815         int res = vfs_readlink(dentry,buffer,buflen,s);
2816         if (page) {
2817                 kunmap(page);
2818                 page_cache_release(page);
2819         }
2820         return res;
2821 }
2822
2823 void *page_follow_link_light(struct dentry *dentry, struct nameidata *nd)
2824 {
2825         struct page *page = NULL;
2826         nd_set_link(nd, page_getlink(dentry, &page));
2827         return page;
2828 }
2829
2830 void page_put_link(struct dentry *dentry, struct nameidata *nd, void *cookie)
2831 {
2832         struct page *page = cookie;
2833
2834         if (page) {
2835                 kunmap(page);
2836                 page_cache_release(page);
2837         }
2838 }
2839
2840 int __page_symlink(struct inode *inode, const char *symname, int len,
2841                 gfp_t gfp_mask)
2842 {
2843         struct address_space *mapping = inode->i_mapping;
2844         struct page *page;
2845         void *fsdata;
2846         int err;
2847         char *kaddr;
2848
2849 retry:
2850         err = pagecache_write_begin(NULL, mapping, 0, len-1,
2851                                 AOP_FLAG_UNINTERRUPTIBLE, &page, &fsdata);
2852         if (err)
2853                 goto fail;
2854
2855         kaddr = kmap_atomic(page, KM_USER0);
2856         memcpy(kaddr, symname, len-1);
2857         kunmap_atomic(kaddr, KM_USER0);
2858
2859         err = pagecache_write_end(NULL, mapping, 0, len-1, len-1,
2860                                                         page, fsdata);
2861         if (err < 0)
2862                 goto fail;
2863         if (err < len-1)
2864                 goto retry;
2865
2866         mark_inode_dirty(inode);
2867         return 0;
2868 fail:
2869         return err;
2870 }
2871
2872 int page_symlink(struct inode *inode, const char *symname, int len)
2873 {
2874         return __page_symlink(inode, symname, len,
2875                         mapping_gfp_mask(inode->i_mapping));
2876 }
2877
2878 const struct inode_operations page_symlink_inode_operations = {
2879         .readlink       = generic_readlink,
2880         .follow_link    = page_follow_link_light,
2881         .put_link       = page_put_link,
2882 };
2883
2884 EXPORT_SYMBOL(__user_walk);
2885 EXPORT_SYMBOL(__user_walk_fd);
2886 EXPORT_SYMBOL(follow_down);
2887 EXPORT_SYMBOL(follow_up);
2888 EXPORT_SYMBOL(get_write_access); /* binfmt_aout */
2889 EXPORT_SYMBOL(getname);
2890 EXPORT_SYMBOL(lock_rename);
2891 EXPORT_SYMBOL(lookup_one_len);
2892 EXPORT_SYMBOL(page_follow_link_light);
2893 EXPORT_SYMBOL(page_put_link);
2894 EXPORT_SYMBOL(page_readlink);
2895 EXPORT_SYMBOL(__page_symlink);
2896 EXPORT_SYMBOL(page_symlink);
2897 EXPORT_SYMBOL(page_symlink_inode_operations);
2898 EXPORT_SYMBOL(path_lookup);
2899 EXPORT_SYMBOL(vfs_path_lookup);
2900 EXPORT_SYMBOL(permission);
2901 EXPORT_SYMBOL(vfs_permission);
2902 EXPORT_SYMBOL(file_permission);
2903 EXPORT_SYMBOL(unlock_rename);
2904 EXPORT_SYMBOL(vfs_create);
2905 EXPORT_SYMBOL(vfs_follow_link);
2906 EXPORT_SYMBOL(vfs_link);
2907 EXPORT_SYMBOL(vfs_mkdir);
2908 EXPORT_SYMBOL(vfs_mknod);
2909 EXPORT_SYMBOL(generic_permission);
2910 EXPORT_SYMBOL(vfs_readlink);
2911 EXPORT_SYMBOL(vfs_rename);
2912 EXPORT_SYMBOL(vfs_rmdir);
2913 EXPORT_SYMBOL(vfs_symlink);
2914 EXPORT_SYMBOL(vfs_unlink);
2915 EXPORT_SYMBOL(dentry_unhash);
2916 EXPORT_SYMBOL(generic_readlink);