OSDN Git Service

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