032053018b8ab8cb099956bef41958ab78abe18a
[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 <linux/posix_acl.h>
36 #include <asm/uaccess.h>
37
38 #include "internal.h"
39
40 /* [Feb-1997 T. Schoebel-Theuer]
41  * Fundamental changes in the pathname lookup mechanisms (namei)
42  * were necessary because of omirr.  The reason is that omirr needs
43  * to know the _real_ pathname, not the user-supplied one, in case
44  * of symlinks (and also when transname replacements occur).
45  *
46  * The new code replaces the old recursive symlink resolution with
47  * an iterative one (in case of non-nested symlink chains).  It does
48  * this with calls to <fs>_follow_link().
49  * As a side effect, dir_namei(), _namei() and follow_link() are now 
50  * replaced with a single function lookup_dentry() that can handle all 
51  * the special cases of the former code.
52  *
53  * With the new dcache, the pathname is stored at each inode, at least as
54  * long as the refcount of the inode is positive.  As a side effect, the
55  * size of the dcache depends on the inode cache and thus is dynamic.
56  *
57  * [29-Apr-1998 C. Scott Ananian] Updated above description of symlink
58  * resolution to correspond with current state of the code.
59  *
60  * Note that the symlink resolution is not *completely* iterative.
61  * There is still a significant amount of tail- and mid- recursion in
62  * the algorithm.  Also, note that <fs>_readlink() is not used in
63  * lookup_dentry(): lookup_dentry() on the result of <fs>_readlink()
64  * may return different results than <fs>_follow_link().  Many virtual
65  * filesystems (including /proc) exhibit this behavior.
66  */
67
68 /* [24-Feb-97 T. Schoebel-Theuer] Side effects caused by new implementation:
69  * New symlink semantics: when open() is called with flags O_CREAT | O_EXCL
70  * and the name already exists in form of a symlink, try to create the new
71  * name indicated by the symlink. The old code always complained that the
72  * name already exists, due to not following the symlink even if its target
73  * is nonexistent.  The new semantics affects also mknod() and link() when
74  * the name is a symlink pointing to a non-existent name.
75  *
76  * I don't know which semantics is the right one, since I have no access
77  * to standards. But I found by trial that HP-UX 9.0 has the full "new"
78  * semantics implemented, while SunOS 4.1.1 and Solaris (SunOS 5.4) have the
79  * "old" one. Personally, I think the new semantics is much more logical.
80  * Note that "ln old new" where "new" is a symlink pointing to a non-existing
81  * file does succeed in both HP-UX and SunOs, but not in Solaris
82  * and in the old Linux semantics.
83  */
84
85 /* [16-Dec-97 Kevin Buhr] For security reasons, we change some symlink
86  * semantics.  See the comments in "open_namei" and "do_link" below.
87  *
88  * [10-Sep-98 Alan Modra] Another symlink change.
89  */
90
91 /* [Feb-Apr 2000 AV] Complete rewrite. Rules for symlinks:
92  *      inside the path - always follow.
93  *      in the last component in creation/removal/renaming - never follow.
94  *      if LOOKUP_FOLLOW passed - follow.
95  *      if the pathname has trailing slashes - follow.
96  *      otherwise - don't follow.
97  * (applied in that order).
98  *
99  * [Jun 2000 AV] Inconsistent behaviour of open() in case if flags==O_CREAT
100  * restored for 2.4. This is the last surviving part of old 4.2BSD bug.
101  * During the 2.4 we need to fix the userland stuff depending on it -
102  * hopefully we will be able to get rid of that wart in 2.5. So far only
103  * XEmacs seems to be relying on it...
104  */
105 /*
106  * [Sep 2001 AV] Single-semaphore locking scheme (kudos to David Holland)
107  * implemented.  Let's see if raised priority of ->s_vfs_rename_mutex gives
108  * any extra contention...
109  */
110
111 /* In order to reduce some races, while at the same time doing additional
112  * checking and hopefully speeding things up, we copy filenames to the
113  * kernel data space before using them..
114  *
115  * POSIX.1 2.4: an empty pathname is invalid (ENOENT).
116  * PATH_MAX includes the nul terminator --RR.
117  */
118 static int do_getname(const char __user *filename, char *page)
119 {
120         int retval;
121         unsigned long len = PATH_MAX;
122
123         if (!segment_eq(get_fs(), KERNEL_DS)) {
124                 if ((unsigned long) filename >= TASK_SIZE)
125                         return -EFAULT;
126                 if (TASK_SIZE - (unsigned long) filename < PATH_MAX)
127                         len = TASK_SIZE - (unsigned long) filename;
128         }
129
130         retval = strncpy_from_user(page, filename, len);
131         if (retval > 0) {
132                 if (retval < len)
133                         return 0;
134                 return -ENAMETOOLONG;
135         } else if (!retval)
136                 retval = -ENOENT;
137         return retval;
138 }
139
140 static char *getname_flags(const char __user *filename, int flags, int *empty)
141 {
142         char *tmp, *result;
143
144         result = ERR_PTR(-ENOMEM);
145         tmp = __getname();
146         if (tmp)  {
147                 int retval = do_getname(filename, tmp);
148
149                 result = tmp;
150                 if (retval < 0) {
151                         if (retval == -ENOENT && empty)
152                                 *empty = 1;
153                         if (retval != -ENOENT || !(flags & LOOKUP_EMPTY)) {
154                                 __putname(tmp);
155                                 result = ERR_PTR(retval);
156                         }
157                 }
158         }
159         audit_getname(result);
160         return result;
161 }
162
163 char *getname(const char __user * filename)
164 {
165         return getname_flags(filename, 0, 0);
166 }
167
168 #ifdef CONFIG_AUDITSYSCALL
169 void putname(const char *name)
170 {
171         if (unlikely(!audit_dummy_context()))
172                 audit_putname(name);
173         else
174                 __putname(name);
175 }
176 EXPORT_SYMBOL(putname);
177 #endif
178
179 static int check_acl(struct inode *inode, int mask)
180 {
181 #ifdef CONFIG_FS_POSIX_ACL
182         struct posix_acl *acl;
183
184         if (mask & MAY_NOT_BLOCK) {
185                 acl = get_cached_acl_rcu(inode, ACL_TYPE_ACCESS);
186                 if (!acl)
187                         return -EAGAIN;
188                 /* no ->get_acl() calls in RCU mode... */
189                 if (acl == ACL_NOT_CACHED)
190                         return -ECHILD;
191                 return posix_acl_permission(inode, acl, mask & ~MAY_NOT_BLOCK);
192         }
193
194         acl = get_cached_acl(inode, ACL_TYPE_ACCESS);
195
196         /*
197          * A filesystem can force a ACL callback by just never filling the
198          * ACL cache. But normally you'd fill the cache either at inode
199          * instantiation time, or on the first ->get_acl call.
200          *
201          * If the filesystem doesn't have a get_acl() function at all, we'll
202          * just create the negative cache entry.
203          */
204         if (acl == ACL_NOT_CACHED) {
205                 if (inode->i_op->get_acl) {
206                         acl = inode->i_op->get_acl(inode, ACL_TYPE_ACCESS);
207                         if (IS_ERR(acl))
208                                 return PTR_ERR(acl);
209                 } else {
210                         set_cached_acl(inode, ACL_TYPE_ACCESS, NULL);
211                         return -EAGAIN;
212                 }
213         }
214
215         if (acl) {
216                 int error = posix_acl_permission(inode, acl, mask);
217                 posix_acl_release(acl);
218                 return error;
219         }
220 #endif
221
222         return -EAGAIN;
223 }
224
225 /*
226  * This does the basic permission checking
227  */
228 static int acl_permission_check(struct inode *inode, int mask)
229 {
230         unsigned int mode = inode->i_mode;
231
232         if (current_user_ns() != inode_userns(inode))
233                 goto other_perms;
234
235         if (likely(current_fsuid() == inode->i_uid))
236                 mode >>= 6;
237         else {
238                 if (IS_POSIXACL(inode) && (mode & S_IRWXG)) {
239                         int error = check_acl(inode, mask);
240                         if (error != -EAGAIN)
241                                 return error;
242                 }
243
244                 if (in_group_p(inode->i_gid))
245                         mode >>= 3;
246         }
247
248 other_perms:
249         /*
250          * If the DACs are ok we don't need any capability check.
251          */
252         if ((mask & ~mode & (MAY_READ | MAY_WRITE | MAY_EXEC)) == 0)
253                 return 0;
254         return -EACCES;
255 }
256
257 /**
258  * generic_permission -  check for access rights on a Posix-like filesystem
259  * @inode:      inode to check access rights for
260  * @mask:       right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC, ...)
261  *
262  * Used to check for read/write/execute permissions on a file.
263  * We use "fsuid" for this, letting us set arbitrary permissions
264  * for filesystem access without changing the "normal" uids which
265  * are used for other things.
266  *
267  * generic_permission is rcu-walk aware. It returns -ECHILD in case an rcu-walk
268  * request cannot be satisfied (eg. requires blocking or too much complexity).
269  * It would then be called again in ref-walk mode.
270  */
271 int generic_permission(struct inode *inode, int mask)
272 {
273         int ret;
274
275         /*
276          * Do the basic permission checks.
277          */
278         ret = acl_permission_check(inode, mask);
279         if (ret != -EACCES)
280                 return ret;
281
282         if (S_ISDIR(inode->i_mode)) {
283                 /* DACs are overridable for directories */
284                 if (ns_capable(inode_userns(inode), CAP_DAC_OVERRIDE))
285                         return 0;
286                 if (!(mask & MAY_WRITE))
287                         if (ns_capable(inode_userns(inode), CAP_DAC_READ_SEARCH))
288                                 return 0;
289                 return -EACCES;
290         }
291         /*
292          * Read/write DACs are always overridable.
293          * Executable DACs are overridable when there is
294          * at least one exec bit set.
295          */
296         if (!(mask & MAY_EXEC) || (inode->i_mode & S_IXUGO))
297                 if (ns_capable(inode_userns(inode), CAP_DAC_OVERRIDE))
298                         return 0;
299
300         /*
301          * Searching includes executable on directories, else just read.
302          */
303         mask &= MAY_READ | MAY_WRITE | MAY_EXEC;
304         if (mask == MAY_READ)
305                 if (ns_capable(inode_userns(inode), CAP_DAC_READ_SEARCH))
306                         return 0;
307
308         return -EACCES;
309 }
310
311 /*
312  * We _really_ want to just do "generic_permission()" without
313  * even looking at the inode->i_op values. So we keep a cache
314  * flag in inode->i_opflags, that says "this has not special
315  * permission function, use the fast case".
316  */
317 static inline int do_inode_permission(struct inode *inode, int mask)
318 {
319         if (unlikely(!(inode->i_opflags & IOP_FASTPERM))) {
320                 if (likely(inode->i_op->permission))
321                         return inode->i_op->permission(inode, mask);
322
323                 /* This gets set once for the inode lifetime */
324                 spin_lock(&inode->i_lock);
325                 inode->i_opflags |= IOP_FASTPERM;
326                 spin_unlock(&inode->i_lock);
327         }
328         return generic_permission(inode, mask);
329 }
330
331 /**
332  * inode_permission  -  check for access rights to a given inode
333  * @inode:      inode to check permission on
334  * @mask:       right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC, ...)
335  *
336  * Used to check for read/write/execute permissions on an inode.
337  * We use "fsuid" for this, letting us set arbitrary permissions
338  * for filesystem access without changing the "normal" uids which
339  * are used for other things.
340  *
341  * When checking for MAY_APPEND, MAY_WRITE must also be set in @mask.
342  */
343 int inode_permission(struct inode *inode, int mask)
344 {
345         int retval;
346
347         if (unlikely(mask & MAY_WRITE)) {
348                 umode_t mode = inode->i_mode;
349
350                 /*
351                  * Nobody gets write access to a read-only fs.
352                  */
353                 if (IS_RDONLY(inode) &&
354                     (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode)))
355                         return -EROFS;
356
357                 /*
358                  * Nobody gets write access to an immutable file.
359                  */
360                 if (IS_IMMUTABLE(inode))
361                         return -EACCES;
362         }
363
364         retval = do_inode_permission(inode, mask);
365         if (retval)
366                 return retval;
367
368         retval = devcgroup_inode_permission(inode, mask);
369         if (retval)
370                 return retval;
371
372         return security_inode_permission(inode, mask);
373 }
374
375 /**
376  * path_get - get a reference to a path
377  * @path: path to get the reference to
378  *
379  * Given a path increment the reference count to the dentry and the vfsmount.
380  */
381 void path_get(struct path *path)
382 {
383         mntget(path->mnt);
384         dget(path->dentry);
385 }
386 EXPORT_SYMBOL(path_get);
387
388 /**
389  * path_put - put a reference to a path
390  * @path: path to put the reference to
391  *
392  * Given a path decrement the reference count to the dentry and the vfsmount.
393  */
394 void path_put(struct path *path)
395 {
396         dput(path->dentry);
397         mntput(path->mnt);
398 }
399 EXPORT_SYMBOL(path_put);
400
401 /*
402  * Path walking has 2 modes, rcu-walk and ref-walk (see
403  * Documentation/filesystems/path-lookup.txt).  In situations when we can't
404  * continue in RCU mode, we attempt to drop out of rcu-walk mode and grab
405  * normal reference counts on dentries and vfsmounts to transition to rcu-walk
406  * mode.  Refcounts are grabbed at the last known good point before rcu-walk
407  * got stuck, so ref-walk may continue from there. If this is not successful
408  * (eg. a seqcount has changed), then failure is returned and it's up to caller
409  * to restart the path walk from the beginning in ref-walk mode.
410  */
411
412 /**
413  * unlazy_walk - try to switch to ref-walk mode.
414  * @nd: nameidata pathwalk data
415  * @dentry: child of nd->path.dentry or NULL
416  * Returns: 0 on success, -ECHILD on failure
417  *
418  * unlazy_walk attempts to legitimize the current nd->path, nd->root and dentry
419  * for ref-walk mode.  @dentry must be a path found by a do_lookup call on
420  * @nd or NULL.  Must be called from rcu-walk context.
421  */
422 static int unlazy_walk(struct nameidata *nd, struct dentry *dentry)
423 {
424         struct fs_struct *fs = current->fs;
425         struct dentry *parent = nd->path.dentry;
426         int want_root = 0;
427
428         BUG_ON(!(nd->flags & LOOKUP_RCU));
429         if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT)) {
430                 want_root = 1;
431                 spin_lock(&fs->lock);
432                 if (nd->root.mnt != fs->root.mnt ||
433                                 nd->root.dentry != fs->root.dentry)
434                         goto err_root;
435         }
436         spin_lock(&parent->d_lock);
437         if (!dentry) {
438                 if (!__d_rcu_to_refcount(parent, nd->seq))
439                         goto err_parent;
440                 BUG_ON(nd->inode != parent->d_inode);
441         } else {
442                 if (dentry->d_parent != parent)
443                         goto err_parent;
444                 spin_lock_nested(&dentry->d_lock, DENTRY_D_LOCK_NESTED);
445                 if (!__d_rcu_to_refcount(dentry, nd->seq))
446                         goto err_child;
447                 /*
448                  * If the sequence check on the child dentry passed, then
449                  * the child has not been removed from its parent. This
450                  * means the parent dentry must be valid and able to take
451                  * a reference at this point.
452                  */
453                 BUG_ON(!IS_ROOT(dentry) && dentry->d_parent != parent);
454                 BUG_ON(!parent->d_count);
455                 parent->d_count++;
456                 spin_unlock(&dentry->d_lock);
457         }
458         spin_unlock(&parent->d_lock);
459         if (want_root) {
460                 path_get(&nd->root);
461                 spin_unlock(&fs->lock);
462         }
463         mntget(nd->path.mnt);
464
465         rcu_read_unlock();
466         br_read_unlock(vfsmount_lock);
467         nd->flags &= ~LOOKUP_RCU;
468         return 0;
469
470 err_child:
471         spin_unlock(&dentry->d_lock);
472 err_parent:
473         spin_unlock(&parent->d_lock);
474 err_root:
475         if (want_root)
476                 spin_unlock(&fs->lock);
477         return -ECHILD;
478 }
479
480 /**
481  * release_open_intent - free up open intent resources
482  * @nd: pointer to nameidata
483  */
484 void release_open_intent(struct nameidata *nd)
485 {
486         struct file *file = nd->intent.open.file;
487
488         if (file && !IS_ERR(file)) {
489                 if (file->f_path.dentry == NULL)
490                         put_filp(file);
491                 else
492                         fput(file);
493         }
494 }
495
496 static inline int d_revalidate(struct dentry *dentry, struct nameidata *nd)
497 {
498         return dentry->d_op->d_revalidate(dentry, nd);
499 }
500
501 /**
502  * complete_walk - successful completion of path walk
503  * @nd:  pointer nameidata
504  *
505  * If we had been in RCU mode, drop out of it and legitimize nd->path.
506  * Revalidate the final result, unless we'd already done that during
507  * the path walk or the filesystem doesn't ask for it.  Return 0 on
508  * success, -error on failure.  In case of failure caller does not
509  * need to drop nd->path.
510  */
511 static int complete_walk(struct nameidata *nd)
512 {
513         struct dentry *dentry = nd->path.dentry;
514         int status;
515
516         if (nd->flags & LOOKUP_RCU) {
517                 nd->flags &= ~LOOKUP_RCU;
518                 if (!(nd->flags & LOOKUP_ROOT))
519                         nd->root.mnt = NULL;
520                 spin_lock(&dentry->d_lock);
521                 if (unlikely(!__d_rcu_to_refcount(dentry, nd->seq))) {
522                         spin_unlock(&dentry->d_lock);
523                         rcu_read_unlock();
524                         br_read_unlock(vfsmount_lock);
525                         return -ECHILD;
526                 }
527                 BUG_ON(nd->inode != dentry->d_inode);
528                 spin_unlock(&dentry->d_lock);
529                 mntget(nd->path.mnt);
530                 rcu_read_unlock();
531                 br_read_unlock(vfsmount_lock);
532         }
533
534         if (likely(!(nd->flags & LOOKUP_JUMPED)))
535                 return 0;
536
537         if (likely(!(dentry->d_flags & DCACHE_OP_REVALIDATE)))
538                 return 0;
539
540         if (likely(!(dentry->d_sb->s_type->fs_flags & FS_REVAL_DOT)))
541                 return 0;
542
543         /* Note: we do not d_invalidate() */
544         status = d_revalidate(dentry, nd);
545         if (status > 0)
546                 return 0;
547
548         if (!status)
549                 status = -ESTALE;
550
551         path_put(&nd->path);
552         return status;
553 }
554
555 static __always_inline void set_root(struct nameidata *nd)
556 {
557         get_fs_root(current->fs, &nd->root);
558 }
559
560 static int link_path_walk(const char *, struct nameidata *);
561
562 static __always_inline unsigned set_root_rcu(struct nameidata *nd)
563 {
564         struct fs_struct *fs = current->fs;
565         unsigned seq, res;
566
567         do {
568                 seq = read_seqcount_begin(&fs->seq);
569                 nd->root = fs->root;
570                 res = __read_seqcount_begin(&nd->root.dentry->d_seq);
571         } while (read_seqcount_retry(&fs->seq, seq));
572         return res;
573 }
574
575 static __always_inline int __vfs_follow_link(struct nameidata *nd, const char *link)
576 {
577         int ret;
578
579         if (IS_ERR(link))
580                 goto fail;
581
582         if (*link == '/') {
583                 if (!nd->root.mnt)
584                         set_root(nd);
585                 path_put(&nd->path);
586                 nd->path = nd->root;
587                 path_get(&nd->root);
588                 nd->flags |= LOOKUP_JUMPED;
589         }
590         nd->inode = nd->path.dentry->d_inode;
591
592         ret = link_path_walk(link, nd);
593         return ret;
594 fail:
595         path_put(&nd->path);
596         return PTR_ERR(link);
597 }
598
599 static void path_put_conditional(struct path *path, struct nameidata *nd)
600 {
601         dput(path->dentry);
602         if (path->mnt != nd->path.mnt)
603                 mntput(path->mnt);
604 }
605
606 static inline void path_to_nameidata(const struct path *path,
607                                         struct nameidata *nd)
608 {
609         if (!(nd->flags & LOOKUP_RCU)) {
610                 dput(nd->path.dentry);
611                 if (nd->path.mnt != path->mnt)
612                         mntput(nd->path.mnt);
613         }
614         nd->path.mnt = path->mnt;
615         nd->path.dentry = path->dentry;
616 }
617
618 static inline void put_link(struct nameidata *nd, struct path *link, void *cookie)
619 {
620         struct inode *inode = link->dentry->d_inode;
621         if (!IS_ERR(cookie) && inode->i_op->put_link)
622                 inode->i_op->put_link(link->dentry, nd, cookie);
623         path_put(link);
624 }
625
626 static __always_inline int
627 follow_link(struct path *link, struct nameidata *nd, void **p)
628 {
629         int error;
630         struct dentry *dentry = link->dentry;
631
632         BUG_ON(nd->flags & LOOKUP_RCU);
633
634         if (link->mnt == nd->path.mnt)
635                 mntget(link->mnt);
636
637         if (unlikely(current->total_link_count >= 40)) {
638                 *p = ERR_PTR(-ELOOP); /* no ->put_link(), please */
639                 path_put(&nd->path);
640                 return -ELOOP;
641         }
642         cond_resched();
643         current->total_link_count++;
644
645         touch_atime(link->mnt, dentry);
646         nd_set_link(nd, NULL);
647
648         error = security_inode_follow_link(link->dentry, nd);
649         if (error) {
650                 *p = ERR_PTR(error); /* no ->put_link(), please */
651                 path_put(&nd->path);
652                 return error;
653         }
654
655         nd->last_type = LAST_BIND;
656         *p = dentry->d_inode->i_op->follow_link(dentry, nd);
657         error = PTR_ERR(*p);
658         if (!IS_ERR(*p)) {
659                 char *s = nd_get_link(nd);
660                 error = 0;
661                 if (s)
662                         error = __vfs_follow_link(nd, s);
663                 else if (nd->last_type == LAST_BIND) {
664                         nd->flags |= LOOKUP_JUMPED;
665                         nd->inode = nd->path.dentry->d_inode;
666                         if (nd->inode->i_op->follow_link) {
667                                 /* stepped on a _really_ weird one */
668                                 path_put(&nd->path);
669                                 error = -ELOOP;
670                         }
671                 }
672         }
673         return error;
674 }
675
676 static int follow_up_rcu(struct path *path)
677 {
678         struct vfsmount *parent;
679         struct dentry *mountpoint;
680
681         parent = path->mnt->mnt_parent;
682         if (parent == path->mnt)
683                 return 0;
684         mountpoint = path->mnt->mnt_mountpoint;
685         path->dentry = mountpoint;
686         path->mnt = parent;
687         return 1;
688 }
689
690 int follow_up(struct path *path)
691 {
692         struct vfsmount *parent;
693         struct dentry *mountpoint;
694
695         br_read_lock(vfsmount_lock);
696         parent = path->mnt->mnt_parent;
697         if (parent == path->mnt) {
698                 br_read_unlock(vfsmount_lock);
699                 return 0;
700         }
701         mntget(parent);
702         mountpoint = dget(path->mnt->mnt_mountpoint);
703         br_read_unlock(vfsmount_lock);
704         dput(path->dentry);
705         path->dentry = mountpoint;
706         mntput(path->mnt);
707         path->mnt = parent;
708         return 1;
709 }
710
711 /*
712  * Perform an automount
713  * - return -EISDIR to tell follow_managed() to stop and return the path we
714  *   were called with.
715  */
716 static int follow_automount(struct path *path, unsigned flags,
717                             bool *need_mntput)
718 {
719         struct vfsmount *mnt;
720         int err;
721
722         if (!path->dentry->d_op || !path->dentry->d_op->d_automount)
723                 return -EREMOTE;
724
725         /* We don't want to mount if someone's just doing a stat -
726          * unless they're stat'ing a directory and appended a '/' to
727          * the name.
728          *
729          * We do, however, want to mount if someone wants to open or
730          * create a file of any type under the mountpoint, wants to
731          * traverse through the mountpoint or wants to open the
732          * mounted directory.  Also, autofs may mark negative dentries
733          * as being automount points.  These will need the attentions
734          * of the daemon to instantiate them before they can be used.
735          */
736         if (!(flags & (LOOKUP_PARENT | LOOKUP_DIRECTORY |
737                      LOOKUP_OPEN | LOOKUP_CREATE | LOOKUP_AUTOMOUNT)) &&
738             path->dentry->d_inode)
739                 return -EISDIR;
740
741         current->total_link_count++;
742         if (current->total_link_count >= 40)
743                 return -ELOOP;
744
745         mnt = path->dentry->d_op->d_automount(path);
746         if (IS_ERR(mnt)) {
747                 /*
748                  * The filesystem is allowed to return -EISDIR here to indicate
749                  * it doesn't want to automount.  For instance, autofs would do
750                  * this so that its userspace daemon can mount on this dentry.
751                  *
752                  * However, we can only permit this if it's a terminal point in
753                  * the path being looked up; if it wasn't then the remainder of
754                  * the path is inaccessible and we should say so.
755                  */
756                 if (PTR_ERR(mnt) == -EISDIR && (flags & LOOKUP_PARENT))
757                         return -EREMOTE;
758                 return PTR_ERR(mnt);
759         }
760
761         if (!mnt) /* mount collision */
762                 return 0;
763
764         if (!*need_mntput) {
765                 /* lock_mount() may release path->mnt on error */
766                 mntget(path->mnt);
767                 *need_mntput = true;
768         }
769         err = finish_automount(mnt, path);
770
771         switch (err) {
772         case -EBUSY:
773                 /* Someone else made a mount here whilst we were busy */
774                 return 0;
775         case 0:
776                 path_put(path);
777                 path->mnt = mnt;
778                 path->dentry = dget(mnt->mnt_root);
779                 return 0;
780         default:
781                 return err;
782         }
783
784 }
785
786 /*
787  * Handle a dentry that is managed in some way.
788  * - Flagged for transit management (autofs)
789  * - Flagged as mountpoint
790  * - Flagged as automount point
791  *
792  * This may only be called in refwalk mode.
793  *
794  * Serialization is taken care of in namespace.c
795  */
796 static int follow_managed(struct path *path, unsigned flags)
797 {
798         struct vfsmount *mnt = path->mnt; /* held by caller, must be left alone */
799         unsigned managed;
800         bool need_mntput = false;
801         int ret = 0;
802
803         /* Given that we're not holding a lock here, we retain the value in a
804          * local variable for each dentry as we look at it so that we don't see
805          * the components of that value change under us */
806         while (managed = ACCESS_ONCE(path->dentry->d_flags),
807                managed &= DCACHE_MANAGED_DENTRY,
808                unlikely(managed != 0)) {
809                 /* Allow the filesystem to manage the transit without i_mutex
810                  * being held. */
811                 if (managed & DCACHE_MANAGE_TRANSIT) {
812                         BUG_ON(!path->dentry->d_op);
813                         BUG_ON(!path->dentry->d_op->d_manage);
814                         ret = path->dentry->d_op->d_manage(path->dentry, false);
815                         if (ret < 0)
816                                 break;
817                 }
818
819                 /* Transit to a mounted filesystem. */
820                 if (managed & DCACHE_MOUNTED) {
821                         struct vfsmount *mounted = lookup_mnt(path);
822                         if (mounted) {
823                                 dput(path->dentry);
824                                 if (need_mntput)
825                                         mntput(path->mnt);
826                                 path->mnt = mounted;
827                                 path->dentry = dget(mounted->mnt_root);
828                                 need_mntput = true;
829                                 continue;
830                         }
831
832                         /* Something is mounted on this dentry in another
833                          * namespace and/or whatever was mounted there in this
834                          * namespace got unmounted before we managed to get the
835                          * vfsmount_lock */
836                 }
837
838                 /* Handle an automount point */
839                 if (managed & DCACHE_NEED_AUTOMOUNT) {
840                         ret = follow_automount(path, flags, &need_mntput);
841                         if (ret < 0)
842                                 break;
843                         continue;
844                 }
845
846                 /* We didn't change the current path point */
847                 break;
848         }
849
850         if (need_mntput && path->mnt == mnt)
851                 mntput(path->mnt);
852         if (ret == -EISDIR)
853                 ret = 0;
854         return ret < 0 ? ret : need_mntput;
855 }
856
857 int follow_down_one(struct path *path)
858 {
859         struct vfsmount *mounted;
860
861         mounted = lookup_mnt(path);
862         if (mounted) {
863                 dput(path->dentry);
864                 mntput(path->mnt);
865                 path->mnt = mounted;
866                 path->dentry = dget(mounted->mnt_root);
867                 return 1;
868         }
869         return 0;
870 }
871
872 static inline bool managed_dentry_might_block(struct dentry *dentry)
873 {
874         return (dentry->d_flags & DCACHE_MANAGE_TRANSIT &&
875                 dentry->d_op->d_manage(dentry, true) < 0);
876 }
877
878 /*
879  * Try to skip to top of mountpoint pile in rcuwalk mode.  Fail if
880  * we meet a managed dentry that would need blocking.
881  */
882 static bool __follow_mount_rcu(struct nameidata *nd, struct path *path,
883                                struct inode **inode)
884 {
885         for (;;) {
886                 struct vfsmount *mounted;
887                 /*
888                  * Don't forget we might have a non-mountpoint managed dentry
889                  * that wants to block transit.
890                  */
891                 if (unlikely(managed_dentry_might_block(path->dentry)))
892                         return false;
893
894                 if (!d_mountpoint(path->dentry))
895                         break;
896
897                 mounted = __lookup_mnt(path->mnt, path->dentry, 1);
898                 if (!mounted)
899                         break;
900                 path->mnt = mounted;
901                 path->dentry = mounted->mnt_root;
902                 nd->flags |= LOOKUP_JUMPED;
903                 nd->seq = read_seqcount_begin(&path->dentry->d_seq);
904                 /*
905                  * Update the inode too. We don't need to re-check the
906                  * dentry sequence number here after this d_inode read,
907                  * because a mount-point is always pinned.
908                  */
909                 *inode = path->dentry->d_inode;
910         }
911         return true;
912 }
913
914 static int follow_dotdot_rcu(struct nameidata *nd)
915 {
916         if (!nd->root.mnt)
917                 set_root_rcu(nd);
918
919         while (1) {
920                 if (nd->path.dentry == nd->root.dentry &&
921                     nd->path.mnt == nd->root.mnt) {
922                         break;
923                 }
924                 if (nd->path.dentry != nd->path.mnt->mnt_root) {
925                         struct dentry *old = nd->path.dentry;
926                         struct dentry *parent = old->d_parent;
927                         unsigned seq;
928
929                         seq = read_seqcount_begin(&parent->d_seq);
930                         if (read_seqcount_retry(&old->d_seq, nd->seq))
931                                 goto failed;
932                         nd->path.dentry = parent;
933                         nd->seq = seq;
934                         break;
935                 }
936                 if (!follow_up_rcu(&nd->path))
937                         break;
938                 nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq);
939         }
940         while (d_mountpoint(nd->path.dentry)) {
941                 struct vfsmount *mounted;
942                 mounted = __lookup_mnt(nd->path.mnt, nd->path.dentry, 1);
943                 if (!mounted)
944                         break;
945                 nd->path.mnt = mounted;
946                 nd->path.dentry = mounted->mnt_root;
947                 nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq);
948         }
949         nd->inode = nd->path.dentry->d_inode;
950         return 0;
951
952 failed:
953         nd->flags &= ~LOOKUP_RCU;
954         if (!(nd->flags & LOOKUP_ROOT))
955                 nd->root.mnt = NULL;
956         rcu_read_unlock();
957         br_read_unlock(vfsmount_lock);
958         return -ECHILD;
959 }
960
961 /*
962  * Follow down to the covering mount currently visible to userspace.  At each
963  * point, the filesystem owning that dentry may be queried as to whether the
964  * caller is permitted to proceed or not.
965  */
966 int follow_down(struct path *path)
967 {
968         unsigned managed;
969         int ret;
970
971         while (managed = ACCESS_ONCE(path->dentry->d_flags),
972                unlikely(managed & DCACHE_MANAGED_DENTRY)) {
973                 /* Allow the filesystem to manage the transit without i_mutex
974                  * being held.
975                  *
976                  * We indicate to the filesystem if someone is trying to mount
977                  * something here.  This gives autofs the chance to deny anyone
978                  * other than its daemon the right to mount on its
979                  * superstructure.
980                  *
981                  * The filesystem may sleep at this point.
982                  */
983                 if (managed & DCACHE_MANAGE_TRANSIT) {
984                         BUG_ON(!path->dentry->d_op);
985                         BUG_ON(!path->dentry->d_op->d_manage);
986                         ret = path->dentry->d_op->d_manage(
987                                 path->dentry, false);
988                         if (ret < 0)
989                                 return ret == -EISDIR ? 0 : ret;
990                 }
991
992                 /* Transit to a mounted filesystem. */
993                 if (managed & DCACHE_MOUNTED) {
994                         struct vfsmount *mounted = lookup_mnt(path);
995                         if (!mounted)
996                                 break;
997                         dput(path->dentry);
998                         mntput(path->mnt);
999                         path->mnt = mounted;
1000                         path->dentry = dget(mounted->mnt_root);
1001                         continue;
1002                 }
1003
1004                 /* Don't handle automount points here */
1005                 break;
1006         }
1007         return 0;
1008 }
1009
1010 /*
1011  * Skip to top of mountpoint pile in refwalk mode for follow_dotdot()
1012  */
1013 static void follow_mount(struct path *path)
1014 {
1015         while (d_mountpoint(path->dentry)) {
1016                 struct vfsmount *mounted = lookup_mnt(path);
1017                 if (!mounted)
1018                         break;
1019                 dput(path->dentry);
1020                 mntput(path->mnt);
1021                 path->mnt = mounted;
1022                 path->dentry = dget(mounted->mnt_root);
1023         }
1024 }
1025
1026 static void follow_dotdot(struct nameidata *nd)
1027 {
1028         if (!nd->root.mnt)
1029                 set_root(nd);
1030
1031         while(1) {
1032                 struct dentry *old = nd->path.dentry;
1033
1034                 if (nd->path.dentry == nd->root.dentry &&
1035                     nd->path.mnt == nd->root.mnt) {
1036                         break;
1037                 }
1038                 if (nd->path.dentry != nd->path.mnt->mnt_root) {
1039                         /* rare case of legitimate dget_parent()... */
1040                         nd->path.dentry = dget_parent(nd->path.dentry);
1041                         dput(old);
1042                         break;
1043                 }
1044                 if (!follow_up(&nd->path))
1045                         break;
1046         }
1047         follow_mount(&nd->path);
1048         nd->inode = nd->path.dentry->d_inode;
1049 }
1050
1051 /*
1052  * Allocate a dentry with name and parent, and perform a parent
1053  * directory ->lookup on it. Returns the new dentry, or ERR_PTR
1054  * on error. parent->d_inode->i_mutex must be held. d_lookup must
1055  * have verified that no child exists while under i_mutex.
1056  */
1057 static struct dentry *d_alloc_and_lookup(struct dentry *parent,
1058                                 struct qstr *name, struct nameidata *nd)
1059 {
1060         struct inode *inode = parent->d_inode;
1061         struct dentry *dentry;
1062         struct dentry *old;
1063
1064         /* Don't create child dentry for a dead directory. */
1065         if (unlikely(IS_DEADDIR(inode)))
1066                 return ERR_PTR(-ENOENT);
1067
1068         dentry = d_alloc(parent, name);
1069         if (unlikely(!dentry))
1070                 return ERR_PTR(-ENOMEM);
1071
1072         old = inode->i_op->lookup(inode, dentry, nd);
1073         if (unlikely(old)) {
1074                 dput(dentry);
1075                 dentry = old;
1076         }
1077         return dentry;
1078 }
1079
1080 /*
1081  * We already have a dentry, but require a lookup to be performed on the parent
1082  * directory to fill in d_inode. Returns the new dentry, or ERR_PTR on error.
1083  * parent->d_inode->i_mutex must be held. d_lookup must have verified that no
1084  * child exists while under i_mutex.
1085  */
1086 static struct dentry *d_inode_lookup(struct dentry *parent, struct dentry *dentry,
1087                                      struct nameidata *nd)
1088 {
1089         struct inode *inode = parent->d_inode;
1090         struct dentry *old;
1091
1092         /* Don't create child dentry for a dead directory. */
1093         if (unlikely(IS_DEADDIR(inode))) {
1094                 dput(dentry);
1095                 return ERR_PTR(-ENOENT);
1096         }
1097
1098         old = inode->i_op->lookup(inode, dentry, nd);
1099         if (unlikely(old)) {
1100                 dput(dentry);
1101                 dentry = old;
1102         }
1103         return dentry;
1104 }
1105
1106 /*
1107  *  It's more convoluted than I'd like it to be, but... it's still fairly
1108  *  small and for now I'd prefer to have fast path as straight as possible.
1109  *  It _is_ time-critical.
1110  */
1111 static int do_lookup(struct nameidata *nd, struct qstr *name,
1112                         struct path *path, struct inode **inode)
1113 {
1114         struct vfsmount *mnt = nd->path.mnt;
1115         struct dentry *dentry, *parent = nd->path.dentry;
1116         int need_reval = 1;
1117         int status = 1;
1118         int err;
1119
1120         /*
1121          * Rename seqlock is not required here because in the off chance
1122          * of a false negative due to a concurrent rename, we're going to
1123          * do the non-racy lookup, below.
1124          */
1125         if (nd->flags & LOOKUP_RCU) {
1126                 unsigned seq;
1127                 *inode = nd->inode;
1128                 dentry = __d_lookup_rcu(parent, name, &seq, inode);
1129                 if (!dentry)
1130                         goto unlazy;
1131
1132                 /* Memory barrier in read_seqcount_begin of child is enough */
1133                 if (__read_seqcount_retry(&parent->d_seq, nd->seq))
1134                         return -ECHILD;
1135                 nd->seq = seq;
1136
1137                 if (unlikely(dentry->d_flags & DCACHE_OP_REVALIDATE)) {
1138                         status = d_revalidate(dentry, nd);
1139                         if (unlikely(status <= 0)) {
1140                                 if (status != -ECHILD)
1141                                         need_reval = 0;
1142                                 goto unlazy;
1143                         }
1144                 }
1145                 if (unlikely(d_need_lookup(dentry)))
1146                         goto unlazy;
1147                 path->mnt = mnt;
1148                 path->dentry = dentry;
1149                 if (unlikely(!__follow_mount_rcu(nd, path, inode)))
1150                         goto unlazy;
1151                 if (unlikely(path->dentry->d_flags & DCACHE_NEED_AUTOMOUNT))
1152                         goto unlazy;
1153                 return 0;
1154 unlazy:
1155                 if (unlazy_walk(nd, dentry))
1156                         return -ECHILD;
1157         } else {
1158                 dentry = __d_lookup(parent, name);
1159         }
1160
1161         if (dentry && unlikely(d_need_lookup(dentry))) {
1162                 dput(dentry);
1163                 dentry = NULL;
1164         }
1165 retry:
1166         if (unlikely(!dentry)) {
1167                 struct inode *dir = parent->d_inode;
1168                 BUG_ON(nd->inode != dir);
1169
1170                 mutex_lock(&dir->i_mutex);
1171                 dentry = d_lookup(parent, name);
1172                 if (likely(!dentry)) {
1173                         dentry = d_alloc_and_lookup(parent, name, nd);
1174                         if (IS_ERR(dentry)) {
1175                                 mutex_unlock(&dir->i_mutex);
1176                                 return PTR_ERR(dentry);
1177                         }
1178                         /* known good */
1179                         need_reval = 0;
1180                         status = 1;
1181                 } else if (unlikely(d_need_lookup(dentry))) {
1182                         dentry = d_inode_lookup(parent, dentry, nd);
1183                         if (IS_ERR(dentry)) {
1184                                 mutex_unlock(&dir->i_mutex);
1185                                 return PTR_ERR(dentry);
1186                         }
1187                         /* known good */
1188                         need_reval = 0;
1189                         status = 1;
1190                 }
1191                 mutex_unlock(&dir->i_mutex);
1192         }
1193         if (unlikely(dentry->d_flags & DCACHE_OP_REVALIDATE) && need_reval)
1194                 status = d_revalidate(dentry, nd);
1195         if (unlikely(status <= 0)) {
1196                 if (status < 0) {
1197                         dput(dentry);
1198                         return status;
1199                 }
1200                 if (!d_invalidate(dentry)) {
1201                         dput(dentry);
1202                         dentry = NULL;
1203                         need_reval = 1;
1204                         goto retry;
1205                 }
1206         }
1207
1208         path->mnt = mnt;
1209         path->dentry = dentry;
1210         err = follow_managed(path, nd->flags);
1211         if (unlikely(err < 0)) {
1212                 path_put_conditional(path, nd);
1213                 return err;
1214         }
1215         if (err)
1216                 nd->flags |= LOOKUP_JUMPED;
1217         *inode = path->dentry->d_inode;
1218         return 0;
1219 }
1220
1221 static inline int may_lookup(struct nameidata *nd)
1222 {
1223         if (nd->flags & LOOKUP_RCU) {
1224                 int err = inode_permission(nd->inode, MAY_EXEC|MAY_NOT_BLOCK);
1225                 if (err != -ECHILD)
1226                         return err;
1227                 if (unlazy_walk(nd, NULL))
1228                         return -ECHILD;
1229         }
1230         return inode_permission(nd->inode, MAY_EXEC);
1231 }
1232
1233 static inline int handle_dots(struct nameidata *nd, int type)
1234 {
1235         if (type == LAST_DOTDOT) {
1236                 if (nd->flags & LOOKUP_RCU) {
1237                         if (follow_dotdot_rcu(nd))
1238                                 return -ECHILD;
1239                 } else
1240                         follow_dotdot(nd);
1241         }
1242         return 0;
1243 }
1244
1245 static void terminate_walk(struct nameidata *nd)
1246 {
1247         if (!(nd->flags & LOOKUP_RCU)) {
1248                 path_put(&nd->path);
1249         } else {
1250                 nd->flags &= ~LOOKUP_RCU;
1251                 if (!(nd->flags & LOOKUP_ROOT))
1252                         nd->root.mnt = NULL;
1253                 rcu_read_unlock();
1254                 br_read_unlock(vfsmount_lock);
1255         }
1256 }
1257
1258 /*
1259  * Do we need to follow links? We _really_ want to be able
1260  * to do this check without having to look at inode->i_op,
1261  * so we keep a cache of "no, this doesn't need follow_link"
1262  * for the common case.
1263  */
1264 static inline int should_follow_link(struct inode *inode, int follow)
1265 {
1266         if (unlikely(!(inode->i_opflags & IOP_NOFOLLOW))) {
1267                 if (likely(inode->i_op->follow_link))
1268                         return follow;
1269
1270                 /* This gets set once for the inode lifetime */
1271                 spin_lock(&inode->i_lock);
1272                 inode->i_opflags |= IOP_NOFOLLOW;
1273                 spin_unlock(&inode->i_lock);
1274         }
1275         return 0;
1276 }
1277
1278 static inline int walk_component(struct nameidata *nd, struct path *path,
1279                 struct qstr *name, int type, int follow)
1280 {
1281         struct inode *inode;
1282         int err;
1283         /*
1284          * "." and ".." are special - ".." especially so because it has
1285          * to be able to know about the current root directory and
1286          * parent relationships.
1287          */
1288         if (unlikely(type != LAST_NORM))
1289                 return handle_dots(nd, type);
1290         err = do_lookup(nd, name, path, &inode);
1291         if (unlikely(err)) {
1292                 terminate_walk(nd);
1293                 return err;
1294         }
1295         if (!inode) {
1296                 path_to_nameidata(path, nd);
1297                 terminate_walk(nd);
1298                 return -ENOENT;
1299         }
1300         if (should_follow_link(inode, follow)) {
1301                 if (nd->flags & LOOKUP_RCU) {
1302                         if (unlikely(unlazy_walk(nd, path->dentry))) {
1303                                 terminate_walk(nd);
1304                                 return -ECHILD;
1305                         }
1306                 }
1307                 BUG_ON(inode != path->dentry->d_inode);
1308                 return 1;
1309         }
1310         path_to_nameidata(path, nd);
1311         nd->inode = inode;
1312         return 0;
1313 }
1314
1315 /*
1316  * This limits recursive symlink follows to 8, while
1317  * limiting consecutive symlinks to 40.
1318  *
1319  * Without that kind of total limit, nasty chains of consecutive
1320  * symlinks can cause almost arbitrarily long lookups.
1321  */
1322 static inline int nested_symlink(struct path *path, struct nameidata *nd)
1323 {
1324         int res;
1325
1326         if (unlikely(current->link_count >= MAX_NESTED_LINKS)) {
1327                 path_put_conditional(path, nd);
1328                 path_put(&nd->path);
1329                 return -ELOOP;
1330         }
1331         BUG_ON(nd->depth >= MAX_NESTED_LINKS);
1332
1333         nd->depth++;
1334         current->link_count++;
1335
1336         do {
1337                 struct path link = *path;
1338                 void *cookie;
1339
1340                 res = follow_link(&link, nd, &cookie);
1341                 if (!res)
1342                         res = walk_component(nd, path, &nd->last,
1343                                              nd->last_type, LOOKUP_FOLLOW);
1344                 put_link(nd, &link, cookie);
1345         } while (res > 0);
1346
1347         current->link_count--;
1348         nd->depth--;
1349         return res;
1350 }
1351
1352 /*
1353  * We really don't want to look at inode->i_op->lookup
1354  * when we don't have to. So we keep a cache bit in
1355  * the inode ->i_opflags field that says "yes, we can
1356  * do lookup on this inode".
1357  */
1358 static inline int can_lookup(struct inode *inode)
1359 {
1360         if (likely(inode->i_opflags & IOP_LOOKUP))
1361                 return 1;
1362         if (likely(!inode->i_op->lookup))
1363                 return 0;
1364
1365         /* We do this once for the lifetime of the inode */
1366         spin_lock(&inode->i_lock);
1367         inode->i_opflags |= IOP_LOOKUP;
1368         spin_unlock(&inode->i_lock);
1369         return 1;
1370 }
1371
1372 /*
1373  * Name resolution.
1374  * This is the basic name resolution function, turning a pathname into
1375  * the final dentry. We expect 'base' to be positive and a directory.
1376  *
1377  * Returns 0 and nd will have valid dentry and mnt on success.
1378  * Returns error and drops reference to input namei data on failure.
1379  */
1380 static int link_path_walk(const char *name, struct nameidata *nd)
1381 {
1382         struct path next;
1383         int err;
1384         
1385         while (*name=='/')
1386                 name++;
1387         if (!*name)
1388                 return 0;
1389
1390         /* At this point we know we have a real path component. */
1391         for(;;) {
1392                 unsigned long hash;
1393                 struct qstr this;
1394                 unsigned int c;
1395                 int type;
1396
1397                 err = may_lookup(nd);
1398                 if (err)
1399                         break;
1400
1401                 this.name = name;
1402                 c = *(const unsigned char *)name;
1403
1404                 hash = init_name_hash();
1405                 do {
1406                         name++;
1407                         hash = partial_name_hash(c, hash);
1408                         c = *(const unsigned char *)name;
1409                 } while (c && (c != '/'));
1410                 this.len = name - (const char *) this.name;
1411                 this.hash = end_name_hash(hash);
1412
1413                 type = LAST_NORM;
1414                 if (this.name[0] == '.') switch (this.len) {
1415                         case 2:
1416                                 if (this.name[1] == '.') {
1417                                         type = LAST_DOTDOT;
1418                                         nd->flags |= LOOKUP_JUMPED;
1419                                 }
1420                                 break;
1421                         case 1:
1422                                 type = LAST_DOT;
1423                 }
1424                 if (likely(type == LAST_NORM)) {
1425                         struct dentry *parent = nd->path.dentry;
1426                         nd->flags &= ~LOOKUP_JUMPED;
1427                         if (unlikely(parent->d_flags & DCACHE_OP_HASH)) {
1428                                 err = parent->d_op->d_hash(parent, nd->inode,
1429                                                            &this);
1430                                 if (err < 0)
1431                                         break;
1432                         }
1433                 }
1434
1435                 /* remove trailing slashes? */
1436                 if (!c)
1437                         goto last_component;
1438                 while (*++name == '/');
1439                 if (!*name)
1440                         goto last_component;
1441
1442                 err = walk_component(nd, &next, &this, type, LOOKUP_FOLLOW);
1443                 if (err < 0)
1444                         return err;
1445
1446                 if (err) {
1447                         err = nested_symlink(&next, nd);
1448                         if (err)
1449                                 return err;
1450                 }
1451                 if (can_lookup(nd->inode))
1452                         continue;
1453                 err = -ENOTDIR; 
1454                 break;
1455                 /* here ends the main loop */
1456
1457 last_component:
1458                 nd->last = this;
1459                 nd->last_type = type;
1460                 return 0;
1461         }
1462         terminate_walk(nd);
1463         return err;
1464 }
1465
1466 static int path_init(int dfd, const char *name, unsigned int flags,
1467                      struct nameidata *nd, struct file **fp)
1468 {
1469         int retval = 0;
1470         int fput_needed;
1471         struct file *file;
1472
1473         nd->last_type = LAST_ROOT; /* if there are only slashes... */
1474         nd->flags = flags | LOOKUP_JUMPED;
1475         nd->depth = 0;
1476         if (flags & LOOKUP_ROOT) {
1477                 struct inode *inode = nd->root.dentry->d_inode;
1478                 if (*name) {
1479                         if (!inode->i_op->lookup)
1480                                 return -ENOTDIR;
1481                         retval = inode_permission(inode, MAY_EXEC);
1482                         if (retval)
1483                                 return retval;
1484                 }
1485                 nd->path = nd->root;
1486                 nd->inode = inode;
1487                 if (flags & LOOKUP_RCU) {
1488                         br_read_lock(vfsmount_lock);
1489                         rcu_read_lock();
1490                         nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
1491                 } else {
1492                         path_get(&nd->path);
1493                 }
1494                 return 0;
1495         }
1496
1497         nd->root.mnt = NULL;
1498
1499         if (*name=='/') {
1500                 if (flags & LOOKUP_RCU) {
1501                         br_read_lock(vfsmount_lock);
1502                         rcu_read_lock();
1503                         nd->seq = set_root_rcu(nd);
1504                 } else {
1505                         set_root(nd);
1506                         path_get(&nd->root);
1507                 }
1508                 nd->path = nd->root;
1509         } else if (dfd == AT_FDCWD) {
1510                 if (flags & LOOKUP_RCU) {
1511                         struct fs_struct *fs = current->fs;
1512                         unsigned seq;
1513
1514                         br_read_lock(vfsmount_lock);
1515                         rcu_read_lock();
1516
1517                         do {
1518                                 seq = read_seqcount_begin(&fs->seq);
1519                                 nd->path = fs->pwd;
1520                                 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
1521                         } while (read_seqcount_retry(&fs->seq, seq));
1522                 } else {
1523                         get_fs_pwd(current->fs, &nd->path);
1524                 }
1525         } else {
1526                 struct dentry *dentry;
1527
1528                 file = fget_raw_light(dfd, &fput_needed);
1529                 retval = -EBADF;
1530                 if (!file)
1531                         goto out_fail;
1532
1533                 dentry = file->f_path.dentry;
1534
1535                 if (*name) {
1536                         retval = -ENOTDIR;
1537                         if (!S_ISDIR(dentry->d_inode->i_mode))
1538                                 goto fput_fail;
1539
1540                         retval = inode_permission(dentry->d_inode, MAY_EXEC);
1541                         if (retval)
1542                                 goto fput_fail;
1543                 }
1544
1545                 nd->path = file->f_path;
1546                 if (flags & LOOKUP_RCU) {
1547                         if (fput_needed)
1548                                 *fp = file;
1549                         nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
1550                         br_read_lock(vfsmount_lock);
1551                         rcu_read_lock();
1552                 } else {
1553                         path_get(&file->f_path);
1554                         fput_light(file, fput_needed);
1555                 }
1556         }
1557
1558         nd->inode = nd->path.dentry->d_inode;
1559         return 0;
1560
1561 fput_fail:
1562         fput_light(file, fput_needed);
1563 out_fail:
1564         return retval;
1565 }
1566
1567 static inline int lookup_last(struct nameidata *nd, struct path *path)
1568 {
1569         if (nd->last_type == LAST_NORM && nd->last.name[nd->last.len])
1570                 nd->flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
1571
1572         nd->flags &= ~LOOKUP_PARENT;
1573         return walk_component(nd, path, &nd->last, nd->last_type,
1574                                         nd->flags & LOOKUP_FOLLOW);
1575 }
1576
1577 /* Returns 0 and nd will be valid on success; Retuns error, otherwise. */
1578 static int path_lookupat(int dfd, const char *name,
1579                                 unsigned int flags, struct nameidata *nd)
1580 {
1581         struct file *base = NULL;
1582         struct path path;
1583         int err;
1584
1585         /*
1586          * Path walking is largely split up into 2 different synchronisation
1587          * schemes, rcu-walk and ref-walk (explained in
1588          * Documentation/filesystems/path-lookup.txt). These share much of the
1589          * path walk code, but some things particularly setup, cleanup, and
1590          * following mounts are sufficiently divergent that functions are
1591          * duplicated. Typically there is a function foo(), and its RCU
1592          * analogue, foo_rcu().
1593          *
1594          * -ECHILD is the error number of choice (just to avoid clashes) that
1595          * is returned if some aspect of an rcu-walk fails. Such an error must
1596          * be handled by restarting a traditional ref-walk (which will always
1597          * be able to complete).
1598          */
1599         err = path_init(dfd, name, flags | LOOKUP_PARENT, nd, &base);
1600
1601         if (unlikely(err))
1602                 return err;
1603
1604         current->total_link_count = 0;
1605         err = link_path_walk(name, nd);
1606
1607         if (!err && !(flags & LOOKUP_PARENT)) {
1608                 err = lookup_last(nd, &path);
1609                 while (err > 0) {
1610                         void *cookie;
1611                         struct path link = path;
1612                         nd->flags |= LOOKUP_PARENT;
1613                         err = follow_link(&link, nd, &cookie);
1614                         if (!err)
1615                                 err = lookup_last(nd, &path);
1616                         put_link(nd, &link, cookie);
1617                 }
1618         }
1619
1620         if (!err)
1621                 err = complete_walk(nd);
1622
1623         if (!err && nd->flags & LOOKUP_DIRECTORY) {
1624                 if (!nd->inode->i_op->lookup) {
1625                         path_put(&nd->path);
1626                         err = -ENOTDIR;
1627                 }
1628         }
1629
1630         if (base)
1631                 fput(base);
1632
1633         if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT)) {
1634                 path_put(&nd->root);
1635                 nd->root.mnt = NULL;
1636         }
1637         return err;
1638 }
1639
1640 static int do_path_lookup(int dfd, const char *name,
1641                                 unsigned int flags, struct nameidata *nd)
1642 {
1643         int retval = path_lookupat(dfd, name, flags | LOOKUP_RCU, nd);
1644         if (unlikely(retval == -ECHILD))
1645                 retval = path_lookupat(dfd, name, flags, nd);
1646         if (unlikely(retval == -ESTALE))
1647                 retval = path_lookupat(dfd, name, flags | LOOKUP_REVAL, nd);
1648
1649         if (likely(!retval)) {
1650                 if (unlikely(!audit_dummy_context())) {
1651                         if (nd->path.dentry && nd->inode)
1652                                 audit_inode(name, nd->path.dentry);
1653                 }
1654         }
1655         return retval;
1656 }
1657
1658 int kern_path_parent(const char *name, struct nameidata *nd)
1659 {
1660         return do_path_lookup(AT_FDCWD, name, LOOKUP_PARENT, nd);
1661 }
1662
1663 int kern_path(const char *name, unsigned int flags, struct path *path)
1664 {
1665         struct nameidata nd;
1666         int res = do_path_lookup(AT_FDCWD, name, flags, &nd);
1667         if (!res)
1668                 *path = nd.path;
1669         return res;
1670 }
1671
1672 /**
1673  * vfs_path_lookup - lookup a file path relative to a dentry-vfsmount pair
1674  * @dentry:  pointer to dentry of the base directory
1675  * @mnt: pointer to vfs mount of the base directory
1676  * @name: pointer to file name
1677  * @flags: lookup flags
1678  * @path: pointer to struct path to fill
1679  */
1680 int vfs_path_lookup(struct dentry *dentry, struct vfsmount *mnt,
1681                     const char *name, unsigned int flags,
1682                     struct path *path)
1683 {
1684         struct nameidata nd;
1685         int err;
1686         nd.root.dentry = dentry;
1687         nd.root.mnt = mnt;
1688         BUG_ON(flags & LOOKUP_PARENT);
1689         /* the first argument of do_path_lookup() is ignored with LOOKUP_ROOT */
1690         err = do_path_lookup(AT_FDCWD, name, flags | LOOKUP_ROOT, &nd);
1691         if (!err)
1692                 *path = nd.path;
1693         return err;
1694 }
1695
1696 static struct dentry *__lookup_hash(struct qstr *name,
1697                 struct dentry *base, struct nameidata *nd)
1698 {
1699         struct inode *inode = base->d_inode;
1700         struct dentry *dentry;
1701         int err;
1702
1703         err = inode_permission(inode, MAY_EXEC);
1704         if (err)
1705                 return ERR_PTR(err);
1706
1707         /*
1708          * Don't bother with __d_lookup: callers are for creat as
1709          * well as unlink, so a lot of the time it would cost
1710          * a double lookup.
1711          */
1712         dentry = d_lookup(base, name);
1713
1714         if (dentry && d_need_lookup(dentry)) {
1715                 /*
1716                  * __lookup_hash is called with the parent dir's i_mutex already
1717                  * held, so we are good to go here.
1718                  */
1719                 dentry = d_inode_lookup(base, dentry, nd);
1720                 if (IS_ERR(dentry))
1721                         return dentry;
1722         }
1723
1724         if (dentry && (dentry->d_flags & DCACHE_OP_REVALIDATE)) {
1725                 int status = d_revalidate(dentry, nd);
1726                 if (unlikely(status <= 0)) {
1727                         /*
1728                          * The dentry failed validation.
1729                          * If d_revalidate returned 0 attempt to invalidate
1730                          * the dentry otherwise d_revalidate is asking us
1731                          * to return a fail status.
1732                          */
1733                         if (status < 0) {
1734                                 dput(dentry);
1735                                 return ERR_PTR(status);
1736                         } else if (!d_invalidate(dentry)) {
1737                                 dput(dentry);
1738                                 dentry = NULL;
1739                         }
1740                 }
1741         }
1742
1743         if (!dentry)
1744                 dentry = d_alloc_and_lookup(base, name, nd);
1745
1746         return dentry;
1747 }
1748
1749 /*
1750  * Restricted form of lookup. Doesn't follow links, single-component only,
1751  * needs parent already locked. Doesn't follow mounts.
1752  * SMP-safe.
1753  */
1754 static struct dentry *lookup_hash(struct nameidata *nd)
1755 {
1756         return __lookup_hash(&nd->last, nd->path.dentry, nd);
1757 }
1758
1759 /**
1760  * lookup_one_len - filesystem helper to lookup single pathname component
1761  * @name:       pathname component to lookup
1762  * @base:       base directory to lookup from
1763  * @len:        maximum length @len should be interpreted to
1764  *
1765  * Note that this routine is purely a helper for filesystem usage and should
1766  * not be called by generic code.  Also note that by using this function the
1767  * nameidata argument is passed to the filesystem methods and a filesystem
1768  * using this helper needs to be prepared for that.
1769  */
1770 struct dentry *lookup_one_len(const char *name, struct dentry *base, int len)
1771 {
1772         struct qstr this;
1773         unsigned long hash;
1774         unsigned int c;
1775
1776         WARN_ON_ONCE(!mutex_is_locked(&base->d_inode->i_mutex));
1777
1778         this.name = name;
1779         this.len = len;
1780         if (!len)
1781                 return ERR_PTR(-EACCES);
1782
1783         hash = init_name_hash();
1784         while (len--) {
1785                 c = *(const unsigned char *)name++;
1786                 if (c == '/' || c == '\0')
1787                         return ERR_PTR(-EACCES);
1788                 hash = partial_name_hash(c, hash);
1789         }
1790         this.hash = end_name_hash(hash);
1791         /*
1792          * See if the low-level filesystem might want
1793          * to use its own hash..
1794          */
1795         if (base->d_flags & DCACHE_OP_HASH) {
1796                 int err = base->d_op->d_hash(base, base->d_inode, &this);
1797                 if (err < 0)
1798                         return ERR_PTR(err);
1799         }
1800
1801         return __lookup_hash(&this, base, NULL);
1802 }
1803
1804 int user_path_at_empty(int dfd, const char __user *name, unsigned flags,
1805                  struct path *path, int *empty)
1806 {
1807         struct nameidata nd;
1808         char *tmp = getname_flags(name, flags, empty);
1809         int err = PTR_ERR(tmp);
1810         if (!IS_ERR(tmp)) {
1811
1812                 BUG_ON(flags & LOOKUP_PARENT);
1813
1814                 err = do_path_lookup(dfd, tmp, flags, &nd);
1815                 putname(tmp);
1816                 if (!err)
1817                         *path = nd.path;
1818         }
1819         return err;
1820 }
1821
1822 int user_path_at(int dfd, const char __user *name, unsigned flags,
1823                  struct path *path)
1824 {
1825         return user_path_at_empty(dfd, name, flags, path, 0);
1826 }
1827
1828 static int user_path_parent(int dfd, const char __user *path,
1829                         struct nameidata *nd, char **name)
1830 {
1831         char *s = getname(path);
1832         int error;
1833
1834         if (IS_ERR(s))
1835                 return PTR_ERR(s);
1836
1837         error = do_path_lookup(dfd, s, LOOKUP_PARENT, nd);
1838         if (error)
1839                 putname(s);
1840         else
1841                 *name = s;
1842
1843         return error;
1844 }
1845
1846 /*
1847  * It's inline, so penalty for filesystems that don't use sticky bit is
1848  * minimal.
1849  */
1850 static inline int check_sticky(struct inode *dir, struct inode *inode)
1851 {
1852         uid_t fsuid = current_fsuid();
1853
1854         if (!(dir->i_mode & S_ISVTX))
1855                 return 0;
1856         if (current_user_ns() != inode_userns(inode))
1857                 goto other_userns;
1858         if (inode->i_uid == fsuid)
1859                 return 0;
1860         if (dir->i_uid == fsuid)
1861                 return 0;
1862
1863 other_userns:
1864         return !ns_capable(inode_userns(inode), CAP_FOWNER);
1865 }
1866
1867 /*
1868  *      Check whether we can remove a link victim from directory dir, check
1869  *  whether the type of victim is right.
1870  *  1. We can't do it if dir is read-only (done in permission())
1871  *  2. We should have write and exec permissions on dir
1872  *  3. We can't remove anything from append-only dir
1873  *  4. We can't do anything with immutable dir (done in permission())
1874  *  5. If the sticky bit on dir is set we should either
1875  *      a. be owner of dir, or
1876  *      b. be owner of victim, or
1877  *      c. have CAP_FOWNER capability
1878  *  6. If the victim is append-only or immutable we can't do antyhing with
1879  *     links pointing to it.
1880  *  7. If we were asked to remove a directory and victim isn't one - ENOTDIR.
1881  *  8. If we were asked to remove a non-directory and victim isn't one - EISDIR.
1882  *  9. We can't remove a root or mountpoint.
1883  * 10. We don't allow removal of NFS sillyrenamed files; it's handled by
1884  *     nfs_async_unlink().
1885  */
1886 static int may_delete(struct inode *dir,struct dentry *victim,int isdir)
1887 {
1888         int error;
1889
1890         if (!victim->d_inode)
1891                 return -ENOENT;
1892
1893         BUG_ON(victim->d_parent->d_inode != dir);
1894         audit_inode_child(victim, dir);
1895
1896         error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
1897         if (error)
1898                 return error;
1899         if (IS_APPEND(dir))
1900                 return -EPERM;
1901         if (check_sticky(dir, victim->d_inode)||IS_APPEND(victim->d_inode)||
1902             IS_IMMUTABLE(victim->d_inode) || IS_SWAPFILE(victim->d_inode))
1903                 return -EPERM;
1904         if (isdir) {
1905                 if (!S_ISDIR(victim->d_inode->i_mode))
1906                         return -ENOTDIR;
1907                 if (IS_ROOT(victim))
1908                         return -EBUSY;
1909         } else if (S_ISDIR(victim->d_inode->i_mode))
1910                 return -EISDIR;
1911         if (IS_DEADDIR(dir))
1912                 return -ENOENT;
1913         if (victim->d_flags & DCACHE_NFSFS_RENAMED)
1914                 return -EBUSY;
1915         return 0;
1916 }
1917
1918 /*      Check whether we can create an object with dentry child in directory
1919  *  dir.
1920  *  1. We can't do it if child already exists (open has special treatment for
1921  *     this case, but since we are inlined it's OK)
1922  *  2. We can't do it if dir is read-only (done in permission())
1923  *  3. We should have write and exec permissions on dir
1924  *  4. We can't do it if dir is immutable (done in permission())
1925  */
1926 static inline int may_create(struct inode *dir, struct dentry *child)
1927 {
1928         if (child->d_inode)
1929                 return -EEXIST;
1930         if (IS_DEADDIR(dir))
1931                 return -ENOENT;
1932         return inode_permission(dir, MAY_WRITE | MAY_EXEC);
1933 }
1934
1935 /*
1936  * p1 and p2 should be directories on the same fs.
1937  */
1938 struct dentry *lock_rename(struct dentry *p1, struct dentry *p2)
1939 {
1940         struct dentry *p;
1941
1942         if (p1 == p2) {
1943                 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
1944                 return NULL;
1945         }
1946
1947         mutex_lock(&p1->d_inode->i_sb->s_vfs_rename_mutex);
1948
1949         p = d_ancestor(p2, p1);
1950         if (p) {
1951                 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_PARENT);
1952                 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_CHILD);
1953                 return p;
1954         }
1955
1956         p = d_ancestor(p1, p2);
1957         if (p) {
1958                 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
1959                 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_CHILD);
1960                 return p;
1961         }
1962
1963         mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
1964         mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_CHILD);
1965         return NULL;
1966 }
1967
1968 void unlock_rename(struct dentry *p1, struct dentry *p2)
1969 {
1970         mutex_unlock(&p1->d_inode->i_mutex);
1971         if (p1 != p2) {
1972                 mutex_unlock(&p2->d_inode->i_mutex);
1973                 mutex_unlock(&p1->d_inode->i_sb->s_vfs_rename_mutex);
1974         }
1975 }
1976
1977 int vfs_create(struct inode *dir, struct dentry *dentry, int mode,
1978                 struct nameidata *nd)
1979 {
1980         int error = may_create(dir, dentry);
1981
1982         if (error)
1983                 return error;
1984
1985         if (!dir->i_op->create)
1986                 return -EACCES; /* shouldn't it be ENOSYS? */
1987         mode &= S_IALLUGO;
1988         mode |= S_IFREG;
1989         error = security_inode_create(dir, dentry, mode);
1990         if (error)
1991                 return error;
1992         error = dir->i_op->create(dir, dentry, mode, nd);
1993         if (!error)
1994                 fsnotify_create(dir, dentry);
1995         return error;
1996 }
1997
1998 static int may_open(struct path *path, int acc_mode, int flag)
1999 {
2000         struct dentry *dentry = path->dentry;
2001         struct inode *inode = dentry->d_inode;
2002         int error;
2003
2004         /* O_PATH? */
2005         if (!acc_mode)
2006                 return 0;
2007
2008         if (!inode)
2009                 return -ENOENT;
2010
2011         switch (inode->i_mode & S_IFMT) {
2012         case S_IFLNK:
2013                 return -ELOOP;
2014         case S_IFDIR:
2015                 if (acc_mode & MAY_WRITE)
2016                         return -EISDIR;
2017                 break;
2018         case S_IFBLK:
2019         case S_IFCHR:
2020                 if (path->mnt->mnt_flags & MNT_NODEV)
2021                         return -EACCES;
2022                 /*FALLTHRU*/
2023         case S_IFIFO:
2024         case S_IFSOCK:
2025                 flag &= ~O_TRUNC;
2026                 break;
2027         }
2028
2029         error = inode_permission(inode, acc_mode);
2030         if (error)
2031                 return error;
2032
2033         /*
2034          * An append-only file must be opened in append mode for writing.
2035          */
2036         if (IS_APPEND(inode)) {
2037                 if  ((flag & O_ACCMODE) != O_RDONLY && !(flag & O_APPEND))
2038                         return -EPERM;
2039                 if (flag & O_TRUNC)
2040                         return -EPERM;
2041         }
2042
2043         /* O_NOATIME can only be set by the owner or superuser */
2044         if (flag & O_NOATIME && !inode_owner_or_capable(inode))
2045                 return -EPERM;
2046
2047         return 0;
2048 }
2049
2050 static int handle_truncate(struct file *filp)
2051 {
2052         struct path *path = &filp->f_path;
2053         struct inode *inode = path->dentry->d_inode;
2054         int error = get_write_access(inode);
2055         if (error)
2056                 return error;
2057         /*
2058          * Refuse to truncate files with mandatory locks held on them.
2059          */
2060         error = locks_verify_locked(inode);
2061         if (!error)
2062                 error = security_path_truncate(path);
2063         if (!error) {
2064                 error = do_truncate(path->dentry, 0,
2065                                     ATTR_MTIME|ATTR_CTIME|ATTR_OPEN,
2066                                     filp);
2067         }
2068         put_write_access(inode);
2069         return error;
2070 }
2071
2072 static inline int open_to_namei_flags(int flag)
2073 {
2074         if ((flag & O_ACCMODE) == 3)
2075                 flag--;
2076         return flag;
2077 }
2078
2079 /*
2080  * Handle the last step of open()
2081  */
2082 static struct file *do_last(struct nameidata *nd, struct path *path,
2083                             const struct open_flags *op, const char *pathname)
2084 {
2085         struct dentry *dir = nd->path.dentry;
2086         struct dentry *dentry;
2087         int open_flag = op->open_flag;
2088         int will_truncate = open_flag & O_TRUNC;
2089         int want_write = 0;
2090         int acc_mode = op->acc_mode;
2091         struct file *filp;
2092         int error;
2093
2094         nd->flags &= ~LOOKUP_PARENT;
2095         nd->flags |= op->intent;
2096
2097         switch (nd->last_type) {
2098         case LAST_DOTDOT:
2099         case LAST_DOT:
2100                 error = handle_dots(nd, nd->last_type);
2101                 if (error)
2102                         return ERR_PTR(error);
2103                 /* fallthrough */
2104         case LAST_ROOT:
2105                 error = complete_walk(nd);
2106                 if (error)
2107                         return ERR_PTR(error);
2108                 audit_inode(pathname, nd->path.dentry);
2109                 if (open_flag & O_CREAT) {
2110                         error = -EISDIR;
2111                         goto exit;
2112                 }
2113                 goto ok;
2114         case LAST_BIND:
2115                 error = complete_walk(nd);
2116                 if (error)
2117                         return ERR_PTR(error);
2118                 audit_inode(pathname, dir);
2119                 goto ok;
2120         }
2121
2122         if (!(open_flag & O_CREAT)) {
2123                 int symlink_ok = 0;
2124                 if (nd->last.name[nd->last.len])
2125                         nd->flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
2126                 if (open_flag & O_PATH && !(nd->flags & LOOKUP_FOLLOW))
2127                         symlink_ok = 1;
2128                 /* we _can_ be in RCU mode here */
2129                 error = walk_component(nd, path, &nd->last, LAST_NORM,
2130                                         !symlink_ok);
2131                 if (error < 0)
2132                         return ERR_PTR(error);
2133                 if (error) /* symlink */
2134                         return NULL;
2135                 /* sayonara */
2136                 error = complete_walk(nd);
2137                 if (error)
2138                         return ERR_PTR(error);
2139
2140                 error = -ENOTDIR;
2141                 if (nd->flags & LOOKUP_DIRECTORY) {
2142                         if (!nd->inode->i_op->lookup)
2143                                 goto exit;
2144                 }
2145                 audit_inode(pathname, nd->path.dentry);
2146                 goto ok;
2147         }
2148
2149         /* create side of things */
2150         /*
2151          * This will *only* deal with leaving RCU mode - LOOKUP_JUMPED has been
2152          * cleared when we got to the last component we are about to look up
2153          */
2154         error = complete_walk(nd);
2155         if (error)
2156                 return ERR_PTR(error);
2157
2158         audit_inode(pathname, dir);
2159         error = -EISDIR;
2160         /* trailing slashes? */
2161         if (nd->last.name[nd->last.len])
2162                 goto exit;
2163
2164         mutex_lock(&dir->d_inode->i_mutex);
2165
2166         dentry = lookup_hash(nd);
2167         error = PTR_ERR(dentry);
2168         if (IS_ERR(dentry)) {
2169                 mutex_unlock(&dir->d_inode->i_mutex);
2170                 goto exit;
2171         }
2172
2173         path->dentry = dentry;
2174         path->mnt = nd->path.mnt;
2175
2176         /* Negative dentry, just create the file */
2177         if (!dentry->d_inode) {
2178                 int mode = op->mode;
2179                 if (!IS_POSIXACL(dir->d_inode))
2180                         mode &= ~current_umask();
2181                 /*
2182                  * This write is needed to ensure that a
2183                  * rw->ro transition does not occur between
2184                  * the time when the file is created and when
2185                  * a permanent write count is taken through
2186                  * the 'struct file' in nameidata_to_filp().
2187                  */
2188                 error = mnt_want_write(nd->path.mnt);
2189                 if (error)
2190                         goto exit_mutex_unlock;
2191                 want_write = 1;
2192                 /* Don't check for write permission, don't truncate */
2193                 open_flag &= ~O_TRUNC;
2194                 will_truncate = 0;
2195                 acc_mode = MAY_OPEN;
2196                 error = security_path_mknod(&nd->path, dentry, mode, 0);
2197                 if (error)
2198                         goto exit_mutex_unlock;
2199                 error = vfs_create(dir->d_inode, dentry, mode, nd);
2200                 if (error)
2201                         goto exit_mutex_unlock;
2202                 mutex_unlock(&dir->d_inode->i_mutex);
2203                 dput(nd->path.dentry);
2204                 nd->path.dentry = dentry;
2205                 goto common;
2206         }
2207
2208         /*
2209          * It already exists.
2210          */
2211         mutex_unlock(&dir->d_inode->i_mutex);
2212         audit_inode(pathname, path->dentry);
2213
2214         error = -EEXIST;
2215         if (open_flag & O_EXCL)
2216                 goto exit_dput;
2217
2218         error = follow_managed(path, nd->flags);
2219         if (error < 0)
2220                 goto exit_dput;
2221
2222         if (error)
2223                 nd->flags |= LOOKUP_JUMPED;
2224
2225         error = -ENOENT;
2226         if (!path->dentry->d_inode)
2227                 goto exit_dput;
2228
2229         if (path->dentry->d_inode->i_op->follow_link)
2230                 return NULL;
2231
2232         path_to_nameidata(path, nd);
2233         nd->inode = path->dentry->d_inode;
2234         /* Why this, you ask?  _Now_ we might have grown LOOKUP_JUMPED... */
2235         error = complete_walk(nd);
2236         if (error)
2237                 return ERR_PTR(error);
2238         error = -EISDIR;
2239         if (S_ISDIR(nd->inode->i_mode))
2240                 goto exit;
2241 ok:
2242         if (!S_ISREG(nd->inode->i_mode))
2243                 will_truncate = 0;
2244
2245         if (will_truncate) {
2246                 error = mnt_want_write(nd->path.mnt);
2247                 if (error)
2248                         goto exit;
2249                 want_write = 1;
2250         }
2251 common:
2252         error = may_open(&nd->path, acc_mode, open_flag);
2253         if (error)
2254                 goto exit;
2255         filp = nameidata_to_filp(nd);
2256         if (!IS_ERR(filp)) {
2257                 error = ima_file_check(filp, op->acc_mode);
2258                 if (error) {
2259                         fput(filp);
2260                         filp = ERR_PTR(error);
2261                 }
2262         }
2263         if (!IS_ERR(filp)) {
2264                 if (will_truncate) {
2265                         error = handle_truncate(filp);
2266                         if (error) {
2267                                 fput(filp);
2268                                 filp = ERR_PTR(error);
2269                         }
2270                 }
2271         }
2272 out:
2273         if (want_write)
2274                 mnt_drop_write(nd->path.mnt);
2275         path_put(&nd->path);
2276         return filp;
2277
2278 exit_mutex_unlock:
2279         mutex_unlock(&dir->d_inode->i_mutex);
2280 exit_dput:
2281         path_put_conditional(path, nd);
2282 exit:
2283         filp = ERR_PTR(error);
2284         goto out;
2285 }
2286
2287 static struct file *path_openat(int dfd, const char *pathname,
2288                 struct nameidata *nd, const struct open_flags *op, int flags)
2289 {
2290         struct file *base = NULL;
2291         struct file *filp;
2292         struct path path;
2293         int error;
2294
2295         filp = get_empty_filp();
2296         if (!filp)
2297                 return ERR_PTR(-ENFILE);
2298
2299         filp->f_flags = op->open_flag;
2300         nd->intent.open.file = filp;
2301         nd->intent.open.flags = open_to_namei_flags(op->open_flag);
2302         nd->intent.open.create_mode = op->mode;
2303
2304         error = path_init(dfd, pathname, flags | LOOKUP_PARENT, nd, &base);
2305         if (unlikely(error))
2306                 goto out_filp;
2307
2308         current->total_link_count = 0;
2309         error = link_path_walk(pathname, nd);
2310         if (unlikely(error))
2311                 goto out_filp;
2312
2313         filp = do_last(nd, &path, op, pathname);
2314         while (unlikely(!filp)) { /* trailing symlink */
2315                 struct path link = path;
2316                 void *cookie;
2317                 if (!(nd->flags & LOOKUP_FOLLOW)) {
2318                         path_put_conditional(&path, nd);
2319                         path_put(&nd->path);
2320                         filp = ERR_PTR(-ELOOP);
2321                         break;
2322                 }
2323                 nd->flags |= LOOKUP_PARENT;
2324                 nd->flags &= ~(LOOKUP_OPEN|LOOKUP_CREATE|LOOKUP_EXCL);
2325                 error = follow_link(&link, nd, &cookie);
2326                 if (unlikely(error))
2327                         filp = ERR_PTR(error);
2328                 else
2329                         filp = do_last(nd, &path, op, pathname);
2330                 put_link(nd, &link, cookie);
2331         }
2332 out:
2333         if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT))
2334                 path_put(&nd->root);
2335         if (base)
2336                 fput(base);
2337         release_open_intent(nd);
2338         return filp;
2339
2340 out_filp:
2341         filp = ERR_PTR(error);
2342         goto out;
2343 }
2344
2345 struct file *do_filp_open(int dfd, const char *pathname,
2346                 const struct open_flags *op, int flags)
2347 {
2348         struct nameidata nd;
2349         struct file *filp;
2350
2351         filp = path_openat(dfd, pathname, &nd, op, flags | LOOKUP_RCU);
2352         if (unlikely(filp == ERR_PTR(-ECHILD)))
2353                 filp = path_openat(dfd, pathname, &nd, op, flags);
2354         if (unlikely(filp == ERR_PTR(-ESTALE)))
2355                 filp = path_openat(dfd, pathname, &nd, op, flags | LOOKUP_REVAL);
2356         return filp;
2357 }
2358
2359 struct file *do_file_open_root(struct dentry *dentry, struct vfsmount *mnt,
2360                 const char *name, const struct open_flags *op, int flags)
2361 {
2362         struct nameidata nd;
2363         struct file *file;
2364
2365         nd.root.mnt = mnt;
2366         nd.root.dentry = dentry;
2367
2368         flags |= LOOKUP_ROOT;
2369
2370         if (dentry->d_inode->i_op->follow_link && op->intent & LOOKUP_OPEN)
2371                 return ERR_PTR(-ELOOP);
2372
2373         file = path_openat(-1, name, &nd, op, flags | LOOKUP_RCU);
2374         if (unlikely(file == ERR_PTR(-ECHILD)))
2375                 file = path_openat(-1, name, &nd, op, flags);
2376         if (unlikely(file == ERR_PTR(-ESTALE)))
2377                 file = path_openat(-1, name, &nd, op, flags | LOOKUP_REVAL);
2378         return file;
2379 }
2380
2381 struct dentry *kern_path_create(int dfd, const char *pathname, struct path *path, int is_dir)
2382 {
2383         struct dentry *dentry = ERR_PTR(-EEXIST);
2384         struct nameidata nd;
2385         int error = do_path_lookup(dfd, pathname, LOOKUP_PARENT, &nd);
2386         if (error)
2387                 return ERR_PTR(error);
2388
2389         /*
2390          * Yucky last component or no last component at all?
2391          * (foo/., foo/.., /////)
2392          */
2393         if (nd.last_type != LAST_NORM)
2394                 goto out;
2395         nd.flags &= ~LOOKUP_PARENT;
2396         nd.flags |= LOOKUP_CREATE | LOOKUP_EXCL;
2397         nd.intent.open.flags = O_EXCL;
2398
2399         /*
2400          * Do the final lookup.
2401          */
2402         mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
2403         dentry = lookup_hash(&nd);
2404         if (IS_ERR(dentry))
2405                 goto fail;
2406
2407         if (dentry->d_inode)
2408                 goto eexist;
2409         /*
2410          * Special case - lookup gave negative, but... we had foo/bar/
2411          * From the vfs_mknod() POV we just have a negative dentry -
2412          * all is fine. Let's be bastards - you had / on the end, you've
2413          * been asking for (non-existent) directory. -ENOENT for you.
2414          */
2415         if (unlikely(!is_dir && nd.last.name[nd.last.len])) {
2416                 dput(dentry);
2417                 dentry = ERR_PTR(-ENOENT);
2418                 goto fail;
2419         }
2420         *path = nd.path;
2421         return dentry;
2422 eexist:
2423         dput(dentry);
2424         dentry = ERR_PTR(-EEXIST);
2425 fail:
2426         mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
2427 out:
2428         path_put(&nd.path);
2429         return dentry;
2430 }
2431 EXPORT_SYMBOL(kern_path_create);
2432
2433 struct dentry *user_path_create(int dfd, const char __user *pathname, struct path *path, int is_dir)
2434 {
2435         char *tmp = getname(pathname);
2436         struct dentry *res;
2437         if (IS_ERR(tmp))
2438                 return ERR_CAST(tmp);
2439         res = kern_path_create(dfd, tmp, path, is_dir);
2440         putname(tmp);
2441         return res;
2442 }
2443 EXPORT_SYMBOL(user_path_create);
2444
2445 int vfs_mknod(struct inode *dir, struct dentry *dentry, int mode, dev_t dev)
2446 {
2447         int error = may_create(dir, dentry);
2448
2449         if (error)
2450                 return error;
2451
2452         if ((S_ISCHR(mode) || S_ISBLK(mode)) &&
2453             !ns_capable(inode_userns(dir), CAP_MKNOD))
2454                 return -EPERM;
2455
2456         if (!dir->i_op->mknod)
2457                 return -EPERM;
2458
2459         error = devcgroup_inode_mknod(mode, dev);
2460         if (error)
2461                 return error;
2462
2463         error = security_inode_mknod(dir, dentry, mode, dev);
2464         if (error)
2465                 return error;
2466
2467         error = dir->i_op->mknod(dir, dentry, mode, dev);
2468         if (!error)
2469                 fsnotify_create(dir, dentry);
2470         return error;
2471 }
2472
2473 static int may_mknod(mode_t mode)
2474 {
2475         switch (mode & S_IFMT) {
2476         case S_IFREG:
2477         case S_IFCHR:
2478         case S_IFBLK:
2479         case S_IFIFO:
2480         case S_IFSOCK:
2481         case 0: /* zero mode translates to S_IFREG */
2482                 return 0;
2483         case S_IFDIR:
2484                 return -EPERM;
2485         default:
2486                 return -EINVAL;
2487         }
2488 }
2489
2490 SYSCALL_DEFINE4(mknodat, int, dfd, const char __user *, filename, int, mode,
2491                 unsigned, dev)
2492 {
2493         struct dentry *dentry;
2494         struct path path;
2495         int error;
2496
2497         if (S_ISDIR(mode))
2498                 return -EPERM;
2499
2500         dentry = user_path_create(dfd, filename, &path, 0);
2501         if (IS_ERR(dentry))
2502                 return PTR_ERR(dentry);
2503
2504         if (!IS_POSIXACL(path.dentry->d_inode))
2505                 mode &= ~current_umask();
2506         error = may_mknod(mode);
2507         if (error)
2508                 goto out_dput;
2509         error = mnt_want_write(path.mnt);
2510         if (error)
2511                 goto out_dput;
2512         error = security_path_mknod(&path, dentry, mode, dev);
2513         if (error)
2514                 goto out_drop_write;
2515         switch (mode & S_IFMT) {
2516                 case 0: case S_IFREG:
2517                         error = vfs_create(path.dentry->d_inode,dentry,mode,NULL);
2518                         break;
2519                 case S_IFCHR: case S_IFBLK:
2520                         error = vfs_mknod(path.dentry->d_inode,dentry,mode,
2521                                         new_decode_dev(dev));
2522                         break;
2523                 case S_IFIFO: case S_IFSOCK:
2524                         error = vfs_mknod(path.dentry->d_inode,dentry,mode,0);
2525                         break;
2526         }
2527 out_drop_write:
2528         mnt_drop_write(path.mnt);
2529 out_dput:
2530         dput(dentry);
2531         mutex_unlock(&path.dentry->d_inode->i_mutex);
2532         path_put(&path);
2533
2534         return error;
2535 }
2536
2537 SYSCALL_DEFINE3(mknod, const char __user *, filename, int, mode, unsigned, dev)
2538 {
2539         return sys_mknodat(AT_FDCWD, filename, mode, dev);
2540 }
2541
2542 int vfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
2543 {
2544         int error = may_create(dir, dentry);
2545
2546         if (error)
2547                 return error;
2548
2549         if (!dir->i_op->mkdir)
2550                 return -EPERM;
2551
2552         mode &= (S_IRWXUGO|S_ISVTX);
2553         error = security_inode_mkdir(dir, dentry, mode);
2554         if (error)
2555                 return error;
2556
2557         error = dir->i_op->mkdir(dir, dentry, mode);
2558         if (!error)
2559                 fsnotify_mkdir(dir, dentry);
2560         return error;
2561 }
2562
2563 SYSCALL_DEFINE3(mkdirat, int, dfd, const char __user *, pathname, int, mode)
2564 {
2565         struct dentry *dentry;
2566         struct path path;
2567         int error;
2568
2569         dentry = user_path_create(dfd, pathname, &path, 1);
2570         if (IS_ERR(dentry))
2571                 return PTR_ERR(dentry);
2572
2573         if (!IS_POSIXACL(path.dentry->d_inode))
2574                 mode &= ~current_umask();
2575         error = mnt_want_write(path.mnt);
2576         if (error)
2577                 goto out_dput;
2578         error = security_path_mkdir(&path, dentry, mode);
2579         if (error)
2580                 goto out_drop_write;
2581         error = vfs_mkdir(path.dentry->d_inode, dentry, mode);
2582 out_drop_write:
2583         mnt_drop_write(path.mnt);
2584 out_dput:
2585         dput(dentry);
2586         mutex_unlock(&path.dentry->d_inode->i_mutex);
2587         path_put(&path);
2588         return error;
2589 }
2590
2591 SYSCALL_DEFINE2(mkdir, const char __user *, pathname, int, mode)
2592 {
2593         return sys_mkdirat(AT_FDCWD, pathname, mode);
2594 }
2595
2596 /*
2597  * The dentry_unhash() helper will try to drop the dentry early: we
2598  * should have a usage count of 2 if we're the only user of this
2599  * dentry, and if that is true (possibly after pruning the dcache),
2600  * then we drop the dentry now.
2601  *
2602  * A low-level filesystem can, if it choses, legally
2603  * do a
2604  *
2605  *      if (!d_unhashed(dentry))
2606  *              return -EBUSY;
2607  *
2608  * if it cannot handle the case of removing a directory
2609  * that is still in use by something else..
2610  */
2611 void dentry_unhash(struct dentry *dentry)
2612 {
2613         shrink_dcache_parent(dentry);
2614         spin_lock(&dentry->d_lock);
2615         if (dentry->d_count == 1)
2616                 __d_drop(dentry);
2617         spin_unlock(&dentry->d_lock);
2618 }
2619
2620 int vfs_rmdir(struct inode *dir, struct dentry *dentry)
2621 {
2622         int error = may_delete(dir, dentry, 1);
2623
2624         if (error)
2625                 return error;
2626
2627         if (!dir->i_op->rmdir)
2628                 return -EPERM;
2629
2630         dget(dentry);
2631         mutex_lock(&dentry->d_inode->i_mutex);
2632
2633         error = -EBUSY;
2634         if (d_mountpoint(dentry))
2635                 goto out;
2636
2637         error = security_inode_rmdir(dir, dentry);
2638         if (error)
2639                 goto out;
2640
2641         shrink_dcache_parent(dentry);
2642         error = dir->i_op->rmdir(dir, dentry);
2643         if (error)
2644                 goto out;
2645
2646         dentry->d_inode->i_flags |= S_DEAD;
2647         dont_mount(dentry);
2648
2649 out:
2650         mutex_unlock(&dentry->d_inode->i_mutex);
2651         dput(dentry);
2652         if (!error)
2653                 d_delete(dentry);
2654         return error;
2655 }
2656
2657 static long do_rmdir(int dfd, const char __user *pathname)
2658 {
2659         int error = 0;
2660         char * name;
2661         struct dentry *dentry;
2662         struct nameidata nd;
2663
2664         error = user_path_parent(dfd, pathname, &nd, &name);
2665         if (error)
2666                 return error;
2667
2668         switch(nd.last_type) {
2669         case LAST_DOTDOT:
2670                 error = -ENOTEMPTY;
2671                 goto exit1;
2672         case LAST_DOT:
2673                 error = -EINVAL;
2674                 goto exit1;
2675         case LAST_ROOT:
2676                 error = -EBUSY;
2677                 goto exit1;
2678         }
2679
2680         nd.flags &= ~LOOKUP_PARENT;
2681
2682         mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
2683         dentry = lookup_hash(&nd);
2684         error = PTR_ERR(dentry);
2685         if (IS_ERR(dentry))
2686                 goto exit2;
2687         if (!dentry->d_inode) {
2688                 error = -ENOENT;
2689                 goto exit3;
2690         }
2691         error = mnt_want_write(nd.path.mnt);
2692         if (error)
2693                 goto exit3;
2694         error = security_path_rmdir(&nd.path, dentry);
2695         if (error)
2696                 goto exit4;
2697         error = vfs_rmdir(nd.path.dentry->d_inode, dentry);
2698 exit4:
2699         mnt_drop_write(nd.path.mnt);
2700 exit3:
2701         dput(dentry);
2702 exit2:
2703         mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
2704 exit1:
2705         path_put(&nd.path);
2706         putname(name);
2707         return error;
2708 }
2709
2710 SYSCALL_DEFINE1(rmdir, const char __user *, pathname)
2711 {
2712         return do_rmdir(AT_FDCWD, pathname);
2713 }
2714
2715 int vfs_unlink(struct inode *dir, struct dentry *dentry)
2716 {
2717         int error = may_delete(dir, dentry, 0);
2718
2719         if (error)
2720                 return error;
2721
2722         if (!dir->i_op->unlink)
2723                 return -EPERM;
2724
2725         mutex_lock(&dentry->d_inode->i_mutex);
2726         if (d_mountpoint(dentry))
2727                 error = -EBUSY;
2728         else {
2729                 error = security_inode_unlink(dir, dentry);
2730                 if (!error) {
2731                         error = dir->i_op->unlink(dir, dentry);
2732                         if (!error)
2733                                 dont_mount(dentry);
2734                 }
2735         }
2736         mutex_unlock(&dentry->d_inode->i_mutex);
2737
2738         /* We don't d_delete() NFS sillyrenamed files--they still exist. */
2739         if (!error && !(dentry->d_flags & DCACHE_NFSFS_RENAMED)) {
2740                 fsnotify_link_count(dentry->d_inode);
2741                 d_delete(dentry);
2742         }
2743
2744         return error;
2745 }
2746
2747 /*
2748  * Make sure that the actual truncation of the file will occur outside its
2749  * directory's i_mutex.  Truncate can take a long time if there is a lot of
2750  * writeout happening, and we don't want to prevent access to the directory
2751  * while waiting on the I/O.
2752  */
2753 static long do_unlinkat(int dfd, const char __user *pathname)
2754 {
2755         int error;
2756         char *name;
2757         struct dentry *dentry;
2758         struct nameidata nd;
2759         struct inode *inode = NULL;
2760
2761         error = user_path_parent(dfd, pathname, &nd, &name);
2762         if (error)
2763                 return error;
2764
2765         error = -EISDIR;
2766         if (nd.last_type != LAST_NORM)
2767                 goto exit1;
2768
2769         nd.flags &= ~LOOKUP_PARENT;
2770
2771         mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
2772         dentry = lookup_hash(&nd);
2773         error = PTR_ERR(dentry);
2774         if (!IS_ERR(dentry)) {
2775                 /* Why not before? Because we want correct error value */
2776                 if (nd.last.name[nd.last.len])
2777                         goto slashes;
2778                 inode = dentry->d_inode;
2779                 if (!inode)
2780                         goto slashes;
2781                 ihold(inode);
2782                 error = mnt_want_write(nd.path.mnt);
2783                 if (error)
2784                         goto exit2;
2785                 error = security_path_unlink(&nd.path, dentry);
2786                 if (error)
2787                         goto exit3;
2788                 error = vfs_unlink(nd.path.dentry->d_inode, dentry);
2789 exit3:
2790                 mnt_drop_write(nd.path.mnt);
2791         exit2:
2792                 dput(dentry);
2793         }
2794         mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
2795         if (inode)
2796                 iput(inode);    /* truncate the inode here */
2797 exit1:
2798         path_put(&nd.path);
2799         putname(name);
2800         return error;
2801
2802 slashes:
2803         error = !dentry->d_inode ? -ENOENT :
2804                 S_ISDIR(dentry->d_inode->i_mode) ? -EISDIR : -ENOTDIR;
2805         goto exit2;
2806 }
2807
2808 SYSCALL_DEFINE3(unlinkat, int, dfd, const char __user *, pathname, int, flag)
2809 {
2810         if ((flag & ~AT_REMOVEDIR) != 0)
2811                 return -EINVAL;
2812
2813         if (flag & AT_REMOVEDIR)
2814                 return do_rmdir(dfd, pathname);
2815
2816         return do_unlinkat(dfd, pathname);
2817 }
2818
2819 SYSCALL_DEFINE1(unlink, const char __user *, pathname)
2820 {
2821         return do_unlinkat(AT_FDCWD, pathname);
2822 }
2823
2824 int vfs_symlink(struct inode *dir, struct dentry *dentry, const char *oldname)
2825 {
2826         int error = may_create(dir, dentry);
2827
2828         if (error)
2829                 return error;
2830
2831         if (!dir->i_op->symlink)
2832                 return -EPERM;
2833
2834         error = security_inode_symlink(dir, dentry, oldname);
2835         if (error)
2836                 return error;
2837
2838         error = dir->i_op->symlink(dir, dentry, oldname);
2839         if (!error)
2840                 fsnotify_create(dir, dentry);
2841         return error;
2842 }
2843
2844 SYSCALL_DEFINE3(symlinkat, const char __user *, oldname,
2845                 int, newdfd, const char __user *, newname)
2846 {
2847         int error;
2848         char *from;
2849         struct dentry *dentry;
2850         struct path path;
2851
2852         from = getname(oldname);
2853         if (IS_ERR(from))
2854                 return PTR_ERR(from);
2855
2856         dentry = user_path_create(newdfd, newname, &path, 0);
2857         error = PTR_ERR(dentry);
2858         if (IS_ERR(dentry))
2859                 goto out_putname;
2860
2861         error = mnt_want_write(path.mnt);
2862         if (error)
2863                 goto out_dput;
2864         error = security_path_symlink(&path, dentry, from);
2865         if (error)
2866                 goto out_drop_write;
2867         error = vfs_symlink(path.dentry->d_inode, dentry, from);
2868 out_drop_write:
2869         mnt_drop_write(path.mnt);
2870 out_dput:
2871         dput(dentry);
2872         mutex_unlock(&path.dentry->d_inode->i_mutex);
2873         path_put(&path);
2874 out_putname:
2875         putname(from);
2876         return error;
2877 }
2878
2879 SYSCALL_DEFINE2(symlink, const char __user *, oldname, const char __user *, newname)
2880 {
2881         return sys_symlinkat(oldname, AT_FDCWD, newname);
2882 }
2883
2884 int vfs_link(struct dentry *old_dentry, struct inode *dir, struct dentry *new_dentry)
2885 {
2886         struct inode *inode = old_dentry->d_inode;
2887         int error;
2888
2889         if (!inode)
2890                 return -ENOENT;
2891
2892         error = may_create(dir, new_dentry);
2893         if (error)
2894                 return error;
2895
2896         if (dir->i_sb != inode->i_sb)
2897                 return -EXDEV;
2898
2899         /*
2900          * A link to an append-only or immutable file cannot be created.
2901          */
2902         if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
2903                 return -EPERM;
2904         if (!dir->i_op->link)
2905                 return -EPERM;
2906         if (S_ISDIR(inode->i_mode))
2907                 return -EPERM;
2908
2909         error = security_inode_link(old_dentry, dir, new_dentry);
2910         if (error)
2911                 return error;
2912
2913         mutex_lock(&inode->i_mutex);
2914         /* Make sure we don't allow creating hardlink to an unlinked file */
2915         if (inode->i_nlink == 0)
2916                 error =  -ENOENT;
2917         else
2918                 error = dir->i_op->link(old_dentry, dir, new_dentry);
2919         mutex_unlock(&inode->i_mutex);
2920         if (!error)
2921                 fsnotify_link(dir, inode, new_dentry);
2922         return error;
2923 }
2924
2925 /*
2926  * Hardlinks are often used in delicate situations.  We avoid
2927  * security-related surprises by not following symlinks on the
2928  * newname.  --KAB
2929  *
2930  * We don't follow them on the oldname either to be compatible
2931  * with linux 2.0, and to avoid hard-linking to directories
2932  * and other special files.  --ADM
2933  */
2934 SYSCALL_DEFINE5(linkat, int, olddfd, const char __user *, oldname,
2935                 int, newdfd, const char __user *, newname, int, flags)
2936 {
2937         struct dentry *new_dentry;
2938         struct path old_path, new_path;
2939         int how = 0;
2940         int error;
2941
2942         if ((flags & ~(AT_SYMLINK_FOLLOW | AT_EMPTY_PATH)) != 0)
2943                 return -EINVAL;
2944         /*
2945          * To use null names we require CAP_DAC_READ_SEARCH
2946          * This ensures that not everyone will be able to create
2947          * handlink using the passed filedescriptor.
2948          */
2949         if (flags & AT_EMPTY_PATH) {
2950                 if (!capable(CAP_DAC_READ_SEARCH))
2951                         return -ENOENT;
2952                 how = LOOKUP_EMPTY;
2953         }
2954
2955         if (flags & AT_SYMLINK_FOLLOW)
2956                 how |= LOOKUP_FOLLOW;
2957
2958         error = user_path_at(olddfd, oldname, how, &old_path);
2959         if (error)
2960                 return error;
2961
2962         new_dentry = user_path_create(newdfd, newname, &new_path, 0);
2963         error = PTR_ERR(new_dentry);
2964         if (IS_ERR(new_dentry))
2965                 goto out;
2966
2967         error = -EXDEV;
2968         if (old_path.mnt != new_path.mnt)
2969                 goto out_dput;
2970         error = mnt_want_write(new_path.mnt);
2971         if (error)
2972                 goto out_dput;
2973         error = security_path_link(old_path.dentry, &new_path, new_dentry);
2974         if (error)
2975                 goto out_drop_write;
2976         error = vfs_link(old_path.dentry, new_path.dentry->d_inode, new_dentry);
2977 out_drop_write:
2978         mnt_drop_write(new_path.mnt);
2979 out_dput:
2980         dput(new_dentry);
2981         mutex_unlock(&new_path.dentry->d_inode->i_mutex);
2982         path_put(&new_path);
2983 out:
2984         path_put(&old_path);
2985
2986         return error;
2987 }
2988
2989 SYSCALL_DEFINE2(link, const char __user *, oldname, const char __user *, newname)
2990 {
2991         return sys_linkat(AT_FDCWD, oldname, AT_FDCWD, newname, 0);
2992 }
2993
2994 /*
2995  * The worst of all namespace operations - renaming directory. "Perverted"
2996  * doesn't even start to describe it. Somebody in UCB had a heck of a trip...
2997  * Problems:
2998  *      a) we can get into loop creation. Check is done in is_subdir().
2999  *      b) race potential - two innocent renames can create a loop together.
3000  *         That's where 4.4 screws up. Current fix: serialization on
3001  *         sb->s_vfs_rename_mutex. We might be more accurate, but that's another
3002  *         story.
3003  *      c) we have to lock _three_ objects - parents and victim (if it exists).
3004  *         And that - after we got ->i_mutex on parents (until then we don't know
3005  *         whether the target exists).  Solution: try to be smart with locking
3006  *         order for inodes.  We rely on the fact that tree topology may change
3007  *         only under ->s_vfs_rename_mutex _and_ that parent of the object we
3008  *         move will be locked.  Thus we can rank directories by the tree
3009  *         (ancestors first) and rank all non-directories after them.
3010  *         That works since everybody except rename does "lock parent, lookup,
3011  *         lock child" and rename is under ->s_vfs_rename_mutex.
3012  *         HOWEVER, it relies on the assumption that any object with ->lookup()
3013  *         has no more than 1 dentry.  If "hybrid" objects will ever appear,
3014  *         we'd better make sure that there's no link(2) for them.
3015  *      d) conversion from fhandle to dentry may come in the wrong moment - when
3016  *         we are removing the target. Solution: we will have to grab ->i_mutex
3017  *         in the fhandle_to_dentry code. [FIXME - current nfsfh.c relies on
3018  *         ->i_mutex on parents, which works but leads to some truly excessive
3019  *         locking].
3020  */
3021 static int vfs_rename_dir(struct inode *old_dir, struct dentry *old_dentry,
3022                           struct inode *new_dir, struct dentry *new_dentry)
3023 {
3024         int error = 0;
3025         struct inode *target = new_dentry->d_inode;
3026
3027         /*
3028          * If we are going to change the parent - check write permissions,
3029          * we'll need to flip '..'.
3030          */
3031         if (new_dir != old_dir) {
3032                 error = inode_permission(old_dentry->d_inode, MAY_WRITE);
3033                 if (error)
3034                         return error;
3035         }
3036
3037         error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry);
3038         if (error)
3039                 return error;
3040
3041         dget(new_dentry);
3042         if (target)
3043                 mutex_lock(&target->i_mutex);
3044
3045         error = -EBUSY;
3046         if (d_mountpoint(old_dentry) || d_mountpoint(new_dentry))
3047                 goto out;
3048
3049         if (target)
3050                 shrink_dcache_parent(new_dentry);
3051         error = old_dir->i_op->rename(old_dir, old_dentry, new_dir, new_dentry);
3052         if (error)
3053                 goto out;
3054
3055         if (target) {
3056                 target->i_flags |= S_DEAD;
3057                 dont_mount(new_dentry);
3058         }
3059 out:
3060         if (target)
3061                 mutex_unlock(&target->i_mutex);
3062         dput(new_dentry);
3063         if (!error)
3064                 if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE))
3065                         d_move(old_dentry,new_dentry);
3066         return error;
3067 }
3068
3069 static int vfs_rename_other(struct inode *old_dir, struct dentry *old_dentry,
3070                             struct inode *new_dir, struct dentry *new_dentry)
3071 {
3072         struct inode *target = new_dentry->d_inode;
3073         int error;
3074
3075         error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry);
3076         if (error)
3077                 return error;
3078
3079         dget(new_dentry);
3080         if (target)
3081                 mutex_lock(&target->i_mutex);
3082
3083         error = -EBUSY;
3084         if (d_mountpoint(old_dentry)||d_mountpoint(new_dentry))
3085                 goto out;
3086
3087         error = old_dir->i_op->rename(old_dir, old_dentry, new_dir, new_dentry);
3088         if (error)
3089                 goto out;
3090
3091         if (target)
3092                 dont_mount(new_dentry);
3093         if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE))
3094                 d_move(old_dentry, new_dentry);
3095 out:
3096         if (target)
3097                 mutex_unlock(&target->i_mutex);
3098         dput(new_dentry);
3099         return error;
3100 }
3101
3102 int vfs_rename(struct inode *old_dir, struct dentry *old_dentry,
3103                struct inode *new_dir, struct dentry *new_dentry)
3104 {
3105         int error;
3106         int is_dir = S_ISDIR(old_dentry->d_inode->i_mode);
3107         const unsigned char *old_name;
3108
3109         if (old_dentry->d_inode == new_dentry->d_inode)
3110                 return 0;
3111  
3112         error = may_delete(old_dir, old_dentry, is_dir);
3113         if (error)
3114                 return error;
3115
3116         if (!new_dentry->d_inode)
3117                 error = may_create(new_dir, new_dentry);
3118         else
3119                 error = may_delete(new_dir, new_dentry, is_dir);
3120         if (error)
3121                 return error;
3122
3123         if (!old_dir->i_op->rename)
3124                 return -EPERM;
3125
3126         old_name = fsnotify_oldname_init(old_dentry->d_name.name);
3127
3128         if (is_dir)
3129                 error = vfs_rename_dir(old_dir,old_dentry,new_dir,new_dentry);
3130         else
3131                 error = vfs_rename_other(old_dir,old_dentry,new_dir,new_dentry);
3132         if (!error)
3133                 fsnotify_move(old_dir, new_dir, old_name, is_dir,
3134                               new_dentry->d_inode, old_dentry);
3135         fsnotify_oldname_free(old_name);
3136
3137         return error;
3138 }
3139
3140 SYSCALL_DEFINE4(renameat, int, olddfd, const char __user *, oldname,
3141                 int, newdfd, const char __user *, newname)
3142 {
3143         struct dentry *old_dir, *new_dir;
3144         struct dentry *old_dentry, *new_dentry;
3145         struct dentry *trap;
3146         struct nameidata oldnd, newnd;
3147         char *from;
3148         char *to;
3149         int error;
3150
3151         error = user_path_parent(olddfd, oldname, &oldnd, &from);
3152         if (error)
3153                 goto exit;
3154
3155         error = user_path_parent(newdfd, newname, &newnd, &to);
3156         if (error)
3157                 goto exit1;
3158
3159         error = -EXDEV;
3160         if (oldnd.path.mnt != newnd.path.mnt)
3161                 goto exit2;
3162
3163         old_dir = oldnd.path.dentry;
3164         error = -EBUSY;
3165         if (oldnd.last_type != LAST_NORM)
3166                 goto exit2;
3167
3168         new_dir = newnd.path.dentry;
3169         if (newnd.last_type != LAST_NORM)
3170                 goto exit2;
3171
3172         oldnd.flags &= ~LOOKUP_PARENT;
3173         newnd.flags &= ~LOOKUP_PARENT;
3174         newnd.flags |= LOOKUP_RENAME_TARGET;
3175
3176         trap = lock_rename(new_dir, old_dir);
3177
3178         old_dentry = lookup_hash(&oldnd);
3179         error = PTR_ERR(old_dentry);
3180         if (IS_ERR(old_dentry))
3181                 goto exit3;
3182         /* source must exist */
3183         error = -ENOENT;
3184         if (!old_dentry->d_inode)
3185                 goto exit4;
3186         /* unless the source is a directory trailing slashes give -ENOTDIR */
3187         if (!S_ISDIR(old_dentry->d_inode->i_mode)) {
3188                 error = -ENOTDIR;
3189                 if (oldnd.last.name[oldnd.last.len])
3190                         goto exit4;
3191                 if (newnd.last.name[newnd.last.len])
3192                         goto exit4;
3193         }
3194         /* source should not be ancestor of target */
3195         error = -EINVAL;
3196         if (old_dentry == trap)
3197                 goto exit4;
3198         new_dentry = lookup_hash(&newnd);
3199         error = PTR_ERR(new_dentry);
3200         if (IS_ERR(new_dentry))
3201                 goto exit4;
3202         /* target should not be an ancestor of source */
3203         error = -ENOTEMPTY;
3204         if (new_dentry == trap)
3205                 goto exit5;
3206
3207         error = mnt_want_write(oldnd.path.mnt);
3208         if (error)
3209                 goto exit5;
3210         error = security_path_rename(&oldnd.path, old_dentry,
3211                                      &newnd.path, new_dentry);
3212         if (error)
3213                 goto exit6;
3214         error = vfs_rename(old_dir->d_inode, old_dentry,
3215                                    new_dir->d_inode, new_dentry);
3216 exit6:
3217         mnt_drop_write(oldnd.path.mnt);
3218 exit5:
3219         dput(new_dentry);
3220 exit4:
3221         dput(old_dentry);
3222 exit3:
3223         unlock_rename(new_dir, old_dir);
3224 exit2:
3225         path_put(&newnd.path);
3226         putname(to);
3227 exit1:
3228         path_put(&oldnd.path);
3229         putname(from);
3230 exit:
3231         return error;
3232 }
3233
3234 SYSCALL_DEFINE2(rename, const char __user *, oldname, const char __user *, newname)
3235 {
3236         return sys_renameat(AT_FDCWD, oldname, AT_FDCWD, newname);
3237 }
3238
3239 int vfs_readlink(struct dentry *dentry, char __user *buffer, int buflen, const char *link)
3240 {
3241         int len;
3242
3243         len = PTR_ERR(link);
3244         if (IS_ERR(link))
3245                 goto out;
3246
3247         len = strlen(link);
3248         if (len > (unsigned) buflen)
3249                 len = buflen;
3250         if (copy_to_user(buffer, link, len))
3251                 len = -EFAULT;
3252 out:
3253         return len;
3254 }
3255
3256 /*
3257  * A helper for ->readlink().  This should be used *ONLY* for symlinks that
3258  * have ->follow_link() touching nd only in nd_set_link().  Using (or not
3259  * using) it for any given inode is up to filesystem.
3260  */
3261 int generic_readlink(struct dentry *dentry, char __user *buffer, int buflen)
3262 {
3263         struct nameidata nd;
3264         void *cookie;
3265         int res;
3266
3267         nd.depth = 0;
3268         cookie = dentry->d_inode->i_op->follow_link(dentry, &nd);
3269         if (IS_ERR(cookie))
3270                 return PTR_ERR(cookie);
3271
3272         res = vfs_readlink(dentry, buffer, buflen, nd_get_link(&nd));
3273         if (dentry->d_inode->i_op->put_link)
3274                 dentry->d_inode->i_op->put_link(dentry, &nd, cookie);
3275         return res;
3276 }
3277
3278 int vfs_follow_link(struct nameidata *nd, const char *link)
3279 {
3280         return __vfs_follow_link(nd, link);
3281 }
3282
3283 /* get the link contents into pagecache */
3284 static char *page_getlink(struct dentry * dentry, struct page **ppage)
3285 {
3286         char *kaddr;
3287         struct page *page;
3288         struct address_space *mapping = dentry->d_inode->i_mapping;
3289         page = read_mapping_page(mapping, 0, NULL);
3290         if (IS_ERR(page))
3291                 return (char*)page;
3292         *ppage = page;
3293         kaddr = kmap(page);
3294         nd_terminate_link(kaddr, dentry->d_inode->i_size, PAGE_SIZE - 1);
3295         return kaddr;
3296 }
3297
3298 int page_readlink(struct dentry *dentry, char __user *buffer, int buflen)
3299 {
3300         struct page *page = NULL;
3301         char *s = page_getlink(dentry, &page);
3302         int res = vfs_readlink(dentry,buffer,buflen,s);
3303         if (page) {
3304                 kunmap(page);
3305                 page_cache_release(page);
3306         }
3307         return res;
3308 }
3309
3310 void *page_follow_link_light(struct dentry *dentry, struct nameidata *nd)
3311 {
3312         struct page *page = NULL;
3313         nd_set_link(nd, page_getlink(dentry, &page));
3314         return page;
3315 }
3316
3317 void page_put_link(struct dentry *dentry, struct nameidata *nd, void *cookie)
3318 {
3319         struct page *page = cookie;
3320
3321         if (page) {
3322                 kunmap(page);
3323                 page_cache_release(page);
3324         }
3325 }
3326
3327 /*
3328  * The nofs argument instructs pagecache_write_begin to pass AOP_FLAG_NOFS
3329  */
3330 int __page_symlink(struct inode *inode, const char *symname, int len, int nofs)
3331 {
3332         struct address_space *mapping = inode->i_mapping;
3333         struct page *page;
3334         void *fsdata;
3335         int err;
3336         char *kaddr;
3337         unsigned int flags = AOP_FLAG_UNINTERRUPTIBLE;
3338         if (nofs)
3339                 flags |= AOP_FLAG_NOFS;
3340
3341 retry:
3342         err = pagecache_write_begin(NULL, mapping, 0, len-1,
3343                                 flags, &page, &fsdata);
3344         if (err)
3345                 goto fail;
3346
3347         kaddr = kmap_atomic(page, KM_USER0);
3348         memcpy(kaddr, symname, len-1);
3349         kunmap_atomic(kaddr, KM_USER0);
3350
3351         err = pagecache_write_end(NULL, mapping, 0, len-1, len-1,
3352                                                         page, fsdata);
3353         if (err < 0)
3354                 goto fail;
3355         if (err < len-1)
3356                 goto retry;
3357
3358         mark_inode_dirty(inode);
3359         return 0;
3360 fail:
3361         return err;
3362 }
3363
3364 int page_symlink(struct inode *inode, const char *symname, int len)
3365 {
3366         return __page_symlink(inode, symname, len,
3367                         !(mapping_gfp_mask(inode->i_mapping) & __GFP_FS));
3368 }
3369
3370 const struct inode_operations page_symlink_inode_operations = {
3371         .readlink       = generic_readlink,
3372         .follow_link    = page_follow_link_light,
3373         .put_link       = page_put_link,
3374 };
3375
3376 EXPORT_SYMBOL(user_path_at);
3377 EXPORT_SYMBOL(follow_down_one);
3378 EXPORT_SYMBOL(follow_down);
3379 EXPORT_SYMBOL(follow_up);
3380 EXPORT_SYMBOL(get_write_access); /* binfmt_aout */
3381 EXPORT_SYMBOL(getname);
3382 EXPORT_SYMBOL(lock_rename);
3383 EXPORT_SYMBOL(lookup_one_len);
3384 EXPORT_SYMBOL(page_follow_link_light);
3385 EXPORT_SYMBOL(page_put_link);
3386 EXPORT_SYMBOL(page_readlink);
3387 EXPORT_SYMBOL(__page_symlink);
3388 EXPORT_SYMBOL(page_symlink);
3389 EXPORT_SYMBOL(page_symlink_inode_operations);
3390 EXPORT_SYMBOL(kern_path);
3391 EXPORT_SYMBOL(vfs_path_lookup);
3392 EXPORT_SYMBOL(inode_permission);
3393 EXPORT_SYMBOL(unlock_rename);
3394 EXPORT_SYMBOL(vfs_create);
3395 EXPORT_SYMBOL(vfs_follow_link);
3396 EXPORT_SYMBOL(vfs_link);
3397 EXPORT_SYMBOL(vfs_mkdir);
3398 EXPORT_SYMBOL(vfs_mknod);
3399 EXPORT_SYMBOL(generic_permission);
3400 EXPORT_SYMBOL(vfs_readlink);
3401 EXPORT_SYMBOL(vfs_rename);
3402 EXPORT_SYMBOL(vfs_rmdir);
3403 EXPORT_SYMBOL(vfs_symlink);
3404 EXPORT_SYMBOL(vfs_unlink);
3405 EXPORT_SYMBOL(dentry_unhash);
3406 EXPORT_SYMBOL(generic_readlink);