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