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