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