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