vfs: unexport getname and putname symbols
[firefly-linux-kernel-4.4.55.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 <asm/uaccess.h>
38
39 #include "internal.h"
40 #include "mount.h"
41
42 /* [Feb-1997 T. Schoebel-Theuer]
43  * Fundamental changes in the pathname lookup mechanisms (namei)
44  * were necessary because of omirr.  The reason is that omirr needs
45  * to know the _real_ pathname, not the user-supplied one, in case
46  * of symlinks (and also when transname replacements occur).
47  *
48  * The new code replaces the old recursive symlink resolution with
49  * an iterative one (in case of non-nested symlink chains).  It does
50  * this with calls to <fs>_follow_link().
51  * As a side effect, dir_namei(), _namei() and follow_link() are now 
52  * replaced with a single function lookup_dentry() that can handle all 
53  * the special cases of the former code.
54  *
55  * With the new dcache, the pathname is stored at each inode, at least as
56  * long as the refcount of the inode is positive.  As a side effect, the
57  * size of the dcache depends on the inode cache and thus is dynamic.
58  *
59  * [29-Apr-1998 C. Scott Ananian] Updated above description of symlink
60  * resolution to correspond with current state of the code.
61  *
62  * Note that the symlink resolution is not *completely* iterative.
63  * There is still a significant amount of tail- and mid- recursion in
64  * the algorithm.  Also, note that <fs>_readlink() is not used in
65  * lookup_dentry(): lookup_dentry() on the result of <fs>_readlink()
66  * may return different results than <fs>_follow_link().  Many virtual
67  * filesystems (including /proc) exhibit this behavior.
68  */
69
70 /* [24-Feb-97 T. Schoebel-Theuer] Side effects caused by new implementation:
71  * New symlink semantics: when open() is called with flags O_CREAT | O_EXCL
72  * and the name already exists in form of a symlink, try to create the new
73  * name indicated by the symlink. The old code always complained that the
74  * name already exists, due to not following the symlink even if its target
75  * is nonexistent.  The new semantics affects also mknod() and link() when
76  * the name is a symlink pointing to a non-existent name.
77  *
78  * I don't know which semantics is the right one, since I have no access
79  * to standards. But I found by trial that HP-UX 9.0 has the full "new"
80  * semantics implemented, while SunOS 4.1.1 and Solaris (SunOS 5.4) have the
81  * "old" one. Personally, I think the new semantics is much more logical.
82  * Note that "ln old new" where "new" is a symlink pointing to a non-existing
83  * file does succeed in both HP-UX and SunOs, but not in Solaris
84  * and in the old Linux semantics.
85  */
86
87 /* [16-Dec-97 Kevin Buhr] For security reasons, we change some symlink
88  * semantics.  See the comments in "open_namei" and "do_link" below.
89  *
90  * [10-Sep-98 Alan Modra] Another symlink change.
91  */
92
93 /* [Feb-Apr 2000 AV] Complete rewrite. Rules for symlinks:
94  *      inside the path - always follow.
95  *      in the last component in creation/removal/renaming - never follow.
96  *      if LOOKUP_FOLLOW passed - follow.
97  *      if the pathname has trailing slashes - follow.
98  *      otherwise - don't follow.
99  * (applied in that order).
100  *
101  * [Jun 2000 AV] Inconsistent behaviour of open() in case if flags==O_CREAT
102  * restored for 2.4. This is the last surviving part of old 4.2BSD bug.
103  * During the 2.4 we need to fix the userland stuff depending on it -
104  * hopefully we will be able to get rid of that wart in 2.5. So far only
105  * XEmacs seems to be relying on it...
106  */
107 /*
108  * [Sep 2001 AV] Single-semaphore locking scheme (kudos to David Holland)
109  * implemented.  Let's see if raised priority of ->s_vfs_rename_mutex gives
110  * any extra contention...
111  */
112
113 /* In order to reduce some races, while at the same time doing additional
114  * checking and hopefully speeding things up, we copy filenames to the
115  * kernel data space before using them..
116  *
117  * POSIX.1 2.4: an empty pathname is invalid (ENOENT).
118  * PATH_MAX includes the nul terminator --RR.
119  */
120 static char *getname_flags(const char __user *filename, int flags, int *empty)
121 {
122         char *result = __getname(), *err;
123         int len;
124
125         if (unlikely(!result))
126                 return ERR_PTR(-ENOMEM);
127
128         len = strncpy_from_user(result, filename, PATH_MAX);
129         err = ERR_PTR(len);
130         if (unlikely(len < 0))
131                 goto error;
132
133         /* The empty path is special. */
134         if (unlikely(!len)) {
135                 if (empty)
136                         *empty = 1;
137                 err = ERR_PTR(-ENOENT);
138                 if (!(flags & LOOKUP_EMPTY))
139                         goto error;
140         }
141
142         err = ERR_PTR(-ENAMETOOLONG);
143         if (likely(len < PATH_MAX)) {
144                 audit_getname(result);
145                 return result;
146         }
147
148 error:
149         __putname(result);
150         return err;
151 }
152
153 char *getname(const char __user * filename)
154 {
155         return getname_flags(filename, 0, NULL);
156 }
157
158 #ifdef CONFIG_AUDITSYSCALL
159 void putname(const char *name)
160 {
161         if (unlikely(!audit_dummy_context()))
162                 audit_putname(name);
163         else
164                 __putname(name);
165 }
166 #endif
167
168 static int check_acl(struct inode *inode, int mask)
169 {
170 #ifdef CONFIG_FS_POSIX_ACL
171         struct posix_acl *acl;
172
173         if (mask & MAY_NOT_BLOCK) {
174                 acl = get_cached_acl_rcu(inode, ACL_TYPE_ACCESS);
175                 if (!acl)
176                         return -EAGAIN;
177                 /* no ->get_acl() calls in RCU mode... */
178                 if (acl == ACL_NOT_CACHED)
179                         return -ECHILD;
180                 return posix_acl_permission(inode, acl, mask & ~MAY_NOT_BLOCK);
181         }
182
183         acl = get_cached_acl(inode, ACL_TYPE_ACCESS);
184
185         /*
186          * A filesystem can force a ACL callback by just never filling the
187          * ACL cache. But normally you'd fill the cache either at inode
188          * instantiation time, or on the first ->get_acl call.
189          *
190          * If the filesystem doesn't have a get_acl() function at all, we'll
191          * just create the negative cache entry.
192          */
193         if (acl == ACL_NOT_CACHED) {
194                 if (inode->i_op->get_acl) {
195                         acl = inode->i_op->get_acl(inode, ACL_TYPE_ACCESS);
196                         if (IS_ERR(acl))
197                                 return PTR_ERR(acl);
198                 } else {
199                         set_cached_acl(inode, ACL_TYPE_ACCESS, NULL);
200                         return -EAGAIN;
201                 }
202         }
203
204         if (acl) {
205                 int error = posix_acl_permission(inode, acl, mask);
206                 posix_acl_release(acl);
207                 return error;
208         }
209 #endif
210
211         return -EAGAIN;
212 }
213
214 /*
215  * This does the basic permission checking
216  */
217 static int acl_permission_check(struct inode *inode, int mask)
218 {
219         unsigned int mode = inode->i_mode;
220
221         if (likely(uid_eq(current_fsuid(), inode->i_uid)))
222                 mode >>= 6;
223         else {
224                 if (IS_POSIXACL(inode) && (mode & S_IRWXG)) {
225                         int error = check_acl(inode, mask);
226                         if (error != -EAGAIN)
227                                 return error;
228                 }
229
230                 if (in_group_p(inode->i_gid))
231                         mode >>= 3;
232         }
233
234         /*
235          * If the DACs are ok we don't need any capability check.
236          */
237         if ((mask & ~mode & (MAY_READ | MAY_WRITE | MAY_EXEC)) == 0)
238                 return 0;
239         return -EACCES;
240 }
241
242 /**
243  * generic_permission -  check for access rights on a Posix-like filesystem
244  * @inode:      inode to check access rights for
245  * @mask:       right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC, ...)
246  *
247  * Used to check for read/write/execute permissions on a file.
248  * We use "fsuid" for this, letting us set arbitrary permissions
249  * for filesystem access without changing the "normal" uids which
250  * are used for other things.
251  *
252  * generic_permission is rcu-walk aware. It returns -ECHILD in case an rcu-walk
253  * request cannot be satisfied (eg. requires blocking or too much complexity).
254  * It would then be called again in ref-walk mode.
255  */
256 int generic_permission(struct inode *inode, int mask)
257 {
258         int ret;
259
260         /*
261          * Do the basic permission checks.
262          */
263         ret = acl_permission_check(inode, mask);
264         if (ret != -EACCES)
265                 return ret;
266
267         if (S_ISDIR(inode->i_mode)) {
268                 /* DACs are overridable for directories */
269                 if (inode_capable(inode, CAP_DAC_OVERRIDE))
270                         return 0;
271                 if (!(mask & MAY_WRITE))
272                         if (inode_capable(inode, CAP_DAC_READ_SEARCH))
273                                 return 0;
274                 return -EACCES;
275         }
276         /*
277          * Read/write DACs are always overridable.
278          * Executable DACs are overridable when there is
279          * at least one exec bit set.
280          */
281         if (!(mask & MAY_EXEC) || (inode->i_mode & S_IXUGO))
282                 if (inode_capable(inode, CAP_DAC_OVERRIDE))
283                         return 0;
284
285         /*
286          * Searching includes executable on directories, else just read.
287          */
288         mask &= MAY_READ | MAY_WRITE | MAY_EXEC;
289         if (mask == MAY_READ)
290                 if (inode_capable(inode, CAP_DAC_READ_SEARCH))
291                         return 0;
292
293         return -EACCES;
294 }
295
296 /*
297  * We _really_ want to just do "generic_permission()" without
298  * even looking at the inode->i_op values. So we keep a cache
299  * flag in inode->i_opflags, that says "this has not special
300  * permission function, use the fast case".
301  */
302 static inline int do_inode_permission(struct inode *inode, int mask)
303 {
304         if (unlikely(!(inode->i_opflags & IOP_FASTPERM))) {
305                 if (likely(inode->i_op->permission))
306                         return inode->i_op->permission(inode, mask);
307
308                 /* This gets set once for the inode lifetime */
309                 spin_lock(&inode->i_lock);
310                 inode->i_opflags |= IOP_FASTPERM;
311                 spin_unlock(&inode->i_lock);
312         }
313         return generic_permission(inode, mask);
314 }
315
316 /**
317  * __inode_permission - Check for access rights to a given inode
318  * @inode: Inode to check permission on
319  * @mask: Right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
320  *
321  * Check for read/write/execute permissions on an inode.
322  *
323  * When checking for MAY_APPEND, MAY_WRITE must also be set in @mask.
324  *
325  * This does not check for a read-only file system.  You probably want
326  * inode_permission().
327  */
328 int __inode_permission(struct inode *inode, int mask)
329 {
330         int retval;
331
332         if (unlikely(mask & MAY_WRITE)) {
333                 /*
334                  * Nobody gets write access to an immutable file.
335                  */
336                 if (IS_IMMUTABLE(inode))
337                         return -EACCES;
338         }
339
340         retval = do_inode_permission(inode, mask);
341         if (retval)
342                 return retval;
343
344         retval = devcgroup_inode_permission(inode, mask);
345         if (retval)
346                 return retval;
347
348         return security_inode_permission(inode, mask);
349 }
350
351 /**
352  * sb_permission - Check superblock-level permissions
353  * @sb: Superblock of inode to check permission on
354  * @inode: Inode to check permission on
355  * @mask: Right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
356  *
357  * Separate out file-system wide checks from inode-specific permission checks.
358  */
359 static int sb_permission(struct super_block *sb, struct inode *inode, int mask)
360 {
361         if (unlikely(mask & MAY_WRITE)) {
362                 umode_t mode = inode->i_mode;
363
364                 /* Nobody gets write access to a read-only fs. */
365                 if ((sb->s_flags & MS_RDONLY) &&
366                     (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode)))
367                         return -EROFS;
368         }
369         return 0;
370 }
371
372 /**
373  * inode_permission - Check for access rights to a given inode
374  * @inode: Inode to check permission on
375  * @mask: Right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
376  *
377  * Check for read/write/execute permissions on an inode.  We use fs[ug]id for
378  * this, letting us set arbitrary permissions for filesystem access without
379  * changing the "normal" UIDs which are used for other things.
380  *
381  * When checking for MAY_APPEND, MAY_WRITE must also be set in @mask.
382  */
383 int inode_permission(struct inode *inode, int mask)
384 {
385         int retval;
386
387         retval = sb_permission(inode->i_sb, inode, mask);
388         if (retval)
389                 return retval;
390         return __inode_permission(inode, mask);
391 }
392
393 /**
394  * path_get - get a reference to a path
395  * @path: path to get the reference to
396  *
397  * Given a path increment the reference count to the dentry and the vfsmount.
398  */
399 void path_get(struct path *path)
400 {
401         mntget(path->mnt);
402         dget(path->dentry);
403 }
404 EXPORT_SYMBOL(path_get);
405
406 /**
407  * path_put - put a reference to a path
408  * @path: path to put the reference to
409  *
410  * Given a path decrement the reference count to the dentry and the vfsmount.
411  */
412 void path_put(struct path *path)
413 {
414         dput(path->dentry);
415         mntput(path->mnt);
416 }
417 EXPORT_SYMBOL(path_put);
418
419 /*
420  * Path walking has 2 modes, rcu-walk and ref-walk (see
421  * Documentation/filesystems/path-lookup.txt).  In situations when we can't
422  * continue in RCU mode, we attempt to drop out of rcu-walk mode and grab
423  * normal reference counts on dentries and vfsmounts to transition to rcu-walk
424  * mode.  Refcounts are grabbed at the last known good point before rcu-walk
425  * got stuck, so ref-walk may continue from there. If this is not successful
426  * (eg. a seqcount has changed), then failure is returned and it's up to caller
427  * to restart the path walk from the beginning in ref-walk mode.
428  */
429
430 static inline void lock_rcu_walk(void)
431 {
432         br_read_lock(&vfsmount_lock);
433         rcu_read_lock();
434 }
435
436 static inline void unlock_rcu_walk(void)
437 {
438         rcu_read_unlock();
439         br_read_unlock(&vfsmount_lock);
440 }
441
442 /**
443  * unlazy_walk - try to switch to ref-walk mode.
444  * @nd: nameidata pathwalk data
445  * @dentry: child of nd->path.dentry or NULL
446  * Returns: 0 on success, -ECHILD on failure
447  *
448  * unlazy_walk attempts to legitimize the current nd->path, nd->root and dentry
449  * for ref-walk mode.  @dentry must be a path found by a do_lookup call on
450  * @nd or NULL.  Must be called from rcu-walk context.
451  */
452 static int unlazy_walk(struct nameidata *nd, struct dentry *dentry)
453 {
454         struct fs_struct *fs = current->fs;
455         struct dentry *parent = nd->path.dentry;
456         int want_root = 0;
457
458         BUG_ON(!(nd->flags & LOOKUP_RCU));
459         if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT)) {
460                 want_root = 1;
461                 spin_lock(&fs->lock);
462                 if (nd->root.mnt != fs->root.mnt ||
463                                 nd->root.dentry != fs->root.dentry)
464                         goto err_root;
465         }
466         spin_lock(&parent->d_lock);
467         if (!dentry) {
468                 if (!__d_rcu_to_refcount(parent, nd->seq))
469                         goto err_parent;
470                 BUG_ON(nd->inode != parent->d_inode);
471         } else {
472                 if (dentry->d_parent != parent)
473                         goto err_parent;
474                 spin_lock_nested(&dentry->d_lock, DENTRY_D_LOCK_NESTED);
475                 if (!__d_rcu_to_refcount(dentry, nd->seq))
476                         goto err_child;
477                 /*
478                  * If the sequence check on the child dentry passed, then
479                  * the child has not been removed from its parent. This
480                  * means the parent dentry must be valid and able to take
481                  * a reference at this point.
482                  */
483                 BUG_ON(!IS_ROOT(dentry) && dentry->d_parent != parent);
484                 BUG_ON(!parent->d_count);
485                 parent->d_count++;
486                 spin_unlock(&dentry->d_lock);
487         }
488         spin_unlock(&parent->d_lock);
489         if (want_root) {
490                 path_get(&nd->root);
491                 spin_unlock(&fs->lock);
492         }
493         mntget(nd->path.mnt);
494
495         unlock_rcu_walk();
496         nd->flags &= ~LOOKUP_RCU;
497         return 0;
498
499 err_child:
500         spin_unlock(&dentry->d_lock);
501 err_parent:
502         spin_unlock(&parent->d_lock);
503 err_root:
504         if (want_root)
505                 spin_unlock(&fs->lock);
506         return -ECHILD;
507 }
508
509 static inline int d_revalidate(struct dentry *dentry, unsigned int flags)
510 {
511         return dentry->d_op->d_revalidate(dentry, flags);
512 }
513
514 /**
515  * complete_walk - successful completion of path walk
516  * @nd:  pointer nameidata
517  *
518  * If we had been in RCU mode, drop out of it and legitimize nd->path.
519  * Revalidate the final result, unless we'd already done that during
520  * the path walk or the filesystem doesn't ask for it.  Return 0 on
521  * success, -error on failure.  In case of failure caller does not
522  * need to drop nd->path.
523  */
524 static int complete_walk(struct nameidata *nd)
525 {
526         struct dentry *dentry = nd->path.dentry;
527         int status;
528
529         if (nd->flags & LOOKUP_RCU) {
530                 nd->flags &= ~LOOKUP_RCU;
531                 if (!(nd->flags & LOOKUP_ROOT))
532                         nd->root.mnt = NULL;
533                 spin_lock(&dentry->d_lock);
534                 if (unlikely(!__d_rcu_to_refcount(dentry, nd->seq))) {
535                         spin_unlock(&dentry->d_lock);
536                         unlock_rcu_walk();
537                         return -ECHILD;
538                 }
539                 BUG_ON(nd->inode != dentry->d_inode);
540                 spin_unlock(&dentry->d_lock);
541                 mntget(nd->path.mnt);
542                 unlock_rcu_walk();
543         }
544
545         if (likely(!(nd->flags & LOOKUP_JUMPED)))
546                 return 0;
547
548         if (likely(!(dentry->d_flags & DCACHE_OP_REVALIDATE)))
549                 return 0;
550
551         if (likely(!(dentry->d_sb->s_type->fs_flags & FS_REVAL_DOT)))
552                 return 0;
553
554         /* Note: we do not d_invalidate() */
555         status = d_revalidate(dentry, nd->flags);
556         if (status > 0)
557                 return 0;
558
559         if (!status)
560                 status = -ESTALE;
561
562         path_put(&nd->path);
563         return status;
564 }
565
566 static __always_inline void set_root(struct nameidata *nd)
567 {
568         if (!nd->root.mnt)
569                 get_fs_root(current->fs, &nd->root);
570 }
571
572 static int link_path_walk(const char *, struct nameidata *);
573
574 static __always_inline void set_root_rcu(struct nameidata *nd)
575 {
576         if (!nd->root.mnt) {
577                 struct fs_struct *fs = current->fs;
578                 unsigned seq;
579
580                 do {
581                         seq = read_seqcount_begin(&fs->seq);
582                         nd->root = fs->root;
583                         nd->seq = __read_seqcount_begin(&nd->root.dentry->d_seq);
584                 } while (read_seqcount_retry(&fs->seq, seq));
585         }
586 }
587
588 static __always_inline int __vfs_follow_link(struct nameidata *nd, const char *link)
589 {
590         int ret;
591
592         if (IS_ERR(link))
593                 goto fail;
594
595         if (*link == '/') {
596                 set_root(nd);
597                 path_put(&nd->path);
598                 nd->path = nd->root;
599                 path_get(&nd->root);
600                 nd->flags |= LOOKUP_JUMPED;
601         }
602         nd->inode = nd->path.dentry->d_inode;
603
604         ret = link_path_walk(link, nd);
605         return ret;
606 fail:
607         path_put(&nd->path);
608         return PTR_ERR(link);
609 }
610
611 static void path_put_conditional(struct path *path, struct nameidata *nd)
612 {
613         dput(path->dentry);
614         if (path->mnt != nd->path.mnt)
615                 mntput(path->mnt);
616 }
617
618 static inline void path_to_nameidata(const struct path *path,
619                                         struct nameidata *nd)
620 {
621         if (!(nd->flags & LOOKUP_RCU)) {
622                 dput(nd->path.dentry);
623                 if (nd->path.mnt != path->mnt)
624                         mntput(nd->path.mnt);
625         }
626         nd->path.mnt = path->mnt;
627         nd->path.dentry = path->dentry;
628 }
629
630 /*
631  * Helper to directly jump to a known parsed path from ->follow_link,
632  * caller must have taken a reference to path beforehand.
633  */
634 void nd_jump_link(struct nameidata *nd, struct path *path)
635 {
636         path_put(&nd->path);
637
638         nd->path = *path;
639         nd->inode = nd->path.dentry->d_inode;
640         nd->flags |= LOOKUP_JUMPED;
641
642         BUG_ON(nd->inode->i_op->follow_link);
643 }
644
645 static inline void put_link(struct nameidata *nd, struct path *link, void *cookie)
646 {
647         struct inode *inode = link->dentry->d_inode;
648         if (inode->i_op->put_link)
649                 inode->i_op->put_link(link->dentry, nd, cookie);
650         path_put(link);
651 }
652
653 int sysctl_protected_symlinks __read_mostly = 1;
654 int sysctl_protected_hardlinks __read_mostly = 1;
655
656 /**
657  * may_follow_link - Check symlink following for unsafe situations
658  * @link: The path of the symlink
659  * @nd: nameidata pathwalk data
660  *
661  * In the case of the sysctl_protected_symlinks sysctl being enabled,
662  * CAP_DAC_OVERRIDE needs to be specifically ignored if the symlink is
663  * in a sticky world-writable directory. This is to protect privileged
664  * processes from failing races against path names that may change out
665  * from under them by way of other users creating malicious symlinks.
666  * It will permit symlinks to be followed only when outside a sticky
667  * world-writable directory, or when the uid of the symlink and follower
668  * match, or when the directory owner matches the symlink's owner.
669  *
670  * Returns 0 if following the symlink is allowed, -ve on error.
671  */
672 static inline int may_follow_link(struct path *link, struct nameidata *nd)
673 {
674         const struct inode *inode;
675         const struct inode *parent;
676
677         if (!sysctl_protected_symlinks)
678                 return 0;
679
680         /* Allowed if owner and follower match. */
681         inode = link->dentry->d_inode;
682         if (uid_eq(current_cred()->fsuid, inode->i_uid))
683                 return 0;
684
685         /* Allowed if parent directory not sticky and world-writable. */
686         parent = nd->path.dentry->d_inode;
687         if ((parent->i_mode & (S_ISVTX|S_IWOTH)) != (S_ISVTX|S_IWOTH))
688                 return 0;
689
690         /* Allowed if parent directory and link owner match. */
691         if (uid_eq(parent->i_uid, inode->i_uid))
692                 return 0;
693
694         audit_log_link_denied("follow_link", link);
695         path_put_conditional(link, nd);
696         path_put(&nd->path);
697         return -EACCES;
698 }
699
700 /**
701  * safe_hardlink_source - Check for safe hardlink conditions
702  * @inode: the source inode to hardlink from
703  *
704  * Return false if at least one of the following conditions:
705  *    - inode is not a regular file
706  *    - inode is setuid
707  *    - inode is setgid and group-exec
708  *    - access failure for read and write
709  *
710  * Otherwise returns true.
711  */
712 static bool safe_hardlink_source(struct inode *inode)
713 {
714         umode_t mode = inode->i_mode;
715
716         /* Special files should not get pinned to the filesystem. */
717         if (!S_ISREG(mode))
718                 return false;
719
720         /* Setuid files should not get pinned to the filesystem. */
721         if (mode & S_ISUID)
722                 return false;
723
724         /* Executable setgid files should not get pinned to the filesystem. */
725         if ((mode & (S_ISGID | S_IXGRP)) == (S_ISGID | S_IXGRP))
726                 return false;
727
728         /* Hardlinking to unreadable or unwritable sources is dangerous. */
729         if (inode_permission(inode, MAY_READ | MAY_WRITE))
730                 return false;
731
732         return true;
733 }
734
735 /**
736  * may_linkat - Check permissions for creating a hardlink
737  * @link: the source to hardlink from
738  *
739  * Block hardlink when all of:
740  *  - sysctl_protected_hardlinks enabled
741  *  - fsuid does not match inode
742  *  - hardlink source is unsafe (see safe_hardlink_source() above)
743  *  - not CAP_FOWNER
744  *
745  * Returns 0 if successful, -ve on error.
746  */
747 static int may_linkat(struct path *link)
748 {
749         const struct cred *cred;
750         struct inode *inode;
751
752         if (!sysctl_protected_hardlinks)
753                 return 0;
754
755         cred = current_cred();
756         inode = link->dentry->d_inode;
757
758         /* Source inode owner (or CAP_FOWNER) can hardlink all they like,
759          * otherwise, it must be a safe source.
760          */
761         if (uid_eq(cred->fsuid, inode->i_uid) || safe_hardlink_source(inode) ||
762             capable(CAP_FOWNER))
763                 return 0;
764
765         audit_log_link_denied("linkat", link);
766         return -EPERM;
767 }
768
769 static __always_inline int
770 follow_link(struct path *link, struct nameidata *nd, void **p)
771 {
772         struct dentry *dentry = link->dentry;
773         int error;
774         char *s;
775
776         BUG_ON(nd->flags & LOOKUP_RCU);
777
778         if (link->mnt == nd->path.mnt)
779                 mntget(link->mnt);
780
781         error = -ELOOP;
782         if (unlikely(current->total_link_count >= 40))
783                 goto out_put_nd_path;
784
785         cond_resched();
786         current->total_link_count++;
787
788         touch_atime(link);
789         nd_set_link(nd, NULL);
790
791         error = security_inode_follow_link(link->dentry, nd);
792         if (error)
793                 goto out_put_nd_path;
794
795         nd->last_type = LAST_BIND;
796         *p = dentry->d_inode->i_op->follow_link(dentry, nd);
797         error = PTR_ERR(*p);
798         if (IS_ERR(*p))
799                 goto out_put_nd_path;
800
801         error = 0;
802         s = nd_get_link(nd);
803         if (s) {
804                 error = __vfs_follow_link(nd, s);
805                 if (unlikely(error))
806                         put_link(nd, link, *p);
807         }
808
809         return error;
810
811 out_put_nd_path:
812         *p = NULL;
813         path_put(&nd->path);
814         path_put(link);
815         return error;
816 }
817
818 static int follow_up_rcu(struct path *path)
819 {
820         struct mount *mnt = real_mount(path->mnt);
821         struct mount *parent;
822         struct dentry *mountpoint;
823
824         parent = mnt->mnt_parent;
825         if (&parent->mnt == path->mnt)
826                 return 0;
827         mountpoint = mnt->mnt_mountpoint;
828         path->dentry = mountpoint;
829         path->mnt = &parent->mnt;
830         return 1;
831 }
832
833 /*
834  * follow_up - Find the mountpoint of path's vfsmount
835  *
836  * Given a path, find the mountpoint of its source file system.
837  * Replace @path with the path of the mountpoint in the parent mount.
838  * Up is towards /.
839  *
840  * Return 1 if we went up a level and 0 if we were already at the
841  * root.
842  */
843 int follow_up(struct path *path)
844 {
845         struct mount *mnt = real_mount(path->mnt);
846         struct mount *parent;
847         struct dentry *mountpoint;
848
849         br_read_lock(&vfsmount_lock);
850         parent = mnt->mnt_parent;
851         if (parent == mnt) {
852                 br_read_unlock(&vfsmount_lock);
853                 return 0;
854         }
855         mntget(&parent->mnt);
856         mountpoint = dget(mnt->mnt_mountpoint);
857         br_read_unlock(&vfsmount_lock);
858         dput(path->dentry);
859         path->dentry = mountpoint;
860         mntput(path->mnt);
861         path->mnt = &parent->mnt;
862         return 1;
863 }
864
865 /*
866  * Perform an automount
867  * - return -EISDIR to tell follow_managed() to stop and return the path we
868  *   were called with.
869  */
870 static int follow_automount(struct path *path, unsigned flags,
871                             bool *need_mntput)
872 {
873         struct vfsmount *mnt;
874         int err;
875
876         if (!path->dentry->d_op || !path->dentry->d_op->d_automount)
877                 return -EREMOTE;
878
879         /* We don't want to mount if someone's just doing a stat -
880          * unless they're stat'ing a directory and appended a '/' to
881          * the name.
882          *
883          * We do, however, want to mount if someone wants to open or
884          * create a file of any type under the mountpoint, wants to
885          * traverse through the mountpoint or wants to open the
886          * mounted directory.  Also, autofs may mark negative dentries
887          * as being automount points.  These will need the attentions
888          * of the daemon to instantiate them before they can be used.
889          */
890         if (!(flags & (LOOKUP_PARENT | LOOKUP_DIRECTORY |
891                      LOOKUP_OPEN | LOOKUP_CREATE | LOOKUP_AUTOMOUNT)) &&
892             path->dentry->d_inode)
893                 return -EISDIR;
894
895         current->total_link_count++;
896         if (current->total_link_count >= 40)
897                 return -ELOOP;
898
899         mnt = path->dentry->d_op->d_automount(path);
900         if (IS_ERR(mnt)) {
901                 /*
902                  * The filesystem is allowed to return -EISDIR here to indicate
903                  * it doesn't want to automount.  For instance, autofs would do
904                  * this so that its userspace daemon can mount on this dentry.
905                  *
906                  * However, we can only permit this if it's a terminal point in
907                  * the path being looked up; if it wasn't then the remainder of
908                  * the path is inaccessible and we should say so.
909                  */
910                 if (PTR_ERR(mnt) == -EISDIR && (flags & LOOKUP_PARENT))
911                         return -EREMOTE;
912                 return PTR_ERR(mnt);
913         }
914
915         if (!mnt) /* mount collision */
916                 return 0;
917
918         if (!*need_mntput) {
919                 /* lock_mount() may release path->mnt on error */
920                 mntget(path->mnt);
921                 *need_mntput = true;
922         }
923         err = finish_automount(mnt, path);
924
925         switch (err) {
926         case -EBUSY:
927                 /* Someone else made a mount here whilst we were busy */
928                 return 0;
929         case 0:
930                 path_put(path);
931                 path->mnt = mnt;
932                 path->dentry = dget(mnt->mnt_root);
933                 return 0;
934         default:
935                 return err;
936         }
937
938 }
939
940 /*
941  * Handle a dentry that is managed in some way.
942  * - Flagged for transit management (autofs)
943  * - Flagged as mountpoint
944  * - Flagged as automount point
945  *
946  * This may only be called in refwalk mode.
947  *
948  * Serialization is taken care of in namespace.c
949  */
950 static int follow_managed(struct path *path, unsigned flags)
951 {
952         struct vfsmount *mnt = path->mnt; /* held by caller, must be left alone */
953         unsigned managed;
954         bool need_mntput = false;
955         int ret = 0;
956
957         /* Given that we're not holding a lock here, we retain the value in a
958          * local variable for each dentry as we look at it so that we don't see
959          * the components of that value change under us */
960         while (managed = ACCESS_ONCE(path->dentry->d_flags),
961                managed &= DCACHE_MANAGED_DENTRY,
962                unlikely(managed != 0)) {
963                 /* Allow the filesystem to manage the transit without i_mutex
964                  * being held. */
965                 if (managed & DCACHE_MANAGE_TRANSIT) {
966                         BUG_ON(!path->dentry->d_op);
967                         BUG_ON(!path->dentry->d_op->d_manage);
968                         ret = path->dentry->d_op->d_manage(path->dentry, false);
969                         if (ret < 0)
970                                 break;
971                 }
972
973                 /* Transit to a mounted filesystem. */
974                 if (managed & DCACHE_MOUNTED) {
975                         struct vfsmount *mounted = lookup_mnt(path);
976                         if (mounted) {
977                                 dput(path->dentry);
978                                 if (need_mntput)
979                                         mntput(path->mnt);
980                                 path->mnt = mounted;
981                                 path->dentry = dget(mounted->mnt_root);
982                                 need_mntput = true;
983                                 continue;
984                         }
985
986                         /* Something is mounted on this dentry in another
987                          * namespace and/or whatever was mounted there in this
988                          * namespace got unmounted before we managed to get the
989                          * vfsmount_lock */
990                 }
991
992                 /* Handle an automount point */
993                 if (managed & DCACHE_NEED_AUTOMOUNT) {
994                         ret = follow_automount(path, flags, &need_mntput);
995                         if (ret < 0)
996                                 break;
997                         continue;
998                 }
999
1000                 /* We didn't change the current path point */
1001                 break;
1002         }
1003
1004         if (need_mntput && path->mnt == mnt)
1005                 mntput(path->mnt);
1006         if (ret == -EISDIR)
1007                 ret = 0;
1008         return ret < 0 ? ret : need_mntput;
1009 }
1010
1011 int follow_down_one(struct path *path)
1012 {
1013         struct vfsmount *mounted;
1014
1015         mounted = lookup_mnt(path);
1016         if (mounted) {
1017                 dput(path->dentry);
1018                 mntput(path->mnt);
1019                 path->mnt = mounted;
1020                 path->dentry = dget(mounted->mnt_root);
1021                 return 1;
1022         }
1023         return 0;
1024 }
1025
1026 static inline bool managed_dentry_might_block(struct dentry *dentry)
1027 {
1028         return (dentry->d_flags & DCACHE_MANAGE_TRANSIT &&
1029                 dentry->d_op->d_manage(dentry, true) < 0);
1030 }
1031
1032 /*
1033  * Try to skip to top of mountpoint pile in rcuwalk mode.  Fail if
1034  * we meet a managed dentry that would need blocking.
1035  */
1036 static bool __follow_mount_rcu(struct nameidata *nd, struct path *path,
1037                                struct inode **inode)
1038 {
1039         for (;;) {
1040                 struct mount *mounted;
1041                 /*
1042                  * Don't forget we might have a non-mountpoint managed dentry
1043                  * that wants to block transit.
1044                  */
1045                 if (unlikely(managed_dentry_might_block(path->dentry)))
1046                         return false;
1047
1048                 if (!d_mountpoint(path->dentry))
1049                         break;
1050
1051                 mounted = __lookup_mnt(path->mnt, path->dentry, 1);
1052                 if (!mounted)
1053                         break;
1054                 path->mnt = &mounted->mnt;
1055                 path->dentry = mounted->mnt.mnt_root;
1056                 nd->flags |= LOOKUP_JUMPED;
1057                 nd->seq = read_seqcount_begin(&path->dentry->d_seq);
1058                 /*
1059                  * Update the inode too. We don't need to re-check the
1060                  * dentry sequence number here after this d_inode read,
1061                  * because a mount-point is always pinned.
1062                  */
1063                 *inode = path->dentry->d_inode;
1064         }
1065         return true;
1066 }
1067
1068 static void follow_mount_rcu(struct nameidata *nd)
1069 {
1070         while (d_mountpoint(nd->path.dentry)) {
1071                 struct mount *mounted;
1072                 mounted = __lookup_mnt(nd->path.mnt, nd->path.dentry, 1);
1073                 if (!mounted)
1074                         break;
1075                 nd->path.mnt = &mounted->mnt;
1076                 nd->path.dentry = mounted->mnt.mnt_root;
1077                 nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq);
1078         }
1079 }
1080
1081 static int follow_dotdot_rcu(struct nameidata *nd)
1082 {
1083         set_root_rcu(nd);
1084
1085         while (1) {
1086                 if (nd->path.dentry == nd->root.dentry &&
1087                     nd->path.mnt == nd->root.mnt) {
1088                         break;
1089                 }
1090                 if (nd->path.dentry != nd->path.mnt->mnt_root) {
1091                         struct dentry *old = nd->path.dentry;
1092                         struct dentry *parent = old->d_parent;
1093                         unsigned seq;
1094
1095                         seq = read_seqcount_begin(&parent->d_seq);
1096                         if (read_seqcount_retry(&old->d_seq, nd->seq))
1097                                 goto failed;
1098                         nd->path.dentry = parent;
1099                         nd->seq = seq;
1100                         break;
1101                 }
1102                 if (!follow_up_rcu(&nd->path))
1103                         break;
1104                 nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq);
1105         }
1106         follow_mount_rcu(nd);
1107         nd->inode = nd->path.dentry->d_inode;
1108         return 0;
1109
1110 failed:
1111         nd->flags &= ~LOOKUP_RCU;
1112         if (!(nd->flags & LOOKUP_ROOT))
1113                 nd->root.mnt = NULL;
1114         unlock_rcu_walk();
1115         return -ECHILD;
1116 }
1117
1118 /*
1119  * Follow down to the covering mount currently visible to userspace.  At each
1120  * point, the filesystem owning that dentry may be queried as to whether the
1121  * caller is permitted to proceed or not.
1122  */
1123 int follow_down(struct path *path)
1124 {
1125         unsigned managed;
1126         int ret;
1127
1128         while (managed = ACCESS_ONCE(path->dentry->d_flags),
1129                unlikely(managed & DCACHE_MANAGED_DENTRY)) {
1130                 /* Allow the filesystem to manage the transit without i_mutex
1131                  * being held.
1132                  *
1133                  * We indicate to the filesystem if someone is trying to mount
1134                  * something here.  This gives autofs the chance to deny anyone
1135                  * other than its daemon the right to mount on its
1136                  * superstructure.
1137                  *
1138                  * The filesystem may sleep at this point.
1139                  */
1140                 if (managed & DCACHE_MANAGE_TRANSIT) {
1141                         BUG_ON(!path->dentry->d_op);
1142                         BUG_ON(!path->dentry->d_op->d_manage);
1143                         ret = path->dentry->d_op->d_manage(
1144                                 path->dentry, false);
1145                         if (ret < 0)
1146                                 return ret == -EISDIR ? 0 : ret;
1147                 }
1148
1149                 /* Transit to a mounted filesystem. */
1150                 if (managed & DCACHE_MOUNTED) {
1151                         struct vfsmount *mounted = lookup_mnt(path);
1152                         if (!mounted)
1153                                 break;
1154                         dput(path->dentry);
1155                         mntput(path->mnt);
1156                         path->mnt = mounted;
1157                         path->dentry = dget(mounted->mnt_root);
1158                         continue;
1159                 }
1160
1161                 /* Don't handle automount points here */
1162                 break;
1163         }
1164         return 0;
1165 }
1166
1167 /*
1168  * Skip to top of mountpoint pile in refwalk mode for follow_dotdot()
1169  */
1170 static void follow_mount(struct path *path)
1171 {
1172         while (d_mountpoint(path->dentry)) {
1173                 struct vfsmount *mounted = lookup_mnt(path);
1174                 if (!mounted)
1175                         break;
1176                 dput(path->dentry);
1177                 mntput(path->mnt);
1178                 path->mnt = mounted;
1179                 path->dentry = dget(mounted->mnt_root);
1180         }
1181 }
1182
1183 static void follow_dotdot(struct nameidata *nd)
1184 {
1185         set_root(nd);
1186
1187         while(1) {
1188                 struct dentry *old = nd->path.dentry;
1189
1190                 if (nd->path.dentry == nd->root.dentry &&
1191                     nd->path.mnt == nd->root.mnt) {
1192                         break;
1193                 }
1194                 if (nd->path.dentry != nd->path.mnt->mnt_root) {
1195                         /* rare case of legitimate dget_parent()... */
1196                         nd->path.dentry = dget_parent(nd->path.dentry);
1197                         dput(old);
1198                         break;
1199                 }
1200                 if (!follow_up(&nd->path))
1201                         break;
1202         }
1203         follow_mount(&nd->path);
1204         nd->inode = nd->path.dentry->d_inode;
1205 }
1206
1207 /*
1208  * This looks up the name in dcache, possibly revalidates the old dentry and
1209  * allocates a new one if not found or not valid.  In the need_lookup argument
1210  * returns whether i_op->lookup is necessary.
1211  *
1212  * dir->d_inode->i_mutex must be held
1213  */
1214 static struct dentry *lookup_dcache(struct qstr *name, struct dentry *dir,
1215                                     unsigned int flags, bool *need_lookup)
1216 {
1217         struct dentry *dentry;
1218         int error;
1219
1220         *need_lookup = false;
1221         dentry = d_lookup(dir, name);
1222         if (dentry) {
1223                 if (d_need_lookup(dentry)) {
1224                         *need_lookup = true;
1225                 } else if (dentry->d_flags & DCACHE_OP_REVALIDATE) {
1226                         error = d_revalidate(dentry, flags);
1227                         if (unlikely(error <= 0)) {
1228                                 if (error < 0) {
1229                                         dput(dentry);
1230                                         return ERR_PTR(error);
1231                                 } else if (!d_invalidate(dentry)) {
1232                                         dput(dentry);
1233                                         dentry = NULL;
1234                                 }
1235                         }
1236                 }
1237         }
1238
1239         if (!dentry) {
1240                 dentry = d_alloc(dir, name);
1241                 if (unlikely(!dentry))
1242                         return ERR_PTR(-ENOMEM);
1243
1244                 *need_lookup = true;
1245         }
1246         return dentry;
1247 }
1248
1249 /*
1250  * Call i_op->lookup on the dentry.  The dentry must be negative but may be
1251  * hashed if it was pouplated with DCACHE_NEED_LOOKUP.
1252  *
1253  * dir->d_inode->i_mutex must be held
1254  */
1255 static struct dentry *lookup_real(struct inode *dir, struct dentry *dentry,
1256                                   unsigned int flags)
1257 {
1258         struct dentry *old;
1259
1260         /* Don't create child dentry for a dead directory. */
1261         if (unlikely(IS_DEADDIR(dir))) {
1262                 dput(dentry);
1263                 return ERR_PTR(-ENOENT);
1264         }
1265
1266         old = dir->i_op->lookup(dir, dentry, flags);
1267         if (unlikely(old)) {
1268                 dput(dentry);
1269                 dentry = old;
1270         }
1271         return dentry;
1272 }
1273
1274 static struct dentry *__lookup_hash(struct qstr *name,
1275                 struct dentry *base, unsigned int flags)
1276 {
1277         bool need_lookup;
1278         struct dentry *dentry;
1279
1280         dentry = lookup_dcache(name, base, flags, &need_lookup);
1281         if (!need_lookup)
1282                 return dentry;
1283
1284         return lookup_real(base->d_inode, dentry, flags);
1285 }
1286
1287 /*
1288  *  It's more convoluted than I'd like it to be, but... it's still fairly
1289  *  small and for now I'd prefer to have fast path as straight as possible.
1290  *  It _is_ time-critical.
1291  */
1292 static int lookup_fast(struct nameidata *nd, struct qstr *name,
1293                        struct path *path, struct inode **inode)
1294 {
1295         struct vfsmount *mnt = nd->path.mnt;
1296         struct dentry *dentry, *parent = nd->path.dentry;
1297         int need_reval = 1;
1298         int status = 1;
1299         int err;
1300
1301         /*
1302          * Rename seqlock is not required here because in the off chance
1303          * of a false negative due to a concurrent rename, we're going to
1304          * do the non-racy lookup, below.
1305          */
1306         if (nd->flags & LOOKUP_RCU) {
1307                 unsigned seq;
1308                 dentry = __d_lookup_rcu(parent, name, &seq, nd->inode);
1309                 if (!dentry)
1310                         goto unlazy;
1311
1312                 /*
1313                  * This sequence count validates that the inode matches
1314                  * the dentry name information from lookup.
1315                  */
1316                 *inode = dentry->d_inode;
1317                 if (read_seqcount_retry(&dentry->d_seq, seq))
1318                         return -ECHILD;
1319
1320                 /*
1321                  * This sequence count validates that the parent had no
1322                  * changes while we did the lookup of the dentry above.
1323                  *
1324                  * The memory barrier in read_seqcount_begin of child is
1325                  *  enough, we can use __read_seqcount_retry here.
1326                  */
1327                 if (__read_seqcount_retry(&parent->d_seq, nd->seq))
1328                         return -ECHILD;
1329                 nd->seq = seq;
1330
1331                 if (unlikely(d_need_lookup(dentry)))
1332                         goto unlazy;
1333                 if (unlikely(dentry->d_flags & DCACHE_OP_REVALIDATE)) {
1334                         status = d_revalidate(dentry, nd->flags);
1335                         if (unlikely(status <= 0)) {
1336                                 if (status != -ECHILD)
1337                                         need_reval = 0;
1338                                 goto unlazy;
1339                         }
1340                 }
1341                 path->mnt = mnt;
1342                 path->dentry = dentry;
1343                 if (unlikely(!__follow_mount_rcu(nd, path, inode)))
1344                         goto unlazy;
1345                 if (unlikely(path->dentry->d_flags & DCACHE_NEED_AUTOMOUNT))
1346                         goto unlazy;
1347                 return 0;
1348 unlazy:
1349                 if (unlazy_walk(nd, dentry))
1350                         return -ECHILD;
1351         } else {
1352                 dentry = __d_lookup(parent, name);
1353         }
1354
1355         if (unlikely(!dentry))
1356                 goto need_lookup;
1357
1358         if (unlikely(d_need_lookup(dentry))) {
1359                 dput(dentry);
1360                 goto need_lookup;
1361         }
1362
1363         if (unlikely(dentry->d_flags & DCACHE_OP_REVALIDATE) && need_reval)
1364                 status = d_revalidate(dentry, nd->flags);
1365         if (unlikely(status <= 0)) {
1366                 if (status < 0) {
1367                         dput(dentry);
1368                         return status;
1369                 }
1370                 if (!d_invalidate(dentry)) {
1371                         dput(dentry);
1372                         goto need_lookup;
1373                 }
1374         }
1375
1376         path->mnt = mnt;
1377         path->dentry = dentry;
1378         err = follow_managed(path, nd->flags);
1379         if (unlikely(err < 0)) {
1380                 path_put_conditional(path, nd);
1381                 return err;
1382         }
1383         if (err)
1384                 nd->flags |= LOOKUP_JUMPED;
1385         *inode = path->dentry->d_inode;
1386         return 0;
1387
1388 need_lookup:
1389         return 1;
1390 }
1391
1392 /* Fast lookup failed, do it the slow way */
1393 static int lookup_slow(struct nameidata *nd, struct qstr *name,
1394                        struct path *path)
1395 {
1396         struct dentry *dentry, *parent;
1397         int err;
1398
1399         parent = nd->path.dentry;
1400         BUG_ON(nd->inode != parent->d_inode);
1401
1402         mutex_lock(&parent->d_inode->i_mutex);
1403         dentry = __lookup_hash(name, parent, nd->flags);
1404         mutex_unlock(&parent->d_inode->i_mutex);
1405         if (IS_ERR(dentry))
1406                 return PTR_ERR(dentry);
1407         path->mnt = nd->path.mnt;
1408         path->dentry = dentry;
1409         err = follow_managed(path, nd->flags);
1410         if (unlikely(err < 0)) {
1411                 path_put_conditional(path, nd);
1412                 return err;
1413         }
1414         if (err)
1415                 nd->flags |= LOOKUP_JUMPED;
1416         return 0;
1417 }
1418
1419 static inline int may_lookup(struct nameidata *nd)
1420 {
1421         if (nd->flags & LOOKUP_RCU) {
1422                 int err = inode_permission(nd->inode, MAY_EXEC|MAY_NOT_BLOCK);
1423                 if (err != -ECHILD)
1424                         return err;
1425                 if (unlazy_walk(nd, NULL))
1426                         return -ECHILD;
1427         }
1428         return inode_permission(nd->inode, MAY_EXEC);
1429 }
1430
1431 static inline int handle_dots(struct nameidata *nd, int type)
1432 {
1433         if (type == LAST_DOTDOT) {
1434                 if (nd->flags & LOOKUP_RCU) {
1435                         if (follow_dotdot_rcu(nd))
1436                                 return -ECHILD;
1437                 } else
1438                         follow_dotdot(nd);
1439         }
1440         return 0;
1441 }
1442
1443 static void terminate_walk(struct nameidata *nd)
1444 {
1445         if (!(nd->flags & LOOKUP_RCU)) {
1446                 path_put(&nd->path);
1447         } else {
1448                 nd->flags &= ~LOOKUP_RCU;
1449                 if (!(nd->flags & LOOKUP_ROOT))
1450                         nd->root.mnt = NULL;
1451                 unlock_rcu_walk();
1452         }
1453 }
1454
1455 /*
1456  * Do we need to follow links? We _really_ want to be able
1457  * to do this check without having to look at inode->i_op,
1458  * so we keep a cache of "no, this doesn't need follow_link"
1459  * for the common case.
1460  */
1461 static inline int should_follow_link(struct inode *inode, int follow)
1462 {
1463         if (unlikely(!(inode->i_opflags & IOP_NOFOLLOW))) {
1464                 if (likely(inode->i_op->follow_link))
1465                         return follow;
1466
1467                 /* This gets set once for the inode lifetime */
1468                 spin_lock(&inode->i_lock);
1469                 inode->i_opflags |= IOP_NOFOLLOW;
1470                 spin_unlock(&inode->i_lock);
1471         }
1472         return 0;
1473 }
1474
1475 static inline int walk_component(struct nameidata *nd, struct path *path,
1476                 struct qstr *name, int type, int follow)
1477 {
1478         struct inode *inode;
1479         int err;
1480         /*
1481          * "." and ".." are special - ".." especially so because it has
1482          * to be able to know about the current root directory and
1483          * parent relationships.
1484          */
1485         if (unlikely(type != LAST_NORM))
1486                 return handle_dots(nd, type);
1487         err = lookup_fast(nd, name, path, &inode);
1488         if (unlikely(err)) {
1489                 if (err < 0)
1490                         goto out_err;
1491
1492                 err = lookup_slow(nd, name, path);
1493                 if (err < 0)
1494                         goto out_err;
1495
1496                 inode = path->dentry->d_inode;
1497         }
1498         err = -ENOENT;
1499         if (!inode)
1500                 goto out_path_put;
1501
1502         if (should_follow_link(inode, follow)) {
1503                 if (nd->flags & LOOKUP_RCU) {
1504                         if (unlikely(unlazy_walk(nd, path->dentry))) {
1505                                 err = -ECHILD;
1506                                 goto out_err;
1507                         }
1508                 }
1509                 BUG_ON(inode != path->dentry->d_inode);
1510                 return 1;
1511         }
1512         path_to_nameidata(path, nd);
1513         nd->inode = inode;
1514         return 0;
1515
1516 out_path_put:
1517         path_to_nameidata(path, nd);
1518 out_err:
1519         terminate_walk(nd);
1520         return err;
1521 }
1522
1523 /*
1524  * This limits recursive symlink follows to 8, while
1525  * limiting consecutive symlinks to 40.
1526  *
1527  * Without that kind of total limit, nasty chains of consecutive
1528  * symlinks can cause almost arbitrarily long lookups.
1529  */
1530 static inline int nested_symlink(struct path *path, struct nameidata *nd)
1531 {
1532         int res;
1533
1534         if (unlikely(current->link_count >= MAX_NESTED_LINKS)) {
1535                 path_put_conditional(path, nd);
1536                 path_put(&nd->path);
1537                 return -ELOOP;
1538         }
1539         BUG_ON(nd->depth >= MAX_NESTED_LINKS);
1540
1541         nd->depth++;
1542         current->link_count++;
1543
1544         do {
1545                 struct path link = *path;
1546                 void *cookie;
1547
1548                 res = follow_link(&link, nd, &cookie);
1549                 if (res)
1550                         break;
1551                 res = walk_component(nd, path, &nd->last,
1552                                      nd->last_type, LOOKUP_FOLLOW);
1553                 put_link(nd, &link, cookie);
1554         } while (res > 0);
1555
1556         current->link_count--;
1557         nd->depth--;
1558         return res;
1559 }
1560
1561 /*
1562  * We really don't want to look at inode->i_op->lookup
1563  * when we don't have to. So we keep a cache bit in
1564  * the inode ->i_opflags field that says "yes, we can
1565  * do lookup on this inode".
1566  */
1567 static inline int can_lookup(struct inode *inode)
1568 {
1569         if (likely(inode->i_opflags & IOP_LOOKUP))
1570                 return 1;
1571         if (likely(!inode->i_op->lookup))
1572                 return 0;
1573
1574         /* We do this once for the lifetime of the inode */
1575         spin_lock(&inode->i_lock);
1576         inode->i_opflags |= IOP_LOOKUP;
1577         spin_unlock(&inode->i_lock);
1578         return 1;
1579 }
1580
1581 /*
1582  * We can do the critical dentry name comparison and hashing
1583  * operations one word at a time, but we are limited to:
1584  *
1585  * - Architectures with fast unaligned word accesses. We could
1586  *   do a "get_unaligned()" if this helps and is sufficiently
1587  *   fast.
1588  *
1589  * - Little-endian machines (so that we can generate the mask
1590  *   of low bytes efficiently). Again, we *could* do a byte
1591  *   swapping load on big-endian architectures if that is not
1592  *   expensive enough to make the optimization worthless.
1593  *
1594  * - non-CONFIG_DEBUG_PAGEALLOC configurations (so that we
1595  *   do not trap on the (extremely unlikely) case of a page
1596  *   crossing operation.
1597  *
1598  * - Furthermore, we need an efficient 64-bit compile for the
1599  *   64-bit case in order to generate the "number of bytes in
1600  *   the final mask". Again, that could be replaced with a
1601  *   efficient population count instruction or similar.
1602  */
1603 #ifdef CONFIG_DCACHE_WORD_ACCESS
1604
1605 #include <asm/word-at-a-time.h>
1606
1607 #ifdef CONFIG_64BIT
1608
1609 static inline unsigned int fold_hash(unsigned long hash)
1610 {
1611         hash += hash >> (8*sizeof(int));
1612         return hash;
1613 }
1614
1615 #else   /* 32-bit case */
1616
1617 #define fold_hash(x) (x)
1618
1619 #endif
1620
1621 unsigned int full_name_hash(const unsigned char *name, unsigned int len)
1622 {
1623         unsigned long a, mask;
1624         unsigned long hash = 0;
1625
1626         for (;;) {
1627                 a = load_unaligned_zeropad(name);
1628                 if (len < sizeof(unsigned long))
1629                         break;
1630                 hash += a;
1631                 hash *= 9;
1632                 name += sizeof(unsigned long);
1633                 len -= sizeof(unsigned long);
1634                 if (!len)
1635                         goto done;
1636         }
1637         mask = ~(~0ul << len*8);
1638         hash += mask & a;
1639 done:
1640         return fold_hash(hash);
1641 }
1642 EXPORT_SYMBOL(full_name_hash);
1643
1644 /*
1645  * Calculate the length and hash of the path component, and
1646  * return the length of the component;
1647  */
1648 static inline unsigned long hash_name(const char *name, unsigned int *hashp)
1649 {
1650         unsigned long a, b, adata, bdata, mask, hash, len;
1651         const struct word_at_a_time constants = WORD_AT_A_TIME_CONSTANTS;
1652
1653         hash = a = 0;
1654         len = -sizeof(unsigned long);
1655         do {
1656                 hash = (hash + a) * 9;
1657                 len += sizeof(unsigned long);
1658                 a = load_unaligned_zeropad(name+len);
1659                 b = a ^ REPEAT_BYTE('/');
1660         } while (!(has_zero(a, &adata, &constants) | has_zero(b, &bdata, &constants)));
1661
1662         adata = prep_zero_mask(a, adata, &constants);
1663         bdata = prep_zero_mask(b, bdata, &constants);
1664
1665         mask = create_zero_mask(adata | bdata);
1666
1667         hash += a & zero_bytemask(mask);
1668         *hashp = fold_hash(hash);
1669
1670         return len + find_zero(mask);
1671 }
1672
1673 #else
1674
1675 unsigned int full_name_hash(const unsigned char *name, unsigned int len)
1676 {
1677         unsigned long hash = init_name_hash();
1678         while (len--)
1679                 hash = partial_name_hash(*name++, hash);
1680         return end_name_hash(hash);
1681 }
1682 EXPORT_SYMBOL(full_name_hash);
1683
1684 /*
1685  * We know there's a real path component here of at least
1686  * one character.
1687  */
1688 static inline unsigned long hash_name(const char *name, unsigned int *hashp)
1689 {
1690         unsigned long hash = init_name_hash();
1691         unsigned long len = 0, c;
1692
1693         c = (unsigned char)*name;
1694         do {
1695                 len++;
1696                 hash = partial_name_hash(c, hash);
1697                 c = (unsigned char)name[len];
1698         } while (c && c != '/');
1699         *hashp = end_name_hash(hash);
1700         return len;
1701 }
1702
1703 #endif
1704
1705 /*
1706  * Name resolution.
1707  * This is the basic name resolution function, turning a pathname into
1708  * the final dentry. We expect 'base' to be positive and a directory.
1709  *
1710  * Returns 0 and nd will have valid dentry and mnt on success.
1711  * Returns error and drops reference to input namei data on failure.
1712  */
1713 static int link_path_walk(const char *name, struct nameidata *nd)
1714 {
1715         struct path next;
1716         int err;
1717         
1718         while (*name=='/')
1719                 name++;
1720         if (!*name)
1721                 return 0;
1722
1723         /* At this point we know we have a real path component. */
1724         for(;;) {
1725                 struct qstr this;
1726                 long len;
1727                 int type;
1728
1729                 err = may_lookup(nd);
1730                 if (err)
1731                         break;
1732
1733                 len = hash_name(name, &this.hash);
1734                 this.name = name;
1735                 this.len = len;
1736
1737                 type = LAST_NORM;
1738                 if (name[0] == '.') switch (len) {
1739                         case 2:
1740                                 if (name[1] == '.') {
1741                                         type = LAST_DOTDOT;
1742                                         nd->flags |= LOOKUP_JUMPED;
1743                                 }
1744                                 break;
1745                         case 1:
1746                                 type = LAST_DOT;
1747                 }
1748                 if (likely(type == LAST_NORM)) {
1749                         struct dentry *parent = nd->path.dentry;
1750                         nd->flags &= ~LOOKUP_JUMPED;
1751                         if (unlikely(parent->d_flags & DCACHE_OP_HASH)) {
1752                                 err = parent->d_op->d_hash(parent, nd->inode,
1753                                                            &this);
1754                                 if (err < 0)
1755                                         break;
1756                         }
1757                 }
1758
1759                 if (!name[len])
1760                         goto last_component;
1761                 /*
1762                  * If it wasn't NUL, we know it was '/'. Skip that
1763                  * slash, and continue until no more slashes.
1764                  */
1765                 do {
1766                         len++;
1767                 } while (unlikely(name[len] == '/'));
1768                 if (!name[len])
1769                         goto last_component;
1770                 name += len;
1771
1772                 err = walk_component(nd, &next, &this, type, LOOKUP_FOLLOW);
1773                 if (err < 0)
1774                         return err;
1775
1776                 if (err) {
1777                         err = nested_symlink(&next, nd);
1778                         if (err)
1779                                 return err;
1780                 }
1781                 if (can_lookup(nd->inode))
1782                         continue;
1783                 err = -ENOTDIR; 
1784                 break;
1785                 /* here ends the main loop */
1786
1787 last_component:
1788                 nd->last = this;
1789                 nd->last_type = type;
1790                 return 0;
1791         }
1792         terminate_walk(nd);
1793         return err;
1794 }
1795
1796 static int path_init(int dfd, const char *name, unsigned int flags,
1797                      struct nameidata *nd, struct file **fp)
1798 {
1799         int retval = 0;
1800
1801         nd->last_type = LAST_ROOT; /* if there are only slashes... */
1802         nd->flags = flags | LOOKUP_JUMPED;
1803         nd->depth = 0;
1804         if (flags & LOOKUP_ROOT) {
1805                 struct inode *inode = nd->root.dentry->d_inode;
1806                 if (*name) {
1807                         if (!inode->i_op->lookup)
1808                                 return -ENOTDIR;
1809                         retval = inode_permission(inode, MAY_EXEC);
1810                         if (retval)
1811                                 return retval;
1812                 }
1813                 nd->path = nd->root;
1814                 nd->inode = inode;
1815                 if (flags & LOOKUP_RCU) {
1816                         lock_rcu_walk();
1817                         nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
1818                 } else {
1819                         path_get(&nd->path);
1820                 }
1821                 return 0;
1822         }
1823
1824         nd->root.mnt = NULL;
1825
1826         if (*name=='/') {
1827                 if (flags & LOOKUP_RCU) {
1828                         lock_rcu_walk();
1829                         set_root_rcu(nd);
1830                 } else {
1831                         set_root(nd);
1832                         path_get(&nd->root);
1833                 }
1834                 nd->path = nd->root;
1835         } else if (dfd == AT_FDCWD) {
1836                 if (flags & LOOKUP_RCU) {
1837                         struct fs_struct *fs = current->fs;
1838                         unsigned seq;
1839
1840                         lock_rcu_walk();
1841
1842                         do {
1843                                 seq = read_seqcount_begin(&fs->seq);
1844                                 nd->path = fs->pwd;
1845                                 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
1846                         } while (read_seqcount_retry(&fs->seq, seq));
1847                 } else {
1848                         get_fs_pwd(current->fs, &nd->path);
1849                 }
1850         } else {
1851                 struct fd f = fdget_raw(dfd);
1852                 struct dentry *dentry;
1853
1854                 if (!f.file)
1855                         return -EBADF;
1856
1857                 dentry = f.file->f_path.dentry;
1858
1859                 if (*name) {
1860                         if (!S_ISDIR(dentry->d_inode->i_mode)) {
1861                                 fdput(f);
1862                                 return -ENOTDIR;
1863                         }
1864
1865                         retval = inode_permission(dentry->d_inode, MAY_EXEC);
1866                         if (retval) {
1867                                 fdput(f);
1868                                 return retval;
1869                         }
1870                 }
1871
1872                 nd->path = f.file->f_path;
1873                 if (flags & LOOKUP_RCU) {
1874                         if (f.need_put)
1875                                 *fp = f.file;
1876                         nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
1877                         lock_rcu_walk();
1878                 } else {
1879                         path_get(&nd->path);
1880                         fdput(f);
1881                 }
1882         }
1883
1884         nd->inode = nd->path.dentry->d_inode;
1885         return 0;
1886 }
1887
1888 static inline int lookup_last(struct nameidata *nd, struct path *path)
1889 {
1890         if (nd->last_type == LAST_NORM && nd->last.name[nd->last.len])
1891                 nd->flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
1892
1893         nd->flags &= ~LOOKUP_PARENT;
1894         return walk_component(nd, path, &nd->last, nd->last_type,
1895                                         nd->flags & LOOKUP_FOLLOW);
1896 }
1897
1898 /* Returns 0 and nd will be valid on success; Retuns error, otherwise. */
1899 static int path_lookupat(int dfd, const char *name,
1900                                 unsigned int flags, struct nameidata *nd)
1901 {
1902         struct file *base = NULL;
1903         struct path path;
1904         int err;
1905
1906         /*
1907          * Path walking is largely split up into 2 different synchronisation
1908          * schemes, rcu-walk and ref-walk (explained in
1909          * Documentation/filesystems/path-lookup.txt). These share much of the
1910          * path walk code, but some things particularly setup, cleanup, and
1911          * following mounts are sufficiently divergent that functions are
1912          * duplicated. Typically there is a function foo(), and its RCU
1913          * analogue, foo_rcu().
1914          *
1915          * -ECHILD is the error number of choice (just to avoid clashes) that
1916          * is returned if some aspect of an rcu-walk fails. Such an error must
1917          * be handled by restarting a traditional ref-walk (which will always
1918          * be able to complete).
1919          */
1920         err = path_init(dfd, name, flags | LOOKUP_PARENT, nd, &base);
1921
1922         if (unlikely(err))
1923                 return err;
1924
1925         current->total_link_count = 0;
1926         err = link_path_walk(name, nd);
1927
1928         if (!err && !(flags & LOOKUP_PARENT)) {
1929                 err = lookup_last(nd, &path);
1930                 while (err > 0) {
1931                         void *cookie;
1932                         struct path link = path;
1933                         err = may_follow_link(&link, nd);
1934                         if (unlikely(err))
1935                                 break;
1936                         nd->flags |= LOOKUP_PARENT;
1937                         err = follow_link(&link, nd, &cookie);
1938                         if (err)
1939                                 break;
1940                         err = lookup_last(nd, &path);
1941                         put_link(nd, &link, cookie);
1942                 }
1943         }
1944
1945         if (!err)
1946                 err = complete_walk(nd);
1947
1948         if (!err && nd->flags & LOOKUP_DIRECTORY) {
1949                 if (!nd->inode->i_op->lookup) {
1950                         path_put(&nd->path);
1951                         err = -ENOTDIR;
1952                 }
1953         }
1954
1955         if (base)
1956                 fput(base);
1957
1958         if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT)) {
1959                 path_put(&nd->root);
1960                 nd->root.mnt = NULL;
1961         }
1962         return err;
1963 }
1964
1965 static int do_path_lookup(int dfd, const char *name,
1966                                 unsigned int flags, struct nameidata *nd)
1967 {
1968         int retval = path_lookupat(dfd, name, flags | LOOKUP_RCU, nd);
1969         if (unlikely(retval == -ECHILD))
1970                 retval = path_lookupat(dfd, name, flags, nd);
1971         if (unlikely(retval == -ESTALE))
1972                 retval = path_lookupat(dfd, name, flags | LOOKUP_REVAL, nd);
1973
1974         if (likely(!retval))
1975                 audit_inode(name, nd->path.dentry, flags & LOOKUP_PARENT);
1976         return retval;
1977 }
1978
1979 /* does lookup, returns the object with parent locked */
1980 struct dentry *kern_path_locked(const char *name, struct path *path)
1981 {
1982         struct nameidata nd;
1983         struct dentry *d;
1984         int err = do_path_lookup(AT_FDCWD, name, LOOKUP_PARENT, &nd);
1985         if (err)
1986                 return ERR_PTR(err);
1987         if (nd.last_type != LAST_NORM) {
1988                 path_put(&nd.path);
1989                 return ERR_PTR(-EINVAL);
1990         }
1991         mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
1992         d = __lookup_hash(&nd.last, nd.path.dentry, 0);
1993         if (IS_ERR(d)) {
1994                 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
1995                 path_put(&nd.path);
1996                 return d;
1997         }
1998         *path = nd.path;
1999         return d;
2000 }
2001
2002 int kern_path(const char *name, unsigned int flags, struct path *path)
2003 {
2004         struct nameidata nd;
2005         int res = do_path_lookup(AT_FDCWD, name, flags, &nd);
2006         if (!res)
2007                 *path = nd.path;
2008         return res;
2009 }
2010
2011 /**
2012  * vfs_path_lookup - lookup a file path relative to a dentry-vfsmount pair
2013  * @dentry:  pointer to dentry of the base directory
2014  * @mnt: pointer to vfs mount of the base directory
2015  * @name: pointer to file name
2016  * @flags: lookup flags
2017  * @path: pointer to struct path to fill
2018  */
2019 int vfs_path_lookup(struct dentry *dentry, struct vfsmount *mnt,
2020                     const char *name, unsigned int flags,
2021                     struct path *path)
2022 {
2023         struct nameidata nd;
2024         int err;
2025         nd.root.dentry = dentry;
2026         nd.root.mnt = mnt;
2027         BUG_ON(flags & LOOKUP_PARENT);
2028         /* the first argument of do_path_lookup() is ignored with LOOKUP_ROOT */
2029         err = do_path_lookup(AT_FDCWD, name, flags | LOOKUP_ROOT, &nd);
2030         if (!err)
2031                 *path = nd.path;
2032         return err;
2033 }
2034
2035 /*
2036  * Restricted form of lookup. Doesn't follow links, single-component only,
2037  * needs parent already locked. Doesn't follow mounts.
2038  * SMP-safe.
2039  */
2040 static struct dentry *lookup_hash(struct nameidata *nd)
2041 {
2042         return __lookup_hash(&nd->last, nd->path.dentry, nd->flags);
2043 }
2044
2045 /**
2046  * lookup_one_len - filesystem helper to lookup single pathname component
2047  * @name:       pathname component to lookup
2048  * @base:       base directory to lookup from
2049  * @len:        maximum length @len should be interpreted to
2050  *
2051  * Note that this routine is purely a helper for filesystem usage and should
2052  * not be called by generic code.  Also note that by using this function the
2053  * nameidata argument is passed to the filesystem methods and a filesystem
2054  * using this helper needs to be prepared for that.
2055  */
2056 struct dentry *lookup_one_len(const char *name, struct dentry *base, int len)
2057 {
2058         struct qstr this;
2059         unsigned int c;
2060         int err;
2061
2062         WARN_ON_ONCE(!mutex_is_locked(&base->d_inode->i_mutex));
2063
2064         this.name = name;
2065         this.len = len;
2066         this.hash = full_name_hash(name, len);
2067         if (!len)
2068                 return ERR_PTR(-EACCES);
2069
2070         while (len--) {
2071                 c = *(const unsigned char *)name++;
2072                 if (c == '/' || c == '\0')
2073                         return ERR_PTR(-EACCES);
2074         }
2075         /*
2076          * See if the low-level filesystem might want
2077          * to use its own hash..
2078          */
2079         if (base->d_flags & DCACHE_OP_HASH) {
2080                 int err = base->d_op->d_hash(base, base->d_inode, &this);
2081                 if (err < 0)
2082                         return ERR_PTR(err);
2083         }
2084
2085         err = inode_permission(base->d_inode, MAY_EXEC);
2086         if (err)
2087                 return ERR_PTR(err);
2088
2089         return __lookup_hash(&this, base, 0);
2090 }
2091
2092 int user_path_at_empty(int dfd, const char __user *name, unsigned flags,
2093                  struct path *path, int *empty)
2094 {
2095         struct nameidata nd;
2096         char *tmp = getname_flags(name, flags, empty);
2097         int err = PTR_ERR(tmp);
2098         if (!IS_ERR(tmp)) {
2099
2100                 BUG_ON(flags & LOOKUP_PARENT);
2101
2102                 err = do_path_lookup(dfd, tmp, flags, &nd);
2103                 putname(tmp);
2104                 if (!err)
2105                         *path = nd.path;
2106         }
2107         return err;
2108 }
2109
2110 int user_path_at(int dfd, const char __user *name, unsigned flags,
2111                  struct path *path)
2112 {
2113         return user_path_at_empty(dfd, name, flags, path, NULL);
2114 }
2115
2116 static int user_path_parent(int dfd, const char __user *path,
2117                         struct nameidata *nd, char **name)
2118 {
2119         char *s = getname(path);
2120         int error;
2121
2122         if (IS_ERR(s))
2123                 return PTR_ERR(s);
2124
2125         error = do_path_lookup(dfd, s, LOOKUP_PARENT, nd);
2126         if (error)
2127                 putname(s);
2128         else
2129                 *name = s;
2130
2131         return error;
2132 }
2133
2134 /*
2135  * It's inline, so penalty for filesystems that don't use sticky bit is
2136  * minimal.
2137  */
2138 static inline int check_sticky(struct inode *dir, struct inode *inode)
2139 {
2140         kuid_t fsuid = current_fsuid();
2141
2142         if (!(dir->i_mode & S_ISVTX))
2143                 return 0;
2144         if (uid_eq(inode->i_uid, fsuid))
2145                 return 0;
2146         if (uid_eq(dir->i_uid, fsuid))
2147                 return 0;
2148         return !inode_capable(inode, CAP_FOWNER);
2149 }
2150
2151 /*
2152  *      Check whether we can remove a link victim from directory dir, check
2153  *  whether the type of victim is right.
2154  *  1. We can't do it if dir is read-only (done in permission())
2155  *  2. We should have write and exec permissions on dir
2156  *  3. We can't remove anything from append-only dir
2157  *  4. We can't do anything with immutable dir (done in permission())
2158  *  5. If the sticky bit on dir is set we should either
2159  *      a. be owner of dir, or
2160  *      b. be owner of victim, or
2161  *      c. have CAP_FOWNER capability
2162  *  6. If the victim is append-only or immutable we can't do antyhing with
2163  *     links pointing to it.
2164  *  7. If we were asked to remove a directory and victim isn't one - ENOTDIR.
2165  *  8. If we were asked to remove a non-directory and victim isn't one - EISDIR.
2166  *  9. We can't remove a root or mountpoint.
2167  * 10. We don't allow removal of NFS sillyrenamed files; it's handled by
2168  *     nfs_async_unlink().
2169  */
2170 static int may_delete(struct inode *dir,struct dentry *victim,int isdir)
2171 {
2172         int error;
2173
2174         if (!victim->d_inode)
2175                 return -ENOENT;
2176
2177         BUG_ON(victim->d_parent->d_inode != dir);
2178         audit_inode_child(dir, victim, AUDIT_TYPE_CHILD_DELETE);
2179
2180         error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
2181         if (error)
2182                 return error;
2183         if (IS_APPEND(dir))
2184                 return -EPERM;
2185         if (check_sticky(dir, victim->d_inode)||IS_APPEND(victim->d_inode)||
2186             IS_IMMUTABLE(victim->d_inode) || IS_SWAPFILE(victim->d_inode))
2187                 return -EPERM;
2188         if (isdir) {
2189                 if (!S_ISDIR(victim->d_inode->i_mode))
2190                         return -ENOTDIR;
2191                 if (IS_ROOT(victim))
2192                         return -EBUSY;
2193         } else if (S_ISDIR(victim->d_inode->i_mode))
2194                 return -EISDIR;
2195         if (IS_DEADDIR(dir))
2196                 return -ENOENT;
2197         if (victim->d_flags & DCACHE_NFSFS_RENAMED)
2198                 return -EBUSY;
2199         return 0;
2200 }
2201
2202 /*      Check whether we can create an object with dentry child in directory
2203  *  dir.
2204  *  1. We can't do it if child already exists (open has special treatment for
2205  *     this case, but since we are inlined it's OK)
2206  *  2. We can't do it if dir is read-only (done in permission())
2207  *  3. We should have write and exec permissions on dir
2208  *  4. We can't do it if dir is immutable (done in permission())
2209  */
2210 static inline int may_create(struct inode *dir, struct dentry *child)
2211 {
2212         if (child->d_inode)
2213                 return -EEXIST;
2214         if (IS_DEADDIR(dir))
2215                 return -ENOENT;
2216         return inode_permission(dir, MAY_WRITE | MAY_EXEC);
2217 }
2218
2219 /*
2220  * p1 and p2 should be directories on the same fs.
2221  */
2222 struct dentry *lock_rename(struct dentry *p1, struct dentry *p2)
2223 {
2224         struct dentry *p;
2225
2226         if (p1 == p2) {
2227                 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
2228                 return NULL;
2229         }
2230
2231         mutex_lock(&p1->d_inode->i_sb->s_vfs_rename_mutex);
2232
2233         p = d_ancestor(p2, p1);
2234         if (p) {
2235                 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_PARENT);
2236                 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_CHILD);
2237                 return p;
2238         }
2239
2240         p = d_ancestor(p1, p2);
2241         if (p) {
2242                 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
2243                 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_CHILD);
2244                 return p;
2245         }
2246
2247         mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
2248         mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_CHILD);
2249         return NULL;
2250 }
2251
2252 void unlock_rename(struct dentry *p1, struct dentry *p2)
2253 {
2254         mutex_unlock(&p1->d_inode->i_mutex);
2255         if (p1 != p2) {
2256                 mutex_unlock(&p2->d_inode->i_mutex);
2257                 mutex_unlock(&p1->d_inode->i_sb->s_vfs_rename_mutex);
2258         }
2259 }
2260
2261 int vfs_create(struct inode *dir, struct dentry *dentry, umode_t mode,
2262                 bool want_excl)
2263 {
2264         int error = may_create(dir, dentry);
2265         if (error)
2266                 return error;
2267
2268         if (!dir->i_op->create)
2269                 return -EACCES; /* shouldn't it be ENOSYS? */
2270         mode &= S_IALLUGO;
2271         mode |= S_IFREG;
2272         error = security_inode_create(dir, dentry, mode);
2273         if (error)
2274                 return error;
2275         error = dir->i_op->create(dir, dentry, mode, want_excl);
2276         if (!error)
2277                 fsnotify_create(dir, dentry);
2278         return error;
2279 }
2280
2281 static int may_open(struct path *path, int acc_mode, int flag)
2282 {
2283         struct dentry *dentry = path->dentry;
2284         struct inode *inode = dentry->d_inode;
2285         int error;
2286
2287         /* O_PATH? */
2288         if (!acc_mode)
2289                 return 0;
2290
2291         if (!inode)
2292                 return -ENOENT;
2293
2294         switch (inode->i_mode & S_IFMT) {
2295         case S_IFLNK:
2296                 return -ELOOP;
2297         case S_IFDIR:
2298                 if (acc_mode & MAY_WRITE)
2299                         return -EISDIR;
2300                 break;
2301         case S_IFBLK:
2302         case S_IFCHR:
2303                 if (path->mnt->mnt_flags & MNT_NODEV)
2304                         return -EACCES;
2305                 /*FALLTHRU*/
2306         case S_IFIFO:
2307         case S_IFSOCK:
2308                 flag &= ~O_TRUNC;
2309                 break;
2310         }
2311
2312         error = inode_permission(inode, acc_mode);
2313         if (error)
2314                 return error;
2315
2316         /*
2317          * An append-only file must be opened in append mode for writing.
2318          */
2319         if (IS_APPEND(inode)) {
2320                 if  ((flag & O_ACCMODE) != O_RDONLY && !(flag & O_APPEND))
2321                         return -EPERM;
2322                 if (flag & O_TRUNC)
2323                         return -EPERM;
2324         }
2325
2326         /* O_NOATIME can only be set by the owner or superuser */
2327         if (flag & O_NOATIME && !inode_owner_or_capable(inode))
2328                 return -EPERM;
2329
2330         return 0;
2331 }
2332
2333 static int handle_truncate(struct file *filp)
2334 {
2335         struct path *path = &filp->f_path;
2336         struct inode *inode = path->dentry->d_inode;
2337         int error = get_write_access(inode);
2338         if (error)
2339                 return error;
2340         /*
2341          * Refuse to truncate files with mandatory locks held on them.
2342          */
2343         error = locks_verify_locked(inode);
2344         if (!error)
2345                 error = security_path_truncate(path);
2346         if (!error) {
2347                 error = do_truncate(path->dentry, 0,
2348                                     ATTR_MTIME|ATTR_CTIME|ATTR_OPEN,
2349                                     filp);
2350         }
2351         put_write_access(inode);
2352         return error;
2353 }
2354
2355 static inline int open_to_namei_flags(int flag)
2356 {
2357         if ((flag & O_ACCMODE) == 3)
2358                 flag--;
2359         return flag;
2360 }
2361
2362 static int may_o_create(struct path *dir, struct dentry *dentry, umode_t mode)
2363 {
2364         int error = security_path_mknod(dir, dentry, mode, 0);
2365         if (error)
2366                 return error;
2367
2368         error = inode_permission(dir->dentry->d_inode, MAY_WRITE | MAY_EXEC);
2369         if (error)
2370                 return error;
2371
2372         return security_inode_create(dir->dentry->d_inode, dentry, mode);
2373 }
2374
2375 /*
2376  * Attempt to atomically look up, create and open a file from a negative
2377  * dentry.
2378  *
2379  * Returns 0 if successful.  The file will have been created and attached to
2380  * @file by the filesystem calling finish_open().
2381  *
2382  * Returns 1 if the file was looked up only or didn't need creating.  The
2383  * caller will need to perform the open themselves.  @path will have been
2384  * updated to point to the new dentry.  This may be negative.
2385  *
2386  * Returns an error code otherwise.
2387  */
2388 static int atomic_open(struct nameidata *nd, struct dentry *dentry,
2389                         struct path *path, struct file *file,
2390                         const struct open_flags *op,
2391                         bool got_write, bool need_lookup,
2392                         int *opened)
2393 {
2394         struct inode *dir =  nd->path.dentry->d_inode;
2395         unsigned open_flag = open_to_namei_flags(op->open_flag);
2396         umode_t mode;
2397         int error;
2398         int acc_mode;
2399         int create_error = 0;
2400         struct dentry *const DENTRY_NOT_SET = (void *) -1UL;
2401
2402         BUG_ON(dentry->d_inode);
2403
2404         /* Don't create child dentry for a dead directory. */
2405         if (unlikely(IS_DEADDIR(dir))) {
2406                 error = -ENOENT;
2407                 goto out;
2408         }
2409
2410         mode = op->mode;
2411         if ((open_flag & O_CREAT) && !IS_POSIXACL(dir))
2412                 mode &= ~current_umask();
2413
2414         if ((open_flag & (O_EXCL | O_CREAT)) == (O_EXCL | O_CREAT)) {
2415                 open_flag &= ~O_TRUNC;
2416                 *opened |= FILE_CREATED;
2417         }
2418
2419         /*
2420          * Checking write permission is tricky, bacuse we don't know if we are
2421          * going to actually need it: O_CREAT opens should work as long as the
2422          * file exists.  But checking existence breaks atomicity.  The trick is
2423          * to check access and if not granted clear O_CREAT from the flags.
2424          *
2425          * Another problem is returing the "right" error value (e.g. for an
2426          * O_EXCL open we want to return EEXIST not EROFS).
2427          */
2428         if (((open_flag & (O_CREAT | O_TRUNC)) ||
2429             (open_flag & O_ACCMODE) != O_RDONLY) && unlikely(!got_write)) {
2430                 if (!(open_flag & O_CREAT)) {
2431                         /*
2432                          * No O_CREATE -> atomicity not a requirement -> fall
2433                          * back to lookup + open
2434                          */
2435                         goto no_open;
2436                 } else if (open_flag & (O_EXCL | O_TRUNC)) {
2437                         /* Fall back and fail with the right error */
2438                         create_error = -EROFS;
2439                         goto no_open;
2440                 } else {
2441                         /* No side effects, safe to clear O_CREAT */
2442                         create_error = -EROFS;
2443                         open_flag &= ~O_CREAT;
2444                 }
2445         }
2446
2447         if (open_flag & O_CREAT) {
2448                 error = may_o_create(&nd->path, dentry, mode);
2449                 if (error) {
2450                         create_error = error;
2451                         if (open_flag & O_EXCL)
2452                                 goto no_open;
2453                         open_flag &= ~O_CREAT;
2454                 }
2455         }
2456
2457         if (nd->flags & LOOKUP_DIRECTORY)
2458                 open_flag |= O_DIRECTORY;
2459
2460         file->f_path.dentry = DENTRY_NOT_SET;
2461         file->f_path.mnt = nd->path.mnt;
2462         error = dir->i_op->atomic_open(dir, dentry, file, open_flag, mode,
2463                                       opened);
2464         if (error < 0) {
2465                 if (create_error && error == -ENOENT)
2466                         error = create_error;
2467                 goto out;
2468         }
2469
2470         acc_mode = op->acc_mode;
2471         if (*opened & FILE_CREATED) {
2472                 fsnotify_create(dir, dentry);
2473                 acc_mode = MAY_OPEN;
2474         }
2475
2476         if (error) {    /* returned 1, that is */
2477                 if (WARN_ON(file->f_path.dentry == DENTRY_NOT_SET)) {
2478                         error = -EIO;
2479                         goto out;
2480                 }
2481                 if (file->f_path.dentry) {
2482                         dput(dentry);
2483                         dentry = file->f_path.dentry;
2484                 }
2485                 if (create_error && dentry->d_inode == NULL) {
2486                         error = create_error;
2487                         goto out;
2488                 }
2489                 goto looked_up;
2490         }
2491
2492         /*
2493          * We didn't have the inode before the open, so check open permission
2494          * here.
2495          */
2496         error = may_open(&file->f_path, acc_mode, open_flag);
2497         if (error)
2498                 fput(file);
2499
2500 out:
2501         dput(dentry);
2502         return error;
2503
2504 no_open:
2505         if (need_lookup) {
2506                 dentry = lookup_real(dir, dentry, nd->flags);
2507                 if (IS_ERR(dentry))
2508                         return PTR_ERR(dentry);
2509
2510                 if (create_error) {
2511                         int open_flag = op->open_flag;
2512
2513                         error = create_error;
2514                         if ((open_flag & O_EXCL)) {
2515                                 if (!dentry->d_inode)
2516                                         goto out;
2517                         } else if (!dentry->d_inode) {
2518                                 goto out;
2519                         } else if ((open_flag & O_TRUNC) &&
2520                                    S_ISREG(dentry->d_inode->i_mode)) {
2521                                 goto out;
2522                         }
2523                         /* will fail later, go on to get the right error */
2524                 }
2525         }
2526 looked_up:
2527         path->dentry = dentry;
2528         path->mnt = nd->path.mnt;
2529         return 1;
2530 }
2531
2532 /*
2533  * Look up and maybe create and open the last component.
2534  *
2535  * Must be called with i_mutex held on parent.
2536  *
2537  * Returns 0 if the file was successfully atomically created (if necessary) and
2538  * opened.  In this case the file will be returned attached to @file.
2539  *
2540  * Returns 1 if the file was not completely opened at this time, though lookups
2541  * and creations will have been performed and the dentry returned in @path will
2542  * be positive upon return if O_CREAT was specified.  If O_CREAT wasn't
2543  * specified then a negative dentry may be returned.
2544  *
2545  * An error code is returned otherwise.
2546  *
2547  * FILE_CREATE will be set in @*opened if the dentry was created and will be
2548  * cleared otherwise prior to returning.
2549  */
2550 static int lookup_open(struct nameidata *nd, struct path *path,
2551                         struct file *file,
2552                         const struct open_flags *op,
2553                         bool got_write, int *opened)
2554 {
2555         struct dentry *dir = nd->path.dentry;
2556         struct inode *dir_inode = dir->d_inode;
2557         struct dentry *dentry;
2558         int error;
2559         bool need_lookup;
2560
2561         *opened &= ~FILE_CREATED;
2562         dentry = lookup_dcache(&nd->last, dir, nd->flags, &need_lookup);
2563         if (IS_ERR(dentry))
2564                 return PTR_ERR(dentry);
2565
2566         /* Cached positive dentry: will open in f_op->open */
2567         if (!need_lookup && dentry->d_inode)
2568                 goto out_no_open;
2569
2570         if ((nd->flags & LOOKUP_OPEN) && dir_inode->i_op->atomic_open) {
2571                 return atomic_open(nd, dentry, path, file, op, got_write,
2572                                    need_lookup, opened);
2573         }
2574
2575         if (need_lookup) {
2576                 BUG_ON(dentry->d_inode);
2577
2578                 dentry = lookup_real(dir_inode, dentry, nd->flags);
2579                 if (IS_ERR(dentry))
2580                         return PTR_ERR(dentry);
2581         }
2582
2583         /* Negative dentry, just create the file */
2584         if (!dentry->d_inode && (op->open_flag & O_CREAT)) {
2585                 umode_t mode = op->mode;
2586                 if (!IS_POSIXACL(dir->d_inode))
2587                         mode &= ~current_umask();
2588                 /*
2589                  * This write is needed to ensure that a
2590                  * rw->ro transition does not occur between
2591                  * the time when the file is created and when
2592                  * a permanent write count is taken through
2593                  * the 'struct file' in finish_open().
2594                  */
2595                 if (!got_write) {
2596                         error = -EROFS;
2597                         goto out_dput;
2598                 }
2599                 *opened |= FILE_CREATED;
2600                 error = security_path_mknod(&nd->path, dentry, mode, 0);
2601                 if (error)
2602                         goto out_dput;
2603                 error = vfs_create(dir->d_inode, dentry, mode,
2604                                    nd->flags & LOOKUP_EXCL);
2605                 if (error)
2606                         goto out_dput;
2607         }
2608 out_no_open:
2609         path->dentry = dentry;
2610         path->mnt = nd->path.mnt;
2611         return 1;
2612
2613 out_dput:
2614         dput(dentry);
2615         return error;
2616 }
2617
2618 /*
2619  * Handle the last step of open()
2620  */
2621 static int do_last(struct nameidata *nd, struct path *path,
2622                    struct file *file, const struct open_flags *op,
2623                    int *opened, const char *pathname)
2624 {
2625         struct dentry *dir = nd->path.dentry;
2626         int open_flag = op->open_flag;
2627         bool will_truncate = (open_flag & O_TRUNC) != 0;
2628         bool got_write = false;
2629         int acc_mode = op->acc_mode;
2630         struct inode *inode;
2631         bool symlink_ok = false;
2632         struct path save_parent = { .dentry = NULL, .mnt = NULL };
2633         bool retried = false;
2634         int error;
2635
2636         nd->flags &= ~LOOKUP_PARENT;
2637         nd->flags |= op->intent;
2638
2639         switch (nd->last_type) {
2640         case LAST_DOTDOT:
2641         case LAST_DOT:
2642                 error = handle_dots(nd, nd->last_type);
2643                 if (error)
2644                         return error;
2645                 /* fallthrough */
2646         case LAST_ROOT:
2647                 error = complete_walk(nd);
2648                 if (error)
2649                         return error;
2650                 audit_inode(pathname, nd->path.dentry, 0);
2651                 if (open_flag & O_CREAT) {
2652                         error = -EISDIR;
2653                         goto out;
2654                 }
2655                 goto finish_open;
2656         case LAST_BIND:
2657                 error = complete_walk(nd);
2658                 if (error)
2659                         return error;
2660                 audit_inode(pathname, dir, 0);
2661                 goto finish_open;
2662         }
2663
2664         if (!(open_flag & O_CREAT)) {
2665                 if (nd->last.name[nd->last.len])
2666                         nd->flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
2667                 if (open_flag & O_PATH && !(nd->flags & LOOKUP_FOLLOW))
2668                         symlink_ok = true;
2669                 /* we _can_ be in RCU mode here */
2670                 error = lookup_fast(nd, &nd->last, path, &inode);
2671                 if (likely(!error))
2672                         goto finish_lookup;
2673
2674                 if (error < 0)
2675                         goto out;
2676
2677                 BUG_ON(nd->inode != dir->d_inode);
2678         } else {
2679                 /* create side of things */
2680                 /*
2681                  * This will *only* deal with leaving RCU mode - LOOKUP_JUMPED
2682                  * has been cleared when we got to the last component we are
2683                  * about to look up
2684                  */
2685                 error = complete_walk(nd);
2686                 if (error)
2687                         return error;
2688
2689                 audit_inode(pathname, dir, 0);
2690                 error = -EISDIR;
2691                 /* trailing slashes? */
2692                 if (nd->last.name[nd->last.len])
2693                         goto out;
2694         }
2695
2696 retry_lookup:
2697         if (op->open_flag & (O_CREAT | O_TRUNC | O_WRONLY | O_RDWR)) {
2698                 error = mnt_want_write(nd->path.mnt);
2699                 if (!error)
2700                         got_write = true;
2701                 /*
2702                  * do _not_ fail yet - we might not need that or fail with
2703                  * a different error; let lookup_open() decide; we'll be
2704                  * dropping this one anyway.
2705                  */
2706         }
2707         mutex_lock(&dir->d_inode->i_mutex);
2708         error = lookup_open(nd, path, file, op, got_write, opened);
2709         mutex_unlock(&dir->d_inode->i_mutex);
2710
2711         if (error <= 0) {
2712                 if (error)
2713                         goto out;
2714
2715                 if ((*opened & FILE_CREATED) ||
2716                     !S_ISREG(file->f_path.dentry->d_inode->i_mode))
2717                         will_truncate = false;
2718
2719                 audit_inode(pathname, file->f_path.dentry, 0);
2720                 goto opened;
2721         }
2722
2723         if (*opened & FILE_CREATED) {
2724                 /* Don't check for write permission, don't truncate */
2725                 open_flag &= ~O_TRUNC;
2726                 will_truncate = false;
2727                 acc_mode = MAY_OPEN;
2728                 path_to_nameidata(path, nd);
2729                 goto finish_open_created;
2730         }
2731
2732         /*
2733          * create/update audit record if it already exists.
2734          */
2735         if (path->dentry->d_inode)
2736                 audit_inode(pathname, path->dentry, 0);
2737
2738         /*
2739          * If atomic_open() acquired write access it is dropped now due to
2740          * possible mount and symlink following (this might be optimized away if
2741          * necessary...)
2742          */
2743         if (got_write) {
2744                 mnt_drop_write(nd->path.mnt);
2745                 got_write = false;
2746         }
2747
2748         error = -EEXIST;
2749         if ((open_flag & (O_EXCL | O_CREAT)) == (O_EXCL | O_CREAT))
2750                 goto exit_dput;
2751
2752         error = follow_managed(path, nd->flags);
2753         if (error < 0)
2754                 goto exit_dput;
2755
2756         if (error)
2757                 nd->flags |= LOOKUP_JUMPED;
2758
2759         BUG_ON(nd->flags & LOOKUP_RCU);
2760         inode = path->dentry->d_inode;
2761 finish_lookup:
2762         /* we _can_ be in RCU mode here */
2763         error = -ENOENT;
2764         if (!inode) {
2765                 path_to_nameidata(path, nd);
2766                 goto out;
2767         }
2768
2769         if (should_follow_link(inode, !symlink_ok)) {
2770                 if (nd->flags & LOOKUP_RCU) {
2771                         if (unlikely(unlazy_walk(nd, path->dentry))) {
2772                                 error = -ECHILD;
2773                                 goto out;
2774                         }
2775                 }
2776                 BUG_ON(inode != path->dentry->d_inode);
2777                 return 1;
2778         }
2779
2780         if ((nd->flags & LOOKUP_RCU) || nd->path.mnt != path->mnt) {
2781                 path_to_nameidata(path, nd);
2782         } else {
2783                 save_parent.dentry = nd->path.dentry;
2784                 save_parent.mnt = mntget(path->mnt);
2785                 nd->path.dentry = path->dentry;
2786
2787         }
2788         nd->inode = inode;
2789         /* Why this, you ask?  _Now_ we might have grown LOOKUP_JUMPED... */
2790         error = complete_walk(nd);
2791         if (error) {
2792                 path_put(&save_parent);
2793                 return error;
2794         }
2795         error = -EISDIR;
2796         if ((open_flag & O_CREAT) && S_ISDIR(nd->inode->i_mode))
2797                 goto out;
2798         error = -ENOTDIR;
2799         if ((nd->flags & LOOKUP_DIRECTORY) && !nd->inode->i_op->lookup)
2800                 goto out;
2801         audit_inode(pathname, nd->path.dentry, 0);
2802 finish_open:
2803         if (!S_ISREG(nd->inode->i_mode))
2804                 will_truncate = false;
2805
2806         if (will_truncate) {
2807                 error = mnt_want_write(nd->path.mnt);
2808                 if (error)
2809                         goto out;
2810                 got_write = true;
2811         }
2812 finish_open_created:
2813         error = may_open(&nd->path, acc_mode, open_flag);
2814         if (error)
2815                 goto out;
2816         file->f_path.mnt = nd->path.mnt;
2817         error = finish_open(file, nd->path.dentry, NULL, opened);
2818         if (error) {
2819                 if (error == -EOPENSTALE)
2820                         goto stale_open;
2821                 goto out;
2822         }
2823 opened:
2824         error = open_check_o_direct(file);
2825         if (error)
2826                 goto exit_fput;
2827         error = ima_file_check(file, op->acc_mode);
2828         if (error)
2829                 goto exit_fput;
2830
2831         if (will_truncate) {
2832                 error = handle_truncate(file);
2833                 if (error)
2834                         goto exit_fput;
2835         }
2836 out:
2837         if (got_write)
2838                 mnt_drop_write(nd->path.mnt);
2839         path_put(&save_parent);
2840         terminate_walk(nd);
2841         return error;
2842
2843 exit_dput:
2844         path_put_conditional(path, nd);
2845         goto out;
2846 exit_fput:
2847         fput(file);
2848         goto out;
2849
2850 stale_open:
2851         /* If no saved parent or already retried then can't retry */
2852         if (!save_parent.dentry || retried)
2853                 goto out;
2854
2855         BUG_ON(save_parent.dentry != dir);
2856         path_put(&nd->path);
2857         nd->path = save_parent;
2858         nd->inode = dir->d_inode;
2859         save_parent.mnt = NULL;
2860         save_parent.dentry = NULL;
2861         if (got_write) {
2862                 mnt_drop_write(nd->path.mnt);
2863                 got_write = false;
2864         }
2865         retried = true;
2866         goto retry_lookup;
2867 }
2868
2869 static struct file *path_openat(int dfd, const char *pathname,
2870                 struct nameidata *nd, const struct open_flags *op, int flags)
2871 {
2872         struct file *base = NULL;
2873         struct file *file;
2874         struct path path;
2875         int opened = 0;
2876         int error;
2877
2878         file = get_empty_filp();
2879         if (!file)
2880                 return ERR_PTR(-ENFILE);
2881
2882         file->f_flags = op->open_flag;
2883
2884         error = path_init(dfd, pathname, flags | LOOKUP_PARENT, nd, &base);
2885         if (unlikely(error))
2886                 goto out;
2887
2888         current->total_link_count = 0;
2889         error = link_path_walk(pathname, nd);
2890         if (unlikely(error))
2891                 goto out;
2892
2893         error = do_last(nd, &path, file, op, &opened, pathname);
2894         while (unlikely(error > 0)) { /* trailing symlink */
2895                 struct path link = path;
2896                 void *cookie;
2897                 if (!(nd->flags & LOOKUP_FOLLOW)) {
2898                         path_put_conditional(&path, nd);
2899                         path_put(&nd->path);
2900                         error = -ELOOP;
2901                         break;
2902                 }
2903                 error = may_follow_link(&link, nd);
2904                 if (unlikely(error))
2905                         break;
2906                 nd->flags |= LOOKUP_PARENT;
2907                 nd->flags &= ~(LOOKUP_OPEN|LOOKUP_CREATE|LOOKUP_EXCL);
2908                 error = follow_link(&link, nd, &cookie);
2909                 if (unlikely(error))
2910                         break;
2911                 error = do_last(nd, &path, file, op, &opened, pathname);
2912                 put_link(nd, &link, cookie);
2913         }
2914 out:
2915         if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT))
2916                 path_put(&nd->root);
2917         if (base)
2918                 fput(base);
2919         if (!(opened & FILE_OPENED)) {
2920                 BUG_ON(!error);
2921                 put_filp(file);
2922         }
2923         if (unlikely(error)) {
2924                 if (error == -EOPENSTALE) {
2925                         if (flags & LOOKUP_RCU)
2926                                 error = -ECHILD;
2927                         else
2928                                 error = -ESTALE;
2929                 }
2930                 file = ERR_PTR(error);
2931         }
2932         return file;
2933 }
2934
2935 struct file *do_filp_open(int dfd, const char *pathname,
2936                 const struct open_flags *op, int flags)
2937 {
2938         struct nameidata nd;
2939         struct file *filp;
2940
2941         filp = path_openat(dfd, pathname, &nd, op, flags | LOOKUP_RCU);
2942         if (unlikely(filp == ERR_PTR(-ECHILD)))
2943                 filp = path_openat(dfd, pathname, &nd, op, flags);
2944         if (unlikely(filp == ERR_PTR(-ESTALE)))
2945                 filp = path_openat(dfd, pathname, &nd, op, flags | LOOKUP_REVAL);
2946         return filp;
2947 }
2948
2949 struct file *do_file_open_root(struct dentry *dentry, struct vfsmount *mnt,
2950                 const char *name, const struct open_flags *op, int flags)
2951 {
2952         struct nameidata nd;
2953         struct file *file;
2954
2955         nd.root.mnt = mnt;
2956         nd.root.dentry = dentry;
2957
2958         flags |= LOOKUP_ROOT;
2959
2960         if (dentry->d_inode->i_op->follow_link && op->intent & LOOKUP_OPEN)
2961                 return ERR_PTR(-ELOOP);
2962
2963         file = path_openat(-1, name, &nd, op, flags | LOOKUP_RCU);
2964         if (unlikely(file == ERR_PTR(-ECHILD)))
2965                 file = path_openat(-1, name, &nd, op, flags);
2966         if (unlikely(file == ERR_PTR(-ESTALE)))
2967                 file = path_openat(-1, name, &nd, op, flags | LOOKUP_REVAL);
2968         return file;
2969 }
2970
2971 struct dentry *kern_path_create(int dfd, const char *pathname, struct path *path, int is_dir)
2972 {
2973         struct dentry *dentry = ERR_PTR(-EEXIST);
2974         struct nameidata nd;
2975         int err2;
2976         int error = do_path_lookup(dfd, pathname, LOOKUP_PARENT, &nd);
2977         if (error)
2978                 return ERR_PTR(error);
2979
2980         /*
2981          * Yucky last component or no last component at all?
2982          * (foo/., foo/.., /////)
2983          */
2984         if (nd.last_type != LAST_NORM)
2985                 goto out;
2986         nd.flags &= ~LOOKUP_PARENT;
2987         nd.flags |= LOOKUP_CREATE | LOOKUP_EXCL;
2988
2989         /* don't fail immediately if it's r/o, at least try to report other errors */
2990         err2 = mnt_want_write(nd.path.mnt);
2991         /*
2992          * Do the final lookup.
2993          */
2994         mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
2995         dentry = lookup_hash(&nd);
2996         if (IS_ERR(dentry))
2997                 goto unlock;
2998
2999         error = -EEXIST;
3000         if (dentry->d_inode)
3001                 goto fail;
3002         /*
3003          * Special case - lookup gave negative, but... we had foo/bar/
3004          * From the vfs_mknod() POV we just have a negative dentry -
3005          * all is fine. Let's be bastards - you had / on the end, you've
3006          * been asking for (non-existent) directory. -ENOENT for you.
3007          */
3008         if (unlikely(!is_dir && nd.last.name[nd.last.len])) {
3009                 error = -ENOENT;
3010                 goto fail;
3011         }
3012         if (unlikely(err2)) {
3013                 error = err2;
3014                 goto fail;
3015         }
3016         *path = nd.path;
3017         return dentry;
3018 fail:
3019         dput(dentry);
3020         dentry = ERR_PTR(error);
3021 unlock:
3022         mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
3023         if (!err2)
3024                 mnt_drop_write(nd.path.mnt);
3025 out:
3026         path_put(&nd.path);
3027         return dentry;
3028 }
3029 EXPORT_SYMBOL(kern_path_create);
3030
3031 void done_path_create(struct path *path, struct dentry *dentry)
3032 {
3033         dput(dentry);
3034         mutex_unlock(&path->dentry->d_inode->i_mutex);
3035         mnt_drop_write(path->mnt);
3036         path_put(path);
3037 }
3038 EXPORT_SYMBOL(done_path_create);
3039
3040 struct dentry *user_path_create(int dfd, const char __user *pathname, struct path *path, int is_dir)
3041 {
3042         char *tmp = getname(pathname);
3043         struct dentry *res;
3044         if (IS_ERR(tmp))
3045                 return ERR_CAST(tmp);
3046         res = kern_path_create(dfd, tmp, path, is_dir);
3047         putname(tmp);
3048         return res;
3049 }
3050 EXPORT_SYMBOL(user_path_create);
3051
3052 int vfs_mknod(struct inode *dir, struct dentry *dentry, umode_t mode, dev_t dev)
3053 {
3054         int error = may_create(dir, dentry);
3055
3056         if (error)
3057                 return error;
3058
3059         if ((S_ISCHR(mode) || S_ISBLK(mode)) && !capable(CAP_MKNOD))
3060                 return -EPERM;
3061
3062         if (!dir->i_op->mknod)
3063                 return -EPERM;
3064
3065         error = devcgroup_inode_mknod(mode, dev);
3066         if (error)
3067                 return error;
3068
3069         error = security_inode_mknod(dir, dentry, mode, dev);
3070         if (error)
3071                 return error;
3072
3073         error = dir->i_op->mknod(dir, dentry, mode, dev);
3074         if (!error)
3075                 fsnotify_create(dir, dentry);
3076         return error;
3077 }
3078
3079 static int may_mknod(umode_t mode)
3080 {
3081         switch (mode & S_IFMT) {
3082         case S_IFREG:
3083         case S_IFCHR:
3084         case S_IFBLK:
3085         case S_IFIFO:
3086         case S_IFSOCK:
3087         case 0: /* zero mode translates to S_IFREG */
3088                 return 0;
3089         case S_IFDIR:
3090                 return -EPERM;
3091         default:
3092                 return -EINVAL;
3093         }
3094 }
3095
3096 SYSCALL_DEFINE4(mknodat, int, dfd, const char __user *, filename, umode_t, mode,
3097                 unsigned, dev)
3098 {
3099         struct dentry *dentry;
3100         struct path path;
3101         int error;
3102
3103         error = may_mknod(mode);
3104         if (error)
3105                 return error;
3106
3107         dentry = user_path_create(dfd, filename, &path, 0);
3108         if (IS_ERR(dentry))
3109                 return PTR_ERR(dentry);
3110
3111         if (!IS_POSIXACL(path.dentry->d_inode))
3112                 mode &= ~current_umask();
3113         error = security_path_mknod(&path, dentry, mode, dev);
3114         if (error)
3115                 goto out;
3116         switch (mode & S_IFMT) {
3117                 case 0: case S_IFREG:
3118                         error = vfs_create(path.dentry->d_inode,dentry,mode,true);
3119                         break;
3120                 case S_IFCHR: case S_IFBLK:
3121                         error = vfs_mknod(path.dentry->d_inode,dentry,mode,
3122                                         new_decode_dev(dev));
3123                         break;
3124                 case S_IFIFO: case S_IFSOCK:
3125                         error = vfs_mknod(path.dentry->d_inode,dentry,mode,0);
3126                         break;
3127         }
3128 out:
3129         done_path_create(&path, dentry);
3130         return error;
3131 }
3132
3133 SYSCALL_DEFINE3(mknod, const char __user *, filename, umode_t, mode, unsigned, dev)
3134 {
3135         return sys_mknodat(AT_FDCWD, filename, mode, dev);
3136 }
3137
3138 int vfs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
3139 {
3140         int error = may_create(dir, dentry);
3141         unsigned max_links = dir->i_sb->s_max_links;
3142
3143         if (error)
3144                 return error;
3145
3146         if (!dir->i_op->mkdir)
3147                 return -EPERM;
3148
3149         mode &= (S_IRWXUGO|S_ISVTX);
3150         error = security_inode_mkdir(dir, dentry, mode);
3151         if (error)
3152                 return error;
3153
3154         if (max_links && dir->i_nlink >= max_links)
3155                 return -EMLINK;
3156
3157         error = dir->i_op->mkdir(dir, dentry, mode);
3158         if (!error)
3159                 fsnotify_mkdir(dir, dentry);
3160         return error;
3161 }
3162
3163 SYSCALL_DEFINE3(mkdirat, int, dfd, const char __user *, pathname, umode_t, mode)
3164 {
3165         struct dentry *dentry;
3166         struct path path;
3167         int error;
3168
3169         dentry = user_path_create(dfd, pathname, &path, 1);
3170         if (IS_ERR(dentry))
3171                 return PTR_ERR(dentry);
3172
3173         if (!IS_POSIXACL(path.dentry->d_inode))
3174                 mode &= ~current_umask();
3175         error = security_path_mkdir(&path, dentry, mode);
3176         if (!error)
3177                 error = vfs_mkdir(path.dentry->d_inode, dentry, mode);
3178         done_path_create(&path, dentry);
3179         return error;
3180 }
3181
3182 SYSCALL_DEFINE2(mkdir, const char __user *, pathname, umode_t, mode)
3183 {
3184         return sys_mkdirat(AT_FDCWD, pathname, mode);
3185 }
3186
3187 /*
3188  * The dentry_unhash() helper will try to drop the dentry early: we
3189  * should have a usage count of 1 if we're the only user of this
3190  * dentry, and if that is true (possibly after pruning the dcache),
3191  * then we drop the dentry now.
3192  *
3193  * A low-level filesystem can, if it choses, legally
3194  * do a
3195  *
3196  *      if (!d_unhashed(dentry))
3197  *              return -EBUSY;
3198  *
3199  * if it cannot handle the case of removing a directory
3200  * that is still in use by something else..
3201  */
3202 void dentry_unhash(struct dentry *dentry)
3203 {
3204         shrink_dcache_parent(dentry);
3205         spin_lock(&dentry->d_lock);
3206         if (dentry->d_count == 1)
3207                 __d_drop(dentry);
3208         spin_unlock(&dentry->d_lock);
3209 }
3210
3211 int vfs_rmdir(struct inode *dir, struct dentry *dentry)
3212 {
3213         int error = may_delete(dir, dentry, 1);
3214
3215         if (error)
3216                 return error;
3217
3218         if (!dir->i_op->rmdir)
3219                 return -EPERM;
3220
3221         dget(dentry);
3222         mutex_lock(&dentry->d_inode->i_mutex);
3223
3224         error = -EBUSY;
3225         if (d_mountpoint(dentry))
3226                 goto out;
3227
3228         error = security_inode_rmdir(dir, dentry);
3229         if (error)
3230                 goto out;
3231
3232         shrink_dcache_parent(dentry);
3233         error = dir->i_op->rmdir(dir, dentry);
3234         if (error)
3235                 goto out;
3236
3237         dentry->d_inode->i_flags |= S_DEAD;
3238         dont_mount(dentry);
3239
3240 out:
3241         mutex_unlock(&dentry->d_inode->i_mutex);
3242         dput(dentry);
3243         if (!error)
3244                 d_delete(dentry);
3245         return error;
3246 }
3247
3248 static long do_rmdir(int dfd, const char __user *pathname)
3249 {
3250         int error = 0;
3251         char * name;
3252         struct dentry *dentry;
3253         struct nameidata nd;
3254
3255         error = user_path_parent(dfd, pathname, &nd, &name);
3256         if (error)
3257                 return error;
3258
3259         switch(nd.last_type) {
3260         case LAST_DOTDOT:
3261                 error = -ENOTEMPTY;
3262                 goto exit1;
3263         case LAST_DOT:
3264                 error = -EINVAL;
3265                 goto exit1;
3266         case LAST_ROOT:
3267                 error = -EBUSY;
3268                 goto exit1;
3269         }
3270
3271         nd.flags &= ~LOOKUP_PARENT;
3272         error = mnt_want_write(nd.path.mnt);
3273         if (error)
3274                 goto exit1;
3275
3276         mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
3277         dentry = lookup_hash(&nd);
3278         error = PTR_ERR(dentry);
3279         if (IS_ERR(dentry))
3280                 goto exit2;
3281         if (!dentry->d_inode) {
3282                 error = -ENOENT;
3283                 goto exit3;
3284         }
3285         error = security_path_rmdir(&nd.path, dentry);
3286         if (error)
3287                 goto exit3;
3288         error = vfs_rmdir(nd.path.dentry->d_inode, dentry);
3289 exit3:
3290         dput(dentry);
3291 exit2:
3292         mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
3293         mnt_drop_write(nd.path.mnt);
3294 exit1:
3295         path_put(&nd.path);
3296         putname(name);
3297         return error;
3298 }
3299
3300 SYSCALL_DEFINE1(rmdir, const char __user *, pathname)
3301 {
3302         return do_rmdir(AT_FDCWD, pathname);
3303 }
3304
3305 int vfs_unlink(struct inode *dir, struct dentry *dentry)
3306 {
3307         int error = may_delete(dir, dentry, 0);
3308
3309         if (error)
3310                 return error;
3311
3312         if (!dir->i_op->unlink)
3313                 return -EPERM;
3314
3315         mutex_lock(&dentry->d_inode->i_mutex);
3316         if (d_mountpoint(dentry))
3317                 error = -EBUSY;
3318         else {
3319                 error = security_inode_unlink(dir, dentry);
3320                 if (!error) {
3321                         error = dir->i_op->unlink(dir, dentry);
3322                         if (!error)
3323                                 dont_mount(dentry);
3324                 }
3325         }
3326         mutex_unlock(&dentry->d_inode->i_mutex);
3327
3328         /* We don't d_delete() NFS sillyrenamed files--they still exist. */
3329         if (!error && !(dentry->d_flags & DCACHE_NFSFS_RENAMED)) {
3330                 fsnotify_link_count(dentry->d_inode);
3331                 d_delete(dentry);
3332         }
3333
3334         return error;
3335 }
3336
3337 /*
3338  * Make sure that the actual truncation of the file will occur outside its
3339  * directory's i_mutex.  Truncate can take a long time if there is a lot of
3340  * writeout happening, and we don't want to prevent access to the directory
3341  * while waiting on the I/O.
3342  */
3343 static long do_unlinkat(int dfd, const char __user *pathname)
3344 {
3345         int error;
3346         char *name;
3347         struct dentry *dentry;
3348         struct nameidata nd;
3349         struct inode *inode = NULL;
3350
3351         error = user_path_parent(dfd, pathname, &nd, &name);
3352         if (error)
3353                 return error;
3354
3355         error = -EISDIR;
3356         if (nd.last_type != LAST_NORM)
3357                 goto exit1;
3358
3359         nd.flags &= ~LOOKUP_PARENT;
3360         error = mnt_want_write(nd.path.mnt);
3361         if (error)
3362                 goto exit1;
3363
3364         mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
3365         dentry = lookup_hash(&nd);
3366         error = PTR_ERR(dentry);
3367         if (!IS_ERR(dentry)) {
3368                 /* Why not before? Because we want correct error value */
3369                 if (nd.last.name[nd.last.len])
3370                         goto slashes;
3371                 inode = dentry->d_inode;
3372                 if (!inode)
3373                         goto slashes;
3374                 ihold(inode);
3375                 error = security_path_unlink(&nd.path, dentry);
3376                 if (error)
3377                         goto exit2;
3378                 error = vfs_unlink(nd.path.dentry->d_inode, dentry);
3379 exit2:
3380                 dput(dentry);
3381         }
3382         mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
3383         if (inode)
3384                 iput(inode);    /* truncate the inode here */
3385         mnt_drop_write(nd.path.mnt);
3386 exit1:
3387         path_put(&nd.path);
3388         putname(name);
3389         return error;
3390
3391 slashes:
3392         error = !dentry->d_inode ? -ENOENT :
3393                 S_ISDIR(dentry->d_inode->i_mode) ? -EISDIR : -ENOTDIR;
3394         goto exit2;
3395 }
3396
3397 SYSCALL_DEFINE3(unlinkat, int, dfd, const char __user *, pathname, int, flag)
3398 {
3399         if ((flag & ~AT_REMOVEDIR) != 0)
3400                 return -EINVAL;
3401
3402         if (flag & AT_REMOVEDIR)
3403                 return do_rmdir(dfd, pathname);
3404
3405         return do_unlinkat(dfd, pathname);
3406 }
3407
3408 SYSCALL_DEFINE1(unlink, const char __user *, pathname)
3409 {
3410         return do_unlinkat(AT_FDCWD, pathname);
3411 }
3412
3413 int vfs_symlink(struct inode *dir, struct dentry *dentry, const char *oldname)
3414 {
3415         int error = may_create(dir, dentry);
3416
3417         if (error)
3418                 return error;
3419
3420         if (!dir->i_op->symlink)
3421                 return -EPERM;
3422
3423         error = security_inode_symlink(dir, dentry, oldname);
3424         if (error)
3425                 return error;
3426
3427         error = dir->i_op->symlink(dir, dentry, oldname);
3428         if (!error)
3429                 fsnotify_create(dir, dentry);
3430         return error;
3431 }
3432
3433 SYSCALL_DEFINE3(symlinkat, const char __user *, oldname,
3434                 int, newdfd, const char __user *, newname)
3435 {
3436         int error;
3437         char *from;
3438         struct dentry *dentry;
3439         struct path path;
3440
3441         from = getname(oldname);
3442         if (IS_ERR(from))
3443                 return PTR_ERR(from);
3444
3445         dentry = user_path_create(newdfd, newname, &path, 0);
3446         error = PTR_ERR(dentry);
3447         if (IS_ERR(dentry))
3448                 goto out_putname;
3449
3450         error = security_path_symlink(&path, dentry, from);
3451         if (!error)
3452                 error = vfs_symlink(path.dentry->d_inode, dentry, from);
3453         done_path_create(&path, dentry);
3454 out_putname:
3455         putname(from);
3456         return error;
3457 }
3458
3459 SYSCALL_DEFINE2(symlink, const char __user *, oldname, const char __user *, newname)
3460 {
3461         return sys_symlinkat(oldname, AT_FDCWD, newname);
3462 }
3463
3464 int vfs_link(struct dentry *old_dentry, struct inode *dir, struct dentry *new_dentry)
3465 {
3466         struct inode *inode = old_dentry->d_inode;
3467         unsigned max_links = dir->i_sb->s_max_links;
3468         int error;
3469
3470         if (!inode)
3471                 return -ENOENT;
3472
3473         error = may_create(dir, new_dentry);
3474         if (error)
3475                 return error;
3476
3477         if (dir->i_sb != inode->i_sb)
3478                 return -EXDEV;
3479
3480         /*
3481          * A link to an append-only or immutable file cannot be created.
3482          */
3483         if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
3484                 return -EPERM;
3485         if (!dir->i_op->link)
3486                 return -EPERM;
3487         if (S_ISDIR(inode->i_mode))
3488                 return -EPERM;
3489
3490         error = security_inode_link(old_dentry, dir, new_dentry);
3491         if (error)
3492                 return error;
3493
3494         mutex_lock(&inode->i_mutex);
3495         /* Make sure we don't allow creating hardlink to an unlinked file */
3496         if (inode->i_nlink == 0)
3497                 error =  -ENOENT;
3498         else if (max_links && inode->i_nlink >= max_links)
3499                 error = -EMLINK;
3500         else
3501                 error = dir->i_op->link(old_dentry, dir, new_dentry);
3502         mutex_unlock(&inode->i_mutex);
3503         if (!error)
3504                 fsnotify_link(dir, inode, new_dentry);
3505         return error;
3506 }
3507
3508 /*
3509  * Hardlinks are often used in delicate situations.  We avoid
3510  * security-related surprises by not following symlinks on the
3511  * newname.  --KAB
3512  *
3513  * We don't follow them on the oldname either to be compatible
3514  * with linux 2.0, and to avoid hard-linking to directories
3515  * and other special files.  --ADM
3516  */
3517 SYSCALL_DEFINE5(linkat, int, olddfd, const char __user *, oldname,
3518                 int, newdfd, const char __user *, newname, int, flags)
3519 {
3520         struct dentry *new_dentry;
3521         struct path old_path, new_path;
3522         int how = 0;
3523         int error;
3524
3525         if ((flags & ~(AT_SYMLINK_FOLLOW | AT_EMPTY_PATH)) != 0)
3526                 return -EINVAL;
3527         /*
3528          * To use null names we require CAP_DAC_READ_SEARCH
3529          * This ensures that not everyone will be able to create
3530          * handlink using the passed filedescriptor.
3531          */
3532         if (flags & AT_EMPTY_PATH) {
3533                 if (!capable(CAP_DAC_READ_SEARCH))
3534                         return -ENOENT;
3535                 how = LOOKUP_EMPTY;
3536         }
3537
3538         if (flags & AT_SYMLINK_FOLLOW)
3539                 how |= LOOKUP_FOLLOW;
3540
3541         error = user_path_at(olddfd, oldname, how, &old_path);
3542         if (error)
3543                 return error;
3544
3545         new_dentry = user_path_create(newdfd, newname, &new_path, 0);
3546         error = PTR_ERR(new_dentry);
3547         if (IS_ERR(new_dentry))
3548                 goto out;
3549
3550         error = -EXDEV;
3551         if (old_path.mnt != new_path.mnt)
3552                 goto out_dput;
3553         error = may_linkat(&old_path);
3554         if (unlikely(error))
3555                 goto out_dput;
3556         error = security_path_link(old_path.dentry, &new_path, new_dentry);
3557         if (error)
3558                 goto out_dput;
3559         error = vfs_link(old_path.dentry, new_path.dentry->d_inode, new_dentry);
3560 out_dput:
3561         done_path_create(&new_path, new_dentry);
3562 out:
3563         path_put(&old_path);
3564
3565         return error;
3566 }
3567
3568 SYSCALL_DEFINE2(link, const char __user *, oldname, const char __user *, newname)
3569 {
3570         return sys_linkat(AT_FDCWD, oldname, AT_FDCWD, newname, 0);
3571 }
3572
3573 /*
3574  * The worst of all namespace operations - renaming directory. "Perverted"
3575  * doesn't even start to describe it. Somebody in UCB had a heck of a trip...
3576  * Problems:
3577  *      a) we can get into loop creation. Check is done in is_subdir().
3578  *      b) race potential - two innocent renames can create a loop together.
3579  *         That's where 4.4 screws up. Current fix: serialization on
3580  *         sb->s_vfs_rename_mutex. We might be more accurate, but that's another
3581  *         story.
3582  *      c) we have to lock _three_ objects - parents and victim (if it exists).
3583  *         And that - after we got ->i_mutex on parents (until then we don't know
3584  *         whether the target exists).  Solution: try to be smart with locking
3585  *         order for inodes.  We rely on the fact that tree topology may change
3586  *         only under ->s_vfs_rename_mutex _and_ that parent of the object we
3587  *         move will be locked.  Thus we can rank directories by the tree
3588  *         (ancestors first) and rank all non-directories after them.
3589  *         That works since everybody except rename does "lock parent, lookup,
3590  *         lock child" and rename is under ->s_vfs_rename_mutex.
3591  *         HOWEVER, it relies on the assumption that any object with ->lookup()
3592  *         has no more than 1 dentry.  If "hybrid" objects will ever appear,
3593  *         we'd better make sure that there's no link(2) for them.
3594  *      d) conversion from fhandle to dentry may come in the wrong moment - when
3595  *         we are removing the target. Solution: we will have to grab ->i_mutex
3596  *         in the fhandle_to_dentry code. [FIXME - current nfsfh.c relies on
3597  *         ->i_mutex on parents, which works but leads to some truly excessive
3598  *         locking].
3599  */
3600 static int vfs_rename_dir(struct inode *old_dir, struct dentry *old_dentry,
3601                           struct inode *new_dir, struct dentry *new_dentry)
3602 {
3603         int error = 0;
3604         struct inode *target = new_dentry->d_inode;
3605         unsigned max_links = new_dir->i_sb->s_max_links;
3606
3607         /*
3608          * If we are going to change the parent - check write permissions,
3609          * we'll need to flip '..'.
3610          */
3611         if (new_dir != old_dir) {
3612                 error = inode_permission(old_dentry->d_inode, MAY_WRITE);
3613                 if (error)
3614                         return error;
3615         }
3616
3617         error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry);
3618         if (error)
3619                 return error;
3620
3621         dget(new_dentry);
3622         if (target)
3623                 mutex_lock(&target->i_mutex);
3624
3625         error = -EBUSY;
3626         if (d_mountpoint(old_dentry) || d_mountpoint(new_dentry))
3627                 goto out;
3628
3629         error = -EMLINK;
3630         if (max_links && !target && new_dir != old_dir &&
3631             new_dir->i_nlink >= max_links)
3632                 goto out;
3633
3634         if (target)
3635                 shrink_dcache_parent(new_dentry);
3636         error = old_dir->i_op->rename(old_dir, old_dentry, new_dir, new_dentry);
3637         if (error)
3638                 goto out;
3639
3640         if (target) {
3641                 target->i_flags |= S_DEAD;
3642                 dont_mount(new_dentry);
3643         }
3644 out:
3645         if (target)
3646                 mutex_unlock(&target->i_mutex);
3647         dput(new_dentry);
3648         if (!error)
3649                 if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE))
3650                         d_move(old_dentry,new_dentry);
3651         return error;
3652 }
3653
3654 static int vfs_rename_other(struct inode *old_dir, struct dentry *old_dentry,
3655                             struct inode *new_dir, struct dentry *new_dentry)
3656 {
3657         struct inode *target = new_dentry->d_inode;
3658         int error;
3659
3660         error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry);
3661         if (error)
3662                 return error;
3663
3664         dget(new_dentry);
3665         if (target)
3666                 mutex_lock(&target->i_mutex);
3667
3668         error = -EBUSY;
3669         if (d_mountpoint(old_dentry)||d_mountpoint(new_dentry))
3670                 goto out;
3671
3672         error = old_dir->i_op->rename(old_dir, old_dentry, new_dir, new_dentry);
3673         if (error)
3674                 goto out;
3675
3676         if (target)
3677                 dont_mount(new_dentry);
3678         if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE))
3679                 d_move(old_dentry, new_dentry);
3680 out:
3681         if (target)
3682                 mutex_unlock(&target->i_mutex);
3683         dput(new_dentry);
3684         return error;
3685 }
3686
3687 int vfs_rename(struct inode *old_dir, struct dentry *old_dentry,
3688                struct inode *new_dir, struct dentry *new_dentry)
3689 {
3690         int error;
3691         int is_dir = S_ISDIR(old_dentry->d_inode->i_mode);
3692         const unsigned char *old_name;
3693
3694         if (old_dentry->d_inode == new_dentry->d_inode)
3695                 return 0;
3696  
3697         error = may_delete(old_dir, old_dentry, is_dir);
3698         if (error)
3699                 return error;
3700
3701         if (!new_dentry->d_inode)
3702                 error = may_create(new_dir, new_dentry);
3703         else
3704                 error = may_delete(new_dir, new_dentry, is_dir);
3705         if (error)
3706                 return error;
3707
3708         if (!old_dir->i_op->rename)
3709                 return -EPERM;
3710
3711         old_name = fsnotify_oldname_init(old_dentry->d_name.name);
3712
3713         if (is_dir)
3714                 error = vfs_rename_dir(old_dir,old_dentry,new_dir,new_dentry);
3715         else
3716                 error = vfs_rename_other(old_dir,old_dentry,new_dir,new_dentry);
3717         if (!error)
3718                 fsnotify_move(old_dir, new_dir, old_name, is_dir,
3719                               new_dentry->d_inode, old_dentry);
3720         fsnotify_oldname_free(old_name);
3721
3722         return error;
3723 }
3724
3725 SYSCALL_DEFINE4(renameat, int, olddfd, const char __user *, oldname,
3726                 int, newdfd, const char __user *, newname)
3727 {
3728         struct dentry *old_dir, *new_dir;
3729         struct dentry *old_dentry, *new_dentry;
3730         struct dentry *trap;
3731         struct nameidata oldnd, newnd;
3732         char *from;
3733         char *to;
3734         int error;
3735
3736         error = user_path_parent(olddfd, oldname, &oldnd, &from);
3737         if (error)
3738                 goto exit;
3739
3740         error = user_path_parent(newdfd, newname, &newnd, &to);
3741         if (error)
3742                 goto exit1;
3743
3744         error = -EXDEV;
3745         if (oldnd.path.mnt != newnd.path.mnt)
3746                 goto exit2;
3747
3748         old_dir = oldnd.path.dentry;
3749         error = -EBUSY;
3750         if (oldnd.last_type != LAST_NORM)
3751                 goto exit2;
3752
3753         new_dir = newnd.path.dentry;
3754         if (newnd.last_type != LAST_NORM)
3755                 goto exit2;
3756
3757         error = mnt_want_write(oldnd.path.mnt);
3758         if (error)
3759                 goto exit2;
3760
3761         oldnd.flags &= ~LOOKUP_PARENT;
3762         newnd.flags &= ~LOOKUP_PARENT;
3763         newnd.flags |= LOOKUP_RENAME_TARGET;
3764
3765         trap = lock_rename(new_dir, old_dir);
3766
3767         old_dentry = lookup_hash(&oldnd);
3768         error = PTR_ERR(old_dentry);
3769         if (IS_ERR(old_dentry))
3770                 goto exit3;
3771         /* source must exist */
3772         error = -ENOENT;
3773         if (!old_dentry->d_inode)
3774                 goto exit4;
3775         /* unless the source is a directory trailing slashes give -ENOTDIR */
3776         if (!S_ISDIR(old_dentry->d_inode->i_mode)) {
3777                 error = -ENOTDIR;
3778                 if (oldnd.last.name[oldnd.last.len])
3779                         goto exit4;
3780                 if (newnd.last.name[newnd.last.len])
3781                         goto exit4;
3782         }
3783         /* source should not be ancestor of target */
3784         error = -EINVAL;
3785         if (old_dentry == trap)
3786                 goto exit4;
3787         new_dentry = lookup_hash(&newnd);
3788         error = PTR_ERR(new_dentry);
3789         if (IS_ERR(new_dentry))
3790                 goto exit4;
3791         /* target should not be an ancestor of source */
3792         error = -ENOTEMPTY;
3793         if (new_dentry == trap)
3794                 goto exit5;
3795
3796         error = security_path_rename(&oldnd.path, old_dentry,
3797                                      &newnd.path, new_dentry);
3798         if (error)
3799                 goto exit5;
3800         error = vfs_rename(old_dir->d_inode, old_dentry,
3801                                    new_dir->d_inode, new_dentry);
3802 exit5:
3803         dput(new_dentry);
3804 exit4:
3805         dput(old_dentry);
3806 exit3:
3807         unlock_rename(new_dir, old_dir);
3808         mnt_drop_write(oldnd.path.mnt);
3809 exit2:
3810         path_put(&newnd.path);
3811         putname(to);
3812 exit1:
3813         path_put(&oldnd.path);
3814         putname(from);
3815 exit:
3816         return error;
3817 }
3818
3819 SYSCALL_DEFINE2(rename, const char __user *, oldname, const char __user *, newname)
3820 {
3821         return sys_renameat(AT_FDCWD, oldname, AT_FDCWD, newname);
3822 }
3823
3824 int vfs_readlink(struct dentry *dentry, char __user *buffer, int buflen, const char *link)
3825 {
3826         int len;
3827
3828         len = PTR_ERR(link);
3829         if (IS_ERR(link))
3830                 goto out;
3831
3832         len = strlen(link);
3833         if (len > (unsigned) buflen)
3834                 len = buflen;
3835         if (copy_to_user(buffer, link, len))
3836                 len = -EFAULT;
3837 out:
3838         return len;
3839 }
3840
3841 /*
3842  * A helper for ->readlink().  This should be used *ONLY* for symlinks that
3843  * have ->follow_link() touching nd only in nd_set_link().  Using (or not
3844  * using) it for any given inode is up to filesystem.
3845  */
3846 int generic_readlink(struct dentry *dentry, char __user *buffer, int buflen)
3847 {
3848         struct nameidata nd;
3849         void *cookie;
3850         int res;
3851
3852         nd.depth = 0;
3853         cookie = dentry->d_inode->i_op->follow_link(dentry, &nd);
3854         if (IS_ERR(cookie))
3855                 return PTR_ERR(cookie);
3856
3857         res = vfs_readlink(dentry, buffer, buflen, nd_get_link(&nd));
3858         if (dentry->d_inode->i_op->put_link)
3859                 dentry->d_inode->i_op->put_link(dentry, &nd, cookie);
3860         return res;
3861 }
3862
3863 int vfs_follow_link(struct nameidata *nd, const char *link)
3864 {
3865         return __vfs_follow_link(nd, link);
3866 }
3867
3868 /* get the link contents into pagecache */
3869 static char *page_getlink(struct dentry * dentry, struct page **ppage)
3870 {
3871         char *kaddr;
3872         struct page *page;
3873         struct address_space *mapping = dentry->d_inode->i_mapping;
3874         page = read_mapping_page(mapping, 0, NULL);
3875         if (IS_ERR(page))
3876                 return (char*)page;
3877         *ppage = page;
3878         kaddr = kmap(page);
3879         nd_terminate_link(kaddr, dentry->d_inode->i_size, PAGE_SIZE - 1);
3880         return kaddr;
3881 }
3882
3883 int page_readlink(struct dentry *dentry, char __user *buffer, int buflen)
3884 {
3885         struct page *page = NULL;
3886         char *s = page_getlink(dentry, &page);
3887         int res = vfs_readlink(dentry,buffer,buflen,s);
3888         if (page) {
3889                 kunmap(page);
3890                 page_cache_release(page);
3891         }
3892         return res;
3893 }
3894
3895 void *page_follow_link_light(struct dentry *dentry, struct nameidata *nd)
3896 {
3897         struct page *page = NULL;
3898         nd_set_link(nd, page_getlink(dentry, &page));
3899         return page;
3900 }
3901
3902 void page_put_link(struct dentry *dentry, struct nameidata *nd, void *cookie)
3903 {
3904         struct page *page = cookie;
3905
3906         if (page) {
3907                 kunmap(page);
3908                 page_cache_release(page);
3909         }
3910 }
3911
3912 /*
3913  * The nofs argument instructs pagecache_write_begin to pass AOP_FLAG_NOFS
3914  */
3915 int __page_symlink(struct inode *inode, const char *symname, int len, int nofs)
3916 {
3917         struct address_space *mapping = inode->i_mapping;
3918         struct page *page;
3919         void *fsdata;
3920         int err;
3921         char *kaddr;
3922         unsigned int flags = AOP_FLAG_UNINTERRUPTIBLE;
3923         if (nofs)
3924                 flags |= AOP_FLAG_NOFS;
3925
3926 retry:
3927         err = pagecache_write_begin(NULL, mapping, 0, len-1,
3928                                 flags, &page, &fsdata);
3929         if (err)
3930                 goto fail;
3931
3932         kaddr = kmap_atomic(page);
3933         memcpy(kaddr, symname, len-1);
3934         kunmap_atomic(kaddr);
3935
3936         err = pagecache_write_end(NULL, mapping, 0, len-1, len-1,
3937                                                         page, fsdata);
3938         if (err < 0)
3939                 goto fail;
3940         if (err < len-1)
3941                 goto retry;
3942
3943         mark_inode_dirty(inode);
3944         return 0;
3945 fail:
3946         return err;
3947 }
3948
3949 int page_symlink(struct inode *inode, const char *symname, int len)
3950 {
3951         return __page_symlink(inode, symname, len,
3952                         !(mapping_gfp_mask(inode->i_mapping) & __GFP_FS));
3953 }
3954
3955 const struct inode_operations page_symlink_inode_operations = {
3956         .readlink       = generic_readlink,
3957         .follow_link    = page_follow_link_light,
3958         .put_link       = page_put_link,
3959 };
3960
3961 EXPORT_SYMBOL(user_path_at);
3962 EXPORT_SYMBOL(follow_down_one);
3963 EXPORT_SYMBOL(follow_down);
3964 EXPORT_SYMBOL(follow_up);
3965 EXPORT_SYMBOL(get_write_access); /* nfsd */
3966 EXPORT_SYMBOL(lock_rename);
3967 EXPORT_SYMBOL(lookup_one_len);
3968 EXPORT_SYMBOL(page_follow_link_light);
3969 EXPORT_SYMBOL(page_put_link);
3970 EXPORT_SYMBOL(page_readlink);
3971 EXPORT_SYMBOL(__page_symlink);
3972 EXPORT_SYMBOL(page_symlink);
3973 EXPORT_SYMBOL(page_symlink_inode_operations);
3974 EXPORT_SYMBOL(kern_path);
3975 EXPORT_SYMBOL(vfs_path_lookup);
3976 EXPORT_SYMBOL(inode_permission);
3977 EXPORT_SYMBOL(unlock_rename);
3978 EXPORT_SYMBOL(vfs_create);
3979 EXPORT_SYMBOL(vfs_follow_link);
3980 EXPORT_SYMBOL(vfs_link);
3981 EXPORT_SYMBOL(vfs_mkdir);
3982 EXPORT_SYMBOL(vfs_mknod);
3983 EXPORT_SYMBOL(generic_permission);
3984 EXPORT_SYMBOL(vfs_readlink);
3985 EXPORT_SYMBOL(vfs_rename);
3986 EXPORT_SYMBOL(vfs_rmdir);
3987 EXPORT_SYMBOL(vfs_symlink);
3988 EXPORT_SYMBOL(vfs_unlink);
3989 EXPORT_SYMBOL(dentry_unhash);
3990 EXPORT_SYMBOL(generic_readlink);