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