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