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