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