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