vfs: fix vfs_rename_dir for FS_RENAME_DOES_D_MOVE filesystems
[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>
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
25985edc 73 * the name is a symlink pointing to a non-existent name.
1da177e4
LT
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
f52e0c11 139static char *getname_flags(const char __user * filename, int flags)
1da177e4
LT
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) {
f52e0c11
AV
150 if (retval != -ENOENT || !(flags & LOOKUP_EMPTY)) {
151 __putname(tmp);
152 result = ERR_PTR(retval);
153 }
1da177e4
LT
154 }
155 }
156 audit_getname(result);
157 return result;
158}
159
f52e0c11
AV
160char *getname(const char __user * filename)
161{
162 return getname_flags(filename, 0);
163}
164
1da177e4
LT
165#ifdef CONFIG_AUDITSYSCALL
166void putname(const char *name)
167{
5ac3a9c2 168 if (unlikely(!audit_dummy_context()))
1da177e4
LT
169 audit_putname(name);
170 else
171 __putname(name);
172}
173EXPORT_SYMBOL(putname);
174#endif
175
5909ccaa
LT
176/*
177 * This does basic POSIX ACL permission checking
1da177e4 178 */
b74c79e9
NP
179static int acl_permission_check(struct inode *inode, int mask, unsigned int flags,
180 int (*check_acl)(struct inode *inode, int mask, unsigned int flags))
1da177e4
LT
181{
182 umode_t mode = inode->i_mode;
183
e6305c43
AV
184 mask &= MAY_READ | MAY_WRITE | MAY_EXEC;
185
e795b717
SH
186 if (current_user_ns() != inode_userns(inode))
187 goto other_perms;
188
da9592ed 189 if (current_fsuid() == inode->i_uid)
1da177e4
LT
190 mode >>= 6;
191 else {
192 if (IS_POSIXACL(inode) && (mode & S_IRWXG) && check_acl) {
b74c79e9
NP
193 int error = check_acl(inode, mask, flags);
194 if (error != -EAGAIN)
195 return error;
1da177e4
LT
196 }
197
198 if (in_group_p(inode->i_gid))
199 mode >>= 3;
200 }
201
e795b717 202other_perms:
1da177e4
LT
203 /*
204 * If the DACs are ok we don't need any capability check.
205 */
e6305c43 206 if ((mask & ~mode) == 0)
1da177e4 207 return 0;
5909ccaa
LT
208 return -EACCES;
209}
210
211/**
b74c79e9 212 * generic_permission - check for access rights on a Posix-like filesystem
5909ccaa
LT
213 * @inode: inode to check access rights for
214 * @mask: right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
215 * @check_acl: optional callback to check for Posix ACLs
39191628 216 * @flags: IPERM_FLAG_ flags.
5909ccaa
LT
217 *
218 * Used to check for read/write/execute permissions on a file.
219 * We use "fsuid" for this, letting us set arbitrary permissions
220 * for filesystem access without changing the "normal" uids which
b74c79e9
NP
221 * are used for other things.
222 *
223 * generic_permission is rcu-walk aware. It returns -ECHILD in case an rcu-walk
224 * request cannot be satisfied (eg. requires blocking or too much complexity).
225 * It would then be called again in ref-walk mode.
5909ccaa 226 */
b74c79e9
NP
227int generic_permission(struct inode *inode, int mask, unsigned int flags,
228 int (*check_acl)(struct inode *inode, int mask, unsigned int flags))
5909ccaa
LT
229{
230 int ret;
231
232 /*
233 * Do the basic POSIX ACL permission checks.
234 */
b74c79e9 235 ret = acl_permission_check(inode, mask, flags, check_acl);
5909ccaa
LT
236 if (ret != -EACCES)
237 return ret;
1da177e4 238
1da177e4
LT
239 /*
240 * Read/write DACs are always overridable.
241 * Executable DACs are overridable if at least one exec bit is set.
242 */
f696a365 243 if (!(mask & MAY_EXEC) || execute_ok(inode))
e795b717 244 if (ns_capable(inode_userns(inode), CAP_DAC_OVERRIDE))
1da177e4
LT
245 return 0;
246
247 /*
248 * Searching includes executable on directories, else just read.
249 */
7ea66001 250 mask &= MAY_READ | MAY_WRITE | MAY_EXEC;
1da177e4 251 if (mask == MAY_READ || (S_ISDIR(inode->i_mode) && !(mask & MAY_WRITE)))
e795b717 252 if (ns_capable(inode_userns(inode), CAP_DAC_READ_SEARCH))
1da177e4
LT
253 return 0;
254
255 return -EACCES;
256}
257
cb23beb5
CH
258/**
259 * inode_permission - check for access rights to a given inode
260 * @inode: inode to check permission on
261 * @mask: right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
262 *
263 * Used to check for read/write/execute permissions on an inode.
264 * We use "fsuid" for this, letting us set arbitrary permissions
265 * for filesystem access without changing the "normal" uids which
266 * are used for other things.
267 */
f419a2e3 268int inode_permission(struct inode *inode, int mask)
1da177e4 269{
e6305c43 270 int retval;
1da177e4
LT
271
272 if (mask & MAY_WRITE) {
22590e41 273 umode_t mode = inode->i_mode;
1da177e4
LT
274
275 /*
276 * Nobody gets write access to a read-only fs.
277 */
278 if (IS_RDONLY(inode) &&
279 (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode)))
280 return -EROFS;
281
282 /*
283 * Nobody gets write access to an immutable file.
284 */
285 if (IS_IMMUTABLE(inode))
286 return -EACCES;
287 }
288
acfa4380 289 if (inode->i_op->permission)
b74c79e9 290 retval = inode->i_op->permission(inode, mask, 0);
f696a365 291 else
b74c79e9
NP
292 retval = generic_permission(inode, mask, 0,
293 inode->i_op->check_acl);
f696a365 294
1da177e4
LT
295 if (retval)
296 return retval;
297
08ce5f16
SH
298 retval = devcgroup_inode_permission(inode, mask);
299 if (retval)
300 return retval;
301
d09ca739 302 return security_inode_permission(inode, mask);
1da177e4
LT
303}
304
8c744fb8
CH
305/**
306 * file_permission - check for additional access rights to a given file
307 * @file: file to check access rights for
308 * @mask: right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
309 *
310 * Used to check for read/write/execute permissions on an already opened
311 * file.
312 *
313 * Note:
314 * Do not use this function in new code. All access checks should
cb23beb5 315 * be done using inode_permission().
8c744fb8
CH
316 */
317int file_permission(struct file *file, int mask)
318{
f419a2e3 319 return inode_permission(file->f_path.dentry->d_inode, mask);
8c744fb8
CH
320}
321
1da177e4
LT
322/*
323 * get_write_access() gets write permission for a file.
324 * put_write_access() releases this write permission.
325 * This is used for regular files.
326 * We cannot support write (and maybe mmap read-write shared) accesses and
327 * MAP_DENYWRITE mmappings simultaneously. The i_writecount field of an inode
328 * can have the following values:
329 * 0: no writers, no VM_DENYWRITE mappings
330 * < 0: (-i_writecount) vm_area_structs with VM_DENYWRITE set exist
331 * > 0: (i_writecount) users are writing to the file.
332 *
333 * Normally we operate on that counter with atomic_{inc,dec} and it's safe
334 * except for the cases where we don't hold i_writecount yet. Then we need to
335 * use {get,deny}_write_access() - these functions check the sign and refuse
336 * to do the change if sign is wrong. Exclusion between them is provided by
337 * the inode->i_lock spinlock.
338 */
339
340int get_write_access(struct inode * inode)
341{
342 spin_lock(&inode->i_lock);
343 if (atomic_read(&inode->i_writecount) < 0) {
344 spin_unlock(&inode->i_lock);
345 return -ETXTBSY;
346 }
347 atomic_inc(&inode->i_writecount);
348 spin_unlock(&inode->i_lock);
349
350 return 0;
351}
352
353int deny_write_access(struct file * file)
354{
0f7fc9e4 355 struct inode *inode = file->f_path.dentry->d_inode;
1da177e4
LT
356
357 spin_lock(&inode->i_lock);
358 if (atomic_read(&inode->i_writecount) > 0) {
359 spin_unlock(&inode->i_lock);
360 return -ETXTBSY;
361 }
362 atomic_dec(&inode->i_writecount);
363 spin_unlock(&inode->i_lock);
364
365 return 0;
366}
367
5dd784d0
JB
368/**
369 * path_get - get a reference to a path
370 * @path: path to get the reference to
371 *
372 * Given a path increment the reference count to the dentry and the vfsmount.
373 */
374void path_get(struct path *path)
375{
376 mntget(path->mnt);
377 dget(path->dentry);
378}
379EXPORT_SYMBOL(path_get);
380
1d957f9b
JB
381/**
382 * path_put - put a reference to a path
383 * @path: path to put the reference to
384 *
385 * Given a path decrement the reference count to the dentry and the vfsmount.
386 */
387void path_put(struct path *path)
1da177e4 388{
1d957f9b
JB
389 dput(path->dentry);
390 mntput(path->mnt);
1da177e4 391}
1d957f9b 392EXPORT_SYMBOL(path_put);
1da177e4 393
19660af7 394/*
31e6b01f 395 * Path walking has 2 modes, rcu-walk and ref-walk (see
19660af7
AV
396 * Documentation/filesystems/path-lookup.txt). In situations when we can't
397 * continue in RCU mode, we attempt to drop out of rcu-walk mode and grab
398 * normal reference counts on dentries and vfsmounts to transition to rcu-walk
399 * mode. Refcounts are grabbed at the last known good point before rcu-walk
400 * got stuck, so ref-walk may continue from there. If this is not successful
401 * (eg. a seqcount has changed), then failure is returned and it's up to caller
402 * to restart the path walk from the beginning in ref-walk mode.
31e6b01f 403 */
31e6b01f
NP
404
405/**
19660af7
AV
406 * unlazy_walk - try to switch to ref-walk mode.
407 * @nd: nameidata pathwalk data
408 * @dentry: child of nd->path.dentry or NULL
39191628 409 * Returns: 0 on success, -ECHILD on failure
31e6b01f 410 *
19660af7
AV
411 * unlazy_walk attempts to legitimize the current nd->path, nd->root and dentry
412 * for ref-walk mode. @dentry must be a path found by a do_lookup call on
413 * @nd or NULL. Must be called from rcu-walk context.
31e6b01f 414 */
19660af7 415static int unlazy_walk(struct nameidata *nd, struct dentry *dentry)
31e6b01f
NP
416{
417 struct fs_struct *fs = current->fs;
418 struct dentry *parent = nd->path.dentry;
5b6ca027 419 int want_root = 0;
31e6b01f
NP
420
421 BUG_ON(!(nd->flags & LOOKUP_RCU));
5b6ca027
AV
422 if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT)) {
423 want_root = 1;
31e6b01f
NP
424 spin_lock(&fs->lock);
425 if (nd->root.mnt != fs->root.mnt ||
426 nd->root.dentry != fs->root.dentry)
427 goto err_root;
428 }
429 spin_lock(&parent->d_lock);
19660af7
AV
430 if (!dentry) {
431 if (!__d_rcu_to_refcount(parent, nd->seq))
432 goto err_parent;
433 BUG_ON(nd->inode != parent->d_inode);
434 } else {
435 spin_lock_nested(&dentry->d_lock, DENTRY_D_LOCK_NESTED);
436 if (!__d_rcu_to_refcount(dentry, nd->seq))
437 goto err_child;
438 /*
439 * If the sequence check on the child dentry passed, then
440 * the child has not been removed from its parent. This
441 * means the parent dentry must be valid and able to take
442 * a reference at this point.
443 */
444 BUG_ON(!IS_ROOT(dentry) && dentry->d_parent != parent);
445 BUG_ON(!parent->d_count);
446 parent->d_count++;
447 spin_unlock(&dentry->d_lock);
448 }
31e6b01f 449 spin_unlock(&parent->d_lock);
5b6ca027 450 if (want_root) {
31e6b01f
NP
451 path_get(&nd->root);
452 spin_unlock(&fs->lock);
453 }
454 mntget(nd->path.mnt);
455
456 rcu_read_unlock();
457 br_read_unlock(vfsmount_lock);
458 nd->flags &= ~LOOKUP_RCU;
459 return 0;
19660af7
AV
460
461err_child:
31e6b01f 462 spin_unlock(&dentry->d_lock);
19660af7 463err_parent:
31e6b01f
NP
464 spin_unlock(&parent->d_lock);
465err_root:
5b6ca027 466 if (want_root)
31e6b01f
NP
467 spin_unlock(&fs->lock);
468 return -ECHILD;
469}
470
834f2a4a
TM
471/**
472 * release_open_intent - free up open intent resources
473 * @nd: pointer to nameidata
474 */
475void release_open_intent(struct nameidata *nd)
476{
2dab5974
LT
477 struct file *file = nd->intent.open.file;
478
479 if (file && !IS_ERR(file)) {
480 if (file->f_path.dentry == NULL)
481 put_filp(file);
482 else
483 fput(file);
484 }
834f2a4a
TM
485}
486
f60aef7e 487static inline int d_revalidate(struct dentry *dentry, struct nameidata *nd)
34286d66 488{
f60aef7e 489 return dentry->d_op->d_revalidate(dentry, nd);
34286d66
NP
490}
491
f5e1c1c1 492static struct dentry *
bcdc5e01
IK
493do_revalidate(struct dentry *dentry, struct nameidata *nd)
494{
f5e1c1c1 495 int status = d_revalidate(dentry, nd);
bcdc5e01
IK
496 if (unlikely(status <= 0)) {
497 /*
498 * The dentry failed validation.
499 * If d_revalidate returned 0 attempt to invalidate
500 * the dentry otherwise d_revalidate is asking us
501 * to return a fail status.
502 */
34286d66 503 if (status < 0) {
f5e1c1c1 504 dput(dentry);
34286d66 505 dentry = ERR_PTR(status);
f5e1c1c1
AV
506 } else if (!d_invalidate(dentry)) {
507 dput(dentry);
508 dentry = NULL;
bcdc5e01
IK
509 }
510 }
511 return dentry;
512}
513
9f1fafee
AV
514/**
515 * complete_walk - successful completion of path walk
516 * @nd: pointer nameidata
39159de2 517 *
9f1fafee
AV
518 * If we had been in RCU mode, drop out of it and legitimize nd->path.
519 * Revalidate the final result, unless we'd already done that during
520 * the path walk or the filesystem doesn't ask for it. Return 0 on
521 * success, -error on failure. In case of failure caller does not
522 * need to drop nd->path.
39159de2 523 */
9f1fafee 524static int complete_walk(struct nameidata *nd)
39159de2 525{
16c2cd71 526 struct dentry *dentry = nd->path.dentry;
39159de2 527 int status;
39159de2 528
9f1fafee
AV
529 if (nd->flags & LOOKUP_RCU) {
530 nd->flags &= ~LOOKUP_RCU;
531 if (!(nd->flags & LOOKUP_ROOT))
532 nd->root.mnt = NULL;
533 spin_lock(&dentry->d_lock);
534 if (unlikely(!__d_rcu_to_refcount(dentry, nd->seq))) {
535 spin_unlock(&dentry->d_lock);
536 rcu_read_unlock();
537 br_read_unlock(vfsmount_lock);
538 return -ECHILD;
539 }
540 BUG_ON(nd->inode != dentry->d_inode);
541 spin_unlock(&dentry->d_lock);
542 mntget(nd->path.mnt);
543 rcu_read_unlock();
544 br_read_unlock(vfsmount_lock);
545 }
546
16c2cd71
AV
547 if (likely(!(nd->flags & LOOKUP_JUMPED)))
548 return 0;
549
550 if (likely(!(dentry->d_flags & DCACHE_OP_REVALIDATE)))
39159de2
JL
551 return 0;
552
16c2cd71
AV
553 if (likely(!(dentry->d_sb->s_type->fs_flags & FS_REVAL_DOT)))
554 return 0;
555
556 /* Note: we do not d_invalidate() */
34286d66 557 status = d_revalidate(dentry, nd);
39159de2
JL
558 if (status > 0)
559 return 0;
560
16c2cd71 561 if (!status)
39159de2 562 status = -ESTALE;
16c2cd71 563
9f1fafee 564 path_put(&nd->path);
39159de2
JL
565 return status;
566}
567
1da177e4 568/*
b75b5086
AV
569 * Short-cut version of permission(), for calling on directories
570 * during pathname resolution. Combines parts of permission()
571 * and generic_permission(), and tests ONLY for MAY_EXEC permission.
1da177e4
LT
572 *
573 * If appropriate, check DAC only. If not appropriate, or
b75b5086 574 * short-cut DAC fails, then call ->permission() to do more
1da177e4
LT
575 * complete permission check.
576 */
b74c79e9 577static inline int exec_permission(struct inode *inode, unsigned int flags)
1da177e4 578{
5909ccaa 579 int ret;
e795b717 580 struct user_namespace *ns = inode_userns(inode);
1da177e4 581
cb9179ea 582 if (inode->i_op->permission) {
b74c79e9
NP
583 ret = inode->i_op->permission(inode, MAY_EXEC, flags);
584 } else {
585 ret = acl_permission_check(inode, MAY_EXEC, flags,
586 inode->i_op->check_acl);
cb9179ea 587 }
b74c79e9 588 if (likely(!ret))
1da177e4 589 goto ok;
b74c79e9 590 if (ret == -ECHILD)
31e6b01f 591 return ret;
1da177e4 592
e795b717
SH
593 if (ns_capable(ns, CAP_DAC_OVERRIDE) ||
594 ns_capable(ns, CAP_DAC_READ_SEARCH))
1da177e4
LT
595 goto ok;
596
5909ccaa 597 return ret;
1da177e4 598ok:
b74c79e9 599 return security_inode_exec_permission(inode, flags);
1da177e4
LT
600}
601
2a737871
AV
602static __always_inline void set_root(struct nameidata *nd)
603{
f7ad3c6b
MS
604 if (!nd->root.mnt)
605 get_fs_root(current->fs, &nd->root);
2a737871
AV
606}
607
6de88d72
AV
608static int link_path_walk(const char *, struct nameidata *);
609
31e6b01f
NP
610static __always_inline void set_root_rcu(struct nameidata *nd)
611{
612 if (!nd->root.mnt) {
613 struct fs_struct *fs = current->fs;
c28cc364
NP
614 unsigned seq;
615
616 do {
617 seq = read_seqcount_begin(&fs->seq);
618 nd->root = fs->root;
c1530019 619 nd->seq = __read_seqcount_begin(&nd->root.dentry->d_seq);
c28cc364 620 } while (read_seqcount_retry(&fs->seq, seq));
31e6b01f
NP
621 }
622}
623
f1662356 624static __always_inline int __vfs_follow_link(struct nameidata *nd, const char *link)
1da177e4 625{
31e6b01f
NP
626 int ret;
627
1da177e4
LT
628 if (IS_ERR(link))
629 goto fail;
630
631 if (*link == '/') {
2a737871 632 set_root(nd);
1d957f9b 633 path_put(&nd->path);
2a737871
AV
634 nd->path = nd->root;
635 path_get(&nd->root);
16c2cd71 636 nd->flags |= LOOKUP_JUMPED;
1da177e4 637 }
31e6b01f 638 nd->inode = nd->path.dentry->d_inode;
b4091d5f 639
31e6b01f
NP
640 ret = link_path_walk(link, nd);
641 return ret;
1da177e4 642fail:
1d957f9b 643 path_put(&nd->path);
1da177e4
LT
644 return PTR_ERR(link);
645}
646
1d957f9b 647static void path_put_conditional(struct path *path, struct nameidata *nd)
051d3812
IK
648{
649 dput(path->dentry);
4ac91378 650 if (path->mnt != nd->path.mnt)
051d3812
IK
651 mntput(path->mnt);
652}
653
7b9337aa
NP
654static inline void path_to_nameidata(const struct path *path,
655 struct nameidata *nd)
051d3812 656{
31e6b01f
NP
657 if (!(nd->flags & LOOKUP_RCU)) {
658 dput(nd->path.dentry);
659 if (nd->path.mnt != path->mnt)
660 mntput(nd->path.mnt);
9a229683 661 }
31e6b01f 662 nd->path.mnt = path->mnt;
4ac91378 663 nd->path.dentry = path->dentry;
051d3812
IK
664}
665
574197e0
AV
666static inline void put_link(struct nameidata *nd, struct path *link, void *cookie)
667{
668 struct inode *inode = link->dentry->d_inode;
669 if (!IS_ERR(cookie) && inode->i_op->put_link)
670 inode->i_op->put_link(link->dentry, nd, cookie);
671 path_put(link);
672}
673
def4af30 674static __always_inline int
574197e0 675follow_link(struct path *link, struct nameidata *nd, void **p)
1da177e4
LT
676{
677 int error;
7b9337aa 678 struct dentry *dentry = link->dentry;
1da177e4 679
844a3917
AV
680 BUG_ON(nd->flags & LOOKUP_RCU);
681
0e794589
AV
682 if (link->mnt == nd->path.mnt)
683 mntget(link->mnt);
684
574197e0
AV
685 if (unlikely(current->total_link_count >= 40)) {
686 *p = ERR_PTR(-ELOOP); /* no ->put_link(), please */
574197e0
AV
687 path_put(&nd->path);
688 return -ELOOP;
689 }
690 cond_resched();
691 current->total_link_count++;
692
7b9337aa 693 touch_atime(link->mnt, dentry);
1da177e4 694 nd_set_link(nd, NULL);
cd4e91d3 695
36f3b4f6
AV
696 error = security_inode_follow_link(link->dentry, nd);
697 if (error) {
698 *p = ERR_PTR(error); /* no ->put_link(), please */
699 path_put(&nd->path);
700 return error;
701 }
702
86acdca1 703 nd->last_type = LAST_BIND;
def4af30
AV
704 *p = dentry->d_inode->i_op->follow_link(dentry, nd);
705 error = PTR_ERR(*p);
706 if (!IS_ERR(*p)) {
1da177e4 707 char *s = nd_get_link(nd);
cc314eef 708 error = 0;
1da177e4
LT
709 if (s)
710 error = __vfs_follow_link(nd, s);
bcda7652 711 else if (nd->last_type == LAST_BIND) {
16c2cd71 712 nd->flags |= LOOKUP_JUMPED;
b21041d0
AV
713 nd->inode = nd->path.dentry->d_inode;
714 if (nd->inode->i_op->follow_link) {
bcda7652
AV
715 /* stepped on a _really_ weird one */
716 path_put(&nd->path);
717 error = -ELOOP;
718 }
719 }
1da177e4 720 }
1da177e4
LT
721 return error;
722}
723
31e6b01f
NP
724static int follow_up_rcu(struct path *path)
725{
726 struct vfsmount *parent;
727 struct dentry *mountpoint;
728
729 parent = path->mnt->mnt_parent;
730 if (parent == path->mnt)
731 return 0;
732 mountpoint = path->mnt->mnt_mountpoint;
733 path->dentry = mountpoint;
734 path->mnt = parent;
735 return 1;
736}
737
bab77ebf 738int follow_up(struct path *path)
1da177e4
LT
739{
740 struct vfsmount *parent;
741 struct dentry *mountpoint;
99b7db7b
NP
742
743 br_read_lock(vfsmount_lock);
bab77ebf
AV
744 parent = path->mnt->mnt_parent;
745 if (parent == path->mnt) {
99b7db7b 746 br_read_unlock(vfsmount_lock);
1da177e4
LT
747 return 0;
748 }
749 mntget(parent);
bab77ebf 750 mountpoint = dget(path->mnt->mnt_mountpoint);
99b7db7b 751 br_read_unlock(vfsmount_lock);
bab77ebf
AV
752 dput(path->dentry);
753 path->dentry = mountpoint;
754 mntput(path->mnt);
755 path->mnt = parent;
1da177e4
LT
756 return 1;
757}
758
b5c84bf6 759/*
9875cf80
DH
760 * Perform an automount
761 * - return -EISDIR to tell follow_managed() to stop and return the path we
762 * were called with.
1da177e4 763 */
9875cf80
DH
764static int follow_automount(struct path *path, unsigned flags,
765 bool *need_mntput)
31e6b01f 766{
9875cf80 767 struct vfsmount *mnt;
ea5b778a 768 int err;
9875cf80
DH
769
770 if (!path->dentry->d_op || !path->dentry->d_op->d_automount)
771 return -EREMOTE;
772
6f45b656
DH
773 /* We don't want to mount if someone supplied AT_NO_AUTOMOUNT
774 * and this is the terminal part of the path.
775 */
776 if ((flags & LOOKUP_NO_AUTOMOUNT) && !(flags & LOOKUP_CONTINUE))
777 return -EISDIR; /* we actually want to stop here */
778
9875cf80
DH
779 /* We want to mount if someone is trying to open/create a file of any
780 * type under the mountpoint, wants to traverse through the mountpoint
781 * or wants to open the mounted directory.
782 *
783 * We don't want to mount if someone's just doing a stat and they've
784 * set AT_SYMLINK_NOFOLLOW - unless they're stat'ing a directory and
785 * appended a '/' to the name.
786 */
787 if (!(flags & LOOKUP_FOLLOW) &&
788 !(flags & (LOOKUP_CONTINUE | LOOKUP_DIRECTORY |
789 LOOKUP_OPEN | LOOKUP_CREATE)))
790 return -EISDIR;
791
792 current->total_link_count++;
793 if (current->total_link_count >= 40)
794 return -ELOOP;
795
796 mnt = path->dentry->d_op->d_automount(path);
797 if (IS_ERR(mnt)) {
798 /*
799 * The filesystem is allowed to return -EISDIR here to indicate
800 * it doesn't want to automount. For instance, autofs would do
801 * this so that its userspace daemon can mount on this dentry.
802 *
803 * However, we can only permit this if it's a terminal point in
804 * the path being looked up; if it wasn't then the remainder of
805 * the path is inaccessible and we should say so.
806 */
807 if (PTR_ERR(mnt) == -EISDIR && (flags & LOOKUP_CONTINUE))
808 return -EREMOTE;
809 return PTR_ERR(mnt);
31e6b01f 810 }
ea5b778a 811
9875cf80
DH
812 if (!mnt) /* mount collision */
813 return 0;
31e6b01f 814
19a167af 815 err = finish_automount(mnt, path);
9875cf80 816
ea5b778a
DH
817 switch (err) {
818 case -EBUSY:
819 /* Someone else made a mount here whilst we were busy */
19a167af 820 return 0;
ea5b778a 821 case 0:
ea5b778a
DH
822 dput(path->dentry);
823 if (*need_mntput)
824 mntput(path->mnt);
825 path->mnt = mnt;
826 path->dentry = dget(mnt->mnt_root);
827 *need_mntput = true;
828 return 0;
19a167af
AV
829 default:
830 return err;
ea5b778a 831 }
19a167af 832
463ffb2e
AV
833}
834
9875cf80
DH
835/*
836 * Handle a dentry that is managed in some way.
cc53ce53 837 * - Flagged for transit management (autofs)
9875cf80
DH
838 * - Flagged as mountpoint
839 * - Flagged as automount point
840 *
841 * This may only be called in refwalk mode.
842 *
843 * Serialization is taken care of in namespace.c
844 */
845static int follow_managed(struct path *path, unsigned flags)
1da177e4 846{
9875cf80
DH
847 unsigned managed;
848 bool need_mntput = false;
849 int ret;
850
851 /* Given that we're not holding a lock here, we retain the value in a
852 * local variable for each dentry as we look at it so that we don't see
853 * the components of that value change under us */
854 while (managed = ACCESS_ONCE(path->dentry->d_flags),
855 managed &= DCACHE_MANAGED_DENTRY,
856 unlikely(managed != 0)) {
cc53ce53
DH
857 /* Allow the filesystem to manage the transit without i_mutex
858 * being held. */
859 if (managed & DCACHE_MANAGE_TRANSIT) {
860 BUG_ON(!path->dentry->d_op);
861 BUG_ON(!path->dentry->d_op->d_manage);
1aed3e42 862 ret = path->dentry->d_op->d_manage(path->dentry, false);
cc53ce53
DH
863 if (ret < 0)
864 return ret == -EISDIR ? 0 : ret;
865 }
866
9875cf80
DH
867 /* Transit to a mounted filesystem. */
868 if (managed & DCACHE_MOUNTED) {
869 struct vfsmount *mounted = lookup_mnt(path);
870 if (mounted) {
871 dput(path->dentry);
872 if (need_mntput)
873 mntput(path->mnt);
874 path->mnt = mounted;
875 path->dentry = dget(mounted->mnt_root);
876 need_mntput = true;
877 continue;
878 }
879
880 /* Something is mounted on this dentry in another
881 * namespace and/or whatever was mounted there in this
882 * namespace got unmounted before we managed to get the
883 * vfsmount_lock */
884 }
885
886 /* Handle an automount point */
887 if (managed & DCACHE_NEED_AUTOMOUNT) {
888 ret = follow_automount(path, flags, &need_mntput);
889 if (ret < 0)
890 return ret == -EISDIR ? 0 : ret;
891 continue;
892 }
893
894 /* We didn't change the current path point */
895 break;
1da177e4 896 }
9875cf80 897 return 0;
1da177e4
LT
898}
899
cc53ce53 900int follow_down_one(struct path *path)
1da177e4
LT
901{
902 struct vfsmount *mounted;
903
1c755af4 904 mounted = lookup_mnt(path);
1da177e4 905 if (mounted) {
9393bd07
AV
906 dput(path->dentry);
907 mntput(path->mnt);
908 path->mnt = mounted;
909 path->dentry = dget(mounted->mnt_root);
1da177e4
LT
910 return 1;
911 }
912 return 0;
913}
914
62a7375e
IK
915static inline bool managed_dentry_might_block(struct dentry *dentry)
916{
917 return (dentry->d_flags & DCACHE_MANAGE_TRANSIT &&
918 dentry->d_op->d_manage(dentry, true) < 0);
919}
920
9875cf80
DH
921/*
922 * Skip to top of mountpoint pile in rcuwalk mode. We abort the rcu-walk if we
cc53ce53 923 * meet a managed dentry and we're not walking to "..". True is returned to
9875cf80
DH
924 * continue, false to abort.
925 */
926static bool __follow_mount_rcu(struct nameidata *nd, struct path *path,
927 struct inode **inode, bool reverse_transit)
928{
62a7375e 929 for (;;) {
9875cf80 930 struct vfsmount *mounted;
62a7375e
IK
931 /*
932 * Don't forget we might have a non-mountpoint managed dentry
933 * that wants to block transit.
934 */
935 *inode = path->dentry->d_inode;
936 if (!reverse_transit &&
937 unlikely(managed_dentry_might_block(path->dentry)))
ab90911f 938 return false;
62a7375e
IK
939
940 if (!d_mountpoint(path->dentry))
941 break;
942
9875cf80
DH
943 mounted = __lookup_mnt(path->mnt, path->dentry, 1);
944 if (!mounted)
945 break;
946 path->mnt = mounted;
947 path->dentry = mounted->mnt_root;
948 nd->seq = read_seqcount_begin(&path->dentry->d_seq);
9875cf80
DH
949 }
950
951 if (unlikely(path->dentry->d_flags & DCACHE_NEED_AUTOMOUNT))
952 return reverse_transit;
953 return true;
954}
955
31e6b01f
NP
956static int follow_dotdot_rcu(struct nameidata *nd)
957{
958 struct inode *inode = nd->inode;
959
960 set_root_rcu(nd);
961
9875cf80 962 while (1) {
31e6b01f
NP
963 if (nd->path.dentry == nd->root.dentry &&
964 nd->path.mnt == nd->root.mnt) {
965 break;
966 }
967 if (nd->path.dentry != nd->path.mnt->mnt_root) {
968 struct dentry *old = nd->path.dentry;
969 struct dentry *parent = old->d_parent;
970 unsigned seq;
971
972 seq = read_seqcount_begin(&parent->d_seq);
973 if (read_seqcount_retry(&old->d_seq, nd->seq))
ef7562d5 974 goto failed;
31e6b01f
NP
975 inode = parent->d_inode;
976 nd->path.dentry = parent;
977 nd->seq = seq;
978 break;
979 }
980 if (!follow_up_rcu(&nd->path))
981 break;
982 nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq);
983 inode = nd->path.dentry->d_inode;
984 }
9875cf80 985 __follow_mount_rcu(nd, &nd->path, &inode, true);
31e6b01f 986 nd->inode = inode;
31e6b01f 987 return 0;
ef7562d5
AV
988
989failed:
990 nd->flags &= ~LOOKUP_RCU;
5b6ca027
AV
991 if (!(nd->flags & LOOKUP_ROOT))
992 nd->root.mnt = NULL;
ef7562d5
AV
993 rcu_read_unlock();
994 br_read_unlock(vfsmount_lock);
995 return -ECHILD;
31e6b01f
NP
996}
997
cc53ce53
DH
998/*
999 * Follow down to the covering mount currently visible to userspace. At each
1000 * point, the filesystem owning that dentry may be queried as to whether the
1001 * caller is permitted to proceed or not.
1002 *
1003 * Care must be taken as namespace_sem may be held (indicated by mounting_here
1004 * being true).
1005 */
7cc90cc3 1006int follow_down(struct path *path)
cc53ce53
DH
1007{
1008 unsigned managed;
1009 int ret;
1010
1011 while (managed = ACCESS_ONCE(path->dentry->d_flags),
1012 unlikely(managed & DCACHE_MANAGED_DENTRY)) {
1013 /* Allow the filesystem to manage the transit without i_mutex
1014 * being held.
1015 *
1016 * We indicate to the filesystem if someone is trying to mount
1017 * something here. This gives autofs the chance to deny anyone
1018 * other than its daemon the right to mount on its
1019 * superstructure.
1020 *
1021 * The filesystem may sleep at this point.
1022 */
1023 if (managed & DCACHE_MANAGE_TRANSIT) {
1024 BUG_ON(!path->dentry->d_op);
1025 BUG_ON(!path->dentry->d_op->d_manage);
ab90911f 1026 ret = path->dentry->d_op->d_manage(
1aed3e42 1027 path->dentry, false);
cc53ce53
DH
1028 if (ret < 0)
1029 return ret == -EISDIR ? 0 : ret;
1030 }
1031
1032 /* Transit to a mounted filesystem. */
1033 if (managed & DCACHE_MOUNTED) {
1034 struct vfsmount *mounted = lookup_mnt(path);
1035 if (!mounted)
1036 break;
1037 dput(path->dentry);
1038 mntput(path->mnt);
1039 path->mnt = mounted;
1040 path->dentry = dget(mounted->mnt_root);
1041 continue;
1042 }
1043
1044 /* Don't handle automount points here */
1045 break;
1046 }
1047 return 0;
1048}
1049
9875cf80
DH
1050/*
1051 * Skip to top of mountpoint pile in refwalk mode for follow_dotdot()
1052 */
1053static void follow_mount(struct path *path)
1054{
1055 while (d_mountpoint(path->dentry)) {
1056 struct vfsmount *mounted = lookup_mnt(path);
1057 if (!mounted)
1058 break;
1059 dput(path->dentry);
1060 mntput(path->mnt);
1061 path->mnt = mounted;
1062 path->dentry = dget(mounted->mnt_root);
1063 }
1064}
1065
31e6b01f 1066static void follow_dotdot(struct nameidata *nd)
1da177e4 1067{
2a737871 1068 set_root(nd);
e518ddb7 1069
1da177e4 1070 while(1) {
4ac91378 1071 struct dentry *old = nd->path.dentry;
1da177e4 1072
2a737871
AV
1073 if (nd->path.dentry == nd->root.dentry &&
1074 nd->path.mnt == nd->root.mnt) {
1da177e4
LT
1075 break;
1076 }
4ac91378 1077 if (nd->path.dentry != nd->path.mnt->mnt_root) {
3088dd70
AV
1078 /* rare case of legitimate dget_parent()... */
1079 nd->path.dentry = dget_parent(nd->path.dentry);
1da177e4
LT
1080 dput(old);
1081 break;
1082 }
3088dd70 1083 if (!follow_up(&nd->path))
1da177e4 1084 break;
1da177e4 1085 }
79ed0226 1086 follow_mount(&nd->path);
31e6b01f 1087 nd->inode = nd->path.dentry->d_inode;
1da177e4
LT
1088}
1089
baa03890
NP
1090/*
1091 * Allocate a dentry with name and parent, and perform a parent
1092 * directory ->lookup on it. Returns the new dentry, or ERR_PTR
1093 * on error. parent->d_inode->i_mutex must be held. d_lookup must
1094 * have verified that no child exists while under i_mutex.
1095 */
1096static struct dentry *d_alloc_and_lookup(struct dentry *parent,
1097 struct qstr *name, struct nameidata *nd)
1098{
1099 struct inode *inode = parent->d_inode;
1100 struct dentry *dentry;
1101 struct dentry *old;
1102
1103 /* Don't create child dentry for a dead directory. */
1104 if (unlikely(IS_DEADDIR(inode)))
1105 return ERR_PTR(-ENOENT);
1106
1107 dentry = d_alloc(parent, name);
1108 if (unlikely(!dentry))
1109 return ERR_PTR(-ENOMEM);
1110
1111 old = inode->i_op->lookup(inode, dentry, nd);
1112 if (unlikely(old)) {
1113 dput(dentry);
1114 dentry = old;
1115 }
1116 return dentry;
1117}
1118
1da177e4
LT
1119/*
1120 * It's more convoluted than I'd like it to be, but... it's still fairly
1121 * small and for now I'd prefer to have fast path as straight as possible.
1122 * It _is_ time-critical.
1123 */
1124static int do_lookup(struct nameidata *nd, struct qstr *name,
31e6b01f 1125 struct path *path, struct inode **inode)
1da177e4 1126{
4ac91378 1127 struct vfsmount *mnt = nd->path.mnt;
31e6b01f 1128 struct dentry *dentry, *parent = nd->path.dentry;
5a18fff2
AV
1129 int need_reval = 1;
1130 int status = 1;
9875cf80
DH
1131 int err;
1132
b04f784e
NP
1133 /*
1134 * Rename seqlock is not required here because in the off chance
1135 * of a false negative due to a concurrent rename, we're going to
1136 * do the non-racy lookup, below.
1137 */
31e6b01f
NP
1138 if (nd->flags & LOOKUP_RCU) {
1139 unsigned seq;
31e6b01f
NP
1140 *inode = nd->inode;
1141 dentry = __d_lookup_rcu(parent, name, &seq, inode);
5a18fff2
AV
1142 if (!dentry)
1143 goto unlazy;
1144
31e6b01f
NP
1145 /* Memory barrier in read_seqcount_begin of child is enough */
1146 if (__read_seqcount_retry(&parent->d_seq, nd->seq))
1147 return -ECHILD;
31e6b01f 1148 nd->seq = seq;
5a18fff2 1149
24643087 1150 if (unlikely(dentry->d_flags & DCACHE_OP_REVALIDATE)) {
5a18fff2
AV
1151 status = d_revalidate(dentry, nd);
1152 if (unlikely(status <= 0)) {
1153 if (status != -ECHILD)
1154 need_reval = 0;
1155 goto unlazy;
1156 }
24643087 1157 }
31e6b01f
NP
1158 path->mnt = mnt;
1159 path->dentry = dentry;
9875cf80
DH
1160 if (likely(__follow_mount_rcu(nd, path, inode, false)))
1161 return 0;
5a18fff2 1162unlazy:
19660af7
AV
1163 if (unlazy_walk(nd, dentry))
1164 return -ECHILD;
5a18fff2
AV
1165 } else {
1166 dentry = __d_lookup(parent, name);
9875cf80 1167 }
5a18fff2
AV
1168
1169retry:
1170 if (unlikely(!dentry)) {
1171 struct inode *dir = parent->d_inode;
1172 BUG_ON(nd->inode != dir);
1173
1174 mutex_lock(&dir->i_mutex);
1175 dentry = d_lookup(parent, name);
1176 if (likely(!dentry)) {
1177 dentry = d_alloc_and_lookup(parent, name, nd);
1178 if (IS_ERR(dentry)) {
1179 mutex_unlock(&dir->i_mutex);
1180 return PTR_ERR(dentry);
1181 }
1182 /* known good */
1183 need_reval = 0;
1184 status = 1;
1185 }
1186 mutex_unlock(&dir->i_mutex);
1187 }
1188 if (unlikely(dentry->d_flags & DCACHE_OP_REVALIDATE) && need_reval)
1189 status = d_revalidate(dentry, nd);
1190 if (unlikely(status <= 0)) {
1191 if (status < 0) {
1192 dput(dentry);
1193 return status;
1194 }
1195 if (!d_invalidate(dentry)) {
1196 dput(dentry);
1197 dentry = NULL;
1198 need_reval = 1;
1199 goto retry;
1200 }
24643087 1201 }
5a18fff2 1202
9875cf80
DH
1203 path->mnt = mnt;
1204 path->dentry = dentry;
1205 err = follow_managed(path, nd->flags);
89312214
IK
1206 if (unlikely(err < 0)) {
1207 path_put_conditional(path, nd);
9875cf80 1208 return err;
89312214 1209 }
9875cf80 1210 *inode = path->dentry->d_inode;
1da177e4 1211 return 0;
1da177e4
LT
1212}
1213
52094c8a
AV
1214static inline int may_lookup(struct nameidata *nd)
1215{
1216 if (nd->flags & LOOKUP_RCU) {
1217 int err = exec_permission(nd->inode, IPERM_FLAG_RCU);
1218 if (err != -ECHILD)
1219 return err;
19660af7 1220 if (unlazy_walk(nd, NULL))
52094c8a
AV
1221 return -ECHILD;
1222 }
1223 return exec_permission(nd->inode, 0);
1224}
1225
9856fa1b
AV
1226static inline int handle_dots(struct nameidata *nd, int type)
1227{
1228 if (type == LAST_DOTDOT) {
1229 if (nd->flags & LOOKUP_RCU) {
1230 if (follow_dotdot_rcu(nd))
1231 return -ECHILD;
1232 } else
1233 follow_dotdot(nd);
1234 }
1235 return 0;
1236}
1237
951361f9
AV
1238static void terminate_walk(struct nameidata *nd)
1239{
1240 if (!(nd->flags & LOOKUP_RCU)) {
1241 path_put(&nd->path);
1242 } else {
1243 nd->flags &= ~LOOKUP_RCU;
5b6ca027
AV
1244 if (!(nd->flags & LOOKUP_ROOT))
1245 nd->root.mnt = NULL;
951361f9
AV
1246 rcu_read_unlock();
1247 br_read_unlock(vfsmount_lock);
1248 }
1249}
1250
ce57dfc1
AV
1251static inline int walk_component(struct nameidata *nd, struct path *path,
1252 struct qstr *name, int type, int follow)
1253{
1254 struct inode *inode;
1255 int err;
1256 /*
1257 * "." and ".." are special - ".." especially so because it has
1258 * to be able to know about the current root directory and
1259 * parent relationships.
1260 */
1261 if (unlikely(type != LAST_NORM))
1262 return handle_dots(nd, type);
1263 err = do_lookup(nd, name, path, &inode);
1264 if (unlikely(err)) {
1265 terminate_walk(nd);
1266 return err;
1267 }
1268 if (!inode) {
1269 path_to_nameidata(path, nd);
1270 terminate_walk(nd);
1271 return -ENOENT;
1272 }
1273 if (unlikely(inode->i_op->follow_link) && follow) {
19660af7
AV
1274 if (nd->flags & LOOKUP_RCU) {
1275 if (unlikely(unlazy_walk(nd, path->dentry))) {
1276 terminate_walk(nd);
1277 return -ECHILD;
1278 }
1279 }
ce57dfc1
AV
1280 BUG_ON(inode != path->dentry->d_inode);
1281 return 1;
1282 }
1283 path_to_nameidata(path, nd);
1284 nd->inode = inode;
1285 return 0;
1286}
1287
b356379a
AV
1288/*
1289 * This limits recursive symlink follows to 8, while
1290 * limiting consecutive symlinks to 40.
1291 *
1292 * Without that kind of total limit, nasty chains of consecutive
1293 * symlinks can cause almost arbitrarily long lookups.
1294 */
1295static inline int nested_symlink(struct path *path, struct nameidata *nd)
1296{
1297 int res;
1298
1299 BUG_ON(nd->depth >= MAX_NESTED_LINKS);
1300 if (unlikely(current->link_count >= MAX_NESTED_LINKS)) {
1301 path_put_conditional(path, nd);
1302 path_put(&nd->path);
1303 return -ELOOP;
1304 }
1305
1306 nd->depth++;
1307 current->link_count++;
1308
1309 do {
1310 struct path link = *path;
1311 void *cookie;
574197e0
AV
1312
1313 res = follow_link(&link, nd, &cookie);
b356379a
AV
1314 if (!res)
1315 res = walk_component(nd, path, &nd->last,
1316 nd->last_type, LOOKUP_FOLLOW);
574197e0 1317 put_link(nd, &link, cookie);
b356379a
AV
1318 } while (res > 0);
1319
1320 current->link_count--;
1321 nd->depth--;
1322 return res;
1323}
1324
1da177e4
LT
1325/*
1326 * Name resolution.
ea3834d9
PM
1327 * This is the basic name resolution function, turning a pathname into
1328 * the final dentry. We expect 'base' to be positive and a directory.
1da177e4 1329 *
ea3834d9
PM
1330 * Returns 0 and nd will have valid dentry and mnt on success.
1331 * Returns error and drops reference to input namei data on failure.
1da177e4 1332 */
6de88d72 1333static int link_path_walk(const char *name, struct nameidata *nd)
1da177e4
LT
1334{
1335 struct path next;
1da177e4
LT
1336 int err;
1337 unsigned int lookup_flags = nd->flags;
1338
1339 while (*name=='/')
1340 name++;
1341 if (!*name)
086e183a 1342 return 0;
1da177e4 1343
1da177e4
LT
1344 /* At this point we know we have a real path component. */
1345 for(;;) {
1346 unsigned long hash;
1347 struct qstr this;
1348 unsigned int c;
fe479a58 1349 int type;
1da177e4 1350
cdce5d6b 1351 nd->flags |= LOOKUP_CONTINUE;
52094c8a
AV
1352
1353 err = may_lookup(nd);
1da177e4
LT
1354 if (err)
1355 break;
1356
1357 this.name = name;
1358 c = *(const unsigned char *)name;
1359
1360 hash = init_name_hash();
1361 do {
1362 name++;
1363 hash = partial_name_hash(c, hash);
1364 c = *(const unsigned char *)name;
1365 } while (c && (c != '/'));
1366 this.len = name - (const char *) this.name;
1367 this.hash = end_name_hash(hash);
1368
fe479a58
AV
1369 type = LAST_NORM;
1370 if (this.name[0] == '.') switch (this.len) {
1371 case 2:
16c2cd71 1372 if (this.name[1] == '.') {
fe479a58 1373 type = LAST_DOTDOT;
16c2cd71
AV
1374 nd->flags |= LOOKUP_JUMPED;
1375 }
fe479a58
AV
1376 break;
1377 case 1:
1378 type = LAST_DOT;
1379 }
5a202bcd
AV
1380 if (likely(type == LAST_NORM)) {
1381 struct dentry *parent = nd->path.dentry;
16c2cd71 1382 nd->flags &= ~LOOKUP_JUMPED;
5a202bcd
AV
1383 if (unlikely(parent->d_flags & DCACHE_OP_HASH)) {
1384 err = parent->d_op->d_hash(parent, nd->inode,
1385 &this);
1386 if (err < 0)
1387 break;
1388 }
1389 }
fe479a58 1390
1da177e4
LT
1391 /* remove trailing slashes? */
1392 if (!c)
1393 goto last_component;
1394 while (*++name == '/');
1395 if (!*name)
b356379a 1396 goto last_component;
1da177e4 1397
ce57dfc1
AV
1398 err = walk_component(nd, &next, &this, type, LOOKUP_FOLLOW);
1399 if (err < 0)
1400 return err;
1da177e4 1401
ce57dfc1 1402 if (err) {
b356379a 1403 err = nested_symlink(&next, nd);
1da177e4 1404 if (err)
a7472bab 1405 return err;
31e6b01f 1406 }
1da177e4 1407 err = -ENOTDIR;
31e6b01f 1408 if (!nd->inode->i_op->lookup)
1da177e4
LT
1409 break;
1410 continue;
1411 /* here ends the main loop */
1412
1da177e4 1413last_component:
f55eab82
TM
1414 /* Clear LOOKUP_CONTINUE iff it was previously unset */
1415 nd->flags &= lookup_flags | ~LOOKUP_CONTINUE;
b356379a
AV
1416 nd->last = this;
1417 nd->last_type = type;
086e183a 1418 return 0;
1da177e4 1419 }
951361f9 1420 terminate_walk(nd);
1da177e4
LT
1421 return err;
1422}
1423
70e9b357
AV
1424static int path_init(int dfd, const char *name, unsigned int flags,
1425 struct nameidata *nd, struct file **fp)
31e6b01f
NP
1426{
1427 int retval = 0;
1428 int fput_needed;
1429 struct file *file;
1430
1431 nd->last_type = LAST_ROOT; /* if there are only slashes... */
16c2cd71 1432 nd->flags = flags | LOOKUP_JUMPED;
31e6b01f 1433 nd->depth = 0;
5b6ca027
AV
1434 if (flags & LOOKUP_ROOT) {
1435 struct inode *inode = nd->root.dentry->d_inode;
73d049a4
AV
1436 if (*name) {
1437 if (!inode->i_op->lookup)
1438 return -ENOTDIR;
1439 retval = inode_permission(inode, MAY_EXEC);
1440 if (retval)
1441 return retval;
1442 }
5b6ca027
AV
1443 nd->path = nd->root;
1444 nd->inode = inode;
1445 if (flags & LOOKUP_RCU) {
1446 br_read_lock(vfsmount_lock);
1447 rcu_read_lock();
1448 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
1449 } else {
1450 path_get(&nd->path);
1451 }
1452 return 0;
1453 }
1454
31e6b01f 1455 nd->root.mnt = NULL;
31e6b01f
NP
1456
1457 if (*name=='/') {
e41f7d4e
AV
1458 if (flags & LOOKUP_RCU) {
1459 br_read_lock(vfsmount_lock);
1460 rcu_read_lock();
1461 set_root_rcu(nd);
1462 } else {
1463 set_root(nd);
1464 path_get(&nd->root);
1465 }
1466 nd->path = nd->root;
31e6b01f 1467 } else if (dfd == AT_FDCWD) {
e41f7d4e
AV
1468 if (flags & LOOKUP_RCU) {
1469 struct fs_struct *fs = current->fs;
1470 unsigned seq;
31e6b01f 1471
e41f7d4e
AV
1472 br_read_lock(vfsmount_lock);
1473 rcu_read_lock();
c28cc364 1474
e41f7d4e
AV
1475 do {
1476 seq = read_seqcount_begin(&fs->seq);
1477 nd->path = fs->pwd;
1478 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
1479 } while (read_seqcount_retry(&fs->seq, seq));
1480 } else {
1481 get_fs_pwd(current->fs, &nd->path);
1482 }
31e6b01f
NP
1483 } else {
1484 struct dentry *dentry;
1485
1abf0c71 1486 file = fget_raw_light(dfd, &fput_needed);
31e6b01f
NP
1487 retval = -EBADF;
1488 if (!file)
1489 goto out_fail;
1490
1491 dentry = file->f_path.dentry;
1492
f52e0c11
AV
1493 if (*name) {
1494 retval = -ENOTDIR;
1495 if (!S_ISDIR(dentry->d_inode->i_mode))
1496 goto fput_fail;
31e6b01f 1497
f52e0c11
AV
1498 retval = file_permission(file, MAY_EXEC);
1499 if (retval)
1500 goto fput_fail;
1501 }
31e6b01f
NP
1502
1503 nd->path = file->f_path;
e41f7d4e
AV
1504 if (flags & LOOKUP_RCU) {
1505 if (fput_needed)
70e9b357 1506 *fp = file;
e41f7d4e
AV
1507 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
1508 br_read_lock(vfsmount_lock);
1509 rcu_read_lock();
1510 } else {
1511 path_get(&file->f_path);
1512 fput_light(file, fput_needed);
1513 }
31e6b01f 1514 }
31e6b01f 1515
31e6b01f 1516 nd->inode = nd->path.dentry->d_inode;
9b4a9b14 1517 return 0;
2dfdd266 1518
9b4a9b14
AV
1519fput_fail:
1520 fput_light(file, fput_needed);
1521out_fail:
1522 return retval;
1523}
1524
bd92d7fe
AV
1525static inline int lookup_last(struct nameidata *nd, struct path *path)
1526{
1527 if (nd->last_type == LAST_NORM && nd->last.name[nd->last.len])
1528 nd->flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
1529
1530 nd->flags &= ~LOOKUP_PARENT;
1531 return walk_component(nd, path, &nd->last, nd->last_type,
1532 nd->flags & LOOKUP_FOLLOW);
1533}
1534
9b4a9b14 1535/* Returns 0 and nd will be valid on success; Retuns error, otherwise. */
ee0827cd 1536static int path_lookupat(int dfd, const char *name,
9b4a9b14
AV
1537 unsigned int flags, struct nameidata *nd)
1538{
70e9b357 1539 struct file *base = NULL;
bd92d7fe
AV
1540 struct path path;
1541 int err;
31e6b01f
NP
1542
1543 /*
1544 * Path walking is largely split up into 2 different synchronisation
1545 * schemes, rcu-walk and ref-walk (explained in
1546 * Documentation/filesystems/path-lookup.txt). These share much of the
1547 * path walk code, but some things particularly setup, cleanup, and
1548 * following mounts are sufficiently divergent that functions are
1549 * duplicated. Typically there is a function foo(), and its RCU
1550 * analogue, foo_rcu().
1551 *
1552 * -ECHILD is the error number of choice (just to avoid clashes) that
1553 * is returned if some aspect of an rcu-walk fails. Such an error must
1554 * be handled by restarting a traditional ref-walk (which will always
1555 * be able to complete).
1556 */
bd92d7fe 1557 err = path_init(dfd, name, flags | LOOKUP_PARENT, nd, &base);
ee0827cd 1558
bd92d7fe
AV
1559 if (unlikely(err))
1560 return err;
ee0827cd
AV
1561
1562 current->total_link_count = 0;
bd92d7fe
AV
1563 err = link_path_walk(name, nd);
1564
1565 if (!err && !(flags & LOOKUP_PARENT)) {
bd92d7fe
AV
1566 err = lookup_last(nd, &path);
1567 while (err > 0) {
1568 void *cookie;
1569 struct path link = path;
bd92d7fe 1570 nd->flags |= LOOKUP_PARENT;
574197e0 1571 err = follow_link(&link, nd, &cookie);
bd92d7fe
AV
1572 if (!err)
1573 err = lookup_last(nd, &path);
574197e0 1574 put_link(nd, &link, cookie);
bd92d7fe
AV
1575 }
1576 }
ee0827cd 1577
9f1fafee
AV
1578 if (!err)
1579 err = complete_walk(nd);
bd92d7fe
AV
1580
1581 if (!err && nd->flags & LOOKUP_DIRECTORY) {
1582 if (!nd->inode->i_op->lookup) {
1583 path_put(&nd->path);
bd23a539 1584 err = -ENOTDIR;
bd92d7fe
AV
1585 }
1586 }
16c2cd71 1587
70e9b357
AV
1588 if (base)
1589 fput(base);
ee0827cd 1590
5b6ca027 1591 if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT)) {
2a737871
AV
1592 path_put(&nd->root);
1593 nd->root.mnt = NULL;
1594 }
bd92d7fe 1595 return err;
ee0827cd 1596}
31e6b01f 1597
ee0827cd
AV
1598static int do_path_lookup(int dfd, const char *name,
1599 unsigned int flags, struct nameidata *nd)
1600{
1601 int retval = path_lookupat(dfd, name, flags | LOOKUP_RCU, nd);
1602 if (unlikely(retval == -ECHILD))
1603 retval = path_lookupat(dfd, name, flags, nd);
1604 if (unlikely(retval == -ESTALE))
1605 retval = path_lookupat(dfd, name, flags | LOOKUP_REVAL, nd);
31e6b01f
NP
1606
1607 if (likely(!retval)) {
1608 if (unlikely(!audit_dummy_context())) {
1609 if (nd->path.dentry && nd->inode)
1610 audit_inode(name, nd->path.dentry);
1611 }
1612 }
170aa3d0 1613 return retval;
1da177e4
LT
1614}
1615
c9c6cac0 1616int kern_path_parent(const char *name, struct nameidata *nd)
5590ff0d 1617{
c9c6cac0 1618 return do_path_lookup(AT_FDCWD, name, LOOKUP_PARENT, nd);
5590ff0d
UD
1619}
1620
d1811465
AV
1621int kern_path(const char *name, unsigned int flags, struct path *path)
1622{
1623 struct nameidata nd;
1624 int res = do_path_lookup(AT_FDCWD, name, flags, &nd);
1625 if (!res)
1626 *path = nd.path;
1627 return res;
1628}
1629
16f18200
JJS
1630/**
1631 * vfs_path_lookup - lookup a file path relative to a dentry-vfsmount pair
1632 * @dentry: pointer to dentry of the base directory
1633 * @mnt: pointer to vfs mount of the base directory
1634 * @name: pointer to file name
1635 * @flags: lookup flags
1636 * @nd: pointer to nameidata
1637 */
1638int vfs_path_lookup(struct dentry *dentry, struct vfsmount *mnt,
1639 const char *name, unsigned int flags,
1640 struct nameidata *nd)
1641{
5b6ca027
AV
1642 nd->root.dentry = dentry;
1643 nd->root.mnt = mnt;
1644 /* the first argument of do_path_lookup() is ignored with LOOKUP_ROOT */
1645 return do_path_lookup(AT_FDCWD, name, flags | LOOKUP_ROOT, nd);
16f18200
JJS
1646}
1647
eead1911
CH
1648static struct dentry *__lookup_hash(struct qstr *name,
1649 struct dentry *base, struct nameidata *nd)
1da177e4 1650{
81fca444 1651 struct inode *inode = base->d_inode;
057f6c01 1652 struct dentry *dentry;
1da177e4
LT
1653 int err;
1654
b74c79e9 1655 err = exec_permission(inode, 0);
81fca444
CH
1656 if (err)
1657 return ERR_PTR(err);
1da177e4 1658
b04f784e
NP
1659 /*
1660 * Don't bother with __d_lookup: callers are for creat as
1661 * well as unlink, so a lot of the time it would cost
1662 * a double lookup.
6e6b1bd1 1663 */
b04f784e 1664 dentry = d_lookup(base, name);
6e6b1bd1 1665
fb045adb 1666 if (dentry && (dentry->d_flags & DCACHE_OP_REVALIDATE))
6e6b1bd1
AV
1667 dentry = do_revalidate(dentry, nd);
1668
baa03890
NP
1669 if (!dentry)
1670 dentry = d_alloc_and_lookup(base, name, nd);
5a202bcd 1671
1da177e4
LT
1672 return dentry;
1673}
1674
057f6c01
JM
1675/*
1676 * Restricted form of lookup. Doesn't follow links, single-component only,
1677 * needs parent already locked. Doesn't follow mounts.
1678 * SMP-safe.
1679 */
eead1911 1680static struct dentry *lookup_hash(struct nameidata *nd)
057f6c01 1681{
4ac91378 1682 return __lookup_hash(&nd->last, nd->path.dentry, nd);
1da177e4
LT
1683}
1684
eead1911 1685/**
a6b91919 1686 * lookup_one_len - filesystem helper to lookup single pathname component
eead1911
CH
1687 * @name: pathname component to lookup
1688 * @base: base directory to lookup from
1689 * @len: maximum length @len should be interpreted to
1690 *
a6b91919
RD
1691 * Note that this routine is purely a helper for filesystem usage and should
1692 * not be called by generic code. Also note that by using this function the
eead1911
CH
1693 * nameidata argument is passed to the filesystem methods and a filesystem
1694 * using this helper needs to be prepared for that.
1695 */
057f6c01
JM
1696struct dentry *lookup_one_len(const char *name, struct dentry *base, int len)
1697{
057f6c01 1698 struct qstr this;
6a96ba54
AV
1699 unsigned long hash;
1700 unsigned int c;
057f6c01 1701
2f9092e1
DW
1702 WARN_ON_ONCE(!mutex_is_locked(&base->d_inode->i_mutex));
1703
6a96ba54
AV
1704 this.name = name;
1705 this.len = len;
1706 if (!len)
1707 return ERR_PTR(-EACCES);
1708
1709 hash = init_name_hash();
1710 while (len--) {
1711 c = *(const unsigned char *)name++;
1712 if (c == '/' || c == '\0')
1713 return ERR_PTR(-EACCES);
1714 hash = partial_name_hash(c, hash);
1715 }
1716 this.hash = end_name_hash(hash);
5a202bcd
AV
1717 /*
1718 * See if the low-level filesystem might want
1719 * to use its own hash..
1720 */
1721 if (base->d_flags & DCACHE_OP_HASH) {
1722 int err = base->d_op->d_hash(base, base->d_inode, &this);
1723 if (err < 0)
1724 return ERR_PTR(err);
1725 }
eead1911 1726
49705b77 1727 return __lookup_hash(&this, base, NULL);
057f6c01
JM
1728}
1729
2d8f3038
AV
1730int user_path_at(int dfd, const char __user *name, unsigned flags,
1731 struct path *path)
1da177e4 1732{
2d8f3038 1733 struct nameidata nd;
f52e0c11 1734 char *tmp = getname_flags(name, flags);
1da177e4 1735 int err = PTR_ERR(tmp);
1da177e4 1736 if (!IS_ERR(tmp)) {
2d8f3038
AV
1737
1738 BUG_ON(flags & LOOKUP_PARENT);
1739
1740 err = do_path_lookup(dfd, tmp, flags, &nd);
1da177e4 1741 putname(tmp);
2d8f3038
AV
1742 if (!err)
1743 *path = nd.path;
1da177e4
LT
1744 }
1745 return err;
1746}
1747
2ad94ae6
AV
1748static int user_path_parent(int dfd, const char __user *path,
1749 struct nameidata *nd, char **name)
1750{
1751 char *s = getname(path);
1752 int error;
1753
1754 if (IS_ERR(s))
1755 return PTR_ERR(s);
1756
1757 error = do_path_lookup(dfd, s, LOOKUP_PARENT, nd);
1758 if (error)
1759 putname(s);
1760 else
1761 *name = s;
1762
1763 return error;
1764}
1765
1da177e4
LT
1766/*
1767 * It's inline, so penalty for filesystems that don't use sticky bit is
1768 * minimal.
1769 */
1770static inline int check_sticky(struct inode *dir, struct inode *inode)
1771{
da9592ed
DH
1772 uid_t fsuid = current_fsuid();
1773
1da177e4
LT
1774 if (!(dir->i_mode & S_ISVTX))
1775 return 0;
e795b717
SH
1776 if (current_user_ns() != inode_userns(inode))
1777 goto other_userns;
da9592ed 1778 if (inode->i_uid == fsuid)
1da177e4 1779 return 0;
da9592ed 1780 if (dir->i_uid == fsuid)
1da177e4 1781 return 0;
e795b717
SH
1782
1783other_userns:
1784 return !ns_capable(inode_userns(inode), CAP_FOWNER);
1da177e4
LT
1785}
1786
1787/*
1788 * Check whether we can remove a link victim from directory dir, check
1789 * whether the type of victim is right.
1790 * 1. We can't do it if dir is read-only (done in permission())
1791 * 2. We should have write and exec permissions on dir
1792 * 3. We can't remove anything from append-only dir
1793 * 4. We can't do anything with immutable dir (done in permission())
1794 * 5. If the sticky bit on dir is set we should either
1795 * a. be owner of dir, or
1796 * b. be owner of victim, or
1797 * c. have CAP_FOWNER capability
1798 * 6. If the victim is append-only or immutable we can't do antyhing with
1799 * links pointing to it.
1800 * 7. If we were asked to remove a directory and victim isn't one - ENOTDIR.
1801 * 8. If we were asked to remove a non-directory and victim isn't one - EISDIR.
1802 * 9. We can't remove a root or mountpoint.
1803 * 10. We don't allow removal of NFS sillyrenamed files; it's handled by
1804 * nfs_async_unlink().
1805 */
858119e1 1806static int may_delete(struct inode *dir,struct dentry *victim,int isdir)
1da177e4
LT
1807{
1808 int error;
1809
1810 if (!victim->d_inode)
1811 return -ENOENT;
1812
1813 BUG_ON(victim->d_parent->d_inode != dir);
cccc6bba 1814 audit_inode_child(victim, dir);
1da177e4 1815
f419a2e3 1816 error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
1da177e4
LT
1817 if (error)
1818 return error;
1819 if (IS_APPEND(dir))
1820 return -EPERM;
1821 if (check_sticky(dir, victim->d_inode)||IS_APPEND(victim->d_inode)||
f9454548 1822 IS_IMMUTABLE(victim->d_inode) || IS_SWAPFILE(victim->d_inode))
1da177e4
LT
1823 return -EPERM;
1824 if (isdir) {
1825 if (!S_ISDIR(victim->d_inode->i_mode))
1826 return -ENOTDIR;
1827 if (IS_ROOT(victim))
1828 return -EBUSY;
1829 } else if (S_ISDIR(victim->d_inode->i_mode))
1830 return -EISDIR;
1831 if (IS_DEADDIR(dir))
1832 return -ENOENT;
1833 if (victim->d_flags & DCACHE_NFSFS_RENAMED)
1834 return -EBUSY;
1835 return 0;
1836}
1837
1838/* Check whether we can create an object with dentry child in directory
1839 * dir.
1840 * 1. We can't do it if child already exists (open has special treatment for
1841 * this case, but since we are inlined it's OK)
1842 * 2. We can't do it if dir is read-only (done in permission())
1843 * 3. We should have write and exec permissions on dir
1844 * 4. We can't do it if dir is immutable (done in permission())
1845 */
a95164d9 1846static inline int may_create(struct inode *dir, struct dentry *child)
1da177e4
LT
1847{
1848 if (child->d_inode)
1849 return -EEXIST;
1850 if (IS_DEADDIR(dir))
1851 return -ENOENT;
f419a2e3 1852 return inode_permission(dir, MAY_WRITE | MAY_EXEC);
1da177e4
LT
1853}
1854
1da177e4
LT
1855/*
1856 * p1 and p2 should be directories on the same fs.
1857 */
1858struct dentry *lock_rename(struct dentry *p1, struct dentry *p2)
1859{
1860 struct dentry *p;
1861
1862 if (p1 == p2) {
f2eace23 1863 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
1da177e4
LT
1864 return NULL;
1865 }
1866
a11f3a05 1867 mutex_lock(&p1->d_inode->i_sb->s_vfs_rename_mutex);
1da177e4 1868
e2761a11
OH
1869 p = d_ancestor(p2, p1);
1870 if (p) {
1871 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_PARENT);
1872 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_CHILD);
1873 return p;
1da177e4
LT
1874 }
1875
e2761a11
OH
1876 p = d_ancestor(p1, p2);
1877 if (p) {
1878 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
1879 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_CHILD);
1880 return p;
1da177e4
LT
1881 }
1882
f2eace23
IM
1883 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
1884 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_CHILD);
1da177e4
LT
1885 return NULL;
1886}
1887
1888void unlock_rename(struct dentry *p1, struct dentry *p2)
1889{
1b1dcc1b 1890 mutex_unlock(&p1->d_inode->i_mutex);
1da177e4 1891 if (p1 != p2) {
1b1dcc1b 1892 mutex_unlock(&p2->d_inode->i_mutex);
a11f3a05 1893 mutex_unlock(&p1->d_inode->i_sb->s_vfs_rename_mutex);
1da177e4
LT
1894 }
1895}
1896
1897int vfs_create(struct inode *dir, struct dentry *dentry, int mode,
1898 struct nameidata *nd)
1899{
a95164d9 1900 int error = may_create(dir, dentry);
1da177e4
LT
1901
1902 if (error)
1903 return error;
1904
acfa4380 1905 if (!dir->i_op->create)
1da177e4
LT
1906 return -EACCES; /* shouldn't it be ENOSYS? */
1907 mode &= S_IALLUGO;
1908 mode |= S_IFREG;
1909 error = security_inode_create(dir, dentry, mode);
1910 if (error)
1911 return error;
1da177e4 1912 error = dir->i_op->create(dir, dentry, mode, nd);
a74574aa 1913 if (!error)
f38aa942 1914 fsnotify_create(dir, dentry);
1da177e4
LT
1915 return error;
1916}
1917
73d049a4 1918static int may_open(struct path *path, int acc_mode, int flag)
1da177e4 1919{
3fb64190 1920 struct dentry *dentry = path->dentry;
1da177e4
LT
1921 struct inode *inode = dentry->d_inode;
1922 int error;
1923
bcda7652
AV
1924 /* O_PATH? */
1925 if (!acc_mode)
1926 return 0;
1927
1da177e4
LT
1928 if (!inode)
1929 return -ENOENT;
1930
c8fe8f30
CH
1931 switch (inode->i_mode & S_IFMT) {
1932 case S_IFLNK:
1da177e4 1933 return -ELOOP;
c8fe8f30
CH
1934 case S_IFDIR:
1935 if (acc_mode & MAY_WRITE)
1936 return -EISDIR;
1937 break;
1938 case S_IFBLK:
1939 case S_IFCHR:
3fb64190 1940 if (path->mnt->mnt_flags & MNT_NODEV)
1da177e4 1941 return -EACCES;
c8fe8f30
CH
1942 /*FALLTHRU*/
1943 case S_IFIFO:
1944 case S_IFSOCK:
1da177e4 1945 flag &= ~O_TRUNC;
c8fe8f30 1946 break;
4a3fd211 1947 }
b41572e9 1948
3fb64190 1949 error = inode_permission(inode, acc_mode);
b41572e9
DH
1950 if (error)
1951 return error;
6146f0d5 1952
1da177e4
LT
1953 /*
1954 * An append-only file must be opened in append mode for writing.
1955 */
1956 if (IS_APPEND(inode)) {
8737c930 1957 if ((flag & O_ACCMODE) != O_RDONLY && !(flag & O_APPEND))
7715b521 1958 return -EPERM;
1da177e4 1959 if (flag & O_TRUNC)
7715b521 1960 return -EPERM;
1da177e4
LT
1961 }
1962
1963 /* O_NOATIME can only be set by the owner or superuser */
2e149670 1964 if (flag & O_NOATIME && !inode_owner_or_capable(inode))
7715b521 1965 return -EPERM;
1da177e4
LT
1966
1967 /*
1968 * Ensure there are no outstanding leases on the file.
1969 */
b65a9cfc 1970 return break_lease(inode, flag);
7715b521 1971}
1da177e4 1972
e1181ee6 1973static int handle_truncate(struct file *filp)
7715b521 1974{
e1181ee6 1975 struct path *path = &filp->f_path;
7715b521
AV
1976 struct inode *inode = path->dentry->d_inode;
1977 int error = get_write_access(inode);
1978 if (error)
1979 return error;
1980 /*
1981 * Refuse to truncate files with mandatory locks held on them.
1982 */
1983 error = locks_verify_locked(inode);
1984 if (!error)
ea0d3ab2 1985 error = security_path_truncate(path);
7715b521
AV
1986 if (!error) {
1987 error = do_truncate(path->dentry, 0,
1988 ATTR_MTIME|ATTR_CTIME|ATTR_OPEN,
e1181ee6 1989 filp);
7715b521
AV
1990 }
1991 put_write_access(inode);
acd0c935 1992 return error;
1da177e4
LT
1993}
1994
d57999e1
DH
1995/*
1996 * Note that while the flag value (low two bits) for sys_open means:
1997 * 00 - read-only
1998 * 01 - write-only
1999 * 10 - read-write
2000 * 11 - special
2001 * it is changed into
2002 * 00 - no permissions needed
2003 * 01 - read-permission
2004 * 10 - write-permission
2005 * 11 - read-write
2006 * for the internal routines (ie open_namei()/follow_link() etc)
2007 * This is more logical, and also allows the 00 "no perm needed"
2008 * to be used for symlinks (where the permissions are checked
2009 * later).
2010 *
2011*/
2012static inline int open_to_namei_flags(int flag)
2013{
2014 if ((flag+1) & O_ACCMODE)
2015 flag++;
2016 return flag;
2017}
2018
31e6b01f 2019/*
fe2d35ff 2020 * Handle the last step of open()
31e6b01f 2021 */
fb1cc555 2022static struct file *do_last(struct nameidata *nd, struct path *path,
c3e380b0 2023 const struct open_flags *op, const char *pathname)
fb1cc555 2024{
a1e28038 2025 struct dentry *dir = nd->path.dentry;
6c0d46c4 2026 struct dentry *dentry;
ca344a89 2027 int open_flag = op->open_flag;
6c0d46c4 2028 int will_truncate = open_flag & O_TRUNC;
ca344a89 2029 int want_write = 0;
bcda7652 2030 int acc_mode = op->acc_mode;
fb1cc555 2031 struct file *filp;
16c2cd71 2032 int error;
1f36f774 2033
c3e380b0
AV
2034 nd->flags &= ~LOOKUP_PARENT;
2035 nd->flags |= op->intent;
2036
1f36f774
AV
2037 switch (nd->last_type) {
2038 case LAST_DOTDOT:
176306f5 2039 case LAST_DOT:
fe2d35ff
AV
2040 error = handle_dots(nd, nd->last_type);
2041 if (error)
2042 return ERR_PTR(error);
1f36f774 2043 /* fallthrough */
1f36f774 2044 case LAST_ROOT:
9f1fafee 2045 error = complete_walk(nd);
16c2cd71 2046 if (error)
9f1fafee 2047 return ERR_PTR(error);
fe2d35ff 2048 audit_inode(pathname, nd->path.dentry);
ca344a89 2049 if (open_flag & O_CREAT) {
fe2d35ff
AV
2050 error = -EISDIR;
2051 goto exit;
2052 }
2053 goto ok;
1f36f774 2054 case LAST_BIND:
9f1fafee 2055 error = complete_walk(nd);
16c2cd71 2056 if (error)
9f1fafee 2057 return ERR_PTR(error);
1f36f774 2058 audit_inode(pathname, dir);
67ee3ad2 2059 goto ok;
1f36f774 2060 }
67ee3ad2 2061
ca344a89 2062 if (!(open_flag & O_CREAT)) {
bcda7652 2063 int symlink_ok = 0;
fe2d35ff
AV
2064 if (nd->last.name[nd->last.len])
2065 nd->flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
bcda7652
AV
2066 if (open_flag & O_PATH && !(nd->flags & LOOKUP_FOLLOW))
2067 symlink_ok = 1;
fe2d35ff 2068 /* we _can_ be in RCU mode here */
ce57dfc1
AV
2069 error = walk_component(nd, path, &nd->last, LAST_NORM,
2070 !symlink_ok);
2071 if (error < 0)
fe2d35ff 2072 return ERR_PTR(error);
ce57dfc1 2073 if (error) /* symlink */
fe2d35ff 2074 return NULL;
fe2d35ff 2075 /* sayonara */
9f1fafee
AV
2076 error = complete_walk(nd);
2077 if (error)
2078 return ERR_PTR(-ECHILD);
fe2d35ff
AV
2079
2080 error = -ENOTDIR;
2081 if (nd->flags & LOOKUP_DIRECTORY) {
ce57dfc1 2082 if (!nd->inode->i_op->lookup)
fe2d35ff
AV
2083 goto exit;
2084 }
2085 audit_inode(pathname, nd->path.dentry);
2086 goto ok;
2087 }
2088
2089 /* create side of things */
9f1fafee
AV
2090 error = complete_walk(nd);
2091 if (error)
2092 return ERR_PTR(error);
fe2d35ff
AV
2093
2094 audit_inode(pathname, dir);
16c2cd71 2095 error = -EISDIR;
1f36f774 2096 /* trailing slashes? */
31e6b01f
NP
2097 if (nd->last.name[nd->last.len])
2098 goto exit;
a2c36b45 2099
a1e28038
AV
2100 mutex_lock(&dir->d_inode->i_mutex);
2101
6c0d46c4
AV
2102 dentry = lookup_hash(nd);
2103 error = PTR_ERR(dentry);
2104 if (IS_ERR(dentry)) {
fb1cc555
AV
2105 mutex_unlock(&dir->d_inode->i_mutex);
2106 goto exit;
2107 }
2108
6c0d46c4
AV
2109 path->dentry = dentry;
2110 path->mnt = nd->path.mnt;
2111
fb1cc555 2112 /* Negative dentry, just create the file */
6c0d46c4
AV
2113 if (!dentry->d_inode) {
2114 int mode = op->mode;
2115 if (!IS_POSIXACL(dir->d_inode))
2116 mode &= ~current_umask();
fb1cc555
AV
2117 /*
2118 * This write is needed to ensure that a
6c0d46c4 2119 * rw->ro transition does not occur between
fb1cc555
AV
2120 * the time when the file is created and when
2121 * a permanent write count is taken through
2122 * the 'struct file' in nameidata_to_filp().
2123 */
2124 error = mnt_want_write(nd->path.mnt);
2125 if (error)
2126 goto exit_mutex_unlock;
ca344a89 2127 want_write = 1;
9b44f1b3 2128 /* Don't check for write permission, don't truncate */
ca344a89 2129 open_flag &= ~O_TRUNC;
6c0d46c4 2130 will_truncate = 0;
bcda7652 2131 acc_mode = MAY_OPEN;
6c0d46c4
AV
2132 error = security_path_mknod(&nd->path, dentry, mode, 0);
2133 if (error)
2134 goto exit_mutex_unlock;
2135 error = vfs_create(dir->d_inode, dentry, mode, nd);
2136 if (error)
2137 goto exit_mutex_unlock;
2138 mutex_unlock(&dir->d_inode->i_mutex);
2139 dput(nd->path.dentry);
2140 nd->path.dentry = dentry;
ca344a89 2141 goto common;
fb1cc555
AV
2142 }
2143
2144 /*
2145 * It already exists.
2146 */
2147 mutex_unlock(&dir->d_inode->i_mutex);
2148 audit_inode(pathname, path->dentry);
2149
2150 error = -EEXIST;
ca344a89 2151 if (open_flag & O_EXCL)
fb1cc555
AV
2152 goto exit_dput;
2153
9875cf80
DH
2154 error = follow_managed(path, nd->flags);
2155 if (error < 0)
2156 goto exit_dput;
fb1cc555
AV
2157
2158 error = -ENOENT;
2159 if (!path->dentry->d_inode)
2160 goto exit_dput;
9e67f361
AV
2161
2162 if (path->dentry->d_inode->i_op->follow_link)
fb1cc555 2163 return NULL;
fb1cc555
AV
2164
2165 path_to_nameidata(path, nd);
31e6b01f 2166 nd->inode = path->dentry->d_inode;
fb1cc555 2167 error = -EISDIR;
31e6b01f 2168 if (S_ISDIR(nd->inode->i_mode))
fb1cc555 2169 goto exit;
67ee3ad2 2170ok:
6c0d46c4
AV
2171 if (!S_ISREG(nd->inode->i_mode))
2172 will_truncate = 0;
2173
0f9d1a10
AV
2174 if (will_truncate) {
2175 error = mnt_want_write(nd->path.mnt);
2176 if (error)
2177 goto exit;
ca344a89 2178 want_write = 1;
0f9d1a10 2179 }
ca344a89 2180common:
bcda7652 2181 error = may_open(&nd->path, acc_mode, open_flag);
ca344a89 2182 if (error)
0f9d1a10 2183 goto exit;
0f9d1a10
AV
2184 filp = nameidata_to_filp(nd);
2185 if (!IS_ERR(filp)) {
2186 error = ima_file_check(filp, op->acc_mode);
2187 if (error) {
2188 fput(filp);
2189 filp = ERR_PTR(error);
2190 }
2191 }
2192 if (!IS_ERR(filp)) {
2193 if (will_truncate) {
2194 error = handle_truncate(filp);
2195 if (error) {
2196 fput(filp);
2197 filp = ERR_PTR(error);
2198 }
2199 }
2200 }
ca344a89
AV
2201out:
2202 if (want_write)
0f9d1a10
AV
2203 mnt_drop_write(nd->path.mnt);
2204 path_put(&nd->path);
fb1cc555
AV
2205 return filp;
2206
2207exit_mutex_unlock:
2208 mutex_unlock(&dir->d_inode->i_mutex);
2209exit_dput:
2210 path_put_conditional(path, nd);
2211exit:
ca344a89
AV
2212 filp = ERR_PTR(error);
2213 goto out;
fb1cc555
AV
2214}
2215
13aab428 2216static struct file *path_openat(int dfd, const char *pathname,
73d049a4 2217 struct nameidata *nd, const struct open_flags *op, int flags)
1da177e4 2218{
fe2d35ff 2219 struct file *base = NULL;
4a3fd211 2220 struct file *filp;
9850c056 2221 struct path path;
13aab428 2222 int error;
31e6b01f
NP
2223
2224 filp = get_empty_filp();
2225 if (!filp)
2226 return ERR_PTR(-ENFILE);
2227
47c805dc 2228 filp->f_flags = op->open_flag;
73d049a4
AV
2229 nd->intent.open.file = filp;
2230 nd->intent.open.flags = open_to_namei_flags(op->open_flag);
2231 nd->intent.open.create_mode = op->mode;
31e6b01f 2232
73d049a4 2233 error = path_init(dfd, pathname, flags | LOOKUP_PARENT, nd, &base);
31e6b01f 2234 if (unlikely(error))
13aab428 2235 goto out_filp;
31e6b01f 2236
fe2d35ff 2237 current->total_link_count = 0;
73d049a4 2238 error = link_path_walk(pathname, nd);
31e6b01f
NP
2239 if (unlikely(error))
2240 goto out_filp;
1da177e4 2241
73d049a4 2242 filp = do_last(nd, &path, op, pathname);
806b681c 2243 while (unlikely(!filp)) { /* trailing symlink */
7b9337aa 2244 struct path link = path;
def4af30 2245 void *cookie;
574197e0 2246 if (!(nd->flags & LOOKUP_FOLLOW)) {
73d049a4
AV
2247 path_put_conditional(&path, nd);
2248 path_put(&nd->path);
40b39136
AV
2249 filp = ERR_PTR(-ELOOP);
2250 break;
2251 }
73d049a4
AV
2252 nd->flags |= LOOKUP_PARENT;
2253 nd->flags &= ~(LOOKUP_OPEN|LOOKUP_CREATE|LOOKUP_EXCL);
574197e0 2254 error = follow_link(&link, nd, &cookie);
c3e380b0 2255 if (unlikely(error))
f1afe9ef 2256 filp = ERR_PTR(error);
c3e380b0 2257 else
73d049a4 2258 filp = do_last(nd, &path, op, pathname);
574197e0 2259 put_link(nd, &link, cookie);
806b681c 2260 }
10fa8e62 2261out:
73d049a4
AV
2262 if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT))
2263 path_put(&nd->root);
fe2d35ff
AV
2264 if (base)
2265 fput(base);
73d049a4 2266 release_open_intent(nd);
10fa8e62 2267 return filp;
1da177e4 2268
31e6b01f 2269out_filp:
806b681c 2270 filp = ERR_PTR(error);
10fa8e62 2271 goto out;
1da177e4
LT
2272}
2273
13aab428
AV
2274struct file *do_filp_open(int dfd, const char *pathname,
2275 const struct open_flags *op, int flags)
2276{
73d049a4 2277 struct nameidata nd;
13aab428
AV
2278 struct file *filp;
2279
73d049a4 2280 filp = path_openat(dfd, pathname, &nd, op, flags | LOOKUP_RCU);
13aab428 2281 if (unlikely(filp == ERR_PTR(-ECHILD)))
73d049a4 2282 filp = path_openat(dfd, pathname, &nd, op, flags);
13aab428 2283 if (unlikely(filp == ERR_PTR(-ESTALE)))
73d049a4 2284 filp = path_openat(dfd, pathname, &nd, op, flags | LOOKUP_REVAL);
13aab428
AV
2285 return filp;
2286}
2287
73d049a4
AV
2288struct file *do_file_open_root(struct dentry *dentry, struct vfsmount *mnt,
2289 const char *name, const struct open_flags *op, int flags)
2290{
2291 struct nameidata nd;
2292 struct file *file;
2293
2294 nd.root.mnt = mnt;
2295 nd.root.dentry = dentry;
2296
2297 flags |= LOOKUP_ROOT;
2298
bcda7652 2299 if (dentry->d_inode->i_op->follow_link && op->intent & LOOKUP_OPEN)
73d049a4
AV
2300 return ERR_PTR(-ELOOP);
2301
2302 file = path_openat(-1, name, &nd, op, flags | LOOKUP_RCU);
2303 if (unlikely(file == ERR_PTR(-ECHILD)))
2304 file = path_openat(-1, name, &nd, op, flags);
2305 if (unlikely(file == ERR_PTR(-ESTALE)))
2306 file = path_openat(-1, name, &nd, op, flags | LOOKUP_REVAL);
2307 return file;
2308}
2309
1da177e4
LT
2310/**
2311 * lookup_create - lookup a dentry, creating it if it doesn't exist
2312 * @nd: nameidata info
2313 * @is_dir: directory flag
2314 *
2315 * Simple function to lookup and return a dentry and create it
2316 * if it doesn't exist. Is SMP-safe.
c663e5d8 2317 *
4ac91378 2318 * Returns with nd->path.dentry->d_inode->i_mutex locked.
1da177e4
LT
2319 */
2320struct dentry *lookup_create(struct nameidata *nd, int is_dir)
2321{
c663e5d8 2322 struct dentry *dentry = ERR_PTR(-EEXIST);
1da177e4 2323
4ac91378 2324 mutex_lock_nested(&nd->path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
c663e5d8
CH
2325 /*
2326 * Yucky last component or no last component at all?
2327 * (foo/., foo/.., /////)
2328 */
1da177e4
LT
2329 if (nd->last_type != LAST_NORM)
2330 goto fail;
2331 nd->flags &= ~LOOKUP_PARENT;
3516586a 2332 nd->flags |= LOOKUP_CREATE | LOOKUP_EXCL;
a634904a 2333 nd->intent.open.flags = O_EXCL;
c663e5d8
CH
2334
2335 /*
2336 * Do the final lookup.
2337 */
49705b77 2338 dentry = lookup_hash(nd);
1da177e4
LT
2339 if (IS_ERR(dentry))
2340 goto fail;
c663e5d8 2341
e9baf6e5
AV
2342 if (dentry->d_inode)
2343 goto eexist;
c663e5d8
CH
2344 /*
2345 * Special case - lookup gave negative, but... we had foo/bar/
2346 * From the vfs_mknod() POV we just have a negative dentry -
2347 * all is fine. Let's be bastards - you had / on the end, you've
2348 * been asking for (non-existent) directory. -ENOENT for you.
2349 */
e9baf6e5
AV
2350 if (unlikely(!is_dir && nd->last.name[nd->last.len])) {
2351 dput(dentry);
2352 dentry = ERR_PTR(-ENOENT);
2353 }
1da177e4 2354 return dentry;
e9baf6e5 2355eexist:
1da177e4 2356 dput(dentry);
e9baf6e5 2357 dentry = ERR_PTR(-EEXIST);
1da177e4
LT
2358fail:
2359 return dentry;
2360}
f81a0bff 2361EXPORT_SYMBOL_GPL(lookup_create);
1da177e4
LT
2362
2363int vfs_mknod(struct inode *dir, struct dentry *dentry, int mode, dev_t dev)
2364{
a95164d9 2365 int error = may_create(dir, dentry);
1da177e4
LT
2366
2367 if (error)
2368 return error;
2369
e795b717
SH
2370 if ((S_ISCHR(mode) || S_ISBLK(mode)) &&
2371 !ns_capable(inode_userns(dir), CAP_MKNOD))
1da177e4
LT
2372 return -EPERM;
2373
acfa4380 2374 if (!dir->i_op->mknod)
1da177e4
LT
2375 return -EPERM;
2376
08ce5f16
SH
2377 error = devcgroup_inode_mknod(mode, dev);
2378 if (error)
2379 return error;
2380
1da177e4
LT
2381 error = security_inode_mknod(dir, dentry, mode, dev);
2382 if (error)
2383 return error;
2384
1da177e4 2385 error = dir->i_op->mknod(dir, dentry, mode, dev);
a74574aa 2386 if (!error)
f38aa942 2387 fsnotify_create(dir, dentry);
1da177e4
LT
2388 return error;
2389}
2390
463c3197
DH
2391static int may_mknod(mode_t mode)
2392{
2393 switch (mode & S_IFMT) {
2394 case S_IFREG:
2395 case S_IFCHR:
2396 case S_IFBLK:
2397 case S_IFIFO:
2398 case S_IFSOCK:
2399 case 0: /* zero mode translates to S_IFREG */
2400 return 0;
2401 case S_IFDIR:
2402 return -EPERM;
2403 default:
2404 return -EINVAL;
2405 }
2406}
2407
2e4d0924
HC
2408SYSCALL_DEFINE4(mknodat, int, dfd, const char __user *, filename, int, mode,
2409 unsigned, dev)
1da177e4 2410{
2ad94ae6
AV
2411 int error;
2412 char *tmp;
2413 struct dentry *dentry;
1da177e4
LT
2414 struct nameidata nd;
2415
2416 if (S_ISDIR(mode))
2417 return -EPERM;
1da177e4 2418
2ad94ae6 2419 error = user_path_parent(dfd, filename, &nd, &tmp);
1da177e4 2420 if (error)
2ad94ae6
AV
2421 return error;
2422
1da177e4 2423 dentry = lookup_create(&nd, 0);
463c3197
DH
2424 if (IS_ERR(dentry)) {
2425 error = PTR_ERR(dentry);
2426 goto out_unlock;
2427 }
4ac91378 2428 if (!IS_POSIXACL(nd.path.dentry->d_inode))
ce3b0f8d 2429 mode &= ~current_umask();
463c3197
DH
2430 error = may_mknod(mode);
2431 if (error)
2432 goto out_dput;
2433 error = mnt_want_write(nd.path.mnt);
2434 if (error)
2435 goto out_dput;
be6d3e56
KT
2436 error = security_path_mknod(&nd.path, dentry, mode, dev);
2437 if (error)
2438 goto out_drop_write;
463c3197 2439 switch (mode & S_IFMT) {
1da177e4 2440 case 0: case S_IFREG:
4ac91378 2441 error = vfs_create(nd.path.dentry->d_inode,dentry,mode,&nd);
1da177e4
LT
2442 break;
2443 case S_IFCHR: case S_IFBLK:
4ac91378 2444 error = vfs_mknod(nd.path.dentry->d_inode,dentry,mode,
1da177e4
LT
2445 new_decode_dev(dev));
2446 break;
2447 case S_IFIFO: case S_IFSOCK:
4ac91378 2448 error = vfs_mknod(nd.path.dentry->d_inode,dentry,mode,0);
1da177e4 2449 break;
1da177e4 2450 }
be6d3e56 2451out_drop_write:
463c3197
DH
2452 mnt_drop_write(nd.path.mnt);
2453out_dput:
2454 dput(dentry);
2455out_unlock:
4ac91378 2456 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
1d957f9b 2457 path_put(&nd.path);
1da177e4
LT
2458 putname(tmp);
2459
2460 return error;
2461}
2462
3480b257 2463SYSCALL_DEFINE3(mknod, const char __user *, filename, int, mode, unsigned, dev)
5590ff0d
UD
2464{
2465 return sys_mknodat(AT_FDCWD, filename, mode, dev);
2466}
2467
1da177e4
LT
2468int vfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
2469{
a95164d9 2470 int error = may_create(dir, dentry);
1da177e4
LT
2471
2472 if (error)
2473 return error;
2474
acfa4380 2475 if (!dir->i_op->mkdir)
1da177e4
LT
2476 return -EPERM;
2477
2478 mode &= (S_IRWXUGO|S_ISVTX);
2479 error = security_inode_mkdir(dir, dentry, mode);
2480 if (error)
2481 return error;
2482
1da177e4 2483 error = dir->i_op->mkdir(dir, dentry, mode);
a74574aa 2484 if (!error)
f38aa942 2485 fsnotify_mkdir(dir, dentry);
1da177e4
LT
2486 return error;
2487}
2488
2e4d0924 2489SYSCALL_DEFINE3(mkdirat, int, dfd, const char __user *, pathname, int, mode)
1da177e4
LT
2490{
2491 int error = 0;
2492 char * tmp;
6902d925
DH
2493 struct dentry *dentry;
2494 struct nameidata nd;
1da177e4 2495
2ad94ae6
AV
2496 error = user_path_parent(dfd, pathname, &nd, &tmp);
2497 if (error)
6902d925 2498 goto out_err;
1da177e4 2499
6902d925
DH
2500 dentry = lookup_create(&nd, 1);
2501 error = PTR_ERR(dentry);
2502 if (IS_ERR(dentry))
2503 goto out_unlock;
1da177e4 2504
4ac91378 2505 if (!IS_POSIXACL(nd.path.dentry->d_inode))
ce3b0f8d 2506 mode &= ~current_umask();
463c3197
DH
2507 error = mnt_want_write(nd.path.mnt);
2508 if (error)
2509 goto out_dput;
be6d3e56
KT
2510 error = security_path_mkdir(&nd.path, dentry, mode);
2511 if (error)
2512 goto out_drop_write;
4ac91378 2513 error = vfs_mkdir(nd.path.dentry->d_inode, dentry, mode);
be6d3e56 2514out_drop_write:
463c3197
DH
2515 mnt_drop_write(nd.path.mnt);
2516out_dput:
6902d925
DH
2517 dput(dentry);
2518out_unlock:
4ac91378 2519 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
1d957f9b 2520 path_put(&nd.path);
6902d925
DH
2521 putname(tmp);
2522out_err:
1da177e4
LT
2523 return error;
2524}
2525
3cdad428 2526SYSCALL_DEFINE2(mkdir, const char __user *, pathname, int, mode)
5590ff0d
UD
2527{
2528 return sys_mkdirat(AT_FDCWD, pathname, mode);
2529}
2530
1da177e4 2531/*
a71905f0
SW
2532 * The dentry_unhash() helper will try to drop the dentry early: we
2533 * should have a usage count of 2 if we're the only user of this
2534 * dentry, and if that is true (possibly after pruning the dcache),
2535 * then we drop the dentry now.
1da177e4
LT
2536 *
2537 * A low-level filesystem can, if it choses, legally
2538 * do a
2539 *
2540 * if (!d_unhashed(dentry))
2541 * return -EBUSY;
2542 *
2543 * if it cannot handle the case of removing a directory
2544 * that is still in use by something else..
2545 */
2546void dentry_unhash(struct dentry *dentry)
2547{
dc168427 2548 shrink_dcache_parent(dentry);
1da177e4 2549 spin_lock(&dentry->d_lock);
64252c75 2550 if (dentry->d_count == 1)
1da177e4
LT
2551 __d_drop(dentry);
2552 spin_unlock(&dentry->d_lock);
1da177e4
LT
2553}
2554
2555int vfs_rmdir(struct inode *dir, struct dentry *dentry)
2556{
2557 int error = may_delete(dir, dentry, 1);
2558
2559 if (error)
2560 return error;
2561
acfa4380 2562 if (!dir->i_op->rmdir)
1da177e4
LT
2563 return -EPERM;
2564
1b1dcc1b 2565 mutex_lock(&dentry->d_inode->i_mutex);
1da177e4
LT
2566 if (d_mountpoint(dentry))
2567 error = -EBUSY;
2568 else {
2569 error = security_inode_rmdir(dir, dentry);
2570 if (!error) {
2571 error = dir->i_op->rmdir(dir, dentry);
d83c49f3 2572 if (!error) {
1da177e4 2573 dentry->d_inode->i_flags |= S_DEAD;
d83c49f3
AV
2574 dont_mount(dentry);
2575 }
1da177e4
LT
2576 }
2577 }
1b1dcc1b 2578 mutex_unlock(&dentry->d_inode->i_mutex);
1da177e4 2579 if (!error) {
1da177e4
LT
2580 d_delete(dentry);
2581 }
1da177e4
LT
2582
2583 return error;
2584}
2585
5590ff0d 2586static long do_rmdir(int dfd, const char __user *pathname)
1da177e4
LT
2587{
2588 int error = 0;
2589 char * name;
2590 struct dentry *dentry;
2591 struct nameidata nd;
2592
2ad94ae6 2593 error = user_path_parent(dfd, pathname, &nd, &name);
1da177e4 2594 if (error)
2ad94ae6 2595 return error;
1da177e4
LT
2596
2597 switch(nd.last_type) {
0612d9fb
OH
2598 case LAST_DOTDOT:
2599 error = -ENOTEMPTY;
2600 goto exit1;
2601 case LAST_DOT:
2602 error = -EINVAL;
2603 goto exit1;
2604 case LAST_ROOT:
2605 error = -EBUSY;
2606 goto exit1;
1da177e4 2607 }
0612d9fb
OH
2608
2609 nd.flags &= ~LOOKUP_PARENT;
2610
4ac91378 2611 mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
49705b77 2612 dentry = lookup_hash(&nd);
1da177e4 2613 error = PTR_ERR(dentry);
6902d925
DH
2614 if (IS_ERR(dentry))
2615 goto exit2;
0622753b
DH
2616 error = mnt_want_write(nd.path.mnt);
2617 if (error)
2618 goto exit3;
be6d3e56
KT
2619 error = security_path_rmdir(&nd.path, dentry);
2620 if (error)
2621 goto exit4;
4ac91378 2622 error = vfs_rmdir(nd.path.dentry->d_inode, dentry);
be6d3e56 2623exit4:
0622753b
DH
2624 mnt_drop_write(nd.path.mnt);
2625exit3:
6902d925
DH
2626 dput(dentry);
2627exit2:
4ac91378 2628 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
1da177e4 2629exit1:
1d957f9b 2630 path_put(&nd.path);
1da177e4
LT
2631 putname(name);
2632 return error;
2633}
2634
3cdad428 2635SYSCALL_DEFINE1(rmdir, const char __user *, pathname)
5590ff0d
UD
2636{
2637 return do_rmdir(AT_FDCWD, pathname);
2638}
2639
1da177e4
LT
2640int vfs_unlink(struct inode *dir, struct dentry *dentry)
2641{
2642 int error = may_delete(dir, dentry, 0);
2643
2644 if (error)
2645 return error;
2646
acfa4380 2647 if (!dir->i_op->unlink)
1da177e4
LT
2648 return -EPERM;
2649
1b1dcc1b 2650 mutex_lock(&dentry->d_inode->i_mutex);
1da177e4
LT
2651 if (d_mountpoint(dentry))
2652 error = -EBUSY;
2653 else {
2654 error = security_inode_unlink(dir, dentry);
bec1052e 2655 if (!error) {
1da177e4 2656 error = dir->i_op->unlink(dir, dentry);
bec1052e 2657 if (!error)
d83c49f3 2658 dont_mount(dentry);
bec1052e 2659 }
1da177e4 2660 }
1b1dcc1b 2661 mutex_unlock(&dentry->d_inode->i_mutex);
1da177e4
LT
2662
2663 /* We don't d_delete() NFS sillyrenamed files--they still exist. */
2664 if (!error && !(dentry->d_flags & DCACHE_NFSFS_RENAMED)) {
ece95912 2665 fsnotify_link_count(dentry->d_inode);
e234f35c 2666 d_delete(dentry);
1da177e4 2667 }
0eeca283 2668
1da177e4
LT
2669 return error;
2670}
2671
2672/*
2673 * Make sure that the actual truncation of the file will occur outside its
1b1dcc1b 2674 * directory's i_mutex. Truncate can take a long time if there is a lot of
1da177e4
LT
2675 * writeout happening, and we don't want to prevent access to the directory
2676 * while waiting on the I/O.
2677 */
5590ff0d 2678static long do_unlinkat(int dfd, const char __user *pathname)
1da177e4 2679{
2ad94ae6
AV
2680 int error;
2681 char *name;
1da177e4
LT
2682 struct dentry *dentry;
2683 struct nameidata nd;
2684 struct inode *inode = NULL;
2685
2ad94ae6 2686 error = user_path_parent(dfd, pathname, &nd, &name);
1da177e4 2687 if (error)
2ad94ae6
AV
2688 return error;
2689
1da177e4
LT
2690 error = -EISDIR;
2691 if (nd.last_type != LAST_NORM)
2692 goto exit1;
0612d9fb
OH
2693
2694 nd.flags &= ~LOOKUP_PARENT;
2695
4ac91378 2696 mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
49705b77 2697 dentry = lookup_hash(&nd);
1da177e4
LT
2698 error = PTR_ERR(dentry);
2699 if (!IS_ERR(dentry)) {
2700 /* Why not before? Because we want correct error value */
2701 if (nd.last.name[nd.last.len])
2702 goto slashes;
2703 inode = dentry->d_inode;
2704 if (inode)
7de9c6ee 2705 ihold(inode);
0622753b
DH
2706 error = mnt_want_write(nd.path.mnt);
2707 if (error)
2708 goto exit2;
be6d3e56
KT
2709 error = security_path_unlink(&nd.path, dentry);
2710 if (error)
2711 goto exit3;
4ac91378 2712 error = vfs_unlink(nd.path.dentry->d_inode, dentry);
be6d3e56 2713exit3:
0622753b 2714 mnt_drop_write(nd.path.mnt);
1da177e4
LT
2715 exit2:
2716 dput(dentry);
2717 }
4ac91378 2718 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
1da177e4
LT
2719 if (inode)
2720 iput(inode); /* truncate the inode here */
2721exit1:
1d957f9b 2722 path_put(&nd.path);
1da177e4
LT
2723 putname(name);
2724 return error;
2725
2726slashes:
2727 error = !dentry->d_inode ? -ENOENT :
2728 S_ISDIR(dentry->d_inode->i_mode) ? -EISDIR : -ENOTDIR;
2729 goto exit2;
2730}
2731
2e4d0924 2732SYSCALL_DEFINE3(unlinkat, int, dfd, const char __user *, pathname, int, flag)
5590ff0d
UD
2733{
2734 if ((flag & ~AT_REMOVEDIR) != 0)
2735 return -EINVAL;
2736
2737 if (flag & AT_REMOVEDIR)
2738 return do_rmdir(dfd, pathname);
2739
2740 return do_unlinkat(dfd, pathname);
2741}
2742
3480b257 2743SYSCALL_DEFINE1(unlink, const char __user *, pathname)
5590ff0d
UD
2744{
2745 return do_unlinkat(AT_FDCWD, pathname);
2746}
2747
db2e747b 2748int vfs_symlink(struct inode *dir, struct dentry *dentry, const char *oldname)
1da177e4 2749{
a95164d9 2750 int error = may_create(dir, dentry);
1da177e4
LT
2751
2752 if (error)
2753 return error;
2754
acfa4380 2755 if (!dir->i_op->symlink)
1da177e4
LT
2756 return -EPERM;
2757
2758 error = security_inode_symlink(dir, dentry, oldname);
2759 if (error)
2760 return error;
2761
1da177e4 2762 error = dir->i_op->symlink(dir, dentry, oldname);
a74574aa 2763 if (!error)
f38aa942 2764 fsnotify_create(dir, dentry);
1da177e4
LT
2765 return error;
2766}
2767
2e4d0924
HC
2768SYSCALL_DEFINE3(symlinkat, const char __user *, oldname,
2769 int, newdfd, const char __user *, newname)
1da177e4 2770{
2ad94ae6
AV
2771 int error;
2772 char *from;
2773 char *to;
6902d925
DH
2774 struct dentry *dentry;
2775 struct nameidata nd;
1da177e4
LT
2776
2777 from = getname(oldname);
2ad94ae6 2778 if (IS_ERR(from))
1da177e4 2779 return PTR_ERR(from);
1da177e4 2780
2ad94ae6 2781 error = user_path_parent(newdfd, newname, &nd, &to);
6902d925 2782 if (error)
2ad94ae6
AV
2783 goto out_putname;
2784
6902d925
DH
2785 dentry = lookup_create(&nd, 0);
2786 error = PTR_ERR(dentry);
2787 if (IS_ERR(dentry))
2788 goto out_unlock;
2789
75c3f29d
DH
2790 error = mnt_want_write(nd.path.mnt);
2791 if (error)
2792 goto out_dput;
be6d3e56
KT
2793 error = security_path_symlink(&nd.path, dentry, from);
2794 if (error)
2795 goto out_drop_write;
db2e747b 2796 error = vfs_symlink(nd.path.dentry->d_inode, dentry, from);
be6d3e56 2797out_drop_write:
75c3f29d
DH
2798 mnt_drop_write(nd.path.mnt);
2799out_dput:
6902d925
DH
2800 dput(dentry);
2801out_unlock:
4ac91378 2802 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
1d957f9b 2803 path_put(&nd.path);
6902d925
DH
2804 putname(to);
2805out_putname:
1da177e4
LT
2806 putname(from);
2807 return error;
2808}
2809
3480b257 2810SYSCALL_DEFINE2(symlink, const char __user *, oldname, const char __user *, newname)
5590ff0d
UD
2811{
2812 return sys_symlinkat(oldname, AT_FDCWD, newname);
2813}
2814
1da177e4
LT
2815int vfs_link(struct dentry *old_dentry, struct inode *dir, struct dentry *new_dentry)
2816{
2817 struct inode *inode = old_dentry->d_inode;
2818 int error;
2819
2820 if (!inode)
2821 return -ENOENT;
2822
a95164d9 2823 error = may_create(dir, new_dentry);
1da177e4
LT
2824 if (error)
2825 return error;
2826
2827 if (dir->i_sb != inode->i_sb)
2828 return -EXDEV;
2829
2830 /*
2831 * A link to an append-only or immutable file cannot be created.
2832 */
2833 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
2834 return -EPERM;
acfa4380 2835 if (!dir->i_op->link)
1da177e4 2836 return -EPERM;
7e79eedb 2837 if (S_ISDIR(inode->i_mode))
1da177e4
LT
2838 return -EPERM;
2839
2840 error = security_inode_link(old_dentry, dir, new_dentry);
2841 if (error)
2842 return error;
2843
7e79eedb 2844 mutex_lock(&inode->i_mutex);
aae8a97d
AK
2845 /* Make sure we don't allow creating hardlink to an unlinked file */
2846 if (inode->i_nlink == 0)
2847 error = -ENOENT;
2848 else
2849 error = dir->i_op->link(old_dentry, dir, new_dentry);
7e79eedb 2850 mutex_unlock(&inode->i_mutex);
e31e14ec 2851 if (!error)
7e79eedb 2852 fsnotify_link(dir, inode, new_dentry);
1da177e4
LT
2853 return error;
2854}
2855
2856/*
2857 * Hardlinks are often used in delicate situations. We avoid
2858 * security-related surprises by not following symlinks on the
2859 * newname. --KAB
2860 *
2861 * We don't follow them on the oldname either to be compatible
2862 * with linux 2.0, and to avoid hard-linking to directories
2863 * and other special files. --ADM
2864 */
2e4d0924
HC
2865SYSCALL_DEFINE5(linkat, int, olddfd, const char __user *, oldname,
2866 int, newdfd, const char __user *, newname, int, flags)
1da177e4
LT
2867{
2868 struct dentry *new_dentry;
2d8f3038
AV
2869 struct nameidata nd;
2870 struct path old_path;
11a7b371 2871 int how = 0;
1da177e4 2872 int error;
2ad94ae6 2873 char *to;
1da177e4 2874
11a7b371 2875 if ((flags & ~(AT_SYMLINK_FOLLOW | AT_EMPTY_PATH)) != 0)
c04030e1 2876 return -EINVAL;
11a7b371
AK
2877 /*
2878 * To use null names we require CAP_DAC_READ_SEARCH
2879 * This ensures that not everyone will be able to create
2880 * handlink using the passed filedescriptor.
2881 */
2882 if (flags & AT_EMPTY_PATH) {
2883 if (!capable(CAP_DAC_READ_SEARCH))
2884 return -ENOENT;
2885 how = LOOKUP_EMPTY;
2886 }
2887
2888 if (flags & AT_SYMLINK_FOLLOW)
2889 how |= LOOKUP_FOLLOW;
c04030e1 2890
11a7b371 2891 error = user_path_at(olddfd, oldname, how, &old_path);
1da177e4 2892 if (error)
2ad94ae6
AV
2893 return error;
2894
2895 error = user_path_parent(newdfd, newname, &nd, &to);
1da177e4
LT
2896 if (error)
2897 goto out;
2898 error = -EXDEV;
2d8f3038 2899 if (old_path.mnt != nd.path.mnt)
1da177e4
LT
2900 goto out_release;
2901 new_dentry = lookup_create(&nd, 0);
2902 error = PTR_ERR(new_dentry);
6902d925
DH
2903 if (IS_ERR(new_dentry))
2904 goto out_unlock;
75c3f29d
DH
2905 error = mnt_want_write(nd.path.mnt);
2906 if (error)
2907 goto out_dput;
be6d3e56
KT
2908 error = security_path_link(old_path.dentry, &nd.path, new_dentry);
2909 if (error)
2910 goto out_drop_write;
2d8f3038 2911 error = vfs_link(old_path.dentry, nd.path.dentry->d_inode, new_dentry);
be6d3e56 2912out_drop_write:
75c3f29d
DH
2913 mnt_drop_write(nd.path.mnt);
2914out_dput:
6902d925
DH
2915 dput(new_dentry);
2916out_unlock:
4ac91378 2917 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
1da177e4 2918out_release:
1d957f9b 2919 path_put(&nd.path);
2ad94ae6 2920 putname(to);
1da177e4 2921out:
2d8f3038 2922 path_put(&old_path);
1da177e4
LT
2923
2924 return error;
2925}
2926
3480b257 2927SYSCALL_DEFINE2(link, const char __user *, oldname, const char __user *, newname)
5590ff0d 2928{
c04030e1 2929 return sys_linkat(AT_FDCWD, oldname, AT_FDCWD, newname, 0);
5590ff0d
UD
2930}
2931
1da177e4
LT
2932/*
2933 * The worst of all namespace operations - renaming directory. "Perverted"
2934 * doesn't even start to describe it. Somebody in UCB had a heck of a trip...
2935 * Problems:
2936 * a) we can get into loop creation. Check is done in is_subdir().
2937 * b) race potential - two innocent renames can create a loop together.
2938 * That's where 4.4 screws up. Current fix: serialization on
a11f3a05 2939 * sb->s_vfs_rename_mutex. We might be more accurate, but that's another
1da177e4
LT
2940 * story.
2941 * c) we have to lock _three_ objects - parents and victim (if it exists).
1b1dcc1b 2942 * And that - after we got ->i_mutex on parents (until then we don't know
1da177e4
LT
2943 * whether the target exists). Solution: try to be smart with locking
2944 * order for inodes. We rely on the fact that tree topology may change
a11f3a05 2945 * only under ->s_vfs_rename_mutex _and_ that parent of the object we
1da177e4
LT
2946 * move will be locked. Thus we can rank directories by the tree
2947 * (ancestors first) and rank all non-directories after them.
2948 * That works since everybody except rename does "lock parent, lookup,
a11f3a05 2949 * lock child" and rename is under ->s_vfs_rename_mutex.
1da177e4
LT
2950 * HOWEVER, it relies on the assumption that any object with ->lookup()
2951 * has no more than 1 dentry. If "hybrid" objects will ever appear,
2952 * we'd better make sure that there's no link(2) for them.
e4eaac06 2953 * d) conversion from fhandle to dentry may come in the wrong moment - when
1b1dcc1b 2954 * we are removing the target. Solution: we will have to grab ->i_mutex
1da177e4 2955 * in the fhandle_to_dentry code. [FIXME - current nfsfh.c relies on
c41b20e7 2956 * ->i_mutex on parents, which works but leads to some truly excessive
1da177e4
LT
2957 * locking].
2958 */
75c96f85
AB
2959static int vfs_rename_dir(struct inode *old_dir, struct dentry *old_dentry,
2960 struct inode *new_dir, struct dentry *new_dentry)
1da177e4
LT
2961{
2962 int error = 0;
2963 struct inode *target;
2964
2965 /*
2966 * If we are going to change the parent - check write permissions,
2967 * we'll need to flip '..'.
2968 */
2969 if (new_dir != old_dir) {
f419a2e3 2970 error = inode_permission(old_dentry->d_inode, MAY_WRITE);
1da177e4
LT
2971 if (error)
2972 return error;
2973 }
2974
2975 error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry);
2976 if (error)
2977 return error;
2978
2979 target = new_dentry->d_inode;
d83c49f3 2980 if (target)
1b1dcc1b 2981 mutex_lock(&target->i_mutex);
1da177e4
LT
2982 if (d_mountpoint(old_dentry)||d_mountpoint(new_dentry))
2983 error = -EBUSY;
e4eaac06 2984 else
1da177e4
LT
2985 error = old_dir->i_op->rename(old_dir, old_dentry, new_dir, new_dentry);
2986 if (target) {
d83c49f3 2987 if (!error) {
1da177e4 2988 target->i_flags |= S_DEAD;
d83c49f3
AV
2989 dont_mount(new_dentry);
2990 }
1b1dcc1b 2991 mutex_unlock(&target->i_mutex);
1da177e4 2992 }
e31e14ec 2993 if (!error)
349457cc
MF
2994 if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE))
2995 d_move(old_dentry,new_dentry);
1da177e4
LT
2996 return error;
2997}
2998
75c96f85
AB
2999static int vfs_rename_other(struct inode *old_dir, struct dentry *old_dentry,
3000 struct inode *new_dir, struct dentry *new_dentry)
1da177e4
LT
3001{
3002 struct inode *target;
3003 int error;
3004
3005 error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry);
3006 if (error)
3007 return error;
3008
3009 dget(new_dentry);
3010 target = new_dentry->d_inode;
3011 if (target)
1b1dcc1b 3012 mutex_lock(&target->i_mutex);
1da177e4
LT
3013 if (d_mountpoint(old_dentry)||d_mountpoint(new_dentry))
3014 error = -EBUSY;
3015 else
3016 error = old_dir->i_op->rename(old_dir, old_dentry, new_dir, new_dentry);
3017 if (!error) {
bec1052e 3018 if (target)
d83c49f3 3019 dont_mount(new_dentry);
349457cc 3020 if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE))
1da177e4 3021 d_move(old_dentry, new_dentry);
1da177e4
LT
3022 }
3023 if (target)
1b1dcc1b 3024 mutex_unlock(&target->i_mutex);
1da177e4
LT
3025 dput(new_dentry);
3026 return error;
3027}
3028
3029int vfs_rename(struct inode *old_dir, struct dentry *old_dentry,
3030 struct inode *new_dir, struct dentry *new_dentry)
3031{
3032 int error;
3033 int is_dir = S_ISDIR(old_dentry->d_inode->i_mode);
59b0df21 3034 const unsigned char *old_name;
1da177e4
LT
3035
3036 if (old_dentry->d_inode == new_dentry->d_inode)
3037 return 0;
3038
3039 error = may_delete(old_dir, old_dentry, is_dir);
3040 if (error)
3041 return error;
3042
3043 if (!new_dentry->d_inode)
a95164d9 3044 error = may_create(new_dir, new_dentry);
1da177e4
LT
3045 else
3046 error = may_delete(new_dir, new_dentry, is_dir);
3047 if (error)
3048 return error;
3049
acfa4380 3050 if (!old_dir->i_op->rename)
1da177e4
LT
3051 return -EPERM;
3052
0eeca283
RL
3053 old_name = fsnotify_oldname_init(old_dentry->d_name.name);
3054
1da177e4
LT
3055 if (is_dir)
3056 error = vfs_rename_dir(old_dir,old_dentry,new_dir,new_dentry);
3057 else
3058 error = vfs_rename_other(old_dir,old_dentry,new_dir,new_dentry);
123df294
AV
3059 if (!error)
3060 fsnotify_move(old_dir, new_dir, old_name, is_dir,
5a190ae6 3061 new_dentry->d_inode, old_dentry);
0eeca283
RL
3062 fsnotify_oldname_free(old_name);
3063
1da177e4
LT
3064 return error;
3065}
3066
2e4d0924
HC
3067SYSCALL_DEFINE4(renameat, int, olddfd, const char __user *, oldname,
3068 int, newdfd, const char __user *, newname)
1da177e4 3069{
2ad94ae6
AV
3070 struct dentry *old_dir, *new_dir;
3071 struct dentry *old_dentry, *new_dentry;
3072 struct dentry *trap;
1da177e4 3073 struct nameidata oldnd, newnd;
2ad94ae6
AV
3074 char *from;
3075 char *to;
3076 int error;
1da177e4 3077
2ad94ae6 3078 error = user_path_parent(olddfd, oldname, &oldnd, &from);
1da177e4
LT
3079 if (error)
3080 goto exit;
3081
2ad94ae6 3082 error = user_path_parent(newdfd, newname, &newnd, &to);
1da177e4
LT
3083 if (error)
3084 goto exit1;
3085
3086 error = -EXDEV;
4ac91378 3087 if (oldnd.path.mnt != newnd.path.mnt)
1da177e4
LT
3088 goto exit2;
3089
4ac91378 3090 old_dir = oldnd.path.dentry;
1da177e4
LT
3091 error = -EBUSY;
3092 if (oldnd.last_type != LAST_NORM)
3093 goto exit2;
3094
4ac91378 3095 new_dir = newnd.path.dentry;
1da177e4
LT
3096 if (newnd.last_type != LAST_NORM)
3097 goto exit2;
3098
0612d9fb
OH
3099 oldnd.flags &= ~LOOKUP_PARENT;
3100 newnd.flags &= ~LOOKUP_PARENT;
4e9ed2f8 3101 newnd.flags |= LOOKUP_RENAME_TARGET;
0612d9fb 3102
1da177e4
LT
3103 trap = lock_rename(new_dir, old_dir);
3104
49705b77 3105 old_dentry = lookup_hash(&oldnd);
1da177e4
LT
3106 error = PTR_ERR(old_dentry);
3107 if (IS_ERR(old_dentry))
3108 goto exit3;
3109 /* source must exist */
3110 error = -ENOENT;
3111 if (!old_dentry->d_inode)
3112 goto exit4;
3113 /* unless the source is a directory trailing slashes give -ENOTDIR */
3114 if (!S_ISDIR(old_dentry->d_inode->i_mode)) {
3115 error = -ENOTDIR;
3116 if (oldnd.last.name[oldnd.last.len])
3117 goto exit4;
3118 if (newnd.last.name[newnd.last.len])
3119 goto exit4;
3120 }
3121 /* source should not be ancestor of target */
3122 error = -EINVAL;
3123 if (old_dentry == trap)
3124 goto exit4;
49705b77 3125 new_dentry = lookup_hash(&newnd);
1da177e4
LT
3126 error = PTR_ERR(new_dentry);
3127 if (IS_ERR(new_dentry))
3128 goto exit4;
3129 /* target should not be an ancestor of source */
3130 error = -ENOTEMPTY;
3131 if (new_dentry == trap)
3132 goto exit5;
3133
9079b1eb
DH
3134 error = mnt_want_write(oldnd.path.mnt);
3135 if (error)
3136 goto exit5;
be6d3e56
KT
3137 error = security_path_rename(&oldnd.path, old_dentry,
3138 &newnd.path, new_dentry);
3139 if (error)
3140 goto exit6;
1da177e4
LT
3141 error = vfs_rename(old_dir->d_inode, old_dentry,
3142 new_dir->d_inode, new_dentry);
be6d3e56 3143exit6:
9079b1eb 3144 mnt_drop_write(oldnd.path.mnt);
1da177e4
LT
3145exit5:
3146 dput(new_dentry);
3147exit4:
3148 dput(old_dentry);
3149exit3:
3150 unlock_rename(new_dir, old_dir);
3151exit2:
1d957f9b 3152 path_put(&newnd.path);
2ad94ae6 3153 putname(to);
1da177e4 3154exit1:
1d957f9b 3155 path_put(&oldnd.path);
1da177e4 3156 putname(from);
2ad94ae6 3157exit:
1da177e4
LT
3158 return error;
3159}
3160
a26eab24 3161SYSCALL_DEFINE2(rename, const char __user *, oldname, const char __user *, newname)
5590ff0d
UD
3162{
3163 return sys_renameat(AT_FDCWD, oldname, AT_FDCWD, newname);
3164}
3165
1da177e4
LT
3166int vfs_readlink(struct dentry *dentry, char __user *buffer, int buflen, const char *link)
3167{
3168 int len;
3169
3170 len = PTR_ERR(link);
3171 if (IS_ERR(link))
3172 goto out;
3173
3174 len = strlen(link);
3175 if (len > (unsigned) buflen)
3176 len = buflen;
3177 if (copy_to_user(buffer, link, len))
3178 len = -EFAULT;
3179out:
3180 return len;
3181}
3182
3183/*
3184 * A helper for ->readlink(). This should be used *ONLY* for symlinks that
3185 * have ->follow_link() touching nd only in nd_set_link(). Using (or not
3186 * using) it for any given inode is up to filesystem.
3187 */
3188int generic_readlink(struct dentry *dentry, char __user *buffer, int buflen)
3189{
3190 struct nameidata nd;
cc314eef 3191 void *cookie;
694a1764 3192 int res;
cc314eef 3193
1da177e4 3194 nd.depth = 0;
cc314eef 3195 cookie = dentry->d_inode->i_op->follow_link(dentry, &nd);
694a1764
MS
3196 if (IS_ERR(cookie))
3197 return PTR_ERR(cookie);
3198
3199 res = vfs_readlink(dentry, buffer, buflen, nd_get_link(&nd));
3200 if (dentry->d_inode->i_op->put_link)
3201 dentry->d_inode->i_op->put_link(dentry, &nd, cookie);
3202 return res;
1da177e4
LT
3203}
3204
3205int vfs_follow_link(struct nameidata *nd, const char *link)
3206{
3207 return __vfs_follow_link(nd, link);
3208}
3209
3210/* get the link contents into pagecache */
3211static char *page_getlink(struct dentry * dentry, struct page **ppage)
3212{
ebd09abb
DG
3213 char *kaddr;
3214 struct page *page;
1da177e4 3215 struct address_space *mapping = dentry->d_inode->i_mapping;
090d2b18 3216 page = read_mapping_page(mapping, 0, NULL);
1da177e4 3217 if (IS_ERR(page))
6fe6900e 3218 return (char*)page;
1da177e4 3219 *ppage = page;
ebd09abb
DG
3220 kaddr = kmap(page);
3221 nd_terminate_link(kaddr, dentry->d_inode->i_size, PAGE_SIZE - 1);
3222 return kaddr;
1da177e4
LT
3223}
3224
3225int page_readlink(struct dentry *dentry, char __user *buffer, int buflen)
3226{
3227 struct page *page = NULL;
3228 char *s = page_getlink(dentry, &page);
3229 int res = vfs_readlink(dentry,buffer,buflen,s);
3230 if (page) {
3231 kunmap(page);
3232 page_cache_release(page);
3233 }
3234 return res;
3235}
3236
cc314eef 3237void *page_follow_link_light(struct dentry *dentry, struct nameidata *nd)
1da177e4 3238{
cc314eef 3239 struct page *page = NULL;
1da177e4 3240 nd_set_link(nd, page_getlink(dentry, &page));
cc314eef 3241 return page;
1da177e4
LT
3242}
3243
cc314eef 3244void page_put_link(struct dentry *dentry, struct nameidata *nd, void *cookie)
1da177e4 3245{
cc314eef
LT
3246 struct page *page = cookie;
3247
3248 if (page) {
1da177e4
LT
3249 kunmap(page);
3250 page_cache_release(page);
1da177e4
LT
3251 }
3252}
3253
54566b2c
NP
3254/*
3255 * The nofs argument instructs pagecache_write_begin to pass AOP_FLAG_NOFS
3256 */
3257int __page_symlink(struct inode *inode, const char *symname, int len, int nofs)
1da177e4
LT
3258{
3259 struct address_space *mapping = inode->i_mapping;
0adb25d2 3260 struct page *page;
afddba49 3261 void *fsdata;
beb497ab 3262 int err;
1da177e4 3263 char *kaddr;
54566b2c
NP
3264 unsigned int flags = AOP_FLAG_UNINTERRUPTIBLE;
3265 if (nofs)
3266 flags |= AOP_FLAG_NOFS;
1da177e4 3267
7e53cac4 3268retry:
afddba49 3269 err = pagecache_write_begin(NULL, mapping, 0, len-1,
54566b2c 3270 flags, &page, &fsdata);
1da177e4 3271 if (err)
afddba49
NP
3272 goto fail;
3273
1da177e4
LT
3274 kaddr = kmap_atomic(page, KM_USER0);
3275 memcpy(kaddr, symname, len-1);
3276 kunmap_atomic(kaddr, KM_USER0);
afddba49
NP
3277
3278 err = pagecache_write_end(NULL, mapping, 0, len-1, len-1,
3279 page, fsdata);
1da177e4
LT
3280 if (err < 0)
3281 goto fail;
afddba49
NP
3282 if (err < len-1)
3283 goto retry;
3284
1da177e4
LT
3285 mark_inode_dirty(inode);
3286 return 0;
1da177e4
LT
3287fail:
3288 return err;
3289}
3290
0adb25d2
KK
3291int page_symlink(struct inode *inode, const char *symname, int len)
3292{
3293 return __page_symlink(inode, symname, len,
54566b2c 3294 !(mapping_gfp_mask(inode->i_mapping) & __GFP_FS));
0adb25d2
KK
3295}
3296
92e1d5be 3297const struct inode_operations page_symlink_inode_operations = {
1da177e4
LT
3298 .readlink = generic_readlink,
3299 .follow_link = page_follow_link_light,
3300 .put_link = page_put_link,
3301};
3302
2d8f3038 3303EXPORT_SYMBOL(user_path_at);
cc53ce53 3304EXPORT_SYMBOL(follow_down_one);
1da177e4
LT
3305EXPORT_SYMBOL(follow_down);
3306EXPORT_SYMBOL(follow_up);
3307EXPORT_SYMBOL(get_write_access); /* binfmt_aout */
3308EXPORT_SYMBOL(getname);
3309EXPORT_SYMBOL(lock_rename);
1da177e4
LT
3310EXPORT_SYMBOL(lookup_one_len);
3311EXPORT_SYMBOL(page_follow_link_light);
3312EXPORT_SYMBOL(page_put_link);
3313EXPORT_SYMBOL(page_readlink);
0adb25d2 3314EXPORT_SYMBOL(__page_symlink);
1da177e4
LT
3315EXPORT_SYMBOL(page_symlink);
3316EXPORT_SYMBOL(page_symlink_inode_operations);
c9c6cac0 3317EXPORT_SYMBOL(kern_path_parent);
d1811465 3318EXPORT_SYMBOL(kern_path);
16f18200 3319EXPORT_SYMBOL(vfs_path_lookup);
f419a2e3 3320EXPORT_SYMBOL(inode_permission);
8c744fb8 3321EXPORT_SYMBOL(file_permission);
1da177e4
LT
3322EXPORT_SYMBOL(unlock_rename);
3323EXPORT_SYMBOL(vfs_create);
3324EXPORT_SYMBOL(vfs_follow_link);
3325EXPORT_SYMBOL(vfs_link);
3326EXPORT_SYMBOL(vfs_mkdir);
3327EXPORT_SYMBOL(vfs_mknod);
3328EXPORT_SYMBOL(generic_permission);
3329EXPORT_SYMBOL(vfs_readlink);
3330EXPORT_SYMBOL(vfs_rename);
3331EXPORT_SYMBOL(vfs_rmdir);
3332EXPORT_SYMBOL(vfs_symlink);
3333EXPORT_SYMBOL(vfs_unlink);
3334EXPORT_SYMBOL(dentry_unhash);
3335EXPORT_SYMBOL(generic_readlink);