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