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