MAINTAINERS, order AUERSWALD alphabetically
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / fs / namei.c
CommitLineData
1da177e4
LT
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/quotaops.h>
23#include <linux/pagemap.h>
0eeca283 24#include <linux/fsnotify.h>
1da177e4
LT
25#include <linux/personality.h>
26#include <linux/security.h>
27#include <linux/syscalls.h>
28#include <linux/mount.h>
29#include <linux/audit.h>
16f7e0fe 30#include <linux/capability.h>
834f2a4a 31#include <linux/file.h>
5590ff0d 32#include <linux/fcntl.h>
1da177e4
LT
33#include <asm/namei.h>
34#include <asm/uaccess.h>
35
36#define ACC_MODE(x) ("\000\004\002\006"[(x)&O_ACCMODE])
37
38/* [Feb-1997 T. Schoebel-Theuer]
39 * Fundamental changes in the pathname lookup mechanisms (namei)
40 * were necessary because of omirr. The reason is that omirr needs
41 * to know the _real_ pathname, not the user-supplied one, in case
42 * of symlinks (and also when transname replacements occur).
43 *
44 * The new code replaces the old recursive symlink resolution with
45 * an iterative one (in case of non-nested symlink chains). It does
46 * this with calls to <fs>_follow_link().
47 * As a side effect, dir_namei(), _namei() and follow_link() are now
48 * replaced with a single function lookup_dentry() that can handle all
49 * the special cases of the former code.
50 *
51 * With the new dcache, the pathname is stored at each inode, at least as
52 * long as the refcount of the inode is positive. As a side effect, the
53 * size of the dcache depends on the inode cache and thus is dynamic.
54 *
55 * [29-Apr-1998 C. Scott Ananian] Updated above description of symlink
56 * resolution to correspond with current state of the code.
57 *
58 * Note that the symlink resolution is not *completely* iterative.
59 * There is still a significant amount of tail- and mid- recursion in
60 * the algorithm. Also, note that <fs>_readlink() is not used in
61 * lookup_dentry(): lookup_dentry() on the result of <fs>_readlink()
62 * may return different results than <fs>_follow_link(). Many virtual
63 * filesystems (including /proc) exhibit this behavior.
64 */
65
66/* [24-Feb-97 T. Schoebel-Theuer] Side effects caused by new implementation:
67 * New symlink semantics: when open() is called with flags O_CREAT | O_EXCL
68 * and the name already exists in form of a symlink, try to create the new
69 * name indicated by the symlink. The old code always complained that the
70 * name already exists, due to not following the symlink even if its target
71 * is nonexistent. The new semantics affects also mknod() and link() when
72 * the name is a symlink pointing to a non-existant name.
73 *
74 * I don't know which semantics is the right one, since I have no access
75 * to standards. But I found by trial that HP-UX 9.0 has the full "new"
76 * semantics implemented, while SunOS 4.1.1 and Solaris (SunOS 5.4) have the
77 * "old" one. Personally, I think the new semantics is much more logical.
78 * Note that "ln old new" where "new" is a symlink pointing to a non-existing
79 * file does succeed in both HP-UX and SunOs, but not in Solaris
80 * and in the old Linux semantics.
81 */
82
83/* [16-Dec-97 Kevin Buhr] For security reasons, we change some symlink
84 * semantics. See the comments in "open_namei" and "do_link" below.
85 *
86 * [10-Sep-98 Alan Modra] Another symlink change.
87 */
88
89/* [Feb-Apr 2000 AV] Complete rewrite. Rules for symlinks:
90 * inside the path - always follow.
91 * in the last component in creation/removal/renaming - never follow.
92 * if LOOKUP_FOLLOW passed - follow.
93 * if the pathname has trailing slashes - follow.
94 * otherwise - don't follow.
95 * (applied in that order).
96 *
97 * [Jun 2000 AV] Inconsistent behaviour of open() in case if flags==O_CREAT
98 * restored for 2.4. This is the last surviving part of old 4.2BSD bug.
99 * During the 2.4 we need to fix the userland stuff depending on it -
100 * hopefully we will be able to get rid of that wart in 2.5. So far only
101 * XEmacs seems to be relying on it...
102 */
103/*
104 * [Sep 2001 AV] Single-semaphore locking scheme (kudos to David Holland)
a11f3a05 105 * implemented. Let's see if raised priority of ->s_vfs_rename_mutex gives
1da177e4
LT
106 * any extra contention...
107 */
108
c4a7808f
JJS
109static int fastcall link_path_walk(const char *name, struct nameidata *nd);
110
1da177e4
LT
111/* In order to reduce some races, while at the same time doing additional
112 * checking and hopefully speeding things up, we copy filenames to the
113 * kernel data space before using them..
114 *
115 * POSIX.1 2.4: an empty pathname is invalid (ENOENT).
116 * PATH_MAX includes the nul terminator --RR.
117 */
858119e1 118static int do_getname(const char __user *filename, char *page)
1da177e4
LT
119{
120 int retval;
121 unsigned long len = PATH_MAX;
122
123 if (!segment_eq(get_fs(), KERNEL_DS)) {
124 if ((unsigned long) filename >= TASK_SIZE)
125 return -EFAULT;
126 if (TASK_SIZE - (unsigned long) filename < PATH_MAX)
127 len = TASK_SIZE - (unsigned long) filename;
128 }
129
130 retval = strncpy_from_user(page, filename, len);
131 if (retval > 0) {
132 if (retval < len)
133 return 0;
134 return -ENAMETOOLONG;
135 } else if (!retval)
136 retval = -ENOENT;
137 return retval;
138}
139
140char * getname(const char __user * filename)
141{
142 char *tmp, *result;
143
144 result = ERR_PTR(-ENOMEM);
145 tmp = __getname();
146 if (tmp) {
147 int retval = do_getname(filename, tmp);
148
149 result = tmp;
150 if (retval < 0) {
151 __putname(tmp);
152 result = ERR_PTR(retval);
153 }
154 }
155 audit_getname(result);
156 return result;
157}
158
159#ifdef CONFIG_AUDITSYSCALL
160void putname(const char *name)
161{
5ac3a9c2 162 if (unlikely(!audit_dummy_context()))
1da177e4
LT
163 audit_putname(name);
164 else
165 __putname(name);
166}
167EXPORT_SYMBOL(putname);
168#endif
169
170
171/**
172 * generic_permission - check for access rights on a Posix-like filesystem
173 * @inode: inode to check access rights for
174 * @mask: right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
175 * @check_acl: optional callback to check for Posix ACLs
176 *
177 * Used to check for read/write/execute permissions on a file.
178 * We use "fsuid" for this, letting us set arbitrary permissions
179 * for filesystem access without changing the "normal" uids which
180 * are used for other things..
181 */
182int generic_permission(struct inode *inode, int mask,
183 int (*check_acl)(struct inode *inode, int mask))
184{
185 umode_t mode = inode->i_mode;
186
187 if (current->fsuid == inode->i_uid)
188 mode >>= 6;
189 else {
190 if (IS_POSIXACL(inode) && (mode & S_IRWXG) && check_acl) {
191 int error = check_acl(inode, mask);
192 if (error == -EACCES)
193 goto check_capabilities;
194 else if (error != -EAGAIN)
195 return error;
196 }
197
198 if (in_group_p(inode->i_gid))
199 mode >>= 3;
200 }
201
202 /*
203 * If the DACs are ok we don't need any capability check.
204 */
205 if (((mode & mask & (MAY_READ|MAY_WRITE|MAY_EXEC)) == mask))
206 return 0;
207
208 check_capabilities:
209 /*
210 * Read/write DACs are always overridable.
211 * Executable DACs are overridable if at least one exec bit is set.
212 */
213 if (!(mask & MAY_EXEC) ||
214 (inode->i_mode & S_IXUGO) || S_ISDIR(inode->i_mode))
215 if (capable(CAP_DAC_OVERRIDE))
216 return 0;
217
218 /*
219 * Searching includes executable on directories, else just read.
220 */
221 if (mask == MAY_READ || (S_ISDIR(inode->i_mode) && !(mask & MAY_WRITE)))
222 if (capable(CAP_DAC_READ_SEARCH))
223 return 0;
224
225 return -EACCES;
226}
227
228int permission(struct inode *inode, int mask, struct nameidata *nd)
229{
230 int retval, submask;
c7eb2667
DH
231 struct vfsmount *mnt = NULL;
232
233 if (nd)
234 mnt = nd->mnt;
1da177e4
LT
235
236 if (mask & MAY_WRITE) {
22590e41 237 umode_t mode = inode->i_mode;
1da177e4
LT
238
239 /*
240 * Nobody gets write access to a read-only fs.
241 */
242 if (IS_RDONLY(inode) &&
243 (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode)))
244 return -EROFS;
245
246 /*
247 * Nobody gets write access to an immutable file.
248 */
249 if (IS_IMMUTABLE(inode))
250 return -EACCES;
251 }
252
22590e41
MS
253 if ((mask & MAY_EXEC) && S_ISREG(inode->i_mode)) {
254 /*
255 * MAY_EXEC on regular files is denied if the fs is mounted
256 * with the "noexec" flag.
257 */
c7eb2667 258 if (mnt && (mnt->mnt_flags & MNT_NOEXEC))
22590e41
MS
259 return -EACCES;
260 }
a343bb77 261
1da177e4
LT
262 /* Ordinary permission routines do not understand MAY_APPEND. */
263 submask = mask & ~MAY_APPEND;
22590e41 264 if (inode->i_op && inode->i_op->permission) {
1da177e4 265 retval = inode->i_op->permission(inode, submask, nd);
22590e41
MS
266 if (!retval) {
267 /*
268 * Exec permission on a regular file is denied if none
269 * of the execute bits are set.
270 *
271 * This check should be done by the ->permission()
272 * method.
273 */
274 if ((mask & MAY_EXEC) && S_ISREG(inode->i_mode) &&
275 !(inode->i_mode & S_IXUGO))
276 return -EACCES;
277 }
278 } else {
1da177e4 279 retval = generic_permission(inode, submask, NULL);
22590e41 280 }
1da177e4
LT
281 if (retval)
282 return retval;
283
284 return security_inode_permission(inode, mask, nd);
285}
286
e4543edd
CH
287/**
288 * vfs_permission - check for access rights to a given path
289 * @nd: lookup result that describes the path
290 * @mask: right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
291 *
292 * Used to check for read/write/execute permissions on a path.
293 * We use "fsuid" for this, letting us set arbitrary permissions
294 * for filesystem access without changing the "normal" uids which
295 * are used for other things.
296 */
297int vfs_permission(struct nameidata *nd, int mask)
298{
299 return permission(nd->dentry->d_inode, mask, nd);
300}
301
8c744fb8
CH
302/**
303 * file_permission - check for additional access rights to a given file
304 * @file: file to check access rights for
305 * @mask: right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
306 *
307 * Used to check for read/write/execute permissions on an already opened
308 * file.
309 *
310 * Note:
311 * Do not use this function in new code. All access checks should
312 * be done using vfs_permission().
313 */
314int file_permission(struct file *file, int mask)
315{
0f7fc9e4 316 return permission(file->f_path.dentry->d_inode, mask, NULL);
8c744fb8
CH
317}
318
1da177e4
LT
319/*
320 * get_write_access() gets write permission for a file.
321 * put_write_access() releases this write permission.
322 * This is used for regular files.
323 * We cannot support write (and maybe mmap read-write shared) accesses and
324 * MAP_DENYWRITE mmappings simultaneously. The i_writecount field of an inode
325 * can have the following values:
326 * 0: no writers, no VM_DENYWRITE mappings
327 * < 0: (-i_writecount) vm_area_structs with VM_DENYWRITE set exist
328 * > 0: (i_writecount) users are writing to the file.
329 *
330 * Normally we operate on that counter with atomic_{inc,dec} and it's safe
331 * except for the cases where we don't hold i_writecount yet. Then we need to
332 * use {get,deny}_write_access() - these functions check the sign and refuse
333 * to do the change if sign is wrong. Exclusion between them is provided by
334 * the inode->i_lock spinlock.
335 */
336
337int get_write_access(struct inode * inode)
338{
339 spin_lock(&inode->i_lock);
340 if (atomic_read(&inode->i_writecount) < 0) {
341 spin_unlock(&inode->i_lock);
342 return -ETXTBSY;
343 }
344 atomic_inc(&inode->i_writecount);
345 spin_unlock(&inode->i_lock);
346
347 return 0;
348}
349
350int deny_write_access(struct file * file)
351{
0f7fc9e4 352 struct inode *inode = file->f_path.dentry->d_inode;
1da177e4
LT
353
354 spin_lock(&inode->i_lock);
355 if (atomic_read(&inode->i_writecount) > 0) {
356 spin_unlock(&inode->i_lock);
357 return -ETXTBSY;
358 }
359 atomic_dec(&inode->i_writecount);
360 spin_unlock(&inode->i_lock);
361
362 return 0;
363}
364
365void path_release(struct nameidata *nd)
366{
367 dput(nd->dentry);
368 mntput(nd->mnt);
369}
370
371/*
372 * umount() mustn't call path_release()/mntput() as that would clear
373 * mnt_expiry_mark
374 */
375void path_release_on_umount(struct nameidata *nd)
376{
377 dput(nd->dentry);
751c404b 378 mntput_no_expire(nd->mnt);
1da177e4
LT
379}
380
834f2a4a
TM
381/**
382 * release_open_intent - free up open intent resources
383 * @nd: pointer to nameidata
384 */
385void release_open_intent(struct nameidata *nd)
386{
0f7fc9e4 387 if (nd->intent.open.file->f_path.dentry == NULL)
834f2a4a
TM
388 put_filp(nd->intent.open.file);
389 else
390 fput(nd->intent.open.file);
391}
392
bcdc5e01
IK
393static inline struct dentry *
394do_revalidate(struct dentry *dentry, struct nameidata *nd)
395{
396 int status = dentry->d_op->d_revalidate(dentry, nd);
397 if (unlikely(status <= 0)) {
398 /*
399 * The dentry failed validation.
400 * If d_revalidate returned 0 attempt to invalidate
401 * the dentry otherwise d_revalidate is asking us
402 * to return a fail status.
403 */
404 if (!status) {
405 if (!d_invalidate(dentry)) {
406 dput(dentry);
407 dentry = NULL;
408 }
409 } else {
410 dput(dentry);
411 dentry = ERR_PTR(status);
412 }
413 }
414 return dentry;
415}
416
1da177e4
LT
417/*
418 * Internal lookup() using the new generic dcache.
419 * SMP-safe
420 */
421static struct dentry * cached_lookup(struct dentry * parent, struct qstr * name, struct nameidata *nd)
422{
423 struct dentry * dentry = __d_lookup(parent, name);
424
425 /* lockess __d_lookup may fail due to concurrent d_move()
426 * in some unrelated directory, so try with d_lookup
427 */
428 if (!dentry)
429 dentry = d_lookup(parent, name);
430
bcdc5e01
IK
431 if (dentry && dentry->d_op && dentry->d_op->d_revalidate)
432 dentry = do_revalidate(dentry, nd);
433
1da177e4
LT
434 return dentry;
435}
436
437/*
438 * Short-cut version of permission(), for calling by
439 * path_walk(), when dcache lock is held. Combines parts
440 * of permission() and generic_permission(), and tests ONLY for
441 * MAY_EXEC permission.
442 *
443 * If appropriate, check DAC only. If not appropriate, or
444 * short-cut DAC fails, then call permission() to do more
445 * complete permission check.
446 */
858119e1 447static int exec_permission_lite(struct inode *inode,
1da177e4
LT
448 struct nameidata *nd)
449{
450 umode_t mode = inode->i_mode;
451
452 if (inode->i_op && inode->i_op->permission)
453 return -EAGAIN;
454
455 if (current->fsuid == inode->i_uid)
456 mode >>= 6;
457 else if (in_group_p(inode->i_gid))
458 mode >>= 3;
459
460 if (mode & MAY_EXEC)
461 goto ok;
462
463 if ((inode->i_mode & S_IXUGO) && capable(CAP_DAC_OVERRIDE))
464 goto ok;
465
466 if (S_ISDIR(inode->i_mode) && capable(CAP_DAC_OVERRIDE))
467 goto ok;
468
469 if (S_ISDIR(inode->i_mode) && capable(CAP_DAC_READ_SEARCH))
470 goto ok;
471
472 return -EACCES;
473ok:
474 return security_inode_permission(inode, MAY_EXEC, nd);
475}
476
477/*
478 * This is called when everything else fails, and we actually have
479 * to go to the low-level filesystem to find out what we should do..
480 *
481 * We get the directory semaphore, and after getting that we also
482 * make sure that nobody added the entry to the dcache in the meantime..
483 * SMP-safe
484 */
485static struct dentry * real_lookup(struct dentry * parent, struct qstr * name, struct nameidata *nd)
486{
487 struct dentry * result;
488 struct inode *dir = parent->d_inode;
489
1b1dcc1b 490 mutex_lock(&dir->i_mutex);
1da177e4
LT
491 /*
492 * First re-do the cached lookup just in case it was created
493 * while we waited for the directory semaphore..
494 *
495 * FIXME! This could use version numbering or similar to
496 * avoid unnecessary cache lookups.
497 *
498 * The "dcache_lock" is purely to protect the RCU list walker
499 * from concurrent renames at this point (we mustn't get false
500 * negatives from the RCU list walk here, unlike the optimistic
501 * fast walk).
502 *
503 * so doing d_lookup() (with seqlock), instead of lockfree __d_lookup
504 */
505 result = d_lookup(parent, name);
506 if (!result) {
507 struct dentry * dentry = d_alloc(parent, name);
508 result = ERR_PTR(-ENOMEM);
509 if (dentry) {
510 result = dir->i_op->lookup(dir, dentry, nd);
511 if (result)
512 dput(dentry);
513 else
514 result = dentry;
515 }
1b1dcc1b 516 mutex_unlock(&dir->i_mutex);
1da177e4
LT
517 return result;
518 }
519
520 /*
521 * Uhhuh! Nasty case: the cache was re-populated while
522 * we waited on the semaphore. Need to revalidate.
523 */
1b1dcc1b 524 mutex_unlock(&dir->i_mutex);
1da177e4 525 if (result->d_op && result->d_op->d_revalidate) {
bcdc5e01
IK
526 result = do_revalidate(result, nd);
527 if (!result)
1da177e4 528 result = ERR_PTR(-ENOENT);
1da177e4
LT
529 }
530 return result;
531}
532
533static int __emul_lookup_dentry(const char *, struct nameidata *);
534
535/* SMP-safe */
f1662356 536static __always_inline int
1da177e4
LT
537walk_init_root(const char *name, struct nameidata *nd)
538{
e518ddb7
AM
539 struct fs_struct *fs = current->fs;
540
541 read_lock(&fs->lock);
542 if (fs->altroot && !(nd->flags & LOOKUP_NOALT)) {
543 nd->mnt = mntget(fs->altrootmnt);
544 nd->dentry = dget(fs->altroot);
545 read_unlock(&fs->lock);
1da177e4
LT
546 if (__emul_lookup_dentry(name,nd))
547 return 0;
e518ddb7 548 read_lock(&fs->lock);
1da177e4 549 }
e518ddb7
AM
550 nd->mnt = mntget(fs->rootmnt);
551 nd->dentry = dget(fs->root);
552 read_unlock(&fs->lock);
1da177e4
LT
553 return 1;
554}
555
f1662356 556static __always_inline int __vfs_follow_link(struct nameidata *nd, const char *link)
1da177e4
LT
557{
558 int res = 0;
559 char *name;
560 if (IS_ERR(link))
561 goto fail;
562
563 if (*link == '/') {
564 path_release(nd);
565 if (!walk_init_root(link, nd))
566 /* weird __emul_prefix() stuff did it */
567 goto out;
568 }
569 res = link_path_walk(link, nd);
570out:
571 if (nd->depth || res || nd->last_type!=LAST_NORM)
572 return res;
573 /*
574 * If it is an iterative symlinks resolution in open_namei() we
575 * have to copy the last component. And all that crap because of
576 * bloody create() on broken symlinks. Furrfu...
577 */
578 name = __getname();
579 if (unlikely(!name)) {
580 path_release(nd);
581 return -ENOMEM;
582 }
583 strcpy(name, nd->last.name);
584 nd->last.name = name;
585 return 0;
586fail:
587 path_release(nd);
588 return PTR_ERR(link);
589}
590
051d3812
IK
591static inline void dput_path(struct path *path, struct nameidata *nd)
592{
593 dput(path->dentry);
594 if (path->mnt != nd->mnt)
595 mntput(path->mnt);
596}
597
598static inline void path_to_nameidata(struct path *path, struct nameidata *nd)
599{
600 dput(nd->dentry);
601 if (nd->mnt != path->mnt)
602 mntput(nd->mnt);
603 nd->mnt = path->mnt;
604 nd->dentry = path->dentry;
605}
606
f1662356 607static __always_inline int __do_follow_link(struct path *path, struct nameidata *nd)
1da177e4
LT
608{
609 int error;
cc314eef 610 void *cookie;
cd4e91d3 611 struct dentry *dentry = path->dentry;
1da177e4 612
d671a1cb 613 touch_atime(path->mnt, dentry);
1da177e4 614 nd_set_link(nd, NULL);
cd4e91d3 615
051d3812
IK
616 if (path->mnt != nd->mnt) {
617 path_to_nameidata(path, nd);
618 dget(dentry);
619 }
620 mntget(path->mnt);
cc314eef
LT
621 cookie = dentry->d_inode->i_op->follow_link(dentry, nd);
622 error = PTR_ERR(cookie);
623 if (!IS_ERR(cookie)) {
1da177e4 624 char *s = nd_get_link(nd);
cc314eef 625 error = 0;
1da177e4
LT
626 if (s)
627 error = __vfs_follow_link(nd, s);
628 if (dentry->d_inode->i_op->put_link)
cc314eef 629 dentry->d_inode->i_op->put_link(dentry, nd, cookie);
1da177e4 630 }
cd4e91d3
AV
631 dput(dentry);
632 mntput(path->mnt);
1da177e4
LT
633
634 return error;
635}
636
637/*
638 * This limits recursive symlink follows to 8, while
639 * limiting consecutive symlinks to 40.
640 *
641 * Without that kind of total limit, nasty chains of consecutive
642 * symlinks can cause almost arbitrarily long lookups.
643 */
90ebe565 644static inline int do_follow_link(struct path *path, struct nameidata *nd)
1da177e4
LT
645{
646 int err = -ELOOP;
647 if (current->link_count >= MAX_NESTED_LINKS)
648 goto loop;
649 if (current->total_link_count >= 40)
650 goto loop;
651 BUG_ON(nd->depth >= MAX_NESTED_LINKS);
652 cond_resched();
90ebe565 653 err = security_inode_follow_link(path->dentry, nd);
1da177e4
LT
654 if (err)
655 goto loop;
656 current->link_count++;
657 current->total_link_count++;
658 nd->depth++;
cd4e91d3 659 err = __do_follow_link(path, nd);
839d9f93
AV
660 current->link_count--;
661 nd->depth--;
1da177e4
LT
662 return err;
663loop:
09dd17d3 664 dput_path(path, nd);
839d9f93 665 path_release(nd);
1da177e4
LT
666 return err;
667}
668
669int follow_up(struct vfsmount **mnt, struct dentry **dentry)
670{
671 struct vfsmount *parent;
672 struct dentry *mountpoint;
673 spin_lock(&vfsmount_lock);
674 parent=(*mnt)->mnt_parent;
675 if (parent == *mnt) {
676 spin_unlock(&vfsmount_lock);
677 return 0;
678 }
679 mntget(parent);
680 mountpoint=dget((*mnt)->mnt_mountpoint);
681 spin_unlock(&vfsmount_lock);
682 dput(*dentry);
683 *dentry = mountpoint;
684 mntput(*mnt);
685 *mnt = parent;
686 return 1;
687}
688
689/* no need for dcache_lock, as serialization is taken care in
690 * namespace.c
691 */
463ffb2e
AV
692static int __follow_mount(struct path *path)
693{
694 int res = 0;
695 while (d_mountpoint(path->dentry)) {
696 struct vfsmount *mounted = lookup_mnt(path->mnt, path->dentry);
697 if (!mounted)
698 break;
699 dput(path->dentry);
700 if (res)
701 mntput(path->mnt);
702 path->mnt = mounted;
703 path->dentry = dget(mounted->mnt_root);
704 res = 1;
705 }
706 return res;
707}
708
58c465eb 709static void follow_mount(struct vfsmount **mnt, struct dentry **dentry)
1da177e4 710{
1da177e4
LT
711 while (d_mountpoint(*dentry)) {
712 struct vfsmount *mounted = lookup_mnt(*mnt, *dentry);
713 if (!mounted)
714 break;
58c465eb 715 dput(*dentry);
1da177e4
LT
716 mntput(*mnt);
717 *mnt = mounted;
1da177e4 718 *dentry = dget(mounted->mnt_root);
1da177e4 719 }
1da177e4
LT
720}
721
722/* no need for dcache_lock, as serialization is taken care in
723 * namespace.c
724 */
e13b210f 725int follow_down(struct vfsmount **mnt, struct dentry **dentry)
1da177e4
LT
726{
727 struct vfsmount *mounted;
728
729 mounted = lookup_mnt(*mnt, *dentry);
730 if (mounted) {
e13b210f 731 dput(*dentry);
1da177e4
LT
732 mntput(*mnt);
733 *mnt = mounted;
1da177e4
LT
734 *dentry = dget(mounted->mnt_root);
735 return 1;
736 }
737 return 0;
738}
739
f1662356 740static __always_inline void follow_dotdot(struct nameidata *nd)
1da177e4 741{
e518ddb7
AM
742 struct fs_struct *fs = current->fs;
743
1da177e4
LT
744 while(1) {
745 struct vfsmount *parent;
58c465eb 746 struct dentry *old = nd->dentry;
1da177e4 747
e518ddb7
AM
748 read_lock(&fs->lock);
749 if (nd->dentry == fs->root &&
750 nd->mnt == fs->rootmnt) {
751 read_unlock(&fs->lock);
1da177e4
LT
752 break;
753 }
e518ddb7 754 read_unlock(&fs->lock);
1da177e4 755 spin_lock(&dcache_lock);
58c465eb
AV
756 if (nd->dentry != nd->mnt->mnt_root) {
757 nd->dentry = dget(nd->dentry->d_parent);
1da177e4
LT
758 spin_unlock(&dcache_lock);
759 dput(old);
760 break;
761 }
762 spin_unlock(&dcache_lock);
763 spin_lock(&vfsmount_lock);
58c465eb
AV
764 parent = nd->mnt->mnt_parent;
765 if (parent == nd->mnt) {
1da177e4
LT
766 spin_unlock(&vfsmount_lock);
767 break;
768 }
769 mntget(parent);
58c465eb 770 nd->dentry = dget(nd->mnt->mnt_mountpoint);
1da177e4
LT
771 spin_unlock(&vfsmount_lock);
772 dput(old);
58c465eb
AV
773 mntput(nd->mnt);
774 nd->mnt = parent;
1da177e4 775 }
58c465eb 776 follow_mount(&nd->mnt, &nd->dentry);
1da177e4
LT
777}
778
1da177e4
LT
779/*
780 * It's more convoluted than I'd like it to be, but... it's still fairly
781 * small and for now I'd prefer to have fast path as straight as possible.
782 * It _is_ time-critical.
783 */
784static int do_lookup(struct nameidata *nd, struct qstr *name,
785 struct path *path)
786{
787 struct vfsmount *mnt = nd->mnt;
788 struct dentry *dentry = __d_lookup(nd->dentry, name);
789
790 if (!dentry)
791 goto need_lookup;
792 if (dentry->d_op && dentry->d_op->d_revalidate)
793 goto need_revalidate;
794done:
795 path->mnt = mnt;
796 path->dentry = dentry;
634ee701 797 __follow_mount(path);
1da177e4
LT
798 return 0;
799
800need_lookup:
801 dentry = real_lookup(nd->dentry, name, nd);
802 if (IS_ERR(dentry))
803 goto fail;
804 goto done;
805
806need_revalidate:
bcdc5e01
IK
807 dentry = do_revalidate(dentry, nd);
808 if (!dentry)
809 goto need_lookup;
810 if (IS_ERR(dentry))
811 goto fail;
812 goto done;
1da177e4
LT
813
814fail:
815 return PTR_ERR(dentry);
816}
817
818/*
819 * Name resolution.
ea3834d9
PM
820 * This is the basic name resolution function, turning a pathname into
821 * the final dentry. We expect 'base' to be positive and a directory.
1da177e4 822 *
ea3834d9
PM
823 * Returns 0 and nd will have valid dentry and mnt on success.
824 * Returns error and drops reference to input namei data on failure.
1da177e4
LT
825 */
826static fastcall int __link_path_walk(const char * name, struct nameidata *nd)
827{
828 struct path next;
829 struct inode *inode;
830 int err;
831 unsigned int lookup_flags = nd->flags;
832
833 while (*name=='/')
834 name++;
835 if (!*name)
836 goto return_reval;
837
838 inode = nd->dentry->d_inode;
839 if (nd->depth)
f55eab82 840 lookup_flags = LOOKUP_FOLLOW | (nd->flags & LOOKUP_CONTINUE);
1da177e4
LT
841
842 /* At this point we know we have a real path component. */
843 for(;;) {
844 unsigned long hash;
845 struct qstr this;
846 unsigned int c;
847
cdce5d6b 848 nd->flags |= LOOKUP_CONTINUE;
1da177e4 849 err = exec_permission_lite(inode, nd);
e4543edd
CH
850 if (err == -EAGAIN)
851 err = vfs_permission(nd, MAY_EXEC);
1da177e4
LT
852 if (err)
853 break;
854
855 this.name = name;
856 c = *(const unsigned char *)name;
857
858 hash = init_name_hash();
859 do {
860 name++;
861 hash = partial_name_hash(c, hash);
862 c = *(const unsigned char *)name;
863 } while (c && (c != '/'));
864 this.len = name - (const char *) this.name;
865 this.hash = end_name_hash(hash);
866
867 /* remove trailing slashes? */
868 if (!c)
869 goto last_component;
870 while (*++name == '/');
871 if (!*name)
872 goto last_with_slashes;
873
874 /*
875 * "." and ".." are special - ".." especially so because it has
876 * to be able to know about the current root directory and
877 * parent relationships.
878 */
879 if (this.name[0] == '.') switch (this.len) {
880 default:
881 break;
882 case 2:
883 if (this.name[1] != '.')
884 break;
58c465eb 885 follow_dotdot(nd);
1da177e4
LT
886 inode = nd->dentry->d_inode;
887 /* fallthrough */
888 case 1:
889 continue;
890 }
891 /*
892 * See if the low-level filesystem might want
893 * to use its own hash..
894 */
895 if (nd->dentry->d_op && nd->dentry->d_op->d_hash) {
896 err = nd->dentry->d_op->d_hash(nd->dentry, &this);
897 if (err < 0)
898 break;
899 }
1da177e4
LT
900 /* This does the actual lookups.. */
901 err = do_lookup(nd, &this, &next);
902 if (err)
903 break;
1da177e4
LT
904
905 err = -ENOENT;
906 inode = next.dentry->d_inode;
907 if (!inode)
908 goto out_dput;
909 err = -ENOTDIR;
910 if (!inode->i_op)
911 goto out_dput;
912
913 if (inode->i_op->follow_link) {
90ebe565 914 err = do_follow_link(&next, nd);
1da177e4
LT
915 if (err)
916 goto return_err;
917 err = -ENOENT;
918 inode = nd->dentry->d_inode;
919 if (!inode)
920 break;
921 err = -ENOTDIR;
922 if (!inode->i_op)
923 break;
09dd17d3
MS
924 } else
925 path_to_nameidata(&next, nd);
1da177e4
LT
926 err = -ENOTDIR;
927 if (!inode->i_op->lookup)
928 break;
929 continue;
930 /* here ends the main loop */
931
932last_with_slashes:
933 lookup_flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
934last_component:
f55eab82
TM
935 /* Clear LOOKUP_CONTINUE iff it was previously unset */
936 nd->flags &= lookup_flags | ~LOOKUP_CONTINUE;
1da177e4
LT
937 if (lookup_flags & LOOKUP_PARENT)
938 goto lookup_parent;
939 if (this.name[0] == '.') switch (this.len) {
940 default:
941 break;
942 case 2:
943 if (this.name[1] != '.')
944 break;
58c465eb 945 follow_dotdot(nd);
1da177e4
LT
946 inode = nd->dentry->d_inode;
947 /* fallthrough */
948 case 1:
949 goto return_reval;
950 }
951 if (nd->dentry->d_op && nd->dentry->d_op->d_hash) {
952 err = nd->dentry->d_op->d_hash(nd->dentry, &this);
953 if (err < 0)
954 break;
955 }
956 err = do_lookup(nd, &this, &next);
957 if (err)
958 break;
1da177e4
LT
959 inode = next.dentry->d_inode;
960 if ((lookup_flags & LOOKUP_FOLLOW)
961 && inode && inode->i_op && inode->i_op->follow_link) {
90ebe565 962 err = do_follow_link(&next, nd);
1da177e4
LT
963 if (err)
964 goto return_err;
965 inode = nd->dentry->d_inode;
09dd17d3
MS
966 } else
967 path_to_nameidata(&next, nd);
1da177e4
LT
968 err = -ENOENT;
969 if (!inode)
970 break;
971 if (lookup_flags & LOOKUP_DIRECTORY) {
972 err = -ENOTDIR;
973 if (!inode->i_op || !inode->i_op->lookup)
974 break;
975 }
976 goto return_base;
977lookup_parent:
978 nd->last = this;
979 nd->last_type = LAST_NORM;
980 if (this.name[0] != '.')
981 goto return_base;
982 if (this.len == 1)
983 nd->last_type = LAST_DOT;
984 else if (this.len == 2 && this.name[1] == '.')
985 nd->last_type = LAST_DOTDOT;
986 else
987 goto return_base;
988return_reval:
989 /*
990 * We bypassed the ordinary revalidation routines.
991 * We may need to check the cached dentry for staleness.
992 */
993 if (nd->dentry && nd->dentry->d_sb &&
994 (nd->dentry->d_sb->s_type->fs_flags & FS_REVAL_DOT)) {
995 err = -ESTALE;
996 /* Note: we do not d_invalidate() */
997 if (!nd->dentry->d_op->d_revalidate(nd->dentry, nd))
998 break;
999 }
1000return_base:
1001 return 0;
1002out_dput:
09dd17d3 1003 dput_path(&next, nd);
1da177e4
LT
1004 break;
1005 }
1006 path_release(nd);
1007return_err:
1008 return err;
1009}
1010
1011/*
1012 * Wrapper to retry pathname resolution whenever the underlying
1013 * file system returns an ESTALE.
1014 *
1015 * Retry the whole path once, forcing real lookup requests
1016 * instead of relying on the dcache.
1017 */
c4a7808f 1018static int fastcall link_path_walk(const char *name, struct nameidata *nd)
1da177e4
LT
1019{
1020 struct nameidata save = *nd;
1021 int result;
1022
1023 /* make sure the stuff we saved doesn't go away */
1024 dget(save.dentry);
1025 mntget(save.mnt);
1026
1027 result = __link_path_walk(name, nd);
1028 if (result == -ESTALE) {
1029 *nd = save;
1030 dget(nd->dentry);
1031 mntget(nd->mnt);
1032 nd->flags |= LOOKUP_REVAL;
1033 result = __link_path_walk(name, nd);
1034 }
1035
1036 dput(save.dentry);
1037 mntput(save.mnt);
1038
1039 return result;
1040}
1041
f79c20f5 1042static int fastcall path_walk(const char * name, struct nameidata *nd)
1da177e4
LT
1043{
1044 current->total_link_count = 0;
1045 return link_path_walk(name, nd);
1046}
1047
ea3834d9
PM
1048/*
1049 * SMP-safe: Returns 1 and nd will have valid dentry and mnt, if
1050 * everything is done. Returns 0 and drops input nd, if lookup failed;
1051 */
1da177e4
LT
1052static int __emul_lookup_dentry(const char *name, struct nameidata *nd)
1053{
1054 if (path_walk(name, nd))
1055 return 0; /* something went wrong... */
1056
1057 if (!nd->dentry->d_inode || S_ISDIR(nd->dentry->d_inode->i_mode)) {
1058 struct dentry *old_dentry = nd->dentry;
1059 struct vfsmount *old_mnt = nd->mnt;
1060 struct qstr last = nd->last;
1061 int last_type = nd->last_type;
e518ddb7
AM
1062 struct fs_struct *fs = current->fs;
1063
1da177e4 1064 /*
e518ddb7
AM
1065 * NAME was not found in alternate root or it's a directory.
1066 * Try to find it in the normal root:
1da177e4
LT
1067 */
1068 nd->last_type = LAST_ROOT;
e518ddb7
AM
1069 read_lock(&fs->lock);
1070 nd->mnt = mntget(fs->rootmnt);
1071 nd->dentry = dget(fs->root);
1072 read_unlock(&fs->lock);
1da177e4
LT
1073 if (path_walk(name, nd) == 0) {
1074 if (nd->dentry->d_inode) {
1075 dput(old_dentry);
1076 mntput(old_mnt);
1077 return 1;
1078 }
1079 path_release(nd);
1080 }
1081 nd->dentry = old_dentry;
1082 nd->mnt = old_mnt;
1083 nd->last = last;
1084 nd->last_type = last_type;
1085 }
1086 return 1;
1087}
1088
1089void set_fs_altroot(void)
1090{
1091 char *emul = __emul_prefix();
1092 struct nameidata nd;
1093 struct vfsmount *mnt = NULL, *oldmnt;
1094 struct dentry *dentry = NULL, *olddentry;
1095 int err;
e518ddb7 1096 struct fs_struct *fs = current->fs;
1da177e4
LT
1097
1098 if (!emul)
1099 goto set_it;
1100 err = path_lookup(emul, LOOKUP_FOLLOW|LOOKUP_DIRECTORY|LOOKUP_NOALT, &nd);
1101 if (!err) {
1102 mnt = nd.mnt;
1103 dentry = nd.dentry;
1104 }
1105set_it:
e518ddb7
AM
1106 write_lock(&fs->lock);
1107 oldmnt = fs->altrootmnt;
1108 olddentry = fs->altroot;
1109 fs->altrootmnt = mnt;
1110 fs->altroot = dentry;
1111 write_unlock(&fs->lock);
1da177e4
LT
1112 if (olddentry) {
1113 dput(olddentry);
1114 mntput(oldmnt);
1115 }
1116}
1117
ea3834d9 1118/* Returns 0 and nd will be valid on success; Retuns error, otherwise. */
5590ff0d
UD
1119static int fastcall do_path_lookup(int dfd, const char *name,
1120 unsigned int flags, struct nameidata *nd)
1da177e4 1121{
ea3834d9 1122 int retval = 0;
170aa3d0
UD
1123 int fput_needed;
1124 struct file *file;
e518ddb7 1125 struct fs_struct *fs = current->fs;
1da177e4
LT
1126
1127 nd->last_type = LAST_ROOT; /* if there are only slashes... */
1128 nd->flags = flags;
1129 nd->depth = 0;
1130
1da177e4 1131 if (*name=='/') {
e518ddb7
AM
1132 read_lock(&fs->lock);
1133 if (fs->altroot && !(nd->flags & LOOKUP_NOALT)) {
1134 nd->mnt = mntget(fs->altrootmnt);
1135 nd->dentry = dget(fs->altroot);
1136 read_unlock(&fs->lock);
1da177e4 1137 if (__emul_lookup_dentry(name,nd))
ea3834d9 1138 goto out; /* found in altroot */
e518ddb7 1139 read_lock(&fs->lock);
1da177e4 1140 }
e518ddb7
AM
1141 nd->mnt = mntget(fs->rootmnt);
1142 nd->dentry = dget(fs->root);
1143 read_unlock(&fs->lock);
5590ff0d 1144 } else if (dfd == AT_FDCWD) {
e518ddb7
AM
1145 read_lock(&fs->lock);
1146 nd->mnt = mntget(fs->pwdmnt);
1147 nd->dentry = dget(fs->pwd);
1148 read_unlock(&fs->lock);
5590ff0d 1149 } else {
5590ff0d
UD
1150 struct dentry *dentry;
1151
1152 file = fget_light(dfd, &fput_needed);
170aa3d0
UD
1153 retval = -EBADF;
1154 if (!file)
6d09bb62 1155 goto out_fail;
5590ff0d 1156
0f7fc9e4 1157 dentry = file->f_path.dentry;
5590ff0d 1158
170aa3d0
UD
1159 retval = -ENOTDIR;
1160 if (!S_ISDIR(dentry->d_inode->i_mode))
6d09bb62 1161 goto fput_fail;
5590ff0d
UD
1162
1163 retval = file_permission(file, MAY_EXEC);
170aa3d0 1164 if (retval)
6d09bb62 1165 goto fput_fail;
5590ff0d 1166
0f7fc9e4 1167 nd->mnt = mntget(file->f_path.mnt);
5590ff0d
UD
1168 nd->dentry = dget(dentry);
1169
1170 fput_light(file, fput_needed);
1da177e4 1171 }
2dfdd266
JJS
1172
1173 retval = path_walk(name, nd);
ea3834d9 1174out:
62ce39c5 1175 if (unlikely(!retval && !audit_dummy_context() && nd->dentry &&
3bc8414b 1176 nd->dentry->d_inode))
5a190ae6 1177 audit_inode(name, nd->dentry);
6d09bb62 1178out_fail:
170aa3d0
UD
1179 return retval;
1180
6d09bb62 1181fput_fail:
170aa3d0 1182 fput_light(file, fput_needed);
6d09bb62 1183 goto out_fail;
1da177e4
LT
1184}
1185
5590ff0d
UD
1186int fastcall path_lookup(const char *name, unsigned int flags,
1187 struct nameidata *nd)
1188{
1189 return do_path_lookup(AT_FDCWD, name, flags, nd);
1190}
1191
16f18200
JJS
1192/**
1193 * vfs_path_lookup - lookup a file path relative to a dentry-vfsmount pair
1194 * @dentry: pointer to dentry of the base directory
1195 * @mnt: pointer to vfs mount of the base directory
1196 * @name: pointer to file name
1197 * @flags: lookup flags
1198 * @nd: pointer to nameidata
1199 */
1200int vfs_path_lookup(struct dentry *dentry, struct vfsmount *mnt,
1201 const char *name, unsigned int flags,
1202 struct nameidata *nd)
1203{
1204 int retval;
1205
1206 /* same as do_path_lookup */
1207 nd->last_type = LAST_ROOT;
1208 nd->flags = flags;
1209 nd->depth = 0;
1210
1211 nd->mnt = mntget(mnt);
1212 nd->dentry = dget(dentry);
1213
1214 retval = path_walk(name, nd);
1215 if (unlikely(!retval && !audit_dummy_context() && nd->dentry &&
1216 nd->dentry->d_inode))
5a190ae6 1217 audit_inode(name, nd->dentry);
16f18200
JJS
1218
1219 return retval;
1220
1221}
1222
5590ff0d
UD
1223static int __path_lookup_intent_open(int dfd, const char *name,
1224 unsigned int lookup_flags, struct nameidata *nd,
1225 int open_flags, int create_mode)
834f2a4a
TM
1226{
1227 struct file *filp = get_empty_filp();
1228 int err;
1229
1230 if (filp == NULL)
1231 return -ENFILE;
1232 nd->intent.open.file = filp;
1233 nd->intent.open.flags = open_flags;
1234 nd->intent.open.create_mode = create_mode;
5590ff0d 1235 err = do_path_lookup(dfd, name, lookup_flags|LOOKUP_OPEN, nd);
834f2a4a
TM
1236 if (IS_ERR(nd->intent.open.file)) {
1237 if (err == 0) {
1238 err = PTR_ERR(nd->intent.open.file);
1239 path_release(nd);
1240 }
1241 } else if (err != 0)
1242 release_open_intent(nd);
1243 return err;
1244}
1245
1246/**
1247 * path_lookup_open - lookup a file path with open intent
7045f37b 1248 * @dfd: the directory to use as base, or AT_FDCWD
834f2a4a
TM
1249 * @name: pointer to file name
1250 * @lookup_flags: lookup intent flags
1251 * @nd: pointer to nameidata
1252 * @open_flags: open intent flags
1253 */
5590ff0d 1254int path_lookup_open(int dfd, const char *name, unsigned int lookup_flags,
834f2a4a
TM
1255 struct nameidata *nd, int open_flags)
1256{
5590ff0d 1257 return __path_lookup_intent_open(dfd, name, lookup_flags, nd,
834f2a4a
TM
1258 open_flags, 0);
1259}
1260
1261/**
1262 * path_lookup_create - lookup a file path with open + create intent
7045f37b 1263 * @dfd: the directory to use as base, or AT_FDCWD
834f2a4a
TM
1264 * @name: pointer to file name
1265 * @lookup_flags: lookup intent flags
1266 * @nd: pointer to nameidata
1267 * @open_flags: open intent flags
1268 * @create_mode: create intent flags
1269 */
5590ff0d
UD
1270static int path_lookup_create(int dfd, const char *name,
1271 unsigned int lookup_flags, struct nameidata *nd,
1272 int open_flags, int create_mode)
834f2a4a 1273{
5590ff0d
UD
1274 return __path_lookup_intent_open(dfd, name, lookup_flags|LOOKUP_CREATE,
1275 nd, open_flags, create_mode);
834f2a4a
TM
1276}
1277
1278int __user_path_lookup_open(const char __user *name, unsigned int lookup_flags,
1279 struct nameidata *nd, int open_flags)
1280{
1281 char *tmp = getname(name);
1282 int err = PTR_ERR(tmp);
1283
1284 if (!IS_ERR(tmp)) {
5590ff0d 1285 err = __path_lookup_intent_open(AT_FDCWD, tmp, lookup_flags, nd, open_flags, 0);
834f2a4a
TM
1286 putname(tmp);
1287 }
1288 return err;
1289}
1290
eead1911
CH
1291static struct dentry *__lookup_hash(struct qstr *name,
1292 struct dentry *base, struct nameidata *nd)
1da177e4 1293{
057f6c01 1294 struct dentry *dentry;
1da177e4
LT
1295 struct inode *inode;
1296 int err;
1297
1298 inode = base->d_inode;
1da177e4
LT
1299
1300 /*
1301 * See if the low-level filesystem might want
1302 * to use its own hash..
1303 */
1304 if (base->d_op && base->d_op->d_hash) {
1305 err = base->d_op->d_hash(base, name);
1306 dentry = ERR_PTR(err);
1307 if (err < 0)
1308 goto out;
1309 }
1310
1311 dentry = cached_lookup(base, name, nd);
1312 if (!dentry) {
1313 struct dentry *new = d_alloc(base, name);
1314 dentry = ERR_PTR(-ENOMEM);
1315 if (!new)
1316 goto out;
1317 dentry = inode->i_op->lookup(inode, new, nd);
1318 if (!dentry)
1319 dentry = new;
1320 else
1321 dput(new);
1322 }
1323out:
1324 return dentry;
1325}
1326
057f6c01
JM
1327/*
1328 * Restricted form of lookup. Doesn't follow links, single-component only,
1329 * needs parent already locked. Doesn't follow mounts.
1330 * SMP-safe.
1331 */
eead1911 1332static struct dentry *lookup_hash(struct nameidata *nd)
057f6c01 1333{
057f6c01
JM
1334 int err;
1335
eead1911 1336 err = permission(nd->dentry->d_inode, MAY_EXEC, nd);
057f6c01 1337 if (err)
eead1911 1338 return ERR_PTR(err);
49705b77 1339 return __lookup_hash(&nd->last, nd->dentry, nd);
1da177e4
LT
1340}
1341
eead1911
CH
1342static int __lookup_one_len(const char *name, struct qstr *this,
1343 struct dentry *base, int len)
1da177e4
LT
1344{
1345 unsigned long hash;
1da177e4
LT
1346 unsigned int c;
1347
057f6c01
JM
1348 this->name = name;
1349 this->len = len;
1da177e4 1350 if (!len)
057f6c01 1351 return -EACCES;
1da177e4
LT
1352
1353 hash = init_name_hash();
1354 while (len--) {
1355 c = *(const unsigned char *)name++;
1356 if (c == '/' || c == '\0')
057f6c01 1357 return -EACCES;
1da177e4
LT
1358 hash = partial_name_hash(c, hash);
1359 }
057f6c01
JM
1360 this->hash = end_name_hash(hash);
1361 return 0;
1362}
1da177e4 1363
eead1911
CH
1364/**
1365 * lookup_one_len: filesystem helper to lookup single pathname component
1366 * @name: pathname component to lookup
1367 * @base: base directory to lookup from
1368 * @len: maximum length @len should be interpreted to
1369 *
1370 * Note that this routine is purely a helper for filesystem useage and should
1371 * not be called by generic code. Also note that by using this function to
1372 * nameidata argument is passed to the filesystem methods and a filesystem
1373 * using this helper needs to be prepared for that.
1374 */
057f6c01
JM
1375struct dentry *lookup_one_len(const char *name, struct dentry *base, int len)
1376{
1377 int err;
1378 struct qstr this;
1379
1380 err = __lookup_one_len(name, &this, base, len);
eead1911
CH
1381 if (err)
1382 return ERR_PTR(err);
1383
1384 err = permission(base->d_inode, MAY_EXEC, NULL);
057f6c01
JM
1385 if (err)
1386 return ERR_PTR(err);
49705b77 1387 return __lookup_hash(&this, base, NULL);
057f6c01
JM
1388}
1389
eead1911
CH
1390/**
1391 * lookup_one_noperm - bad hack for sysfs
1392 * @name: pathname component to lookup
1393 * @base: base directory to lookup from
1394 *
1395 * This is a variant of lookup_one_len that doesn't perform any permission
1396 * checks. It's a horrible hack to work around the braindead sysfs
1397 * architecture and should not be used anywhere else.
1398 *
1399 * DON'T USE THIS FUNCTION EVER, thanks.
1400 */
1401struct dentry *lookup_one_noperm(const char *name, struct dentry *base)
057f6c01
JM
1402{
1403 int err;
1404 struct qstr this;
1405
eead1911 1406 err = __lookup_one_len(name, &this, base, strlen(name));
057f6c01
JM
1407 if (err)
1408 return ERR_PTR(err);
eead1911 1409 return __lookup_hash(&this, base, NULL);
1da177e4
LT
1410}
1411
5590ff0d
UD
1412int fastcall __user_walk_fd(int dfd, const char __user *name, unsigned flags,
1413 struct nameidata *nd)
1da177e4
LT
1414{
1415 char *tmp = getname(name);
1416 int err = PTR_ERR(tmp);
1417
1418 if (!IS_ERR(tmp)) {
5590ff0d 1419 err = do_path_lookup(dfd, tmp, flags, nd);
1da177e4
LT
1420 putname(tmp);
1421 }
1422 return err;
1423}
1424
5590ff0d
UD
1425int fastcall __user_walk(const char __user *name, unsigned flags, struct nameidata *nd)
1426{
1427 return __user_walk_fd(AT_FDCWD, name, flags, nd);
1428}
1429
1da177e4
LT
1430/*
1431 * It's inline, so penalty for filesystems that don't use sticky bit is
1432 * minimal.
1433 */
1434static inline int check_sticky(struct inode *dir, struct inode *inode)
1435{
1436 if (!(dir->i_mode & S_ISVTX))
1437 return 0;
1438 if (inode->i_uid == current->fsuid)
1439 return 0;
1440 if (dir->i_uid == current->fsuid)
1441 return 0;
1442 return !capable(CAP_FOWNER);
1443}
1444
1445/*
1446 * Check whether we can remove a link victim from directory dir, check
1447 * whether the type of victim is right.
1448 * 1. We can't do it if dir is read-only (done in permission())
1449 * 2. We should have write and exec permissions on dir
1450 * 3. We can't remove anything from append-only dir
1451 * 4. We can't do anything with immutable dir (done in permission())
1452 * 5. If the sticky bit on dir is set we should either
1453 * a. be owner of dir, or
1454 * b. be owner of victim, or
1455 * c. have CAP_FOWNER capability
1456 * 6. If the victim is append-only or immutable we can't do antyhing with
1457 * links pointing to it.
1458 * 7. If we were asked to remove a directory and victim isn't one - ENOTDIR.
1459 * 8. If we were asked to remove a non-directory and victim isn't one - EISDIR.
1460 * 9. We can't remove a root or mountpoint.
1461 * 10. We don't allow removal of NFS sillyrenamed files; it's handled by
1462 * nfs_async_unlink().
1463 */
858119e1 1464static int may_delete(struct inode *dir,struct dentry *victim,int isdir)
1da177e4
LT
1465{
1466 int error;
1467
1468 if (!victim->d_inode)
1469 return -ENOENT;
1470
1471 BUG_ON(victim->d_parent->d_inode != dir);
5a190ae6 1472 audit_inode_child(victim->d_name.name, victim, dir);
1da177e4
LT
1473
1474 error = permission(dir,MAY_WRITE | MAY_EXEC, NULL);
1475 if (error)
1476 return error;
1477 if (IS_APPEND(dir))
1478 return -EPERM;
1479 if (check_sticky(dir, victim->d_inode)||IS_APPEND(victim->d_inode)||
1480 IS_IMMUTABLE(victim->d_inode))
1481 return -EPERM;
1482 if (isdir) {
1483 if (!S_ISDIR(victim->d_inode->i_mode))
1484 return -ENOTDIR;
1485 if (IS_ROOT(victim))
1486 return -EBUSY;
1487 } else if (S_ISDIR(victim->d_inode->i_mode))
1488 return -EISDIR;
1489 if (IS_DEADDIR(dir))
1490 return -ENOENT;
1491 if (victim->d_flags & DCACHE_NFSFS_RENAMED)
1492 return -EBUSY;
1493 return 0;
1494}
1495
1496/* Check whether we can create an object with dentry child in directory
1497 * dir.
1498 * 1. We can't do it if child already exists (open has special treatment for
1499 * this case, but since we are inlined it's OK)
1500 * 2. We can't do it if dir is read-only (done in permission())
1501 * 3. We should have write and exec permissions on dir
1502 * 4. We can't do it if dir is immutable (done in permission())
1503 */
1504static inline int may_create(struct inode *dir, struct dentry *child,
1505 struct nameidata *nd)
1506{
1507 if (child->d_inode)
1508 return -EEXIST;
1509 if (IS_DEADDIR(dir))
1510 return -ENOENT;
1511 return permission(dir,MAY_WRITE | MAY_EXEC, nd);
1512}
1513
1514/*
1da177e4
LT
1515 * O_DIRECTORY translates into forcing a directory lookup.
1516 */
1517static inline int lookup_flags(unsigned int f)
1518{
1519 unsigned long retval = LOOKUP_FOLLOW;
1520
1521 if (f & O_NOFOLLOW)
1522 retval &= ~LOOKUP_FOLLOW;
1523
1da177e4
LT
1524 if (f & O_DIRECTORY)
1525 retval |= LOOKUP_DIRECTORY;
1526
1527 return retval;
1528}
1529
1530/*
1531 * p1 and p2 should be directories on the same fs.
1532 */
1533struct dentry *lock_rename(struct dentry *p1, struct dentry *p2)
1534{
1535 struct dentry *p;
1536
1537 if (p1 == p2) {
f2eace23 1538 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
1da177e4
LT
1539 return NULL;
1540 }
1541
a11f3a05 1542 mutex_lock(&p1->d_inode->i_sb->s_vfs_rename_mutex);
1da177e4
LT
1543
1544 for (p = p1; p->d_parent != p; p = p->d_parent) {
1545 if (p->d_parent == p2) {
f2eace23
IM
1546 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_PARENT);
1547 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_CHILD);
1da177e4
LT
1548 return p;
1549 }
1550 }
1551
1552 for (p = p2; p->d_parent != p; p = p->d_parent) {
1553 if (p->d_parent == p1) {
f2eace23
IM
1554 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
1555 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_CHILD);
1da177e4
LT
1556 return p;
1557 }
1558 }
1559
f2eace23
IM
1560 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
1561 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_CHILD);
1da177e4
LT
1562 return NULL;
1563}
1564
1565void unlock_rename(struct dentry *p1, struct dentry *p2)
1566{
1b1dcc1b 1567 mutex_unlock(&p1->d_inode->i_mutex);
1da177e4 1568 if (p1 != p2) {
1b1dcc1b 1569 mutex_unlock(&p2->d_inode->i_mutex);
a11f3a05 1570 mutex_unlock(&p1->d_inode->i_sb->s_vfs_rename_mutex);
1da177e4
LT
1571 }
1572}
1573
1574int vfs_create(struct inode *dir, struct dentry *dentry, int mode,
1575 struct nameidata *nd)
1576{
1577 int error = may_create(dir, dentry, nd);
1578
1579 if (error)
1580 return error;
1581
1582 if (!dir->i_op || !dir->i_op->create)
1583 return -EACCES; /* shouldn't it be ENOSYS? */
1584 mode &= S_IALLUGO;
1585 mode |= S_IFREG;
1586 error = security_inode_create(dir, dentry, mode);
1587 if (error)
1588 return error;
1589 DQUOT_INIT(dir);
1590 error = dir->i_op->create(dir, dentry, mode, nd);
a74574aa 1591 if (!error)
f38aa942 1592 fsnotify_create(dir, dentry);
1da177e4
LT
1593 return error;
1594}
1595
1596int may_open(struct nameidata *nd, int acc_mode, int flag)
1597{
1598 struct dentry *dentry = nd->dentry;
1599 struct inode *inode = dentry->d_inode;
1600 int error;
1601
1602 if (!inode)
1603 return -ENOENT;
1604
1605 if (S_ISLNK(inode->i_mode))
1606 return -ELOOP;
1607
974a9f0b 1608 if (S_ISDIR(inode->i_mode) && (acc_mode & MAY_WRITE))
1da177e4
LT
1609 return -EISDIR;
1610
1da177e4
LT
1611 /*
1612 * FIFO's, sockets and device files are special: they don't
1613 * actually live on the filesystem itself, and as such you
1614 * can write to them even if the filesystem is read-only.
1615 */
1616 if (S_ISFIFO(inode->i_mode) || S_ISSOCK(inode->i_mode)) {
1617 flag &= ~O_TRUNC;
1618 } else if (S_ISBLK(inode->i_mode) || S_ISCHR(inode->i_mode)) {
1619 if (nd->mnt->mnt_flags & MNT_NODEV)
1620 return -EACCES;
1621
1622 flag &= ~O_TRUNC;
974a9f0b 1623 } else if (IS_RDONLY(inode) && (acc_mode & MAY_WRITE))
1da177e4 1624 return -EROFS;
b41572e9
DH
1625
1626 error = vfs_permission(nd, acc_mode);
1627 if (error)
1628 return error;
1da177e4
LT
1629 /*
1630 * An append-only file must be opened in append mode for writing.
1631 */
1632 if (IS_APPEND(inode)) {
1633 if ((flag & FMODE_WRITE) && !(flag & O_APPEND))
1634 return -EPERM;
1635 if (flag & O_TRUNC)
1636 return -EPERM;
1637 }
1638
1639 /* O_NOATIME can only be set by the owner or superuser */
1640 if (flag & O_NOATIME)
3bd858ab 1641 if (!is_owner_or_cap(inode))
1da177e4
LT
1642 return -EPERM;
1643
1644 /*
1645 * Ensure there are no outstanding leases on the file.
1646 */
1647 error = break_lease(inode, flag);
1648 if (error)
1649 return error;
1650
1651 if (flag & O_TRUNC) {
1652 error = get_write_access(inode);
1653 if (error)
1654 return error;
1655
1656 /*
1657 * Refuse to truncate files with mandatory locks held on them.
1658 */
1659 error = locks_verify_locked(inode);
1660 if (!error) {
1661 DQUOT_INIT(inode);
d139d7ff
MS
1662
1663 error = do_truncate(dentry, 0,
1664 ATTR_MTIME|ATTR_CTIME|ATTR_OPEN,
1665 NULL);
1da177e4
LT
1666 }
1667 put_write_access(inode);
1668 if (error)
1669 return error;
1670 } else
1671 if (flag & FMODE_WRITE)
1672 DQUOT_INIT(inode);
1673
1674 return 0;
1675}
1676
aab520e2
DH
1677static int open_namei_create(struct nameidata *nd, struct path *path,
1678 int flag, int mode)
1679{
1680 int error;
1681 struct dentry *dir = nd->dentry;
1682
1683 if (!IS_POSIXACL(dir->d_inode))
1684 mode &= ~current->fs->umask;
1685 error = vfs_create(dir->d_inode, path->dentry, mode, nd);
1686 mutex_unlock(&dir->d_inode->i_mutex);
1687 dput(nd->dentry);
1688 nd->dentry = path->dentry;
1689 if (error)
1690 return error;
1691 /* Don't check for write permission, don't truncate */
1692 return may_open(nd, 0, flag & ~O_TRUNC);
1693}
1694
1da177e4
LT
1695/*
1696 * open_namei()
1697 *
1698 * namei for open - this is in fact almost the whole open-routine.
1699 *
1700 * Note that the low bits of "flag" aren't the same as in the open
1701 * system call - they are 00 - no permissions needed
1702 * 01 - read permission needed
1703 * 10 - write permission needed
1704 * 11 - read/write permissions needed
1705 * which is a lot more logical, and also allows the "no perm" needed
1706 * for symlinks (where the permissions are checked later).
1707 * SMP-safe
1708 */
5590ff0d
UD
1709int open_namei(int dfd, const char *pathname, int flag,
1710 int mode, struct nameidata *nd)
1da177e4 1711{
834f2a4a 1712 int acc_mode, error;
4e7506e4 1713 struct path path;
1da177e4
LT
1714 struct dentry *dir;
1715 int count = 0;
1716
1717 acc_mode = ACC_MODE(flag);
1718
834f2a4a
TM
1719 /* O_TRUNC implies we need access checks for write permissions */
1720 if (flag & O_TRUNC)
1721 acc_mode |= MAY_WRITE;
1722
1da177e4
LT
1723 /* Allow the LSM permission hook to distinguish append
1724 access from general write access. */
1725 if (flag & O_APPEND)
1726 acc_mode |= MAY_APPEND;
1727
1da177e4
LT
1728 /*
1729 * The simplest case - just a plain lookup.
1730 */
1731 if (!(flag & O_CREAT)) {
5590ff0d
UD
1732 error = path_lookup_open(dfd, pathname, lookup_flags(flag),
1733 nd, flag);
1da177e4
LT
1734 if (error)
1735 return error;
1736 goto ok;
1737 }
1738
1739 /*
1740 * Create - we need to know the parent.
1741 */
5590ff0d 1742 error = path_lookup_create(dfd,pathname,LOOKUP_PARENT,nd,flag,mode);
1da177e4
LT
1743 if (error)
1744 return error;
1745
1746 /*
1747 * We have the parent and last component. First of all, check
1748 * that we are not asked to creat(2) an obvious directory - that
1749 * will not do.
1750 */
1751 error = -EISDIR;
1752 if (nd->last_type != LAST_NORM || nd->last.name[nd->last.len])
1753 goto exit;
1754
1755 dir = nd->dentry;
1756 nd->flags &= ~LOOKUP_PARENT;
1b1dcc1b 1757 mutex_lock(&dir->d_inode->i_mutex);
49705b77 1758 path.dentry = lookup_hash(nd);
d73ffe16 1759 path.mnt = nd->mnt;
1da177e4
LT
1760
1761do_last:
4e7506e4
AV
1762 error = PTR_ERR(path.dentry);
1763 if (IS_ERR(path.dentry)) {
1b1dcc1b 1764 mutex_unlock(&dir->d_inode->i_mutex);
1da177e4
LT
1765 goto exit;
1766 }
1767
4af4c52f
OD
1768 if (IS_ERR(nd->intent.open.file)) {
1769 mutex_unlock(&dir->d_inode->i_mutex);
1770 error = PTR_ERR(nd->intent.open.file);
1771 goto exit_dput;
1772 }
1773
1da177e4 1774 /* Negative dentry, just create the file */
4e7506e4 1775 if (!path.dentry->d_inode) {
aab520e2 1776 error = open_namei_create(nd, &path, flag, mode);
1da177e4
LT
1777 if (error)
1778 goto exit;
aab520e2 1779 return 0;
1da177e4
LT
1780 }
1781
1782 /*
1783 * It already exists.
1784 */
1b1dcc1b 1785 mutex_unlock(&dir->d_inode->i_mutex);
5a190ae6 1786 audit_inode(pathname, path.dentry);
1da177e4
LT
1787
1788 error = -EEXIST;
1789 if (flag & O_EXCL)
1790 goto exit_dput;
1791
e13b210f 1792 if (__follow_mount(&path)) {
1da177e4 1793 error = -ELOOP;
ba7a4c1a
AV
1794 if (flag & O_NOFOLLOW)
1795 goto exit_dput;
1da177e4 1796 }
3e2efce0 1797
1da177e4 1798 error = -ENOENT;
4e7506e4 1799 if (!path.dentry->d_inode)
1da177e4 1800 goto exit_dput;
4e7506e4 1801 if (path.dentry->d_inode->i_op && path.dentry->d_inode->i_op->follow_link)
1da177e4
LT
1802 goto do_link;
1803
09dd17d3 1804 path_to_nameidata(&path, nd);
1da177e4 1805 error = -EISDIR;
4e7506e4 1806 if (path.dentry->d_inode && S_ISDIR(path.dentry->d_inode->i_mode))
1da177e4
LT
1807 goto exit;
1808ok:
1809 error = may_open(nd, acc_mode, flag);
1810 if (error)
1811 goto exit;
1812 return 0;
1813
1814exit_dput:
09dd17d3 1815 dput_path(&path, nd);
1da177e4 1816exit:
834f2a4a
TM
1817 if (!IS_ERR(nd->intent.open.file))
1818 release_open_intent(nd);
1da177e4
LT
1819 path_release(nd);
1820 return error;
1821
1822do_link:
1823 error = -ELOOP;
1824 if (flag & O_NOFOLLOW)
1825 goto exit_dput;
1826 /*
1827 * This is subtle. Instead of calling do_follow_link() we do the
1828 * thing by hands. The reason is that this way we have zero link_count
1829 * and path_walk() (called from ->follow_link) honoring LOOKUP_PARENT.
1830 * After that we have the parent and last component, i.e.
1831 * we are in the same situation as after the first path_walk().
1832 * Well, almost - if the last component is normal we get its copy
1833 * stored in nd->last.name and we will have to putname() it when we
1834 * are done. Procfs-like symlinks just set LAST_BIND.
1835 */
1836 nd->flags |= LOOKUP_PARENT;
4e7506e4 1837 error = security_inode_follow_link(path.dentry, nd);
1da177e4
LT
1838 if (error)
1839 goto exit_dput;
cd4e91d3 1840 error = __do_follow_link(&path, nd);
de459215
KK
1841 if (error) {
1842 /* Does someone understand code flow here? Or it is only
1843 * me so stupid? Anathema to whoever designed this non-sense
1844 * with "intent.open".
1845 */
1846 release_open_intent(nd);
1da177e4 1847 return error;
de459215 1848 }
1da177e4 1849 nd->flags &= ~LOOKUP_PARENT;
d671d5e5 1850 if (nd->last_type == LAST_BIND)
1da177e4 1851 goto ok;
1da177e4
LT
1852 error = -EISDIR;
1853 if (nd->last_type != LAST_NORM)
1854 goto exit;
1855 if (nd->last.name[nd->last.len]) {
82984114 1856 __putname(nd->last.name);
1da177e4
LT
1857 goto exit;
1858 }
1859 error = -ELOOP;
1860 if (count++==32) {
82984114 1861 __putname(nd->last.name);
1da177e4
LT
1862 goto exit;
1863 }
1864 dir = nd->dentry;
1b1dcc1b 1865 mutex_lock(&dir->d_inode->i_mutex);
49705b77 1866 path.dentry = lookup_hash(nd);
d671d5e5 1867 path.mnt = nd->mnt;
82984114 1868 __putname(nd->last.name);
1da177e4
LT
1869 goto do_last;
1870}
1871
1872/**
1873 * lookup_create - lookup a dentry, creating it if it doesn't exist
1874 * @nd: nameidata info
1875 * @is_dir: directory flag
1876 *
1877 * Simple function to lookup and return a dentry and create it
1878 * if it doesn't exist. Is SMP-safe.
c663e5d8 1879 *
1b1dcc1b 1880 * Returns with nd->dentry->d_inode->i_mutex locked.
1da177e4
LT
1881 */
1882struct dentry *lookup_create(struct nameidata *nd, int is_dir)
1883{
c663e5d8 1884 struct dentry *dentry = ERR_PTR(-EEXIST);
1da177e4 1885
f2eace23 1886 mutex_lock_nested(&nd->dentry->d_inode->i_mutex, I_MUTEX_PARENT);
c663e5d8
CH
1887 /*
1888 * Yucky last component or no last component at all?
1889 * (foo/., foo/.., /////)
1890 */
1da177e4
LT
1891 if (nd->last_type != LAST_NORM)
1892 goto fail;
1893 nd->flags &= ~LOOKUP_PARENT;
a634904a
AM
1894 nd->flags |= LOOKUP_CREATE;
1895 nd->intent.open.flags = O_EXCL;
c663e5d8
CH
1896
1897 /*
1898 * Do the final lookup.
1899 */
49705b77 1900 dentry = lookup_hash(nd);
1da177e4
LT
1901 if (IS_ERR(dentry))
1902 goto fail;
c663e5d8
CH
1903
1904 /*
1905 * Special case - lookup gave negative, but... we had foo/bar/
1906 * From the vfs_mknod() POV we just have a negative dentry -
1907 * all is fine. Let's be bastards - you had / on the end, you've
1908 * been asking for (non-existent) directory. -ENOENT for you.
1909 */
1da177e4
LT
1910 if (!is_dir && nd->last.name[nd->last.len] && !dentry->d_inode)
1911 goto enoent;
1912 return dentry;
1913enoent:
1914 dput(dentry);
1915 dentry = ERR_PTR(-ENOENT);
1916fail:
1917 return dentry;
1918}
f81a0bff 1919EXPORT_SYMBOL_GPL(lookup_create);
1da177e4
LT
1920
1921int vfs_mknod(struct inode *dir, struct dentry *dentry, int mode, dev_t dev)
1922{
1923 int error = may_create(dir, dentry, NULL);
1924
1925 if (error)
1926 return error;
1927
1928 if ((S_ISCHR(mode) || S_ISBLK(mode)) && !capable(CAP_MKNOD))
1929 return -EPERM;
1930
1931 if (!dir->i_op || !dir->i_op->mknod)
1932 return -EPERM;
1933
1934 error = security_inode_mknod(dir, dentry, mode, dev);
1935 if (error)
1936 return error;
1937
1938 DQUOT_INIT(dir);
1939 error = dir->i_op->mknod(dir, dentry, mode, dev);
a74574aa 1940 if (!error)
f38aa942 1941 fsnotify_create(dir, dentry);
1da177e4
LT
1942 return error;
1943}
1944
5590ff0d
UD
1945asmlinkage long sys_mknodat(int dfd, const char __user *filename, int mode,
1946 unsigned dev)
1da177e4
LT
1947{
1948 int error = 0;
1949 char * tmp;
1950 struct dentry * dentry;
1951 struct nameidata nd;
1952
1953 if (S_ISDIR(mode))
1954 return -EPERM;
1955 tmp = getname(filename);
1956 if (IS_ERR(tmp))
1957 return PTR_ERR(tmp);
1958
5590ff0d 1959 error = do_path_lookup(dfd, tmp, LOOKUP_PARENT, &nd);
1da177e4
LT
1960 if (error)
1961 goto out;
1962 dentry = lookup_create(&nd, 0);
1963 error = PTR_ERR(dentry);
1964
1965 if (!IS_POSIXACL(nd.dentry->d_inode))
1966 mode &= ~current->fs->umask;
1967 if (!IS_ERR(dentry)) {
1968 switch (mode & S_IFMT) {
1969 case 0: case S_IFREG:
1970 error = vfs_create(nd.dentry->d_inode,dentry,mode,&nd);
1971 break;
1972 case S_IFCHR: case S_IFBLK:
1973 error = vfs_mknod(nd.dentry->d_inode,dentry,mode,
1974 new_decode_dev(dev));
1975 break;
1976 case S_IFIFO: case S_IFSOCK:
1977 error = vfs_mknod(nd.dentry->d_inode,dentry,mode,0);
1978 break;
1979 case S_IFDIR:
1980 error = -EPERM;
1981 break;
1982 default:
1983 error = -EINVAL;
1984 }
1985 dput(dentry);
1986 }
1b1dcc1b 1987 mutex_unlock(&nd.dentry->d_inode->i_mutex);
1da177e4
LT
1988 path_release(&nd);
1989out:
1990 putname(tmp);
1991
1992 return error;
1993}
1994
5590ff0d
UD
1995asmlinkage long sys_mknod(const char __user *filename, int mode, unsigned dev)
1996{
1997 return sys_mknodat(AT_FDCWD, filename, mode, dev);
1998}
1999
1da177e4
LT
2000int vfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
2001{
2002 int error = may_create(dir, dentry, NULL);
2003
2004 if (error)
2005 return error;
2006
2007 if (!dir->i_op || !dir->i_op->mkdir)
2008 return -EPERM;
2009
2010 mode &= (S_IRWXUGO|S_ISVTX);
2011 error = security_inode_mkdir(dir, dentry, mode);
2012 if (error)
2013 return error;
2014
2015 DQUOT_INIT(dir);
2016 error = dir->i_op->mkdir(dir, dentry, mode);
a74574aa 2017 if (!error)
f38aa942 2018 fsnotify_mkdir(dir, dentry);
1da177e4
LT
2019 return error;
2020}
2021
5590ff0d 2022asmlinkage long sys_mkdirat(int dfd, const char __user *pathname, int mode)
1da177e4
LT
2023{
2024 int error = 0;
2025 char * tmp;
6902d925
DH
2026 struct dentry *dentry;
2027 struct nameidata nd;
1da177e4
LT
2028
2029 tmp = getname(pathname);
2030 error = PTR_ERR(tmp);
6902d925
DH
2031 if (IS_ERR(tmp))
2032 goto out_err;
1da177e4 2033
6902d925
DH
2034 error = do_path_lookup(dfd, tmp, LOOKUP_PARENT, &nd);
2035 if (error)
2036 goto out;
2037 dentry = lookup_create(&nd, 1);
2038 error = PTR_ERR(dentry);
2039 if (IS_ERR(dentry))
2040 goto out_unlock;
1da177e4 2041
6902d925
DH
2042 if (!IS_POSIXACL(nd.dentry->d_inode))
2043 mode &= ~current->fs->umask;
2044 error = vfs_mkdir(nd.dentry->d_inode, dentry, mode);
2045 dput(dentry);
2046out_unlock:
2047 mutex_unlock(&nd.dentry->d_inode->i_mutex);
2048 path_release(&nd);
2049out:
2050 putname(tmp);
2051out_err:
1da177e4
LT
2052 return error;
2053}
2054
5590ff0d
UD
2055asmlinkage long sys_mkdir(const char __user *pathname, int mode)
2056{
2057 return sys_mkdirat(AT_FDCWD, pathname, mode);
2058}
2059
1da177e4
LT
2060/*
2061 * We try to drop the dentry early: we should have
2062 * a usage count of 2 if we're the only user of this
2063 * dentry, and if that is true (possibly after pruning
2064 * the dcache), then we drop the dentry now.
2065 *
2066 * A low-level filesystem can, if it choses, legally
2067 * do a
2068 *
2069 * if (!d_unhashed(dentry))
2070 * return -EBUSY;
2071 *
2072 * if it cannot handle the case of removing a directory
2073 * that is still in use by something else..
2074 */
2075void dentry_unhash(struct dentry *dentry)
2076{
2077 dget(dentry);
dc168427 2078 shrink_dcache_parent(dentry);
1da177e4
LT
2079 spin_lock(&dcache_lock);
2080 spin_lock(&dentry->d_lock);
2081 if (atomic_read(&dentry->d_count) == 2)
2082 __d_drop(dentry);
2083 spin_unlock(&dentry->d_lock);
2084 spin_unlock(&dcache_lock);
2085}
2086
2087int vfs_rmdir(struct inode *dir, struct dentry *dentry)
2088{
2089 int error = may_delete(dir, dentry, 1);
2090
2091 if (error)
2092 return error;
2093
2094 if (!dir->i_op || !dir->i_op->rmdir)
2095 return -EPERM;
2096
2097 DQUOT_INIT(dir);
2098
1b1dcc1b 2099 mutex_lock(&dentry->d_inode->i_mutex);
1da177e4
LT
2100 dentry_unhash(dentry);
2101 if (d_mountpoint(dentry))
2102 error = -EBUSY;
2103 else {
2104 error = security_inode_rmdir(dir, dentry);
2105 if (!error) {
2106 error = dir->i_op->rmdir(dir, dentry);
2107 if (!error)
2108 dentry->d_inode->i_flags |= S_DEAD;
2109 }
2110 }
1b1dcc1b 2111 mutex_unlock(&dentry->d_inode->i_mutex);
1da177e4 2112 if (!error) {
1da177e4
LT
2113 d_delete(dentry);
2114 }
2115 dput(dentry);
2116
2117 return error;
2118}
2119
5590ff0d 2120static long do_rmdir(int dfd, const char __user *pathname)
1da177e4
LT
2121{
2122 int error = 0;
2123 char * name;
2124 struct dentry *dentry;
2125 struct nameidata nd;
2126
2127 name = getname(pathname);
2128 if(IS_ERR(name))
2129 return PTR_ERR(name);
2130
5590ff0d 2131 error = do_path_lookup(dfd, name, LOOKUP_PARENT, &nd);
1da177e4
LT
2132 if (error)
2133 goto exit;
2134
2135 switch(nd.last_type) {
2136 case LAST_DOTDOT:
2137 error = -ENOTEMPTY;
2138 goto exit1;
2139 case LAST_DOT:
2140 error = -EINVAL;
2141 goto exit1;
2142 case LAST_ROOT:
2143 error = -EBUSY;
2144 goto exit1;
2145 }
f2eace23 2146 mutex_lock_nested(&nd.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
49705b77 2147 dentry = lookup_hash(&nd);
1da177e4 2148 error = PTR_ERR(dentry);
6902d925
DH
2149 if (IS_ERR(dentry))
2150 goto exit2;
2151 error = vfs_rmdir(nd.dentry->d_inode, dentry);
2152 dput(dentry);
2153exit2:
1b1dcc1b 2154 mutex_unlock(&nd.dentry->d_inode->i_mutex);
1da177e4
LT
2155exit1:
2156 path_release(&nd);
2157exit:
2158 putname(name);
2159 return error;
2160}
2161
5590ff0d
UD
2162asmlinkage long sys_rmdir(const char __user *pathname)
2163{
2164 return do_rmdir(AT_FDCWD, pathname);
2165}
2166
1da177e4
LT
2167int vfs_unlink(struct inode *dir, struct dentry *dentry)
2168{
2169 int error = may_delete(dir, dentry, 0);
2170
2171 if (error)
2172 return error;
2173
2174 if (!dir->i_op || !dir->i_op->unlink)
2175 return -EPERM;
2176
2177 DQUOT_INIT(dir);
2178
1b1dcc1b 2179 mutex_lock(&dentry->d_inode->i_mutex);
1da177e4
LT
2180 if (d_mountpoint(dentry))
2181 error = -EBUSY;
2182 else {
2183 error = security_inode_unlink(dir, dentry);
2184 if (!error)
2185 error = dir->i_op->unlink(dir, dentry);
2186 }
1b1dcc1b 2187 mutex_unlock(&dentry->d_inode->i_mutex);
1da177e4
LT
2188
2189 /* We don't d_delete() NFS sillyrenamed files--they still exist. */
2190 if (!error && !(dentry->d_flags & DCACHE_NFSFS_RENAMED)) {
e234f35c 2191 d_delete(dentry);
1da177e4 2192 }
0eeca283 2193
1da177e4
LT
2194 return error;
2195}
2196
2197/*
2198 * Make sure that the actual truncation of the file will occur outside its
1b1dcc1b 2199 * directory's i_mutex. Truncate can take a long time if there is a lot of
1da177e4
LT
2200 * writeout happening, and we don't want to prevent access to the directory
2201 * while waiting on the I/O.
2202 */
5590ff0d 2203static long do_unlinkat(int dfd, const char __user *pathname)
1da177e4
LT
2204{
2205 int error = 0;
2206 char * name;
2207 struct dentry *dentry;
2208 struct nameidata nd;
2209 struct inode *inode = NULL;
2210
2211 name = getname(pathname);
2212 if(IS_ERR(name))
2213 return PTR_ERR(name);
2214
5590ff0d 2215 error = do_path_lookup(dfd, name, LOOKUP_PARENT, &nd);
1da177e4
LT
2216 if (error)
2217 goto exit;
2218 error = -EISDIR;
2219 if (nd.last_type != LAST_NORM)
2220 goto exit1;
f2eace23 2221 mutex_lock_nested(&nd.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
49705b77 2222 dentry = lookup_hash(&nd);
1da177e4
LT
2223 error = PTR_ERR(dentry);
2224 if (!IS_ERR(dentry)) {
2225 /* Why not before? Because we want correct error value */
2226 if (nd.last.name[nd.last.len])
2227 goto slashes;
2228 inode = dentry->d_inode;
2229 if (inode)
2230 atomic_inc(&inode->i_count);
2231 error = vfs_unlink(nd.dentry->d_inode, dentry);
2232 exit2:
2233 dput(dentry);
2234 }
1b1dcc1b 2235 mutex_unlock(&nd.dentry->d_inode->i_mutex);
1da177e4
LT
2236 if (inode)
2237 iput(inode); /* truncate the inode here */
2238exit1:
2239 path_release(&nd);
2240exit:
2241 putname(name);
2242 return error;
2243
2244slashes:
2245 error = !dentry->d_inode ? -ENOENT :
2246 S_ISDIR(dentry->d_inode->i_mode) ? -EISDIR : -ENOTDIR;
2247 goto exit2;
2248}
2249
5590ff0d
UD
2250asmlinkage long sys_unlinkat(int dfd, const char __user *pathname, int flag)
2251{
2252 if ((flag & ~AT_REMOVEDIR) != 0)
2253 return -EINVAL;
2254
2255 if (flag & AT_REMOVEDIR)
2256 return do_rmdir(dfd, pathname);
2257
2258 return do_unlinkat(dfd, pathname);
2259}
2260
2261asmlinkage long sys_unlink(const char __user *pathname)
2262{
2263 return do_unlinkat(AT_FDCWD, pathname);
2264}
2265
1da177e4
LT
2266int vfs_symlink(struct inode *dir, struct dentry *dentry, const char *oldname, int mode)
2267{
2268 int error = may_create(dir, dentry, NULL);
2269
2270 if (error)
2271 return error;
2272
2273 if (!dir->i_op || !dir->i_op->symlink)
2274 return -EPERM;
2275
2276 error = security_inode_symlink(dir, dentry, oldname);
2277 if (error)
2278 return error;
2279
2280 DQUOT_INIT(dir);
2281 error = dir->i_op->symlink(dir, dentry, oldname);
a74574aa 2282 if (!error)
f38aa942 2283 fsnotify_create(dir, dentry);
1da177e4
LT
2284 return error;
2285}
2286
5590ff0d
UD
2287asmlinkage long sys_symlinkat(const char __user *oldname,
2288 int newdfd, const char __user *newname)
1da177e4
LT
2289{
2290 int error = 0;
2291 char * from;
2292 char * to;
6902d925
DH
2293 struct dentry *dentry;
2294 struct nameidata nd;
1da177e4
LT
2295
2296 from = getname(oldname);
2297 if(IS_ERR(from))
2298 return PTR_ERR(from);
2299 to = getname(newname);
2300 error = PTR_ERR(to);
6902d925
DH
2301 if (IS_ERR(to))
2302 goto out_putname;
1da177e4 2303
6902d925
DH
2304 error = do_path_lookup(newdfd, to, LOOKUP_PARENT, &nd);
2305 if (error)
2306 goto out;
2307 dentry = lookup_create(&nd, 0);
2308 error = PTR_ERR(dentry);
2309 if (IS_ERR(dentry))
2310 goto out_unlock;
2311
2312 error = vfs_symlink(nd.dentry->d_inode, dentry, from, S_IALLUGO);
2313 dput(dentry);
2314out_unlock:
2315 mutex_unlock(&nd.dentry->d_inode->i_mutex);
2316 path_release(&nd);
1da177e4 2317out:
6902d925
DH
2318 putname(to);
2319out_putname:
1da177e4
LT
2320 putname(from);
2321 return error;
2322}
2323
5590ff0d
UD
2324asmlinkage long sys_symlink(const char __user *oldname, const char __user *newname)
2325{
2326 return sys_symlinkat(oldname, AT_FDCWD, newname);
2327}
2328
1da177e4
LT
2329int vfs_link(struct dentry *old_dentry, struct inode *dir, struct dentry *new_dentry)
2330{
2331 struct inode *inode = old_dentry->d_inode;
2332 int error;
2333
2334 if (!inode)
2335 return -ENOENT;
2336
2337 error = may_create(dir, new_dentry, NULL);
2338 if (error)
2339 return error;
2340
2341 if (dir->i_sb != inode->i_sb)
2342 return -EXDEV;
2343
2344 /*
2345 * A link to an append-only or immutable file cannot be created.
2346 */
2347 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
2348 return -EPERM;
2349 if (!dir->i_op || !dir->i_op->link)
2350 return -EPERM;
2351 if (S_ISDIR(old_dentry->d_inode->i_mode))
2352 return -EPERM;
2353
2354 error = security_inode_link(old_dentry, dir, new_dentry);
2355 if (error)
2356 return error;
2357
1b1dcc1b 2358 mutex_lock(&old_dentry->d_inode->i_mutex);
1da177e4
LT
2359 DQUOT_INIT(dir);
2360 error = dir->i_op->link(old_dentry, dir, new_dentry);
1b1dcc1b 2361 mutex_unlock(&old_dentry->d_inode->i_mutex);
e31e14ec 2362 if (!error)
f38aa942 2363 fsnotify_create(dir, new_dentry);
1da177e4
LT
2364 return error;
2365}
2366
2367/*
2368 * Hardlinks are often used in delicate situations. We avoid
2369 * security-related surprises by not following symlinks on the
2370 * newname. --KAB
2371 *
2372 * We don't follow them on the oldname either to be compatible
2373 * with linux 2.0, and to avoid hard-linking to directories
2374 * and other special files. --ADM
2375 */
5590ff0d 2376asmlinkage long sys_linkat(int olddfd, const char __user *oldname,
c04030e1
UD
2377 int newdfd, const char __user *newname,
2378 int flags)
1da177e4
LT
2379{
2380 struct dentry *new_dentry;
2381 struct nameidata nd, old_nd;
2382 int error;
2383 char * to;
2384
45c9b11a 2385 if ((flags & ~AT_SYMLINK_FOLLOW) != 0)
c04030e1
UD
2386 return -EINVAL;
2387
1da177e4
LT
2388 to = getname(newname);
2389 if (IS_ERR(to))
2390 return PTR_ERR(to);
2391
45c9b11a
UD
2392 error = __user_walk_fd(olddfd, oldname,
2393 flags & AT_SYMLINK_FOLLOW ? LOOKUP_FOLLOW : 0,
2394 &old_nd);
1da177e4
LT
2395 if (error)
2396 goto exit;
5590ff0d 2397 error = do_path_lookup(newdfd, to, LOOKUP_PARENT, &nd);
1da177e4
LT
2398 if (error)
2399 goto out;
2400 error = -EXDEV;
2401 if (old_nd.mnt != nd.mnt)
2402 goto out_release;
2403 new_dentry = lookup_create(&nd, 0);
2404 error = PTR_ERR(new_dentry);
6902d925
DH
2405 if (IS_ERR(new_dentry))
2406 goto out_unlock;
2407 error = vfs_link(old_nd.dentry, nd.dentry->d_inode, new_dentry);
2408 dput(new_dentry);
2409out_unlock:
1b1dcc1b 2410 mutex_unlock(&nd.dentry->d_inode->i_mutex);
1da177e4
LT
2411out_release:
2412 path_release(&nd);
2413out:
2414 path_release(&old_nd);
2415exit:
2416 putname(to);
2417
2418 return error;
2419}
2420
5590ff0d
UD
2421asmlinkage long sys_link(const char __user *oldname, const char __user *newname)
2422{
c04030e1 2423 return sys_linkat(AT_FDCWD, oldname, AT_FDCWD, newname, 0);
5590ff0d
UD
2424}
2425
1da177e4
LT
2426/*
2427 * The worst of all namespace operations - renaming directory. "Perverted"
2428 * doesn't even start to describe it. Somebody in UCB had a heck of a trip...
2429 * Problems:
2430 * a) we can get into loop creation. Check is done in is_subdir().
2431 * b) race potential - two innocent renames can create a loop together.
2432 * That's where 4.4 screws up. Current fix: serialization on
a11f3a05 2433 * sb->s_vfs_rename_mutex. We might be more accurate, but that's another
1da177e4
LT
2434 * story.
2435 * c) we have to lock _three_ objects - parents and victim (if it exists).
1b1dcc1b 2436 * And that - after we got ->i_mutex on parents (until then we don't know
1da177e4
LT
2437 * whether the target exists). Solution: try to be smart with locking
2438 * order for inodes. We rely on the fact that tree topology may change
a11f3a05 2439 * only under ->s_vfs_rename_mutex _and_ that parent of the object we
1da177e4
LT
2440 * move will be locked. Thus we can rank directories by the tree
2441 * (ancestors first) and rank all non-directories after them.
2442 * That works since everybody except rename does "lock parent, lookup,
a11f3a05 2443 * lock child" and rename is under ->s_vfs_rename_mutex.
1da177e4
LT
2444 * HOWEVER, it relies on the assumption that any object with ->lookup()
2445 * has no more than 1 dentry. If "hybrid" objects will ever appear,
2446 * we'd better make sure that there's no link(2) for them.
2447 * d) some filesystems don't support opened-but-unlinked directories,
2448 * either because of layout or because they are not ready to deal with
2449 * all cases correctly. The latter will be fixed (taking this sort of
2450 * stuff into VFS), but the former is not going away. Solution: the same
2451 * trick as in rmdir().
2452 * e) conversion from fhandle to dentry may come in the wrong moment - when
1b1dcc1b 2453 * we are removing the target. Solution: we will have to grab ->i_mutex
1da177e4 2454 * in the fhandle_to_dentry code. [FIXME - current nfsfh.c relies on
1b1dcc1b 2455 * ->i_mutex on parents, which works but leads to some truely excessive
1da177e4
LT
2456 * locking].
2457 */
75c96f85
AB
2458static int vfs_rename_dir(struct inode *old_dir, struct dentry *old_dentry,
2459 struct inode *new_dir, struct dentry *new_dentry)
1da177e4
LT
2460{
2461 int error = 0;
2462 struct inode *target;
2463
2464 /*
2465 * If we are going to change the parent - check write permissions,
2466 * we'll need to flip '..'.
2467 */
2468 if (new_dir != old_dir) {
2469 error = permission(old_dentry->d_inode, MAY_WRITE, NULL);
2470 if (error)
2471 return error;
2472 }
2473
2474 error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry);
2475 if (error)
2476 return error;
2477
2478 target = new_dentry->d_inode;
2479 if (target) {
1b1dcc1b 2480 mutex_lock(&target->i_mutex);
1da177e4
LT
2481 dentry_unhash(new_dentry);
2482 }
2483 if (d_mountpoint(old_dentry)||d_mountpoint(new_dentry))
2484 error = -EBUSY;
2485 else
2486 error = old_dir->i_op->rename(old_dir, old_dentry, new_dir, new_dentry);
2487 if (target) {
2488 if (!error)
2489 target->i_flags |= S_DEAD;
1b1dcc1b 2490 mutex_unlock(&target->i_mutex);
1da177e4
LT
2491 if (d_unhashed(new_dentry))
2492 d_rehash(new_dentry);
2493 dput(new_dentry);
2494 }
e31e14ec 2495 if (!error)
349457cc
MF
2496 if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE))
2497 d_move(old_dentry,new_dentry);
1da177e4
LT
2498 return error;
2499}
2500
75c96f85
AB
2501static int vfs_rename_other(struct inode *old_dir, struct dentry *old_dentry,
2502 struct inode *new_dir, struct dentry *new_dentry)
1da177e4
LT
2503{
2504 struct inode *target;
2505 int error;
2506
2507 error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry);
2508 if (error)
2509 return error;
2510
2511 dget(new_dentry);
2512 target = new_dentry->d_inode;
2513 if (target)
1b1dcc1b 2514 mutex_lock(&target->i_mutex);
1da177e4
LT
2515 if (d_mountpoint(old_dentry)||d_mountpoint(new_dentry))
2516 error = -EBUSY;
2517 else
2518 error = old_dir->i_op->rename(old_dir, old_dentry, new_dir, new_dentry);
2519 if (!error) {
349457cc 2520 if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE))
1da177e4 2521 d_move(old_dentry, new_dentry);
1da177e4
LT
2522 }
2523 if (target)
1b1dcc1b 2524 mutex_unlock(&target->i_mutex);
1da177e4
LT
2525 dput(new_dentry);
2526 return error;
2527}
2528
2529int vfs_rename(struct inode *old_dir, struct dentry *old_dentry,
2530 struct inode *new_dir, struct dentry *new_dentry)
2531{
2532 int error;
2533 int is_dir = S_ISDIR(old_dentry->d_inode->i_mode);
0eeca283 2534 const char *old_name;
1da177e4
LT
2535
2536 if (old_dentry->d_inode == new_dentry->d_inode)
2537 return 0;
2538
2539 error = may_delete(old_dir, old_dentry, is_dir);
2540 if (error)
2541 return error;
2542
2543 if (!new_dentry->d_inode)
2544 error = may_create(new_dir, new_dentry, NULL);
2545 else
2546 error = may_delete(new_dir, new_dentry, is_dir);
2547 if (error)
2548 return error;
2549
2550 if (!old_dir->i_op || !old_dir->i_op->rename)
2551 return -EPERM;
2552
2553 DQUOT_INIT(old_dir);
2554 DQUOT_INIT(new_dir);
2555
0eeca283
RL
2556 old_name = fsnotify_oldname_init(old_dentry->d_name.name);
2557
1da177e4
LT
2558 if (is_dir)
2559 error = vfs_rename_dir(old_dir,old_dentry,new_dir,new_dentry);
2560 else
2561 error = vfs_rename_other(old_dir,old_dentry,new_dir,new_dentry);
2562 if (!error) {
0eeca283 2563 const char *new_name = old_dentry->d_name.name;
89204c40 2564 fsnotify_move(old_dir, new_dir, old_name, new_name, is_dir,
5a190ae6 2565 new_dentry->d_inode, old_dentry);
1da177e4 2566 }
0eeca283
RL
2567 fsnotify_oldname_free(old_name);
2568
1da177e4
LT
2569 return error;
2570}
2571
5590ff0d
UD
2572static int do_rename(int olddfd, const char *oldname,
2573 int newdfd, const char *newname)
1da177e4
LT
2574{
2575 int error = 0;
2576 struct dentry * old_dir, * new_dir;
2577 struct dentry * old_dentry, *new_dentry;
2578 struct dentry * trap;
2579 struct nameidata oldnd, newnd;
2580
5590ff0d 2581 error = do_path_lookup(olddfd, oldname, LOOKUP_PARENT, &oldnd);
1da177e4
LT
2582 if (error)
2583 goto exit;
2584
5590ff0d 2585 error = do_path_lookup(newdfd, newname, LOOKUP_PARENT, &newnd);
1da177e4
LT
2586 if (error)
2587 goto exit1;
2588
2589 error = -EXDEV;
2590 if (oldnd.mnt != newnd.mnt)
2591 goto exit2;
2592
2593 old_dir = oldnd.dentry;
2594 error = -EBUSY;
2595 if (oldnd.last_type != LAST_NORM)
2596 goto exit2;
2597
2598 new_dir = newnd.dentry;
2599 if (newnd.last_type != LAST_NORM)
2600 goto exit2;
2601
2602 trap = lock_rename(new_dir, old_dir);
2603
49705b77 2604 old_dentry = lookup_hash(&oldnd);
1da177e4
LT
2605 error = PTR_ERR(old_dentry);
2606 if (IS_ERR(old_dentry))
2607 goto exit3;
2608 /* source must exist */
2609 error = -ENOENT;
2610 if (!old_dentry->d_inode)
2611 goto exit4;
2612 /* unless the source is a directory trailing slashes give -ENOTDIR */
2613 if (!S_ISDIR(old_dentry->d_inode->i_mode)) {
2614 error = -ENOTDIR;
2615 if (oldnd.last.name[oldnd.last.len])
2616 goto exit4;
2617 if (newnd.last.name[newnd.last.len])
2618 goto exit4;
2619 }
2620 /* source should not be ancestor of target */
2621 error = -EINVAL;
2622 if (old_dentry == trap)
2623 goto exit4;
49705b77 2624 new_dentry = lookup_hash(&newnd);
1da177e4
LT
2625 error = PTR_ERR(new_dentry);
2626 if (IS_ERR(new_dentry))
2627 goto exit4;
2628 /* target should not be an ancestor of source */
2629 error = -ENOTEMPTY;
2630 if (new_dentry == trap)
2631 goto exit5;
2632
2633 error = vfs_rename(old_dir->d_inode, old_dentry,
2634 new_dir->d_inode, new_dentry);
2635exit5:
2636 dput(new_dentry);
2637exit4:
2638 dput(old_dentry);
2639exit3:
2640 unlock_rename(new_dir, old_dir);
2641exit2:
2642 path_release(&newnd);
2643exit1:
2644 path_release(&oldnd);
2645exit:
2646 return error;
2647}
2648
5590ff0d
UD
2649asmlinkage long sys_renameat(int olddfd, const char __user *oldname,
2650 int newdfd, const char __user *newname)
1da177e4
LT
2651{
2652 int error;
2653 char * from;
2654 char * to;
2655
2656 from = getname(oldname);
2657 if(IS_ERR(from))
2658 return PTR_ERR(from);
2659 to = getname(newname);
2660 error = PTR_ERR(to);
2661 if (!IS_ERR(to)) {
5590ff0d 2662 error = do_rename(olddfd, from, newdfd, to);
1da177e4
LT
2663 putname(to);
2664 }
2665 putname(from);
2666 return error;
2667}
2668
5590ff0d
UD
2669asmlinkage long sys_rename(const char __user *oldname, const char __user *newname)
2670{
2671 return sys_renameat(AT_FDCWD, oldname, AT_FDCWD, newname);
2672}
2673
1da177e4
LT
2674int vfs_readlink(struct dentry *dentry, char __user *buffer, int buflen, const char *link)
2675{
2676 int len;
2677
2678 len = PTR_ERR(link);
2679 if (IS_ERR(link))
2680 goto out;
2681
2682 len = strlen(link);
2683 if (len > (unsigned) buflen)
2684 len = buflen;
2685 if (copy_to_user(buffer, link, len))
2686 len = -EFAULT;
2687out:
2688 return len;
2689}
2690
2691/*
2692 * A helper for ->readlink(). This should be used *ONLY* for symlinks that
2693 * have ->follow_link() touching nd only in nd_set_link(). Using (or not
2694 * using) it for any given inode is up to filesystem.
2695 */
2696int generic_readlink(struct dentry *dentry, char __user *buffer, int buflen)
2697{
2698 struct nameidata nd;
cc314eef
LT
2699 void *cookie;
2700
1da177e4 2701 nd.depth = 0;
cc314eef
LT
2702 cookie = dentry->d_inode->i_op->follow_link(dentry, &nd);
2703 if (!IS_ERR(cookie)) {
2704 int res = vfs_readlink(dentry, buffer, buflen, nd_get_link(&nd));
1da177e4 2705 if (dentry->d_inode->i_op->put_link)
cc314eef
LT
2706 dentry->d_inode->i_op->put_link(dentry, &nd, cookie);
2707 cookie = ERR_PTR(res);
1da177e4 2708 }
cc314eef 2709 return PTR_ERR(cookie);
1da177e4
LT
2710}
2711
2712int vfs_follow_link(struct nameidata *nd, const char *link)
2713{
2714 return __vfs_follow_link(nd, link);
2715}
2716
2717/* get the link contents into pagecache */
2718static char *page_getlink(struct dentry * dentry, struct page **ppage)
2719{
2720 struct page * page;
2721 struct address_space *mapping = dentry->d_inode->i_mapping;
090d2b18 2722 page = read_mapping_page(mapping, 0, NULL);
1da177e4 2723 if (IS_ERR(page))
6fe6900e 2724 return (char*)page;
1da177e4
LT
2725 *ppage = page;
2726 return kmap(page);
1da177e4
LT
2727}
2728
2729int page_readlink(struct dentry *dentry, char __user *buffer, int buflen)
2730{
2731 struct page *page = NULL;
2732 char *s = page_getlink(dentry, &page);
2733 int res = vfs_readlink(dentry,buffer,buflen,s);
2734 if (page) {
2735 kunmap(page);
2736 page_cache_release(page);
2737 }
2738 return res;
2739}
2740
cc314eef 2741void *page_follow_link_light(struct dentry *dentry, struct nameidata *nd)
1da177e4 2742{
cc314eef 2743 struct page *page = NULL;
1da177e4 2744 nd_set_link(nd, page_getlink(dentry, &page));
cc314eef 2745 return page;
1da177e4
LT
2746}
2747
cc314eef 2748void page_put_link(struct dentry *dentry, struct nameidata *nd, void *cookie)
1da177e4 2749{
cc314eef
LT
2750 struct page *page = cookie;
2751
2752 if (page) {
1da177e4
LT
2753 kunmap(page);
2754 page_cache_release(page);
1da177e4
LT
2755 }
2756}
2757
0adb25d2
KK
2758int __page_symlink(struct inode *inode, const char *symname, int len,
2759 gfp_t gfp_mask)
1da177e4
LT
2760{
2761 struct address_space *mapping = inode->i_mapping;
0adb25d2 2762 struct page *page;
afddba49 2763 void *fsdata;
beb497ab 2764 int err;
1da177e4
LT
2765 char *kaddr;
2766
7e53cac4 2767retry:
afddba49
NP
2768 err = pagecache_write_begin(NULL, mapping, 0, len-1,
2769 AOP_FLAG_UNINTERRUPTIBLE, &page, &fsdata);
1da177e4 2770 if (err)
afddba49
NP
2771 goto fail;
2772
1da177e4
LT
2773 kaddr = kmap_atomic(page, KM_USER0);
2774 memcpy(kaddr, symname, len-1);
2775 kunmap_atomic(kaddr, KM_USER0);
afddba49
NP
2776
2777 err = pagecache_write_end(NULL, mapping, 0, len-1, len-1,
2778 page, fsdata);
1da177e4
LT
2779 if (err < 0)
2780 goto fail;
afddba49
NP
2781 if (err < len-1)
2782 goto retry;
2783
1da177e4
LT
2784 mark_inode_dirty(inode);
2785 return 0;
1da177e4
LT
2786fail:
2787 return err;
2788}
2789
0adb25d2
KK
2790int page_symlink(struct inode *inode, const char *symname, int len)
2791{
2792 return __page_symlink(inode, symname, len,
2793 mapping_gfp_mask(inode->i_mapping));
2794}
2795
92e1d5be 2796const struct inode_operations page_symlink_inode_operations = {
1da177e4
LT
2797 .readlink = generic_readlink,
2798 .follow_link = page_follow_link_light,
2799 .put_link = page_put_link,
2800};
2801
2802EXPORT_SYMBOL(__user_walk);
5590ff0d 2803EXPORT_SYMBOL(__user_walk_fd);
1da177e4
LT
2804EXPORT_SYMBOL(follow_down);
2805EXPORT_SYMBOL(follow_up);
2806EXPORT_SYMBOL(get_write_access); /* binfmt_aout */
2807EXPORT_SYMBOL(getname);
2808EXPORT_SYMBOL(lock_rename);
1da177e4
LT
2809EXPORT_SYMBOL(lookup_one_len);
2810EXPORT_SYMBOL(page_follow_link_light);
2811EXPORT_SYMBOL(page_put_link);
2812EXPORT_SYMBOL(page_readlink);
0adb25d2 2813EXPORT_SYMBOL(__page_symlink);
1da177e4
LT
2814EXPORT_SYMBOL(page_symlink);
2815EXPORT_SYMBOL(page_symlink_inode_operations);
2816EXPORT_SYMBOL(path_lookup);
16f18200 2817EXPORT_SYMBOL(vfs_path_lookup);
1da177e4 2818EXPORT_SYMBOL(path_release);
1da177e4 2819EXPORT_SYMBOL(permission);
e4543edd 2820EXPORT_SYMBOL(vfs_permission);
8c744fb8 2821EXPORT_SYMBOL(file_permission);
1da177e4
LT
2822EXPORT_SYMBOL(unlock_rename);
2823EXPORT_SYMBOL(vfs_create);
2824EXPORT_SYMBOL(vfs_follow_link);
2825EXPORT_SYMBOL(vfs_link);
2826EXPORT_SYMBOL(vfs_mkdir);
2827EXPORT_SYMBOL(vfs_mknod);
2828EXPORT_SYMBOL(generic_permission);
2829EXPORT_SYMBOL(vfs_readlink);
2830EXPORT_SYMBOL(vfs_rename);
2831EXPORT_SYMBOL(vfs_rmdir);
2832EXPORT_SYMBOL(vfs_symlink);
2833EXPORT_SYMBOL(vfs_unlink);
2834EXPORT_SYMBOL(dentry_unhash);
2835EXPORT_SYMBOL(generic_readlink);