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