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