be careful with nd->inode in path_init() and follow_dotdot_rcu()
[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/export.h>
19 #include <linux/kernel.h>
20 #include <linux/slab.h>
21 #include <linux/fs.h>
22 #include <linux/namei.h>
23 #include <linux/pagemap.h>
24 #include <linux/fsnotify.h>
25 #include <linux/personality.h>
26 #include <linux/security.h>
27 #include <linux/ima.h>
28 #include <linux/syscalls.h>
29 #include <linux/mount.h>
30 #include <linux/audit.h>
31 #include <linux/capability.h>
32 #include <linux/file.h>
33 #include <linux/fcntl.h>
34 #include <linux/device_cgroup.h>
35 #include <linux/fs_struct.h>
36 #include <linux/posix_acl.h>
37 #include <asm/uaccess.h>
38
39 #include "internal.h"
40 #include "mount.h"
41
42 /* [Feb-1997 T. Schoebel-Theuer]
43  * Fundamental changes in the pathname lookup mechanisms (namei)
44  * were necessary because of omirr.  The reason is that omirr needs
45  * to know the _real_ pathname, not the user-supplied one, in case
46  * of symlinks (and also when transname replacements occur).
47  *
48  * The new code replaces the old recursive symlink resolution with
49  * an iterative one (in case of non-nested symlink chains).  It does
50  * this with calls to <fs>_follow_link().
51  * As a side effect, dir_namei(), _namei() and follow_link() are now 
52  * replaced with a single function lookup_dentry() that can handle all 
53  * the special cases of the former code.
54  *
55  * With the new dcache, the pathname is stored at each inode, at least as
56  * long as the refcount of the inode is positive.  As a side effect, the
57  * size of the dcache depends on the inode cache and thus is dynamic.
58  *
59  * [29-Apr-1998 C. Scott Ananian] Updated above description of symlink
60  * resolution to correspond with current state of the code.
61  *
62  * Note that the symlink resolution is not *completely* iterative.
63  * There is still a significant amount of tail- and mid- recursion in
64  * the algorithm.  Also, note that <fs>_readlink() is not used in
65  * lookup_dentry(): lookup_dentry() on the result of <fs>_readlink()
66  * may return different results than <fs>_follow_link().  Many virtual
67  * filesystems (including /proc) exhibit this behavior.
68  */
69
70 /* [24-Feb-97 T. Schoebel-Theuer] Side effects caused by new implementation:
71  * New symlink semantics: when open() is called with flags O_CREAT | O_EXCL
72  * and the name already exists in form of a symlink, try to create the new
73  * name indicated by the symlink. The old code always complained that the
74  * name already exists, due to not following the symlink even if its target
75  * is nonexistent.  The new semantics affects also mknod() and link() when
76  * the name is a symlink pointing to a non-existent name.
77  *
78  * I don't know which semantics is the right one, since I have no access
79  * to standards. But I found by trial that HP-UX 9.0 has the full "new"
80  * semantics implemented, while SunOS 4.1.1 and Solaris (SunOS 5.4) have the
81  * "old" one. Personally, I think the new semantics is much more logical.
82  * Note that "ln old new" where "new" is a symlink pointing to a non-existing
83  * file does succeed in both HP-UX and SunOs, but not in Solaris
84  * and in the old Linux semantics.
85  */
86
87 /* [16-Dec-97 Kevin Buhr] For security reasons, we change some symlink
88  * semantics.  See the comments in "open_namei" and "do_link" below.
89  *
90  * [10-Sep-98 Alan Modra] Another symlink change.
91  */
92
93 /* [Feb-Apr 2000 AV] Complete rewrite. Rules for symlinks:
94  *      inside the path - always follow.
95  *      in the last component in creation/removal/renaming - never follow.
96  *      if LOOKUP_FOLLOW passed - follow.
97  *      if the pathname has trailing slashes - follow.
98  *      otherwise - don't follow.
99  * (applied in that order).
100  *
101  * [Jun 2000 AV] Inconsistent behaviour of open() in case if flags==O_CREAT
102  * restored for 2.4. This is the last surviving part of old 4.2BSD bug.
103  * During the 2.4 we need to fix the userland stuff depending on it -
104  * hopefully we will be able to get rid of that wart in 2.5. So far only
105  * XEmacs seems to be relying on it...
106  */
107 /*
108  * [Sep 2001 AV] Single-semaphore locking scheme (kudos to David Holland)
109  * implemented.  Let's see if raised priority of ->s_vfs_rename_mutex gives
110  * any extra contention...
111  */
112
113 /* In order to reduce some races, while at the same time doing additional
114  * checking and hopefully speeding things up, we copy filenames to the
115  * kernel data space before using them..
116  *
117  * POSIX.1 2.4: an empty pathname is invalid (ENOENT).
118  * PATH_MAX includes the nul terminator --RR.
119  */
120 void final_putname(struct filename *name)
121 {
122         if (name->separate) {
123                 __putname(name->name);
124                 kfree(name);
125         } else {
126                 __putname(name);
127         }
128 }
129
130 #define EMBEDDED_NAME_MAX       (PATH_MAX - sizeof(struct filename))
131
132 static struct filename *
133 getname_flags(const char __user *filename, int flags, int *empty)
134 {
135         struct filename *result, *err;
136         int len;
137         long max;
138         char *kname;
139
140         result = audit_reusename(filename);
141         if (result)
142                 return result;
143
144         result = __getname();
145         if (unlikely(!result))
146                 return ERR_PTR(-ENOMEM);
147
148         /*
149          * First, try to embed the struct filename inside the names_cache
150          * allocation
151          */
152         kname = (char *)result + sizeof(*result);
153         result->name = kname;
154         result->separate = false;
155         max = EMBEDDED_NAME_MAX;
156
157 recopy:
158         len = strncpy_from_user(kname, filename, max);
159         if (unlikely(len < 0)) {
160                 err = ERR_PTR(len);
161                 goto error;
162         }
163
164         /*
165          * Uh-oh. We have a name that's approaching PATH_MAX. Allocate a
166          * separate struct filename so we can dedicate the entire
167          * names_cache allocation for the pathname, and re-do the copy from
168          * userland.
169          */
170         if (len == EMBEDDED_NAME_MAX && max == EMBEDDED_NAME_MAX) {
171                 kname = (char *)result;
172
173                 result = kzalloc(sizeof(*result), GFP_KERNEL);
174                 if (!result) {
175                         err = ERR_PTR(-ENOMEM);
176                         result = (struct filename *)kname;
177                         goto error;
178                 }
179                 result->name = kname;
180                 result->separate = true;
181                 max = PATH_MAX;
182                 goto recopy;
183         }
184
185         /* The empty path is special. */
186         if (unlikely(!len)) {
187                 if (empty)
188                         *empty = 1;
189                 err = ERR_PTR(-ENOENT);
190                 if (!(flags & LOOKUP_EMPTY))
191                         goto error;
192         }
193
194         err = ERR_PTR(-ENAMETOOLONG);
195         if (unlikely(len >= PATH_MAX))
196                 goto error;
197
198         result->uptr = filename;
199         result->aname = NULL;
200         audit_getname(result);
201         return result;
202
203 error:
204         final_putname(result);
205         return err;
206 }
207
208 struct filename *
209 getname(const char __user * filename)
210 {
211         return getname_flags(filename, 0, NULL);
212 }
213
214 /*
215  * The "getname_kernel()" interface doesn't do pathnames longer
216  * than EMBEDDED_NAME_MAX. Deal with it - you're a kernel user.
217  */
218 struct filename *
219 getname_kernel(const char * filename)
220 {
221         struct filename *result;
222         char *kname;
223         int len;
224
225         len = strlen(filename);
226         if (len >= EMBEDDED_NAME_MAX)
227                 return ERR_PTR(-ENAMETOOLONG);
228
229         result = __getname();
230         if (unlikely(!result))
231                 return ERR_PTR(-ENOMEM);
232
233         kname = (char *)result + sizeof(*result);
234         result->name = kname;
235         result->uptr = NULL;
236         result->aname = NULL;
237         result->separate = false;
238
239         strlcpy(kname, filename, EMBEDDED_NAME_MAX);
240         return result;
241 }
242
243 #ifdef CONFIG_AUDITSYSCALL
244 void putname(struct filename *name)
245 {
246         if (unlikely(!audit_dummy_context()))
247                 return audit_putname(name);
248         final_putname(name);
249 }
250 #endif
251
252 static int check_acl(struct inode *inode, int mask)
253 {
254 #ifdef CONFIG_FS_POSIX_ACL
255         struct posix_acl *acl;
256
257         if (mask & MAY_NOT_BLOCK) {
258                 acl = get_cached_acl_rcu(inode, ACL_TYPE_ACCESS);
259                 if (!acl)
260                         return -EAGAIN;
261                 /* no ->get_acl() calls in RCU mode... */
262                 if (acl == ACL_NOT_CACHED)
263                         return -ECHILD;
264                 return posix_acl_permission(inode, acl, mask & ~MAY_NOT_BLOCK);
265         }
266
267         acl = get_acl(inode, ACL_TYPE_ACCESS);
268         if (IS_ERR(acl))
269                 return PTR_ERR(acl);
270         if (acl) {
271                 int error = posix_acl_permission(inode, acl, mask);
272                 posix_acl_release(acl);
273                 return error;
274         }
275 #endif
276
277         return -EAGAIN;
278 }
279
280 /*
281  * This does the basic permission checking
282  */
283 static int acl_permission_check(struct inode *inode, int mask)
284 {
285         unsigned int mode = inode->i_mode;
286
287         if (likely(uid_eq(current_fsuid(), inode->i_uid)))
288                 mode >>= 6;
289         else {
290                 if (IS_POSIXACL(inode) && (mode & S_IRWXG)) {
291                         int error = check_acl(inode, mask);
292                         if (error != -EAGAIN)
293                                 return error;
294                 }
295
296                 if (in_group_p(inode->i_gid))
297                         mode >>= 3;
298         }
299
300         /*
301          * If the DACs are ok we don't need any capability check.
302          */
303         if ((mask & ~mode & (MAY_READ | MAY_WRITE | MAY_EXEC)) == 0)
304                 return 0;
305         return -EACCES;
306 }
307
308 /**
309  * generic_permission -  check for access rights on a Posix-like filesystem
310  * @inode:      inode to check access rights for
311  * @mask:       right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC, ...)
312  *
313  * Used to check for read/write/execute permissions on a file.
314  * We use "fsuid" for this, letting us set arbitrary permissions
315  * for filesystem access without changing the "normal" uids which
316  * are used for other things.
317  *
318  * generic_permission is rcu-walk aware. It returns -ECHILD in case an rcu-walk
319  * request cannot be satisfied (eg. requires blocking or too much complexity).
320  * It would then be called again in ref-walk mode.
321  */
322 int generic_permission(struct inode *inode, int mask)
323 {
324         int ret;
325
326         /*
327          * Do the basic permission checks.
328          */
329         ret = acl_permission_check(inode, mask);
330         if (ret != -EACCES)
331                 return ret;
332
333         if (S_ISDIR(inode->i_mode)) {
334                 /* DACs are overridable for directories */
335                 if (capable_wrt_inode_uidgid(inode, CAP_DAC_OVERRIDE))
336                         return 0;
337                 if (!(mask & MAY_WRITE))
338                         if (capable_wrt_inode_uidgid(inode,
339                                                      CAP_DAC_READ_SEARCH))
340                                 return 0;
341                 return -EACCES;
342         }
343         /*
344          * Read/write DACs are always overridable.
345          * Executable DACs are overridable when there is
346          * at least one exec bit set.
347          */
348         if (!(mask & MAY_EXEC) || (inode->i_mode & S_IXUGO))
349                 if (capable_wrt_inode_uidgid(inode, CAP_DAC_OVERRIDE))
350                         return 0;
351
352         /*
353          * Searching includes executable on directories, else just read.
354          */
355         mask &= MAY_READ | MAY_WRITE | MAY_EXEC;
356         if (mask == MAY_READ)
357                 if (capable_wrt_inode_uidgid(inode, CAP_DAC_READ_SEARCH))
358                         return 0;
359
360         return -EACCES;
361 }
362 EXPORT_SYMBOL(generic_permission);
363
364 /*
365  * We _really_ want to just do "generic_permission()" without
366  * even looking at the inode->i_op values. So we keep a cache
367  * flag in inode->i_opflags, that says "this has not special
368  * permission function, use the fast case".
369  */
370 static inline int do_inode_permission(struct inode *inode, int mask)
371 {
372         if (unlikely(!(inode->i_opflags & IOP_FASTPERM))) {
373                 if (likely(inode->i_op->permission))
374                         return inode->i_op->permission(inode, mask);
375
376                 /* This gets set once for the inode lifetime */
377                 spin_lock(&inode->i_lock);
378                 inode->i_opflags |= IOP_FASTPERM;
379                 spin_unlock(&inode->i_lock);
380         }
381         return generic_permission(inode, mask);
382 }
383
384 /**
385  * __inode_permission - Check for access rights to a given inode
386  * @inode: Inode to check permission on
387  * @mask: Right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
388  *
389  * Check for read/write/execute permissions on an inode.
390  *
391  * When checking for MAY_APPEND, MAY_WRITE must also be set in @mask.
392  *
393  * This does not check for a read-only file system.  You probably want
394  * inode_permission().
395  */
396 int __inode_permission(struct inode *inode, int mask)
397 {
398         int retval;
399
400         if (unlikely(mask & MAY_WRITE)) {
401                 /*
402                  * Nobody gets write access to an immutable file.
403                  */
404                 if (IS_IMMUTABLE(inode))
405                         return -EACCES;
406         }
407
408         retval = do_inode_permission(inode, mask);
409         if (retval)
410                 return retval;
411
412         retval = devcgroup_inode_permission(inode, mask);
413         if (retval)
414                 return retval;
415
416         return security_inode_permission(inode, mask);
417 }
418
419 /**
420  * sb_permission - Check superblock-level permissions
421  * @sb: Superblock of inode to check permission on
422  * @inode: Inode to check permission on
423  * @mask: Right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
424  *
425  * Separate out file-system wide checks from inode-specific permission checks.
426  */
427 static int sb_permission(struct super_block *sb, struct inode *inode, int mask)
428 {
429         if (unlikely(mask & MAY_WRITE)) {
430                 umode_t mode = inode->i_mode;
431
432                 /* Nobody gets write access to a read-only fs. */
433                 if ((sb->s_flags & MS_RDONLY) &&
434                     (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode)))
435                         return -EROFS;
436         }
437         return 0;
438 }
439
440 /**
441  * inode_permission - Check for access rights to a given inode
442  * @inode: Inode to check permission on
443  * @mask: Right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
444  *
445  * Check for read/write/execute permissions on an inode.  We use fs[ug]id for
446  * this, letting us set arbitrary permissions for filesystem access without
447  * changing the "normal" UIDs which are used for other things.
448  *
449  * When checking for MAY_APPEND, MAY_WRITE must also be set in @mask.
450  */
451 int inode_permission(struct inode *inode, int mask)
452 {
453         int retval;
454
455         retval = sb_permission(inode->i_sb, inode, mask);
456         if (retval)
457                 return retval;
458         return __inode_permission(inode, mask);
459 }
460 EXPORT_SYMBOL(inode_permission);
461
462 /**
463  * path_get - get a reference to a path
464  * @path: path to get the reference to
465  *
466  * Given a path increment the reference count to the dentry and the vfsmount.
467  */
468 void path_get(const struct path *path)
469 {
470         mntget(path->mnt);
471         dget(path->dentry);
472 }
473 EXPORT_SYMBOL(path_get);
474
475 /**
476  * path_put - put a reference to a path
477  * @path: path to put the reference to
478  *
479  * Given a path decrement the reference count to the dentry and the vfsmount.
480  */
481 void path_put(const struct path *path)
482 {
483         dput(path->dentry);
484         mntput(path->mnt);
485 }
486 EXPORT_SYMBOL(path_put);
487
488 /*
489  * Path walking has 2 modes, rcu-walk and ref-walk (see
490  * Documentation/filesystems/path-lookup.txt).  In situations when we can't
491  * continue in RCU mode, we attempt to drop out of rcu-walk mode and grab
492  * normal reference counts on dentries and vfsmounts to transition to rcu-walk
493  * mode.  Refcounts are grabbed at the last known good point before rcu-walk
494  * got stuck, so ref-walk may continue from there. If this is not successful
495  * (eg. a seqcount has changed), then failure is returned and it's up to caller
496  * to restart the path walk from the beginning in ref-walk mode.
497  */
498
499 /**
500  * unlazy_walk - try to switch to ref-walk mode.
501  * @nd: nameidata pathwalk data
502  * @dentry: child of nd->path.dentry or NULL
503  * Returns: 0 on success, -ECHILD on failure
504  *
505  * unlazy_walk attempts to legitimize the current nd->path, nd->root and dentry
506  * for ref-walk mode.  @dentry must be a path found by a do_lookup call on
507  * @nd or NULL.  Must be called from rcu-walk context.
508  */
509 static int unlazy_walk(struct nameidata *nd, struct dentry *dentry)
510 {
511         struct fs_struct *fs = current->fs;
512         struct dentry *parent = nd->path.dentry;
513
514         BUG_ON(!(nd->flags & LOOKUP_RCU));
515
516         /*
517          * After legitimizing the bastards, terminate_walk()
518          * will do the right thing for non-RCU mode, and all our
519          * subsequent exit cases should rcu_read_unlock()
520          * before returning.  Do vfsmount first; if dentry
521          * can't be legitimized, just set nd->path.dentry to NULL
522          * and rely on dput(NULL) being a no-op.
523          */
524         if (!legitimize_mnt(nd->path.mnt, nd->m_seq))
525                 return -ECHILD;
526         nd->flags &= ~LOOKUP_RCU;
527
528         if (!lockref_get_not_dead(&parent->d_lockref)) {
529                 nd->path.dentry = NULL; 
530                 goto out;
531         }
532
533         /*
534          * For a negative lookup, the lookup sequence point is the parents
535          * sequence point, and it only needs to revalidate the parent dentry.
536          *
537          * For a positive lookup, we need to move both the parent and the
538          * dentry from the RCU domain to be properly refcounted. And the
539          * sequence number in the dentry validates *both* dentry counters,
540          * since we checked the sequence number of the parent after we got
541          * the child sequence number. So we know the parent must still
542          * be valid if the child sequence number is still valid.
543          */
544         if (!dentry) {
545                 if (read_seqcount_retry(&parent->d_seq, nd->seq))
546                         goto out;
547                 BUG_ON(nd->inode != parent->d_inode);
548         } else {
549                 if (!lockref_get_not_dead(&dentry->d_lockref))
550                         goto out;
551                 if (read_seqcount_retry(&dentry->d_seq, nd->seq))
552                         goto drop_dentry;
553         }
554
555         /*
556          * Sequence counts matched. Now make sure that the root is
557          * still valid and get it if required.
558          */
559         if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT)) {
560                 spin_lock(&fs->lock);
561                 if (nd->root.mnt != fs->root.mnt || nd->root.dentry != fs->root.dentry)
562                         goto unlock_and_drop_dentry;
563                 path_get(&nd->root);
564                 spin_unlock(&fs->lock);
565         }
566
567         rcu_read_unlock();
568         return 0;
569
570 unlock_and_drop_dentry:
571         spin_unlock(&fs->lock);
572 drop_dentry:
573         rcu_read_unlock();
574         dput(dentry);
575         goto drop_root_mnt;
576 out:
577         rcu_read_unlock();
578 drop_root_mnt:
579         if (!(nd->flags & LOOKUP_ROOT))
580                 nd->root.mnt = NULL;
581         return -ECHILD;
582 }
583
584 static inline int d_revalidate(struct dentry *dentry, unsigned int flags)
585 {
586         return dentry->d_op->d_revalidate(dentry, flags);
587 }
588
589 /**
590  * complete_walk - successful completion of path walk
591  * @nd:  pointer nameidata
592  *
593  * If we had been in RCU mode, drop out of it and legitimize nd->path.
594  * Revalidate the final result, unless we'd already done that during
595  * the path walk or the filesystem doesn't ask for it.  Return 0 on
596  * success, -error on failure.  In case of failure caller does not
597  * need to drop nd->path.
598  */
599 static int complete_walk(struct nameidata *nd)
600 {
601         struct dentry *dentry = nd->path.dentry;
602         int status;
603
604         if (nd->flags & LOOKUP_RCU) {
605                 nd->flags &= ~LOOKUP_RCU;
606                 if (!(nd->flags & LOOKUP_ROOT))
607                         nd->root.mnt = NULL;
608
609                 if (!legitimize_mnt(nd->path.mnt, nd->m_seq)) {
610                         rcu_read_unlock();
611                         return -ECHILD;
612                 }
613                 if (unlikely(!lockref_get_not_dead(&dentry->d_lockref))) {
614                         rcu_read_unlock();
615                         mntput(nd->path.mnt);
616                         return -ECHILD;
617                 }
618                 if (read_seqcount_retry(&dentry->d_seq, nd->seq)) {
619                         rcu_read_unlock();
620                         dput(dentry);
621                         mntput(nd->path.mnt);
622                         return -ECHILD;
623                 }
624                 rcu_read_unlock();
625         }
626
627         if (likely(!(nd->flags & LOOKUP_JUMPED)))
628                 return 0;
629
630         if (likely(!(dentry->d_flags & DCACHE_OP_WEAK_REVALIDATE)))
631                 return 0;
632
633         status = dentry->d_op->d_weak_revalidate(dentry, nd->flags);
634         if (status > 0)
635                 return 0;
636
637         if (!status)
638                 status = -ESTALE;
639
640         path_put(&nd->path);
641         return status;
642 }
643
644 static __always_inline void set_root(struct nameidata *nd)
645 {
646         get_fs_root(current->fs, &nd->root);
647 }
648
649 static int link_path_walk(const char *, struct nameidata *);
650
651 static __always_inline unsigned set_root_rcu(struct nameidata *nd)
652 {
653         struct fs_struct *fs = current->fs;
654         unsigned seq, res;
655
656         do {
657                 seq = read_seqcount_begin(&fs->seq);
658                 nd->root = fs->root;
659                 res = __read_seqcount_begin(&nd->root.dentry->d_seq);
660         } while (read_seqcount_retry(&fs->seq, seq));
661         return res;
662 }
663
664 static void path_put_conditional(struct path *path, struct nameidata *nd)
665 {
666         dput(path->dentry);
667         if (path->mnt != nd->path.mnt)
668                 mntput(path->mnt);
669 }
670
671 static inline void path_to_nameidata(const struct path *path,
672                                         struct nameidata *nd)
673 {
674         if (!(nd->flags & LOOKUP_RCU)) {
675                 dput(nd->path.dentry);
676                 if (nd->path.mnt != path->mnt)
677                         mntput(nd->path.mnt);
678         }
679         nd->path.mnt = path->mnt;
680         nd->path.dentry = path->dentry;
681 }
682
683 /*
684  * Helper to directly jump to a known parsed path from ->follow_link,
685  * caller must have taken a reference to path beforehand.
686  */
687 void nd_jump_link(struct nameidata *nd, struct path *path)
688 {
689         path_put(&nd->path);
690
691         nd->path = *path;
692         nd->inode = nd->path.dentry->d_inode;
693         nd->flags |= LOOKUP_JUMPED;
694 }
695
696 static inline void put_link(struct nameidata *nd, struct path *link, void *cookie)
697 {
698         struct inode *inode = link->dentry->d_inode;
699         if (inode->i_op->put_link)
700                 inode->i_op->put_link(link->dentry, nd, cookie);
701         path_put(link);
702 }
703
704 int sysctl_protected_symlinks __read_mostly = 0;
705 int sysctl_protected_hardlinks __read_mostly = 0;
706
707 /**
708  * may_follow_link - Check symlink following for unsafe situations
709  * @link: The path of the symlink
710  * @nd: nameidata pathwalk data
711  *
712  * In the case of the sysctl_protected_symlinks sysctl being enabled,
713  * CAP_DAC_OVERRIDE needs to be specifically ignored if the symlink is
714  * in a sticky world-writable directory. This is to protect privileged
715  * processes from failing races against path names that may change out
716  * from under them by way of other users creating malicious symlinks.
717  * It will permit symlinks to be followed only when outside a sticky
718  * world-writable directory, or when the uid of the symlink and follower
719  * match, or when the directory owner matches the symlink's owner.
720  *
721  * Returns 0 if following the symlink is allowed, -ve on error.
722  */
723 static inline int may_follow_link(struct path *link, struct nameidata *nd)
724 {
725         const struct inode *inode;
726         const struct inode *parent;
727
728         if (!sysctl_protected_symlinks)
729                 return 0;
730
731         /* Allowed if owner and follower match. */
732         inode = link->dentry->d_inode;
733         if (uid_eq(current_cred()->fsuid, inode->i_uid))
734                 return 0;
735
736         /* Allowed if parent directory not sticky and world-writable. */
737         parent = nd->path.dentry->d_inode;
738         if ((parent->i_mode & (S_ISVTX|S_IWOTH)) != (S_ISVTX|S_IWOTH))
739                 return 0;
740
741         /* Allowed if parent directory and link owner match. */
742         if (uid_eq(parent->i_uid, inode->i_uid))
743                 return 0;
744
745         audit_log_link_denied("follow_link", link);
746         path_put_conditional(link, nd);
747         path_put(&nd->path);
748         return -EACCES;
749 }
750
751 /**
752  * safe_hardlink_source - Check for safe hardlink conditions
753  * @inode: the source inode to hardlink from
754  *
755  * Return false if at least one of the following conditions:
756  *    - inode is not a regular file
757  *    - inode is setuid
758  *    - inode is setgid and group-exec
759  *    - access failure for read and write
760  *
761  * Otherwise returns true.
762  */
763 static bool safe_hardlink_source(struct inode *inode)
764 {
765         umode_t mode = inode->i_mode;
766
767         /* Special files should not get pinned to the filesystem. */
768         if (!S_ISREG(mode))
769                 return false;
770
771         /* Setuid files should not get pinned to the filesystem. */
772         if (mode & S_ISUID)
773                 return false;
774
775         /* Executable setgid files should not get pinned to the filesystem. */
776         if ((mode & (S_ISGID | S_IXGRP)) == (S_ISGID | S_IXGRP))
777                 return false;
778
779         /* Hardlinking to unreadable or unwritable sources is dangerous. */
780         if (inode_permission(inode, MAY_READ | MAY_WRITE))
781                 return false;
782
783         return true;
784 }
785
786 /**
787  * may_linkat - Check permissions for creating a hardlink
788  * @link: the source to hardlink from
789  *
790  * Block hardlink when all of:
791  *  - sysctl_protected_hardlinks enabled
792  *  - fsuid does not match inode
793  *  - hardlink source is unsafe (see safe_hardlink_source() above)
794  *  - not CAP_FOWNER
795  *
796  * Returns 0 if successful, -ve on error.
797  */
798 static int may_linkat(struct path *link)
799 {
800         const struct cred *cred;
801         struct inode *inode;
802
803         if (!sysctl_protected_hardlinks)
804                 return 0;
805
806         cred = current_cred();
807         inode = link->dentry->d_inode;
808
809         /* Source inode owner (or CAP_FOWNER) can hardlink all they like,
810          * otherwise, it must be a safe source.
811          */
812         if (uid_eq(cred->fsuid, inode->i_uid) || safe_hardlink_source(inode) ||
813             capable(CAP_FOWNER))
814                 return 0;
815
816         audit_log_link_denied("linkat", link);
817         return -EPERM;
818 }
819
820 static __always_inline int
821 follow_link(struct path *link, struct nameidata *nd, void **p)
822 {
823         struct dentry *dentry = link->dentry;
824         int error;
825         char *s;
826
827         BUG_ON(nd->flags & LOOKUP_RCU);
828
829         if (link->mnt == nd->path.mnt)
830                 mntget(link->mnt);
831
832         error = -ELOOP;
833         if (unlikely(current->total_link_count >= 40))
834                 goto out_put_nd_path;
835
836         cond_resched();
837         current->total_link_count++;
838
839         touch_atime(link);
840         nd_set_link(nd, NULL);
841
842         error = security_inode_follow_link(link->dentry, nd);
843         if (error)
844                 goto out_put_nd_path;
845
846         nd->last_type = LAST_BIND;
847         *p = dentry->d_inode->i_op->follow_link(dentry, nd);
848         error = PTR_ERR(*p);
849         if (IS_ERR(*p))
850                 goto out_put_nd_path;
851
852         error = 0;
853         s = nd_get_link(nd);
854         if (s) {
855                 if (unlikely(IS_ERR(s))) {
856                         path_put(&nd->path);
857                         put_link(nd, link, *p);
858                         return PTR_ERR(s);
859                 }
860                 if (*s == '/') {
861                         if (!nd->root.mnt)
862                                 set_root(nd);
863                         path_put(&nd->path);
864                         nd->path = nd->root;
865                         path_get(&nd->root);
866                         nd->flags |= LOOKUP_JUMPED;
867                 }
868                 nd->inode = nd->path.dentry->d_inode;
869                 error = link_path_walk(s, nd);
870                 if (unlikely(error))
871                         put_link(nd, link, *p);
872         }
873
874         return error;
875
876 out_put_nd_path:
877         *p = NULL;
878         path_put(&nd->path);
879         path_put(link);
880         return error;
881 }
882
883 static int follow_up_rcu(struct path *path)
884 {
885         struct mount *mnt = real_mount(path->mnt);
886         struct mount *parent;
887         struct dentry *mountpoint;
888
889         parent = mnt->mnt_parent;
890         if (&parent->mnt == path->mnt)
891                 return 0;
892         mountpoint = mnt->mnt_mountpoint;
893         path->dentry = mountpoint;
894         path->mnt = &parent->mnt;
895         return 1;
896 }
897
898 /*
899  * follow_up - Find the mountpoint of path's vfsmount
900  *
901  * Given a path, find the mountpoint of its source file system.
902  * Replace @path with the path of the mountpoint in the parent mount.
903  * Up is towards /.
904  *
905  * Return 1 if we went up a level and 0 if we were already at the
906  * root.
907  */
908 int follow_up(struct path *path)
909 {
910         struct mount *mnt = real_mount(path->mnt);
911         struct mount *parent;
912         struct dentry *mountpoint;
913
914         read_seqlock_excl(&mount_lock);
915         parent = mnt->mnt_parent;
916         if (parent == mnt) {
917                 read_sequnlock_excl(&mount_lock);
918                 return 0;
919         }
920         mntget(&parent->mnt);
921         mountpoint = dget(mnt->mnt_mountpoint);
922         read_sequnlock_excl(&mount_lock);
923         dput(path->dentry);
924         path->dentry = mountpoint;
925         mntput(path->mnt);
926         path->mnt = &parent->mnt;
927         return 1;
928 }
929 EXPORT_SYMBOL(follow_up);
930
931 /*
932  * Perform an automount
933  * - return -EISDIR to tell follow_managed() to stop and return the path we
934  *   were called with.
935  */
936 static int follow_automount(struct path *path, unsigned flags,
937                             bool *need_mntput)
938 {
939         struct vfsmount *mnt;
940         int err;
941
942         if (!path->dentry->d_op || !path->dentry->d_op->d_automount)
943                 return -EREMOTE;
944
945         /* We don't want to mount if someone's just doing a stat -
946          * unless they're stat'ing a directory and appended a '/' to
947          * the name.
948          *
949          * We do, however, want to mount if someone wants to open or
950          * create a file of any type under the mountpoint, wants to
951          * traverse through the mountpoint or wants to open the
952          * mounted directory.  Also, autofs may mark negative dentries
953          * as being automount points.  These will need the attentions
954          * of the daemon to instantiate them before they can be used.
955          */
956         if (!(flags & (LOOKUP_PARENT | LOOKUP_DIRECTORY |
957                      LOOKUP_OPEN | LOOKUP_CREATE | LOOKUP_AUTOMOUNT)) &&
958             path->dentry->d_inode)
959                 return -EISDIR;
960
961         current->total_link_count++;
962         if (current->total_link_count >= 40)
963                 return -ELOOP;
964
965         mnt = path->dentry->d_op->d_automount(path);
966         if (IS_ERR(mnt)) {
967                 /*
968                  * The filesystem is allowed to return -EISDIR here to indicate
969                  * it doesn't want to automount.  For instance, autofs would do
970                  * this so that its userspace daemon can mount on this dentry.
971                  *
972                  * However, we can only permit this if it's a terminal point in
973                  * the path being looked up; if it wasn't then the remainder of
974                  * the path is inaccessible and we should say so.
975                  */
976                 if (PTR_ERR(mnt) == -EISDIR && (flags & LOOKUP_PARENT))
977                         return -EREMOTE;
978                 return PTR_ERR(mnt);
979         }
980
981         if (!mnt) /* mount collision */
982                 return 0;
983
984         if (!*need_mntput) {
985                 /* lock_mount() may release path->mnt on error */
986                 mntget(path->mnt);
987                 *need_mntput = true;
988         }
989         err = finish_automount(mnt, path);
990
991         switch (err) {
992         case -EBUSY:
993                 /* Someone else made a mount here whilst we were busy */
994                 return 0;
995         case 0:
996                 path_put(path);
997                 path->mnt = mnt;
998                 path->dentry = dget(mnt->mnt_root);
999                 return 0;
1000         default:
1001                 return err;
1002         }
1003
1004 }
1005
1006 /*
1007  * Handle a dentry that is managed in some way.
1008  * - Flagged for transit management (autofs)
1009  * - Flagged as mountpoint
1010  * - Flagged as automount point
1011  *
1012  * This may only be called in refwalk mode.
1013  *
1014  * Serialization is taken care of in namespace.c
1015  */
1016 static int follow_managed(struct path *path, unsigned flags)
1017 {
1018         struct vfsmount *mnt = path->mnt; /* held by caller, must be left alone */
1019         unsigned managed;
1020         bool need_mntput = false;
1021         int ret = 0;
1022
1023         /* Given that we're not holding a lock here, we retain the value in a
1024          * local variable for each dentry as we look at it so that we don't see
1025          * the components of that value change under us */
1026         while (managed = ACCESS_ONCE(path->dentry->d_flags),
1027                managed &= DCACHE_MANAGED_DENTRY,
1028                unlikely(managed != 0)) {
1029                 /* Allow the filesystem to manage the transit without i_mutex
1030                  * being held. */
1031                 if (managed & DCACHE_MANAGE_TRANSIT) {
1032                         BUG_ON(!path->dentry->d_op);
1033                         BUG_ON(!path->dentry->d_op->d_manage);
1034                         ret = path->dentry->d_op->d_manage(path->dentry, false);
1035                         if (ret < 0)
1036                                 break;
1037                 }
1038
1039                 /* Transit to a mounted filesystem. */
1040                 if (managed & DCACHE_MOUNTED) {
1041                         struct vfsmount *mounted = lookup_mnt(path);
1042                         if (mounted) {
1043                                 dput(path->dentry);
1044                                 if (need_mntput)
1045                                         mntput(path->mnt);
1046                                 path->mnt = mounted;
1047                                 path->dentry = dget(mounted->mnt_root);
1048                                 need_mntput = true;
1049                                 continue;
1050                         }
1051
1052                         /* Something is mounted on this dentry in another
1053                          * namespace and/or whatever was mounted there in this
1054                          * namespace got unmounted before lookup_mnt() could
1055                          * get it */
1056                 }
1057
1058                 /* Handle an automount point */
1059                 if (managed & DCACHE_NEED_AUTOMOUNT) {
1060                         ret = follow_automount(path, flags, &need_mntput);
1061                         if (ret < 0)
1062                                 break;
1063                         continue;
1064                 }
1065
1066                 /* We didn't change the current path point */
1067                 break;
1068         }
1069
1070         if (need_mntput && path->mnt == mnt)
1071                 mntput(path->mnt);
1072         if (ret == -EISDIR)
1073                 ret = 0;
1074         return ret < 0 ? ret : need_mntput;
1075 }
1076
1077 int follow_down_one(struct path *path)
1078 {
1079         struct vfsmount *mounted;
1080
1081         mounted = lookup_mnt(path);
1082         if (mounted) {
1083                 dput(path->dentry);
1084                 mntput(path->mnt);
1085                 path->mnt = mounted;
1086                 path->dentry = dget(mounted->mnt_root);
1087                 return 1;
1088         }
1089         return 0;
1090 }
1091 EXPORT_SYMBOL(follow_down_one);
1092
1093 static inline int managed_dentry_rcu(struct dentry *dentry)
1094 {
1095         return (dentry->d_flags & DCACHE_MANAGE_TRANSIT) ?
1096                 dentry->d_op->d_manage(dentry, true) : 0;
1097 }
1098
1099 /*
1100  * Try to skip to top of mountpoint pile in rcuwalk mode.  Fail if
1101  * we meet a managed dentry that would need blocking.
1102  */
1103 static bool __follow_mount_rcu(struct nameidata *nd, struct path *path,
1104                                struct inode **inode)
1105 {
1106         for (;;) {
1107                 struct mount *mounted;
1108                 /*
1109                  * Don't forget we might have a non-mountpoint managed dentry
1110                  * that wants to block transit.
1111                  */
1112                 switch (managed_dentry_rcu(path->dentry)) {
1113                 case -ECHILD:
1114                 default:
1115                         return false;
1116                 case -EISDIR:
1117                         return true;
1118                 case 0:
1119                         break;
1120                 }
1121
1122                 if (!d_mountpoint(path->dentry))
1123                         return !(path->dentry->d_flags & DCACHE_NEED_AUTOMOUNT);
1124
1125                 mounted = __lookup_mnt(path->mnt, path->dentry);
1126                 if (!mounted)
1127                         break;
1128                 path->mnt = &mounted->mnt;
1129                 path->dentry = mounted->mnt.mnt_root;
1130                 nd->flags |= LOOKUP_JUMPED;
1131                 nd->seq = read_seqcount_begin(&path->dentry->d_seq);
1132                 /*
1133                  * Update the inode too. We don't need to re-check the
1134                  * dentry sequence number here after this d_inode read,
1135                  * because a mount-point is always pinned.
1136                  */
1137                 *inode = path->dentry->d_inode;
1138         }
1139         return !read_seqretry(&mount_lock, nd->m_seq) &&
1140                 !(path->dentry->d_flags & DCACHE_NEED_AUTOMOUNT);
1141 }
1142
1143 static int follow_dotdot_rcu(struct nameidata *nd)
1144 {
1145         struct inode *inode = nd->inode;
1146         if (!nd->root.mnt)
1147                 set_root_rcu(nd);
1148
1149         while (1) {
1150                 if (nd->path.dentry == nd->root.dentry &&
1151                     nd->path.mnt == nd->root.mnt) {
1152                         break;
1153                 }
1154                 if (nd->path.dentry != nd->path.mnt->mnt_root) {
1155                         struct dentry *old = nd->path.dentry;
1156                         struct dentry *parent = old->d_parent;
1157                         unsigned seq;
1158
1159                         inode = parent->d_inode;
1160                         seq = read_seqcount_begin(&parent->d_seq);
1161                         if (read_seqcount_retry(&old->d_seq, nd->seq))
1162                                 goto failed;
1163                         nd->path.dentry = parent;
1164                         nd->seq = seq;
1165                         break;
1166                 }
1167                 if (!follow_up_rcu(&nd->path))
1168                         break;
1169                 inode = nd->path.dentry->d_inode;
1170                 nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq);
1171         }
1172         while (d_mountpoint(nd->path.dentry)) {
1173                 struct mount *mounted;
1174                 mounted = __lookup_mnt(nd->path.mnt, nd->path.dentry);
1175                 if (!mounted)
1176                         break;
1177                 nd->path.mnt = &mounted->mnt;
1178                 nd->path.dentry = mounted->mnt.mnt_root;
1179                 inode = nd->path.dentry->d_inode;
1180                 nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq);
1181                 if (read_seqretry(&mount_lock, nd->m_seq))
1182                         goto failed;
1183         }
1184         nd->inode = inode;
1185         return 0;
1186
1187 failed:
1188         nd->flags &= ~LOOKUP_RCU;
1189         if (!(nd->flags & LOOKUP_ROOT))
1190                 nd->root.mnt = NULL;
1191         rcu_read_unlock();
1192         return -ECHILD;
1193 }
1194
1195 /*
1196  * Follow down to the covering mount currently visible to userspace.  At each
1197  * point, the filesystem owning that dentry may be queried as to whether the
1198  * caller is permitted to proceed or not.
1199  */
1200 int follow_down(struct path *path)
1201 {
1202         unsigned managed;
1203         int ret;
1204
1205         while (managed = ACCESS_ONCE(path->dentry->d_flags),
1206                unlikely(managed & DCACHE_MANAGED_DENTRY)) {
1207                 /* Allow the filesystem to manage the transit without i_mutex
1208                  * being held.
1209                  *
1210                  * We indicate to the filesystem if someone is trying to mount
1211                  * something here.  This gives autofs the chance to deny anyone
1212                  * other than its daemon the right to mount on its
1213                  * superstructure.
1214                  *
1215                  * The filesystem may sleep at this point.
1216                  */
1217                 if (managed & DCACHE_MANAGE_TRANSIT) {
1218                         BUG_ON(!path->dentry->d_op);
1219                         BUG_ON(!path->dentry->d_op->d_manage);
1220                         ret = path->dentry->d_op->d_manage(
1221                                 path->dentry, false);
1222                         if (ret < 0)
1223                                 return ret == -EISDIR ? 0 : ret;
1224                 }
1225
1226                 /* Transit to a mounted filesystem. */
1227                 if (managed & DCACHE_MOUNTED) {
1228                         struct vfsmount *mounted = lookup_mnt(path);
1229                         if (!mounted)
1230                                 break;
1231                         dput(path->dentry);
1232                         mntput(path->mnt);
1233                         path->mnt = mounted;
1234                         path->dentry = dget(mounted->mnt_root);
1235                         continue;
1236                 }
1237
1238                 /* Don't handle automount points here */
1239                 break;
1240         }
1241         return 0;
1242 }
1243 EXPORT_SYMBOL(follow_down);
1244
1245 /*
1246  * Skip to top of mountpoint pile in refwalk mode for follow_dotdot()
1247  */
1248 static void follow_mount(struct path *path)
1249 {
1250         while (d_mountpoint(path->dentry)) {
1251                 struct vfsmount *mounted = lookup_mnt(path);
1252                 if (!mounted)
1253                         break;
1254                 dput(path->dentry);
1255                 mntput(path->mnt);
1256                 path->mnt = mounted;
1257                 path->dentry = dget(mounted->mnt_root);
1258         }
1259 }
1260
1261 static void follow_dotdot(struct nameidata *nd)
1262 {
1263         if (!nd->root.mnt)
1264                 set_root(nd);
1265
1266         while(1) {
1267                 struct dentry *old = nd->path.dentry;
1268
1269                 if (nd->path.dentry == nd->root.dentry &&
1270                     nd->path.mnt == nd->root.mnt) {
1271                         break;
1272                 }
1273                 if (nd->path.dentry != nd->path.mnt->mnt_root) {
1274                         /* rare case of legitimate dget_parent()... */
1275                         nd->path.dentry = dget_parent(nd->path.dentry);
1276                         dput(old);
1277                         break;
1278                 }
1279                 if (!follow_up(&nd->path))
1280                         break;
1281         }
1282         follow_mount(&nd->path);
1283         nd->inode = nd->path.dentry->d_inode;
1284 }
1285
1286 /*
1287  * This looks up the name in dcache, possibly revalidates the old dentry and
1288  * allocates a new one if not found or not valid.  In the need_lookup argument
1289  * returns whether i_op->lookup is necessary.
1290  *
1291  * dir->d_inode->i_mutex must be held
1292  */
1293 static struct dentry *lookup_dcache(struct qstr *name, struct dentry *dir,
1294                                     unsigned int flags, bool *need_lookup)
1295 {
1296         struct dentry *dentry;
1297         int error;
1298
1299         *need_lookup = false;
1300         dentry = d_lookup(dir, name);
1301         if (dentry) {
1302                 if (dentry->d_flags & DCACHE_OP_REVALIDATE) {
1303                         error = d_revalidate(dentry, flags);
1304                         if (unlikely(error <= 0)) {
1305                                 if (error < 0) {
1306                                         dput(dentry);
1307                                         return ERR_PTR(error);
1308                                 } else if (!d_invalidate(dentry)) {
1309                                         dput(dentry);
1310                                         dentry = NULL;
1311                                 }
1312                         }
1313                 }
1314         }
1315
1316         if (!dentry) {
1317                 dentry = d_alloc(dir, name);
1318                 if (unlikely(!dentry))
1319                         return ERR_PTR(-ENOMEM);
1320
1321                 *need_lookup = true;
1322         }
1323         return dentry;
1324 }
1325
1326 /*
1327  * Call i_op->lookup on the dentry.  The dentry must be negative and
1328  * unhashed.
1329  *
1330  * dir->d_inode->i_mutex must be held
1331  */
1332 static struct dentry *lookup_real(struct inode *dir, struct dentry *dentry,
1333                                   unsigned int flags)
1334 {
1335         struct dentry *old;
1336
1337         /* Don't create child dentry for a dead directory. */
1338         if (unlikely(IS_DEADDIR(dir))) {
1339                 dput(dentry);
1340                 return ERR_PTR(-ENOENT);
1341         }
1342
1343         old = dir->i_op->lookup(dir, dentry, flags);
1344         if (unlikely(old)) {
1345                 dput(dentry);
1346                 dentry = old;
1347         }
1348         return dentry;
1349 }
1350
1351 static struct dentry *__lookup_hash(struct qstr *name,
1352                 struct dentry *base, unsigned int flags)
1353 {
1354         bool need_lookup;
1355         struct dentry *dentry;
1356
1357         dentry = lookup_dcache(name, base, flags, &need_lookup);
1358         if (!need_lookup)
1359                 return dentry;
1360
1361         return lookup_real(base->d_inode, dentry, flags);
1362 }
1363
1364 /*
1365  *  It's more convoluted than I'd like it to be, but... it's still fairly
1366  *  small and for now I'd prefer to have fast path as straight as possible.
1367  *  It _is_ time-critical.
1368  */
1369 static int lookup_fast(struct nameidata *nd,
1370                        struct path *path, struct inode **inode)
1371 {
1372         struct vfsmount *mnt = nd->path.mnt;
1373         struct dentry *dentry, *parent = nd->path.dentry;
1374         int need_reval = 1;
1375         int status = 1;
1376         int err;
1377
1378         /*
1379          * Rename seqlock is not required here because in the off chance
1380          * of a false negative due to a concurrent rename, we're going to
1381          * do the non-racy lookup, below.
1382          */
1383         if (nd->flags & LOOKUP_RCU) {
1384                 unsigned seq;
1385                 dentry = __d_lookup_rcu(parent, &nd->last, &seq);
1386                 if (!dentry)
1387                         goto unlazy;
1388
1389                 /*
1390                  * This sequence count validates that the inode matches
1391                  * the dentry name information from lookup.
1392                  */
1393                 *inode = dentry->d_inode;
1394                 if (read_seqcount_retry(&dentry->d_seq, seq))
1395                         return -ECHILD;
1396
1397                 /*
1398                  * This sequence count validates that the parent had no
1399                  * changes while we did the lookup of the dentry above.
1400                  *
1401                  * The memory barrier in read_seqcount_begin of child is
1402                  *  enough, we can use __read_seqcount_retry here.
1403                  */
1404                 if (__read_seqcount_retry(&parent->d_seq, nd->seq))
1405                         return -ECHILD;
1406                 nd->seq = seq;
1407
1408                 if (unlikely(dentry->d_flags & DCACHE_OP_REVALIDATE)) {
1409                         status = d_revalidate(dentry, nd->flags);
1410                         if (unlikely(status <= 0)) {
1411                                 if (status != -ECHILD)
1412                                         need_reval = 0;
1413                                 goto unlazy;
1414                         }
1415                 }
1416                 path->mnt = mnt;
1417                 path->dentry = dentry;
1418                 if (likely(__follow_mount_rcu(nd, path, inode)))
1419                         return 0;
1420 unlazy:
1421                 if (unlazy_walk(nd, dentry))
1422                         return -ECHILD;
1423         } else {
1424                 dentry = __d_lookup(parent, &nd->last);
1425         }
1426
1427         if (unlikely(!dentry))
1428                 goto need_lookup;
1429
1430         if (unlikely(dentry->d_flags & DCACHE_OP_REVALIDATE) && need_reval)
1431                 status = d_revalidate(dentry, nd->flags);
1432         if (unlikely(status <= 0)) {
1433                 if (status < 0) {
1434                         dput(dentry);
1435                         return status;
1436                 }
1437                 if (!d_invalidate(dentry)) {
1438                         dput(dentry);
1439                         goto need_lookup;
1440                 }
1441         }
1442
1443         path->mnt = mnt;
1444         path->dentry = dentry;
1445         err = follow_managed(path, nd->flags);
1446         if (unlikely(err < 0)) {
1447                 path_put_conditional(path, nd);
1448                 return err;
1449         }
1450         if (err)
1451                 nd->flags |= LOOKUP_JUMPED;
1452         *inode = path->dentry->d_inode;
1453         return 0;
1454
1455 need_lookup:
1456         return 1;
1457 }
1458
1459 /* Fast lookup failed, do it the slow way */
1460 static int lookup_slow(struct nameidata *nd, struct path *path)
1461 {
1462         struct dentry *dentry, *parent;
1463         int err;
1464
1465         parent = nd->path.dentry;
1466         BUG_ON(nd->inode != parent->d_inode);
1467
1468         mutex_lock(&parent->d_inode->i_mutex);
1469         dentry = __lookup_hash(&nd->last, parent, nd->flags);
1470         mutex_unlock(&parent->d_inode->i_mutex);
1471         if (IS_ERR(dentry))
1472                 return PTR_ERR(dentry);
1473         path->mnt = nd->path.mnt;
1474         path->dentry = dentry;
1475         err = follow_managed(path, nd->flags);
1476         if (unlikely(err < 0)) {
1477                 path_put_conditional(path, nd);
1478                 return err;
1479         }
1480         if (err)
1481                 nd->flags |= LOOKUP_JUMPED;
1482         return 0;
1483 }
1484
1485 static inline int may_lookup(struct nameidata *nd)
1486 {
1487         if (nd->flags & LOOKUP_RCU) {
1488                 int err = inode_permission(nd->inode, MAY_EXEC|MAY_NOT_BLOCK);
1489                 if (err != -ECHILD)
1490                         return err;
1491                 if (unlazy_walk(nd, NULL))
1492                         return -ECHILD;
1493         }
1494         return inode_permission(nd->inode, MAY_EXEC);
1495 }
1496
1497 static inline int handle_dots(struct nameidata *nd, int type)
1498 {
1499         if (type == LAST_DOTDOT) {
1500                 if (nd->flags & LOOKUP_RCU) {
1501                         if (follow_dotdot_rcu(nd))
1502                                 return -ECHILD;
1503                 } else
1504                         follow_dotdot(nd);
1505         }
1506         return 0;
1507 }
1508
1509 static void terminate_walk(struct nameidata *nd)
1510 {
1511         if (!(nd->flags & LOOKUP_RCU)) {
1512                 path_put(&nd->path);
1513         } else {
1514                 nd->flags &= ~LOOKUP_RCU;
1515                 if (!(nd->flags & LOOKUP_ROOT))
1516                         nd->root.mnt = NULL;
1517                 rcu_read_unlock();
1518         }
1519 }
1520
1521 /*
1522  * Do we need to follow links? We _really_ want to be able
1523  * to do this check without having to look at inode->i_op,
1524  * so we keep a cache of "no, this doesn't need follow_link"
1525  * for the common case.
1526  */
1527 static inline int should_follow_link(struct dentry *dentry, int follow)
1528 {
1529         return unlikely(d_is_symlink(dentry)) ? follow : 0;
1530 }
1531
1532 static inline int walk_component(struct nameidata *nd, struct path *path,
1533                 int follow)
1534 {
1535         struct inode *inode;
1536         int err;
1537         /*
1538          * "." and ".." are special - ".." especially so because it has
1539          * to be able to know about the current root directory and
1540          * parent relationships.
1541          */
1542         if (unlikely(nd->last_type != LAST_NORM))
1543                 return handle_dots(nd, nd->last_type);
1544         err = lookup_fast(nd, path, &inode);
1545         if (unlikely(err)) {
1546                 if (err < 0)
1547                         goto out_err;
1548
1549                 err = lookup_slow(nd, path);
1550                 if (err < 0)
1551                         goto out_err;
1552
1553                 inode = path->dentry->d_inode;
1554         }
1555         err = -ENOENT;
1556         if (!inode || d_is_negative(path->dentry))
1557                 goto out_path_put;
1558
1559         if (should_follow_link(path->dentry, follow)) {
1560                 if (nd->flags & LOOKUP_RCU) {
1561                         if (unlikely(unlazy_walk(nd, path->dentry))) {
1562                                 err = -ECHILD;
1563                                 goto out_err;
1564                         }
1565                 }
1566                 BUG_ON(inode != path->dentry->d_inode);
1567                 return 1;
1568         }
1569         path_to_nameidata(path, nd);
1570         nd->inode = inode;
1571         return 0;
1572
1573 out_path_put:
1574         path_to_nameidata(path, nd);
1575 out_err:
1576         terminate_walk(nd);
1577         return err;
1578 }
1579
1580 /*
1581  * This limits recursive symlink follows to 8, while
1582  * limiting consecutive symlinks to 40.
1583  *
1584  * Without that kind of total limit, nasty chains of consecutive
1585  * symlinks can cause almost arbitrarily long lookups.
1586  */
1587 static inline int nested_symlink(struct path *path, struct nameidata *nd)
1588 {
1589         int res;
1590
1591         if (unlikely(current->link_count >= MAX_NESTED_LINKS)) {
1592                 path_put_conditional(path, nd);
1593                 path_put(&nd->path);
1594                 return -ELOOP;
1595         }
1596         BUG_ON(nd->depth >= MAX_NESTED_LINKS);
1597
1598         nd->depth++;
1599         current->link_count++;
1600
1601         do {
1602                 struct path link = *path;
1603                 void *cookie;
1604
1605                 res = follow_link(&link, nd, &cookie);
1606                 if (res)
1607                         break;
1608                 res = walk_component(nd, path, LOOKUP_FOLLOW);
1609                 put_link(nd, &link, cookie);
1610         } while (res > 0);
1611
1612         current->link_count--;
1613         nd->depth--;
1614         return res;
1615 }
1616
1617 /*
1618  * We can do the critical dentry name comparison and hashing
1619  * operations one word at a time, but we are limited to:
1620  *
1621  * - Architectures with fast unaligned word accesses. We could
1622  *   do a "get_unaligned()" if this helps and is sufficiently
1623  *   fast.
1624  *
1625  * - non-CONFIG_DEBUG_PAGEALLOC configurations (so that we
1626  *   do not trap on the (extremely unlikely) case of a page
1627  *   crossing operation.
1628  *
1629  * - Furthermore, we need an efficient 64-bit compile for the
1630  *   64-bit case in order to generate the "number of bytes in
1631  *   the final mask". Again, that could be replaced with a
1632  *   efficient population count instruction or similar.
1633  */
1634 #ifdef CONFIG_DCACHE_WORD_ACCESS
1635
1636 #include <asm/word-at-a-time.h>
1637
1638 #ifdef CONFIG_64BIT
1639
1640 static inline unsigned int fold_hash(unsigned long hash)
1641 {
1642         hash += hash >> (8*sizeof(int));
1643         return hash;
1644 }
1645
1646 #else   /* 32-bit case */
1647
1648 #define fold_hash(x) (x)
1649
1650 #endif
1651
1652 unsigned int full_name_hash(const unsigned char *name, unsigned int len)
1653 {
1654         unsigned long a, mask;
1655         unsigned long hash = 0;
1656
1657         for (;;) {
1658                 a = load_unaligned_zeropad(name);
1659                 if (len < sizeof(unsigned long))
1660                         break;
1661                 hash += a;
1662                 hash *= 9;
1663                 name += sizeof(unsigned long);
1664                 len -= sizeof(unsigned long);
1665                 if (!len)
1666                         goto done;
1667         }
1668         mask = bytemask_from_count(len);
1669         hash += mask & a;
1670 done:
1671         return fold_hash(hash);
1672 }
1673 EXPORT_SYMBOL(full_name_hash);
1674
1675 /*
1676  * Calculate the length and hash of the path component, and
1677  * return the length of the component;
1678  */
1679 static inline unsigned long hash_name(const char *name, unsigned int *hashp)
1680 {
1681         unsigned long a, b, adata, bdata, mask, hash, len;
1682         const struct word_at_a_time constants = WORD_AT_A_TIME_CONSTANTS;
1683
1684         hash = a = 0;
1685         len = -sizeof(unsigned long);
1686         do {
1687                 hash = (hash + a) * 9;
1688                 len += sizeof(unsigned long);
1689                 a = load_unaligned_zeropad(name+len);
1690                 b = a ^ REPEAT_BYTE('/');
1691         } while (!(has_zero(a, &adata, &constants) | has_zero(b, &bdata, &constants)));
1692
1693         adata = prep_zero_mask(a, adata, &constants);
1694         bdata = prep_zero_mask(b, bdata, &constants);
1695
1696         mask = create_zero_mask(adata | bdata);
1697
1698         hash += a & zero_bytemask(mask);
1699         *hashp = fold_hash(hash);
1700
1701         return len + find_zero(mask);
1702 }
1703
1704 #else
1705
1706 unsigned int full_name_hash(const unsigned char *name, unsigned int len)
1707 {
1708         unsigned long hash = init_name_hash();
1709         while (len--)
1710                 hash = partial_name_hash(*name++, hash);
1711         return end_name_hash(hash);
1712 }
1713 EXPORT_SYMBOL(full_name_hash);
1714
1715 /*
1716  * We know there's a real path component here of at least
1717  * one character.
1718  */
1719 static inline unsigned long hash_name(const char *name, unsigned int *hashp)
1720 {
1721         unsigned long hash = init_name_hash();
1722         unsigned long len = 0, c;
1723
1724         c = (unsigned char)*name;
1725         do {
1726                 len++;
1727                 hash = partial_name_hash(c, hash);
1728                 c = (unsigned char)name[len];
1729         } while (c && c != '/');
1730         *hashp = end_name_hash(hash);
1731         return len;
1732 }
1733
1734 #endif
1735
1736 /*
1737  * Name resolution.
1738  * This is the basic name resolution function, turning a pathname into
1739  * the final dentry. We expect 'base' to be positive and a directory.
1740  *
1741  * Returns 0 and nd will have valid dentry and mnt on success.
1742  * Returns error and drops reference to input namei data on failure.
1743  */
1744 static int link_path_walk(const char *name, struct nameidata *nd)
1745 {
1746         struct path next;
1747         int err;
1748         
1749         while (*name=='/')
1750                 name++;
1751         if (!*name)
1752                 return 0;
1753
1754         /* At this point we know we have a real path component. */
1755         for(;;) {
1756                 struct qstr this;
1757                 long len;
1758                 int type;
1759
1760                 err = may_lookup(nd);
1761                 if (err)
1762                         break;
1763
1764                 len = hash_name(name, &this.hash);
1765                 this.name = name;
1766                 this.len = len;
1767
1768                 type = LAST_NORM;
1769                 if (name[0] == '.') switch (len) {
1770                         case 2:
1771                                 if (name[1] == '.') {
1772                                         type = LAST_DOTDOT;
1773                                         nd->flags |= LOOKUP_JUMPED;
1774                                 }
1775                                 break;
1776                         case 1:
1777                                 type = LAST_DOT;
1778                 }
1779                 if (likely(type == LAST_NORM)) {
1780                         struct dentry *parent = nd->path.dentry;
1781                         nd->flags &= ~LOOKUP_JUMPED;
1782                         if (unlikely(parent->d_flags & DCACHE_OP_HASH)) {
1783                                 err = parent->d_op->d_hash(parent, &this);
1784                                 if (err < 0)
1785                                         break;
1786                         }
1787                 }
1788
1789                 nd->last = this;
1790                 nd->last_type = type;
1791
1792                 if (!name[len])
1793                         return 0;
1794                 /*
1795                  * If it wasn't NUL, we know it was '/'. Skip that
1796                  * slash, and continue until no more slashes.
1797                  */
1798                 do {
1799                         len++;
1800                 } while (unlikely(name[len] == '/'));
1801                 if (!name[len])
1802                         return 0;
1803
1804                 name += len;
1805
1806                 err = walk_component(nd, &next, LOOKUP_FOLLOW);
1807                 if (err < 0)
1808                         return err;
1809
1810                 if (err) {
1811                         err = nested_symlink(&next, nd);
1812                         if (err)
1813                                 return err;
1814                 }
1815                 if (!d_can_lookup(nd->path.dentry)) {
1816                         err = -ENOTDIR; 
1817                         break;
1818                 }
1819         }
1820         terminate_walk(nd);
1821         return err;
1822 }
1823
1824 static int path_init(int dfd, const char *name, unsigned int flags,
1825                      struct nameidata *nd, struct file **fp)
1826 {
1827         int retval = 0;
1828
1829         nd->last_type = LAST_ROOT; /* if there are only slashes... */
1830         nd->flags = flags | LOOKUP_JUMPED;
1831         nd->depth = 0;
1832         if (flags & LOOKUP_ROOT) {
1833                 struct dentry *root = nd->root.dentry;
1834                 struct inode *inode = root->d_inode;
1835                 if (*name) {
1836                         if (!d_can_lookup(root))
1837                                 return -ENOTDIR;
1838                         retval = inode_permission(inode, MAY_EXEC);
1839                         if (retval)
1840                                 return retval;
1841                 }
1842                 nd->path = nd->root;
1843                 nd->inode = inode;
1844                 if (flags & LOOKUP_RCU) {
1845                         rcu_read_lock();
1846                         nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
1847                         nd->m_seq = read_seqbegin(&mount_lock);
1848                 } else {
1849                         path_get(&nd->path);
1850                 }
1851                 return 0;
1852         }
1853
1854         nd->root.mnt = NULL;
1855
1856         nd->m_seq = read_seqbegin(&mount_lock);
1857         if (*name=='/') {
1858                 if (flags & LOOKUP_RCU) {
1859                         rcu_read_lock();
1860                         nd->seq = set_root_rcu(nd);
1861                 } else {
1862                         set_root(nd);
1863                         path_get(&nd->root);
1864                 }
1865                 nd->path = nd->root;
1866         } else if (dfd == AT_FDCWD) {
1867                 if (flags & LOOKUP_RCU) {
1868                         struct fs_struct *fs = current->fs;
1869                         unsigned seq;
1870
1871                         rcu_read_lock();
1872
1873                         do {
1874                                 seq = read_seqcount_begin(&fs->seq);
1875                                 nd->path = fs->pwd;
1876                                 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
1877                         } while (read_seqcount_retry(&fs->seq, seq));
1878                 } else {
1879                         get_fs_pwd(current->fs, &nd->path);
1880                 }
1881         } else {
1882                 /* Caller must check execute permissions on the starting path component */
1883                 struct fd f = fdget_raw(dfd);
1884                 struct dentry *dentry;
1885
1886                 if (!f.file)
1887                         return -EBADF;
1888
1889                 dentry = f.file->f_path.dentry;
1890
1891                 if (*name) {
1892                         if (!d_can_lookup(dentry)) {
1893                                 fdput(f);
1894                                 return -ENOTDIR;
1895                         }
1896                 }
1897
1898                 nd->path = f.file->f_path;
1899                 if (flags & LOOKUP_RCU) {
1900                         if (f.flags & FDPUT_FPUT)
1901                                 *fp = f.file;
1902                         nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
1903                         rcu_read_lock();
1904                 } else {
1905                         path_get(&nd->path);
1906                         fdput(f);
1907                 }
1908         }
1909
1910         nd->inode = nd->path.dentry->d_inode;
1911         if (!(flags & LOOKUP_RCU))
1912                 return 0;
1913         if (likely(!read_seqcount_retry(&nd->path.dentry->d_seq, nd->seq)))
1914                 return 0;
1915         if (!(nd->flags & LOOKUP_ROOT))
1916                 nd->root.mnt = NULL;
1917         rcu_read_unlock();
1918         return -ECHILD;
1919 }
1920
1921 static inline int lookup_last(struct nameidata *nd, struct path *path)
1922 {
1923         if (nd->last_type == LAST_NORM && nd->last.name[nd->last.len])
1924                 nd->flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
1925
1926         nd->flags &= ~LOOKUP_PARENT;
1927         return walk_component(nd, path, nd->flags & LOOKUP_FOLLOW);
1928 }
1929
1930 /* Returns 0 and nd will be valid on success; Retuns error, otherwise. */
1931 static int path_lookupat(int dfd, const char *name,
1932                                 unsigned int flags, struct nameidata *nd)
1933 {
1934         struct file *base = NULL;
1935         struct path path;
1936         int err;
1937
1938         /*
1939          * Path walking is largely split up into 2 different synchronisation
1940          * schemes, rcu-walk and ref-walk (explained in
1941          * Documentation/filesystems/path-lookup.txt). These share much of the
1942          * path walk code, but some things particularly setup, cleanup, and
1943          * following mounts are sufficiently divergent that functions are
1944          * duplicated. Typically there is a function foo(), and its RCU
1945          * analogue, foo_rcu().
1946          *
1947          * -ECHILD is the error number of choice (just to avoid clashes) that
1948          * is returned if some aspect of an rcu-walk fails. Such an error must
1949          * be handled by restarting a traditional ref-walk (which will always
1950          * be able to complete).
1951          */
1952         err = path_init(dfd, name, flags | LOOKUP_PARENT, nd, &base);
1953
1954         if (unlikely(err))
1955                 return err;
1956
1957         current->total_link_count = 0;
1958         err = link_path_walk(name, nd);
1959
1960         if (!err && !(flags & LOOKUP_PARENT)) {
1961                 err = lookup_last(nd, &path);
1962                 while (err > 0) {
1963                         void *cookie;
1964                         struct path link = path;
1965                         err = may_follow_link(&link, nd);
1966                         if (unlikely(err))
1967                                 break;
1968                         nd->flags |= LOOKUP_PARENT;
1969                         err = follow_link(&link, nd, &cookie);
1970                         if (err)
1971                                 break;
1972                         err = lookup_last(nd, &path);
1973                         put_link(nd, &link, cookie);
1974                 }
1975         }
1976
1977         if (!err)
1978                 err = complete_walk(nd);
1979
1980         if (!err && nd->flags & LOOKUP_DIRECTORY) {
1981                 if (!d_can_lookup(nd->path.dentry)) {
1982                         path_put(&nd->path);
1983                         err = -ENOTDIR;
1984                 }
1985         }
1986
1987         if (base)
1988                 fput(base);
1989
1990         if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT)) {
1991                 path_put(&nd->root);
1992                 nd->root.mnt = NULL;
1993         }
1994         return err;
1995 }
1996
1997 static int filename_lookup(int dfd, struct filename *name,
1998                                 unsigned int flags, struct nameidata *nd)
1999 {
2000         int retval = path_lookupat(dfd, name->name, flags | LOOKUP_RCU, nd);
2001         if (unlikely(retval == -ECHILD))
2002                 retval = path_lookupat(dfd, name->name, flags, nd);
2003         if (unlikely(retval == -ESTALE))
2004                 retval = path_lookupat(dfd, name->name,
2005                                                 flags | LOOKUP_REVAL, nd);
2006
2007         if (likely(!retval))
2008                 audit_inode(name, nd->path.dentry, flags & LOOKUP_PARENT);
2009         return retval;
2010 }
2011
2012 static int do_path_lookup(int dfd, const char *name,
2013                                 unsigned int flags, struct nameidata *nd)
2014 {
2015         struct filename filename = { .name = name };
2016
2017         return filename_lookup(dfd, &filename, flags, nd);
2018 }
2019
2020 /* does lookup, returns the object with parent locked */
2021 struct dentry *kern_path_locked(const char *name, struct path *path)
2022 {
2023         struct nameidata nd;
2024         struct dentry *d;
2025         int err = do_path_lookup(AT_FDCWD, name, LOOKUP_PARENT, &nd);
2026         if (err)
2027                 return ERR_PTR(err);
2028         if (nd.last_type != LAST_NORM) {
2029                 path_put(&nd.path);
2030                 return ERR_PTR(-EINVAL);
2031         }
2032         mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
2033         d = __lookup_hash(&nd.last, nd.path.dentry, 0);
2034         if (IS_ERR(d)) {
2035                 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
2036                 path_put(&nd.path);
2037                 return d;
2038         }
2039         *path = nd.path;
2040         return d;
2041 }
2042
2043 int kern_path(const char *name, unsigned int flags, struct path *path)
2044 {
2045         struct nameidata nd;
2046         int res = do_path_lookup(AT_FDCWD, name, flags, &nd);
2047         if (!res)
2048                 *path = nd.path;
2049         return res;
2050 }
2051 EXPORT_SYMBOL(kern_path);
2052
2053 /**
2054  * vfs_path_lookup - lookup a file path relative to a dentry-vfsmount pair
2055  * @dentry:  pointer to dentry of the base directory
2056  * @mnt: pointer to vfs mount of the base directory
2057  * @name: pointer to file name
2058  * @flags: lookup flags
2059  * @path: pointer to struct path to fill
2060  */
2061 int vfs_path_lookup(struct dentry *dentry, struct vfsmount *mnt,
2062                     const char *name, unsigned int flags,
2063                     struct path *path)
2064 {
2065         struct nameidata nd;
2066         int err;
2067         nd.root.dentry = dentry;
2068         nd.root.mnt = mnt;
2069         BUG_ON(flags & LOOKUP_PARENT);
2070         /* the first argument of do_path_lookup() is ignored with LOOKUP_ROOT */
2071         err = do_path_lookup(AT_FDCWD, name, flags | LOOKUP_ROOT, &nd);
2072         if (!err)
2073                 *path = nd.path;
2074         return err;
2075 }
2076 EXPORT_SYMBOL(vfs_path_lookup);
2077
2078 /*
2079  * Restricted form of lookup. Doesn't follow links, single-component only,
2080  * needs parent already locked. Doesn't follow mounts.
2081  * SMP-safe.
2082  */
2083 static struct dentry *lookup_hash(struct nameidata *nd)
2084 {
2085         return __lookup_hash(&nd->last, nd->path.dentry, nd->flags);
2086 }
2087
2088 /**
2089  * lookup_one_len - filesystem helper to lookup single pathname component
2090  * @name:       pathname component to lookup
2091  * @base:       base directory to lookup from
2092  * @len:        maximum length @len should be interpreted to
2093  *
2094  * Note that this routine is purely a helper for filesystem usage and should
2095  * not be called by generic code.  Also note that by using this function the
2096  * nameidata argument is passed to the filesystem methods and a filesystem
2097  * using this helper needs to be prepared for that.
2098  */
2099 struct dentry *lookup_one_len(const char *name, struct dentry *base, int len)
2100 {
2101         struct qstr this;
2102         unsigned int c;
2103         int err;
2104
2105         WARN_ON_ONCE(!mutex_is_locked(&base->d_inode->i_mutex));
2106
2107         this.name = name;
2108         this.len = len;
2109         this.hash = full_name_hash(name, len);
2110         if (!len)
2111                 return ERR_PTR(-EACCES);
2112
2113         if (unlikely(name[0] == '.')) {
2114                 if (len < 2 || (len == 2 && name[1] == '.'))
2115                         return ERR_PTR(-EACCES);
2116         }
2117
2118         while (len--) {
2119                 c = *(const unsigned char *)name++;
2120                 if (c == '/' || c == '\0')
2121                         return ERR_PTR(-EACCES);
2122         }
2123         /*
2124          * See if the low-level filesystem might want
2125          * to use its own hash..
2126          */
2127         if (base->d_flags & DCACHE_OP_HASH) {
2128                 int err = base->d_op->d_hash(base, &this);
2129                 if (err < 0)
2130                         return ERR_PTR(err);
2131         }
2132
2133         err = inode_permission(base->d_inode, MAY_EXEC);
2134         if (err)
2135                 return ERR_PTR(err);
2136
2137         return __lookup_hash(&this, base, 0);
2138 }
2139 EXPORT_SYMBOL(lookup_one_len);
2140
2141 int user_path_at_empty(int dfd, const char __user *name, unsigned flags,
2142                  struct path *path, int *empty)
2143 {
2144         struct nameidata nd;
2145         struct filename *tmp = getname_flags(name, flags, empty);
2146         int err = PTR_ERR(tmp);
2147         if (!IS_ERR(tmp)) {
2148
2149                 BUG_ON(flags & LOOKUP_PARENT);
2150
2151                 err = filename_lookup(dfd, tmp, flags, &nd);
2152                 putname(tmp);
2153                 if (!err)
2154                         *path = nd.path;
2155         }
2156         return err;
2157 }
2158
2159 int user_path_at(int dfd, const char __user *name, unsigned flags,
2160                  struct path *path)
2161 {
2162         return user_path_at_empty(dfd, name, flags, path, NULL);
2163 }
2164 EXPORT_SYMBOL(user_path_at);
2165
2166 /*
2167  * NB: most callers don't do anything directly with the reference to the
2168  *     to struct filename, but the nd->last pointer points into the name string
2169  *     allocated by getname. So we must hold the reference to it until all
2170  *     path-walking is complete.
2171  */
2172 static struct filename *
2173 user_path_parent(int dfd, const char __user *path, struct nameidata *nd,
2174                  unsigned int flags)
2175 {
2176         struct filename *s = getname(path);
2177         int error;
2178
2179         /* only LOOKUP_REVAL is allowed in extra flags */
2180         flags &= LOOKUP_REVAL;
2181
2182         if (IS_ERR(s))
2183                 return s;
2184
2185         error = filename_lookup(dfd, s, flags | LOOKUP_PARENT, nd);
2186         if (error) {
2187                 putname(s);
2188                 return ERR_PTR(error);
2189         }
2190
2191         return s;
2192 }
2193
2194 /**
2195  * mountpoint_last - look up last component for umount
2196  * @nd:   pathwalk nameidata - currently pointing at parent directory of "last"
2197  * @path: pointer to container for result
2198  *
2199  * This is a special lookup_last function just for umount. In this case, we
2200  * need to resolve the path without doing any revalidation.
2201  *
2202  * The nameidata should be the result of doing a LOOKUP_PARENT pathwalk. Since
2203  * mountpoints are always pinned in the dcache, their ancestors are too. Thus,
2204  * in almost all cases, this lookup will be served out of the dcache. The only
2205  * cases where it won't are if nd->last refers to a symlink or the path is
2206  * bogus and it doesn't exist.
2207  *
2208  * Returns:
2209  * -error: if there was an error during lookup. This includes -ENOENT if the
2210  *         lookup found a negative dentry. The nd->path reference will also be
2211  *         put in this case.
2212  *
2213  * 0:      if we successfully resolved nd->path and found it to not to be a
2214  *         symlink that needs to be followed. "path" will also be populated.
2215  *         The nd->path reference will also be put.
2216  *
2217  * 1:      if we successfully resolved nd->last and found it to be a symlink
2218  *         that needs to be followed. "path" will be populated with the path
2219  *         to the link, and nd->path will *not* be put.
2220  */
2221 static int
2222 mountpoint_last(struct nameidata *nd, struct path *path)
2223 {
2224         int error = 0;
2225         struct dentry *dentry;
2226         struct dentry *dir = nd->path.dentry;
2227
2228         /* If we're in rcuwalk, drop out of it to handle last component */
2229         if (nd->flags & LOOKUP_RCU) {
2230                 if (unlazy_walk(nd, NULL)) {
2231                         error = -ECHILD;
2232                         goto out;
2233                 }
2234         }
2235
2236         nd->flags &= ~LOOKUP_PARENT;
2237
2238         if (unlikely(nd->last_type != LAST_NORM)) {
2239                 error = handle_dots(nd, nd->last_type);
2240                 if (error)
2241                         goto out;
2242                 dentry = dget(nd->path.dentry);
2243                 goto done;
2244         }
2245
2246         mutex_lock(&dir->d_inode->i_mutex);
2247         dentry = d_lookup(dir, &nd->last);
2248         if (!dentry) {
2249                 /*
2250                  * No cached dentry. Mounted dentries are pinned in the cache,
2251                  * so that means that this dentry is probably a symlink or the
2252                  * path doesn't actually point to a mounted dentry.
2253                  */
2254                 dentry = d_alloc(dir, &nd->last);
2255                 if (!dentry) {
2256                         error = -ENOMEM;
2257                         mutex_unlock(&dir->d_inode->i_mutex);
2258                         goto out;
2259                 }
2260                 dentry = lookup_real(dir->d_inode, dentry, nd->flags);
2261                 error = PTR_ERR(dentry);
2262                 if (IS_ERR(dentry)) {
2263                         mutex_unlock(&dir->d_inode->i_mutex);
2264                         goto out;
2265                 }
2266         }
2267         mutex_unlock(&dir->d_inode->i_mutex);
2268
2269 done:
2270         if (!dentry->d_inode || d_is_negative(dentry)) {
2271                 error = -ENOENT;
2272                 dput(dentry);
2273                 goto out;
2274         }
2275         path->dentry = dentry;
2276         path->mnt = nd->path.mnt;
2277         if (should_follow_link(dentry, nd->flags & LOOKUP_FOLLOW))
2278                 return 1;
2279         mntget(path->mnt);
2280         follow_mount(path);
2281         error = 0;
2282 out:
2283         terminate_walk(nd);
2284         return error;
2285 }
2286
2287 /**
2288  * path_mountpoint - look up a path to be umounted
2289  * @dfd:        directory file descriptor to start walk from
2290  * @name:       full pathname to walk
2291  * @path:       pointer to container for result
2292  * @flags:      lookup flags
2293  *
2294  * Look up the given name, but don't attempt to revalidate the last component.
2295  * Returns 0 and "path" will be valid on success; Returns error otherwise.
2296  */
2297 static int
2298 path_mountpoint(int dfd, const char *name, struct path *path, unsigned int flags)
2299 {
2300         struct file *base = NULL;
2301         struct nameidata nd;
2302         int err;
2303
2304         err = path_init(dfd, name, flags | LOOKUP_PARENT, &nd, &base);
2305         if (unlikely(err))
2306                 return err;
2307
2308         current->total_link_count = 0;
2309         err = link_path_walk(name, &nd);
2310         if (err)
2311                 goto out;
2312
2313         err = mountpoint_last(&nd, path);
2314         while (err > 0) {
2315                 void *cookie;
2316                 struct path link = *path;
2317                 err = may_follow_link(&link, &nd);
2318                 if (unlikely(err))
2319                         break;
2320                 nd.flags |= LOOKUP_PARENT;
2321                 err = follow_link(&link, &nd, &cookie);
2322                 if (err)
2323                         break;
2324                 err = mountpoint_last(&nd, path);
2325                 put_link(&nd, &link, cookie);
2326         }
2327 out:
2328         if (base)
2329                 fput(base);
2330
2331         if (nd.root.mnt && !(nd.flags & LOOKUP_ROOT))
2332                 path_put(&nd.root);
2333
2334         return err;
2335 }
2336
2337 static int
2338 filename_mountpoint(int dfd, struct filename *s, struct path *path,
2339                         unsigned int flags)
2340 {
2341         int error = path_mountpoint(dfd, s->name, path, flags | LOOKUP_RCU);
2342         if (unlikely(error == -ECHILD))
2343                 error = path_mountpoint(dfd, s->name, path, flags);
2344         if (unlikely(error == -ESTALE))
2345                 error = path_mountpoint(dfd, s->name, path, flags | LOOKUP_REVAL);
2346         if (likely(!error))
2347                 audit_inode(s, path->dentry, 0);
2348         return error;
2349 }
2350
2351 /**
2352  * user_path_mountpoint_at - lookup a path from userland in order to umount it
2353  * @dfd:        directory file descriptor
2354  * @name:       pathname from userland
2355  * @flags:      lookup flags
2356  * @path:       pointer to container to hold result
2357  *
2358  * A umount is a special case for path walking. We're not actually interested
2359  * in the inode in this situation, and ESTALE errors can be a problem. We
2360  * simply want track down the dentry and vfsmount attached at the mountpoint
2361  * and avoid revalidating the last component.
2362  *
2363  * Returns 0 and populates "path" on success.
2364  */
2365 int
2366 user_path_mountpoint_at(int dfd, const char __user *name, unsigned int flags,
2367                         struct path *path)
2368 {
2369         struct filename *s = getname(name);
2370         int error;
2371         if (IS_ERR(s))
2372                 return PTR_ERR(s);
2373         error = filename_mountpoint(dfd, s, path, flags);
2374         putname(s);
2375         return error;
2376 }
2377
2378 int
2379 kern_path_mountpoint(int dfd, const char *name, struct path *path,
2380                         unsigned int flags)
2381 {
2382         struct filename s = {.name = name};
2383         return filename_mountpoint(dfd, &s, path, flags);
2384 }
2385 EXPORT_SYMBOL(kern_path_mountpoint);
2386
2387 /*
2388  * It's inline, so penalty for filesystems that don't use sticky bit is
2389  * minimal.
2390  */
2391 static inline int check_sticky(struct inode *dir, struct inode *inode)
2392 {
2393         kuid_t fsuid = current_fsuid();
2394
2395         if (!(dir->i_mode & S_ISVTX))
2396                 return 0;
2397         if (uid_eq(inode->i_uid, fsuid))
2398                 return 0;
2399         if (uid_eq(dir->i_uid, fsuid))
2400                 return 0;
2401         return !capable_wrt_inode_uidgid(inode, CAP_FOWNER);
2402 }
2403
2404 /*
2405  *      Check whether we can remove a link victim from directory dir, check
2406  *  whether the type of victim is right.
2407  *  1. We can't do it if dir is read-only (done in permission())
2408  *  2. We should have write and exec permissions on dir
2409  *  3. We can't remove anything from append-only dir
2410  *  4. We can't do anything with immutable dir (done in permission())
2411  *  5. If the sticky bit on dir is set we should either
2412  *      a. be owner of dir, or
2413  *      b. be owner of victim, or
2414  *      c. have CAP_FOWNER capability
2415  *  6. If the victim is append-only or immutable we can't do antyhing with
2416  *     links pointing to it.
2417  *  7. If we were asked to remove a directory and victim isn't one - ENOTDIR.
2418  *  8. If we were asked to remove a non-directory and victim isn't one - EISDIR.
2419  *  9. We can't remove a root or mountpoint.
2420  * 10. We don't allow removal of NFS sillyrenamed files; it's handled by
2421  *     nfs_async_unlink().
2422  */
2423 static int may_delete(struct inode *dir, struct dentry *victim, bool isdir)
2424 {
2425         struct inode *inode = victim->d_inode;
2426         int error;
2427
2428         if (d_is_negative(victim))
2429                 return -ENOENT;
2430         BUG_ON(!inode);
2431
2432         BUG_ON(victim->d_parent->d_inode != dir);
2433         audit_inode_child(dir, victim, AUDIT_TYPE_CHILD_DELETE);
2434
2435         error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
2436         if (error)
2437                 return error;
2438         if (IS_APPEND(dir))
2439                 return -EPERM;
2440
2441         if (check_sticky(dir, inode) || IS_APPEND(inode) ||
2442             IS_IMMUTABLE(inode) || IS_SWAPFILE(inode))
2443                 return -EPERM;
2444         if (isdir) {
2445                 if (!d_is_dir(victim))
2446                         return -ENOTDIR;
2447                 if (IS_ROOT(victim))
2448                         return -EBUSY;
2449         } else if (d_is_dir(victim))
2450                 return -EISDIR;
2451         if (IS_DEADDIR(dir))
2452                 return -ENOENT;
2453         if (victim->d_flags & DCACHE_NFSFS_RENAMED)
2454                 return -EBUSY;
2455         return 0;
2456 }
2457
2458 /*      Check whether we can create an object with dentry child in directory
2459  *  dir.
2460  *  1. We can't do it if child already exists (open has special treatment for
2461  *     this case, but since we are inlined it's OK)
2462  *  2. We can't do it if dir is read-only (done in permission())
2463  *  3. We should have write and exec permissions on dir
2464  *  4. We can't do it if dir is immutable (done in permission())
2465  */
2466 static inline int may_create(struct inode *dir, struct dentry *child)
2467 {
2468         audit_inode_child(dir, child, AUDIT_TYPE_CHILD_CREATE);
2469         if (child->d_inode)
2470                 return -EEXIST;
2471         if (IS_DEADDIR(dir))
2472                 return -ENOENT;
2473         return inode_permission(dir, MAY_WRITE | MAY_EXEC);
2474 }
2475
2476 /*
2477  * p1 and p2 should be directories on the same fs.
2478  */
2479 struct dentry *lock_rename(struct dentry *p1, struct dentry *p2)
2480 {
2481         struct dentry *p;
2482
2483         if (p1 == p2) {
2484                 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
2485                 return NULL;
2486         }
2487
2488         mutex_lock(&p1->d_inode->i_sb->s_vfs_rename_mutex);
2489
2490         p = d_ancestor(p2, p1);
2491         if (p) {
2492                 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_PARENT);
2493                 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_CHILD);
2494                 return p;
2495         }
2496
2497         p = d_ancestor(p1, p2);
2498         if (p) {
2499                 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
2500                 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_CHILD);
2501                 return p;
2502         }
2503
2504         mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
2505         mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_CHILD);
2506         return NULL;
2507 }
2508 EXPORT_SYMBOL(lock_rename);
2509
2510 void unlock_rename(struct dentry *p1, struct dentry *p2)
2511 {
2512         mutex_unlock(&p1->d_inode->i_mutex);
2513         if (p1 != p2) {
2514                 mutex_unlock(&p2->d_inode->i_mutex);
2515                 mutex_unlock(&p1->d_inode->i_sb->s_vfs_rename_mutex);
2516         }
2517 }
2518 EXPORT_SYMBOL(unlock_rename);
2519
2520 int vfs_create(struct inode *dir, struct dentry *dentry, umode_t mode,
2521                 bool want_excl)
2522 {
2523         int error = may_create(dir, dentry);
2524         if (error)
2525                 return error;
2526
2527         if (!dir->i_op->create)
2528                 return -EACCES; /* shouldn't it be ENOSYS? */
2529         mode &= S_IALLUGO;
2530         mode |= S_IFREG;
2531         error = security_inode_create(dir, dentry, mode);
2532         if (error)
2533                 return error;
2534         error = dir->i_op->create(dir, dentry, mode, want_excl);
2535         if (!error)
2536                 fsnotify_create(dir, dentry);
2537         return error;
2538 }
2539 EXPORT_SYMBOL(vfs_create);
2540
2541 static int may_open(struct path *path, int acc_mode, int flag)
2542 {
2543         struct dentry *dentry = path->dentry;
2544         struct inode *inode = dentry->d_inode;
2545         int error;
2546
2547         /* O_PATH? */
2548         if (!acc_mode)
2549                 return 0;
2550
2551         if (!inode)
2552                 return -ENOENT;
2553
2554         switch (inode->i_mode & S_IFMT) {
2555         case S_IFLNK:
2556                 return -ELOOP;
2557         case S_IFDIR:
2558                 if (acc_mode & MAY_WRITE)
2559                         return -EISDIR;
2560                 break;
2561         case S_IFBLK:
2562         case S_IFCHR:
2563                 if (path->mnt->mnt_flags & MNT_NODEV)
2564                         return -EACCES;
2565                 /*FALLTHRU*/
2566         case S_IFIFO:
2567         case S_IFSOCK:
2568                 flag &= ~O_TRUNC;
2569                 break;
2570         }
2571
2572         error = inode_permission(inode, acc_mode);
2573         if (error)
2574                 return error;
2575
2576         /*
2577          * An append-only file must be opened in append mode for writing.
2578          */
2579         if (IS_APPEND(inode)) {
2580                 if  ((flag & O_ACCMODE) != O_RDONLY && !(flag & O_APPEND))
2581                         return -EPERM;
2582                 if (flag & O_TRUNC)
2583                         return -EPERM;
2584         }
2585
2586         /* O_NOATIME can only be set by the owner or superuser */
2587         if (flag & O_NOATIME && !inode_owner_or_capable(inode))
2588                 return -EPERM;
2589
2590         return 0;
2591 }
2592
2593 static int handle_truncate(struct file *filp)
2594 {
2595         struct path *path = &filp->f_path;
2596         struct inode *inode = path->dentry->d_inode;
2597         int error = get_write_access(inode);
2598         if (error)
2599                 return error;
2600         /*
2601          * Refuse to truncate files with mandatory locks held on them.
2602          */
2603         error = locks_verify_locked(filp);
2604         if (!error)
2605                 error = security_path_truncate(path);
2606         if (!error) {
2607                 error = do_truncate(path->dentry, 0,
2608                                     ATTR_MTIME|ATTR_CTIME|ATTR_OPEN,
2609                                     filp);
2610         }
2611         put_write_access(inode);
2612         return error;
2613 }
2614
2615 static inline int open_to_namei_flags(int flag)
2616 {
2617         if ((flag & O_ACCMODE) == 3)
2618                 flag--;
2619         return flag;
2620 }
2621
2622 static int may_o_create(struct path *dir, struct dentry *dentry, umode_t mode)
2623 {
2624         int error = security_path_mknod(dir, dentry, mode, 0);
2625         if (error)
2626                 return error;
2627
2628         error = inode_permission(dir->dentry->d_inode, MAY_WRITE | MAY_EXEC);
2629         if (error)
2630                 return error;
2631
2632         return security_inode_create(dir->dentry->d_inode, dentry, mode);
2633 }
2634
2635 /*
2636  * Attempt to atomically look up, create and open a file from a negative
2637  * dentry.
2638  *
2639  * Returns 0 if successful.  The file will have been created and attached to
2640  * @file by the filesystem calling finish_open().
2641  *
2642  * Returns 1 if the file was looked up only or didn't need creating.  The
2643  * caller will need to perform the open themselves.  @path will have been
2644  * updated to point to the new dentry.  This may be negative.
2645  *
2646  * Returns an error code otherwise.
2647  */
2648 static int atomic_open(struct nameidata *nd, struct dentry *dentry,
2649                         struct path *path, struct file *file,
2650                         const struct open_flags *op,
2651                         bool got_write, bool need_lookup,
2652                         int *opened)
2653 {
2654         struct inode *dir =  nd->path.dentry->d_inode;
2655         unsigned open_flag = open_to_namei_flags(op->open_flag);
2656         umode_t mode;
2657         int error;
2658         int acc_mode;
2659         int create_error = 0;
2660         struct dentry *const DENTRY_NOT_SET = (void *) -1UL;
2661         bool excl;
2662
2663         BUG_ON(dentry->d_inode);
2664
2665         /* Don't create child dentry for a dead directory. */
2666         if (unlikely(IS_DEADDIR(dir))) {
2667                 error = -ENOENT;
2668                 goto out;
2669         }
2670
2671         mode = op->mode;
2672         if ((open_flag & O_CREAT) && !IS_POSIXACL(dir))
2673                 mode &= ~current_umask();
2674
2675         excl = (open_flag & (O_EXCL | O_CREAT)) == (O_EXCL | O_CREAT);
2676         if (excl)
2677                 open_flag &= ~O_TRUNC;
2678
2679         /*
2680          * Checking write permission is tricky, bacuse we don't know if we are
2681          * going to actually need it: O_CREAT opens should work as long as the
2682          * file exists.  But checking existence breaks atomicity.  The trick is
2683          * to check access and if not granted clear O_CREAT from the flags.
2684          *
2685          * Another problem is returing the "right" error value (e.g. for an
2686          * O_EXCL open we want to return EEXIST not EROFS).
2687          */
2688         if (((open_flag & (O_CREAT | O_TRUNC)) ||
2689             (open_flag & O_ACCMODE) != O_RDONLY) && unlikely(!got_write)) {
2690                 if (!(open_flag & O_CREAT)) {
2691                         /*
2692                          * No O_CREATE -> atomicity not a requirement -> fall
2693                          * back to lookup + open
2694                          */
2695                         goto no_open;
2696                 } else if (open_flag & (O_EXCL | O_TRUNC)) {
2697                         /* Fall back and fail with the right error */
2698                         create_error = -EROFS;
2699                         goto no_open;
2700                 } else {
2701                         /* No side effects, safe to clear O_CREAT */
2702                         create_error = -EROFS;
2703                         open_flag &= ~O_CREAT;
2704                 }
2705         }
2706
2707         if (open_flag & O_CREAT) {
2708                 error = may_o_create(&nd->path, dentry, mode);
2709                 if (error) {
2710                         create_error = error;
2711                         if (open_flag & O_EXCL)
2712                                 goto no_open;
2713                         open_flag &= ~O_CREAT;
2714                 }
2715         }
2716
2717         if (nd->flags & LOOKUP_DIRECTORY)
2718                 open_flag |= O_DIRECTORY;
2719
2720         file->f_path.dentry = DENTRY_NOT_SET;
2721         file->f_path.mnt = nd->path.mnt;
2722         error = dir->i_op->atomic_open(dir, dentry, file, open_flag, mode,
2723                                       opened);
2724         if (error < 0) {
2725                 if (create_error && error == -ENOENT)
2726                         error = create_error;
2727                 goto out;
2728         }
2729
2730         if (error) {    /* returned 1, that is */
2731                 if (WARN_ON(file->f_path.dentry == DENTRY_NOT_SET)) {
2732                         error = -EIO;
2733                         goto out;
2734                 }
2735                 if (file->f_path.dentry) {
2736                         dput(dentry);
2737                         dentry = file->f_path.dentry;
2738                 }
2739                 if (*opened & FILE_CREATED)
2740                         fsnotify_create(dir, dentry);
2741                 if (!dentry->d_inode) {
2742                         WARN_ON(*opened & FILE_CREATED);
2743                         if (create_error) {
2744                                 error = create_error;
2745                                 goto out;
2746                         }
2747                 } else {
2748                         if (excl && !(*opened & FILE_CREATED)) {
2749                                 error = -EEXIST;
2750                                 goto out;
2751                         }
2752                 }
2753                 goto looked_up;
2754         }
2755
2756         /*
2757          * We didn't have the inode before the open, so check open permission
2758          * here.
2759          */
2760         acc_mode = op->acc_mode;
2761         if (*opened & FILE_CREATED) {
2762                 WARN_ON(!(open_flag & O_CREAT));
2763                 fsnotify_create(dir, dentry);
2764                 acc_mode = MAY_OPEN;
2765         }
2766         error = may_open(&file->f_path, acc_mode, open_flag);
2767         if (error)
2768                 fput(file);
2769
2770 out:
2771         dput(dentry);
2772         return error;
2773
2774 no_open:
2775         if (need_lookup) {
2776                 dentry = lookup_real(dir, dentry, nd->flags);
2777                 if (IS_ERR(dentry))
2778                         return PTR_ERR(dentry);
2779
2780                 if (create_error) {
2781                         int open_flag = op->open_flag;
2782
2783                         error = create_error;
2784                         if ((open_flag & O_EXCL)) {
2785                                 if (!dentry->d_inode)
2786                                         goto out;
2787                         } else if (!dentry->d_inode) {
2788                                 goto out;
2789                         } else if ((open_flag & O_TRUNC) &&
2790                                    S_ISREG(dentry->d_inode->i_mode)) {
2791                                 goto out;
2792                         }
2793                         /* will fail later, go on to get the right error */
2794                 }
2795         }
2796 looked_up:
2797         path->dentry = dentry;
2798         path->mnt = nd->path.mnt;
2799         return 1;
2800 }
2801
2802 /*
2803  * Look up and maybe create and open the last component.
2804  *
2805  * Must be called with i_mutex held on parent.
2806  *
2807  * Returns 0 if the file was successfully atomically created (if necessary) and
2808  * opened.  In this case the file will be returned attached to @file.
2809  *
2810  * Returns 1 if the file was not completely opened at this time, though lookups
2811  * and creations will have been performed and the dentry returned in @path will
2812  * be positive upon return if O_CREAT was specified.  If O_CREAT wasn't
2813  * specified then a negative dentry may be returned.
2814  *
2815  * An error code is returned otherwise.
2816  *
2817  * FILE_CREATE will be set in @*opened if the dentry was created and will be
2818  * cleared otherwise prior to returning.
2819  */
2820 static int lookup_open(struct nameidata *nd, struct path *path,
2821                         struct file *file,
2822                         const struct open_flags *op,
2823                         bool got_write, int *opened)
2824 {
2825         struct dentry *dir = nd->path.dentry;
2826         struct inode *dir_inode = dir->d_inode;
2827         struct dentry *dentry;
2828         int error;
2829         bool need_lookup;
2830
2831         *opened &= ~FILE_CREATED;
2832         dentry = lookup_dcache(&nd->last, dir, nd->flags, &need_lookup);
2833         if (IS_ERR(dentry))
2834                 return PTR_ERR(dentry);
2835
2836         /* Cached positive dentry: will open in f_op->open */
2837         if (!need_lookup && dentry->d_inode)
2838                 goto out_no_open;
2839
2840         if ((nd->flags & LOOKUP_OPEN) && dir_inode->i_op->atomic_open) {
2841                 return atomic_open(nd, dentry, path, file, op, got_write,
2842                                    need_lookup, opened);
2843         }
2844
2845         if (need_lookup) {
2846                 BUG_ON(dentry->d_inode);
2847
2848                 dentry = lookup_real(dir_inode, dentry, nd->flags);
2849                 if (IS_ERR(dentry))
2850                         return PTR_ERR(dentry);
2851         }
2852
2853         /* Negative dentry, just create the file */
2854         if (!dentry->d_inode && (op->open_flag & O_CREAT)) {
2855                 umode_t mode = op->mode;
2856                 if (!IS_POSIXACL(dir->d_inode))
2857                         mode &= ~current_umask();
2858                 /*
2859                  * This write is needed to ensure that a
2860                  * rw->ro transition does not occur between
2861                  * the time when the file is created and when
2862                  * a permanent write count is taken through
2863                  * the 'struct file' in finish_open().
2864                  */
2865                 if (!got_write) {
2866                         error = -EROFS;
2867                         goto out_dput;
2868                 }
2869                 *opened |= FILE_CREATED;
2870                 error = security_path_mknod(&nd->path, dentry, mode, 0);
2871                 if (error)
2872                         goto out_dput;
2873                 error = vfs_create(dir->d_inode, dentry, mode,
2874                                    nd->flags & LOOKUP_EXCL);
2875                 if (error)
2876                         goto out_dput;
2877         }
2878 out_no_open:
2879         path->dentry = dentry;
2880         path->mnt = nd->path.mnt;
2881         return 1;
2882
2883 out_dput:
2884         dput(dentry);
2885         return error;
2886 }
2887
2888 /*
2889  * Handle the last step of open()
2890  */
2891 static int do_last(struct nameidata *nd, struct path *path,
2892                    struct file *file, const struct open_flags *op,
2893                    int *opened, struct filename *name)
2894 {
2895         struct dentry *dir = nd->path.dentry;
2896         int open_flag = op->open_flag;
2897         bool will_truncate = (open_flag & O_TRUNC) != 0;
2898         bool got_write = false;
2899         int acc_mode = op->acc_mode;
2900         struct inode *inode;
2901         bool symlink_ok = false;
2902         struct path save_parent = { .dentry = NULL, .mnt = NULL };
2903         bool retried = false;
2904         int error;
2905
2906         nd->flags &= ~LOOKUP_PARENT;
2907         nd->flags |= op->intent;
2908
2909         if (nd->last_type != LAST_NORM) {
2910                 error = handle_dots(nd, nd->last_type);
2911                 if (error)
2912                         return error;
2913                 goto finish_open;
2914         }
2915
2916         if (!(open_flag & O_CREAT)) {
2917                 if (nd->last.name[nd->last.len])
2918                         nd->flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
2919                 if (open_flag & O_PATH && !(nd->flags & LOOKUP_FOLLOW))
2920                         symlink_ok = true;
2921                 /* we _can_ be in RCU mode here */
2922                 error = lookup_fast(nd, path, &inode);
2923                 if (likely(!error))
2924                         goto finish_lookup;
2925
2926                 if (error < 0)
2927                         goto out;
2928
2929                 BUG_ON(nd->inode != dir->d_inode);
2930         } else {
2931                 /* create side of things */
2932                 /*
2933                  * This will *only* deal with leaving RCU mode - LOOKUP_JUMPED
2934                  * has been cleared when we got to the last component we are
2935                  * about to look up
2936                  */
2937                 error = complete_walk(nd);
2938                 if (error)
2939                         return error;
2940
2941                 audit_inode(name, dir, LOOKUP_PARENT);
2942                 error = -EISDIR;
2943                 /* trailing slashes? */
2944                 if (nd->last.name[nd->last.len])
2945                         goto out;
2946         }
2947
2948 retry_lookup:
2949         if (op->open_flag & (O_CREAT | O_TRUNC | O_WRONLY | O_RDWR)) {
2950                 error = mnt_want_write(nd->path.mnt);
2951                 if (!error)
2952                         got_write = true;
2953                 /*
2954                  * do _not_ fail yet - we might not need that or fail with
2955                  * a different error; let lookup_open() decide; we'll be
2956                  * dropping this one anyway.
2957                  */
2958         }
2959         mutex_lock(&dir->d_inode->i_mutex);
2960         error = lookup_open(nd, path, file, op, got_write, opened);
2961         mutex_unlock(&dir->d_inode->i_mutex);
2962
2963         if (error <= 0) {
2964                 if (error)
2965                         goto out;
2966
2967                 if ((*opened & FILE_CREATED) ||
2968                     !S_ISREG(file_inode(file)->i_mode))
2969                         will_truncate = false;
2970
2971                 audit_inode(name, file->f_path.dentry, 0);
2972                 goto opened;
2973         }
2974
2975         if (*opened & FILE_CREATED) {
2976                 /* Don't check for write permission, don't truncate */
2977                 open_flag &= ~O_TRUNC;
2978                 will_truncate = false;
2979                 acc_mode = MAY_OPEN;
2980                 path_to_nameidata(path, nd);
2981                 goto finish_open_created;
2982         }
2983
2984         /*
2985          * create/update audit record if it already exists.
2986          */
2987         if (d_is_positive(path->dentry))
2988                 audit_inode(name, path->dentry, 0);
2989
2990         /*
2991          * If atomic_open() acquired write access it is dropped now due to
2992          * possible mount and symlink following (this might be optimized away if
2993          * necessary...)
2994          */
2995         if (got_write) {
2996                 mnt_drop_write(nd->path.mnt);
2997                 got_write = false;
2998         }
2999
3000         error = -EEXIST;
3001         if ((open_flag & (O_EXCL | O_CREAT)) == (O_EXCL | O_CREAT))
3002                 goto exit_dput;
3003
3004         error = follow_managed(path, nd->flags);
3005         if (error < 0)
3006                 goto exit_dput;
3007
3008         if (error)
3009                 nd->flags |= LOOKUP_JUMPED;
3010
3011         BUG_ON(nd->flags & LOOKUP_RCU);
3012         inode = path->dentry->d_inode;
3013 finish_lookup:
3014         /* we _can_ be in RCU mode here */
3015         error = -ENOENT;
3016         if (!inode || d_is_negative(path->dentry)) {
3017                 path_to_nameidata(path, nd);
3018                 goto out;
3019         }
3020
3021         if (should_follow_link(path->dentry, !symlink_ok)) {
3022                 if (nd->flags & LOOKUP_RCU) {
3023                         if (unlikely(unlazy_walk(nd, path->dentry))) {
3024                                 error = -ECHILD;
3025                                 goto out;
3026                         }
3027                 }
3028                 BUG_ON(inode != path->dentry->d_inode);
3029                 return 1;
3030         }
3031
3032         if ((nd->flags & LOOKUP_RCU) || nd->path.mnt != path->mnt) {
3033                 path_to_nameidata(path, nd);
3034         } else {
3035                 save_parent.dentry = nd->path.dentry;
3036                 save_parent.mnt = mntget(path->mnt);
3037                 nd->path.dentry = path->dentry;
3038
3039         }
3040         nd->inode = inode;
3041         /* Why this, you ask?  _Now_ we might have grown LOOKUP_JUMPED... */
3042 finish_open:
3043         error = complete_walk(nd);
3044         if (error) {
3045                 path_put(&save_parent);
3046                 return error;
3047         }
3048         audit_inode(name, nd->path.dentry, 0);
3049         error = -EISDIR;
3050         if ((open_flag & O_CREAT) && d_is_dir(nd->path.dentry))
3051                 goto out;
3052         error = -ENOTDIR;
3053         if ((nd->flags & LOOKUP_DIRECTORY) && !d_can_lookup(nd->path.dentry))
3054                 goto out;
3055         if (!S_ISREG(nd->inode->i_mode))
3056                 will_truncate = false;
3057
3058         if (will_truncate) {
3059                 error = mnt_want_write(nd->path.mnt);
3060                 if (error)
3061                         goto out;
3062                 got_write = true;
3063         }
3064 finish_open_created:
3065         error = may_open(&nd->path, acc_mode, open_flag);
3066         if (error)
3067                 goto out;
3068         file->f_path.mnt = nd->path.mnt;
3069         error = finish_open(file, nd->path.dentry, NULL, opened);
3070         if (error) {
3071                 if (error == -EOPENSTALE)
3072                         goto stale_open;
3073                 goto out;
3074         }
3075 opened:
3076         error = open_check_o_direct(file);
3077         if (error)
3078                 goto exit_fput;
3079         error = ima_file_check(file, op->acc_mode);
3080         if (error)
3081                 goto exit_fput;
3082
3083         if (will_truncate) {
3084                 error = handle_truncate(file);
3085                 if (error)
3086                         goto exit_fput;
3087         }
3088 out:
3089         if (got_write)
3090                 mnt_drop_write(nd->path.mnt);
3091         path_put(&save_parent);
3092         terminate_walk(nd);
3093         return error;
3094
3095 exit_dput:
3096         path_put_conditional(path, nd);
3097         goto out;
3098 exit_fput:
3099         fput(file);
3100         goto out;
3101
3102 stale_open:
3103         /* If no saved parent or already retried then can't retry */
3104         if (!save_parent.dentry || retried)
3105                 goto out;
3106
3107         BUG_ON(save_parent.dentry != dir);
3108         path_put(&nd->path);
3109         nd->path = save_parent;
3110         nd->inode = dir->d_inode;
3111         save_parent.mnt = NULL;
3112         save_parent.dentry = NULL;
3113         if (got_write) {
3114                 mnt_drop_write(nd->path.mnt);
3115                 got_write = false;
3116         }
3117         retried = true;
3118         goto retry_lookup;
3119 }
3120
3121 static int do_tmpfile(int dfd, struct filename *pathname,
3122                 struct nameidata *nd, int flags,
3123                 const struct open_flags *op,
3124                 struct file *file, int *opened)
3125 {
3126         static const struct qstr name = QSTR_INIT("/", 1);
3127         struct dentry *dentry, *child;
3128         struct inode *dir;
3129         int error = path_lookupat(dfd, pathname->name,
3130                                   flags | LOOKUP_DIRECTORY, nd);
3131         if (unlikely(error))
3132                 return error;
3133         error = mnt_want_write(nd->path.mnt);
3134         if (unlikely(error))
3135                 goto out;
3136         /* we want directory to be writable */
3137         error = inode_permission(nd->inode, MAY_WRITE | MAY_EXEC);
3138         if (error)
3139                 goto out2;
3140         dentry = nd->path.dentry;
3141         dir = dentry->d_inode;
3142         if (!dir->i_op->tmpfile) {
3143                 error = -EOPNOTSUPP;
3144                 goto out2;
3145         }
3146         child = d_alloc(dentry, &name);
3147         if (unlikely(!child)) {
3148                 error = -ENOMEM;
3149                 goto out2;
3150         }
3151         nd->flags &= ~LOOKUP_DIRECTORY;
3152         nd->flags |= op->intent;
3153         dput(nd->path.dentry);
3154         nd->path.dentry = child;
3155         error = dir->i_op->tmpfile(dir, nd->path.dentry, op->mode);
3156         if (error)
3157                 goto out2;
3158         audit_inode(pathname, nd->path.dentry, 0);
3159         error = may_open(&nd->path, op->acc_mode, op->open_flag);
3160         if (error)
3161                 goto out2;
3162         file->f_path.mnt = nd->path.mnt;
3163         error = finish_open(file, nd->path.dentry, NULL, opened);
3164         if (error)
3165                 goto out2;
3166         error = open_check_o_direct(file);
3167         if (error) {
3168                 fput(file);
3169         } else if (!(op->open_flag & O_EXCL)) {
3170                 struct inode *inode = file_inode(file);
3171                 spin_lock(&inode->i_lock);
3172                 inode->i_state |= I_LINKABLE;
3173                 spin_unlock(&inode->i_lock);
3174         }
3175 out2:
3176         mnt_drop_write(nd->path.mnt);
3177 out:
3178         path_put(&nd->path);
3179         return error;
3180 }
3181
3182 static struct file *path_openat(int dfd, struct filename *pathname,
3183                 struct nameidata *nd, const struct open_flags *op, int flags)
3184 {
3185         struct file *base = NULL;
3186         struct file *file;
3187         struct path path;
3188         int opened = 0;
3189         int error;
3190
3191         file = get_empty_filp();
3192         if (IS_ERR(file))
3193                 return file;
3194
3195         file->f_flags = op->open_flag;
3196
3197         if (unlikely(file->f_flags & __O_TMPFILE)) {
3198                 error = do_tmpfile(dfd, pathname, nd, flags, op, file, &opened);
3199                 goto out;
3200         }
3201
3202         error = path_init(dfd, pathname->name, flags | LOOKUP_PARENT, nd, &base);
3203         if (unlikely(error))
3204                 goto out;
3205
3206         current->total_link_count = 0;
3207         error = link_path_walk(pathname->name, nd);
3208         if (unlikely(error))
3209                 goto out;
3210
3211         error = do_last(nd, &path, file, op, &opened, pathname);
3212         while (unlikely(error > 0)) { /* trailing symlink */
3213                 struct path link = path;
3214                 void *cookie;
3215                 if (!(nd->flags & LOOKUP_FOLLOW)) {
3216                         path_put_conditional(&path, nd);
3217                         path_put(&nd->path);
3218                         error = -ELOOP;
3219                         break;
3220                 }
3221                 error = may_follow_link(&link, nd);
3222                 if (unlikely(error))
3223                         break;
3224                 nd->flags |= LOOKUP_PARENT;
3225                 nd->flags &= ~(LOOKUP_OPEN|LOOKUP_CREATE|LOOKUP_EXCL);
3226                 error = follow_link(&link, nd, &cookie);
3227                 if (unlikely(error))
3228                         break;
3229                 error = do_last(nd, &path, file, op, &opened, pathname);
3230                 put_link(nd, &link, cookie);
3231         }
3232 out:
3233         if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT))
3234                 path_put(&nd->root);
3235         if (base)
3236                 fput(base);
3237         if (!(opened & FILE_OPENED)) {
3238                 BUG_ON(!error);
3239                 put_filp(file);
3240         }
3241         if (unlikely(error)) {
3242                 if (error == -EOPENSTALE) {
3243                         if (flags & LOOKUP_RCU)
3244                                 error = -ECHILD;
3245                         else
3246                                 error = -ESTALE;
3247                 }
3248                 file = ERR_PTR(error);
3249         }
3250         return file;
3251 }
3252
3253 struct file *do_filp_open(int dfd, struct filename *pathname,
3254                 const struct open_flags *op)
3255 {
3256         struct nameidata nd;
3257         int flags = op->lookup_flags;
3258         struct file *filp;
3259
3260         filp = path_openat(dfd, pathname, &nd, op, flags | LOOKUP_RCU);
3261         if (unlikely(filp == ERR_PTR(-ECHILD)))
3262                 filp = path_openat(dfd, pathname, &nd, op, flags);
3263         if (unlikely(filp == ERR_PTR(-ESTALE)))
3264                 filp = path_openat(dfd, pathname, &nd, op, flags | LOOKUP_REVAL);
3265         return filp;
3266 }
3267
3268 struct file *do_file_open_root(struct dentry *dentry, struct vfsmount *mnt,
3269                 const char *name, const struct open_flags *op)
3270 {
3271         struct nameidata nd;
3272         struct file *file;
3273         struct filename filename = { .name = name };
3274         int flags = op->lookup_flags | LOOKUP_ROOT;
3275
3276         nd.root.mnt = mnt;
3277         nd.root.dentry = dentry;
3278
3279         if (d_is_symlink(dentry) && op->intent & LOOKUP_OPEN)
3280                 return ERR_PTR(-ELOOP);
3281
3282         file = path_openat(-1, &filename, &nd, op, flags | LOOKUP_RCU);
3283         if (unlikely(file == ERR_PTR(-ECHILD)))
3284                 file = path_openat(-1, &filename, &nd, op, flags);
3285         if (unlikely(file == ERR_PTR(-ESTALE)))
3286                 file = path_openat(-1, &filename, &nd, op, flags | LOOKUP_REVAL);
3287         return file;
3288 }
3289
3290 struct dentry *kern_path_create(int dfd, const char *pathname,
3291                                 struct path *path, unsigned int lookup_flags)
3292 {
3293         struct dentry *dentry = ERR_PTR(-EEXIST);
3294         struct nameidata nd;
3295         int err2;
3296         int error;
3297         bool is_dir = (lookup_flags & LOOKUP_DIRECTORY);
3298
3299         /*
3300          * Note that only LOOKUP_REVAL and LOOKUP_DIRECTORY matter here. Any
3301          * other flags passed in are ignored!
3302          */
3303         lookup_flags &= LOOKUP_REVAL;
3304
3305         error = do_path_lookup(dfd, pathname, LOOKUP_PARENT|lookup_flags, &nd);
3306         if (error)
3307                 return ERR_PTR(error);
3308
3309         /*
3310          * Yucky last component or no last component at all?
3311          * (foo/., foo/.., /////)
3312          */
3313         if (nd.last_type != LAST_NORM)
3314                 goto out;
3315         nd.flags &= ~LOOKUP_PARENT;
3316         nd.flags |= LOOKUP_CREATE | LOOKUP_EXCL;
3317
3318         /* don't fail immediately if it's r/o, at least try to report other errors */
3319         err2 = mnt_want_write(nd.path.mnt);
3320         /*
3321          * Do the final lookup.
3322          */
3323         mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
3324         dentry = lookup_hash(&nd);
3325         if (IS_ERR(dentry))
3326                 goto unlock;
3327
3328         error = -EEXIST;
3329         if (d_is_positive(dentry))
3330                 goto fail;
3331
3332         /*
3333          * Special case - lookup gave negative, but... we had foo/bar/
3334          * From the vfs_mknod() POV we just have a negative dentry -
3335          * all is fine. Let's be bastards - you had / on the end, you've
3336          * been asking for (non-existent) directory. -ENOENT for you.
3337          */
3338         if (unlikely(!is_dir && nd.last.name[nd.last.len])) {
3339                 error = -ENOENT;
3340                 goto fail;
3341         }
3342         if (unlikely(err2)) {
3343                 error = err2;
3344                 goto fail;
3345         }
3346         *path = nd.path;
3347         return dentry;
3348 fail:
3349         dput(dentry);
3350         dentry = ERR_PTR(error);
3351 unlock:
3352         mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
3353         if (!err2)
3354                 mnt_drop_write(nd.path.mnt);
3355 out:
3356         path_put(&nd.path);
3357         return dentry;
3358 }
3359 EXPORT_SYMBOL(kern_path_create);
3360
3361 void done_path_create(struct path *path, struct dentry *dentry)
3362 {
3363         dput(dentry);
3364         mutex_unlock(&path->dentry->d_inode->i_mutex);
3365         mnt_drop_write(path->mnt);
3366         path_put(path);
3367 }
3368 EXPORT_SYMBOL(done_path_create);
3369
3370 struct dentry *user_path_create(int dfd, const char __user *pathname,
3371                                 struct path *path, unsigned int lookup_flags)
3372 {
3373         struct filename *tmp = getname(pathname);
3374         struct dentry *res;
3375         if (IS_ERR(tmp))
3376                 return ERR_CAST(tmp);
3377         res = kern_path_create(dfd, tmp->name, path, lookup_flags);
3378         putname(tmp);
3379         return res;
3380 }
3381 EXPORT_SYMBOL(user_path_create);
3382
3383 int vfs_mknod(struct inode *dir, struct dentry *dentry, umode_t mode, dev_t dev)
3384 {
3385         int error = may_create(dir, dentry);
3386
3387         if (error)
3388                 return error;
3389
3390         if ((S_ISCHR(mode) || S_ISBLK(mode)) && !capable(CAP_MKNOD))
3391                 return -EPERM;
3392
3393         if (!dir->i_op->mknod)
3394                 return -EPERM;
3395
3396         error = devcgroup_inode_mknod(mode, dev);
3397         if (error)
3398                 return error;
3399
3400         error = security_inode_mknod(dir, dentry, mode, dev);
3401         if (error)
3402                 return error;
3403
3404         error = dir->i_op->mknod(dir, dentry, mode, dev);
3405         if (!error)
3406                 fsnotify_create(dir, dentry);
3407         return error;
3408 }
3409 EXPORT_SYMBOL(vfs_mknod);
3410
3411 static int may_mknod(umode_t mode)
3412 {
3413         switch (mode & S_IFMT) {
3414         case S_IFREG:
3415         case S_IFCHR:
3416         case S_IFBLK:
3417         case S_IFIFO:
3418         case S_IFSOCK:
3419         case 0: /* zero mode translates to S_IFREG */
3420                 return 0;
3421         case S_IFDIR:
3422                 return -EPERM;
3423         default:
3424                 return -EINVAL;
3425         }
3426 }
3427
3428 SYSCALL_DEFINE4(mknodat, int, dfd, const char __user *, filename, umode_t, mode,
3429                 unsigned, dev)
3430 {
3431         struct dentry *dentry;
3432         struct path path;
3433         int error;
3434         unsigned int lookup_flags = 0;
3435
3436         error = may_mknod(mode);
3437         if (error)
3438                 return error;
3439 retry:
3440         dentry = user_path_create(dfd, filename, &path, lookup_flags);
3441         if (IS_ERR(dentry))
3442                 return PTR_ERR(dentry);
3443
3444         if (!IS_POSIXACL(path.dentry->d_inode))
3445                 mode &= ~current_umask();
3446         error = security_path_mknod(&path, dentry, mode, dev);
3447         if (error)
3448                 goto out;
3449         switch (mode & S_IFMT) {
3450                 case 0: case S_IFREG:
3451                         error = vfs_create(path.dentry->d_inode,dentry,mode,true);
3452                         break;
3453                 case S_IFCHR: case S_IFBLK:
3454                         error = vfs_mknod(path.dentry->d_inode,dentry,mode,
3455                                         new_decode_dev(dev));
3456                         break;
3457                 case S_IFIFO: case S_IFSOCK:
3458                         error = vfs_mknod(path.dentry->d_inode,dentry,mode,0);
3459                         break;
3460         }
3461 out:
3462         done_path_create(&path, dentry);
3463         if (retry_estale(error, lookup_flags)) {
3464                 lookup_flags |= LOOKUP_REVAL;
3465                 goto retry;
3466         }
3467         return error;
3468 }
3469
3470 SYSCALL_DEFINE3(mknod, const char __user *, filename, umode_t, mode, unsigned, dev)
3471 {
3472         return sys_mknodat(AT_FDCWD, filename, mode, dev);
3473 }
3474
3475 int vfs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
3476 {
3477         int error = may_create(dir, dentry);
3478         unsigned max_links = dir->i_sb->s_max_links;
3479
3480         if (error)
3481                 return error;
3482
3483         if (!dir->i_op->mkdir)
3484                 return -EPERM;
3485
3486         mode &= (S_IRWXUGO|S_ISVTX);
3487         error = security_inode_mkdir(dir, dentry, mode);
3488         if (error)
3489                 return error;
3490
3491         if (max_links && dir->i_nlink >= max_links)
3492                 return -EMLINK;
3493
3494         error = dir->i_op->mkdir(dir, dentry, mode);
3495         if (!error)
3496                 fsnotify_mkdir(dir, dentry);
3497         return error;
3498 }
3499 EXPORT_SYMBOL(vfs_mkdir);
3500
3501 SYSCALL_DEFINE3(mkdirat, int, dfd, const char __user *, pathname, umode_t, mode)
3502 {
3503         struct dentry *dentry;
3504         struct path path;
3505         int error;
3506         unsigned int lookup_flags = LOOKUP_DIRECTORY;
3507
3508 retry:
3509         dentry = user_path_create(dfd, pathname, &path, lookup_flags);
3510         if (IS_ERR(dentry))
3511                 return PTR_ERR(dentry);
3512
3513         if (!IS_POSIXACL(path.dentry->d_inode))
3514                 mode &= ~current_umask();
3515         error = security_path_mkdir(&path, dentry, mode);
3516         if (!error)
3517                 error = vfs_mkdir(path.dentry->d_inode, dentry, mode);
3518         done_path_create(&path, dentry);
3519         if (retry_estale(error, lookup_flags)) {
3520                 lookup_flags |= LOOKUP_REVAL;
3521                 goto retry;
3522         }
3523         return error;
3524 }
3525
3526 SYSCALL_DEFINE2(mkdir, const char __user *, pathname, umode_t, mode)
3527 {
3528         return sys_mkdirat(AT_FDCWD, pathname, mode);
3529 }
3530
3531 /*
3532  * The dentry_unhash() helper will try to drop the dentry early: we
3533  * should have a usage count of 1 if we're the only user of this
3534  * dentry, and if that is true (possibly after pruning the dcache),
3535  * then we drop the dentry now.
3536  *
3537  * A low-level filesystem can, if it choses, legally
3538  * do a
3539  *
3540  *      if (!d_unhashed(dentry))
3541  *              return -EBUSY;
3542  *
3543  * if it cannot handle the case of removing a directory
3544  * that is still in use by something else..
3545  */
3546 void dentry_unhash(struct dentry *dentry)
3547 {
3548         shrink_dcache_parent(dentry);
3549         spin_lock(&dentry->d_lock);
3550         if (dentry->d_lockref.count == 1)
3551                 __d_drop(dentry);
3552         spin_unlock(&dentry->d_lock);
3553 }
3554 EXPORT_SYMBOL(dentry_unhash);
3555
3556 int vfs_rmdir(struct inode *dir, struct dentry *dentry)
3557 {
3558         int error = may_delete(dir, dentry, 1);
3559
3560         if (error)
3561                 return error;
3562
3563         if (!dir->i_op->rmdir)
3564                 return -EPERM;
3565
3566         dget(dentry);
3567         mutex_lock(&dentry->d_inode->i_mutex);
3568
3569         error = -EBUSY;
3570         if (d_mountpoint(dentry))
3571                 goto out;
3572
3573         error = security_inode_rmdir(dir, dentry);
3574         if (error)
3575                 goto out;
3576
3577         shrink_dcache_parent(dentry);
3578         error = dir->i_op->rmdir(dir, dentry);
3579         if (error)
3580                 goto out;
3581
3582         dentry->d_inode->i_flags |= S_DEAD;
3583         dont_mount(dentry);
3584
3585 out:
3586         mutex_unlock(&dentry->d_inode->i_mutex);
3587         dput(dentry);
3588         if (!error)
3589                 d_delete(dentry);
3590         return error;
3591 }
3592 EXPORT_SYMBOL(vfs_rmdir);
3593
3594 static long do_rmdir(int dfd, const char __user *pathname)
3595 {
3596         int error = 0;
3597         struct filename *name;
3598         struct dentry *dentry;
3599         struct nameidata nd;
3600         unsigned int lookup_flags = 0;
3601 retry:
3602         name = user_path_parent(dfd, pathname, &nd, lookup_flags);
3603         if (IS_ERR(name))
3604                 return PTR_ERR(name);
3605
3606         switch(nd.last_type) {
3607         case LAST_DOTDOT:
3608                 error = -ENOTEMPTY;
3609                 goto exit1;
3610         case LAST_DOT:
3611                 error = -EINVAL;
3612                 goto exit1;
3613         case LAST_ROOT:
3614                 error = -EBUSY;
3615                 goto exit1;
3616         }
3617
3618         nd.flags &= ~LOOKUP_PARENT;
3619         error = mnt_want_write(nd.path.mnt);
3620         if (error)
3621                 goto exit1;
3622
3623         mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
3624         dentry = lookup_hash(&nd);
3625         error = PTR_ERR(dentry);
3626         if (IS_ERR(dentry))
3627                 goto exit2;
3628         if (!dentry->d_inode) {
3629                 error = -ENOENT;
3630                 goto exit3;
3631         }
3632         error = security_path_rmdir(&nd.path, dentry);
3633         if (error)
3634                 goto exit3;
3635         error = vfs_rmdir(nd.path.dentry->d_inode, dentry);
3636 exit3:
3637         dput(dentry);
3638 exit2:
3639         mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
3640         mnt_drop_write(nd.path.mnt);
3641 exit1:
3642         path_put(&nd.path);
3643         putname(name);
3644         if (retry_estale(error, lookup_flags)) {
3645                 lookup_flags |= LOOKUP_REVAL;
3646                 goto retry;
3647         }
3648         return error;
3649 }
3650
3651 SYSCALL_DEFINE1(rmdir, const char __user *, pathname)
3652 {
3653         return do_rmdir(AT_FDCWD, pathname);
3654 }
3655
3656 /**
3657  * vfs_unlink - unlink a filesystem object
3658  * @dir:        parent directory
3659  * @dentry:     victim
3660  * @delegated_inode: returns victim inode, if the inode is delegated.
3661  *
3662  * The caller must hold dir->i_mutex.
3663  *
3664  * If vfs_unlink discovers a delegation, it will return -EWOULDBLOCK and
3665  * return a reference to the inode in delegated_inode.  The caller
3666  * should then break the delegation on that inode and retry.  Because
3667  * breaking a delegation may take a long time, the caller should drop
3668  * dir->i_mutex before doing so.
3669  *
3670  * Alternatively, a caller may pass NULL for delegated_inode.  This may
3671  * be appropriate for callers that expect the underlying filesystem not
3672  * to be NFS exported.
3673  */
3674 int vfs_unlink(struct inode *dir, struct dentry *dentry, struct inode **delegated_inode)
3675 {
3676         struct inode *target = dentry->d_inode;
3677         int error = may_delete(dir, dentry, 0);
3678
3679         if (error)
3680                 return error;
3681
3682         if (!dir->i_op->unlink)
3683                 return -EPERM;
3684
3685         mutex_lock(&target->i_mutex);
3686         if (d_mountpoint(dentry))
3687                 error = -EBUSY;
3688         else {
3689                 error = security_inode_unlink(dir, dentry);
3690                 if (!error) {
3691                         error = try_break_deleg(target, delegated_inode);
3692                         if (error)
3693                                 goto out;
3694                         error = dir->i_op->unlink(dir, dentry);
3695                         if (!error)
3696                                 dont_mount(dentry);
3697                 }
3698         }
3699 out:
3700         mutex_unlock(&target->i_mutex);
3701
3702         /* We don't d_delete() NFS sillyrenamed files--they still exist. */
3703         if (!error && !(dentry->d_flags & DCACHE_NFSFS_RENAMED)) {
3704                 fsnotify_link_count(target);
3705                 d_delete(dentry);
3706         }
3707
3708         return error;
3709 }
3710 EXPORT_SYMBOL(vfs_unlink);
3711
3712 /*
3713  * Make sure that the actual truncation of the file will occur outside its
3714  * directory's i_mutex.  Truncate can take a long time if there is a lot of
3715  * writeout happening, and we don't want to prevent access to the directory
3716  * while waiting on the I/O.
3717  */
3718 static long do_unlinkat(int dfd, const char __user *pathname)
3719 {
3720         int error;
3721         struct filename *name;
3722         struct dentry *dentry;
3723         struct nameidata nd;
3724         struct inode *inode = NULL;
3725         struct inode *delegated_inode = NULL;
3726         unsigned int lookup_flags = 0;
3727 retry:
3728         name = user_path_parent(dfd, pathname, &nd, lookup_flags);
3729         if (IS_ERR(name))
3730                 return PTR_ERR(name);
3731
3732         error = -EISDIR;
3733         if (nd.last_type != LAST_NORM)
3734                 goto exit1;
3735
3736         nd.flags &= ~LOOKUP_PARENT;
3737         error = mnt_want_write(nd.path.mnt);
3738         if (error)
3739                 goto exit1;
3740 retry_deleg:
3741         mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
3742         dentry = lookup_hash(&nd);
3743         error = PTR_ERR(dentry);
3744         if (!IS_ERR(dentry)) {
3745                 /* Why not before? Because we want correct error value */
3746                 if (nd.last.name[nd.last.len])
3747                         goto slashes;
3748                 inode = dentry->d_inode;
3749                 if (d_is_negative(dentry))
3750                         goto slashes;
3751                 ihold(inode);
3752                 error = security_path_unlink(&nd.path, dentry);
3753                 if (error)
3754                         goto exit2;
3755                 error = vfs_unlink(nd.path.dentry->d_inode, dentry, &delegated_inode);
3756 exit2:
3757                 dput(dentry);
3758         }
3759         mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
3760         if (inode)
3761                 iput(inode);    /* truncate the inode here */
3762         inode = NULL;
3763         if (delegated_inode) {
3764                 error = break_deleg_wait(&delegated_inode);
3765                 if (!error)
3766                         goto retry_deleg;
3767         }
3768         mnt_drop_write(nd.path.mnt);
3769 exit1:
3770         path_put(&nd.path);
3771         putname(name);
3772         if (retry_estale(error, lookup_flags)) {
3773                 lookup_flags |= LOOKUP_REVAL;
3774                 inode = NULL;
3775                 goto retry;
3776         }
3777         return error;
3778
3779 slashes:
3780         if (d_is_negative(dentry))
3781                 error = -ENOENT;
3782         else if (d_is_dir(dentry))
3783                 error = -EISDIR;
3784         else
3785                 error = -ENOTDIR;
3786         goto exit2;
3787 }
3788
3789 SYSCALL_DEFINE3(unlinkat, int, dfd, const char __user *, pathname, int, flag)
3790 {
3791         if ((flag & ~AT_REMOVEDIR) != 0)
3792                 return -EINVAL;
3793
3794         if (flag & AT_REMOVEDIR)
3795                 return do_rmdir(dfd, pathname);
3796
3797         return do_unlinkat(dfd, pathname);
3798 }
3799
3800 SYSCALL_DEFINE1(unlink, const char __user *, pathname)
3801 {
3802         return do_unlinkat(AT_FDCWD, pathname);
3803 }
3804
3805 int vfs_symlink(struct inode *dir, struct dentry *dentry, const char *oldname)
3806 {
3807         int error = may_create(dir, dentry);
3808
3809         if (error)
3810                 return error;
3811
3812         if (!dir->i_op->symlink)
3813                 return -EPERM;
3814
3815         error = security_inode_symlink(dir, dentry, oldname);
3816         if (error)
3817                 return error;
3818
3819         error = dir->i_op->symlink(dir, dentry, oldname);
3820         if (!error)
3821                 fsnotify_create(dir, dentry);
3822         return error;
3823 }
3824 EXPORT_SYMBOL(vfs_symlink);
3825
3826 SYSCALL_DEFINE3(symlinkat, const char __user *, oldname,
3827                 int, newdfd, const char __user *, newname)
3828 {
3829         int error;
3830         struct filename *from;
3831         struct dentry *dentry;
3832         struct path path;
3833         unsigned int lookup_flags = 0;
3834
3835         from = getname(oldname);
3836         if (IS_ERR(from))
3837                 return PTR_ERR(from);
3838 retry:
3839         dentry = user_path_create(newdfd, newname, &path, lookup_flags);
3840         error = PTR_ERR(dentry);
3841         if (IS_ERR(dentry))
3842                 goto out_putname;
3843
3844         error = security_path_symlink(&path, dentry, from->name);
3845         if (!error)
3846                 error = vfs_symlink(path.dentry->d_inode, dentry, from->name);
3847         done_path_create(&path, dentry);
3848         if (retry_estale(error, lookup_flags)) {
3849                 lookup_flags |= LOOKUP_REVAL;
3850                 goto retry;
3851         }
3852 out_putname:
3853         putname(from);
3854         return error;
3855 }
3856
3857 SYSCALL_DEFINE2(symlink, const char __user *, oldname, const char __user *, newname)
3858 {
3859         return sys_symlinkat(oldname, AT_FDCWD, newname);
3860 }
3861
3862 /**
3863  * vfs_link - create a new link
3864  * @old_dentry: object to be linked
3865  * @dir:        new parent
3866  * @new_dentry: where to create the new link
3867  * @delegated_inode: returns inode needing a delegation break
3868  *
3869  * The caller must hold dir->i_mutex
3870  *
3871  * If vfs_link discovers a delegation on the to-be-linked file in need
3872  * of breaking, it will return -EWOULDBLOCK and return a reference to the
3873  * inode in delegated_inode.  The caller should then break the delegation
3874  * and retry.  Because breaking a delegation may take a long time, the
3875  * caller should drop the i_mutex before doing so.
3876  *
3877  * Alternatively, a caller may pass NULL for delegated_inode.  This may
3878  * be appropriate for callers that expect the underlying filesystem not
3879  * to be NFS exported.
3880  */
3881 int vfs_link(struct dentry *old_dentry, struct inode *dir, struct dentry *new_dentry, struct inode **delegated_inode)
3882 {
3883         struct inode *inode = old_dentry->d_inode;
3884         unsigned max_links = dir->i_sb->s_max_links;
3885         int error;
3886
3887         if (!inode)
3888                 return -ENOENT;
3889
3890         error = may_create(dir, new_dentry);
3891         if (error)
3892                 return error;
3893
3894         if (dir->i_sb != inode->i_sb)
3895                 return -EXDEV;
3896
3897         /*
3898          * A link to an append-only or immutable file cannot be created.
3899          */
3900         if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
3901                 return -EPERM;
3902         if (!dir->i_op->link)
3903                 return -EPERM;
3904         if (S_ISDIR(inode->i_mode))
3905                 return -EPERM;
3906
3907         error = security_inode_link(old_dentry, dir, new_dentry);
3908         if (error)
3909                 return error;
3910
3911         mutex_lock(&inode->i_mutex);
3912         /* Make sure we don't allow creating hardlink to an unlinked file */
3913         if (inode->i_nlink == 0 && !(inode->i_state & I_LINKABLE))
3914                 error =  -ENOENT;
3915         else if (max_links && inode->i_nlink >= max_links)
3916                 error = -EMLINK;
3917         else {
3918                 error = try_break_deleg(inode, delegated_inode);
3919                 if (!error)
3920                         error = dir->i_op->link(old_dentry, dir, new_dentry);
3921         }
3922
3923         if (!error && (inode->i_state & I_LINKABLE)) {
3924                 spin_lock(&inode->i_lock);
3925                 inode->i_state &= ~I_LINKABLE;
3926                 spin_unlock(&inode->i_lock);
3927         }
3928         mutex_unlock(&inode->i_mutex);
3929         if (!error)
3930                 fsnotify_link(dir, inode, new_dentry);
3931         return error;
3932 }
3933 EXPORT_SYMBOL(vfs_link);
3934
3935 /*
3936  * Hardlinks are often used in delicate situations.  We avoid
3937  * security-related surprises by not following symlinks on the
3938  * newname.  --KAB
3939  *
3940  * We don't follow them on the oldname either to be compatible
3941  * with linux 2.0, and to avoid hard-linking to directories
3942  * and other special files.  --ADM
3943  */
3944 SYSCALL_DEFINE5(linkat, int, olddfd, const char __user *, oldname,
3945                 int, newdfd, const char __user *, newname, int, flags)
3946 {
3947         struct dentry *new_dentry;
3948         struct path old_path, new_path;
3949         struct inode *delegated_inode = NULL;
3950         int how = 0;
3951         int error;
3952
3953         if ((flags & ~(AT_SYMLINK_FOLLOW | AT_EMPTY_PATH)) != 0)
3954                 return -EINVAL;
3955         /*
3956          * To use null names we require CAP_DAC_READ_SEARCH
3957          * This ensures that not everyone will be able to create
3958          * handlink using the passed filedescriptor.
3959          */
3960         if (flags & AT_EMPTY_PATH) {
3961                 if (!capable(CAP_DAC_READ_SEARCH))
3962                         return -ENOENT;
3963                 how = LOOKUP_EMPTY;
3964         }
3965
3966         if (flags & AT_SYMLINK_FOLLOW)
3967                 how |= LOOKUP_FOLLOW;
3968 retry:
3969         error = user_path_at(olddfd, oldname, how, &old_path);
3970         if (error)
3971                 return error;
3972
3973         new_dentry = user_path_create(newdfd, newname, &new_path,
3974                                         (how & LOOKUP_REVAL));
3975         error = PTR_ERR(new_dentry);
3976         if (IS_ERR(new_dentry))
3977                 goto out;
3978
3979         error = -EXDEV;
3980         if (old_path.mnt != new_path.mnt)
3981                 goto out_dput;
3982         error = may_linkat(&old_path);
3983         if (unlikely(error))
3984                 goto out_dput;
3985         error = security_path_link(old_path.dentry, &new_path, new_dentry);
3986         if (error)
3987                 goto out_dput;
3988         error = vfs_link(old_path.dentry, new_path.dentry->d_inode, new_dentry, &delegated_inode);
3989 out_dput:
3990         done_path_create(&new_path, new_dentry);
3991         if (delegated_inode) {
3992                 error = break_deleg_wait(&delegated_inode);
3993                 if (!error) {
3994                         path_put(&old_path);
3995                         goto retry;
3996                 }
3997         }
3998         if (retry_estale(error, how)) {
3999                 path_put(&old_path);
4000                 how |= LOOKUP_REVAL;
4001                 goto retry;
4002         }
4003 out:
4004         path_put(&old_path);
4005
4006         return error;
4007 }
4008
4009 SYSCALL_DEFINE2(link, const char __user *, oldname, const char __user *, newname)
4010 {
4011         return sys_linkat(AT_FDCWD, oldname, AT_FDCWD, newname, 0);
4012 }
4013
4014 /**
4015  * vfs_rename - rename a filesystem object
4016  * @old_dir:    parent of source
4017  * @old_dentry: source
4018  * @new_dir:    parent of destination
4019  * @new_dentry: destination
4020  * @delegated_inode: returns an inode needing a delegation break
4021  * @flags:      rename flags
4022  *
4023  * The caller must hold multiple mutexes--see lock_rename()).
4024  *
4025  * If vfs_rename discovers a delegation in need of breaking at either
4026  * the source or destination, it will return -EWOULDBLOCK and return a
4027  * reference to the inode in delegated_inode.  The caller should then
4028  * break the delegation and retry.  Because breaking a delegation may
4029  * take a long time, the caller should drop all locks before doing
4030  * so.
4031  *
4032  * Alternatively, a caller may pass NULL for delegated_inode.  This may
4033  * be appropriate for callers that expect the underlying filesystem not
4034  * to be NFS exported.
4035  *
4036  * The worst of all namespace operations - renaming directory. "Perverted"
4037  * doesn't even start to describe it. Somebody in UCB had a heck of a trip...
4038  * Problems:
4039  *      a) we can get into loop creation.
4040  *      b) race potential - two innocent renames can create a loop together.
4041  *         That's where 4.4 screws up. Current fix: serialization on
4042  *         sb->s_vfs_rename_mutex. We might be more accurate, but that's another
4043  *         story.
4044  *      c) we have to lock _four_ objects - parents and victim (if it exists),
4045  *         and source (if it is not a directory).
4046  *         And that - after we got ->i_mutex on parents (until then we don't know
4047  *         whether the target exists).  Solution: try to be smart with locking
4048  *         order for inodes.  We rely on the fact that tree topology may change
4049  *         only under ->s_vfs_rename_mutex _and_ that parent of the object we
4050  *         move will be locked.  Thus we can rank directories by the tree
4051  *         (ancestors first) and rank all non-directories after them.
4052  *         That works since everybody except rename does "lock parent, lookup,
4053  *         lock child" and rename is under ->s_vfs_rename_mutex.
4054  *         HOWEVER, it relies on the assumption that any object with ->lookup()
4055  *         has no more than 1 dentry.  If "hybrid" objects will ever appear,
4056  *         we'd better make sure that there's no link(2) for them.
4057  *      d) conversion from fhandle to dentry may come in the wrong moment - when
4058  *         we are removing the target. Solution: we will have to grab ->i_mutex
4059  *         in the fhandle_to_dentry code. [FIXME - current nfsfh.c relies on
4060  *         ->i_mutex on parents, which works but leads to some truly excessive
4061  *         locking].
4062  */
4063 int vfs_rename(struct inode *old_dir, struct dentry *old_dentry,
4064                struct inode *new_dir, struct dentry *new_dentry,
4065                struct inode **delegated_inode, unsigned int flags)
4066 {
4067         int error;
4068         bool is_dir = d_is_dir(old_dentry);
4069         const unsigned char *old_name;
4070         struct inode *source = old_dentry->d_inode;
4071         struct inode *target = new_dentry->d_inode;
4072         bool new_is_dir = false;
4073         unsigned max_links = new_dir->i_sb->s_max_links;
4074
4075         if (source == target)
4076                 return 0;
4077
4078         error = may_delete(old_dir, old_dentry, is_dir);
4079         if (error)
4080                 return error;
4081
4082         if (!target) {
4083                 error = may_create(new_dir, new_dentry);
4084         } else {
4085                 new_is_dir = d_is_dir(new_dentry);
4086
4087                 if (!(flags & RENAME_EXCHANGE))
4088                         error = may_delete(new_dir, new_dentry, is_dir);
4089                 else
4090                         error = may_delete(new_dir, new_dentry, new_is_dir);
4091         }
4092         if (error)
4093                 return error;
4094
4095         if (!old_dir->i_op->rename && !old_dir->i_op->rename2)
4096                 return -EPERM;
4097
4098         if (flags && !old_dir->i_op->rename2)
4099                 return -EINVAL;
4100
4101         /*
4102          * If we are going to change the parent - check write permissions,
4103          * we'll need to flip '..'.
4104          */
4105         if (new_dir != old_dir) {
4106                 if (is_dir) {
4107                         error = inode_permission(source, MAY_WRITE);
4108                         if (error)
4109                                 return error;
4110                 }
4111                 if ((flags & RENAME_EXCHANGE) && new_is_dir) {
4112                         error = inode_permission(target, MAY_WRITE);
4113                         if (error)
4114                                 return error;
4115                 }
4116         }
4117
4118         error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry,
4119                                       flags);
4120         if (error)
4121                 return error;
4122
4123         old_name = fsnotify_oldname_init(old_dentry->d_name.name);
4124         dget(new_dentry);
4125         if (!is_dir || (flags & RENAME_EXCHANGE))
4126                 lock_two_nondirectories(source, target);
4127         else if (target)
4128                 mutex_lock(&target->i_mutex);
4129
4130         error = -EBUSY;
4131         if (d_mountpoint(old_dentry) || d_mountpoint(new_dentry))
4132                 goto out;
4133
4134         if (max_links && new_dir != old_dir) {
4135                 error = -EMLINK;
4136                 if (is_dir && !new_is_dir && new_dir->i_nlink >= max_links)
4137                         goto out;
4138                 if ((flags & RENAME_EXCHANGE) && !is_dir && new_is_dir &&
4139                     old_dir->i_nlink >= max_links)
4140                         goto out;
4141         }
4142         if (is_dir && !(flags & RENAME_EXCHANGE) && target)
4143                 shrink_dcache_parent(new_dentry);
4144         if (!is_dir) {
4145                 error = try_break_deleg(source, delegated_inode);
4146                 if (error)
4147                         goto out;
4148         }
4149         if (target && !new_is_dir) {
4150                 error = try_break_deleg(target, delegated_inode);
4151                 if (error)
4152                         goto out;
4153         }
4154         if (!old_dir->i_op->rename2) {
4155                 error = old_dir->i_op->rename(old_dir, old_dentry,
4156                                               new_dir, new_dentry);
4157         } else {
4158                 WARN_ON(old_dir->i_op->rename != NULL);
4159                 error = old_dir->i_op->rename2(old_dir, old_dentry,
4160                                                new_dir, new_dentry, flags);
4161         }
4162         if (error)
4163                 goto out;
4164
4165         if (!(flags & RENAME_EXCHANGE) && target) {
4166                 if (is_dir)
4167                         target->i_flags |= S_DEAD;
4168                 dont_mount(new_dentry);
4169         }
4170         if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE)) {
4171                 if (!(flags & RENAME_EXCHANGE))
4172                         d_move(old_dentry, new_dentry);
4173                 else
4174                         d_exchange(old_dentry, new_dentry);
4175         }
4176 out:
4177         if (!is_dir || (flags & RENAME_EXCHANGE))
4178                 unlock_two_nondirectories(source, target);
4179         else if (target)
4180                 mutex_unlock(&target->i_mutex);
4181         dput(new_dentry);
4182         if (!error) {
4183                 fsnotify_move(old_dir, new_dir, old_name, is_dir,
4184                               !(flags & RENAME_EXCHANGE) ? target : NULL, old_dentry);
4185                 if (flags & RENAME_EXCHANGE) {
4186                         fsnotify_move(new_dir, old_dir, old_dentry->d_name.name,
4187                                       new_is_dir, NULL, new_dentry);
4188                 }
4189         }
4190         fsnotify_oldname_free(old_name);
4191
4192         return error;
4193 }
4194 EXPORT_SYMBOL(vfs_rename);
4195
4196 SYSCALL_DEFINE5(renameat2, int, olddfd, const char __user *, oldname,
4197                 int, newdfd, const char __user *, newname, unsigned int, flags)
4198 {
4199         struct dentry *old_dir, *new_dir;
4200         struct dentry *old_dentry, *new_dentry;
4201         struct dentry *trap;
4202         struct nameidata oldnd, newnd;
4203         struct inode *delegated_inode = NULL;
4204         struct filename *from;
4205         struct filename *to;
4206         unsigned int lookup_flags = 0;
4207         bool should_retry = false;
4208         int error;
4209
4210         if (flags & ~(RENAME_NOREPLACE | RENAME_EXCHANGE))
4211                 return -EINVAL;
4212
4213         if ((flags & RENAME_NOREPLACE) && (flags & RENAME_EXCHANGE))
4214                 return -EINVAL;
4215
4216 retry:
4217         from = user_path_parent(olddfd, oldname, &oldnd, lookup_flags);
4218         if (IS_ERR(from)) {
4219                 error = PTR_ERR(from);
4220                 goto exit;
4221         }
4222
4223         to = user_path_parent(newdfd, newname, &newnd, lookup_flags);
4224         if (IS_ERR(to)) {
4225                 error = PTR_ERR(to);
4226                 goto exit1;
4227         }
4228
4229         error = -EXDEV;
4230         if (oldnd.path.mnt != newnd.path.mnt)
4231                 goto exit2;
4232
4233         old_dir = oldnd.path.dentry;
4234         error = -EBUSY;
4235         if (oldnd.last_type != LAST_NORM)
4236                 goto exit2;
4237
4238         new_dir = newnd.path.dentry;
4239         if (flags & RENAME_NOREPLACE)
4240                 error = -EEXIST;
4241         if (newnd.last_type != LAST_NORM)
4242                 goto exit2;
4243
4244         error = mnt_want_write(oldnd.path.mnt);
4245         if (error)
4246                 goto exit2;
4247
4248         oldnd.flags &= ~LOOKUP_PARENT;
4249         newnd.flags &= ~LOOKUP_PARENT;
4250         if (!(flags & RENAME_EXCHANGE))
4251                 newnd.flags |= LOOKUP_RENAME_TARGET;
4252
4253 retry_deleg:
4254         trap = lock_rename(new_dir, old_dir);
4255
4256         old_dentry = lookup_hash(&oldnd);
4257         error = PTR_ERR(old_dentry);
4258         if (IS_ERR(old_dentry))
4259                 goto exit3;
4260         /* source must exist */
4261         error = -ENOENT;
4262         if (d_is_negative(old_dentry))
4263                 goto exit4;
4264         new_dentry = lookup_hash(&newnd);
4265         error = PTR_ERR(new_dentry);
4266         if (IS_ERR(new_dentry))
4267                 goto exit4;
4268         error = -EEXIST;
4269         if ((flags & RENAME_NOREPLACE) && d_is_positive(new_dentry))
4270                 goto exit5;
4271         if (flags & RENAME_EXCHANGE) {
4272                 error = -ENOENT;
4273                 if (d_is_negative(new_dentry))
4274                         goto exit5;
4275
4276                 if (!d_is_dir(new_dentry)) {
4277                         error = -ENOTDIR;
4278                         if (newnd.last.name[newnd.last.len])
4279                                 goto exit5;
4280                 }
4281         }
4282         /* unless the source is a directory trailing slashes give -ENOTDIR */
4283         if (!d_is_dir(old_dentry)) {
4284                 error = -ENOTDIR;
4285                 if (oldnd.last.name[oldnd.last.len])
4286                         goto exit5;
4287                 if (!(flags & RENAME_EXCHANGE) && newnd.last.name[newnd.last.len])
4288                         goto exit5;
4289         }
4290         /* source should not be ancestor of target */
4291         error = -EINVAL;
4292         if (old_dentry == trap)
4293                 goto exit5;
4294         /* target should not be an ancestor of source */
4295         if (!(flags & RENAME_EXCHANGE))
4296                 error = -ENOTEMPTY;
4297         if (new_dentry == trap)
4298                 goto exit5;
4299
4300         error = security_path_rename(&oldnd.path, old_dentry,
4301                                      &newnd.path, new_dentry, flags);
4302         if (error)
4303                 goto exit5;
4304         error = vfs_rename(old_dir->d_inode, old_dentry,
4305                            new_dir->d_inode, new_dentry,
4306                            &delegated_inode, flags);
4307 exit5:
4308         dput(new_dentry);
4309 exit4:
4310         dput(old_dentry);
4311 exit3:
4312         unlock_rename(new_dir, old_dir);
4313         if (delegated_inode) {
4314                 error = break_deleg_wait(&delegated_inode);
4315                 if (!error)
4316                         goto retry_deleg;
4317         }
4318         mnt_drop_write(oldnd.path.mnt);
4319 exit2:
4320         if (retry_estale(error, lookup_flags))
4321                 should_retry = true;
4322         path_put(&newnd.path);
4323         putname(to);
4324 exit1:
4325         path_put(&oldnd.path);
4326         putname(from);
4327         if (should_retry) {
4328                 should_retry = false;
4329                 lookup_flags |= LOOKUP_REVAL;
4330                 goto retry;
4331         }
4332 exit:
4333         return error;
4334 }
4335
4336 SYSCALL_DEFINE4(renameat, int, olddfd, const char __user *, oldname,
4337                 int, newdfd, const char __user *, newname)
4338 {
4339         return sys_renameat2(olddfd, oldname, newdfd, newname, 0);
4340 }
4341
4342 SYSCALL_DEFINE2(rename, const char __user *, oldname, const char __user *, newname)
4343 {
4344         return sys_renameat2(AT_FDCWD, oldname, AT_FDCWD, newname, 0);
4345 }
4346
4347 int readlink_copy(char __user *buffer, int buflen, const char *link)
4348 {
4349         int len = PTR_ERR(link);
4350         if (IS_ERR(link))
4351                 goto out;
4352
4353         len = strlen(link);
4354         if (len > (unsigned) buflen)
4355                 len = buflen;
4356         if (copy_to_user(buffer, link, len))
4357                 len = -EFAULT;
4358 out:
4359         return len;
4360 }
4361 EXPORT_SYMBOL(readlink_copy);
4362
4363 /*
4364  * A helper for ->readlink().  This should be used *ONLY* for symlinks that
4365  * have ->follow_link() touching nd only in nd_set_link().  Using (or not
4366  * using) it for any given inode is up to filesystem.
4367  */
4368 int generic_readlink(struct dentry *dentry, char __user *buffer, int buflen)
4369 {
4370         struct nameidata nd;
4371         void *cookie;
4372         int res;
4373
4374         nd.depth = 0;
4375         cookie = dentry->d_inode->i_op->follow_link(dentry, &nd);
4376         if (IS_ERR(cookie))
4377                 return PTR_ERR(cookie);
4378
4379         res = readlink_copy(buffer, buflen, nd_get_link(&nd));
4380         if (dentry->d_inode->i_op->put_link)
4381                 dentry->d_inode->i_op->put_link(dentry, &nd, cookie);
4382         return res;
4383 }
4384 EXPORT_SYMBOL(generic_readlink);
4385
4386 /* get the link contents into pagecache */
4387 static char *page_getlink(struct dentry * dentry, struct page **ppage)
4388 {
4389         char *kaddr;
4390         struct page *page;
4391         struct address_space *mapping = dentry->d_inode->i_mapping;
4392         page = read_mapping_page(mapping, 0, NULL);
4393         if (IS_ERR(page))
4394                 return (char*)page;
4395         *ppage = page;
4396         kaddr = kmap(page);
4397         nd_terminate_link(kaddr, dentry->d_inode->i_size, PAGE_SIZE - 1);
4398         return kaddr;
4399 }
4400
4401 int page_readlink(struct dentry *dentry, char __user *buffer, int buflen)
4402 {
4403         struct page *page = NULL;
4404         int res = readlink_copy(buffer, buflen, page_getlink(dentry, &page));
4405         if (page) {
4406                 kunmap(page);
4407                 page_cache_release(page);
4408         }
4409         return res;
4410 }
4411 EXPORT_SYMBOL(page_readlink);
4412
4413 void *page_follow_link_light(struct dentry *dentry, struct nameidata *nd)
4414 {
4415         struct page *page = NULL;
4416         nd_set_link(nd, page_getlink(dentry, &page));
4417         return page;
4418 }
4419 EXPORT_SYMBOL(page_follow_link_light);
4420
4421 void page_put_link(struct dentry *dentry, struct nameidata *nd, void *cookie)
4422 {
4423         struct page *page = cookie;
4424
4425         if (page) {
4426                 kunmap(page);
4427                 page_cache_release(page);
4428         }
4429 }
4430 EXPORT_SYMBOL(page_put_link);
4431
4432 /*
4433  * The nofs argument instructs pagecache_write_begin to pass AOP_FLAG_NOFS
4434  */
4435 int __page_symlink(struct inode *inode, const char *symname, int len, int nofs)
4436 {
4437         struct address_space *mapping = inode->i_mapping;
4438         struct page *page;
4439         void *fsdata;
4440         int err;
4441         char *kaddr;
4442         unsigned int flags = AOP_FLAG_UNINTERRUPTIBLE;
4443         if (nofs)
4444                 flags |= AOP_FLAG_NOFS;
4445
4446 retry:
4447         err = pagecache_write_begin(NULL, mapping, 0, len-1,
4448                                 flags, &page, &fsdata);
4449         if (err)
4450                 goto fail;
4451
4452         kaddr = kmap_atomic(page);
4453         memcpy(kaddr, symname, len-1);
4454         kunmap_atomic(kaddr);
4455
4456         err = pagecache_write_end(NULL, mapping, 0, len-1, len-1,
4457                                                         page, fsdata);
4458         if (err < 0)
4459                 goto fail;
4460         if (err < len-1)
4461                 goto retry;
4462
4463         mark_inode_dirty(inode);
4464         return 0;
4465 fail:
4466         return err;
4467 }
4468 EXPORT_SYMBOL(__page_symlink);
4469
4470 int page_symlink(struct inode *inode, const char *symname, int len)
4471 {
4472         return __page_symlink(inode, symname, len,
4473                         !(mapping_gfp_mask(inode->i_mapping) & __GFP_FS));
4474 }
4475 EXPORT_SYMBOL(page_symlink);
4476
4477 const struct inode_operations page_symlink_inode_operations = {
4478         .readlink       = generic_readlink,
4479         .follow_link    = page_follow_link_light,
4480         .put_link       = page_put_link,
4481 };
4482 EXPORT_SYMBOL(page_symlink_inode_operations);