vfs: Fix vfsmount_lock imbalance in path_init()
[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         struct inode *inode = nd->inode;
917         if (!nd->root.mnt)
918                 set_root_rcu(nd);
919
920         while (1) {
921                 if (nd->path.dentry == nd->root.dentry &&
922                     nd->path.mnt == nd->root.mnt) {
923                         break;
924                 }
925                 if (nd->path.dentry != nd->path.mnt->mnt_root) {
926                         struct dentry *old = nd->path.dentry;
927                         struct dentry *parent = old->d_parent;
928                         unsigned seq;
929
930                         inode = parent->d_inode;
931                         seq = read_seqcount_begin(&parent->d_seq);
932                         if (read_seqcount_retry(&old->d_seq, nd->seq))
933                                 goto failed;
934                         nd->path.dentry = parent;
935                         nd->seq = seq;
936                         break;
937                 }
938                 if (!follow_up_rcu(&nd->path))
939                         break;
940                 inode = nd->path.dentry->d_inode;
941                 nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq);
942         }
943         while (d_mountpoint(nd->path.dentry)) {
944                 struct vfsmount *mounted;
945                 mounted = __lookup_mnt(nd->path.mnt, nd->path.dentry, 1);
946                 if (!mounted)
947                         break;
948                 nd->path.mnt = mounted;
949                 nd->path.dentry = mounted->mnt_root;
950                 inode = nd->path.dentry->d_inode;
951                 nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq);
952         }
953         nd->inode = inode;
954         return 0;
955
956 failed:
957         nd->flags &= ~LOOKUP_RCU;
958         if (!(nd->flags & LOOKUP_ROOT))
959                 nd->root.mnt = NULL;
960         rcu_read_unlock();
961         br_read_unlock(vfsmount_lock);
962         return -ECHILD;
963 }
964
965 /*
966  * Follow down to the covering mount currently visible to userspace.  At each
967  * point, the filesystem owning that dentry may be queried as to whether the
968  * caller is permitted to proceed or not.
969  */
970 int follow_down(struct path *path)
971 {
972         unsigned managed;
973         int ret;
974
975         while (managed = ACCESS_ONCE(path->dentry->d_flags),
976                unlikely(managed & DCACHE_MANAGED_DENTRY)) {
977                 /* Allow the filesystem to manage the transit without i_mutex
978                  * being held.
979                  *
980                  * We indicate to the filesystem if someone is trying to mount
981                  * something here.  This gives autofs the chance to deny anyone
982                  * other than its daemon the right to mount on its
983                  * superstructure.
984                  *
985                  * The filesystem may sleep at this point.
986                  */
987                 if (managed & DCACHE_MANAGE_TRANSIT) {
988                         BUG_ON(!path->dentry->d_op);
989                         BUG_ON(!path->dentry->d_op->d_manage);
990                         ret = path->dentry->d_op->d_manage(
991                                 path->dentry, false);
992                         if (ret < 0)
993                                 return ret == -EISDIR ? 0 : ret;
994                 }
995
996                 /* Transit to a mounted filesystem. */
997                 if (managed & DCACHE_MOUNTED) {
998                         struct vfsmount *mounted = lookup_mnt(path);
999                         if (!mounted)
1000                                 break;
1001                         dput(path->dentry);
1002                         mntput(path->mnt);
1003                         path->mnt = mounted;
1004                         path->dentry = dget(mounted->mnt_root);
1005                         continue;
1006                 }
1007
1008                 /* Don't handle automount points here */
1009                 break;
1010         }
1011         return 0;
1012 }
1013
1014 /*
1015  * Skip to top of mountpoint pile in refwalk mode for follow_dotdot()
1016  */
1017 static void follow_mount(struct path *path)
1018 {
1019         while (d_mountpoint(path->dentry)) {
1020                 struct vfsmount *mounted = lookup_mnt(path);
1021                 if (!mounted)
1022                         break;
1023                 dput(path->dentry);
1024                 mntput(path->mnt);
1025                 path->mnt = mounted;
1026                 path->dentry = dget(mounted->mnt_root);
1027         }
1028 }
1029
1030 static void follow_dotdot(struct nameidata *nd)
1031 {
1032         if (!nd->root.mnt)
1033                 set_root(nd);
1034
1035         while(1) {
1036                 struct dentry *old = nd->path.dentry;
1037
1038                 if (nd->path.dentry == nd->root.dentry &&
1039                     nd->path.mnt == nd->root.mnt) {
1040                         break;
1041                 }
1042                 if (nd->path.dentry != nd->path.mnt->mnt_root) {
1043                         /* rare case of legitimate dget_parent()... */
1044                         nd->path.dentry = dget_parent(nd->path.dentry);
1045                         dput(old);
1046                         break;
1047                 }
1048                 if (!follow_up(&nd->path))
1049                         break;
1050         }
1051         follow_mount(&nd->path);
1052         nd->inode = nd->path.dentry->d_inode;
1053 }
1054
1055 /*
1056  * Allocate a dentry with name and parent, and perform a parent
1057  * directory ->lookup on it. Returns the new dentry, or ERR_PTR
1058  * on error. parent->d_inode->i_mutex must be held. d_lookup must
1059  * have verified that no child exists while under i_mutex.
1060  */
1061 static struct dentry *d_alloc_and_lookup(struct dentry *parent,
1062                                 struct qstr *name, struct nameidata *nd)
1063 {
1064         struct inode *inode = parent->d_inode;
1065         struct dentry *dentry;
1066         struct dentry *old;
1067
1068         /* Don't create child dentry for a dead directory. */
1069         if (unlikely(IS_DEADDIR(inode)))
1070                 return ERR_PTR(-ENOENT);
1071
1072         dentry = d_alloc(parent, name);
1073         if (unlikely(!dentry))
1074                 return ERR_PTR(-ENOMEM);
1075
1076         old = inode->i_op->lookup(inode, dentry, nd);
1077         if (unlikely(old)) {
1078                 dput(dentry);
1079                 dentry = old;
1080         }
1081         return dentry;
1082 }
1083
1084 /*
1085  * We already have a dentry, but require a lookup to be performed on the parent
1086  * directory to fill in d_inode. Returns the new dentry, or ERR_PTR on error.
1087  * parent->d_inode->i_mutex must be held. d_lookup must have verified that no
1088  * child exists while under i_mutex.
1089  */
1090 static struct dentry *d_inode_lookup(struct dentry *parent, struct dentry *dentry,
1091                                      struct nameidata *nd)
1092 {
1093         struct inode *inode = parent->d_inode;
1094         struct dentry *old;
1095
1096         /* Don't create child dentry for a dead directory. */
1097         if (unlikely(IS_DEADDIR(inode))) {
1098                 dput(dentry);
1099                 return ERR_PTR(-ENOENT);
1100         }
1101
1102         old = inode->i_op->lookup(inode, dentry, nd);
1103         if (unlikely(old)) {
1104                 dput(dentry);
1105                 dentry = old;
1106         }
1107         return dentry;
1108 }
1109
1110 /*
1111  *  It's more convoluted than I'd like it to be, but... it's still fairly
1112  *  small and for now I'd prefer to have fast path as straight as possible.
1113  *  It _is_ time-critical.
1114  */
1115 static int do_lookup(struct nameidata *nd, struct qstr *name,
1116                         struct path *path, struct inode **inode)
1117 {
1118         struct vfsmount *mnt = nd->path.mnt;
1119         struct dentry *dentry, *parent = nd->path.dentry;
1120         int need_reval = 1;
1121         int status = 1;
1122         int err;
1123
1124         /*
1125          * Rename seqlock is not required here because in the off chance
1126          * of a false negative due to a concurrent rename, we're going to
1127          * do the non-racy lookup, below.
1128          */
1129         if (nd->flags & LOOKUP_RCU) {
1130                 unsigned seq;
1131                 *inode = nd->inode;
1132                 dentry = __d_lookup_rcu(parent, name, &seq, inode);
1133                 if (!dentry)
1134                         goto unlazy;
1135
1136                 /* Memory barrier in read_seqcount_begin of child is enough */
1137                 if (__read_seqcount_retry(&parent->d_seq, nd->seq))
1138                         return -ECHILD;
1139                 nd->seq = seq;
1140
1141                 if (unlikely(dentry->d_flags & DCACHE_OP_REVALIDATE)) {
1142                         status = d_revalidate(dentry, nd);
1143                         if (unlikely(status <= 0)) {
1144                                 if (status != -ECHILD)
1145                                         need_reval = 0;
1146                                 goto unlazy;
1147                         }
1148                 }
1149                 if (unlikely(d_need_lookup(dentry)))
1150                         goto unlazy;
1151                 path->mnt = mnt;
1152                 path->dentry = dentry;
1153                 if (unlikely(!__follow_mount_rcu(nd, path, inode)))
1154                         goto unlazy;
1155                 if (unlikely(path->dentry->d_flags & DCACHE_NEED_AUTOMOUNT))
1156                         goto unlazy;
1157                 return 0;
1158 unlazy:
1159                 if (unlazy_walk(nd, dentry))
1160                         return -ECHILD;
1161         } else {
1162                 dentry = __d_lookup(parent, name);
1163         }
1164
1165         if (dentry && unlikely(d_need_lookup(dentry))) {
1166                 dput(dentry);
1167                 dentry = NULL;
1168         }
1169 retry:
1170         if (unlikely(!dentry)) {
1171                 struct inode *dir = parent->d_inode;
1172                 BUG_ON(nd->inode != dir);
1173
1174                 mutex_lock(&dir->i_mutex);
1175                 dentry = d_lookup(parent, name);
1176                 if (likely(!dentry)) {
1177                         dentry = d_alloc_and_lookup(parent, name, nd);
1178                         if (IS_ERR(dentry)) {
1179                                 mutex_unlock(&dir->i_mutex);
1180                                 return PTR_ERR(dentry);
1181                         }
1182                         /* known good */
1183                         need_reval = 0;
1184                         status = 1;
1185                 } else if (unlikely(d_need_lookup(dentry))) {
1186                         dentry = d_inode_lookup(parent, dentry, nd);
1187                         if (IS_ERR(dentry)) {
1188                                 mutex_unlock(&dir->i_mutex);
1189                                 return PTR_ERR(dentry);
1190                         }
1191                         /* known good */
1192                         need_reval = 0;
1193                         status = 1;
1194                 }
1195                 mutex_unlock(&dir->i_mutex);
1196         }
1197         if (unlikely(dentry->d_flags & DCACHE_OP_REVALIDATE) && need_reval)
1198                 status = d_revalidate(dentry, nd);
1199         if (unlikely(status <= 0)) {
1200                 if (status < 0) {
1201                         dput(dentry);
1202                         return status;
1203                 }
1204                 if (!d_invalidate(dentry)) {
1205                         dput(dentry);
1206                         dentry = NULL;
1207                         need_reval = 1;
1208                         goto retry;
1209                 }
1210         }
1211
1212         path->mnt = mnt;
1213         path->dentry = dentry;
1214         err = follow_managed(path, nd->flags);
1215         if (unlikely(err < 0)) {
1216                 path_put_conditional(path, nd);
1217                 return err;
1218         }
1219         if (err)
1220                 nd->flags |= LOOKUP_JUMPED;
1221         *inode = path->dentry->d_inode;
1222         return 0;
1223 }
1224
1225 static inline int may_lookup(struct nameidata *nd)
1226 {
1227         if (nd->flags & LOOKUP_RCU) {
1228                 int err = inode_permission(nd->inode, MAY_EXEC|MAY_NOT_BLOCK);
1229                 if (err != -ECHILD)
1230                         return err;
1231                 if (unlazy_walk(nd, NULL))
1232                         return -ECHILD;
1233         }
1234         return inode_permission(nd->inode, MAY_EXEC);
1235 }
1236
1237 static inline int handle_dots(struct nameidata *nd, int type)
1238 {
1239         if (type == LAST_DOTDOT) {
1240                 if (nd->flags & LOOKUP_RCU) {
1241                         if (follow_dotdot_rcu(nd))
1242                                 return -ECHILD;
1243                 } else
1244                         follow_dotdot(nd);
1245         }
1246         return 0;
1247 }
1248
1249 static void terminate_walk(struct nameidata *nd)
1250 {
1251         if (!(nd->flags & LOOKUP_RCU)) {
1252                 path_put(&nd->path);
1253         } else {
1254                 nd->flags &= ~LOOKUP_RCU;
1255                 if (!(nd->flags & LOOKUP_ROOT))
1256                         nd->root.mnt = NULL;
1257                 rcu_read_unlock();
1258                 br_read_unlock(vfsmount_lock);
1259         }
1260 }
1261
1262 /*
1263  * Do we need to follow links? We _really_ want to be able
1264  * to do this check without having to look at inode->i_op,
1265  * so we keep a cache of "no, this doesn't need follow_link"
1266  * for the common case.
1267  */
1268 static inline int should_follow_link(struct inode *inode, int follow)
1269 {
1270         if (unlikely(!(inode->i_opflags & IOP_NOFOLLOW))) {
1271                 if (likely(inode->i_op->follow_link))
1272                         return follow;
1273
1274                 /* This gets set once for the inode lifetime */
1275                 spin_lock(&inode->i_lock);
1276                 inode->i_opflags |= IOP_NOFOLLOW;
1277                 spin_unlock(&inode->i_lock);
1278         }
1279         return 0;
1280 }
1281
1282 static inline int walk_component(struct nameidata *nd, struct path *path,
1283                 struct qstr *name, int type, int follow)
1284 {
1285         struct inode *inode;
1286         int err;
1287         /*
1288          * "." and ".." are special - ".." especially so because it has
1289          * to be able to know about the current root directory and
1290          * parent relationships.
1291          */
1292         if (unlikely(type != LAST_NORM))
1293                 return handle_dots(nd, type);
1294         err = do_lookup(nd, name, path, &inode);
1295         if (unlikely(err)) {
1296                 terminate_walk(nd);
1297                 return err;
1298         }
1299         if (!inode) {
1300                 path_to_nameidata(path, nd);
1301                 terminate_walk(nd);
1302                 return -ENOENT;
1303         }
1304         if (should_follow_link(inode, follow)) {
1305                 if (nd->flags & LOOKUP_RCU) {
1306                         if (unlikely(unlazy_walk(nd, path->dentry))) {
1307                                 terminate_walk(nd);
1308                                 return -ECHILD;
1309                         }
1310                 }
1311                 BUG_ON(inode != path->dentry->d_inode);
1312                 return 1;
1313         }
1314         path_to_nameidata(path, nd);
1315         nd->inode = inode;
1316         return 0;
1317 }
1318
1319 /*
1320  * This limits recursive symlink follows to 8, while
1321  * limiting consecutive symlinks to 40.
1322  *
1323  * Without that kind of total limit, nasty chains of consecutive
1324  * symlinks can cause almost arbitrarily long lookups.
1325  */
1326 static inline int nested_symlink(struct path *path, struct nameidata *nd)
1327 {
1328         int res;
1329
1330         if (unlikely(current->link_count >= MAX_NESTED_LINKS)) {
1331                 path_put_conditional(path, nd);
1332                 path_put(&nd->path);
1333                 return -ELOOP;
1334         }
1335         BUG_ON(nd->depth >= MAX_NESTED_LINKS);
1336
1337         nd->depth++;
1338         current->link_count++;
1339
1340         do {
1341                 struct path link = *path;
1342                 void *cookie;
1343
1344                 res = follow_link(&link, nd, &cookie);
1345                 if (!res)
1346                         res = walk_component(nd, path, &nd->last,
1347                                              nd->last_type, LOOKUP_FOLLOW);
1348                 put_link(nd, &link, cookie);
1349         } while (res > 0);
1350
1351         current->link_count--;
1352         nd->depth--;
1353         return res;
1354 }
1355
1356 /*
1357  * We really don't want to look at inode->i_op->lookup
1358  * when we don't have to. So we keep a cache bit in
1359  * the inode ->i_opflags field that says "yes, we can
1360  * do lookup on this inode".
1361  */
1362 static inline int can_lookup(struct inode *inode)
1363 {
1364         if (likely(inode->i_opflags & IOP_LOOKUP))
1365                 return 1;
1366         if (likely(!inode->i_op->lookup))
1367                 return 0;
1368
1369         /* We do this once for the lifetime of the inode */
1370         spin_lock(&inode->i_lock);
1371         inode->i_opflags |= IOP_LOOKUP;
1372         spin_unlock(&inode->i_lock);
1373         return 1;
1374 }
1375
1376 /*
1377  * Name resolution.
1378  * This is the basic name resolution function, turning a pathname into
1379  * the final dentry. We expect 'base' to be positive and a directory.
1380  *
1381  * Returns 0 and nd will have valid dentry and mnt on success.
1382  * Returns error and drops reference to input namei data on failure.
1383  */
1384 static int link_path_walk(const char *name, struct nameidata *nd)
1385 {
1386         struct path next;
1387         int err;
1388         
1389         while (*name=='/')
1390                 name++;
1391         if (!*name)
1392                 return 0;
1393
1394         /* At this point we know we have a real path component. */
1395         for(;;) {
1396                 unsigned long hash;
1397                 struct qstr this;
1398                 unsigned int c;
1399                 int type;
1400
1401                 err = may_lookup(nd);
1402                 if (err)
1403                         break;
1404
1405                 this.name = name;
1406                 c = *(const unsigned char *)name;
1407
1408                 hash = init_name_hash();
1409                 do {
1410                         name++;
1411                         hash = partial_name_hash(c, hash);
1412                         c = *(const unsigned char *)name;
1413                 } while (c && (c != '/'));
1414                 this.len = name - (const char *) this.name;
1415                 this.hash = end_name_hash(hash);
1416
1417                 type = LAST_NORM;
1418                 if (this.name[0] == '.') switch (this.len) {
1419                         case 2:
1420                                 if (this.name[1] == '.') {
1421                                         type = LAST_DOTDOT;
1422                                         nd->flags |= LOOKUP_JUMPED;
1423                                 }
1424                                 break;
1425                         case 1:
1426                                 type = LAST_DOT;
1427                 }
1428                 if (likely(type == LAST_NORM)) {
1429                         struct dentry *parent = nd->path.dentry;
1430                         nd->flags &= ~LOOKUP_JUMPED;
1431                         if (unlikely(parent->d_flags & DCACHE_OP_HASH)) {
1432                                 err = parent->d_op->d_hash(parent, nd->inode,
1433                                                            &this);
1434                                 if (err < 0)
1435                                         break;
1436                         }
1437                 }
1438
1439                 /* remove trailing slashes? */
1440                 if (!c)
1441                         goto last_component;
1442                 while (*++name == '/');
1443                 if (!*name)
1444                         goto last_component;
1445
1446                 err = walk_component(nd, &next, &this, type, LOOKUP_FOLLOW);
1447                 if (err < 0)
1448                         return err;
1449
1450                 if (err) {
1451                         err = nested_symlink(&next, nd);
1452                         if (err)
1453                                 return err;
1454                 }
1455                 if (can_lookup(nd->inode))
1456                         continue;
1457                 err = -ENOTDIR; 
1458                 break;
1459                 /* here ends the main loop */
1460
1461 last_component:
1462                 nd->last = this;
1463                 nd->last_type = type;
1464                 return 0;
1465         }
1466         terminate_walk(nd);
1467         return err;
1468 }
1469
1470 static int path_init(int dfd, const char *name, unsigned int flags,
1471                      struct nameidata *nd, struct file **fp)
1472 {
1473         int retval = 0;
1474         int fput_needed;
1475         struct file *file;
1476
1477         nd->last_type = LAST_ROOT; /* if there are only slashes... */
1478         nd->flags = flags | LOOKUP_JUMPED;
1479         nd->depth = 0;
1480         if (flags & LOOKUP_ROOT) {
1481                 struct inode *inode = nd->root.dentry->d_inode;
1482                 if (*name) {
1483                         if (!inode->i_op->lookup)
1484                                 return -ENOTDIR;
1485                         retval = inode_permission(inode, MAY_EXEC);
1486                         if (retval)
1487                                 return retval;
1488                 }
1489                 nd->path = nd->root;
1490                 nd->inode = inode;
1491                 if (flags & LOOKUP_RCU) {
1492                         br_read_lock(vfsmount_lock);
1493                         rcu_read_lock();
1494                         nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
1495                 } else {
1496                         path_get(&nd->path);
1497                 }
1498                 return 0;
1499         }
1500
1501         nd->root.mnt = NULL;
1502
1503         if (*name=='/') {
1504                 if (flags & LOOKUP_RCU) {
1505                         br_read_lock(vfsmount_lock);
1506                         rcu_read_lock();
1507                         nd->seq = set_root_rcu(nd);
1508                 } else {
1509                         set_root(nd);
1510                         path_get(&nd->root);
1511                 }
1512                 nd->path = nd->root;
1513         } else if (dfd == AT_FDCWD) {
1514                 if (flags & LOOKUP_RCU) {
1515                         struct fs_struct *fs = current->fs;
1516                         unsigned seq;
1517
1518                         br_read_lock(vfsmount_lock);
1519                         rcu_read_lock();
1520
1521                         do {
1522                                 seq = read_seqcount_begin(&fs->seq);
1523                                 nd->path = fs->pwd;
1524                                 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
1525                         } while (read_seqcount_retry(&fs->seq, seq));
1526                 } else {
1527                         get_fs_pwd(current->fs, &nd->path);
1528                 }
1529         } else {
1530                 struct dentry *dentry;
1531
1532                 file = fget_raw_light(dfd, &fput_needed);
1533                 retval = -EBADF;
1534                 if (!file)
1535                         goto out_fail;
1536
1537                 dentry = file->f_path.dentry;
1538
1539                 if (*name) {
1540                         retval = -ENOTDIR;
1541                         if (!S_ISDIR(dentry->d_inode->i_mode))
1542                                 goto fput_fail;
1543
1544                         retval = inode_permission(dentry->d_inode, MAY_EXEC);
1545                         if (retval)
1546                                 goto fput_fail;
1547                 }
1548
1549                 nd->path = file->f_path;
1550                 if (flags & LOOKUP_RCU) {
1551                         if (fput_needed)
1552                                 *fp = file;
1553                         nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
1554                         br_read_lock(vfsmount_lock);
1555                         rcu_read_lock();
1556                 } else {
1557                         path_get(&file->f_path);
1558                         fput_light(file, fput_needed);
1559                 }
1560         }
1561
1562         nd->inode = nd->path.dentry->d_inode;
1563         if (!(flags & LOOKUP_RCU))
1564                 return 0;
1565         if (likely(!read_seqcount_retry(&nd->path.dentry->d_seq, nd->seq)))
1566                 return 0;
1567         if (!(nd->flags & LOOKUP_ROOT))
1568                 nd->root.mnt = NULL;
1569         rcu_read_unlock();
1570         br_read_unlock(vfsmount_lock);
1571         return -ECHILD;
1572
1573 fput_fail:
1574         fput_light(file, fput_needed);
1575 out_fail:
1576         return retval;
1577 }
1578
1579 static inline int lookup_last(struct nameidata *nd, struct path *path)
1580 {
1581         if (nd->last_type == LAST_NORM && nd->last.name[nd->last.len])
1582                 nd->flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
1583
1584         nd->flags &= ~LOOKUP_PARENT;
1585         return walk_component(nd, path, &nd->last, nd->last_type,
1586                                         nd->flags & LOOKUP_FOLLOW);
1587 }
1588
1589 /* Returns 0 and nd will be valid on success; Retuns error, otherwise. */
1590 static int path_lookupat(int dfd, const char *name,
1591                                 unsigned int flags, struct nameidata *nd)
1592 {
1593         struct file *base = NULL;
1594         struct path path;
1595         int err;
1596
1597         /*
1598          * Path walking is largely split up into 2 different synchronisation
1599          * schemes, rcu-walk and ref-walk (explained in
1600          * Documentation/filesystems/path-lookup.txt). These share much of the
1601          * path walk code, but some things particularly setup, cleanup, and
1602          * following mounts are sufficiently divergent that functions are
1603          * duplicated. Typically there is a function foo(), and its RCU
1604          * analogue, foo_rcu().
1605          *
1606          * -ECHILD is the error number of choice (just to avoid clashes) that
1607          * is returned if some aspect of an rcu-walk fails. Such an error must
1608          * be handled by restarting a traditional ref-walk (which will always
1609          * be able to complete).
1610          */
1611         err = path_init(dfd, name, flags | LOOKUP_PARENT, nd, &base);
1612
1613         if (unlikely(err))
1614                 return err;
1615
1616         current->total_link_count = 0;
1617         err = link_path_walk(name, nd);
1618
1619         if (!err && !(flags & LOOKUP_PARENT)) {
1620                 err = lookup_last(nd, &path);
1621                 while (err > 0) {
1622                         void *cookie;
1623                         struct path link = path;
1624                         nd->flags |= LOOKUP_PARENT;
1625                         err = follow_link(&link, nd, &cookie);
1626                         if (!err)
1627                                 err = lookup_last(nd, &path);
1628                         put_link(nd, &link, cookie);
1629                 }
1630         }
1631
1632         if (!err)
1633                 err = complete_walk(nd);
1634
1635         if (!err && nd->flags & LOOKUP_DIRECTORY) {
1636                 if (!nd->inode->i_op->lookup) {
1637                         path_put(&nd->path);
1638                         err = -ENOTDIR;
1639                 }
1640         }
1641
1642         if (base)
1643                 fput(base);
1644
1645         if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT)) {
1646                 path_put(&nd->root);
1647                 nd->root.mnt = NULL;
1648         }
1649         return err;
1650 }
1651
1652 static int do_path_lookup(int dfd, const char *name,
1653                                 unsigned int flags, struct nameidata *nd)
1654 {
1655         int retval = path_lookupat(dfd, name, flags | LOOKUP_RCU, nd);
1656         if (unlikely(retval == -ECHILD))
1657                 retval = path_lookupat(dfd, name, flags, nd);
1658         if (unlikely(retval == -ESTALE))
1659                 retval = path_lookupat(dfd, name, flags | LOOKUP_REVAL, nd);
1660
1661         if (likely(!retval)) {
1662                 if (unlikely(!audit_dummy_context())) {
1663                         if (nd->path.dentry && nd->inode)
1664                                 audit_inode(name, nd->path.dentry);
1665                 }
1666         }
1667         return retval;
1668 }
1669
1670 int kern_path_parent(const char *name, struct nameidata *nd)
1671 {
1672         return do_path_lookup(AT_FDCWD, name, LOOKUP_PARENT, nd);
1673 }
1674
1675 int kern_path(const char *name, unsigned int flags, struct path *path)
1676 {
1677         struct nameidata nd;
1678         int res = do_path_lookup(AT_FDCWD, name, flags, &nd);
1679         if (!res)
1680                 *path = nd.path;
1681         return res;
1682 }
1683
1684 /**
1685  * vfs_path_lookup - lookup a file path relative to a dentry-vfsmount pair
1686  * @dentry:  pointer to dentry of the base directory
1687  * @mnt: pointer to vfs mount of the base directory
1688  * @name: pointer to file name
1689  * @flags: lookup flags
1690  * @path: pointer to struct path to fill
1691  */
1692 int vfs_path_lookup(struct dentry *dentry, struct vfsmount *mnt,
1693                     const char *name, unsigned int flags,
1694                     struct path *path)
1695 {
1696         struct nameidata nd;
1697         int err;
1698         nd.root.dentry = dentry;
1699         nd.root.mnt = mnt;
1700         BUG_ON(flags & LOOKUP_PARENT);
1701         /* the first argument of do_path_lookup() is ignored with LOOKUP_ROOT */
1702         err = do_path_lookup(AT_FDCWD, name, flags | LOOKUP_ROOT, &nd);
1703         if (!err)
1704                 *path = nd.path;
1705         return err;
1706 }
1707
1708 static struct dentry *__lookup_hash(struct qstr *name,
1709                 struct dentry *base, struct nameidata *nd)
1710 {
1711         struct inode *inode = base->d_inode;
1712         struct dentry *dentry;
1713         int err;
1714
1715         err = inode_permission(inode, MAY_EXEC);
1716         if (err)
1717                 return ERR_PTR(err);
1718
1719         /*
1720          * Don't bother with __d_lookup: callers are for creat as
1721          * well as unlink, so a lot of the time it would cost
1722          * a double lookup.
1723          */
1724         dentry = d_lookup(base, name);
1725
1726         if (dentry && d_need_lookup(dentry)) {
1727                 /*
1728                  * __lookup_hash is called with the parent dir's i_mutex already
1729                  * held, so we are good to go here.
1730                  */
1731                 dentry = d_inode_lookup(base, dentry, nd);
1732                 if (IS_ERR(dentry))
1733                         return dentry;
1734         }
1735
1736         if (dentry && (dentry->d_flags & DCACHE_OP_REVALIDATE)) {
1737                 int status = d_revalidate(dentry, nd);
1738                 if (unlikely(status <= 0)) {
1739                         /*
1740                          * The dentry failed validation.
1741                          * If d_revalidate returned 0 attempt to invalidate
1742                          * the dentry otherwise d_revalidate is asking us
1743                          * to return a fail status.
1744                          */
1745                         if (status < 0) {
1746                                 dput(dentry);
1747                                 return ERR_PTR(status);
1748                         } else if (!d_invalidate(dentry)) {
1749                                 dput(dentry);
1750                                 dentry = NULL;
1751                         }
1752                 }
1753         }
1754
1755         if (!dentry)
1756                 dentry = d_alloc_and_lookup(base, name, nd);
1757
1758         return dentry;
1759 }
1760
1761 /*
1762  * Restricted form of lookup. Doesn't follow links, single-component only,
1763  * needs parent already locked. Doesn't follow mounts.
1764  * SMP-safe.
1765  */
1766 static struct dentry *lookup_hash(struct nameidata *nd)
1767 {
1768         return __lookup_hash(&nd->last, nd->path.dentry, nd);
1769 }
1770
1771 /**
1772  * lookup_one_len - filesystem helper to lookup single pathname component
1773  * @name:       pathname component to lookup
1774  * @base:       base directory to lookup from
1775  * @len:        maximum length @len should be interpreted to
1776  *
1777  * Note that this routine is purely a helper for filesystem usage and should
1778  * not be called by generic code.  Also note that by using this function the
1779  * nameidata argument is passed to the filesystem methods and a filesystem
1780  * using this helper needs to be prepared for that.
1781  */
1782 struct dentry *lookup_one_len(const char *name, struct dentry *base, int len)
1783 {
1784         struct qstr this;
1785         unsigned long hash;
1786         unsigned int c;
1787
1788         WARN_ON_ONCE(!mutex_is_locked(&base->d_inode->i_mutex));
1789
1790         this.name = name;
1791         this.len = len;
1792         if (!len)
1793                 return ERR_PTR(-EACCES);
1794
1795         hash = init_name_hash();
1796         while (len--) {
1797                 c = *(const unsigned char *)name++;
1798                 if (c == '/' || c == '\0')
1799                         return ERR_PTR(-EACCES);
1800                 hash = partial_name_hash(c, hash);
1801         }
1802         this.hash = end_name_hash(hash);
1803         /*
1804          * See if the low-level filesystem might want
1805          * to use its own hash..
1806          */
1807         if (base->d_flags & DCACHE_OP_HASH) {
1808                 int err = base->d_op->d_hash(base, base->d_inode, &this);
1809                 if (err < 0)
1810                         return ERR_PTR(err);
1811         }
1812
1813         return __lookup_hash(&this, base, NULL);
1814 }
1815
1816 int user_path_at_empty(int dfd, const char __user *name, unsigned flags,
1817                  struct path *path, int *empty)
1818 {
1819         struct nameidata nd;
1820         char *tmp = getname_flags(name, flags, empty);
1821         int err = PTR_ERR(tmp);
1822         if (!IS_ERR(tmp)) {
1823
1824                 BUG_ON(flags & LOOKUP_PARENT);
1825
1826                 err = do_path_lookup(dfd, tmp, flags, &nd);
1827                 putname(tmp);
1828                 if (!err)
1829                         *path = nd.path;
1830         }
1831         return err;
1832 }
1833
1834 int user_path_at(int dfd, const char __user *name, unsigned flags,
1835                  struct path *path)
1836 {
1837         return user_path_at_empty(dfd, name, flags, path, 0);
1838 }
1839
1840 static int user_path_parent(int dfd, const char __user *path,
1841                         struct nameidata *nd, char **name)
1842 {
1843         char *s = getname(path);
1844         int error;
1845
1846         if (IS_ERR(s))
1847                 return PTR_ERR(s);
1848
1849         error = do_path_lookup(dfd, s, LOOKUP_PARENT, nd);
1850         if (error)
1851                 putname(s);
1852         else
1853                 *name = s;
1854
1855         return error;
1856 }
1857
1858 /*
1859  * It's inline, so penalty for filesystems that don't use sticky bit is
1860  * minimal.
1861  */
1862 static inline int check_sticky(struct inode *dir, struct inode *inode)
1863 {
1864         uid_t fsuid = current_fsuid();
1865
1866         if (!(dir->i_mode & S_ISVTX))
1867                 return 0;
1868         if (current_user_ns() != inode_userns(inode))
1869                 goto other_userns;
1870         if (inode->i_uid == fsuid)
1871                 return 0;
1872         if (dir->i_uid == fsuid)
1873                 return 0;
1874
1875 other_userns:
1876         return !ns_capable(inode_userns(inode), CAP_FOWNER);
1877 }
1878
1879 /*
1880  *      Check whether we can remove a link victim from directory dir, check
1881  *  whether the type of victim is right.
1882  *  1. We can't do it if dir is read-only (done in permission())
1883  *  2. We should have write and exec permissions on dir
1884  *  3. We can't remove anything from append-only dir
1885  *  4. We can't do anything with immutable dir (done in permission())
1886  *  5. If the sticky bit on dir is set we should either
1887  *      a. be owner of dir, or
1888  *      b. be owner of victim, or
1889  *      c. have CAP_FOWNER capability
1890  *  6. If the victim is append-only or immutable we can't do antyhing with
1891  *     links pointing to it.
1892  *  7. If we were asked to remove a directory and victim isn't one - ENOTDIR.
1893  *  8. If we were asked to remove a non-directory and victim isn't one - EISDIR.
1894  *  9. We can't remove a root or mountpoint.
1895  * 10. We don't allow removal of NFS sillyrenamed files; it's handled by
1896  *     nfs_async_unlink().
1897  */
1898 static int may_delete(struct inode *dir,struct dentry *victim,int isdir)
1899 {
1900         int error;
1901
1902         if (!victim->d_inode)
1903                 return -ENOENT;
1904
1905         BUG_ON(victim->d_parent->d_inode != dir);
1906         audit_inode_child(victim, dir);
1907
1908         error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
1909         if (error)
1910                 return error;
1911         if (IS_APPEND(dir))
1912                 return -EPERM;
1913         if (check_sticky(dir, victim->d_inode)||IS_APPEND(victim->d_inode)||
1914             IS_IMMUTABLE(victim->d_inode) || IS_SWAPFILE(victim->d_inode))
1915                 return -EPERM;
1916         if (isdir) {
1917                 if (!S_ISDIR(victim->d_inode->i_mode))
1918                         return -ENOTDIR;
1919                 if (IS_ROOT(victim))
1920                         return -EBUSY;
1921         } else if (S_ISDIR(victim->d_inode->i_mode))
1922                 return -EISDIR;
1923         if (IS_DEADDIR(dir))
1924                 return -ENOENT;
1925         if (victim->d_flags & DCACHE_NFSFS_RENAMED)
1926                 return -EBUSY;
1927         return 0;
1928 }
1929
1930 /*      Check whether we can create an object with dentry child in directory
1931  *  dir.
1932  *  1. We can't do it if child already exists (open has special treatment for
1933  *     this case, but since we are inlined it's OK)
1934  *  2. We can't do it if dir is read-only (done in permission())
1935  *  3. We should have write and exec permissions on dir
1936  *  4. We can't do it if dir is immutable (done in permission())
1937  */
1938 static inline int may_create(struct inode *dir, struct dentry *child)
1939 {
1940         if (child->d_inode)
1941                 return -EEXIST;
1942         if (IS_DEADDIR(dir))
1943                 return -ENOENT;
1944         return inode_permission(dir, MAY_WRITE | MAY_EXEC);
1945 }
1946
1947 /*
1948  * p1 and p2 should be directories on the same fs.
1949  */
1950 struct dentry *lock_rename(struct dentry *p1, struct dentry *p2)
1951 {
1952         struct dentry *p;
1953
1954         if (p1 == p2) {
1955                 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
1956                 return NULL;
1957         }
1958
1959         mutex_lock(&p1->d_inode->i_sb->s_vfs_rename_mutex);
1960
1961         p = d_ancestor(p2, p1);
1962         if (p) {
1963                 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_PARENT);
1964                 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_CHILD);
1965                 return p;
1966         }
1967
1968         p = d_ancestor(p1, p2);
1969         if (p) {
1970                 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
1971                 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_CHILD);
1972                 return p;
1973         }
1974
1975         mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
1976         mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_CHILD);
1977         return NULL;
1978 }
1979
1980 void unlock_rename(struct dentry *p1, struct dentry *p2)
1981 {
1982         mutex_unlock(&p1->d_inode->i_mutex);
1983         if (p1 != p2) {
1984                 mutex_unlock(&p2->d_inode->i_mutex);
1985                 mutex_unlock(&p1->d_inode->i_sb->s_vfs_rename_mutex);
1986         }
1987 }
1988
1989 int vfs_create(struct inode *dir, struct dentry *dentry, int mode,
1990                 struct nameidata *nd)
1991 {
1992         int error = may_create(dir, dentry);
1993
1994         if (error)
1995                 return error;
1996
1997         if (!dir->i_op->create)
1998                 return -EACCES; /* shouldn't it be ENOSYS? */
1999         mode &= S_IALLUGO;
2000         mode |= S_IFREG;
2001         error = security_inode_create(dir, dentry, mode);
2002         if (error)
2003                 return error;
2004         error = dir->i_op->create(dir, dentry, mode, nd);
2005         if (!error)
2006                 fsnotify_create(dir, dentry);
2007         return error;
2008 }
2009
2010 static int may_open(struct path *path, int acc_mode, int flag)
2011 {
2012         struct dentry *dentry = path->dentry;
2013         struct inode *inode = dentry->d_inode;
2014         int error;
2015
2016         /* O_PATH? */
2017         if (!acc_mode)
2018                 return 0;
2019
2020         if (!inode)
2021                 return -ENOENT;
2022
2023         switch (inode->i_mode & S_IFMT) {
2024         case S_IFLNK:
2025                 return -ELOOP;
2026         case S_IFDIR:
2027                 if (acc_mode & MAY_WRITE)
2028                         return -EISDIR;
2029                 break;
2030         case S_IFBLK:
2031         case S_IFCHR:
2032                 if (path->mnt->mnt_flags & MNT_NODEV)
2033                         return -EACCES;
2034                 /*FALLTHRU*/
2035         case S_IFIFO:
2036         case S_IFSOCK:
2037                 flag &= ~O_TRUNC;
2038                 break;
2039         }
2040
2041         error = inode_permission(inode, acc_mode);
2042         if (error)
2043                 return error;
2044
2045         /*
2046          * An append-only file must be opened in append mode for writing.
2047          */
2048         if (IS_APPEND(inode)) {
2049                 if  ((flag & O_ACCMODE) != O_RDONLY && !(flag & O_APPEND))
2050                         return -EPERM;
2051                 if (flag & O_TRUNC)
2052                         return -EPERM;
2053         }
2054
2055         /* O_NOATIME can only be set by the owner or superuser */
2056         if (flag & O_NOATIME && !inode_owner_or_capable(inode))
2057                 return -EPERM;
2058
2059         return 0;
2060 }
2061
2062 static int handle_truncate(struct file *filp)
2063 {
2064         struct path *path = &filp->f_path;
2065         struct inode *inode = path->dentry->d_inode;
2066         int error = get_write_access(inode);
2067         if (error)
2068                 return error;
2069         /*
2070          * Refuse to truncate files with mandatory locks held on them.
2071          */
2072         error = locks_verify_locked(inode);
2073         if (!error)
2074                 error = security_path_truncate(path);
2075         if (!error) {
2076                 error = do_truncate(path->dentry, 0,
2077                                     ATTR_MTIME|ATTR_CTIME|ATTR_OPEN,
2078                                     filp);
2079         }
2080         put_write_access(inode);
2081         return error;
2082 }
2083
2084 static inline int open_to_namei_flags(int flag)
2085 {
2086         if ((flag & O_ACCMODE) == 3)
2087                 flag--;
2088         return flag;
2089 }
2090
2091 /*
2092  * Handle the last step of open()
2093  */
2094 static struct file *do_last(struct nameidata *nd, struct path *path,
2095                             const struct open_flags *op, const char *pathname)
2096 {
2097         struct dentry *dir = nd->path.dentry;
2098         struct dentry *dentry;
2099         int open_flag = op->open_flag;
2100         int will_truncate = open_flag & O_TRUNC;
2101         int want_write = 0;
2102         int acc_mode = op->acc_mode;
2103         struct file *filp;
2104         int error;
2105
2106         nd->flags &= ~LOOKUP_PARENT;
2107         nd->flags |= op->intent;
2108
2109         switch (nd->last_type) {
2110         case LAST_DOTDOT:
2111         case LAST_DOT:
2112                 error = handle_dots(nd, nd->last_type);
2113                 if (error)
2114                         return ERR_PTR(error);
2115                 /* fallthrough */
2116         case LAST_ROOT:
2117                 error = complete_walk(nd);
2118                 if (error)
2119                         return ERR_PTR(error);
2120                 audit_inode(pathname, nd->path.dentry);
2121                 if (open_flag & O_CREAT) {
2122                         error = -EISDIR;
2123                         goto exit;
2124                 }
2125                 goto ok;
2126         case LAST_BIND:
2127                 error = complete_walk(nd);
2128                 if (error)
2129                         return ERR_PTR(error);
2130                 audit_inode(pathname, dir);
2131                 goto ok;
2132         }
2133
2134         if (!(open_flag & O_CREAT)) {
2135                 int symlink_ok = 0;
2136                 if (nd->last.name[nd->last.len])
2137                         nd->flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
2138                 if (open_flag & O_PATH && !(nd->flags & LOOKUP_FOLLOW))
2139                         symlink_ok = 1;
2140                 /* we _can_ be in RCU mode here */
2141                 error = walk_component(nd, path, &nd->last, LAST_NORM,
2142                                         !symlink_ok);
2143                 if (error < 0)
2144                         return ERR_PTR(error);
2145                 if (error) /* symlink */
2146                         return NULL;
2147                 /* sayonara */
2148                 error = complete_walk(nd);
2149                 if (error)
2150                         return ERR_PTR(error);
2151
2152                 error = -ENOTDIR;
2153                 if (nd->flags & LOOKUP_DIRECTORY) {
2154                         if (!nd->inode->i_op->lookup)
2155                                 goto exit;
2156                 }
2157                 audit_inode(pathname, nd->path.dentry);
2158                 goto ok;
2159         }
2160
2161         /* create side of things */
2162         /*
2163          * This will *only* deal with leaving RCU mode - LOOKUP_JUMPED has been
2164          * cleared when we got to the last component we are about to look up
2165          */
2166         error = complete_walk(nd);
2167         if (error)
2168                 return ERR_PTR(error);
2169
2170         audit_inode(pathname, dir);
2171         error = -EISDIR;
2172         /* trailing slashes? */
2173         if (nd->last.name[nd->last.len])
2174                 goto exit;
2175
2176         mutex_lock(&dir->d_inode->i_mutex);
2177
2178         dentry = lookup_hash(nd);
2179         error = PTR_ERR(dentry);
2180         if (IS_ERR(dentry)) {
2181                 mutex_unlock(&dir->d_inode->i_mutex);
2182                 goto exit;
2183         }
2184
2185         path->dentry = dentry;
2186         path->mnt = nd->path.mnt;
2187
2188         /* Negative dentry, just create the file */
2189         if (!dentry->d_inode) {
2190                 int mode = op->mode;
2191                 if (!IS_POSIXACL(dir->d_inode))
2192                         mode &= ~current_umask();
2193                 /*
2194                  * This write is needed to ensure that a
2195                  * rw->ro transition does not occur between
2196                  * the time when the file is created and when
2197                  * a permanent write count is taken through
2198                  * the 'struct file' in nameidata_to_filp().
2199                  */
2200                 error = mnt_want_write(nd->path.mnt);
2201                 if (error)
2202                         goto exit_mutex_unlock;
2203                 want_write = 1;
2204                 /* Don't check for write permission, don't truncate */
2205                 open_flag &= ~O_TRUNC;
2206                 will_truncate = 0;
2207                 acc_mode = MAY_OPEN;
2208                 error = security_path_mknod(&nd->path, dentry, mode, 0);
2209                 if (error)
2210                         goto exit_mutex_unlock;
2211                 error = vfs_create(dir->d_inode, dentry, mode, nd);
2212                 if (error)
2213                         goto exit_mutex_unlock;
2214                 mutex_unlock(&dir->d_inode->i_mutex);
2215                 dput(nd->path.dentry);
2216                 nd->path.dentry = dentry;
2217                 goto common;
2218         }
2219
2220         /*
2221          * It already exists.
2222          */
2223         mutex_unlock(&dir->d_inode->i_mutex);
2224         audit_inode(pathname, path->dentry);
2225
2226         error = -EEXIST;
2227         if (open_flag & O_EXCL)
2228                 goto exit_dput;
2229
2230         error = follow_managed(path, nd->flags);
2231         if (error < 0)
2232                 goto exit_dput;
2233
2234         if (error)
2235                 nd->flags |= LOOKUP_JUMPED;
2236
2237         error = -ENOENT;
2238         if (!path->dentry->d_inode)
2239                 goto exit_dput;
2240
2241         if (path->dentry->d_inode->i_op->follow_link)
2242                 return NULL;
2243
2244         path_to_nameidata(path, nd);
2245         nd->inode = path->dentry->d_inode;
2246         /* Why this, you ask?  _Now_ we might have grown LOOKUP_JUMPED... */
2247         error = complete_walk(nd);
2248         if (error)
2249                 return ERR_PTR(error);
2250         error = -EISDIR;
2251         if (S_ISDIR(nd->inode->i_mode))
2252                 goto exit;
2253 ok:
2254         if (!S_ISREG(nd->inode->i_mode))
2255                 will_truncate = 0;
2256
2257         if (will_truncate) {
2258                 error = mnt_want_write(nd->path.mnt);
2259                 if (error)
2260                         goto exit;
2261                 want_write = 1;
2262         }
2263 common:
2264         error = may_open(&nd->path, acc_mode, open_flag);
2265         if (error)
2266                 goto exit;
2267         filp = nameidata_to_filp(nd);
2268         if (!IS_ERR(filp)) {
2269                 error = ima_file_check(filp, op->acc_mode);
2270                 if (error) {
2271                         fput(filp);
2272                         filp = ERR_PTR(error);
2273                 }
2274         }
2275         if (!IS_ERR(filp)) {
2276                 if (will_truncate) {
2277                         error = handle_truncate(filp);
2278                         if (error) {
2279                                 fput(filp);
2280                                 filp = ERR_PTR(error);
2281                         }
2282                 }
2283         }
2284 out:
2285         if (want_write)
2286                 mnt_drop_write(nd->path.mnt);
2287         path_put(&nd->path);
2288         return filp;
2289
2290 exit_mutex_unlock:
2291         mutex_unlock(&dir->d_inode->i_mutex);
2292 exit_dput:
2293         path_put_conditional(path, nd);
2294 exit:
2295         filp = ERR_PTR(error);
2296         goto out;
2297 }
2298
2299 static struct file *path_openat(int dfd, const char *pathname,
2300                 struct nameidata *nd, const struct open_flags *op, int flags)
2301 {
2302         struct file *base = NULL;
2303         struct file *filp;
2304         struct path path;
2305         int error;
2306
2307         filp = get_empty_filp();
2308         if (!filp)
2309                 return ERR_PTR(-ENFILE);
2310
2311         filp->f_flags = op->open_flag;
2312         nd->intent.open.file = filp;
2313         nd->intent.open.flags = open_to_namei_flags(op->open_flag);
2314         nd->intent.open.create_mode = op->mode;
2315
2316         error = path_init(dfd, pathname, flags | LOOKUP_PARENT, nd, &base);
2317         if (unlikely(error))
2318                 goto out_filp;
2319
2320         current->total_link_count = 0;
2321         error = link_path_walk(pathname, nd);
2322         if (unlikely(error))
2323                 goto out_filp;
2324
2325         filp = do_last(nd, &path, op, pathname);
2326         while (unlikely(!filp)) { /* trailing symlink */
2327                 struct path link = path;
2328                 void *cookie;
2329                 if (!(nd->flags & LOOKUP_FOLLOW)) {
2330                         path_put_conditional(&path, nd);
2331                         path_put(&nd->path);
2332                         filp = ERR_PTR(-ELOOP);
2333                         break;
2334                 }
2335                 nd->flags |= LOOKUP_PARENT;
2336                 nd->flags &= ~(LOOKUP_OPEN|LOOKUP_CREATE|LOOKUP_EXCL);
2337                 error = follow_link(&link, nd, &cookie);
2338                 if (unlikely(error))
2339                         filp = ERR_PTR(error);
2340                 else
2341                         filp = do_last(nd, &path, op, pathname);
2342                 put_link(nd, &link, cookie);
2343         }
2344 out:
2345         if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT))
2346                 path_put(&nd->root);
2347         if (base)
2348                 fput(base);
2349         release_open_intent(nd);
2350         return filp;
2351
2352 out_filp:
2353         filp = ERR_PTR(error);
2354         goto out;
2355 }
2356
2357 struct file *do_filp_open(int dfd, const char *pathname,
2358                 const struct open_flags *op, int flags)
2359 {
2360         struct nameidata nd;
2361         struct file *filp;
2362
2363         filp = path_openat(dfd, pathname, &nd, op, flags | LOOKUP_RCU);
2364         if (unlikely(filp == ERR_PTR(-ECHILD)))
2365                 filp = path_openat(dfd, pathname, &nd, op, flags);
2366         if (unlikely(filp == ERR_PTR(-ESTALE)))
2367                 filp = path_openat(dfd, pathname, &nd, op, flags | LOOKUP_REVAL);
2368         return filp;
2369 }
2370
2371 struct file *do_file_open_root(struct dentry *dentry, struct vfsmount *mnt,
2372                 const char *name, const struct open_flags *op, int flags)
2373 {
2374         struct nameidata nd;
2375         struct file *file;
2376
2377         nd.root.mnt = mnt;
2378         nd.root.dentry = dentry;
2379
2380         flags |= LOOKUP_ROOT;
2381
2382         if (dentry->d_inode->i_op->follow_link && op->intent & LOOKUP_OPEN)
2383                 return ERR_PTR(-ELOOP);
2384
2385         file = path_openat(-1, name, &nd, op, flags | LOOKUP_RCU);
2386         if (unlikely(file == ERR_PTR(-ECHILD)))
2387                 file = path_openat(-1, name, &nd, op, flags);
2388         if (unlikely(file == ERR_PTR(-ESTALE)))
2389                 file = path_openat(-1, name, &nd, op, flags | LOOKUP_REVAL);
2390         return file;
2391 }
2392
2393 struct dentry *kern_path_create(int dfd, const char *pathname, struct path *path, int is_dir)
2394 {
2395         struct dentry *dentry = ERR_PTR(-EEXIST);
2396         struct nameidata nd;
2397         int error = do_path_lookup(dfd, pathname, LOOKUP_PARENT, &nd);
2398         if (error)
2399                 return ERR_PTR(error);
2400
2401         /*
2402          * Yucky last component or no last component at all?
2403          * (foo/., foo/.., /////)
2404          */
2405         if (nd.last_type != LAST_NORM)
2406                 goto out;
2407         nd.flags &= ~LOOKUP_PARENT;
2408         nd.flags |= LOOKUP_CREATE | LOOKUP_EXCL;
2409         nd.intent.open.flags = O_EXCL;
2410
2411         /*
2412          * Do the final lookup.
2413          */
2414         mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
2415         dentry = lookup_hash(&nd);
2416         if (IS_ERR(dentry))
2417                 goto fail;
2418
2419         if (dentry->d_inode)
2420                 goto eexist;
2421         /*
2422          * Special case - lookup gave negative, but... we had foo/bar/
2423          * From the vfs_mknod() POV we just have a negative dentry -
2424          * all is fine. Let's be bastards - you had / on the end, you've
2425          * been asking for (non-existent) directory. -ENOENT for you.
2426          */
2427         if (unlikely(!is_dir && nd.last.name[nd.last.len])) {
2428                 dput(dentry);
2429                 dentry = ERR_PTR(-ENOENT);
2430                 goto fail;
2431         }
2432         *path = nd.path;
2433         return dentry;
2434 eexist:
2435         dput(dentry);
2436         dentry = ERR_PTR(-EEXIST);
2437 fail:
2438         mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
2439 out:
2440         path_put(&nd.path);
2441         return dentry;
2442 }
2443 EXPORT_SYMBOL(kern_path_create);
2444
2445 struct dentry *user_path_create(int dfd, const char __user *pathname, struct path *path, int is_dir)
2446 {
2447         char *tmp = getname(pathname);
2448         struct dentry *res;
2449         if (IS_ERR(tmp))
2450                 return ERR_CAST(tmp);
2451         res = kern_path_create(dfd, tmp, path, is_dir);
2452         putname(tmp);
2453         return res;
2454 }
2455 EXPORT_SYMBOL(user_path_create);
2456
2457 int vfs_mknod(struct inode *dir, struct dentry *dentry, int mode, dev_t dev)
2458 {
2459         int error = may_create(dir, dentry);
2460
2461         if (error)
2462                 return error;
2463
2464         if ((S_ISCHR(mode) || S_ISBLK(mode)) &&
2465             !ns_capable(inode_userns(dir), CAP_MKNOD))
2466                 return -EPERM;
2467
2468         if (!dir->i_op->mknod)
2469                 return -EPERM;
2470
2471         error = devcgroup_inode_mknod(mode, dev);
2472         if (error)
2473                 return error;
2474
2475         error = security_inode_mknod(dir, dentry, mode, dev);
2476         if (error)
2477                 return error;
2478
2479         error = dir->i_op->mknod(dir, dentry, mode, dev);
2480         if (!error)
2481                 fsnotify_create(dir, dentry);
2482         return error;
2483 }
2484
2485 static int may_mknod(mode_t mode)
2486 {
2487         switch (mode & S_IFMT) {
2488         case S_IFREG:
2489         case S_IFCHR:
2490         case S_IFBLK:
2491         case S_IFIFO:
2492         case S_IFSOCK:
2493         case 0: /* zero mode translates to S_IFREG */
2494                 return 0;
2495         case S_IFDIR:
2496                 return -EPERM;
2497         default:
2498                 return -EINVAL;
2499         }
2500 }
2501
2502 SYSCALL_DEFINE4(mknodat, int, dfd, const char __user *, filename, int, mode,
2503                 unsigned, dev)
2504 {
2505         struct dentry *dentry;
2506         struct path path;
2507         int error;
2508
2509         if (S_ISDIR(mode))
2510                 return -EPERM;
2511
2512         dentry = user_path_create(dfd, filename, &path, 0);
2513         if (IS_ERR(dentry))
2514                 return PTR_ERR(dentry);
2515
2516         if (!IS_POSIXACL(path.dentry->d_inode))
2517                 mode &= ~current_umask();
2518         error = may_mknod(mode);
2519         if (error)
2520                 goto out_dput;
2521         error = mnt_want_write(path.mnt);
2522         if (error)
2523                 goto out_dput;
2524         error = security_path_mknod(&path, dentry, mode, dev);
2525         if (error)
2526                 goto out_drop_write;
2527         switch (mode & S_IFMT) {
2528                 case 0: case S_IFREG:
2529                         error = vfs_create(path.dentry->d_inode,dentry,mode,NULL);
2530                         break;
2531                 case S_IFCHR: case S_IFBLK:
2532                         error = vfs_mknod(path.dentry->d_inode,dentry,mode,
2533                                         new_decode_dev(dev));
2534                         break;
2535                 case S_IFIFO: case S_IFSOCK:
2536                         error = vfs_mknod(path.dentry->d_inode,dentry,mode,0);
2537                         break;
2538         }
2539 out_drop_write:
2540         mnt_drop_write(path.mnt);
2541 out_dput:
2542         dput(dentry);
2543         mutex_unlock(&path.dentry->d_inode->i_mutex);
2544         path_put(&path);
2545
2546         return error;
2547 }
2548
2549 SYSCALL_DEFINE3(mknod, const char __user *, filename, int, mode, unsigned, dev)
2550 {
2551         return sys_mknodat(AT_FDCWD, filename, mode, dev);
2552 }
2553
2554 int vfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
2555 {
2556         int error = may_create(dir, dentry);
2557
2558         if (error)
2559                 return error;
2560
2561         if (!dir->i_op->mkdir)
2562                 return -EPERM;
2563
2564         mode &= (S_IRWXUGO|S_ISVTX);
2565         error = security_inode_mkdir(dir, dentry, mode);
2566         if (error)
2567                 return error;
2568
2569         error = dir->i_op->mkdir(dir, dentry, mode);
2570         if (!error)
2571                 fsnotify_mkdir(dir, dentry);
2572         return error;
2573 }
2574
2575 SYSCALL_DEFINE3(mkdirat, int, dfd, const char __user *, pathname, int, mode)
2576 {
2577         struct dentry *dentry;
2578         struct path path;
2579         int error;
2580
2581         dentry = user_path_create(dfd, pathname, &path, 1);
2582         if (IS_ERR(dentry))
2583                 return PTR_ERR(dentry);
2584
2585         if (!IS_POSIXACL(path.dentry->d_inode))
2586                 mode &= ~current_umask();
2587         error = mnt_want_write(path.mnt);
2588         if (error)
2589                 goto out_dput;
2590         error = security_path_mkdir(&path, dentry, mode);
2591         if (error)
2592                 goto out_drop_write;
2593         error = vfs_mkdir(path.dentry->d_inode, dentry, mode);
2594 out_drop_write:
2595         mnt_drop_write(path.mnt);
2596 out_dput:
2597         dput(dentry);
2598         mutex_unlock(&path.dentry->d_inode->i_mutex);
2599         path_put(&path);
2600         return error;
2601 }
2602
2603 SYSCALL_DEFINE2(mkdir, const char __user *, pathname, int, mode)
2604 {
2605         return sys_mkdirat(AT_FDCWD, pathname, mode);
2606 }
2607
2608 /*
2609  * The dentry_unhash() helper will try to drop the dentry early: we
2610  * should have a usage count of 2 if we're the only user of this
2611  * dentry, and if that is true (possibly after pruning the dcache),
2612  * then we drop the dentry now.
2613  *
2614  * A low-level filesystem can, if it choses, legally
2615  * do a
2616  *
2617  *      if (!d_unhashed(dentry))
2618  *              return -EBUSY;
2619  *
2620  * if it cannot handle the case of removing a directory
2621  * that is still in use by something else..
2622  */
2623 void dentry_unhash(struct dentry *dentry)
2624 {
2625         shrink_dcache_parent(dentry);
2626         spin_lock(&dentry->d_lock);
2627         if (dentry->d_count == 1)
2628                 __d_drop(dentry);
2629         spin_unlock(&dentry->d_lock);
2630 }
2631
2632 int vfs_rmdir(struct inode *dir, struct dentry *dentry)
2633 {
2634         int error = may_delete(dir, dentry, 1);
2635
2636         if (error)
2637                 return error;
2638
2639         if (!dir->i_op->rmdir)
2640                 return -EPERM;
2641
2642         dget(dentry);
2643         mutex_lock(&dentry->d_inode->i_mutex);
2644
2645         error = -EBUSY;
2646         if (d_mountpoint(dentry))
2647                 goto out;
2648
2649         error = security_inode_rmdir(dir, dentry);
2650         if (error)
2651                 goto out;
2652
2653         shrink_dcache_parent(dentry);
2654         error = dir->i_op->rmdir(dir, dentry);
2655         if (error)
2656                 goto out;
2657
2658         dentry->d_inode->i_flags |= S_DEAD;
2659         dont_mount(dentry);
2660
2661 out:
2662         mutex_unlock(&dentry->d_inode->i_mutex);
2663         dput(dentry);
2664         if (!error)
2665                 d_delete(dentry);
2666         return error;
2667 }
2668
2669 static long do_rmdir(int dfd, const char __user *pathname)
2670 {
2671         int error = 0;
2672         char * name;
2673         struct dentry *dentry;
2674         struct nameidata nd;
2675
2676         error = user_path_parent(dfd, pathname, &nd, &name);
2677         if (error)
2678                 return error;
2679
2680         switch(nd.last_type) {
2681         case LAST_DOTDOT:
2682                 error = -ENOTEMPTY;
2683                 goto exit1;
2684         case LAST_DOT:
2685                 error = -EINVAL;
2686                 goto exit1;
2687         case LAST_ROOT:
2688                 error = -EBUSY;
2689                 goto exit1;
2690         }
2691
2692         nd.flags &= ~LOOKUP_PARENT;
2693
2694         mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
2695         dentry = lookup_hash(&nd);
2696         error = PTR_ERR(dentry);
2697         if (IS_ERR(dentry))
2698                 goto exit2;
2699         if (!dentry->d_inode) {
2700                 error = -ENOENT;
2701                 goto exit3;
2702         }
2703         error = mnt_want_write(nd.path.mnt);
2704         if (error)
2705                 goto exit3;
2706         error = security_path_rmdir(&nd.path, dentry);
2707         if (error)
2708                 goto exit4;
2709         error = vfs_rmdir(nd.path.dentry->d_inode, dentry);
2710 exit4:
2711         mnt_drop_write(nd.path.mnt);
2712 exit3:
2713         dput(dentry);
2714 exit2:
2715         mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
2716 exit1:
2717         path_put(&nd.path);
2718         putname(name);
2719         return error;
2720 }
2721
2722 SYSCALL_DEFINE1(rmdir, const char __user *, pathname)
2723 {
2724         return do_rmdir(AT_FDCWD, pathname);
2725 }
2726
2727 int vfs_unlink(struct inode *dir, struct dentry *dentry)
2728 {
2729         int error = may_delete(dir, dentry, 0);
2730
2731         if (error)
2732                 return error;
2733
2734         if (!dir->i_op->unlink)
2735                 return -EPERM;
2736
2737         mutex_lock(&dentry->d_inode->i_mutex);
2738         if (d_mountpoint(dentry))
2739                 error = -EBUSY;
2740         else {
2741                 error = security_inode_unlink(dir, dentry);
2742                 if (!error) {
2743                         error = dir->i_op->unlink(dir, dentry);
2744                         if (!error)
2745                                 dont_mount(dentry);
2746                 }
2747         }
2748         mutex_unlock(&dentry->d_inode->i_mutex);
2749
2750         /* We don't d_delete() NFS sillyrenamed files--they still exist. */
2751         if (!error && !(dentry->d_flags & DCACHE_NFSFS_RENAMED)) {
2752                 fsnotify_link_count(dentry->d_inode);
2753                 d_delete(dentry);
2754         }
2755
2756         return error;
2757 }
2758
2759 /*
2760  * Make sure that the actual truncation of the file will occur outside its
2761  * directory's i_mutex.  Truncate can take a long time if there is a lot of
2762  * writeout happening, and we don't want to prevent access to the directory
2763  * while waiting on the I/O.
2764  */
2765 static long do_unlinkat(int dfd, const char __user *pathname)
2766 {
2767         int error;
2768         char *name;
2769         struct dentry *dentry;
2770         struct nameidata nd;
2771         struct inode *inode = NULL;
2772
2773         error = user_path_parent(dfd, pathname, &nd, &name);
2774         if (error)
2775                 return error;
2776
2777         error = -EISDIR;
2778         if (nd.last_type != LAST_NORM)
2779                 goto exit1;
2780
2781         nd.flags &= ~LOOKUP_PARENT;
2782
2783         mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
2784         dentry = lookup_hash(&nd);
2785         error = PTR_ERR(dentry);
2786         if (!IS_ERR(dentry)) {
2787                 /* Why not before? Because we want correct error value */
2788                 if (nd.last.name[nd.last.len])
2789                         goto slashes;
2790                 inode = dentry->d_inode;
2791                 if (!inode)
2792                         goto slashes;
2793                 ihold(inode);
2794                 error = mnt_want_write(nd.path.mnt);
2795                 if (error)
2796                         goto exit2;
2797                 error = security_path_unlink(&nd.path, dentry);
2798                 if (error)
2799                         goto exit3;
2800                 error = vfs_unlink(nd.path.dentry->d_inode, dentry);
2801 exit3:
2802                 mnt_drop_write(nd.path.mnt);
2803         exit2:
2804                 dput(dentry);
2805         }
2806         mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
2807         if (inode)
2808                 iput(inode);    /* truncate the inode here */
2809 exit1:
2810         path_put(&nd.path);
2811         putname(name);
2812         return error;
2813
2814 slashes:
2815         error = !dentry->d_inode ? -ENOENT :
2816                 S_ISDIR(dentry->d_inode->i_mode) ? -EISDIR : -ENOTDIR;
2817         goto exit2;
2818 }
2819
2820 SYSCALL_DEFINE3(unlinkat, int, dfd, const char __user *, pathname, int, flag)
2821 {
2822         if ((flag & ~AT_REMOVEDIR) != 0)
2823                 return -EINVAL;
2824
2825         if (flag & AT_REMOVEDIR)
2826                 return do_rmdir(dfd, pathname);
2827
2828         return do_unlinkat(dfd, pathname);
2829 }
2830
2831 SYSCALL_DEFINE1(unlink, const char __user *, pathname)
2832 {
2833         return do_unlinkat(AT_FDCWD, pathname);
2834 }
2835
2836 int vfs_symlink(struct inode *dir, struct dentry *dentry, const char *oldname)
2837 {
2838         int error = may_create(dir, dentry);
2839
2840         if (error)
2841                 return error;
2842
2843         if (!dir->i_op->symlink)
2844                 return -EPERM;
2845
2846         error = security_inode_symlink(dir, dentry, oldname);
2847         if (error)
2848                 return error;
2849
2850         error = dir->i_op->symlink(dir, dentry, oldname);
2851         if (!error)
2852                 fsnotify_create(dir, dentry);
2853         return error;
2854 }
2855
2856 SYSCALL_DEFINE3(symlinkat, const char __user *, oldname,
2857                 int, newdfd, const char __user *, newname)
2858 {
2859         int error;
2860         char *from;
2861         struct dentry *dentry;
2862         struct path path;
2863
2864         from = getname(oldname);
2865         if (IS_ERR(from))
2866                 return PTR_ERR(from);
2867
2868         dentry = user_path_create(newdfd, newname, &path, 0);
2869         error = PTR_ERR(dentry);
2870         if (IS_ERR(dentry))
2871                 goto out_putname;
2872
2873         error = mnt_want_write(path.mnt);
2874         if (error)
2875                 goto out_dput;
2876         error = security_path_symlink(&path, dentry, from);
2877         if (error)
2878                 goto out_drop_write;
2879         error = vfs_symlink(path.dentry->d_inode, dentry, from);
2880 out_drop_write:
2881         mnt_drop_write(path.mnt);
2882 out_dput:
2883         dput(dentry);
2884         mutex_unlock(&path.dentry->d_inode->i_mutex);
2885         path_put(&path);
2886 out_putname:
2887         putname(from);
2888         return error;
2889 }
2890
2891 SYSCALL_DEFINE2(symlink, const char __user *, oldname, const char __user *, newname)
2892 {
2893         return sys_symlinkat(oldname, AT_FDCWD, newname);
2894 }
2895
2896 int vfs_link(struct dentry *old_dentry, struct inode *dir, struct dentry *new_dentry)
2897 {
2898         struct inode *inode = old_dentry->d_inode;
2899         int error;
2900
2901         if (!inode)
2902                 return -ENOENT;
2903
2904         error = may_create(dir, new_dentry);
2905         if (error)
2906                 return error;
2907
2908         if (dir->i_sb != inode->i_sb)
2909                 return -EXDEV;
2910
2911         /*
2912          * A link to an append-only or immutable file cannot be created.
2913          */
2914         if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
2915                 return -EPERM;
2916         if (!dir->i_op->link)
2917                 return -EPERM;
2918         if (S_ISDIR(inode->i_mode))
2919                 return -EPERM;
2920
2921         error = security_inode_link(old_dentry, dir, new_dentry);
2922         if (error)
2923                 return error;
2924
2925         mutex_lock(&inode->i_mutex);
2926         /* Make sure we don't allow creating hardlink to an unlinked file */
2927         if (inode->i_nlink == 0)
2928                 error =  -ENOENT;
2929         else
2930                 error = dir->i_op->link(old_dentry, dir, new_dentry);
2931         mutex_unlock(&inode->i_mutex);
2932         if (!error)
2933                 fsnotify_link(dir, inode, new_dentry);
2934         return error;
2935 }
2936
2937 /*
2938  * Hardlinks are often used in delicate situations.  We avoid
2939  * security-related surprises by not following symlinks on the
2940  * newname.  --KAB
2941  *
2942  * We don't follow them on the oldname either to be compatible
2943  * with linux 2.0, and to avoid hard-linking to directories
2944  * and other special files.  --ADM
2945  */
2946 SYSCALL_DEFINE5(linkat, int, olddfd, const char __user *, oldname,
2947                 int, newdfd, const char __user *, newname, int, flags)
2948 {
2949         struct dentry *new_dentry;
2950         struct path old_path, new_path;
2951         int how = 0;
2952         int error;
2953
2954         if ((flags & ~(AT_SYMLINK_FOLLOW | AT_EMPTY_PATH)) != 0)
2955                 return -EINVAL;
2956         /*
2957          * To use null names we require CAP_DAC_READ_SEARCH
2958          * This ensures that not everyone will be able to create
2959          * handlink using the passed filedescriptor.
2960          */
2961         if (flags & AT_EMPTY_PATH) {
2962                 if (!capable(CAP_DAC_READ_SEARCH))
2963                         return -ENOENT;
2964                 how = LOOKUP_EMPTY;
2965         }
2966
2967         if (flags & AT_SYMLINK_FOLLOW)
2968                 how |= LOOKUP_FOLLOW;
2969
2970         error = user_path_at(olddfd, oldname, how, &old_path);
2971         if (error)
2972                 return error;
2973
2974         new_dentry = user_path_create(newdfd, newname, &new_path, 0);
2975         error = PTR_ERR(new_dentry);
2976         if (IS_ERR(new_dentry))
2977                 goto out;
2978
2979         error = -EXDEV;
2980         if (old_path.mnt != new_path.mnt)
2981                 goto out_dput;
2982         error = mnt_want_write(new_path.mnt);
2983         if (error)
2984                 goto out_dput;
2985         error = security_path_link(old_path.dentry, &new_path, new_dentry);
2986         if (error)
2987                 goto out_drop_write;
2988         error = vfs_link(old_path.dentry, new_path.dentry->d_inode, new_dentry);
2989 out_drop_write:
2990         mnt_drop_write(new_path.mnt);
2991 out_dput:
2992         dput(new_dentry);
2993         mutex_unlock(&new_path.dentry->d_inode->i_mutex);
2994         path_put(&new_path);
2995 out:
2996         path_put(&old_path);
2997
2998         return error;
2999 }
3000
3001 SYSCALL_DEFINE2(link, const char __user *, oldname, const char __user *, newname)
3002 {
3003         return sys_linkat(AT_FDCWD, oldname, AT_FDCWD, newname, 0);
3004 }
3005
3006 /*
3007  * The worst of all namespace operations - renaming directory. "Perverted"
3008  * doesn't even start to describe it. Somebody in UCB had a heck of a trip...
3009  * Problems:
3010  *      a) we can get into loop creation. Check is done in is_subdir().
3011  *      b) race potential - two innocent renames can create a loop together.
3012  *         That's where 4.4 screws up. Current fix: serialization on
3013  *         sb->s_vfs_rename_mutex. We might be more accurate, but that's another
3014  *         story.
3015  *      c) we have to lock _three_ objects - parents and victim (if it exists).
3016  *         And that - after we got ->i_mutex on parents (until then we don't know
3017  *         whether the target exists).  Solution: try to be smart with locking
3018  *         order for inodes.  We rely on the fact that tree topology may change
3019  *         only under ->s_vfs_rename_mutex _and_ that parent of the object we
3020  *         move will be locked.  Thus we can rank directories by the tree
3021  *         (ancestors first) and rank all non-directories after them.
3022  *         That works since everybody except rename does "lock parent, lookup,
3023  *         lock child" and rename is under ->s_vfs_rename_mutex.
3024  *         HOWEVER, it relies on the assumption that any object with ->lookup()
3025  *         has no more than 1 dentry.  If "hybrid" objects will ever appear,
3026  *         we'd better make sure that there's no link(2) for them.
3027  *      d) conversion from fhandle to dentry may come in the wrong moment - when
3028  *         we are removing the target. Solution: we will have to grab ->i_mutex
3029  *         in the fhandle_to_dentry code. [FIXME - current nfsfh.c relies on
3030  *         ->i_mutex on parents, which works but leads to some truly excessive
3031  *         locking].
3032  */
3033 static int vfs_rename_dir(struct inode *old_dir, struct dentry *old_dentry,
3034                           struct inode *new_dir, struct dentry *new_dentry)
3035 {
3036         int error = 0;
3037         struct inode *target = new_dentry->d_inode;
3038
3039         /*
3040          * If we are going to change the parent - check write permissions,
3041          * we'll need to flip '..'.
3042          */
3043         if (new_dir != old_dir) {
3044                 error = inode_permission(old_dentry->d_inode, MAY_WRITE);
3045                 if (error)
3046                         return error;
3047         }
3048
3049         error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry);
3050         if (error)
3051                 return error;
3052
3053         dget(new_dentry);
3054         if (target)
3055                 mutex_lock(&target->i_mutex);
3056
3057         error = -EBUSY;
3058         if (d_mountpoint(old_dentry) || d_mountpoint(new_dentry))
3059                 goto out;
3060
3061         if (target)
3062                 shrink_dcache_parent(new_dentry);
3063         error = old_dir->i_op->rename(old_dir, old_dentry, new_dir, new_dentry);
3064         if (error)
3065                 goto out;
3066
3067         if (target) {
3068                 target->i_flags |= S_DEAD;
3069                 dont_mount(new_dentry);
3070         }
3071 out:
3072         if (target)
3073                 mutex_unlock(&target->i_mutex);
3074         dput(new_dentry);
3075         if (!error)
3076                 if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE))
3077                         d_move(old_dentry,new_dentry);
3078         return error;
3079 }
3080
3081 static int vfs_rename_other(struct inode *old_dir, struct dentry *old_dentry,
3082                             struct inode *new_dir, struct dentry *new_dentry)
3083 {
3084         struct inode *target = new_dentry->d_inode;
3085         int error;
3086
3087         error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry);
3088         if (error)
3089                 return error;
3090
3091         dget(new_dentry);
3092         if (target)
3093                 mutex_lock(&target->i_mutex);
3094
3095         error = -EBUSY;
3096         if (d_mountpoint(old_dentry)||d_mountpoint(new_dentry))
3097                 goto out;
3098
3099         error = old_dir->i_op->rename(old_dir, old_dentry, new_dir, new_dentry);
3100         if (error)
3101                 goto out;
3102
3103         if (target)
3104                 dont_mount(new_dentry);
3105         if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE))
3106                 d_move(old_dentry, new_dentry);
3107 out:
3108         if (target)
3109                 mutex_unlock(&target->i_mutex);
3110         dput(new_dentry);
3111         return error;
3112 }
3113
3114 int vfs_rename(struct inode *old_dir, struct dentry *old_dentry,
3115                struct inode *new_dir, struct dentry *new_dentry)
3116 {
3117         int error;
3118         int is_dir = S_ISDIR(old_dentry->d_inode->i_mode);
3119         const unsigned char *old_name;
3120
3121         if (old_dentry->d_inode == new_dentry->d_inode)
3122                 return 0;
3123  
3124         error = may_delete(old_dir, old_dentry, is_dir);
3125         if (error)
3126                 return error;
3127
3128         if (!new_dentry->d_inode)
3129                 error = may_create(new_dir, new_dentry);
3130         else
3131                 error = may_delete(new_dir, new_dentry, is_dir);
3132         if (error)
3133                 return error;
3134
3135         if (!old_dir->i_op->rename)
3136                 return -EPERM;
3137
3138         old_name = fsnotify_oldname_init(old_dentry->d_name.name);
3139
3140         if (is_dir)
3141                 error = vfs_rename_dir(old_dir,old_dentry,new_dir,new_dentry);
3142         else
3143                 error = vfs_rename_other(old_dir,old_dentry,new_dir,new_dentry);
3144         if (!error)
3145                 fsnotify_move(old_dir, new_dir, old_name, is_dir,
3146                               new_dentry->d_inode, old_dentry);
3147         fsnotify_oldname_free(old_name);
3148
3149         return error;
3150 }
3151
3152 SYSCALL_DEFINE4(renameat, int, olddfd, const char __user *, oldname,
3153                 int, newdfd, const char __user *, newname)
3154 {
3155         struct dentry *old_dir, *new_dir;
3156         struct dentry *old_dentry, *new_dentry;
3157         struct dentry *trap;
3158         struct nameidata oldnd, newnd;
3159         char *from;
3160         char *to;
3161         int error;
3162
3163         error = user_path_parent(olddfd, oldname, &oldnd, &from);
3164         if (error)
3165                 goto exit;
3166
3167         error = user_path_parent(newdfd, newname, &newnd, &to);
3168         if (error)
3169                 goto exit1;
3170
3171         error = -EXDEV;
3172         if (oldnd.path.mnt != newnd.path.mnt)
3173                 goto exit2;
3174
3175         old_dir = oldnd.path.dentry;
3176         error = -EBUSY;
3177         if (oldnd.last_type != LAST_NORM)
3178                 goto exit2;
3179
3180         new_dir = newnd.path.dentry;
3181         if (newnd.last_type != LAST_NORM)
3182                 goto exit2;
3183
3184         oldnd.flags &= ~LOOKUP_PARENT;
3185         newnd.flags &= ~LOOKUP_PARENT;
3186         newnd.flags |= LOOKUP_RENAME_TARGET;
3187
3188         trap = lock_rename(new_dir, old_dir);
3189
3190         old_dentry = lookup_hash(&oldnd);
3191         error = PTR_ERR(old_dentry);
3192         if (IS_ERR(old_dentry))
3193                 goto exit3;
3194         /* source must exist */
3195         error = -ENOENT;
3196         if (!old_dentry->d_inode)
3197                 goto exit4;
3198         /* unless the source is a directory trailing slashes give -ENOTDIR */
3199         if (!S_ISDIR(old_dentry->d_inode->i_mode)) {
3200                 error = -ENOTDIR;
3201                 if (oldnd.last.name[oldnd.last.len])
3202                         goto exit4;
3203                 if (newnd.last.name[newnd.last.len])
3204                         goto exit4;
3205         }
3206         /* source should not be ancestor of target */
3207         error = -EINVAL;
3208         if (old_dentry == trap)
3209                 goto exit4;
3210         new_dentry = lookup_hash(&newnd);
3211         error = PTR_ERR(new_dentry);
3212         if (IS_ERR(new_dentry))
3213                 goto exit4;
3214         /* target should not be an ancestor of source */
3215         error = -ENOTEMPTY;
3216         if (new_dentry == trap)
3217                 goto exit5;
3218
3219         error = mnt_want_write(oldnd.path.mnt);
3220         if (error)
3221                 goto exit5;
3222         error = security_path_rename(&oldnd.path, old_dentry,
3223                                      &newnd.path, new_dentry);
3224         if (error)
3225                 goto exit6;
3226         error = vfs_rename(old_dir->d_inode, old_dentry,
3227                                    new_dir->d_inode, new_dentry);
3228 exit6:
3229         mnt_drop_write(oldnd.path.mnt);
3230 exit5:
3231         dput(new_dentry);
3232 exit4:
3233         dput(old_dentry);
3234 exit3:
3235         unlock_rename(new_dir, old_dir);
3236 exit2:
3237         path_put(&newnd.path);
3238         putname(to);
3239 exit1:
3240         path_put(&oldnd.path);
3241         putname(from);
3242 exit:
3243         return error;
3244 }
3245
3246 SYSCALL_DEFINE2(rename, const char __user *, oldname, const char __user *, newname)
3247 {
3248         return sys_renameat(AT_FDCWD, oldname, AT_FDCWD, newname);
3249 }
3250
3251 int vfs_readlink(struct dentry *dentry, char __user *buffer, int buflen, const char *link)
3252 {
3253         int len;
3254
3255         len = PTR_ERR(link);
3256         if (IS_ERR(link))
3257                 goto out;
3258
3259         len = strlen(link);
3260         if (len > (unsigned) buflen)
3261                 len = buflen;
3262         if (copy_to_user(buffer, link, len))
3263                 len = -EFAULT;
3264 out:
3265         return len;
3266 }
3267
3268 /*
3269  * A helper for ->readlink().  This should be used *ONLY* for symlinks that
3270  * have ->follow_link() touching nd only in nd_set_link().  Using (or not
3271  * using) it for any given inode is up to filesystem.
3272  */
3273 int generic_readlink(struct dentry *dentry, char __user *buffer, int buflen)
3274 {
3275         struct nameidata nd;
3276         void *cookie;
3277         int res;
3278
3279         nd.depth = 0;
3280         cookie = dentry->d_inode->i_op->follow_link(dentry, &nd);
3281         if (IS_ERR(cookie))
3282                 return PTR_ERR(cookie);
3283
3284         res = vfs_readlink(dentry, buffer, buflen, nd_get_link(&nd));
3285         if (dentry->d_inode->i_op->put_link)
3286                 dentry->d_inode->i_op->put_link(dentry, &nd, cookie);
3287         return res;
3288 }
3289
3290 int vfs_follow_link(struct nameidata *nd, const char *link)
3291 {
3292         return __vfs_follow_link(nd, link);
3293 }
3294
3295 /* get the link contents into pagecache */
3296 static char *page_getlink(struct dentry * dentry, struct page **ppage)
3297 {
3298         char *kaddr;
3299         struct page *page;
3300         struct address_space *mapping = dentry->d_inode->i_mapping;
3301         page = read_mapping_page(mapping, 0, NULL);
3302         if (IS_ERR(page))
3303                 return (char*)page;
3304         *ppage = page;
3305         kaddr = kmap(page);
3306         nd_terminate_link(kaddr, dentry->d_inode->i_size, PAGE_SIZE - 1);
3307         return kaddr;
3308 }
3309
3310 int page_readlink(struct dentry *dentry, char __user *buffer, int buflen)
3311 {
3312         struct page *page = NULL;
3313         char *s = page_getlink(dentry, &page);
3314         int res = vfs_readlink(dentry,buffer,buflen,s);
3315         if (page) {
3316                 kunmap(page);
3317                 page_cache_release(page);
3318         }
3319         return res;
3320 }
3321
3322 void *page_follow_link_light(struct dentry *dentry, struct nameidata *nd)
3323 {
3324         struct page *page = NULL;
3325         nd_set_link(nd, page_getlink(dentry, &page));
3326         return page;
3327 }
3328
3329 void page_put_link(struct dentry *dentry, struct nameidata *nd, void *cookie)
3330 {
3331         struct page *page = cookie;
3332
3333         if (page) {
3334                 kunmap(page);
3335                 page_cache_release(page);
3336         }
3337 }
3338
3339 /*
3340  * The nofs argument instructs pagecache_write_begin to pass AOP_FLAG_NOFS
3341  */
3342 int __page_symlink(struct inode *inode, const char *symname, int len, int nofs)
3343 {
3344         struct address_space *mapping = inode->i_mapping;
3345         struct page *page;
3346         void *fsdata;
3347         int err;
3348         char *kaddr;
3349         unsigned int flags = AOP_FLAG_UNINTERRUPTIBLE;
3350         if (nofs)
3351                 flags |= AOP_FLAG_NOFS;
3352
3353 retry:
3354         err = pagecache_write_begin(NULL, mapping, 0, len-1,
3355                                 flags, &page, &fsdata);
3356         if (err)
3357                 goto fail;
3358
3359         kaddr = kmap_atomic(page, KM_USER0);
3360         memcpy(kaddr, symname, len-1);
3361         kunmap_atomic(kaddr, KM_USER0);
3362
3363         err = pagecache_write_end(NULL, mapping, 0, len-1, len-1,
3364                                                         page, fsdata);
3365         if (err < 0)
3366                 goto fail;
3367         if (err < len-1)
3368                 goto retry;
3369
3370         mark_inode_dirty(inode);
3371         return 0;
3372 fail:
3373         return err;
3374 }
3375
3376 int page_symlink(struct inode *inode, const char *symname, int len)
3377 {
3378         return __page_symlink(inode, symname, len,
3379                         !(mapping_gfp_mask(inode->i_mapping) & __GFP_FS));
3380 }
3381
3382 const struct inode_operations page_symlink_inode_operations = {
3383         .readlink       = generic_readlink,
3384         .follow_link    = page_follow_link_light,
3385         .put_link       = page_put_link,
3386 };
3387
3388 EXPORT_SYMBOL(user_path_at);
3389 EXPORT_SYMBOL(follow_down_one);
3390 EXPORT_SYMBOL(follow_down);
3391 EXPORT_SYMBOL(follow_up);
3392 EXPORT_SYMBOL(get_write_access); /* binfmt_aout */
3393 EXPORT_SYMBOL(getname);
3394 EXPORT_SYMBOL(lock_rename);
3395 EXPORT_SYMBOL(lookup_one_len);
3396 EXPORT_SYMBOL(page_follow_link_light);
3397 EXPORT_SYMBOL(page_put_link);
3398 EXPORT_SYMBOL(page_readlink);
3399 EXPORT_SYMBOL(__page_symlink);
3400 EXPORT_SYMBOL(page_symlink);
3401 EXPORT_SYMBOL(page_symlink_inode_operations);
3402 EXPORT_SYMBOL(kern_path);
3403 EXPORT_SYMBOL(vfs_path_lookup);
3404 EXPORT_SYMBOL(inode_permission);
3405 EXPORT_SYMBOL(unlock_rename);
3406 EXPORT_SYMBOL(vfs_create);
3407 EXPORT_SYMBOL(vfs_follow_link);
3408 EXPORT_SYMBOL(vfs_link);
3409 EXPORT_SYMBOL(vfs_mkdir);
3410 EXPORT_SYMBOL(vfs_mknod);
3411 EXPORT_SYMBOL(generic_permission);
3412 EXPORT_SYMBOL(vfs_readlink);
3413 EXPORT_SYMBOL(vfs_rename);
3414 EXPORT_SYMBOL(vfs_rmdir);
3415 EXPORT_SYMBOL(vfs_symlink);
3416 EXPORT_SYMBOL(vfs_unlink);
3417 EXPORT_SYMBOL(dentry_unhash);
3418 EXPORT_SYMBOL(generic_readlink);