]> git.karo-electronics.de Git - mv-sheeva.git/blob - fs/namei.c
fs: fix do_last error case when need_reval_dot
[mv-sheeva.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                         int status = d_revalidate(nd->path.dentry, nd);
2126                         if (!status)
2127                                 status = -ESTALE;
2128                         if (status < 0) {
2129                                 error = status;
2130                                 goto exit;
2131                         }
2132                 }
2133                 /* fallthrough */
2134         case LAST_ROOT:
2135                 goto exit;
2136         case LAST_BIND:
2137                 audit_inode(pathname, dir);
2138                 goto ok;
2139         }
2140
2141         /* trailing slashes? */
2142         if (nd->last.name[nd->last.len])
2143                 goto exit;
2144
2145         mutex_lock(&dir->d_inode->i_mutex);
2146
2147         path->dentry = lookup_hash(nd);
2148         path->mnt = nd->path.mnt;
2149
2150         error = PTR_ERR(path->dentry);
2151         if (IS_ERR(path->dentry)) {
2152                 mutex_unlock(&dir->d_inode->i_mutex);
2153                 goto exit;
2154         }
2155
2156         if (IS_ERR(nd->intent.open.file)) {
2157                 error = PTR_ERR(nd->intent.open.file);
2158                 goto exit_mutex_unlock;
2159         }
2160
2161         /* Negative dentry, just create the file */
2162         if (!path->dentry->d_inode) {
2163                 /*
2164                  * This write is needed to ensure that a
2165                  * ro->rw transition does not occur between
2166                  * the time when the file is created and when
2167                  * a permanent write count is taken through
2168                  * the 'struct file' in nameidata_to_filp().
2169                  */
2170                 error = mnt_want_write(nd->path.mnt);
2171                 if (error)
2172                         goto exit_mutex_unlock;
2173                 error = __open_namei_create(nd, path, open_flag, mode);
2174                 if (error) {
2175                         mnt_drop_write(nd->path.mnt);
2176                         goto exit;
2177                 }
2178                 filp = nameidata_to_filp(nd);
2179                 mnt_drop_write(nd->path.mnt);
2180                 path_put(&nd->path);
2181                 if (!IS_ERR(filp)) {
2182                         error = ima_file_check(filp, acc_mode);
2183                         if (error) {
2184                                 fput(filp);
2185                                 filp = ERR_PTR(error);
2186                         }
2187                 }
2188                 return filp;
2189         }
2190
2191         /*
2192          * It already exists.
2193          */
2194         mutex_unlock(&dir->d_inode->i_mutex);
2195         audit_inode(pathname, path->dentry);
2196
2197         error = -EEXIST;
2198         if (open_flag & O_EXCL)
2199                 goto exit_dput;
2200
2201         if (__follow_mount(path)) {
2202                 error = -ELOOP;
2203                 if (open_flag & O_NOFOLLOW)
2204                         goto exit_dput;
2205         }
2206
2207         error = -ENOENT;
2208         if (!path->dentry->d_inode)
2209                 goto exit_dput;
2210
2211         if (path->dentry->d_inode->i_op->follow_link)
2212                 return NULL;
2213
2214         path_to_nameidata(path, nd);
2215         nd->inode = path->dentry->d_inode;
2216         error = -EISDIR;
2217         if (S_ISDIR(nd->inode->i_mode))
2218                 goto exit;
2219 ok:
2220         filp = finish_open(nd, open_flag, acc_mode);
2221         return filp;
2222
2223 exit_mutex_unlock:
2224         mutex_unlock(&dir->d_inode->i_mutex);
2225 exit_dput:
2226         path_put_conditional(path, nd);
2227 exit:
2228         if (!IS_ERR(nd->intent.open.file))
2229                 release_open_intent(nd);
2230         path_put(&nd->path);
2231         return ERR_PTR(error);
2232 }
2233
2234 /*
2235  * Note that the low bits of the passed in "open_flag"
2236  * are not the same as in the local variable "flag". See
2237  * open_to_namei_flags() for more details.
2238  */
2239 struct file *do_filp_open(int dfd, const char *pathname,
2240                 int open_flag, int mode, int acc_mode)
2241 {
2242         struct file *filp;
2243         struct nameidata nd;
2244         int error;
2245         struct path path;
2246         int count = 0;
2247         int flag = open_to_namei_flags(open_flag);
2248         int flags;
2249
2250         if (!(open_flag & O_CREAT))
2251                 mode = 0;
2252
2253         /* Must never be set by userspace */
2254         open_flag &= ~FMODE_NONOTIFY;
2255
2256         /*
2257          * O_SYNC is implemented as __O_SYNC|O_DSYNC.  As many places only
2258          * check for O_DSYNC if the need any syncing at all we enforce it's
2259          * always set instead of having to deal with possibly weird behaviour
2260          * for malicious applications setting only __O_SYNC.
2261          */
2262         if (open_flag & __O_SYNC)
2263                 open_flag |= O_DSYNC;
2264
2265         if (!acc_mode)
2266                 acc_mode = MAY_OPEN | ACC_MODE(open_flag);
2267
2268         /* O_TRUNC implies we need access checks for write permissions */
2269         if (open_flag & O_TRUNC)
2270                 acc_mode |= MAY_WRITE;
2271
2272         /* Allow the LSM permission hook to distinguish append 
2273            access from general write access. */
2274         if (open_flag & O_APPEND)
2275                 acc_mode |= MAY_APPEND;
2276
2277         flags = LOOKUP_OPEN;
2278         if (open_flag & O_CREAT) {
2279                 flags |= LOOKUP_CREATE;
2280                 if (open_flag & O_EXCL)
2281                         flags |= LOOKUP_EXCL;
2282         }
2283         if (open_flag & O_DIRECTORY)
2284                 flags |= LOOKUP_DIRECTORY;
2285         if (!(open_flag & O_NOFOLLOW))
2286                 flags |= LOOKUP_FOLLOW;
2287
2288         filp = get_empty_filp();
2289         if (!filp)
2290                 return ERR_PTR(-ENFILE);
2291
2292         filp->f_flags = open_flag;
2293         nd.intent.open.file = filp;
2294         nd.intent.open.flags = flag;
2295         nd.intent.open.create_mode = mode;
2296
2297         if (open_flag & O_CREAT)
2298                 goto creat;
2299
2300         /* !O_CREAT, simple open */
2301         error = do_path_lookup(dfd, pathname, flags, &nd);
2302         if (unlikely(error))
2303                 goto out_filp;
2304         error = -ELOOP;
2305         if (!(nd.flags & LOOKUP_FOLLOW)) {
2306                 if (nd.inode->i_op->follow_link)
2307                         goto out_path;
2308         }
2309         error = -ENOTDIR;
2310         if (nd.flags & LOOKUP_DIRECTORY) {
2311                 if (!nd.inode->i_op->lookup)
2312                         goto out_path;
2313         }
2314         audit_inode(pathname, nd.path.dentry);
2315         filp = finish_open(&nd, open_flag, acc_mode);
2316         return filp;
2317
2318 creat:
2319         /* OK, have to create the file. Find the parent. */
2320         error = path_init_rcu(dfd, pathname,
2321                         LOOKUP_PARENT | (flags & LOOKUP_REVAL), &nd);
2322         if (error)
2323                 goto out_filp;
2324         error = path_walk_rcu(pathname, &nd);
2325         path_finish_rcu(&nd);
2326         if (unlikely(error == -ECHILD || error == -ESTALE)) {
2327                 /* slower, locked walk */
2328                 if (error == -ESTALE) {
2329 reval:
2330                         flags |= LOOKUP_REVAL;
2331                 }
2332                 error = path_init(dfd, pathname,
2333                                 LOOKUP_PARENT | (flags & LOOKUP_REVAL), &nd);
2334                 if (error)
2335                         goto out_filp;
2336
2337                 error = path_walk_simple(pathname, &nd);
2338         }
2339         if (unlikely(error))
2340                 goto out_filp;
2341         if (unlikely(!audit_dummy_context()))
2342                 audit_inode(pathname, nd.path.dentry);
2343
2344         /*
2345          * We have the parent and last component.
2346          */
2347         nd.flags = flags;
2348         filp = do_last(&nd, &path, open_flag, acc_mode, mode, pathname);
2349         while (unlikely(!filp)) { /* trailing symlink */
2350                 struct path holder;
2351                 void *cookie;
2352                 error = -ELOOP;
2353                 /* S_ISDIR part is a temporary automount kludge */
2354                 if (!(nd.flags & LOOKUP_FOLLOW) && !S_ISDIR(nd.inode->i_mode))
2355                         goto exit_dput;
2356                 if (count++ == 32)
2357                         goto exit_dput;
2358                 /*
2359                  * This is subtle. Instead of calling do_follow_link() we do
2360                  * the thing by hands. The reason is that this way we have zero
2361                  * link_count and path_walk() (called from ->follow_link)
2362                  * honoring LOOKUP_PARENT.  After that we have the parent and
2363                  * last component, i.e. we are in the same situation as after
2364                  * the first path_walk().  Well, almost - if the last component
2365                  * is normal we get its copy stored in nd->last.name and we will
2366                  * have to putname() it when we are done. Procfs-like symlinks
2367                  * just set LAST_BIND.
2368                  */
2369                 nd.flags |= LOOKUP_PARENT;
2370                 error = security_inode_follow_link(path.dentry, &nd);
2371                 if (error)
2372                         goto exit_dput;
2373                 error = __do_follow_link(&path, &nd, &cookie);
2374                 if (unlikely(error)) {
2375                         if (!IS_ERR(cookie) && nd.inode->i_op->put_link)
2376                                 nd.inode->i_op->put_link(path.dentry, &nd, cookie);
2377                         /* nd.path had been dropped */
2378                         nd.path = path;
2379                         goto out_path;
2380                 }
2381                 holder = path;
2382                 nd.flags &= ~LOOKUP_PARENT;
2383                 filp = do_last(&nd, &path, open_flag, acc_mode, mode, pathname);
2384                 if (nd.inode->i_op->put_link)
2385                         nd.inode->i_op->put_link(holder.dentry, &nd, cookie);
2386                 path_put(&holder);
2387         }
2388 out:
2389         if (nd.root.mnt)
2390                 path_put(&nd.root);
2391         if (filp == ERR_PTR(-ESTALE) && !(flags & LOOKUP_REVAL))
2392                 goto reval;
2393         return filp;
2394
2395 exit_dput:
2396         path_put_conditional(&path, &nd);
2397 out_path:
2398         path_put(&nd.path);
2399 out_filp:
2400         if (!IS_ERR(nd.intent.open.file))
2401                 release_open_intent(&nd);
2402         filp = ERR_PTR(error);
2403         goto out;
2404 }
2405
2406 /**
2407  * filp_open - open file and return file pointer
2408  *
2409  * @filename:   path to open
2410  * @flags:      open flags as per the open(2) second argument
2411  * @mode:       mode for the new file if O_CREAT is set, else ignored
2412  *
2413  * This is the helper to open a file from kernelspace if you really
2414  * have to.  But in generally you should not do this, so please move
2415  * along, nothing to see here..
2416  */
2417 struct file *filp_open(const char *filename, int flags, int mode)
2418 {
2419         return do_filp_open(AT_FDCWD, filename, flags, mode, 0);
2420 }
2421 EXPORT_SYMBOL(filp_open);
2422
2423 /**
2424  * lookup_create - lookup a dentry, creating it if it doesn't exist
2425  * @nd: nameidata info
2426  * @is_dir: directory flag
2427  *
2428  * Simple function to lookup and return a dentry and create it
2429  * if it doesn't exist.  Is SMP-safe.
2430  *
2431  * Returns with nd->path.dentry->d_inode->i_mutex locked.
2432  */
2433 struct dentry *lookup_create(struct nameidata *nd, int is_dir)
2434 {
2435         struct dentry *dentry = ERR_PTR(-EEXIST);
2436
2437         mutex_lock_nested(&nd->path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
2438         /*
2439          * Yucky last component or no last component at all?
2440          * (foo/., foo/.., /////)
2441          */
2442         if (nd->last_type != LAST_NORM)
2443                 goto fail;
2444         nd->flags &= ~LOOKUP_PARENT;
2445         nd->flags |= LOOKUP_CREATE | LOOKUP_EXCL;
2446         nd->intent.open.flags = O_EXCL;
2447
2448         /*
2449          * Do the final lookup.
2450          */
2451         dentry = lookup_hash(nd);
2452         if (IS_ERR(dentry))
2453                 goto fail;
2454
2455         if (dentry->d_inode)
2456                 goto eexist;
2457         /*
2458          * Special case - lookup gave negative, but... we had foo/bar/
2459          * From the vfs_mknod() POV we just have a negative dentry -
2460          * all is fine. Let's be bastards - you had / on the end, you've
2461          * been asking for (non-existent) directory. -ENOENT for you.
2462          */
2463         if (unlikely(!is_dir && nd->last.name[nd->last.len])) {
2464                 dput(dentry);
2465                 dentry = ERR_PTR(-ENOENT);
2466         }
2467         return dentry;
2468 eexist:
2469         dput(dentry);
2470         dentry = ERR_PTR(-EEXIST);
2471 fail:
2472         return dentry;
2473 }
2474 EXPORT_SYMBOL_GPL(lookup_create);
2475
2476 int vfs_mknod(struct inode *dir, struct dentry *dentry, int mode, dev_t dev)
2477 {
2478         int error = may_create(dir, dentry);
2479
2480         if (error)
2481                 return error;
2482
2483         if ((S_ISCHR(mode) || S_ISBLK(mode)) && !capable(CAP_MKNOD))
2484                 return -EPERM;
2485
2486         if (!dir->i_op->mknod)
2487                 return -EPERM;
2488
2489         error = devcgroup_inode_mknod(mode, dev);
2490         if (error)
2491                 return error;
2492
2493         error = security_inode_mknod(dir, dentry, mode, dev);
2494         if (error)
2495                 return error;
2496
2497         error = dir->i_op->mknod(dir, dentry, mode, dev);
2498         if (!error)
2499                 fsnotify_create(dir, dentry);
2500         return error;
2501 }
2502
2503 static int may_mknod(mode_t mode)
2504 {
2505         switch (mode & S_IFMT) {
2506         case S_IFREG:
2507         case S_IFCHR:
2508         case S_IFBLK:
2509         case S_IFIFO:
2510         case S_IFSOCK:
2511         case 0: /* zero mode translates to S_IFREG */
2512                 return 0;
2513         case S_IFDIR:
2514                 return -EPERM;
2515         default:
2516                 return -EINVAL;
2517         }
2518 }
2519
2520 SYSCALL_DEFINE4(mknodat, int, dfd, const char __user *, filename, int, mode,
2521                 unsigned, dev)
2522 {
2523         int error;
2524         char *tmp;
2525         struct dentry *dentry;
2526         struct nameidata nd;
2527
2528         if (S_ISDIR(mode))
2529                 return -EPERM;
2530
2531         error = user_path_parent(dfd, filename, &nd, &tmp);
2532         if (error)
2533                 return error;
2534
2535         dentry = lookup_create(&nd, 0);
2536         if (IS_ERR(dentry)) {
2537                 error = PTR_ERR(dentry);
2538                 goto out_unlock;
2539         }
2540         if (!IS_POSIXACL(nd.path.dentry->d_inode))
2541                 mode &= ~current_umask();
2542         error = may_mknod(mode);
2543         if (error)
2544                 goto out_dput;
2545         error = mnt_want_write(nd.path.mnt);
2546         if (error)
2547                 goto out_dput;
2548         error = security_path_mknod(&nd.path, dentry, mode, dev);
2549         if (error)
2550                 goto out_drop_write;
2551         switch (mode & S_IFMT) {
2552                 case 0: case S_IFREG:
2553                         error = vfs_create(nd.path.dentry->d_inode,dentry,mode,&nd);
2554                         break;
2555                 case S_IFCHR: case S_IFBLK:
2556                         error = vfs_mknod(nd.path.dentry->d_inode,dentry,mode,
2557                                         new_decode_dev(dev));
2558                         break;
2559                 case S_IFIFO: case S_IFSOCK:
2560                         error = vfs_mknod(nd.path.dentry->d_inode,dentry,mode,0);
2561                         break;
2562         }
2563 out_drop_write:
2564         mnt_drop_write(nd.path.mnt);
2565 out_dput:
2566         dput(dentry);
2567 out_unlock:
2568         mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
2569         path_put(&nd.path);
2570         putname(tmp);
2571
2572         return error;
2573 }
2574
2575 SYSCALL_DEFINE3(mknod, const char __user *, filename, int, mode, unsigned, dev)
2576 {
2577         return sys_mknodat(AT_FDCWD, filename, mode, dev);
2578 }
2579
2580 int vfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
2581 {
2582         int error = may_create(dir, dentry);
2583
2584         if (error)
2585                 return error;
2586
2587         if (!dir->i_op->mkdir)
2588                 return -EPERM;
2589
2590         mode &= (S_IRWXUGO|S_ISVTX);
2591         error = security_inode_mkdir(dir, dentry, mode);
2592         if (error)
2593                 return error;
2594
2595         error = dir->i_op->mkdir(dir, dentry, mode);
2596         if (!error)
2597                 fsnotify_mkdir(dir, dentry);
2598         return error;
2599 }
2600
2601 SYSCALL_DEFINE3(mkdirat, int, dfd, const char __user *, pathname, int, mode)
2602 {
2603         int error = 0;
2604         char * tmp;
2605         struct dentry *dentry;
2606         struct nameidata nd;
2607
2608         error = user_path_parent(dfd, pathname, &nd, &tmp);
2609         if (error)
2610                 goto out_err;
2611
2612         dentry = lookup_create(&nd, 1);
2613         error = PTR_ERR(dentry);
2614         if (IS_ERR(dentry))
2615                 goto out_unlock;
2616
2617         if (!IS_POSIXACL(nd.path.dentry->d_inode))
2618                 mode &= ~current_umask();
2619         error = mnt_want_write(nd.path.mnt);
2620         if (error)
2621                 goto out_dput;
2622         error = security_path_mkdir(&nd.path, dentry, mode);
2623         if (error)
2624                 goto out_drop_write;
2625         error = vfs_mkdir(nd.path.dentry->d_inode, dentry, mode);
2626 out_drop_write:
2627         mnt_drop_write(nd.path.mnt);
2628 out_dput:
2629         dput(dentry);
2630 out_unlock:
2631         mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
2632         path_put(&nd.path);
2633         putname(tmp);
2634 out_err:
2635         return error;
2636 }
2637
2638 SYSCALL_DEFINE2(mkdir, const char __user *, pathname, int, mode)
2639 {
2640         return sys_mkdirat(AT_FDCWD, pathname, mode);
2641 }
2642
2643 /*
2644  * We try to drop the dentry early: we should have
2645  * a usage count of 2 if we're the only user of this
2646  * dentry, and if that is true (possibly after pruning
2647  * the dcache), then we drop the dentry now.
2648  *
2649  * A low-level filesystem can, if it choses, legally
2650  * do a
2651  *
2652  *      if (!d_unhashed(dentry))
2653  *              return -EBUSY;
2654  *
2655  * if it cannot handle the case of removing a directory
2656  * that is still in use by something else..
2657  */
2658 void dentry_unhash(struct dentry *dentry)
2659 {
2660         dget(dentry);
2661         shrink_dcache_parent(dentry);
2662         spin_lock(&dentry->d_lock);
2663         if (dentry->d_count == 2)
2664                 __d_drop(dentry);
2665         spin_unlock(&dentry->d_lock);
2666 }
2667
2668 int vfs_rmdir(struct inode *dir, struct dentry *dentry)
2669 {
2670         int error = may_delete(dir, dentry, 1);
2671
2672         if (error)
2673                 return error;
2674
2675         if (!dir->i_op->rmdir)
2676                 return -EPERM;
2677
2678         mutex_lock(&dentry->d_inode->i_mutex);
2679         dentry_unhash(dentry);
2680         if (d_mountpoint(dentry))
2681                 error = -EBUSY;
2682         else {
2683                 error = security_inode_rmdir(dir, dentry);
2684                 if (!error) {
2685                         error = dir->i_op->rmdir(dir, dentry);
2686                         if (!error) {
2687                                 dentry->d_inode->i_flags |= S_DEAD;
2688                                 dont_mount(dentry);
2689                         }
2690                 }
2691         }
2692         mutex_unlock(&dentry->d_inode->i_mutex);
2693         if (!error) {
2694                 d_delete(dentry);
2695         }
2696         dput(dentry);
2697
2698         return error;
2699 }
2700
2701 static long do_rmdir(int dfd, const char __user *pathname)
2702 {
2703         int error = 0;
2704         char * name;
2705         struct dentry *dentry;
2706         struct nameidata nd;
2707
2708         error = user_path_parent(dfd, pathname, &nd, &name);
2709         if (error)
2710                 return error;
2711
2712         switch(nd.last_type) {
2713         case LAST_DOTDOT:
2714                 error = -ENOTEMPTY;
2715                 goto exit1;
2716         case LAST_DOT:
2717                 error = -EINVAL;
2718                 goto exit1;
2719         case LAST_ROOT:
2720                 error = -EBUSY;
2721                 goto exit1;
2722         }
2723
2724         nd.flags &= ~LOOKUP_PARENT;
2725
2726         mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
2727         dentry = lookup_hash(&nd);
2728         error = PTR_ERR(dentry);
2729         if (IS_ERR(dentry))
2730                 goto exit2;
2731         error = mnt_want_write(nd.path.mnt);
2732         if (error)
2733                 goto exit3;
2734         error = security_path_rmdir(&nd.path, dentry);
2735         if (error)
2736                 goto exit4;
2737         error = vfs_rmdir(nd.path.dentry->d_inode, dentry);
2738 exit4:
2739         mnt_drop_write(nd.path.mnt);
2740 exit3:
2741         dput(dentry);
2742 exit2:
2743         mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
2744 exit1:
2745         path_put(&nd.path);
2746         putname(name);
2747         return error;
2748 }
2749
2750 SYSCALL_DEFINE1(rmdir, const char __user *, pathname)
2751 {
2752         return do_rmdir(AT_FDCWD, pathname);
2753 }
2754
2755 int vfs_unlink(struct inode *dir, struct dentry *dentry)
2756 {
2757         int error = may_delete(dir, dentry, 0);
2758
2759         if (error)
2760                 return error;
2761
2762         if (!dir->i_op->unlink)
2763                 return -EPERM;
2764
2765         mutex_lock(&dentry->d_inode->i_mutex);
2766         if (d_mountpoint(dentry))
2767                 error = -EBUSY;
2768         else {
2769                 error = security_inode_unlink(dir, dentry);
2770                 if (!error) {
2771                         error = dir->i_op->unlink(dir, dentry);
2772                         if (!error)
2773                                 dont_mount(dentry);
2774                 }
2775         }
2776         mutex_unlock(&dentry->d_inode->i_mutex);
2777
2778         /* We don't d_delete() NFS sillyrenamed files--they still exist. */
2779         if (!error && !(dentry->d_flags & DCACHE_NFSFS_RENAMED)) {
2780                 fsnotify_link_count(dentry->d_inode);
2781                 d_delete(dentry);
2782         }
2783
2784         return error;
2785 }
2786
2787 /*
2788  * Make sure that the actual truncation of the file will occur outside its
2789  * directory's i_mutex.  Truncate can take a long time if there is a lot of
2790  * writeout happening, and we don't want to prevent access to the directory
2791  * while waiting on the I/O.
2792  */
2793 static long do_unlinkat(int dfd, const char __user *pathname)
2794 {
2795         int error;
2796         char *name;
2797         struct dentry *dentry;
2798         struct nameidata nd;
2799         struct inode *inode = NULL;
2800
2801         error = user_path_parent(dfd, pathname, &nd, &name);
2802         if (error)
2803                 return error;
2804
2805         error = -EISDIR;
2806         if (nd.last_type != LAST_NORM)
2807                 goto exit1;
2808
2809         nd.flags &= ~LOOKUP_PARENT;
2810
2811         mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
2812         dentry = lookup_hash(&nd);
2813         error = PTR_ERR(dentry);
2814         if (!IS_ERR(dentry)) {
2815                 /* Why not before? Because we want correct error value */
2816                 if (nd.last.name[nd.last.len])
2817                         goto slashes;
2818                 inode = dentry->d_inode;
2819                 if (inode)
2820                         ihold(inode);
2821                 error = mnt_want_write(nd.path.mnt);
2822                 if (error)
2823                         goto exit2;
2824                 error = security_path_unlink(&nd.path, dentry);
2825                 if (error)
2826                         goto exit3;
2827                 error = vfs_unlink(nd.path.dentry->d_inode, dentry);
2828 exit3:
2829                 mnt_drop_write(nd.path.mnt);
2830         exit2:
2831                 dput(dentry);
2832         }
2833         mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
2834         if (inode)
2835                 iput(inode);    /* truncate the inode here */
2836 exit1:
2837         path_put(&nd.path);
2838         putname(name);
2839         return error;
2840
2841 slashes:
2842         error = !dentry->d_inode ? -ENOENT :
2843                 S_ISDIR(dentry->d_inode->i_mode) ? -EISDIR : -ENOTDIR;
2844         goto exit2;
2845 }
2846
2847 SYSCALL_DEFINE3(unlinkat, int, dfd, const char __user *, pathname, int, flag)
2848 {
2849         if ((flag & ~AT_REMOVEDIR) != 0)
2850                 return -EINVAL;
2851
2852         if (flag & AT_REMOVEDIR)
2853                 return do_rmdir(dfd, pathname);
2854
2855         return do_unlinkat(dfd, pathname);
2856 }
2857
2858 SYSCALL_DEFINE1(unlink, const char __user *, pathname)
2859 {
2860         return do_unlinkat(AT_FDCWD, pathname);
2861 }
2862
2863 int vfs_symlink(struct inode *dir, struct dentry *dentry, const char *oldname)
2864 {
2865         int error = may_create(dir, dentry);
2866
2867         if (error)
2868                 return error;
2869
2870         if (!dir->i_op->symlink)
2871                 return -EPERM;
2872
2873         error = security_inode_symlink(dir, dentry, oldname);
2874         if (error)
2875                 return error;
2876
2877         error = dir->i_op->symlink(dir, dentry, oldname);
2878         if (!error)
2879                 fsnotify_create(dir, dentry);
2880         return error;
2881 }
2882
2883 SYSCALL_DEFINE3(symlinkat, const char __user *, oldname,
2884                 int, newdfd, const char __user *, newname)
2885 {
2886         int error;
2887         char *from;
2888         char *to;
2889         struct dentry *dentry;
2890         struct nameidata nd;
2891
2892         from = getname(oldname);
2893         if (IS_ERR(from))
2894                 return PTR_ERR(from);
2895
2896         error = user_path_parent(newdfd, newname, &nd, &to);
2897         if (error)
2898                 goto out_putname;
2899
2900         dentry = lookup_create(&nd, 0);
2901         error = PTR_ERR(dentry);
2902         if (IS_ERR(dentry))
2903                 goto out_unlock;
2904
2905         error = mnt_want_write(nd.path.mnt);
2906         if (error)
2907                 goto out_dput;
2908         error = security_path_symlink(&nd.path, dentry, from);
2909         if (error)
2910                 goto out_drop_write;
2911         error = vfs_symlink(nd.path.dentry->d_inode, dentry, from);
2912 out_drop_write:
2913         mnt_drop_write(nd.path.mnt);
2914 out_dput:
2915         dput(dentry);
2916 out_unlock:
2917         mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
2918         path_put(&nd.path);
2919         putname(to);
2920 out_putname:
2921         putname(from);
2922         return error;
2923 }
2924
2925 SYSCALL_DEFINE2(symlink, const char __user *, oldname, const char __user *, newname)
2926 {
2927         return sys_symlinkat(oldname, AT_FDCWD, newname);
2928 }
2929
2930 int vfs_link(struct dentry *old_dentry, struct inode *dir, struct dentry *new_dentry)
2931 {
2932         struct inode *inode = old_dentry->d_inode;
2933         int error;
2934
2935         if (!inode)
2936                 return -ENOENT;
2937
2938         error = may_create(dir, new_dentry);
2939         if (error)
2940                 return error;
2941
2942         if (dir->i_sb != inode->i_sb)
2943                 return -EXDEV;
2944
2945         /*
2946          * A link to an append-only or immutable file cannot be created.
2947          */
2948         if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
2949                 return -EPERM;
2950         if (!dir->i_op->link)
2951                 return -EPERM;
2952         if (S_ISDIR(inode->i_mode))
2953                 return -EPERM;
2954
2955         error = security_inode_link(old_dentry, dir, new_dentry);
2956         if (error)
2957                 return error;
2958
2959         mutex_lock(&inode->i_mutex);
2960         error = dir->i_op->link(old_dentry, dir, new_dentry);
2961         mutex_unlock(&inode->i_mutex);
2962         if (!error)
2963                 fsnotify_link(dir, inode, new_dentry);
2964         return error;
2965 }
2966
2967 /*
2968  * Hardlinks are often used in delicate situations.  We avoid
2969  * security-related surprises by not following symlinks on the
2970  * newname.  --KAB
2971  *
2972  * We don't follow them on the oldname either to be compatible
2973  * with linux 2.0, and to avoid hard-linking to directories
2974  * and other special files.  --ADM
2975  */
2976 SYSCALL_DEFINE5(linkat, int, olddfd, const char __user *, oldname,
2977                 int, newdfd, const char __user *, newname, int, flags)
2978 {
2979         struct dentry *new_dentry;
2980         struct nameidata nd;
2981         struct path old_path;
2982         int error;
2983         char *to;
2984
2985         if ((flags & ~AT_SYMLINK_FOLLOW) != 0)
2986                 return -EINVAL;
2987
2988         error = user_path_at(olddfd, oldname,
2989                              flags & AT_SYMLINK_FOLLOW ? LOOKUP_FOLLOW : 0,
2990                              &old_path);
2991         if (error)
2992                 return error;
2993
2994         error = user_path_parent(newdfd, newname, &nd, &to);
2995         if (error)
2996                 goto out;
2997         error = -EXDEV;
2998         if (old_path.mnt != nd.path.mnt)
2999                 goto out_release;
3000         new_dentry = lookup_create(&nd, 0);
3001         error = PTR_ERR(new_dentry);
3002         if (IS_ERR(new_dentry))
3003                 goto out_unlock;
3004         error = mnt_want_write(nd.path.mnt);
3005         if (error)
3006                 goto out_dput;
3007         error = security_path_link(old_path.dentry, &nd.path, new_dentry);
3008         if (error)
3009                 goto out_drop_write;
3010         error = vfs_link(old_path.dentry, nd.path.dentry->d_inode, new_dentry);
3011 out_drop_write:
3012         mnt_drop_write(nd.path.mnt);
3013 out_dput:
3014         dput(new_dentry);
3015 out_unlock:
3016         mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
3017 out_release:
3018         path_put(&nd.path);
3019         putname(to);
3020 out:
3021         path_put(&old_path);
3022
3023         return error;
3024 }
3025
3026 SYSCALL_DEFINE2(link, const char __user *, oldname, const char __user *, newname)
3027 {
3028         return sys_linkat(AT_FDCWD, oldname, AT_FDCWD, newname, 0);
3029 }
3030
3031 /*
3032  * The worst of all namespace operations - renaming directory. "Perverted"
3033  * doesn't even start to describe it. Somebody in UCB had a heck of a trip...
3034  * Problems:
3035  *      a) we can get into loop creation. Check is done in is_subdir().
3036  *      b) race potential - two innocent renames can create a loop together.
3037  *         That's where 4.4 screws up. Current fix: serialization on
3038  *         sb->s_vfs_rename_mutex. We might be more accurate, but that's another
3039  *         story.
3040  *      c) we have to lock _three_ objects - parents and victim (if it exists).
3041  *         And that - after we got ->i_mutex on parents (until then we don't know
3042  *         whether the target exists).  Solution: try to be smart with locking
3043  *         order for inodes.  We rely on the fact that tree topology may change
3044  *         only under ->s_vfs_rename_mutex _and_ that parent of the object we
3045  *         move will be locked.  Thus we can rank directories by the tree
3046  *         (ancestors first) and rank all non-directories after them.
3047  *         That works since everybody except rename does "lock parent, lookup,
3048  *         lock child" and rename is under ->s_vfs_rename_mutex.
3049  *         HOWEVER, it relies on the assumption that any object with ->lookup()
3050  *         has no more than 1 dentry.  If "hybrid" objects will ever appear,
3051  *         we'd better make sure that there's no link(2) for them.
3052  *      d) some filesystems don't support opened-but-unlinked directories,
3053  *         either because of layout or because they are not ready to deal with
3054  *         all cases correctly. The latter will be fixed (taking this sort of
3055  *         stuff into VFS), but the former is not going away. Solution: the same
3056  *         trick as in rmdir().
3057  *      e) conversion from fhandle to dentry may come in the wrong moment - when
3058  *         we are removing the target. Solution: we will have to grab ->i_mutex
3059  *         in the fhandle_to_dentry code. [FIXME - current nfsfh.c relies on
3060  *         ->i_mutex on parents, which works but leads to some truly excessive
3061  *         locking].
3062  */
3063 static int vfs_rename_dir(struct inode *old_dir, struct dentry *old_dentry,
3064                           struct inode *new_dir, struct dentry *new_dentry)
3065 {
3066         int error = 0;
3067         struct inode *target;
3068
3069         /*
3070          * If we are going to change the parent - check write permissions,
3071          * we'll need to flip '..'.
3072          */
3073         if (new_dir != old_dir) {
3074                 error = inode_permission(old_dentry->d_inode, MAY_WRITE);
3075                 if (error)
3076                         return error;
3077         }
3078
3079         error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry);
3080         if (error)
3081                 return error;
3082
3083         target = new_dentry->d_inode;
3084         if (target)
3085                 mutex_lock(&target->i_mutex);
3086         if (d_mountpoint(old_dentry)||d_mountpoint(new_dentry))
3087                 error = -EBUSY;
3088         else {
3089                 if (target)
3090                         dentry_unhash(new_dentry);
3091                 error = old_dir->i_op->rename(old_dir, old_dentry, new_dir, new_dentry);
3092         }
3093         if (target) {
3094                 if (!error) {
3095                         target->i_flags |= S_DEAD;
3096                         dont_mount(new_dentry);
3097                 }
3098                 mutex_unlock(&target->i_mutex);
3099                 if (d_unhashed(new_dentry))
3100                         d_rehash(new_dentry);
3101                 dput(new_dentry);
3102         }
3103         if (!error)
3104                 if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE))
3105                         d_move(old_dentry,new_dentry);
3106         return error;
3107 }
3108
3109 static int vfs_rename_other(struct inode *old_dir, struct dentry *old_dentry,
3110                             struct inode *new_dir, struct dentry *new_dentry)
3111 {
3112         struct inode *target;
3113         int error;
3114
3115         error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry);
3116         if (error)
3117                 return error;
3118
3119         dget(new_dentry);
3120         target = new_dentry->d_inode;
3121         if (target)
3122                 mutex_lock(&target->i_mutex);
3123         if (d_mountpoint(old_dentry)||d_mountpoint(new_dentry))
3124                 error = -EBUSY;
3125         else
3126                 error = old_dir->i_op->rename(old_dir, old_dentry, new_dir, new_dentry);
3127         if (!error) {
3128                 if (target)
3129                         dont_mount(new_dentry);
3130                 if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE))
3131                         d_move(old_dentry, new_dentry);
3132         }
3133         if (target)
3134                 mutex_unlock(&target->i_mutex);
3135         dput(new_dentry);
3136         return error;
3137 }
3138
3139 int vfs_rename(struct inode *old_dir, struct dentry *old_dentry,
3140                struct inode *new_dir, struct dentry *new_dentry)
3141 {
3142         int error;
3143         int is_dir = S_ISDIR(old_dentry->d_inode->i_mode);
3144         const unsigned char *old_name;
3145
3146         if (old_dentry->d_inode == new_dentry->d_inode)
3147                 return 0;
3148  
3149         error = may_delete(old_dir, old_dentry, is_dir);
3150         if (error)
3151                 return error;
3152
3153         if (!new_dentry->d_inode)
3154                 error = may_create(new_dir, new_dentry);
3155         else
3156                 error = may_delete(new_dir, new_dentry, is_dir);
3157         if (error)
3158                 return error;
3159
3160         if (!old_dir->i_op->rename)
3161                 return -EPERM;
3162
3163         old_name = fsnotify_oldname_init(old_dentry->d_name.name);
3164
3165         if (is_dir)
3166                 error = vfs_rename_dir(old_dir,old_dentry,new_dir,new_dentry);
3167         else
3168                 error = vfs_rename_other(old_dir,old_dentry,new_dir,new_dentry);
3169         if (!error)
3170                 fsnotify_move(old_dir, new_dir, old_name, is_dir,
3171                               new_dentry->d_inode, old_dentry);
3172         fsnotify_oldname_free(old_name);
3173
3174         return error;
3175 }
3176
3177 SYSCALL_DEFINE4(renameat, int, olddfd, const char __user *, oldname,
3178                 int, newdfd, const char __user *, newname)
3179 {
3180         struct dentry *old_dir, *new_dir;
3181         struct dentry *old_dentry, *new_dentry;
3182         struct dentry *trap;
3183         struct nameidata oldnd, newnd;
3184         char *from;
3185         char *to;
3186         int error;
3187
3188         error = user_path_parent(olddfd, oldname, &oldnd, &from);
3189         if (error)
3190                 goto exit;
3191
3192         error = user_path_parent(newdfd, newname, &newnd, &to);
3193         if (error)
3194                 goto exit1;
3195
3196         error = -EXDEV;
3197         if (oldnd.path.mnt != newnd.path.mnt)
3198                 goto exit2;
3199
3200         old_dir = oldnd.path.dentry;
3201         error = -EBUSY;
3202         if (oldnd.last_type != LAST_NORM)
3203                 goto exit2;
3204
3205         new_dir = newnd.path.dentry;
3206         if (newnd.last_type != LAST_NORM)
3207                 goto exit2;
3208
3209         oldnd.flags &= ~LOOKUP_PARENT;
3210         newnd.flags &= ~LOOKUP_PARENT;
3211         newnd.flags |= LOOKUP_RENAME_TARGET;
3212
3213         trap = lock_rename(new_dir, old_dir);
3214
3215         old_dentry = lookup_hash(&oldnd);
3216         error = PTR_ERR(old_dentry);
3217         if (IS_ERR(old_dentry))
3218                 goto exit3;
3219         /* source must exist */
3220         error = -ENOENT;
3221         if (!old_dentry->d_inode)
3222                 goto exit4;
3223         /* unless the source is a directory trailing slashes give -ENOTDIR */
3224         if (!S_ISDIR(old_dentry->d_inode->i_mode)) {
3225                 error = -ENOTDIR;
3226                 if (oldnd.last.name[oldnd.last.len])
3227                         goto exit4;
3228                 if (newnd.last.name[newnd.last.len])
3229                         goto exit4;
3230         }
3231         /* source should not be ancestor of target */
3232         error = -EINVAL;
3233         if (old_dentry == trap)
3234                 goto exit4;
3235         new_dentry = lookup_hash(&newnd);
3236         error = PTR_ERR(new_dentry);
3237         if (IS_ERR(new_dentry))
3238                 goto exit4;
3239         /* target should not be an ancestor of source */
3240         error = -ENOTEMPTY;
3241         if (new_dentry == trap)
3242                 goto exit5;
3243
3244         error = mnt_want_write(oldnd.path.mnt);
3245         if (error)
3246                 goto exit5;
3247         error = security_path_rename(&oldnd.path, old_dentry,
3248                                      &newnd.path, new_dentry);
3249         if (error)
3250                 goto exit6;
3251         error = vfs_rename(old_dir->d_inode, old_dentry,
3252                                    new_dir->d_inode, new_dentry);
3253 exit6:
3254         mnt_drop_write(oldnd.path.mnt);
3255 exit5:
3256         dput(new_dentry);
3257 exit4:
3258         dput(old_dentry);
3259 exit3:
3260         unlock_rename(new_dir, old_dir);
3261 exit2:
3262         path_put(&newnd.path);
3263         putname(to);
3264 exit1:
3265         path_put(&oldnd.path);
3266         putname(from);
3267 exit:
3268         return error;
3269 }
3270
3271 SYSCALL_DEFINE2(rename, const char __user *, oldname, const char __user *, newname)
3272 {
3273         return sys_renameat(AT_FDCWD, oldname, AT_FDCWD, newname);
3274 }
3275
3276 int vfs_readlink(struct dentry *dentry, char __user *buffer, int buflen, const char *link)
3277 {
3278         int len;
3279
3280         len = PTR_ERR(link);
3281         if (IS_ERR(link))
3282                 goto out;
3283
3284         len = strlen(link);
3285         if (len > (unsigned) buflen)
3286                 len = buflen;
3287         if (copy_to_user(buffer, link, len))
3288                 len = -EFAULT;
3289 out:
3290         return len;
3291 }
3292
3293 /*
3294  * A helper for ->readlink().  This should be used *ONLY* for symlinks that
3295  * have ->follow_link() touching nd only in nd_set_link().  Using (or not
3296  * using) it for any given inode is up to filesystem.
3297  */
3298 int generic_readlink(struct dentry *dentry, char __user *buffer, int buflen)
3299 {
3300         struct nameidata nd;
3301         void *cookie;
3302         int res;
3303
3304         nd.depth = 0;
3305         cookie = dentry->d_inode->i_op->follow_link(dentry, &nd);
3306         if (IS_ERR(cookie))
3307                 return PTR_ERR(cookie);
3308
3309         res = vfs_readlink(dentry, buffer, buflen, nd_get_link(&nd));
3310         if (dentry->d_inode->i_op->put_link)
3311                 dentry->d_inode->i_op->put_link(dentry, &nd, cookie);
3312         return res;
3313 }
3314
3315 int vfs_follow_link(struct nameidata *nd, const char *link)
3316 {
3317         return __vfs_follow_link(nd, link);
3318 }
3319
3320 /* get the link contents into pagecache */
3321 static char *page_getlink(struct dentry * dentry, struct page **ppage)
3322 {
3323         char *kaddr;
3324         struct page *page;
3325         struct address_space *mapping = dentry->d_inode->i_mapping;
3326         page = read_mapping_page(mapping, 0, NULL);
3327         if (IS_ERR(page))
3328                 return (char*)page;
3329         *ppage = page;
3330         kaddr = kmap(page);
3331         nd_terminate_link(kaddr, dentry->d_inode->i_size, PAGE_SIZE - 1);
3332         return kaddr;
3333 }
3334
3335 int page_readlink(struct dentry *dentry, char __user *buffer, int buflen)
3336 {
3337         struct page *page = NULL;
3338         char *s = page_getlink(dentry, &page);
3339         int res = vfs_readlink(dentry,buffer,buflen,s);
3340         if (page) {
3341                 kunmap(page);
3342                 page_cache_release(page);
3343         }
3344         return res;
3345 }
3346
3347 void *page_follow_link_light(struct dentry *dentry, struct nameidata *nd)
3348 {
3349         struct page *page = NULL;
3350         nd_set_link(nd, page_getlink(dentry, &page));
3351         return page;
3352 }
3353
3354 void page_put_link(struct dentry *dentry, struct nameidata *nd, void *cookie)
3355 {
3356         struct page *page = cookie;
3357
3358         if (page) {
3359                 kunmap(page);
3360                 page_cache_release(page);
3361         }
3362 }
3363
3364 /*
3365  * The nofs argument instructs pagecache_write_begin to pass AOP_FLAG_NOFS
3366  */
3367 int __page_symlink(struct inode *inode, const char *symname, int len, int nofs)
3368 {
3369         struct address_space *mapping = inode->i_mapping;
3370         struct page *page;
3371         void *fsdata;
3372         int err;
3373         char *kaddr;
3374         unsigned int flags = AOP_FLAG_UNINTERRUPTIBLE;
3375         if (nofs)
3376                 flags |= AOP_FLAG_NOFS;
3377
3378 retry:
3379         err = pagecache_write_begin(NULL, mapping, 0, len-1,
3380                                 flags, &page, &fsdata);
3381         if (err)
3382                 goto fail;
3383
3384         kaddr = kmap_atomic(page, KM_USER0);
3385         memcpy(kaddr, symname, len-1);
3386         kunmap_atomic(kaddr, KM_USER0);
3387
3388         err = pagecache_write_end(NULL, mapping, 0, len-1, len-1,
3389                                                         page, fsdata);
3390         if (err < 0)
3391                 goto fail;
3392         if (err < len-1)
3393                 goto retry;
3394
3395         mark_inode_dirty(inode);
3396         return 0;
3397 fail:
3398         return err;
3399 }
3400
3401 int page_symlink(struct inode *inode, const char *symname, int len)
3402 {
3403         return __page_symlink(inode, symname, len,
3404                         !(mapping_gfp_mask(inode->i_mapping) & __GFP_FS));
3405 }
3406
3407 const struct inode_operations page_symlink_inode_operations = {
3408         .readlink       = generic_readlink,
3409         .follow_link    = page_follow_link_light,
3410         .put_link       = page_put_link,
3411 };
3412
3413 EXPORT_SYMBOL(user_path_at);
3414 EXPORT_SYMBOL(follow_down);
3415 EXPORT_SYMBOL(follow_up);
3416 EXPORT_SYMBOL(get_write_access); /* binfmt_aout */
3417 EXPORT_SYMBOL(getname);
3418 EXPORT_SYMBOL(lock_rename);
3419 EXPORT_SYMBOL(lookup_one_len);
3420 EXPORT_SYMBOL(page_follow_link_light);
3421 EXPORT_SYMBOL(page_put_link);
3422 EXPORT_SYMBOL(page_readlink);
3423 EXPORT_SYMBOL(__page_symlink);
3424 EXPORT_SYMBOL(page_symlink);
3425 EXPORT_SYMBOL(page_symlink_inode_operations);
3426 EXPORT_SYMBOL(path_lookup);
3427 EXPORT_SYMBOL(kern_path);
3428 EXPORT_SYMBOL(vfs_path_lookup);
3429 EXPORT_SYMBOL(inode_permission);
3430 EXPORT_SYMBOL(file_permission);
3431 EXPORT_SYMBOL(unlock_rename);
3432 EXPORT_SYMBOL(vfs_create);
3433 EXPORT_SYMBOL(vfs_follow_link);
3434 EXPORT_SYMBOL(vfs_link);
3435 EXPORT_SYMBOL(vfs_mkdir);
3436 EXPORT_SYMBOL(vfs_mknod);
3437 EXPORT_SYMBOL(generic_permission);
3438 EXPORT_SYMBOL(vfs_readlink);
3439 EXPORT_SYMBOL(vfs_rename);
3440 EXPORT_SYMBOL(vfs_rmdir);
3441 EXPORT_SYMBOL(vfs_symlink);
3442 EXPORT_SYMBOL(vfs_unlink);
3443 EXPORT_SYMBOL(dentry_unhash);
3444 EXPORT_SYMBOL(generic_readlink);