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