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