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