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