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