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