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