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