pandora: defconfig: update
[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 struct dentry *lookup_hash(struct nameidata *nd)
1793 {
1794         return __lookup_hash(&nd->last, nd->path.dentry, nd);
1795 }
1796 EXPORT_SYMBOL(lookup_hash);
1797
1798 /**
1799  * lookup_one_len - filesystem helper to lookup single pathname component
1800  * @name:       pathname component to lookup
1801  * @base:       base directory to lookup from
1802  * @len:        maximum length @len should be interpreted to
1803  *
1804  * Note that this routine is purely a helper for filesystem usage and should
1805  * not be called by generic code.  Also note that by using this function the
1806  * nameidata argument is passed to the filesystem methods and a filesystem
1807  * using this helper needs to be prepared for that.
1808  */
1809 struct dentry *lookup_one_len(const char *name, struct dentry *base, int len)
1810 {
1811         struct qstr this;
1812         unsigned long hash;
1813         unsigned int c;
1814
1815         WARN_ON_ONCE(!mutex_is_locked(&base->d_inode->i_mutex));
1816
1817         this.name = name;
1818         this.len = len;
1819         if (!len)
1820                 return ERR_PTR(-EACCES);
1821
1822         hash = init_name_hash();
1823         while (len--) {
1824                 c = *(const unsigned char *)name++;
1825                 if (c == '/' || c == '\0')
1826                         return ERR_PTR(-EACCES);
1827                 hash = partial_name_hash(c, hash);
1828         }
1829         this.hash = end_name_hash(hash);
1830         /*
1831          * See if the low-level filesystem might want
1832          * to use its own hash..
1833          */
1834         if (base->d_flags & DCACHE_OP_HASH) {
1835                 int err = base->d_op->d_hash(base, base->d_inode, &this);
1836                 if (err < 0)
1837                         return ERR_PTR(err);
1838         }
1839
1840         return __lookup_hash(&this, base, NULL);
1841 }
1842
1843 int user_path_at_empty(int dfd, const char __user *name, unsigned flags,
1844                  struct path *path, int *empty)
1845 {
1846         struct nameidata nd;
1847         char *tmp = getname_flags(name, flags, empty);
1848         int err = PTR_ERR(tmp);
1849         if (!IS_ERR(tmp)) {
1850
1851                 BUG_ON(flags & LOOKUP_PARENT);
1852
1853                 err = do_path_lookup(dfd, tmp, flags, &nd);
1854                 putname(tmp);
1855                 if (!err)
1856                         *path = nd.path;
1857         }
1858         return err;
1859 }
1860
1861 int user_path_at(int dfd, const char __user *name, unsigned flags,
1862                  struct path *path)
1863 {
1864         return user_path_at_empty(dfd, name, flags, path, 0);
1865 }
1866
1867 static int user_path_parent(int dfd, const char __user *path,
1868                         struct nameidata *nd, char **name)
1869 {
1870         char *s = getname(path);
1871         int error;
1872
1873         if (IS_ERR(s))
1874                 return PTR_ERR(s);
1875
1876         error = do_path_lookup(dfd, s, LOOKUP_PARENT, nd);
1877         if (error)
1878                 putname(s);
1879         else
1880                 *name = s;
1881
1882         return error;
1883 }
1884
1885 /*
1886  * It's inline, so penalty for filesystems that don't use sticky bit is
1887  * minimal.
1888  */
1889 static inline int check_sticky(struct inode *dir, struct inode *inode)
1890 {
1891         uid_t fsuid = current_fsuid();
1892
1893         if (!(dir->i_mode & S_ISVTX))
1894                 return 0;
1895         if (current_user_ns() != inode_userns(inode))
1896                 goto other_userns;
1897         if (inode->i_uid == fsuid)
1898                 return 0;
1899         if (dir->i_uid == fsuid)
1900                 return 0;
1901
1902 other_userns:
1903         return !ns_capable(inode_userns(inode), CAP_FOWNER);
1904 }
1905
1906 /*
1907  *      Check whether we can remove a link victim from directory dir, check
1908  *  whether the type of victim is right.
1909  *  1. We can't do it if dir is read-only (done in permission())
1910  *  2. We should have write and exec permissions on dir
1911  *  3. We can't remove anything from append-only dir
1912  *  4. We can't do anything with immutable dir (done in permission())
1913  *  5. If the sticky bit on dir is set we should either
1914  *      a. be owner of dir, or
1915  *      b. be owner of victim, or
1916  *      c. have CAP_FOWNER capability
1917  *  6. If the victim is append-only or immutable we can't do antyhing with
1918  *     links pointing to it.
1919  *  7. If we were asked to remove a directory and victim isn't one - ENOTDIR.
1920  *  8. If we were asked to remove a non-directory and victim isn't one - EISDIR.
1921  *  9. We can't remove a root or mountpoint.
1922  * 10. We don't allow removal of NFS sillyrenamed files; it's handled by
1923  *     nfs_async_unlink().
1924  */
1925 static int may_delete(struct inode *dir,struct dentry *victim,int isdir)
1926 {
1927         int error;
1928
1929         if (!victim->d_inode)
1930                 return -ENOENT;
1931
1932         BUG_ON(victim->d_parent->d_inode != dir);
1933         audit_inode_child(victim, dir);
1934
1935         error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
1936         if (error)
1937                 return error;
1938         if (IS_APPEND(dir))
1939                 return -EPERM;
1940         if (check_sticky(dir, victim->d_inode)||IS_APPEND(victim->d_inode)||
1941             IS_IMMUTABLE(victim->d_inode) || IS_SWAPFILE(victim->d_inode))
1942                 return -EPERM;
1943         if (isdir) {
1944                 if (!S_ISDIR(victim->d_inode->i_mode))
1945                         return -ENOTDIR;
1946                 if (IS_ROOT(victim))
1947                         return -EBUSY;
1948         } else if (S_ISDIR(victim->d_inode->i_mode))
1949                 return -EISDIR;
1950         if (IS_DEADDIR(dir))
1951                 return -ENOENT;
1952         if (victim->d_flags & DCACHE_NFSFS_RENAMED)
1953                 return -EBUSY;
1954         return 0;
1955 }
1956
1957 /*      Check whether we can create an object with dentry child in directory
1958  *  dir.
1959  *  1. We can't do it if child already exists (open has special treatment for
1960  *     this case, but since we are inlined it's OK)
1961  *  2. We can't do it if dir is read-only (done in permission())
1962  *  3. We should have write and exec permissions on dir
1963  *  4. We can't do it if dir is immutable (done in permission())
1964  */
1965 static inline int may_create(struct inode *dir, struct dentry *child)
1966 {
1967         if (child->d_inode)
1968                 return -EEXIST;
1969         if (IS_DEADDIR(dir))
1970                 return -ENOENT;
1971         return inode_permission(dir, MAY_WRITE | MAY_EXEC);
1972 }
1973
1974 /*
1975  * p1 and p2 should be directories on the same fs.
1976  */
1977 struct dentry *lock_rename(struct dentry *p1, struct dentry *p2)
1978 {
1979         struct dentry *p;
1980
1981         if (p1 == p2) {
1982                 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
1983                 return NULL;
1984         }
1985
1986         mutex_lock(&p1->d_inode->i_sb->s_vfs_rename_mutex);
1987
1988         p = d_ancestor(p2, p1);
1989         if (p) {
1990                 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_PARENT);
1991                 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_CHILD);
1992                 return p;
1993         }
1994
1995         p = d_ancestor(p1, p2);
1996         if (p) {
1997                 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
1998                 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_CHILD);
1999                 return p;
2000         }
2001
2002         mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
2003         mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_CHILD);
2004         return NULL;
2005 }
2006
2007 void unlock_rename(struct dentry *p1, struct dentry *p2)
2008 {
2009         mutex_unlock(&p1->d_inode->i_mutex);
2010         if (p1 != p2) {
2011                 mutex_unlock(&p2->d_inode->i_mutex);
2012                 mutex_unlock(&p1->d_inode->i_sb->s_vfs_rename_mutex);
2013         }
2014 }
2015
2016 int vfs_create(struct inode *dir, struct dentry *dentry, int mode,
2017                 struct nameidata *nd)
2018 {
2019         int error = may_create(dir, dentry);
2020
2021         if (error)
2022                 return error;
2023
2024         if (!dir->i_op->create)
2025                 return -EACCES; /* shouldn't it be ENOSYS? */
2026         mode &= S_IALLUGO;
2027         mode |= S_IFREG;
2028         error = security_inode_create(dir, dentry, mode);
2029         if (error)
2030                 return error;
2031         error = dir->i_op->create(dir, dentry, mode, nd);
2032         if (!error)
2033                 fsnotify_create(dir, dentry);
2034         return error;
2035 }
2036
2037 static int may_open(struct path *path, int acc_mode, int flag)
2038 {
2039         struct dentry *dentry = path->dentry;
2040         struct inode *inode = dentry->d_inode;
2041         int error;
2042
2043         /* O_PATH? */
2044         if (!acc_mode)
2045                 return 0;
2046
2047         if (!inode)
2048                 return -ENOENT;
2049
2050         switch (inode->i_mode & S_IFMT) {
2051         case S_IFLNK:
2052                 return -ELOOP;
2053         case S_IFDIR:
2054                 if (acc_mode & MAY_WRITE)
2055                         return -EISDIR;
2056                 break;
2057         case S_IFBLK:
2058         case S_IFCHR:
2059                 if (path->mnt->mnt_flags & MNT_NODEV)
2060                         return -EACCES;
2061                 /*FALLTHRU*/
2062         case S_IFIFO:
2063         case S_IFSOCK:
2064                 flag &= ~O_TRUNC;
2065                 break;
2066         }
2067
2068         error = inode_permission(inode, acc_mode);
2069         if (error)
2070                 return error;
2071
2072         /*
2073          * An append-only file must be opened in append mode for writing.
2074          */
2075         if (IS_APPEND(inode)) {
2076                 if  ((flag & O_ACCMODE) != O_RDONLY && !(flag & O_APPEND))
2077                         return -EPERM;
2078                 if (flag & O_TRUNC)
2079                         return -EPERM;
2080         }
2081
2082         /* O_NOATIME can only be set by the owner or superuser */
2083         if (flag & O_NOATIME && !inode_owner_or_capable(inode))
2084                 return -EPERM;
2085
2086         return 0;
2087 }
2088
2089 static int handle_truncate(struct file *filp)
2090 {
2091         struct path *path = &filp->f_path;
2092         struct inode *inode = path->dentry->d_inode;
2093         int error = get_write_access(inode);
2094         if (error)
2095                 return error;
2096         /*
2097          * Refuse to truncate files with mandatory locks held on them.
2098          */
2099         error = locks_verify_locked(inode);
2100         if (!error)
2101                 error = security_path_truncate(path);
2102         if (!error) {
2103                 error = do_truncate(path->dentry, 0,
2104                                     ATTR_MTIME|ATTR_CTIME|ATTR_OPEN,
2105                                     filp);
2106         }
2107         put_write_access(inode);
2108         return error;
2109 }
2110
2111 static inline int open_to_namei_flags(int flag)
2112 {
2113         if ((flag & O_ACCMODE) == 3)
2114                 flag--;
2115         return flag;
2116 }
2117
2118 /*
2119  * Handle the last step of open()
2120  */
2121 static struct file *do_last(struct nameidata *nd, struct path *path,
2122                             const struct open_flags *op, const char *pathname)
2123 {
2124         struct dentry *dir = nd->path.dentry;
2125         struct dentry *dentry;
2126         int open_flag = op->open_flag;
2127         int will_truncate = open_flag & O_TRUNC;
2128         int want_write = 0;
2129         int acc_mode = op->acc_mode;
2130         struct file *filp;
2131         int error;
2132
2133         nd->flags &= ~LOOKUP_PARENT;
2134         nd->flags |= op->intent;
2135
2136         switch (nd->last_type) {
2137         case LAST_DOTDOT:
2138         case LAST_DOT:
2139                 error = handle_dots(nd, nd->last_type);
2140                 if (error)
2141                         return ERR_PTR(error);
2142                 /* fallthrough */
2143         case LAST_ROOT:
2144                 error = complete_walk(nd);
2145                 if (error)
2146                         return ERR_PTR(error);
2147                 audit_inode(pathname, nd->path.dentry);
2148                 if (open_flag & O_CREAT) {
2149                         error = -EISDIR;
2150                         goto exit;
2151                 }
2152                 goto ok;
2153         case LAST_BIND:
2154                 error = complete_walk(nd);
2155                 if (error)
2156                         return ERR_PTR(error);
2157                 audit_inode(pathname, dir);
2158                 goto ok;
2159         }
2160
2161         if (!(open_flag & O_CREAT)) {
2162                 int symlink_ok = 0;
2163                 if (nd->last.name[nd->last.len])
2164                         nd->flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
2165                 if (open_flag & O_PATH && !(nd->flags & LOOKUP_FOLLOW))
2166                         symlink_ok = 1;
2167                 /* we _can_ be in RCU mode here */
2168                 error = walk_component(nd, path, &nd->last, LAST_NORM,
2169                                         !symlink_ok);
2170                 if (error < 0)
2171                         return ERR_PTR(error);
2172                 if (error) /* symlink */
2173                         return NULL;
2174                 /* sayonara */
2175                 error = complete_walk(nd);
2176                 if (error)
2177                         return ERR_PTR(error);
2178
2179                 error = -ENOTDIR;
2180                 if (nd->flags & LOOKUP_DIRECTORY) {
2181                         if (!nd->inode->i_op->lookup)
2182                                 goto exit;
2183                 }
2184                 audit_inode(pathname, nd->path.dentry);
2185                 goto ok;
2186         }
2187
2188         /* create side of things */
2189         /*
2190          * This will *only* deal with leaving RCU mode - LOOKUP_JUMPED has been
2191          * cleared when we got to the last component we are about to look up
2192          */
2193         error = complete_walk(nd);
2194         if (error)
2195                 return ERR_PTR(error);
2196
2197         audit_inode(pathname, dir);
2198         error = -EISDIR;
2199         /* trailing slashes? */
2200         if (nd->last.name[nd->last.len])
2201                 goto exit;
2202
2203         mutex_lock(&dir->d_inode->i_mutex);
2204
2205         dentry = lookup_hash(nd);
2206         error = PTR_ERR(dentry);
2207         if (IS_ERR(dentry)) {
2208                 mutex_unlock(&dir->d_inode->i_mutex);
2209                 goto exit;
2210         }
2211
2212         path->dentry = dentry;
2213         path->mnt = nd->path.mnt;
2214
2215         /* Negative dentry, just create the file */
2216         if (!dentry->d_inode) {
2217                 int mode = op->mode;
2218                 if (!IS_POSIXACL(dir->d_inode))
2219                         mode &= ~current_umask();
2220                 /*
2221                  * This write is needed to ensure that a
2222                  * rw->ro transition does not occur between
2223                  * the time when the file is created and when
2224                  * a permanent write count is taken through
2225                  * the 'struct file' in nameidata_to_filp().
2226                  */
2227                 error = mnt_want_write(nd->path.mnt);
2228                 if (error)
2229                         goto exit_mutex_unlock;
2230                 want_write = 1;
2231                 /* Don't check for write permission, don't truncate */
2232                 open_flag &= ~O_TRUNC;
2233                 will_truncate = 0;
2234                 acc_mode = MAY_OPEN;
2235                 error = security_path_mknod(&nd->path, dentry, mode, 0);
2236                 if (error)
2237                         goto exit_mutex_unlock;
2238                 error = vfs_create(dir->d_inode, dentry, mode, nd);
2239                 if (error)
2240                         goto exit_mutex_unlock;
2241                 mutex_unlock(&dir->d_inode->i_mutex);
2242                 dput(nd->path.dentry);
2243                 nd->path.dentry = dentry;
2244                 goto common;
2245         }
2246
2247         /*
2248          * It already exists.
2249          */
2250         mutex_unlock(&dir->d_inode->i_mutex);
2251         audit_inode(pathname, path->dentry);
2252
2253         error = -EEXIST;
2254         if (open_flag & O_EXCL)
2255                 goto exit_dput;
2256
2257         error = follow_managed(path, nd->flags);
2258         if (error < 0)
2259                 goto exit_dput;
2260
2261         if (error)
2262                 nd->flags |= LOOKUP_JUMPED;
2263
2264         error = -ENOENT;
2265         if (!path->dentry->d_inode)
2266                 goto exit_dput;
2267
2268         if (path->dentry->d_inode->i_op->follow_link)
2269                 return NULL;
2270
2271         path_to_nameidata(path, nd);
2272         nd->inode = path->dentry->d_inode;
2273         /* Why this, you ask?  _Now_ we might have grown LOOKUP_JUMPED... */
2274         error = complete_walk(nd);
2275         if (error)
2276                 return ERR_PTR(error);
2277         error = -EISDIR;
2278         if (S_ISDIR(nd->inode->i_mode))
2279                 goto exit;
2280 ok:
2281         if (!S_ISREG(nd->inode->i_mode))
2282                 will_truncate = 0;
2283
2284         if (will_truncate) {
2285                 error = mnt_want_write(nd->path.mnt);
2286                 if (error)
2287                         goto exit;
2288                 want_write = 1;
2289         }
2290 common:
2291         error = may_open(&nd->path, acc_mode, open_flag);
2292         if (error)
2293                 goto exit;
2294         filp = nameidata_to_filp(nd);
2295         if (!IS_ERR(filp)) {
2296                 error = ima_file_check(filp, op->acc_mode);
2297                 if (error) {
2298                         fput(filp);
2299                         filp = ERR_PTR(error);
2300                 }
2301         }
2302         if (!IS_ERR(filp)) {
2303                 if (will_truncate) {
2304                         error = handle_truncate(filp);
2305                         if (error) {
2306                                 fput(filp);
2307                                 filp = ERR_PTR(error);
2308                         }
2309                 }
2310         }
2311 out:
2312         if (want_write)
2313                 mnt_drop_write(nd->path.mnt);
2314         path_put(&nd->path);
2315         return filp;
2316
2317 exit_mutex_unlock:
2318         mutex_unlock(&dir->d_inode->i_mutex);
2319 exit_dput:
2320         path_put_conditional(path, nd);
2321 exit:
2322         filp = ERR_PTR(error);
2323         goto out;
2324 }
2325
2326 static struct file *path_openat(int dfd, const char *pathname,
2327                 struct nameidata *nd, const struct open_flags *op, int flags)
2328 {
2329         struct file *base = NULL;
2330         struct file *filp;
2331         struct path path;
2332         int error;
2333
2334         filp = get_empty_filp();
2335         if (!filp)
2336                 return ERR_PTR(-ENFILE);
2337
2338         filp->f_flags = op->open_flag;
2339         nd->intent.open.file = filp;
2340         nd->intent.open.flags = open_to_namei_flags(op->open_flag);
2341         nd->intent.open.create_mode = op->mode;
2342
2343         error = path_init(dfd, pathname, flags | LOOKUP_PARENT, nd, &base);
2344         if (unlikely(error))
2345                 goto out_filp;
2346
2347         current->total_link_count = 0;
2348         error = link_path_walk(pathname, nd);
2349         if (unlikely(error))
2350                 goto out_filp;
2351
2352         filp = do_last(nd, &path, op, pathname);
2353         while (unlikely(!filp)) { /* trailing symlink */
2354                 struct path link = path;
2355                 void *cookie;
2356                 if (!(nd->flags & LOOKUP_FOLLOW)) {
2357                         path_put_conditional(&path, nd);
2358                         path_put(&nd->path);
2359                         filp = ERR_PTR(-ELOOP);
2360                         break;
2361                 }
2362                 nd->flags |= LOOKUP_PARENT;
2363                 nd->flags &= ~(LOOKUP_OPEN|LOOKUP_CREATE|LOOKUP_EXCL);
2364                 error = follow_link(&link, nd, &cookie);
2365                 if (unlikely(error))
2366                         filp = ERR_PTR(error);
2367                 else
2368                         filp = do_last(nd, &path, op, pathname);
2369                 put_link(nd, &link, cookie);
2370         }
2371 out:
2372         if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT))
2373                 path_put(&nd->root);
2374         if (base)
2375                 fput(base);
2376         release_open_intent(nd);
2377         return filp;
2378
2379 out_filp:
2380         filp = ERR_PTR(error);
2381         goto out;
2382 }
2383
2384 struct file *do_filp_open(int dfd, const char *pathname,
2385                 const struct open_flags *op, int flags)
2386 {
2387         struct nameidata nd;
2388         struct file *filp;
2389
2390         filp = path_openat(dfd, pathname, &nd, op, flags | LOOKUP_RCU);
2391         if (unlikely(filp == ERR_PTR(-ECHILD)))
2392                 filp = path_openat(dfd, pathname, &nd, op, flags);
2393         if (unlikely(filp == ERR_PTR(-ESTALE)))
2394                 filp = path_openat(dfd, pathname, &nd, op, flags | LOOKUP_REVAL);
2395         return filp;
2396 }
2397
2398 struct file *do_file_open_root(struct dentry *dentry, struct vfsmount *mnt,
2399                 const char *name, const struct open_flags *op, int flags)
2400 {
2401         struct nameidata nd;
2402         struct file *file;
2403
2404         nd.root.mnt = mnt;
2405         nd.root.dentry = dentry;
2406
2407         flags |= LOOKUP_ROOT;
2408
2409         if (dentry->d_inode->i_op->follow_link && op->intent & LOOKUP_OPEN)
2410                 return ERR_PTR(-ELOOP);
2411
2412         file = path_openat(-1, name, &nd, op, flags | LOOKUP_RCU);
2413         if (unlikely(file == ERR_PTR(-ECHILD)))
2414                 file = path_openat(-1, name, &nd, op, flags);
2415         if (unlikely(file == ERR_PTR(-ESTALE)))
2416                 file = path_openat(-1, name, &nd, op, flags | LOOKUP_REVAL);
2417         return file;
2418 }
2419
2420 struct dentry *kern_path_create(int dfd, const char *pathname, struct path *path, int is_dir)
2421 {
2422         struct dentry *dentry = ERR_PTR(-EEXIST);
2423         struct nameidata nd;
2424         int error = do_path_lookup(dfd, pathname, LOOKUP_PARENT, &nd);
2425         if (error)
2426                 return ERR_PTR(error);
2427
2428         /*
2429          * Yucky last component or no last component at all?
2430          * (foo/., foo/.., /////)
2431          */
2432         if (nd.last_type != LAST_NORM)
2433                 goto out;
2434         nd.flags &= ~LOOKUP_PARENT;
2435         nd.flags |= LOOKUP_CREATE | LOOKUP_EXCL;
2436         nd.intent.open.flags = O_EXCL;
2437
2438         /*
2439          * Do the final lookup.
2440          */
2441         mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
2442         dentry = lookup_hash(&nd);
2443         if (IS_ERR(dentry))
2444                 goto fail;
2445
2446         if (dentry->d_inode)
2447                 goto eexist;
2448         /*
2449          * Special case - lookup gave negative, but... we had foo/bar/
2450          * From the vfs_mknod() POV we just have a negative dentry -
2451          * all is fine. Let's be bastards - you had / on the end, you've
2452          * been asking for (non-existent) directory. -ENOENT for you.
2453          */
2454         if (unlikely(!is_dir && nd.last.name[nd.last.len])) {
2455                 dput(dentry);
2456                 dentry = ERR_PTR(-ENOENT);
2457                 goto fail;
2458         }
2459         *path = nd.path;
2460         return dentry;
2461 eexist:
2462         dput(dentry);
2463         dentry = ERR_PTR(-EEXIST);
2464 fail:
2465         mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
2466 out:
2467         path_put(&nd.path);
2468         return dentry;
2469 }
2470 EXPORT_SYMBOL(kern_path_create);
2471
2472 struct dentry *user_path_create(int dfd, const char __user *pathname, struct path *path, int is_dir)
2473 {
2474         char *tmp = getname(pathname);
2475         struct dentry *res;
2476         if (IS_ERR(tmp))
2477                 return ERR_CAST(tmp);
2478         res = kern_path_create(dfd, tmp, path, is_dir);
2479         putname(tmp);
2480         return res;
2481 }
2482 EXPORT_SYMBOL(user_path_create);
2483
2484 int vfs_mknod(struct inode *dir, struct dentry *dentry, int mode, dev_t dev)
2485 {
2486         int error = may_create(dir, dentry);
2487
2488         if (error)
2489                 return error;
2490
2491         if ((S_ISCHR(mode) || S_ISBLK(mode)) &&
2492             !ns_capable(inode_userns(dir), CAP_MKNOD))
2493                 return -EPERM;
2494
2495         if (!dir->i_op->mknod)
2496                 return -EPERM;
2497
2498         error = devcgroup_inode_mknod(mode, dev);
2499         if (error)
2500                 return error;
2501
2502         error = security_inode_mknod(dir, dentry, mode, dev);
2503         if (error)
2504                 return error;
2505
2506         error = dir->i_op->mknod(dir, dentry, mode, dev);
2507         if (!error)
2508                 fsnotify_create(dir, dentry);
2509         return error;
2510 }
2511
2512 static int may_mknod(mode_t mode)
2513 {
2514         switch (mode & S_IFMT) {
2515         case S_IFREG:
2516         case S_IFCHR:
2517         case S_IFBLK:
2518         case S_IFIFO:
2519         case S_IFSOCK:
2520         case 0: /* zero mode translates to S_IFREG */
2521                 return 0;
2522         case S_IFDIR:
2523                 return -EPERM;
2524         default:
2525                 return -EINVAL;
2526         }
2527 }
2528
2529 SYSCALL_DEFINE4(mknodat, int, dfd, const char __user *, filename, int, mode,
2530                 unsigned, dev)
2531 {
2532         struct dentry *dentry;
2533         struct path path;
2534         int error;
2535
2536         if (S_ISDIR(mode))
2537                 return -EPERM;
2538
2539         dentry = user_path_create(dfd, filename, &path, 0);
2540         if (IS_ERR(dentry))
2541                 return PTR_ERR(dentry);
2542
2543         if (!IS_POSIXACL(path.dentry->d_inode))
2544                 mode &= ~current_umask();
2545         error = may_mknod(mode);
2546         if (error)
2547                 goto out_dput;
2548         error = mnt_want_write(path.mnt);
2549         if (error)
2550                 goto out_dput;
2551         error = security_path_mknod(&path, dentry, mode, dev);
2552         if (error)
2553                 goto out_drop_write;
2554         switch (mode & S_IFMT) {
2555                 case 0: case S_IFREG:
2556                         error = vfs_create(path.dentry->d_inode,dentry,mode,NULL);
2557                         break;
2558                 case S_IFCHR: case S_IFBLK:
2559                         error = vfs_mknod(path.dentry->d_inode,dentry,mode,
2560                                         new_decode_dev(dev));
2561                         break;
2562                 case S_IFIFO: case S_IFSOCK:
2563                         error = vfs_mknod(path.dentry->d_inode,dentry,mode,0);
2564                         break;
2565         }
2566 out_drop_write:
2567         mnt_drop_write(path.mnt);
2568 out_dput:
2569         dput(dentry);
2570         mutex_unlock(&path.dentry->d_inode->i_mutex);
2571         path_put(&path);
2572
2573         return error;
2574 }
2575
2576 SYSCALL_DEFINE3(mknod, const char __user *, filename, int, mode, unsigned, dev)
2577 {
2578         return sys_mknodat(AT_FDCWD, filename, mode, dev);
2579 }
2580
2581 int vfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
2582 {
2583         int error = may_create(dir, dentry);
2584
2585         if (error)
2586                 return error;
2587
2588         if (!dir->i_op->mkdir)
2589                 return -EPERM;
2590
2591         mode &= (S_IRWXUGO|S_ISVTX);
2592         error = security_inode_mkdir(dir, dentry, mode);
2593         if (error)
2594                 return error;
2595
2596         error = dir->i_op->mkdir(dir, dentry, mode);
2597         if (!error)
2598                 fsnotify_mkdir(dir, dentry);
2599         return error;
2600 }
2601
2602 SYSCALL_DEFINE3(mkdirat, int, dfd, const char __user *, pathname, int, mode)
2603 {
2604         struct dentry *dentry;
2605         struct path path;
2606         int error;
2607
2608         dentry = user_path_create(dfd, pathname, &path, 1);
2609         if (IS_ERR(dentry))
2610                 return PTR_ERR(dentry);
2611
2612         if (!IS_POSIXACL(path.dentry->d_inode))
2613                 mode &= ~current_umask();
2614         error = mnt_want_write(path.mnt);
2615         if (error)
2616                 goto out_dput;
2617         error = security_path_mkdir(&path, dentry, mode);
2618         if (error)
2619                 goto out_drop_write;
2620         error = vfs_mkdir(path.dentry->d_inode, dentry, mode);
2621 out_drop_write:
2622         mnt_drop_write(path.mnt);
2623 out_dput:
2624         dput(dentry);
2625         mutex_unlock(&path.dentry->d_inode->i_mutex);
2626         path_put(&path);
2627         return error;
2628 }
2629
2630 SYSCALL_DEFINE2(mkdir, const char __user *, pathname, int, mode)
2631 {
2632         return sys_mkdirat(AT_FDCWD, pathname, mode);
2633 }
2634
2635 /*
2636  * The dentry_unhash() helper will try to drop the dentry early: we
2637  * should have a usage count of 2 if we're the only user of this
2638  * dentry, and if that is true (possibly after pruning the dcache),
2639  * then we drop the dentry now.
2640  *
2641  * A low-level filesystem can, if it choses, legally
2642  * do a
2643  *
2644  *      if (!d_unhashed(dentry))
2645  *              return -EBUSY;
2646  *
2647  * if it cannot handle the case of removing a directory
2648  * that is still in use by something else..
2649  */
2650 void dentry_unhash(struct dentry *dentry)
2651 {
2652         shrink_dcache_parent(dentry);
2653         spin_lock(&dentry->d_lock);
2654         if (dentry->d_count == 1)
2655                 __d_drop(dentry);
2656         spin_unlock(&dentry->d_lock);
2657 }
2658
2659 int vfs_rmdir(struct inode *dir, struct dentry *dentry)
2660 {
2661         int error = may_delete(dir, dentry, 1);
2662
2663         if (error)
2664                 return error;
2665
2666         if (!dir->i_op->rmdir)
2667                 return -EPERM;
2668
2669         dget(dentry);
2670         mutex_lock(&dentry->d_inode->i_mutex);
2671
2672         error = -EBUSY;
2673         if (d_mountpoint(dentry))
2674                 goto out;
2675
2676         error = security_inode_rmdir(dir, dentry);
2677         if (error)
2678                 goto out;
2679
2680         shrink_dcache_parent(dentry);
2681         error = dir->i_op->rmdir(dir, dentry);
2682         if (error)
2683                 goto out;
2684
2685         dentry->d_inode->i_flags |= S_DEAD;
2686         dont_mount(dentry);
2687
2688 out:
2689         mutex_unlock(&dentry->d_inode->i_mutex);
2690         dput(dentry);
2691         if (!error)
2692                 d_delete(dentry);
2693         return error;
2694 }
2695
2696 static long do_rmdir(int dfd, const char __user *pathname)
2697 {
2698         int error = 0;
2699         char * name;
2700         struct dentry *dentry;
2701         struct nameidata nd;
2702
2703         error = user_path_parent(dfd, pathname, &nd, &name);
2704         if (error)
2705                 return error;
2706
2707         switch(nd.last_type) {
2708         case LAST_DOTDOT:
2709                 error = -ENOTEMPTY;
2710                 goto exit1;
2711         case LAST_DOT:
2712                 error = -EINVAL;
2713                 goto exit1;
2714         case LAST_ROOT:
2715                 error = -EBUSY;
2716                 goto exit1;
2717         }
2718
2719         nd.flags &= ~LOOKUP_PARENT;
2720
2721         mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
2722         dentry = lookup_hash(&nd);
2723         error = PTR_ERR(dentry);
2724         if (IS_ERR(dentry))
2725                 goto exit2;
2726         if (!dentry->d_inode) {
2727                 error = -ENOENT;
2728                 goto exit3;
2729         }
2730         error = mnt_want_write(nd.path.mnt);
2731         if (error)
2732                 goto exit3;
2733         error = security_path_rmdir(&nd.path, dentry);
2734         if (error)
2735                 goto exit4;
2736         error = vfs_rmdir(nd.path.dentry->d_inode, dentry);
2737 exit4:
2738         mnt_drop_write(nd.path.mnt);
2739 exit3:
2740         dput(dentry);
2741 exit2:
2742         mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
2743 exit1:
2744         path_put(&nd.path);
2745         putname(name);
2746         return error;
2747 }
2748
2749 SYSCALL_DEFINE1(rmdir, const char __user *, pathname)
2750 {
2751         return do_rmdir(AT_FDCWD, pathname);
2752 }
2753
2754 int vfs_unlink(struct inode *dir, struct dentry *dentry)
2755 {
2756         int error = may_delete(dir, dentry, 0);
2757
2758         if (error)
2759                 return error;
2760
2761         if (!dir->i_op->unlink)
2762                 return -EPERM;
2763
2764         mutex_lock(&dentry->d_inode->i_mutex);
2765         if (d_mountpoint(dentry))
2766                 error = -EBUSY;
2767         else {
2768                 error = security_inode_unlink(dir, dentry);
2769                 if (!error) {
2770                         error = dir->i_op->unlink(dir, dentry);
2771                         if (!error)
2772                                 dont_mount(dentry);
2773                 }
2774         }
2775         mutex_unlock(&dentry->d_inode->i_mutex);
2776
2777         /* We don't d_delete() NFS sillyrenamed files--they still exist. */
2778         if (!error && !(dentry->d_flags & DCACHE_NFSFS_RENAMED)) {
2779                 fsnotify_link_count(dentry->d_inode);
2780                 d_delete(dentry);
2781         }
2782
2783         return error;
2784 }
2785
2786 /*
2787  * Make sure that the actual truncation of the file will occur outside its
2788  * directory's i_mutex.  Truncate can take a long time if there is a lot of
2789  * writeout happening, and we don't want to prevent access to the directory
2790  * while waiting on the I/O.
2791  */
2792 static long do_unlinkat(int dfd, const char __user *pathname)
2793 {
2794         int error;
2795         char *name;
2796         struct dentry *dentry;
2797         struct nameidata nd;
2798         struct inode *inode = NULL;
2799
2800         error = user_path_parent(dfd, pathname, &nd, &name);
2801         if (error)
2802                 return error;
2803
2804         error = -EISDIR;
2805         if (nd.last_type != LAST_NORM)
2806                 goto exit1;
2807
2808         nd.flags &= ~LOOKUP_PARENT;
2809
2810         mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
2811         dentry = lookup_hash(&nd);
2812         error = PTR_ERR(dentry);
2813         if (!IS_ERR(dentry)) {
2814                 /* Why not before? Because we want correct error value */
2815                 if (nd.last.name[nd.last.len])
2816                         goto slashes;
2817                 inode = dentry->d_inode;
2818                 if (!inode)
2819                         goto slashes;
2820                 ihold(inode);
2821                 error = mnt_want_write(nd.path.mnt);
2822                 if (error)
2823                         goto exit2;
2824                 error = security_path_unlink(&nd.path, dentry);
2825                 if (error)
2826                         goto exit3;
2827                 error = vfs_unlink(nd.path.dentry->d_inode, dentry);
2828 exit3:
2829                 mnt_drop_write(nd.path.mnt);
2830         exit2:
2831                 dput(dentry);
2832         }
2833         mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
2834         if (inode)
2835                 iput(inode);    /* truncate the inode here */
2836 exit1:
2837         path_put(&nd.path);
2838         putname(name);
2839         return error;
2840
2841 slashes:
2842         error = !dentry->d_inode ? -ENOENT :
2843                 S_ISDIR(dentry->d_inode->i_mode) ? -EISDIR : -ENOTDIR;
2844         goto exit2;
2845 }
2846
2847 SYSCALL_DEFINE3(unlinkat, int, dfd, const char __user *, pathname, int, flag)
2848 {
2849         if ((flag & ~AT_REMOVEDIR) != 0)
2850                 return -EINVAL;
2851
2852         if (flag & AT_REMOVEDIR)
2853                 return do_rmdir(dfd, pathname);
2854
2855         return do_unlinkat(dfd, pathname);
2856 }
2857
2858 SYSCALL_DEFINE1(unlink, const char __user *, pathname)
2859 {
2860         return do_unlinkat(AT_FDCWD, pathname);
2861 }
2862
2863 int vfs_symlink(struct inode *dir, struct dentry *dentry, const char *oldname)
2864 {
2865         int error = may_create(dir, dentry);
2866
2867         if (error)
2868                 return error;
2869
2870         if (!dir->i_op->symlink)
2871                 return -EPERM;
2872
2873         error = security_inode_symlink(dir, dentry, oldname);
2874         if (error)
2875                 return error;
2876
2877         error = dir->i_op->symlink(dir, dentry, oldname);
2878         if (!error)
2879                 fsnotify_create(dir, dentry);
2880         return error;
2881 }
2882
2883 SYSCALL_DEFINE3(symlinkat, const char __user *, oldname,
2884                 int, newdfd, const char __user *, newname)
2885 {
2886         int error;
2887         char *from;
2888         struct dentry *dentry;
2889         struct path path;
2890
2891         from = getname(oldname);
2892         if (IS_ERR(from))
2893                 return PTR_ERR(from);
2894
2895         dentry = user_path_create(newdfd, newname, &path, 0);
2896         error = PTR_ERR(dentry);
2897         if (IS_ERR(dentry))
2898                 goto out_putname;
2899
2900         error = mnt_want_write(path.mnt);
2901         if (error)
2902                 goto out_dput;
2903         error = security_path_symlink(&path, dentry, from);
2904         if (error)
2905                 goto out_drop_write;
2906         error = vfs_symlink(path.dentry->d_inode, dentry, from);
2907 out_drop_write:
2908         mnt_drop_write(path.mnt);
2909 out_dput:
2910         dput(dentry);
2911         mutex_unlock(&path.dentry->d_inode->i_mutex);
2912         path_put(&path);
2913 out_putname:
2914         putname(from);
2915         return error;
2916 }
2917
2918 SYSCALL_DEFINE2(symlink, const char __user *, oldname, const char __user *, newname)
2919 {
2920         return sys_symlinkat(oldname, AT_FDCWD, newname);
2921 }
2922
2923 int vfs_link(struct dentry *old_dentry, struct inode *dir, struct dentry *new_dentry)
2924 {
2925         struct inode *inode = old_dentry->d_inode;
2926         int error;
2927
2928         if (!inode)
2929                 return -ENOENT;
2930
2931         error = may_create(dir, new_dentry);
2932         if (error)
2933                 return error;
2934
2935         if (dir->i_sb != inode->i_sb)
2936                 return -EXDEV;
2937
2938         /*
2939          * A link to an append-only or immutable file cannot be created.
2940          */
2941         if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
2942                 return -EPERM;
2943         if (!dir->i_op->link)
2944                 return -EPERM;
2945         if (S_ISDIR(inode->i_mode))
2946                 return -EPERM;
2947
2948         error = security_inode_link(old_dentry, dir, new_dentry);
2949         if (error)
2950                 return error;
2951
2952         mutex_lock(&inode->i_mutex);
2953         /* Make sure we don't allow creating hardlink to an unlinked file */
2954         if (inode->i_nlink == 0)
2955                 error =  -ENOENT;
2956         else
2957                 error = dir->i_op->link(old_dentry, dir, new_dentry);
2958         mutex_unlock(&inode->i_mutex);
2959         if (!error)
2960                 fsnotify_link(dir, inode, new_dentry);
2961         return error;
2962 }
2963
2964 /*
2965  * Hardlinks are often used in delicate situations.  We avoid
2966  * security-related surprises by not following symlinks on the
2967  * newname.  --KAB
2968  *
2969  * We don't follow them on the oldname either to be compatible
2970  * with linux 2.0, and to avoid hard-linking to directories
2971  * and other special files.  --ADM
2972  */
2973 SYSCALL_DEFINE5(linkat, int, olddfd, const char __user *, oldname,
2974                 int, newdfd, const char __user *, newname, int, flags)
2975 {
2976         struct dentry *new_dentry;
2977         struct path old_path, new_path;
2978         int how = 0;
2979         int error;
2980
2981         if ((flags & ~(AT_SYMLINK_FOLLOW | AT_EMPTY_PATH)) != 0)
2982                 return -EINVAL;
2983         /*
2984          * To use null names we require CAP_DAC_READ_SEARCH
2985          * This ensures that not everyone will be able to create
2986          * handlink using the passed filedescriptor.
2987          */
2988         if (flags & AT_EMPTY_PATH) {
2989                 if (!capable(CAP_DAC_READ_SEARCH))
2990                         return -ENOENT;
2991                 how = LOOKUP_EMPTY;
2992         }
2993
2994         if (flags & AT_SYMLINK_FOLLOW)
2995                 how |= LOOKUP_FOLLOW;
2996
2997         error = user_path_at(olddfd, oldname, how, &old_path);
2998         if (error)
2999                 return error;
3000
3001         new_dentry = user_path_create(newdfd, newname, &new_path, 0);
3002         error = PTR_ERR(new_dentry);
3003         if (IS_ERR(new_dentry))
3004                 goto out;
3005
3006         error = -EXDEV;
3007         if (old_path.mnt != new_path.mnt)
3008                 goto out_dput;
3009         error = mnt_want_write(new_path.mnt);
3010         if (error)
3011                 goto out_dput;
3012         error = security_path_link(old_path.dentry, &new_path, new_dentry);
3013         if (error)
3014                 goto out_drop_write;
3015         error = vfs_link(old_path.dentry, new_path.dentry->d_inode, new_dentry);
3016 out_drop_write:
3017         mnt_drop_write(new_path.mnt);
3018 out_dput:
3019         dput(new_dentry);
3020         mutex_unlock(&new_path.dentry->d_inode->i_mutex);
3021         path_put(&new_path);
3022 out:
3023         path_put(&old_path);
3024
3025         return error;
3026 }
3027
3028 SYSCALL_DEFINE2(link, const char __user *, oldname, const char __user *, newname)
3029 {
3030         return sys_linkat(AT_FDCWD, oldname, AT_FDCWD, newname, 0);
3031 }
3032
3033 /*
3034  * The worst of all namespace operations - renaming directory. "Perverted"
3035  * doesn't even start to describe it. Somebody in UCB had a heck of a trip...
3036  * Problems:
3037  *      a) we can get into loop creation. Check is done in is_subdir().
3038  *      b) race potential - two innocent renames can create a loop together.
3039  *         That's where 4.4 screws up. Current fix: serialization on
3040  *         sb->s_vfs_rename_mutex. We might be more accurate, but that's another
3041  *         story.
3042  *      c) we have to lock _three_ objects - parents and victim (if it exists).
3043  *         And that - after we got ->i_mutex on parents (until then we don't know
3044  *         whether the target exists).  Solution: try to be smart with locking
3045  *         order for inodes.  We rely on the fact that tree topology may change
3046  *         only under ->s_vfs_rename_mutex _and_ that parent of the object we
3047  *         move will be locked.  Thus we can rank directories by the tree
3048  *         (ancestors first) and rank all non-directories after them.
3049  *         That works since everybody except rename does "lock parent, lookup,
3050  *         lock child" and rename is under ->s_vfs_rename_mutex.
3051  *         HOWEVER, it relies on the assumption that any object with ->lookup()
3052  *         has no more than 1 dentry.  If "hybrid" objects will ever appear,
3053  *         we'd better make sure that there's no link(2) for them.
3054  *      d) conversion from fhandle to dentry may come in the wrong moment - when
3055  *         we are removing the target. Solution: we will have to grab ->i_mutex
3056  *         in the fhandle_to_dentry code. [FIXME - current nfsfh.c relies on
3057  *         ->i_mutex on parents, which works but leads to some truly excessive
3058  *         locking].
3059  */
3060 static int vfs_rename_dir(struct inode *old_dir, struct dentry *old_dentry,
3061                           struct inode *new_dir, struct dentry *new_dentry)
3062 {
3063         int error = 0;
3064         struct inode *target = new_dentry->d_inode;
3065
3066         /*
3067          * If we are going to change the parent - check write permissions,
3068          * we'll need to flip '..'.
3069          */
3070         if (new_dir != old_dir) {
3071                 error = inode_permission(old_dentry->d_inode, MAY_WRITE);
3072                 if (error)
3073                         return error;
3074         }
3075
3076         error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry);
3077         if (error)
3078                 return error;
3079
3080         dget(new_dentry);
3081         if (target)
3082                 mutex_lock(&target->i_mutex);
3083
3084         error = -EBUSY;
3085         if (d_mountpoint(old_dentry) || d_mountpoint(new_dentry))
3086                 goto out;
3087
3088         if (target)
3089                 shrink_dcache_parent(new_dentry);
3090         error = old_dir->i_op->rename(old_dir, old_dentry, new_dir, new_dentry);
3091         if (error)
3092                 goto out;
3093
3094         if (target) {
3095                 target->i_flags |= S_DEAD;
3096                 dont_mount(new_dentry);
3097         }
3098 out:
3099         if (target)
3100                 mutex_unlock(&target->i_mutex);
3101         dput(new_dentry);
3102         if (!error)
3103                 if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE))
3104                         d_move(old_dentry,new_dentry);
3105         return error;
3106 }
3107
3108 static int vfs_rename_other(struct inode *old_dir, struct dentry *old_dentry,
3109                             struct inode *new_dir, struct dentry *new_dentry)
3110 {
3111         struct inode *target = new_dentry->d_inode;
3112         int error;
3113
3114         error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry);
3115         if (error)
3116                 return error;
3117
3118         dget(new_dentry);
3119         if (target)
3120                 mutex_lock(&target->i_mutex);
3121
3122         error = -EBUSY;
3123         if (d_mountpoint(old_dentry)||d_mountpoint(new_dentry))
3124                 goto out;
3125
3126         error = old_dir->i_op->rename(old_dir, old_dentry, new_dir, new_dentry);
3127         if (error)
3128                 goto out;
3129
3130         if (target)
3131                 dont_mount(new_dentry);
3132         if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE))
3133                 d_move(old_dentry, new_dentry);
3134 out:
3135         if (target)
3136                 mutex_unlock(&target->i_mutex);
3137         dput(new_dentry);
3138         return error;
3139 }
3140
3141 int vfs_rename(struct inode *old_dir, struct dentry *old_dentry,
3142                struct inode *new_dir, struct dentry *new_dentry)
3143 {
3144         int error;
3145         int is_dir = S_ISDIR(old_dentry->d_inode->i_mode);
3146         const unsigned char *old_name;
3147
3148         if (old_dentry->d_inode == new_dentry->d_inode)
3149                 return 0;
3150  
3151         error = may_delete(old_dir, old_dentry, is_dir);
3152         if (error)
3153                 return error;
3154
3155         if (!new_dentry->d_inode)
3156                 error = may_create(new_dir, new_dentry);
3157         else
3158                 error = may_delete(new_dir, new_dentry, is_dir);
3159         if (error)
3160                 return error;
3161
3162         if (!old_dir->i_op->rename)
3163                 return -EPERM;
3164
3165         old_name = fsnotify_oldname_init(old_dentry->d_name.name);
3166
3167         if (is_dir)
3168                 error = vfs_rename_dir(old_dir,old_dentry,new_dir,new_dentry);
3169         else
3170                 error = vfs_rename_other(old_dir,old_dentry,new_dir,new_dentry);
3171         if (!error)
3172                 fsnotify_move(old_dir, new_dir, old_name, is_dir,
3173                               new_dentry->d_inode, old_dentry);
3174         fsnotify_oldname_free(old_name);
3175
3176         return error;
3177 }
3178
3179 SYSCALL_DEFINE4(renameat, int, olddfd, const char __user *, oldname,
3180                 int, newdfd, const char __user *, newname)
3181 {
3182         struct dentry *old_dir, *new_dir;
3183         struct dentry *old_dentry, *new_dentry;
3184         struct dentry *trap;
3185         struct nameidata oldnd, newnd;
3186         char *from;
3187         char *to;
3188         int error;
3189
3190         error = user_path_parent(olddfd, oldname, &oldnd, &from);
3191         if (error)
3192                 goto exit;
3193
3194         error = user_path_parent(newdfd, newname, &newnd, &to);
3195         if (error)
3196                 goto exit1;
3197
3198         error = -EXDEV;
3199         if (oldnd.path.mnt != newnd.path.mnt)
3200                 goto exit2;
3201
3202         old_dir = oldnd.path.dentry;
3203         error = -EBUSY;
3204         if (oldnd.last_type != LAST_NORM)
3205                 goto exit2;
3206
3207         new_dir = newnd.path.dentry;
3208         if (newnd.last_type != LAST_NORM)
3209                 goto exit2;
3210
3211         oldnd.flags &= ~LOOKUP_PARENT;
3212         newnd.flags &= ~LOOKUP_PARENT;
3213         newnd.flags |= LOOKUP_RENAME_TARGET;
3214
3215         trap = lock_rename(new_dir, old_dir);
3216
3217         old_dentry = lookup_hash(&oldnd);
3218         error = PTR_ERR(old_dentry);
3219         if (IS_ERR(old_dentry))
3220                 goto exit3;
3221         /* source must exist */
3222         error = -ENOENT;
3223         if (!old_dentry->d_inode)
3224                 goto exit4;
3225         /* unless the source is a directory trailing slashes give -ENOTDIR */
3226         if (!S_ISDIR(old_dentry->d_inode->i_mode)) {
3227                 error = -ENOTDIR;
3228                 if (oldnd.last.name[oldnd.last.len])
3229                         goto exit4;
3230                 if (newnd.last.name[newnd.last.len])
3231                         goto exit4;
3232         }
3233         /* source should not be ancestor of target */
3234         error = -EINVAL;
3235         if (old_dentry == trap)
3236                 goto exit4;
3237         new_dentry = lookup_hash(&newnd);
3238         error = PTR_ERR(new_dentry);
3239         if (IS_ERR(new_dentry))
3240                 goto exit4;
3241         /* target should not be an ancestor of source */
3242         error = -ENOTEMPTY;
3243         if (new_dentry == trap)
3244                 goto exit5;
3245
3246         error = mnt_want_write(oldnd.path.mnt);
3247         if (error)
3248                 goto exit5;
3249         error = security_path_rename(&oldnd.path, old_dentry,
3250                                      &newnd.path, new_dentry);
3251         if (error)
3252                 goto exit6;
3253         error = vfs_rename(old_dir->d_inode, old_dentry,
3254                                    new_dir->d_inode, new_dentry);
3255 exit6:
3256         mnt_drop_write(oldnd.path.mnt);
3257 exit5:
3258         dput(new_dentry);
3259 exit4:
3260         dput(old_dentry);
3261 exit3:
3262         unlock_rename(new_dir, old_dir);
3263 exit2:
3264         path_put(&newnd.path);
3265         putname(to);
3266 exit1:
3267         path_put(&oldnd.path);
3268         putname(from);
3269 exit:
3270         return error;
3271 }
3272
3273 SYSCALL_DEFINE2(rename, const char __user *, oldname, const char __user *, newname)
3274 {
3275         return sys_renameat(AT_FDCWD, oldname, AT_FDCWD, newname);
3276 }
3277
3278 int vfs_readlink(struct dentry *dentry, char __user *buffer, int buflen, const char *link)
3279 {
3280         int len;
3281
3282         len = PTR_ERR(link);
3283         if (IS_ERR(link))
3284                 goto out;
3285
3286         len = strlen(link);
3287         if (len > (unsigned) buflen)
3288                 len = buflen;
3289         if (copy_to_user(buffer, link, len))
3290                 len = -EFAULT;
3291 out:
3292         return len;
3293 }
3294
3295 /*
3296  * A helper for ->readlink().  This should be used *ONLY* for symlinks that
3297  * have ->follow_link() touching nd only in nd_set_link().  Using (or not
3298  * using) it for any given inode is up to filesystem.
3299  */
3300 int generic_readlink(struct dentry *dentry, char __user *buffer, int buflen)
3301 {
3302         struct nameidata nd;
3303         void *cookie;
3304         int res;
3305
3306         nd.depth = 0;
3307         cookie = dentry->d_inode->i_op->follow_link(dentry, &nd);
3308         if (IS_ERR(cookie))
3309                 return PTR_ERR(cookie);
3310
3311         res = vfs_readlink(dentry, buffer, buflen, nd_get_link(&nd));
3312         if (dentry->d_inode->i_op->put_link)
3313                 dentry->d_inode->i_op->put_link(dentry, &nd, cookie);
3314         return res;
3315 }
3316
3317 int vfs_follow_link(struct nameidata *nd, const char *link)
3318 {
3319         return __vfs_follow_link(nd, link);
3320 }
3321
3322 /* get the link contents into pagecache */
3323 static char *page_getlink(struct dentry * dentry, struct page **ppage)
3324 {
3325         char *kaddr;
3326         struct page *page;
3327         struct address_space *mapping = dentry->d_inode->i_mapping;
3328         page = read_mapping_page(mapping, 0, NULL);
3329         if (IS_ERR(page))
3330                 return (char*)page;
3331         *ppage = page;
3332         kaddr = kmap(page);
3333         nd_terminate_link(kaddr, dentry->d_inode->i_size, PAGE_SIZE - 1);
3334         return kaddr;
3335 }
3336
3337 int page_readlink(struct dentry *dentry, char __user *buffer, int buflen)
3338 {
3339         struct page *page = NULL;
3340         char *s = page_getlink(dentry, &page);
3341         int res = vfs_readlink(dentry,buffer,buflen,s);
3342         if (page) {
3343                 kunmap(page);
3344                 page_cache_release(page);
3345         }
3346         return res;
3347 }
3348
3349 void *page_follow_link_light(struct dentry *dentry, struct nameidata *nd)
3350 {
3351         struct page *page = NULL;
3352         nd_set_link(nd, page_getlink(dentry, &page));
3353         return page;
3354 }
3355
3356 void page_put_link(struct dentry *dentry, struct nameidata *nd, void *cookie)
3357 {
3358         struct page *page = cookie;
3359
3360         if (page) {
3361                 kunmap(page);
3362                 page_cache_release(page);
3363         }
3364 }
3365
3366 /*
3367  * The nofs argument instructs pagecache_write_begin to pass AOP_FLAG_NOFS
3368  */
3369 int __page_symlink(struct inode *inode, const char *symname, int len, int nofs)
3370 {
3371         struct address_space *mapping = inode->i_mapping;
3372         struct page *page;
3373         void *fsdata;
3374         int err;
3375         char *kaddr;
3376         unsigned int flags = AOP_FLAG_UNINTERRUPTIBLE;
3377         if (nofs)
3378                 flags |= AOP_FLAG_NOFS;
3379
3380 retry:
3381         err = pagecache_write_begin(NULL, mapping, 0, len-1,
3382                                 flags, &page, &fsdata);
3383         if (err)
3384                 goto fail;
3385
3386         kaddr = kmap_atomic(page, KM_USER0);
3387         memcpy(kaddr, symname, len-1);
3388         kunmap_atomic(kaddr, KM_USER0);
3389
3390         err = pagecache_write_end(NULL, mapping, 0, len-1, len-1,
3391                                                         page, fsdata);
3392         if (err < 0)
3393                 goto fail;
3394         if (err < len-1)
3395                 goto retry;
3396
3397         mark_inode_dirty(inode);
3398         return 0;
3399 fail:
3400         return err;
3401 }
3402
3403 int page_symlink(struct inode *inode, const char *symname, int len)
3404 {
3405         return __page_symlink(inode, symname, len,
3406                         !(mapping_gfp_mask(inode->i_mapping) & __GFP_FS));
3407 }
3408
3409 const struct inode_operations page_symlink_inode_operations = {
3410         .readlink       = generic_readlink,
3411         .follow_link    = page_follow_link_light,
3412         .put_link       = page_put_link,
3413 };
3414
3415 EXPORT_SYMBOL(user_path_at);
3416 EXPORT_SYMBOL(follow_down_one);
3417 EXPORT_SYMBOL(follow_down);
3418 EXPORT_SYMBOL(follow_up);
3419 EXPORT_SYMBOL(get_write_access); /* binfmt_aout */
3420 EXPORT_SYMBOL(getname);
3421 EXPORT_SYMBOL(lock_rename);
3422 EXPORT_SYMBOL(lookup_one_len);
3423 EXPORT_SYMBOL(page_follow_link_light);
3424 EXPORT_SYMBOL(page_put_link);
3425 EXPORT_SYMBOL(page_readlink);
3426 EXPORT_SYMBOL(__page_symlink);
3427 EXPORT_SYMBOL(page_symlink);
3428 EXPORT_SYMBOL(page_symlink_inode_operations);
3429 EXPORT_SYMBOL(kern_path);
3430 EXPORT_SYMBOL(vfs_path_lookup);
3431 EXPORT_SYMBOL(inode_permission);
3432 EXPORT_SYMBOL(unlock_rename);
3433 EXPORT_SYMBOL(vfs_create);
3434 EXPORT_SYMBOL(vfs_follow_link);
3435 EXPORT_SYMBOL(vfs_link);
3436 EXPORT_SYMBOL(vfs_mkdir);
3437 EXPORT_SYMBOL(vfs_mknod);
3438 EXPORT_SYMBOL(generic_permission);
3439 EXPORT_SYMBOL(vfs_readlink);
3440 EXPORT_SYMBOL(vfs_rename);
3441 EXPORT_SYMBOL(vfs_rmdir);
3442 EXPORT_SYMBOL(vfs_symlink);
3443 EXPORT_SYMBOL(vfs_unlink);
3444 EXPORT_SYMBOL(dentry_unhash);
3445 EXPORT_SYMBOL(generic_readlink);