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