Merge tag 'hwmon-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/groeck...
[linux-2.6-block.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>
630d9c47 18#include <linux/export.h>
44696908 19#include <linux/kernel.h>
1da177e4
LT
20#include <linux/slab.h>
21#include <linux/fs.h>
22#include <linux/namei.h>
1da177e4 23#include <linux/pagemap.h>
0eeca283 24#include <linux/fsnotify.h>
1da177e4
LT
25#include <linux/personality.h>
26#include <linux/security.h>
6146f0d5 27#include <linux/ima.h>
1da177e4
LT
28#include <linux/syscalls.h>
29#include <linux/mount.h>
30#include <linux/audit.h>
16f7e0fe 31#include <linux/capability.h>
834f2a4a 32#include <linux/file.h>
5590ff0d 33#include <linux/fcntl.h>
08ce5f16 34#include <linux/device_cgroup.h>
5ad4e53b 35#include <linux/fs_struct.h>
e77819e5 36#include <linux/posix_acl.h>
1da177e4
LT
37#include <asm/uaccess.h>
38
e81e3f4d 39#include "internal.h"
c7105365 40#include "mount.h"
e81e3f4d 41
1da177e4
LT
42/* [Feb-1997 T. Schoebel-Theuer]
43 * Fundamental changes in the pathname lookup mechanisms (namei)
44 * were necessary because of omirr. The reason is that omirr needs
45 * to know the _real_ pathname, not the user-supplied one, in case
46 * of symlinks (and also when transname replacements occur).
47 *
48 * The new code replaces the old recursive symlink resolution with
49 * an iterative one (in case of non-nested symlink chains). It does
50 * this with calls to <fs>_follow_link().
51 * As a side effect, dir_namei(), _namei() and follow_link() are now
52 * replaced with a single function lookup_dentry() that can handle all
53 * the special cases of the former code.
54 *
55 * With the new dcache, the pathname is stored at each inode, at least as
56 * long as the refcount of the inode is positive. As a side effect, the
57 * size of the dcache depends on the inode cache and thus is dynamic.
58 *
59 * [29-Apr-1998 C. Scott Ananian] Updated above description of symlink
60 * resolution to correspond with current state of the code.
61 *
62 * Note that the symlink resolution is not *completely* iterative.
63 * There is still a significant amount of tail- and mid- recursion in
64 * the algorithm. Also, note that <fs>_readlink() is not used in
65 * lookup_dentry(): lookup_dentry() on the result of <fs>_readlink()
66 * may return different results than <fs>_follow_link(). Many virtual
67 * filesystems (including /proc) exhibit this behavior.
68 */
69
70/* [24-Feb-97 T. Schoebel-Theuer] Side effects caused by new implementation:
71 * New symlink semantics: when open() is called with flags O_CREAT | O_EXCL
72 * and the name already exists in form of a symlink, try to create the new
73 * name indicated by the symlink. The old code always complained that the
74 * name already exists, due to not following the symlink even if its target
75 * is nonexistent. The new semantics affects also mknod() and link() when
25985edc 76 * the name is a symlink pointing to a non-existent name.
1da177e4
LT
77 *
78 * I don't know which semantics is the right one, since I have no access
79 * to standards. But I found by trial that HP-UX 9.0 has the full "new"
80 * semantics implemented, while SunOS 4.1.1 and Solaris (SunOS 5.4) have the
81 * "old" one. Personally, I think the new semantics is much more logical.
82 * Note that "ln old new" where "new" is a symlink pointing to a non-existing
83 * file does succeed in both HP-UX and SunOs, but not in Solaris
84 * and in the old Linux semantics.
85 */
86
87/* [16-Dec-97 Kevin Buhr] For security reasons, we change some symlink
88 * semantics. See the comments in "open_namei" and "do_link" below.
89 *
90 * [10-Sep-98 Alan Modra] Another symlink change.
91 */
92
93/* [Feb-Apr 2000 AV] Complete rewrite. Rules for symlinks:
94 * inside the path - always follow.
95 * in the last component in creation/removal/renaming - never follow.
96 * if LOOKUP_FOLLOW passed - follow.
97 * if the pathname has trailing slashes - follow.
98 * otherwise - don't follow.
99 * (applied in that order).
100 *
101 * [Jun 2000 AV] Inconsistent behaviour of open() in case if flags==O_CREAT
102 * restored for 2.4. This is the last surviving part of old 4.2BSD bug.
103 * During the 2.4 we need to fix the userland stuff depending on it -
104 * hopefully we will be able to get rid of that wart in 2.5. So far only
105 * XEmacs seems to be relying on it...
106 */
107/*
108 * [Sep 2001 AV] Single-semaphore locking scheme (kudos to David Holland)
a11f3a05 109 * implemented. Let's see if raised priority of ->s_vfs_rename_mutex gives
1da177e4
LT
110 * any extra contention...
111 */
112
113/* In order to reduce some races, while at the same time doing additional
114 * checking and hopefully speeding things up, we copy filenames to the
115 * kernel data space before using them..
116 *
117 * POSIX.1 2.4: an empty pathname is invalid (ENOENT).
118 * PATH_MAX includes the nul terminator --RR.
119 */
91a27b2a 120void final_putname(struct filename *name)
1da177e4 121{
7950e385
JL
122 if (name->separate) {
123 __putname(name->name);
124 kfree(name);
125 } else {
126 __putname(name);
127 }
91a27b2a
JL
128}
129
7950e385
JL
130#define EMBEDDED_NAME_MAX (PATH_MAX - sizeof(struct filename))
131
91a27b2a
JL
132static struct filename *
133getname_flags(const char __user *filename, int flags, int *empty)
134{
135 struct filename *result, *err;
3f9f0aa6 136 int len;
7950e385
JL
137 long max;
138 char *kname;
4043cde8 139
7ac86265
JL
140 result = audit_reusename(filename);
141 if (result)
142 return result;
143
7950e385 144 result = __getname();
3f9f0aa6 145 if (unlikely(!result))
4043cde8
EP
146 return ERR_PTR(-ENOMEM);
147
7950e385
JL
148 /*
149 * First, try to embed the struct filename inside the names_cache
150 * allocation
151 */
152 kname = (char *)result + sizeof(*result);
91a27b2a 153 result->name = kname;
7950e385
JL
154 result->separate = false;
155 max = EMBEDDED_NAME_MAX;
156
157recopy:
158 len = strncpy_from_user(kname, filename, max);
91a27b2a
JL
159 if (unlikely(len < 0)) {
160 err = ERR_PTR(len);
3f9f0aa6 161 goto error;
91a27b2a 162 }
3f9f0aa6 163
7950e385
JL
164 /*
165 * Uh-oh. We have a name that's approaching PATH_MAX. Allocate a
166 * separate struct filename so we can dedicate the entire
167 * names_cache allocation for the pathname, and re-do the copy from
168 * userland.
169 */
170 if (len == EMBEDDED_NAME_MAX && max == EMBEDDED_NAME_MAX) {
171 kname = (char *)result;
172
173 result = kzalloc(sizeof(*result), GFP_KERNEL);
174 if (!result) {
175 err = ERR_PTR(-ENOMEM);
176 result = (struct filename *)kname;
177 goto error;
178 }
179 result->name = kname;
180 result->separate = true;
181 max = PATH_MAX;
182 goto recopy;
183 }
184
3f9f0aa6
LT
185 /* The empty path is special. */
186 if (unlikely(!len)) {
187 if (empty)
4043cde8 188 *empty = 1;
3f9f0aa6
LT
189 err = ERR_PTR(-ENOENT);
190 if (!(flags & LOOKUP_EMPTY))
191 goto error;
1da177e4 192 }
3f9f0aa6
LT
193
194 err = ERR_PTR(-ENAMETOOLONG);
7950e385
JL
195 if (unlikely(len >= PATH_MAX))
196 goto error;
197
198 result->uptr = filename;
199 audit_getname(result);
200 return result;
3f9f0aa6
LT
201
202error:
7950e385 203 final_putname(result);
3f9f0aa6 204 return err;
1da177e4
LT
205}
206
91a27b2a
JL
207struct filename *
208getname(const char __user * filename)
f52e0c11 209{
f7493e5d 210 return getname_flags(filename, 0, NULL);
f52e0c11 211}
91a27b2a 212EXPORT_SYMBOL(getname);
f52e0c11 213
1da177e4 214#ifdef CONFIG_AUDITSYSCALL
91a27b2a 215void putname(struct filename *name)
1da177e4 216{
5ac3a9c2 217 if (unlikely(!audit_dummy_context()))
91a27b2a
JL
218 return audit_putname(name);
219 final_putname(name);
1da177e4 220}
1da177e4
LT
221#endif
222
e77819e5
LT
223static int check_acl(struct inode *inode, int mask)
224{
84635d68 225#ifdef CONFIG_FS_POSIX_ACL
e77819e5
LT
226 struct posix_acl *acl;
227
e77819e5 228 if (mask & MAY_NOT_BLOCK) {
3567866b
AV
229 acl = get_cached_acl_rcu(inode, ACL_TYPE_ACCESS);
230 if (!acl)
e77819e5 231 return -EAGAIN;
3567866b
AV
232 /* no ->get_acl() calls in RCU mode... */
233 if (acl == ACL_NOT_CACHED)
234 return -ECHILD;
206b1d09 235 return posix_acl_permission(inode, acl, mask & ~MAY_NOT_BLOCK);
e77819e5
LT
236 }
237
238 acl = get_cached_acl(inode, ACL_TYPE_ACCESS);
239
240 /*
4e34e719
CH
241 * A filesystem can force a ACL callback by just never filling the
242 * ACL cache. But normally you'd fill the cache either at inode
243 * instantiation time, or on the first ->get_acl call.
e77819e5 244 *
4e34e719
CH
245 * If the filesystem doesn't have a get_acl() function at all, we'll
246 * just create the negative cache entry.
e77819e5
LT
247 */
248 if (acl == ACL_NOT_CACHED) {
4e34e719
CH
249 if (inode->i_op->get_acl) {
250 acl = inode->i_op->get_acl(inode, ACL_TYPE_ACCESS);
251 if (IS_ERR(acl))
252 return PTR_ERR(acl);
253 } else {
254 set_cached_acl(inode, ACL_TYPE_ACCESS, NULL);
255 return -EAGAIN;
256 }
e77819e5
LT
257 }
258
259 if (acl) {
260 int error = posix_acl_permission(inode, acl, mask);
261 posix_acl_release(acl);
262 return error;
263 }
84635d68 264#endif
e77819e5
LT
265
266 return -EAGAIN;
267}
268
5909ccaa 269/*
948409c7 270 * This does the basic permission checking
1da177e4 271 */
7e40145e 272static int acl_permission_check(struct inode *inode, int mask)
1da177e4 273{
26cf46be 274 unsigned int mode = inode->i_mode;
1da177e4 275
8e96e3b7 276 if (likely(uid_eq(current_fsuid(), inode->i_uid)))
1da177e4
LT
277 mode >>= 6;
278 else {
e77819e5 279 if (IS_POSIXACL(inode) && (mode & S_IRWXG)) {
7e40145e 280 int error = check_acl(inode, mask);
b74c79e9
NP
281 if (error != -EAGAIN)
282 return error;
1da177e4
LT
283 }
284
285 if (in_group_p(inode->i_gid))
286 mode >>= 3;
287 }
288
289 /*
290 * If the DACs are ok we don't need any capability check.
291 */
9c2c7039 292 if ((mask & ~mode & (MAY_READ | MAY_WRITE | MAY_EXEC)) == 0)
1da177e4 293 return 0;
5909ccaa
LT
294 return -EACCES;
295}
296
297/**
b74c79e9 298 * generic_permission - check for access rights on a Posix-like filesystem
5909ccaa 299 * @inode: inode to check access rights for
8fd90c8d 300 * @mask: right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC, ...)
5909ccaa
LT
301 *
302 * Used to check for read/write/execute permissions on a file.
303 * We use "fsuid" for this, letting us set arbitrary permissions
304 * for filesystem access without changing the "normal" uids which
b74c79e9
NP
305 * are used for other things.
306 *
307 * generic_permission is rcu-walk aware. It returns -ECHILD in case an rcu-walk
308 * request cannot be satisfied (eg. requires blocking or too much complexity).
309 * It would then be called again in ref-walk mode.
5909ccaa 310 */
2830ba7f 311int generic_permission(struct inode *inode, int mask)
5909ccaa
LT
312{
313 int ret;
314
315 /*
948409c7 316 * Do the basic permission checks.
5909ccaa 317 */
7e40145e 318 ret = acl_permission_check(inode, mask);
5909ccaa
LT
319 if (ret != -EACCES)
320 return ret;
1da177e4 321
d594e7ec
AV
322 if (S_ISDIR(inode->i_mode)) {
323 /* DACs are overridable for directories */
1a48e2ac 324 if (inode_capable(inode, CAP_DAC_OVERRIDE))
d594e7ec
AV
325 return 0;
326 if (!(mask & MAY_WRITE))
1a48e2ac 327 if (inode_capable(inode, CAP_DAC_READ_SEARCH))
d594e7ec
AV
328 return 0;
329 return -EACCES;
330 }
1da177e4
LT
331 /*
332 * Read/write DACs are always overridable.
d594e7ec
AV
333 * Executable DACs are overridable when there is
334 * at least one exec bit set.
1da177e4 335 */
d594e7ec 336 if (!(mask & MAY_EXEC) || (inode->i_mode & S_IXUGO))
1a48e2ac 337 if (inode_capable(inode, CAP_DAC_OVERRIDE))
1da177e4
LT
338 return 0;
339
340 /*
341 * Searching includes executable on directories, else just read.
342 */
7ea66001 343 mask &= MAY_READ | MAY_WRITE | MAY_EXEC;
d594e7ec 344 if (mask == MAY_READ)
1a48e2ac 345 if (inode_capable(inode, CAP_DAC_READ_SEARCH))
1da177e4
LT
346 return 0;
347
348 return -EACCES;
349}
350
3ddcd056
LT
351/*
352 * We _really_ want to just do "generic_permission()" without
353 * even looking at the inode->i_op values. So we keep a cache
354 * flag in inode->i_opflags, that says "this has not special
355 * permission function, use the fast case".
356 */
357static inline int do_inode_permission(struct inode *inode, int mask)
358{
359 if (unlikely(!(inode->i_opflags & IOP_FASTPERM))) {
360 if (likely(inode->i_op->permission))
361 return inode->i_op->permission(inode, mask);
362
363 /* This gets set once for the inode lifetime */
364 spin_lock(&inode->i_lock);
365 inode->i_opflags |= IOP_FASTPERM;
366 spin_unlock(&inode->i_lock);
367 }
368 return generic_permission(inode, mask);
369}
370
cb23beb5 371/**
0bdaea90
DH
372 * __inode_permission - Check for access rights to a given inode
373 * @inode: Inode to check permission on
374 * @mask: Right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
cb23beb5 375 *
0bdaea90 376 * Check for read/write/execute permissions on an inode.
948409c7
AG
377 *
378 * When checking for MAY_APPEND, MAY_WRITE must also be set in @mask.
0bdaea90
DH
379 *
380 * This does not check for a read-only file system. You probably want
381 * inode_permission().
cb23beb5 382 */
0bdaea90 383int __inode_permission(struct inode *inode, int mask)
1da177e4 384{
e6305c43 385 int retval;
1da177e4 386
3ddcd056 387 if (unlikely(mask & MAY_WRITE)) {
1da177e4
LT
388 /*
389 * Nobody gets write access to an immutable file.
390 */
391 if (IS_IMMUTABLE(inode))
392 return -EACCES;
393 }
394
3ddcd056 395 retval = do_inode_permission(inode, mask);
1da177e4
LT
396 if (retval)
397 return retval;
398
08ce5f16
SH
399 retval = devcgroup_inode_permission(inode, mask);
400 if (retval)
401 return retval;
402
d09ca739 403 return security_inode_permission(inode, mask);
1da177e4
LT
404}
405
0bdaea90
DH
406/**
407 * sb_permission - Check superblock-level permissions
408 * @sb: Superblock of inode to check permission on
55852635 409 * @inode: Inode to check permission on
0bdaea90
DH
410 * @mask: Right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
411 *
412 * Separate out file-system wide checks from inode-specific permission checks.
413 */
414static int sb_permission(struct super_block *sb, struct inode *inode, int mask)
415{
416 if (unlikely(mask & MAY_WRITE)) {
417 umode_t mode = inode->i_mode;
418
419 /* Nobody gets write access to a read-only fs. */
420 if ((sb->s_flags & MS_RDONLY) &&
421 (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode)))
422 return -EROFS;
423 }
424 return 0;
425}
426
427/**
428 * inode_permission - Check for access rights to a given inode
429 * @inode: Inode to check permission on
430 * @mask: Right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
431 *
432 * Check for read/write/execute permissions on an inode. We use fs[ug]id for
433 * this, letting us set arbitrary permissions for filesystem access without
434 * changing the "normal" UIDs which are used for other things.
435 *
436 * When checking for MAY_APPEND, MAY_WRITE must also be set in @mask.
437 */
438int inode_permission(struct inode *inode, int mask)
439{
440 int retval;
441
442 retval = sb_permission(inode->i_sb, inode, mask);
443 if (retval)
444 return retval;
445 return __inode_permission(inode, mask);
446}
447
5dd784d0
JB
448/**
449 * path_get - get a reference to a path
450 * @path: path to get the reference to
451 *
452 * Given a path increment the reference count to the dentry and the vfsmount.
453 */
dcf787f3 454void path_get(const struct path *path)
5dd784d0
JB
455{
456 mntget(path->mnt);
457 dget(path->dentry);
458}
459EXPORT_SYMBOL(path_get);
460
1d957f9b
JB
461/**
462 * path_put - put a reference to a path
463 * @path: path to put the reference to
464 *
465 * Given a path decrement the reference count to the dentry and the vfsmount.
466 */
dcf787f3 467void path_put(const struct path *path)
1da177e4 468{
1d957f9b
JB
469 dput(path->dentry);
470 mntput(path->mnt);
1da177e4 471}
1d957f9b 472EXPORT_SYMBOL(path_put);
1da177e4 473
19660af7 474/*
31e6b01f 475 * Path walking has 2 modes, rcu-walk and ref-walk (see
19660af7
AV
476 * Documentation/filesystems/path-lookup.txt). In situations when we can't
477 * continue in RCU mode, we attempt to drop out of rcu-walk mode and grab
478 * normal reference counts on dentries and vfsmounts to transition to rcu-walk
479 * mode. Refcounts are grabbed at the last known good point before rcu-walk
480 * got stuck, so ref-walk may continue from there. If this is not successful
481 * (eg. a seqcount has changed), then failure is returned and it's up to caller
482 * to restart the path walk from the beginning in ref-walk mode.
31e6b01f 483 */
31e6b01f 484
32a7991b
AV
485static inline void lock_rcu_walk(void)
486{
487 br_read_lock(&vfsmount_lock);
488 rcu_read_lock();
489}
490
491static inline void unlock_rcu_walk(void)
492{
493 rcu_read_unlock();
494 br_read_unlock(&vfsmount_lock);
495}
496
31e6b01f 497/**
19660af7
AV
498 * unlazy_walk - try to switch to ref-walk mode.
499 * @nd: nameidata pathwalk data
500 * @dentry: child of nd->path.dentry or NULL
39191628 501 * Returns: 0 on success, -ECHILD on failure
31e6b01f 502 *
19660af7
AV
503 * unlazy_walk attempts to legitimize the current nd->path, nd->root and dentry
504 * for ref-walk mode. @dentry must be a path found by a do_lookup call on
505 * @nd or NULL. Must be called from rcu-walk context.
31e6b01f 506 */
19660af7 507static int unlazy_walk(struct nameidata *nd, struct dentry *dentry)
31e6b01f
NP
508{
509 struct fs_struct *fs = current->fs;
510 struct dentry *parent = nd->path.dentry;
511
512 BUG_ON(!(nd->flags & LOOKUP_RCU));
e5c832d5
LT
513
514 /*
515 * Get a reference to the parent first: we're
516 * going to make "path_put(nd->path)" valid in
517 * non-RCU context for "terminate_walk()".
518 *
519 * If this doesn't work, return immediately with
520 * RCU walking still active (and then we will do
521 * the RCU walk cleanup in terminate_walk()).
522 */
523 if (!lockref_get_not_dead(&parent->d_lockref))
524 return -ECHILD;
525
526 /*
527 * After the mntget(), we terminate_walk() will do
528 * the right thing for non-RCU mode, and all our
529 * subsequent exit cases should unlock_rcu_walk()
530 * before returning.
531 */
532 mntget(nd->path.mnt);
533 nd->flags &= ~LOOKUP_RCU;
15570086
LT
534
535 /*
536 * For a negative lookup, the lookup sequence point is the parents
537 * sequence point, and it only needs to revalidate the parent dentry.
538 *
539 * For a positive lookup, we need to move both the parent and the
540 * dentry from the RCU domain to be properly refcounted. And the
541 * sequence number in the dentry validates *both* dentry counters,
542 * since we checked the sequence number of the parent after we got
543 * the child sequence number. So we know the parent must still
544 * be valid if the child sequence number is still valid.
545 */
19660af7 546 if (!dentry) {
e5c832d5
LT
547 if (read_seqcount_retry(&parent->d_seq, nd->seq))
548 goto out;
19660af7
AV
549 BUG_ON(nd->inode != parent->d_inode);
550 } else {
e5c832d5
LT
551 if (!lockref_get_not_dead(&dentry->d_lockref))
552 goto out;
553 if (read_seqcount_retry(&dentry->d_seq, nd->seq))
554 goto drop_dentry;
19660af7 555 }
e5c832d5
LT
556
557 /*
558 * Sequence counts matched. Now make sure that the root is
559 * still valid and get it if required.
560 */
561 if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT)) {
562 spin_lock(&fs->lock);
563 if (nd->root.mnt != fs->root.mnt || nd->root.dentry != fs->root.dentry)
564 goto unlock_and_drop_dentry;
31e6b01f
NP
565 path_get(&nd->root);
566 spin_unlock(&fs->lock);
567 }
31e6b01f 568
32a7991b 569 unlock_rcu_walk();
31e6b01f 570 return 0;
19660af7 571
e5c832d5
LT
572unlock_and_drop_dentry:
573 spin_unlock(&fs->lock);
574drop_dentry:
575 unlock_rcu_walk();
15570086 576 dput(dentry);
d0d27277 577 goto drop_root_mnt;
e5c832d5
LT
578out:
579 unlock_rcu_walk();
d0d27277
LT
580drop_root_mnt:
581 if (!(nd->flags & LOOKUP_ROOT))
582 nd->root.mnt = NULL;
31e6b01f
NP
583 return -ECHILD;
584}
585
4ce16ef3 586static inline int d_revalidate(struct dentry *dentry, unsigned int flags)
34286d66 587{
4ce16ef3 588 return dentry->d_op->d_revalidate(dentry, flags);
34286d66
NP
589}
590
9f1fafee
AV
591/**
592 * complete_walk - successful completion of path walk
593 * @nd: pointer nameidata
39159de2 594 *
9f1fafee
AV
595 * If we had been in RCU mode, drop out of it and legitimize nd->path.
596 * Revalidate the final result, unless we'd already done that during
597 * the path walk or the filesystem doesn't ask for it. Return 0 on
598 * success, -error on failure. In case of failure caller does not
599 * need to drop nd->path.
39159de2 600 */
9f1fafee 601static int complete_walk(struct nameidata *nd)
39159de2 602{
16c2cd71 603 struct dentry *dentry = nd->path.dentry;
39159de2 604 int status;
39159de2 605
9f1fafee
AV
606 if (nd->flags & LOOKUP_RCU) {
607 nd->flags &= ~LOOKUP_RCU;
608 if (!(nd->flags & LOOKUP_ROOT))
609 nd->root.mnt = NULL;
15570086 610
e5c832d5
LT
611 if (unlikely(!lockref_get_not_dead(&dentry->d_lockref))) {
612 unlock_rcu_walk();
613 return -ECHILD;
614 }
615 if (read_seqcount_retry(&dentry->d_seq, nd->seq)) {
32a7991b 616 unlock_rcu_walk();
e5c832d5 617 dput(dentry);
9f1fafee
AV
618 return -ECHILD;
619 }
9f1fafee 620 mntget(nd->path.mnt);
32a7991b 621 unlock_rcu_walk();
9f1fafee
AV
622 }
623
16c2cd71
AV
624 if (likely(!(nd->flags & LOOKUP_JUMPED)))
625 return 0;
626
ecf3d1f1 627 if (likely(!(dentry->d_flags & DCACHE_OP_WEAK_REVALIDATE)))
39159de2
JL
628 return 0;
629
ecf3d1f1 630 status = dentry->d_op->d_weak_revalidate(dentry, nd->flags);
39159de2
JL
631 if (status > 0)
632 return 0;
633
16c2cd71 634 if (!status)
39159de2 635 status = -ESTALE;
16c2cd71 636
9f1fafee 637 path_put(&nd->path);
39159de2
JL
638 return status;
639}
640
2a737871
AV
641static __always_inline void set_root(struct nameidata *nd)
642{
f7ad3c6b
MS
643 if (!nd->root.mnt)
644 get_fs_root(current->fs, &nd->root);
2a737871
AV
645}
646
6de88d72
AV
647static int link_path_walk(const char *, struct nameidata *);
648
31e6b01f
NP
649static __always_inline void set_root_rcu(struct nameidata *nd)
650{
651 if (!nd->root.mnt) {
652 struct fs_struct *fs = current->fs;
c28cc364
NP
653 unsigned seq;
654
655 do {
656 seq = read_seqcount_begin(&fs->seq);
657 nd->root = fs->root;
c1530019 658 nd->seq = __read_seqcount_begin(&nd->root.dentry->d_seq);
c28cc364 659 } while (read_seqcount_retry(&fs->seq, seq));
31e6b01f
NP
660 }
661}
662
f1662356 663static __always_inline int __vfs_follow_link(struct nameidata *nd, const char *link)
1da177e4 664{
31e6b01f
NP
665 int ret;
666
1da177e4
LT
667 if (IS_ERR(link))
668 goto fail;
669
670 if (*link == '/') {
2a737871 671 set_root(nd);
1d957f9b 672 path_put(&nd->path);
2a737871
AV
673 nd->path = nd->root;
674 path_get(&nd->root);
16c2cd71 675 nd->flags |= LOOKUP_JUMPED;
1da177e4 676 }
31e6b01f 677 nd->inode = nd->path.dentry->d_inode;
b4091d5f 678
31e6b01f
NP
679 ret = link_path_walk(link, nd);
680 return ret;
1da177e4 681fail:
1d957f9b 682 path_put(&nd->path);
1da177e4
LT
683 return PTR_ERR(link);
684}
685
1d957f9b 686static void path_put_conditional(struct path *path, struct nameidata *nd)
051d3812
IK
687{
688 dput(path->dentry);
4ac91378 689 if (path->mnt != nd->path.mnt)
051d3812
IK
690 mntput(path->mnt);
691}
692
7b9337aa
NP
693static inline void path_to_nameidata(const struct path *path,
694 struct nameidata *nd)
051d3812 695{
31e6b01f
NP
696 if (!(nd->flags & LOOKUP_RCU)) {
697 dput(nd->path.dentry);
698 if (nd->path.mnt != path->mnt)
699 mntput(nd->path.mnt);
9a229683 700 }
31e6b01f 701 nd->path.mnt = path->mnt;
4ac91378 702 nd->path.dentry = path->dentry;
051d3812
IK
703}
704
b5fb63c1
CH
705/*
706 * Helper to directly jump to a known parsed path from ->follow_link,
707 * caller must have taken a reference to path beforehand.
708 */
709void nd_jump_link(struct nameidata *nd, struct path *path)
710{
711 path_put(&nd->path);
712
713 nd->path = *path;
714 nd->inode = nd->path.dentry->d_inode;
715 nd->flags |= LOOKUP_JUMPED;
b5fb63c1
CH
716}
717
574197e0
AV
718static inline void put_link(struct nameidata *nd, struct path *link, void *cookie)
719{
720 struct inode *inode = link->dentry->d_inode;
6d7b5aae 721 if (inode->i_op->put_link)
574197e0
AV
722 inode->i_op->put_link(link->dentry, nd, cookie);
723 path_put(link);
724}
725
561ec64a
LT
726int sysctl_protected_symlinks __read_mostly = 0;
727int sysctl_protected_hardlinks __read_mostly = 0;
800179c9
KC
728
729/**
730 * may_follow_link - Check symlink following for unsafe situations
731 * @link: The path of the symlink
55852635 732 * @nd: nameidata pathwalk data
800179c9
KC
733 *
734 * In the case of the sysctl_protected_symlinks sysctl being enabled,
735 * CAP_DAC_OVERRIDE needs to be specifically ignored if the symlink is
736 * in a sticky world-writable directory. This is to protect privileged
737 * processes from failing races against path names that may change out
738 * from under them by way of other users creating malicious symlinks.
739 * It will permit symlinks to be followed only when outside a sticky
740 * world-writable directory, or when the uid of the symlink and follower
741 * match, or when the directory owner matches the symlink's owner.
742 *
743 * Returns 0 if following the symlink is allowed, -ve on error.
744 */
745static inline int may_follow_link(struct path *link, struct nameidata *nd)
746{
747 const struct inode *inode;
748 const struct inode *parent;
749
750 if (!sysctl_protected_symlinks)
751 return 0;
752
753 /* Allowed if owner and follower match. */
754 inode = link->dentry->d_inode;
81abe27b 755 if (uid_eq(current_cred()->fsuid, inode->i_uid))
800179c9
KC
756 return 0;
757
758 /* Allowed if parent directory not sticky and world-writable. */
759 parent = nd->path.dentry->d_inode;
760 if ((parent->i_mode & (S_ISVTX|S_IWOTH)) != (S_ISVTX|S_IWOTH))
761 return 0;
762
763 /* Allowed if parent directory and link owner match. */
81abe27b 764 if (uid_eq(parent->i_uid, inode->i_uid))
800179c9
KC
765 return 0;
766
ffd8d101 767 audit_log_link_denied("follow_link", link);
800179c9
KC
768 path_put_conditional(link, nd);
769 path_put(&nd->path);
770 return -EACCES;
771}
772
773/**
774 * safe_hardlink_source - Check for safe hardlink conditions
775 * @inode: the source inode to hardlink from
776 *
777 * Return false if at least one of the following conditions:
778 * - inode is not a regular file
779 * - inode is setuid
780 * - inode is setgid and group-exec
781 * - access failure for read and write
782 *
783 * Otherwise returns true.
784 */
785static bool safe_hardlink_source(struct inode *inode)
786{
787 umode_t mode = inode->i_mode;
788
789 /* Special files should not get pinned to the filesystem. */
790 if (!S_ISREG(mode))
791 return false;
792
793 /* Setuid files should not get pinned to the filesystem. */
794 if (mode & S_ISUID)
795 return false;
796
797 /* Executable setgid files should not get pinned to the filesystem. */
798 if ((mode & (S_ISGID | S_IXGRP)) == (S_ISGID | S_IXGRP))
799 return false;
800
801 /* Hardlinking to unreadable or unwritable sources is dangerous. */
802 if (inode_permission(inode, MAY_READ | MAY_WRITE))
803 return false;
804
805 return true;
806}
807
808/**
809 * may_linkat - Check permissions for creating a hardlink
810 * @link: the source to hardlink from
811 *
812 * Block hardlink when all of:
813 * - sysctl_protected_hardlinks enabled
814 * - fsuid does not match inode
815 * - hardlink source is unsafe (see safe_hardlink_source() above)
816 * - not CAP_FOWNER
817 *
818 * Returns 0 if successful, -ve on error.
819 */
820static int may_linkat(struct path *link)
821{
822 const struct cred *cred;
823 struct inode *inode;
824
825 if (!sysctl_protected_hardlinks)
826 return 0;
827
828 cred = current_cred();
829 inode = link->dentry->d_inode;
830
831 /* Source inode owner (or CAP_FOWNER) can hardlink all they like,
832 * otherwise, it must be a safe source.
833 */
81abe27b 834 if (uid_eq(cred->fsuid, inode->i_uid) || safe_hardlink_source(inode) ||
800179c9
KC
835 capable(CAP_FOWNER))
836 return 0;
837
a51d9eaa 838 audit_log_link_denied("linkat", link);
800179c9
KC
839 return -EPERM;
840}
841
def4af30 842static __always_inline int
574197e0 843follow_link(struct path *link, struct nameidata *nd, void **p)
1da177e4 844{
7b9337aa 845 struct dentry *dentry = link->dentry;
6d7b5aae
AV
846 int error;
847 char *s;
1da177e4 848
844a3917
AV
849 BUG_ON(nd->flags & LOOKUP_RCU);
850
0e794589
AV
851 if (link->mnt == nd->path.mnt)
852 mntget(link->mnt);
853
6d7b5aae
AV
854 error = -ELOOP;
855 if (unlikely(current->total_link_count >= 40))
856 goto out_put_nd_path;
857
574197e0
AV
858 cond_resched();
859 current->total_link_count++;
860
68ac1234 861 touch_atime(link);
1da177e4 862 nd_set_link(nd, NULL);
cd4e91d3 863
36f3b4f6 864 error = security_inode_follow_link(link->dentry, nd);
6d7b5aae
AV
865 if (error)
866 goto out_put_nd_path;
36f3b4f6 867
86acdca1 868 nd->last_type = LAST_BIND;
def4af30
AV
869 *p = dentry->d_inode->i_op->follow_link(dentry, nd);
870 error = PTR_ERR(*p);
6d7b5aae 871 if (IS_ERR(*p))
408ef013 872 goto out_put_nd_path;
6d7b5aae
AV
873
874 error = 0;
875 s = nd_get_link(nd);
876 if (s) {
877 error = __vfs_follow_link(nd, s);
b5fb63c1
CH
878 if (unlikely(error))
879 put_link(nd, link, *p);
1da177e4 880 }
6d7b5aae
AV
881
882 return error;
883
884out_put_nd_path:
98f6ef64 885 *p = NULL;
6d7b5aae 886 path_put(&nd->path);
6d7b5aae 887 path_put(link);
1da177e4
LT
888 return error;
889}
890
31e6b01f
NP
891static int follow_up_rcu(struct path *path)
892{
0714a533
AV
893 struct mount *mnt = real_mount(path->mnt);
894 struct mount *parent;
31e6b01f
NP
895 struct dentry *mountpoint;
896
0714a533
AV
897 parent = mnt->mnt_parent;
898 if (&parent->mnt == path->mnt)
31e6b01f 899 return 0;
a73324da 900 mountpoint = mnt->mnt_mountpoint;
31e6b01f 901 path->dentry = mountpoint;
0714a533 902 path->mnt = &parent->mnt;
31e6b01f
NP
903 return 1;
904}
905
f015f126
DH
906/*
907 * follow_up - Find the mountpoint of path's vfsmount
908 *
909 * Given a path, find the mountpoint of its source file system.
910 * Replace @path with the path of the mountpoint in the parent mount.
911 * Up is towards /.
912 *
913 * Return 1 if we went up a level and 0 if we were already at the
914 * root.
915 */
bab77ebf 916int follow_up(struct path *path)
1da177e4 917{
0714a533
AV
918 struct mount *mnt = real_mount(path->mnt);
919 struct mount *parent;
1da177e4 920 struct dentry *mountpoint;
99b7db7b 921
962830df 922 br_read_lock(&vfsmount_lock);
0714a533 923 parent = mnt->mnt_parent;
3c0a6163 924 if (parent == mnt) {
962830df 925 br_read_unlock(&vfsmount_lock);
1da177e4
LT
926 return 0;
927 }
0714a533 928 mntget(&parent->mnt);
a73324da 929 mountpoint = dget(mnt->mnt_mountpoint);
962830df 930 br_read_unlock(&vfsmount_lock);
bab77ebf
AV
931 dput(path->dentry);
932 path->dentry = mountpoint;
933 mntput(path->mnt);
0714a533 934 path->mnt = &parent->mnt;
1da177e4
LT
935 return 1;
936}
937
b5c84bf6 938/*
9875cf80
DH
939 * Perform an automount
940 * - return -EISDIR to tell follow_managed() to stop and return the path we
941 * were called with.
1da177e4 942 */
9875cf80
DH
943static int follow_automount(struct path *path, unsigned flags,
944 bool *need_mntput)
31e6b01f 945{
9875cf80 946 struct vfsmount *mnt;
ea5b778a 947 int err;
9875cf80
DH
948
949 if (!path->dentry->d_op || !path->dentry->d_op->d_automount)
950 return -EREMOTE;
951
0ec26fd0
MS
952 /* We don't want to mount if someone's just doing a stat -
953 * unless they're stat'ing a directory and appended a '/' to
954 * the name.
955 *
956 * We do, however, want to mount if someone wants to open or
957 * create a file of any type under the mountpoint, wants to
958 * traverse through the mountpoint or wants to open the
959 * mounted directory. Also, autofs may mark negative dentries
960 * as being automount points. These will need the attentions
961 * of the daemon to instantiate them before they can be used.
9875cf80 962 */
0ec26fd0 963 if (!(flags & (LOOKUP_PARENT | LOOKUP_DIRECTORY |
d94c177b 964 LOOKUP_OPEN | LOOKUP_CREATE | LOOKUP_AUTOMOUNT)) &&
0ec26fd0
MS
965 path->dentry->d_inode)
966 return -EISDIR;
967
9875cf80
DH
968 current->total_link_count++;
969 if (current->total_link_count >= 40)
970 return -ELOOP;
971
972 mnt = path->dentry->d_op->d_automount(path);
973 if (IS_ERR(mnt)) {
974 /*
975 * The filesystem is allowed to return -EISDIR here to indicate
976 * it doesn't want to automount. For instance, autofs would do
977 * this so that its userspace daemon can mount on this dentry.
978 *
979 * However, we can only permit this if it's a terminal point in
980 * the path being looked up; if it wasn't then the remainder of
981 * the path is inaccessible and we should say so.
982 */
49084c3b 983 if (PTR_ERR(mnt) == -EISDIR && (flags & LOOKUP_PARENT))
9875cf80
DH
984 return -EREMOTE;
985 return PTR_ERR(mnt);
31e6b01f 986 }
ea5b778a 987
9875cf80
DH
988 if (!mnt) /* mount collision */
989 return 0;
31e6b01f 990
8aef1884
AV
991 if (!*need_mntput) {
992 /* lock_mount() may release path->mnt on error */
993 mntget(path->mnt);
994 *need_mntput = true;
995 }
19a167af 996 err = finish_automount(mnt, path);
9875cf80 997
ea5b778a
DH
998 switch (err) {
999 case -EBUSY:
1000 /* Someone else made a mount here whilst we were busy */
19a167af 1001 return 0;
ea5b778a 1002 case 0:
8aef1884 1003 path_put(path);
ea5b778a
DH
1004 path->mnt = mnt;
1005 path->dentry = dget(mnt->mnt_root);
ea5b778a 1006 return 0;
19a167af
AV
1007 default:
1008 return err;
ea5b778a 1009 }
19a167af 1010
463ffb2e
AV
1011}
1012
9875cf80
DH
1013/*
1014 * Handle a dentry that is managed in some way.
cc53ce53 1015 * - Flagged for transit management (autofs)
9875cf80
DH
1016 * - Flagged as mountpoint
1017 * - Flagged as automount point
1018 *
1019 * This may only be called in refwalk mode.
1020 *
1021 * Serialization is taken care of in namespace.c
1022 */
1023static int follow_managed(struct path *path, unsigned flags)
1da177e4 1024{
8aef1884 1025 struct vfsmount *mnt = path->mnt; /* held by caller, must be left alone */
9875cf80
DH
1026 unsigned managed;
1027 bool need_mntput = false;
8aef1884 1028 int ret = 0;
9875cf80
DH
1029
1030 /* Given that we're not holding a lock here, we retain the value in a
1031 * local variable for each dentry as we look at it so that we don't see
1032 * the components of that value change under us */
1033 while (managed = ACCESS_ONCE(path->dentry->d_flags),
1034 managed &= DCACHE_MANAGED_DENTRY,
1035 unlikely(managed != 0)) {
cc53ce53
DH
1036 /* Allow the filesystem to manage the transit without i_mutex
1037 * being held. */
1038 if (managed & DCACHE_MANAGE_TRANSIT) {
1039 BUG_ON(!path->dentry->d_op);
1040 BUG_ON(!path->dentry->d_op->d_manage);
1aed3e42 1041 ret = path->dentry->d_op->d_manage(path->dentry, false);
cc53ce53 1042 if (ret < 0)
8aef1884 1043 break;
cc53ce53
DH
1044 }
1045
9875cf80
DH
1046 /* Transit to a mounted filesystem. */
1047 if (managed & DCACHE_MOUNTED) {
1048 struct vfsmount *mounted = lookup_mnt(path);
1049 if (mounted) {
1050 dput(path->dentry);
1051 if (need_mntput)
1052 mntput(path->mnt);
1053 path->mnt = mounted;
1054 path->dentry = dget(mounted->mnt_root);
1055 need_mntput = true;
1056 continue;
1057 }
1058
1059 /* Something is mounted on this dentry in another
1060 * namespace and/or whatever was mounted there in this
1061 * namespace got unmounted before we managed to get the
1062 * vfsmount_lock */
1063 }
1064
1065 /* Handle an automount point */
1066 if (managed & DCACHE_NEED_AUTOMOUNT) {
1067 ret = follow_automount(path, flags, &need_mntput);
1068 if (ret < 0)
8aef1884 1069 break;
9875cf80
DH
1070 continue;
1071 }
1072
1073 /* We didn't change the current path point */
1074 break;
1da177e4 1075 }
8aef1884
AV
1076
1077 if (need_mntput && path->mnt == mnt)
1078 mntput(path->mnt);
1079 if (ret == -EISDIR)
1080 ret = 0;
a3fbbde7 1081 return ret < 0 ? ret : need_mntput;
1da177e4
LT
1082}
1083
cc53ce53 1084int follow_down_one(struct path *path)
1da177e4
LT
1085{
1086 struct vfsmount *mounted;
1087
1c755af4 1088 mounted = lookup_mnt(path);
1da177e4 1089 if (mounted) {
9393bd07
AV
1090 dput(path->dentry);
1091 mntput(path->mnt);
1092 path->mnt = mounted;
1093 path->dentry = dget(mounted->mnt_root);
1da177e4
LT
1094 return 1;
1095 }
1096 return 0;
1097}
1098
62a7375e
IK
1099static inline bool managed_dentry_might_block(struct dentry *dentry)
1100{
1101 return (dentry->d_flags & DCACHE_MANAGE_TRANSIT &&
1102 dentry->d_op->d_manage(dentry, true) < 0);
1103}
1104
9875cf80 1105/*
287548e4
AV
1106 * Try to skip to top of mountpoint pile in rcuwalk mode. Fail if
1107 * we meet a managed dentry that would need blocking.
9875cf80
DH
1108 */
1109static bool __follow_mount_rcu(struct nameidata *nd, struct path *path,
287548e4 1110 struct inode **inode)
9875cf80 1111{
62a7375e 1112 for (;;) {
c7105365 1113 struct mount *mounted;
62a7375e
IK
1114 /*
1115 * Don't forget we might have a non-mountpoint managed dentry
1116 * that wants to block transit.
1117 */
287548e4 1118 if (unlikely(managed_dentry_might_block(path->dentry)))
ab90911f 1119 return false;
62a7375e
IK
1120
1121 if (!d_mountpoint(path->dentry))
1122 break;
1123
9875cf80
DH
1124 mounted = __lookup_mnt(path->mnt, path->dentry, 1);
1125 if (!mounted)
1126 break;
c7105365
AV
1127 path->mnt = &mounted->mnt;
1128 path->dentry = mounted->mnt.mnt_root;
a3fbbde7 1129 nd->flags |= LOOKUP_JUMPED;
9875cf80 1130 nd->seq = read_seqcount_begin(&path->dentry->d_seq);
59430262
LT
1131 /*
1132 * Update the inode too. We don't need to re-check the
1133 * dentry sequence number here after this d_inode read,
1134 * because a mount-point is always pinned.
1135 */
1136 *inode = path->dentry->d_inode;
9875cf80 1137 }
9875cf80
DH
1138 return true;
1139}
1140
dea39376 1141static void follow_mount_rcu(struct nameidata *nd)
287548e4 1142{
dea39376 1143 while (d_mountpoint(nd->path.dentry)) {
c7105365 1144 struct mount *mounted;
dea39376 1145 mounted = __lookup_mnt(nd->path.mnt, nd->path.dentry, 1);
287548e4
AV
1146 if (!mounted)
1147 break;
c7105365
AV
1148 nd->path.mnt = &mounted->mnt;
1149 nd->path.dentry = mounted->mnt.mnt_root;
dea39376 1150 nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq);
287548e4
AV
1151 }
1152}
1153
31e6b01f
NP
1154static int follow_dotdot_rcu(struct nameidata *nd)
1155{
31e6b01f
NP
1156 set_root_rcu(nd);
1157
9875cf80 1158 while (1) {
31e6b01f
NP
1159 if (nd->path.dentry == nd->root.dentry &&
1160 nd->path.mnt == nd->root.mnt) {
1161 break;
1162 }
1163 if (nd->path.dentry != nd->path.mnt->mnt_root) {
1164 struct dentry *old = nd->path.dentry;
1165 struct dentry *parent = old->d_parent;
1166 unsigned seq;
1167
1168 seq = read_seqcount_begin(&parent->d_seq);
1169 if (read_seqcount_retry(&old->d_seq, nd->seq))
ef7562d5 1170 goto failed;
31e6b01f
NP
1171 nd->path.dentry = parent;
1172 nd->seq = seq;
1173 break;
1174 }
1175 if (!follow_up_rcu(&nd->path))
1176 break;
1177 nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq);
31e6b01f 1178 }
dea39376
AV
1179 follow_mount_rcu(nd);
1180 nd->inode = nd->path.dentry->d_inode;
31e6b01f 1181 return 0;
ef7562d5
AV
1182
1183failed:
1184 nd->flags &= ~LOOKUP_RCU;
5b6ca027
AV
1185 if (!(nd->flags & LOOKUP_ROOT))
1186 nd->root.mnt = NULL;
32a7991b 1187 unlock_rcu_walk();
ef7562d5 1188 return -ECHILD;
31e6b01f
NP
1189}
1190
cc53ce53
DH
1191/*
1192 * Follow down to the covering mount currently visible to userspace. At each
1193 * point, the filesystem owning that dentry may be queried as to whether the
1194 * caller is permitted to proceed or not.
cc53ce53 1195 */
7cc90cc3 1196int follow_down(struct path *path)
cc53ce53
DH
1197{
1198 unsigned managed;
1199 int ret;
1200
1201 while (managed = ACCESS_ONCE(path->dentry->d_flags),
1202 unlikely(managed & DCACHE_MANAGED_DENTRY)) {
1203 /* Allow the filesystem to manage the transit without i_mutex
1204 * being held.
1205 *
1206 * We indicate to the filesystem if someone is trying to mount
1207 * something here. This gives autofs the chance to deny anyone
1208 * other than its daemon the right to mount on its
1209 * superstructure.
1210 *
1211 * The filesystem may sleep at this point.
1212 */
1213 if (managed & DCACHE_MANAGE_TRANSIT) {
1214 BUG_ON(!path->dentry->d_op);
1215 BUG_ON(!path->dentry->d_op->d_manage);
ab90911f 1216 ret = path->dentry->d_op->d_manage(
1aed3e42 1217 path->dentry, false);
cc53ce53
DH
1218 if (ret < 0)
1219 return ret == -EISDIR ? 0 : ret;
1220 }
1221
1222 /* Transit to a mounted filesystem. */
1223 if (managed & DCACHE_MOUNTED) {
1224 struct vfsmount *mounted = lookup_mnt(path);
1225 if (!mounted)
1226 break;
1227 dput(path->dentry);
1228 mntput(path->mnt);
1229 path->mnt = mounted;
1230 path->dentry = dget(mounted->mnt_root);
1231 continue;
1232 }
1233
1234 /* Don't handle automount points here */
1235 break;
1236 }
1237 return 0;
1238}
1239
9875cf80
DH
1240/*
1241 * Skip to top of mountpoint pile in refwalk mode for follow_dotdot()
1242 */
1243static void follow_mount(struct path *path)
1244{
1245 while (d_mountpoint(path->dentry)) {
1246 struct vfsmount *mounted = lookup_mnt(path);
1247 if (!mounted)
1248 break;
1249 dput(path->dentry);
1250 mntput(path->mnt);
1251 path->mnt = mounted;
1252 path->dentry = dget(mounted->mnt_root);
1253 }
1254}
1255
31e6b01f 1256static void follow_dotdot(struct nameidata *nd)
1da177e4 1257{
2a737871 1258 set_root(nd);
e518ddb7 1259
1da177e4 1260 while(1) {
4ac91378 1261 struct dentry *old = nd->path.dentry;
1da177e4 1262
2a737871
AV
1263 if (nd->path.dentry == nd->root.dentry &&
1264 nd->path.mnt == nd->root.mnt) {
1da177e4
LT
1265 break;
1266 }
4ac91378 1267 if (nd->path.dentry != nd->path.mnt->mnt_root) {
3088dd70
AV
1268 /* rare case of legitimate dget_parent()... */
1269 nd->path.dentry = dget_parent(nd->path.dentry);
1da177e4
LT
1270 dput(old);
1271 break;
1272 }
3088dd70 1273 if (!follow_up(&nd->path))
1da177e4 1274 break;
1da177e4 1275 }
79ed0226 1276 follow_mount(&nd->path);
31e6b01f 1277 nd->inode = nd->path.dentry->d_inode;
1da177e4
LT
1278}
1279
baa03890 1280/*
bad61189
MS
1281 * This looks up the name in dcache, possibly revalidates the old dentry and
1282 * allocates a new one if not found or not valid. In the need_lookup argument
1283 * returns whether i_op->lookup is necessary.
1284 *
1285 * dir->d_inode->i_mutex must be held
baa03890 1286 */
bad61189 1287static struct dentry *lookup_dcache(struct qstr *name, struct dentry *dir,
201f956e 1288 unsigned int flags, bool *need_lookup)
baa03890 1289{
baa03890 1290 struct dentry *dentry;
bad61189 1291 int error;
baa03890 1292
bad61189
MS
1293 *need_lookup = false;
1294 dentry = d_lookup(dir, name);
1295 if (dentry) {
39e3c955 1296 if (dentry->d_flags & DCACHE_OP_REVALIDATE) {
201f956e 1297 error = d_revalidate(dentry, flags);
bad61189
MS
1298 if (unlikely(error <= 0)) {
1299 if (error < 0) {
1300 dput(dentry);
1301 return ERR_PTR(error);
1302 } else if (!d_invalidate(dentry)) {
1303 dput(dentry);
1304 dentry = NULL;
1305 }
1306 }
1307 }
1308 }
baa03890 1309
bad61189
MS
1310 if (!dentry) {
1311 dentry = d_alloc(dir, name);
1312 if (unlikely(!dentry))
1313 return ERR_PTR(-ENOMEM);
baa03890 1314
bad61189 1315 *need_lookup = true;
baa03890
NP
1316 }
1317 return dentry;
1318}
1319
44396f4b 1320/*
bad61189
MS
1321 * Call i_op->lookup on the dentry. The dentry must be negative but may be
1322 * hashed if it was pouplated with DCACHE_NEED_LOOKUP.
1323 *
1324 * dir->d_inode->i_mutex must be held
44396f4b 1325 */
bad61189 1326static struct dentry *lookup_real(struct inode *dir, struct dentry *dentry,
72bd866a 1327 unsigned int flags)
44396f4b 1328{
44396f4b
JB
1329 struct dentry *old;
1330
1331 /* Don't create child dentry for a dead directory. */
bad61189 1332 if (unlikely(IS_DEADDIR(dir))) {
e188dc02 1333 dput(dentry);
44396f4b 1334 return ERR_PTR(-ENOENT);
e188dc02 1335 }
44396f4b 1336
72bd866a 1337 old = dir->i_op->lookup(dir, dentry, flags);
44396f4b
JB
1338 if (unlikely(old)) {
1339 dput(dentry);
1340 dentry = old;
1341 }
1342 return dentry;
1343}
1344
a3255546 1345static struct dentry *__lookup_hash(struct qstr *name,
72bd866a 1346 struct dentry *base, unsigned int flags)
a3255546 1347{
bad61189 1348 bool need_lookup;
a3255546
AV
1349 struct dentry *dentry;
1350
72bd866a 1351 dentry = lookup_dcache(name, base, flags, &need_lookup);
bad61189
MS
1352 if (!need_lookup)
1353 return dentry;
a3255546 1354
72bd866a 1355 return lookup_real(base->d_inode, dentry, flags);
a3255546
AV
1356}
1357
1da177e4
LT
1358/*
1359 * It's more convoluted than I'd like it to be, but... it's still fairly
1360 * small and for now I'd prefer to have fast path as straight as possible.
1361 * It _is_ time-critical.
1362 */
e97cdc87 1363static int lookup_fast(struct nameidata *nd,
697f514d 1364 struct path *path, struct inode **inode)
1da177e4 1365{
4ac91378 1366 struct vfsmount *mnt = nd->path.mnt;
31e6b01f 1367 struct dentry *dentry, *parent = nd->path.dentry;
5a18fff2
AV
1368 int need_reval = 1;
1369 int status = 1;
9875cf80
DH
1370 int err;
1371
b04f784e
NP
1372 /*
1373 * Rename seqlock is not required here because in the off chance
1374 * of a false negative due to a concurrent rename, we're going to
1375 * do the non-racy lookup, below.
1376 */
31e6b01f
NP
1377 if (nd->flags & LOOKUP_RCU) {
1378 unsigned seq;
da53be12 1379 dentry = __d_lookup_rcu(parent, &nd->last, &seq);
5a18fff2
AV
1380 if (!dentry)
1381 goto unlazy;
1382
12f8ad4b
LT
1383 /*
1384 * This sequence count validates that the inode matches
1385 * the dentry name information from lookup.
1386 */
1387 *inode = dentry->d_inode;
1388 if (read_seqcount_retry(&dentry->d_seq, seq))
1389 return -ECHILD;
1390
1391 /*
1392 * This sequence count validates that the parent had no
1393 * changes while we did the lookup of the dentry above.
1394 *
1395 * The memory barrier in read_seqcount_begin of child is
1396 * enough, we can use __read_seqcount_retry here.
1397 */
31e6b01f
NP
1398 if (__read_seqcount_retry(&parent->d_seq, nd->seq))
1399 return -ECHILD;
31e6b01f 1400 nd->seq = seq;
5a18fff2 1401
24643087 1402 if (unlikely(dentry->d_flags & DCACHE_OP_REVALIDATE)) {
4ce16ef3 1403 status = d_revalidate(dentry, nd->flags);
5a18fff2
AV
1404 if (unlikely(status <= 0)) {
1405 if (status != -ECHILD)
1406 need_reval = 0;
1407 goto unlazy;
1408 }
24643087 1409 }
31e6b01f
NP
1410 path->mnt = mnt;
1411 path->dentry = dentry;
d6e9bd25
AV
1412 if (unlikely(!__follow_mount_rcu(nd, path, inode)))
1413 goto unlazy;
1414 if (unlikely(path->dentry->d_flags & DCACHE_NEED_AUTOMOUNT))
1415 goto unlazy;
1416 return 0;
5a18fff2 1417unlazy:
19660af7
AV
1418 if (unlazy_walk(nd, dentry))
1419 return -ECHILD;
5a18fff2 1420 } else {
e97cdc87 1421 dentry = __d_lookup(parent, &nd->last);
9875cf80 1422 }
5a18fff2 1423
81e6f520
AV
1424 if (unlikely(!dentry))
1425 goto need_lookup;
1426
5a18fff2 1427 if (unlikely(dentry->d_flags & DCACHE_OP_REVALIDATE) && need_reval)
4ce16ef3 1428 status = d_revalidate(dentry, nd->flags);
5a18fff2
AV
1429 if (unlikely(status <= 0)) {
1430 if (status < 0) {
1431 dput(dentry);
1432 return status;
1433 }
1434 if (!d_invalidate(dentry)) {
1435 dput(dentry);
81e6f520 1436 goto need_lookup;
5a18fff2 1437 }
24643087 1438 }
697f514d 1439
9875cf80
DH
1440 path->mnt = mnt;
1441 path->dentry = dentry;
1442 err = follow_managed(path, nd->flags);
89312214
IK
1443 if (unlikely(err < 0)) {
1444 path_put_conditional(path, nd);
9875cf80 1445 return err;
89312214 1446 }
a3fbbde7
AV
1447 if (err)
1448 nd->flags |= LOOKUP_JUMPED;
9875cf80 1449 *inode = path->dentry->d_inode;
1da177e4 1450 return 0;
81e6f520
AV
1451
1452need_lookup:
697f514d
MS
1453 return 1;
1454}
1455
1456/* Fast lookup failed, do it the slow way */
cc2a5271 1457static int lookup_slow(struct nameidata *nd, struct path *path)
697f514d
MS
1458{
1459 struct dentry *dentry, *parent;
1460 int err;
1461
1462 parent = nd->path.dentry;
81e6f520
AV
1463 BUG_ON(nd->inode != parent->d_inode);
1464
1465 mutex_lock(&parent->d_inode->i_mutex);
cc2a5271 1466 dentry = __lookup_hash(&nd->last, parent, nd->flags);
81e6f520
AV
1467 mutex_unlock(&parent->d_inode->i_mutex);
1468 if (IS_ERR(dentry))
1469 return PTR_ERR(dentry);
697f514d
MS
1470 path->mnt = nd->path.mnt;
1471 path->dentry = dentry;
1472 err = follow_managed(path, nd->flags);
1473 if (unlikely(err < 0)) {
1474 path_put_conditional(path, nd);
1475 return err;
1476 }
1477 if (err)
1478 nd->flags |= LOOKUP_JUMPED;
1479 return 0;
1da177e4
LT
1480}
1481
52094c8a
AV
1482static inline int may_lookup(struct nameidata *nd)
1483{
1484 if (nd->flags & LOOKUP_RCU) {
4ad5abb3 1485 int err = inode_permission(nd->inode, MAY_EXEC|MAY_NOT_BLOCK);
52094c8a
AV
1486 if (err != -ECHILD)
1487 return err;
19660af7 1488 if (unlazy_walk(nd, NULL))
52094c8a
AV
1489 return -ECHILD;
1490 }
4ad5abb3 1491 return inode_permission(nd->inode, MAY_EXEC);
52094c8a
AV
1492}
1493
9856fa1b
AV
1494static inline int handle_dots(struct nameidata *nd, int type)
1495{
1496 if (type == LAST_DOTDOT) {
1497 if (nd->flags & LOOKUP_RCU) {
1498 if (follow_dotdot_rcu(nd))
1499 return -ECHILD;
1500 } else
1501 follow_dotdot(nd);
1502 }
1503 return 0;
1504}
1505
951361f9
AV
1506static void terminate_walk(struct nameidata *nd)
1507{
1508 if (!(nd->flags & LOOKUP_RCU)) {
1509 path_put(&nd->path);
1510 } else {
1511 nd->flags &= ~LOOKUP_RCU;
5b6ca027
AV
1512 if (!(nd->flags & LOOKUP_ROOT))
1513 nd->root.mnt = NULL;
32a7991b 1514 unlock_rcu_walk();
951361f9
AV
1515 }
1516}
1517
3ddcd056
LT
1518/*
1519 * Do we need to follow links? We _really_ want to be able
1520 * to do this check without having to look at inode->i_op,
1521 * so we keep a cache of "no, this doesn't need follow_link"
1522 * for the common case.
1523 */
7813b94a 1524static inline int should_follow_link(struct inode *inode, int follow)
3ddcd056
LT
1525{
1526 if (unlikely(!(inode->i_opflags & IOP_NOFOLLOW))) {
1527 if (likely(inode->i_op->follow_link))
1528 return follow;
1529
1530 /* This gets set once for the inode lifetime */
1531 spin_lock(&inode->i_lock);
1532 inode->i_opflags |= IOP_NOFOLLOW;
1533 spin_unlock(&inode->i_lock);
1534 }
1535 return 0;
1536}
1537
ce57dfc1 1538static inline int walk_component(struct nameidata *nd, struct path *path,
21b9b073 1539 int follow)
ce57dfc1
AV
1540{
1541 struct inode *inode;
1542 int err;
1543 /*
1544 * "." and ".." are special - ".." especially so because it has
1545 * to be able to know about the current root directory and
1546 * parent relationships.
1547 */
21b9b073
AV
1548 if (unlikely(nd->last_type != LAST_NORM))
1549 return handle_dots(nd, nd->last_type);
e97cdc87 1550 err = lookup_fast(nd, path, &inode);
ce57dfc1 1551 if (unlikely(err)) {
697f514d
MS
1552 if (err < 0)
1553 goto out_err;
1554
cc2a5271 1555 err = lookup_slow(nd, path);
697f514d
MS
1556 if (err < 0)
1557 goto out_err;
1558
1559 inode = path->dentry->d_inode;
ce57dfc1 1560 }
697f514d
MS
1561 err = -ENOENT;
1562 if (!inode)
1563 goto out_path_put;
1564
7813b94a 1565 if (should_follow_link(inode, follow)) {
19660af7
AV
1566 if (nd->flags & LOOKUP_RCU) {
1567 if (unlikely(unlazy_walk(nd, path->dentry))) {
697f514d
MS
1568 err = -ECHILD;
1569 goto out_err;
19660af7
AV
1570 }
1571 }
ce57dfc1
AV
1572 BUG_ON(inode != path->dentry->d_inode);
1573 return 1;
1574 }
1575 path_to_nameidata(path, nd);
1576 nd->inode = inode;
1577 return 0;
697f514d
MS
1578
1579out_path_put:
1580 path_to_nameidata(path, nd);
1581out_err:
1582 terminate_walk(nd);
1583 return err;
ce57dfc1
AV
1584}
1585
b356379a
AV
1586/*
1587 * This limits recursive symlink follows to 8, while
1588 * limiting consecutive symlinks to 40.
1589 *
1590 * Without that kind of total limit, nasty chains of consecutive
1591 * symlinks can cause almost arbitrarily long lookups.
1592 */
1593static inline int nested_symlink(struct path *path, struct nameidata *nd)
1594{
1595 int res;
1596
b356379a
AV
1597 if (unlikely(current->link_count >= MAX_NESTED_LINKS)) {
1598 path_put_conditional(path, nd);
1599 path_put(&nd->path);
1600 return -ELOOP;
1601 }
1a4022f8 1602 BUG_ON(nd->depth >= MAX_NESTED_LINKS);
b356379a
AV
1603
1604 nd->depth++;
1605 current->link_count++;
1606
1607 do {
1608 struct path link = *path;
1609 void *cookie;
574197e0
AV
1610
1611 res = follow_link(&link, nd, &cookie);
6d7b5aae
AV
1612 if (res)
1613 break;
21b9b073 1614 res = walk_component(nd, path, LOOKUP_FOLLOW);
574197e0 1615 put_link(nd, &link, cookie);
b356379a
AV
1616 } while (res > 0);
1617
1618 current->link_count--;
1619 nd->depth--;
1620 return res;
1621}
1622
3ddcd056
LT
1623/*
1624 * We really don't want to look at inode->i_op->lookup
1625 * when we don't have to. So we keep a cache bit in
1626 * the inode ->i_opflags field that says "yes, we can
1627 * do lookup on this inode".
1628 */
1629static inline int can_lookup(struct inode *inode)
1630{
1631 if (likely(inode->i_opflags & IOP_LOOKUP))
1632 return 1;
1633 if (likely(!inode->i_op->lookup))
1634 return 0;
1635
1636 /* We do this once for the lifetime of the inode */
1637 spin_lock(&inode->i_lock);
1638 inode->i_opflags |= IOP_LOOKUP;
1639 spin_unlock(&inode->i_lock);
1640 return 1;
1641}
1642
bfcfaa77
LT
1643/*
1644 * We can do the critical dentry name comparison and hashing
1645 * operations one word at a time, but we are limited to:
1646 *
1647 * - Architectures with fast unaligned word accesses. We could
1648 * do a "get_unaligned()" if this helps and is sufficiently
1649 * fast.
1650 *
1651 * - Little-endian machines (so that we can generate the mask
1652 * of low bytes efficiently). Again, we *could* do a byte
1653 * swapping load on big-endian architectures if that is not
1654 * expensive enough to make the optimization worthless.
1655 *
1656 * - non-CONFIG_DEBUG_PAGEALLOC configurations (so that we
1657 * do not trap on the (extremely unlikely) case of a page
1658 * crossing operation.
1659 *
1660 * - Furthermore, we need an efficient 64-bit compile for the
1661 * 64-bit case in order to generate the "number of bytes in
1662 * the final mask". Again, that could be replaced with a
1663 * efficient population count instruction or similar.
1664 */
1665#ifdef CONFIG_DCACHE_WORD_ACCESS
1666
f68e556e 1667#include <asm/word-at-a-time.h>
bfcfaa77 1668
f68e556e 1669#ifdef CONFIG_64BIT
bfcfaa77
LT
1670
1671static inline unsigned int fold_hash(unsigned long hash)
1672{
1673 hash += hash >> (8*sizeof(int));
1674 return hash;
1675}
1676
1677#else /* 32-bit case */
1678
bfcfaa77
LT
1679#define fold_hash(x) (x)
1680
1681#endif
1682
1683unsigned int full_name_hash(const unsigned char *name, unsigned int len)
1684{
1685 unsigned long a, mask;
1686 unsigned long hash = 0;
1687
1688 for (;;) {
e419b4cc 1689 a = load_unaligned_zeropad(name);
bfcfaa77
LT
1690 if (len < sizeof(unsigned long))
1691 break;
1692 hash += a;
f132c5be 1693 hash *= 9;
bfcfaa77
LT
1694 name += sizeof(unsigned long);
1695 len -= sizeof(unsigned long);
1696 if (!len)
1697 goto done;
1698 }
1699 mask = ~(~0ul << len*8);
1700 hash += mask & a;
1701done:
1702 return fold_hash(hash);
1703}
1704EXPORT_SYMBOL(full_name_hash);
1705
bfcfaa77
LT
1706/*
1707 * Calculate the length and hash of the path component, and
1708 * return the length of the component;
1709 */
1710static inline unsigned long hash_name(const char *name, unsigned int *hashp)
1711{
36126f8f
LT
1712 unsigned long a, b, adata, bdata, mask, hash, len;
1713 const struct word_at_a_time constants = WORD_AT_A_TIME_CONSTANTS;
bfcfaa77
LT
1714
1715 hash = a = 0;
1716 len = -sizeof(unsigned long);
1717 do {
1718 hash = (hash + a) * 9;
1719 len += sizeof(unsigned long);
e419b4cc 1720 a = load_unaligned_zeropad(name+len);
36126f8f
LT
1721 b = a ^ REPEAT_BYTE('/');
1722 } while (!(has_zero(a, &adata, &constants) | has_zero(b, &bdata, &constants)));
1723
1724 adata = prep_zero_mask(a, adata, &constants);
1725 bdata = prep_zero_mask(b, bdata, &constants);
1726
1727 mask = create_zero_mask(adata | bdata);
1728
1729 hash += a & zero_bytemask(mask);
bfcfaa77
LT
1730 *hashp = fold_hash(hash);
1731
36126f8f 1732 return len + find_zero(mask);
bfcfaa77
LT
1733}
1734
1735#else
1736
0145acc2
LT
1737unsigned int full_name_hash(const unsigned char *name, unsigned int len)
1738{
1739 unsigned long hash = init_name_hash();
1740 while (len--)
1741 hash = partial_name_hash(*name++, hash);
1742 return end_name_hash(hash);
1743}
ae942ae7 1744EXPORT_SYMBOL(full_name_hash);
0145acc2 1745
200e9ef7
LT
1746/*
1747 * We know there's a real path component here of at least
1748 * one character.
1749 */
1750static inline unsigned long hash_name(const char *name, unsigned int *hashp)
1751{
1752 unsigned long hash = init_name_hash();
1753 unsigned long len = 0, c;
1754
1755 c = (unsigned char)*name;
1756 do {
1757 len++;
1758 hash = partial_name_hash(c, hash);
1759 c = (unsigned char)name[len];
1760 } while (c && c != '/');
1761 *hashp = end_name_hash(hash);
1762 return len;
1763}
1764
bfcfaa77
LT
1765#endif
1766
1da177e4
LT
1767/*
1768 * Name resolution.
ea3834d9
PM
1769 * This is the basic name resolution function, turning a pathname into
1770 * the final dentry. We expect 'base' to be positive and a directory.
1da177e4 1771 *
ea3834d9
PM
1772 * Returns 0 and nd will have valid dentry and mnt on success.
1773 * Returns error and drops reference to input namei data on failure.
1da177e4 1774 */
6de88d72 1775static int link_path_walk(const char *name, struct nameidata *nd)
1da177e4
LT
1776{
1777 struct path next;
1da177e4 1778 int err;
1da177e4
LT
1779
1780 while (*name=='/')
1781 name++;
1782 if (!*name)
086e183a 1783 return 0;
1da177e4 1784
1da177e4
LT
1785 /* At this point we know we have a real path component. */
1786 for(;;) {
1da177e4 1787 struct qstr this;
200e9ef7 1788 long len;
fe479a58 1789 int type;
1da177e4 1790
52094c8a 1791 err = may_lookup(nd);
1da177e4
LT
1792 if (err)
1793 break;
1794
200e9ef7 1795 len = hash_name(name, &this.hash);
1da177e4 1796 this.name = name;
200e9ef7 1797 this.len = len;
1da177e4 1798
fe479a58 1799 type = LAST_NORM;
200e9ef7 1800 if (name[0] == '.') switch (len) {
fe479a58 1801 case 2:
200e9ef7 1802 if (name[1] == '.') {
fe479a58 1803 type = LAST_DOTDOT;
16c2cd71
AV
1804 nd->flags |= LOOKUP_JUMPED;
1805 }
fe479a58
AV
1806 break;
1807 case 1:
1808 type = LAST_DOT;
1809 }
5a202bcd
AV
1810 if (likely(type == LAST_NORM)) {
1811 struct dentry *parent = nd->path.dentry;
16c2cd71 1812 nd->flags &= ~LOOKUP_JUMPED;
5a202bcd 1813 if (unlikely(parent->d_flags & DCACHE_OP_HASH)) {
da53be12 1814 err = parent->d_op->d_hash(parent, &this);
5a202bcd
AV
1815 if (err < 0)
1816 break;
1817 }
1818 }
fe479a58 1819
5f4a6a69
AV
1820 nd->last = this;
1821 nd->last_type = type;
1822
200e9ef7 1823 if (!name[len])
5f4a6a69 1824 return 0;
200e9ef7
LT
1825 /*
1826 * If it wasn't NUL, we know it was '/'. Skip that
1827 * slash, and continue until no more slashes.
1828 */
1829 do {
1830 len++;
1831 } while (unlikely(name[len] == '/'));
1832 if (!name[len])
5f4a6a69
AV
1833 return 0;
1834
200e9ef7 1835 name += len;
1da177e4 1836
21b9b073 1837 err = walk_component(nd, &next, LOOKUP_FOLLOW);
ce57dfc1
AV
1838 if (err < 0)
1839 return err;
1da177e4 1840
ce57dfc1 1841 if (err) {
b356379a 1842 err = nested_symlink(&next, nd);
1da177e4 1843 if (err)
a7472bab 1844 return err;
31e6b01f 1845 }
5f4a6a69
AV
1846 if (!can_lookup(nd->inode)) {
1847 err = -ENOTDIR;
1848 break;
1849 }
1da177e4 1850 }
951361f9 1851 terminate_walk(nd);
1da177e4
LT
1852 return err;
1853}
1854
70e9b357
AV
1855static int path_init(int dfd, const char *name, unsigned int flags,
1856 struct nameidata *nd, struct file **fp)
31e6b01f
NP
1857{
1858 int retval = 0;
31e6b01f
NP
1859
1860 nd->last_type = LAST_ROOT; /* if there are only slashes... */
16c2cd71 1861 nd->flags = flags | LOOKUP_JUMPED;
31e6b01f 1862 nd->depth = 0;
5b6ca027
AV
1863 if (flags & LOOKUP_ROOT) {
1864 struct inode *inode = nd->root.dentry->d_inode;
73d049a4 1865 if (*name) {
741b7c3f 1866 if (!can_lookup(inode))
73d049a4
AV
1867 return -ENOTDIR;
1868 retval = inode_permission(inode, MAY_EXEC);
1869 if (retval)
1870 return retval;
1871 }
5b6ca027
AV
1872 nd->path = nd->root;
1873 nd->inode = inode;
1874 if (flags & LOOKUP_RCU) {
32a7991b 1875 lock_rcu_walk();
5b6ca027
AV
1876 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
1877 } else {
1878 path_get(&nd->path);
1879 }
1880 return 0;
1881 }
1882
31e6b01f 1883 nd->root.mnt = NULL;
31e6b01f
NP
1884
1885 if (*name=='/') {
e41f7d4e 1886 if (flags & LOOKUP_RCU) {
32a7991b 1887 lock_rcu_walk();
e41f7d4e
AV
1888 set_root_rcu(nd);
1889 } else {
1890 set_root(nd);
1891 path_get(&nd->root);
1892 }
1893 nd->path = nd->root;
31e6b01f 1894 } else if (dfd == AT_FDCWD) {
e41f7d4e
AV
1895 if (flags & LOOKUP_RCU) {
1896 struct fs_struct *fs = current->fs;
1897 unsigned seq;
31e6b01f 1898
32a7991b 1899 lock_rcu_walk();
c28cc364 1900
e41f7d4e
AV
1901 do {
1902 seq = read_seqcount_begin(&fs->seq);
1903 nd->path = fs->pwd;
1904 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
1905 } while (read_seqcount_retry(&fs->seq, seq));
1906 } else {
1907 get_fs_pwd(current->fs, &nd->path);
1908 }
31e6b01f 1909 } else {
582aa64a 1910 /* Caller must check execute permissions on the starting path component */
2903ff01 1911 struct fd f = fdget_raw(dfd);
31e6b01f
NP
1912 struct dentry *dentry;
1913
2903ff01
AV
1914 if (!f.file)
1915 return -EBADF;
31e6b01f 1916
2903ff01 1917 dentry = f.file->f_path.dentry;
31e6b01f 1918
f52e0c11 1919 if (*name) {
741b7c3f 1920 if (!can_lookup(dentry->d_inode)) {
2903ff01
AV
1921 fdput(f);
1922 return -ENOTDIR;
1923 }
f52e0c11 1924 }
31e6b01f 1925
2903ff01 1926 nd->path = f.file->f_path;
e41f7d4e 1927 if (flags & LOOKUP_RCU) {
2903ff01
AV
1928 if (f.need_put)
1929 *fp = f.file;
e41f7d4e 1930 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
32a7991b 1931 lock_rcu_walk();
e41f7d4e 1932 } else {
2903ff01
AV
1933 path_get(&nd->path);
1934 fdput(f);
e41f7d4e 1935 }
31e6b01f 1936 }
31e6b01f 1937
31e6b01f 1938 nd->inode = nd->path.dentry->d_inode;
9b4a9b14 1939 return 0;
9b4a9b14
AV
1940}
1941
bd92d7fe
AV
1942static inline int lookup_last(struct nameidata *nd, struct path *path)
1943{
1944 if (nd->last_type == LAST_NORM && nd->last.name[nd->last.len])
1945 nd->flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
1946
1947 nd->flags &= ~LOOKUP_PARENT;
21b9b073 1948 return walk_component(nd, path, nd->flags & LOOKUP_FOLLOW);
bd92d7fe
AV
1949}
1950
9b4a9b14 1951/* Returns 0 and nd will be valid on success; Retuns error, otherwise. */
ee0827cd 1952static int path_lookupat(int dfd, const char *name,
9b4a9b14
AV
1953 unsigned int flags, struct nameidata *nd)
1954{
70e9b357 1955 struct file *base = NULL;
bd92d7fe
AV
1956 struct path path;
1957 int err;
31e6b01f
NP
1958
1959 /*
1960 * Path walking is largely split up into 2 different synchronisation
1961 * schemes, rcu-walk and ref-walk (explained in
1962 * Documentation/filesystems/path-lookup.txt). These share much of the
1963 * path walk code, but some things particularly setup, cleanup, and
1964 * following mounts are sufficiently divergent that functions are
1965 * duplicated. Typically there is a function foo(), and its RCU
1966 * analogue, foo_rcu().
1967 *
1968 * -ECHILD is the error number of choice (just to avoid clashes) that
1969 * is returned if some aspect of an rcu-walk fails. Such an error must
1970 * be handled by restarting a traditional ref-walk (which will always
1971 * be able to complete).
1972 */
bd92d7fe 1973 err = path_init(dfd, name, flags | LOOKUP_PARENT, nd, &base);
ee0827cd 1974
bd92d7fe
AV
1975 if (unlikely(err))
1976 return err;
ee0827cd
AV
1977
1978 current->total_link_count = 0;
bd92d7fe
AV
1979 err = link_path_walk(name, nd);
1980
1981 if (!err && !(flags & LOOKUP_PARENT)) {
bd92d7fe
AV
1982 err = lookup_last(nd, &path);
1983 while (err > 0) {
1984 void *cookie;
1985 struct path link = path;
800179c9
KC
1986 err = may_follow_link(&link, nd);
1987 if (unlikely(err))
1988 break;
bd92d7fe 1989 nd->flags |= LOOKUP_PARENT;
574197e0 1990 err = follow_link(&link, nd, &cookie);
6d7b5aae
AV
1991 if (err)
1992 break;
1993 err = lookup_last(nd, &path);
574197e0 1994 put_link(nd, &link, cookie);
bd92d7fe
AV
1995 }
1996 }
ee0827cd 1997
9f1fafee
AV
1998 if (!err)
1999 err = complete_walk(nd);
bd92d7fe
AV
2000
2001 if (!err && nd->flags & LOOKUP_DIRECTORY) {
05252901 2002 if (!can_lookup(nd->inode)) {
bd92d7fe 2003 path_put(&nd->path);
bd23a539 2004 err = -ENOTDIR;
bd92d7fe
AV
2005 }
2006 }
16c2cd71 2007
70e9b357
AV
2008 if (base)
2009 fput(base);
ee0827cd 2010
5b6ca027 2011 if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT)) {
2a737871
AV
2012 path_put(&nd->root);
2013 nd->root.mnt = NULL;
2014 }
bd92d7fe 2015 return err;
ee0827cd 2016}
31e6b01f 2017
873f1eed 2018static int filename_lookup(int dfd, struct filename *name,
ee0827cd
AV
2019 unsigned int flags, struct nameidata *nd)
2020{
873f1eed 2021 int retval = path_lookupat(dfd, name->name, flags | LOOKUP_RCU, nd);
ee0827cd 2022 if (unlikely(retval == -ECHILD))
873f1eed 2023 retval = path_lookupat(dfd, name->name, flags, nd);
ee0827cd 2024 if (unlikely(retval == -ESTALE))
873f1eed
JL
2025 retval = path_lookupat(dfd, name->name,
2026 flags | LOOKUP_REVAL, nd);
31e6b01f 2027
f78570dd 2028 if (likely(!retval))
adb5c247 2029 audit_inode(name, nd->path.dentry, flags & LOOKUP_PARENT);
170aa3d0 2030 return retval;
1da177e4
LT
2031}
2032
873f1eed
JL
2033static int do_path_lookup(int dfd, const char *name,
2034 unsigned int flags, struct nameidata *nd)
2035{
2036 struct filename filename = { .name = name };
2037
2038 return filename_lookup(dfd, &filename, flags, nd);
2039}
2040
79714f72
AV
2041/* does lookup, returns the object with parent locked */
2042struct dentry *kern_path_locked(const char *name, struct path *path)
5590ff0d 2043{
79714f72
AV
2044 struct nameidata nd;
2045 struct dentry *d;
2046 int err = do_path_lookup(AT_FDCWD, name, LOOKUP_PARENT, &nd);
2047 if (err)
2048 return ERR_PTR(err);
2049 if (nd.last_type != LAST_NORM) {
2050 path_put(&nd.path);
2051 return ERR_PTR(-EINVAL);
2052 }
2053 mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
1e0ea001 2054 d = __lookup_hash(&nd.last, nd.path.dentry, 0);
79714f72
AV
2055 if (IS_ERR(d)) {
2056 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
2057 path_put(&nd.path);
2058 return d;
2059 }
2060 *path = nd.path;
2061 return d;
5590ff0d
UD
2062}
2063
d1811465
AV
2064int kern_path(const char *name, unsigned int flags, struct path *path)
2065{
2066 struct nameidata nd;
2067 int res = do_path_lookup(AT_FDCWD, name, flags, &nd);
2068 if (!res)
2069 *path = nd.path;
2070 return res;
2071}
2072
16f18200
JJS
2073/**
2074 * vfs_path_lookup - lookup a file path relative to a dentry-vfsmount pair
2075 * @dentry: pointer to dentry of the base directory
2076 * @mnt: pointer to vfs mount of the base directory
2077 * @name: pointer to file name
2078 * @flags: lookup flags
e0a01249 2079 * @path: pointer to struct path to fill
16f18200
JJS
2080 */
2081int vfs_path_lookup(struct dentry *dentry, struct vfsmount *mnt,
2082 const char *name, unsigned int flags,
e0a01249 2083 struct path *path)
16f18200 2084{
e0a01249
AV
2085 struct nameidata nd;
2086 int err;
2087 nd.root.dentry = dentry;
2088 nd.root.mnt = mnt;
2089 BUG_ON(flags & LOOKUP_PARENT);
5b6ca027 2090 /* the first argument of do_path_lookup() is ignored with LOOKUP_ROOT */
e0a01249
AV
2091 err = do_path_lookup(AT_FDCWD, name, flags | LOOKUP_ROOT, &nd);
2092 if (!err)
2093 *path = nd.path;
2094 return err;
16f18200
JJS
2095}
2096
057f6c01
JM
2097/*
2098 * Restricted form of lookup. Doesn't follow links, single-component only,
2099 * needs parent already locked. Doesn't follow mounts.
2100 * SMP-safe.
2101 */
eead1911 2102static struct dentry *lookup_hash(struct nameidata *nd)
057f6c01 2103{
72bd866a 2104 return __lookup_hash(&nd->last, nd->path.dentry, nd->flags);
1da177e4
LT
2105}
2106
eead1911 2107/**
a6b91919 2108 * lookup_one_len - filesystem helper to lookup single pathname component
eead1911
CH
2109 * @name: pathname component to lookup
2110 * @base: base directory to lookup from
2111 * @len: maximum length @len should be interpreted to
2112 *
a6b91919
RD
2113 * Note that this routine is purely a helper for filesystem usage and should
2114 * not be called by generic code. Also note that by using this function the
eead1911
CH
2115 * nameidata argument is passed to the filesystem methods and a filesystem
2116 * using this helper needs to be prepared for that.
2117 */
057f6c01
JM
2118struct dentry *lookup_one_len(const char *name, struct dentry *base, int len)
2119{
057f6c01 2120 struct qstr this;
6a96ba54 2121 unsigned int c;
cda309de 2122 int err;
057f6c01 2123
2f9092e1
DW
2124 WARN_ON_ONCE(!mutex_is_locked(&base->d_inode->i_mutex));
2125
6a96ba54
AV
2126 this.name = name;
2127 this.len = len;
0145acc2 2128 this.hash = full_name_hash(name, len);
6a96ba54
AV
2129 if (!len)
2130 return ERR_PTR(-EACCES);
2131
21d8a15a
AV
2132 if (unlikely(name[0] == '.')) {
2133 if (len < 2 || (len == 2 && name[1] == '.'))
2134 return ERR_PTR(-EACCES);
2135 }
2136
6a96ba54
AV
2137 while (len--) {
2138 c = *(const unsigned char *)name++;
2139 if (c == '/' || c == '\0')
2140 return ERR_PTR(-EACCES);
6a96ba54 2141 }
5a202bcd
AV
2142 /*
2143 * See if the low-level filesystem might want
2144 * to use its own hash..
2145 */
2146 if (base->d_flags & DCACHE_OP_HASH) {
da53be12 2147 int err = base->d_op->d_hash(base, &this);
5a202bcd
AV
2148 if (err < 0)
2149 return ERR_PTR(err);
2150 }
eead1911 2151
cda309de
MS
2152 err = inode_permission(base->d_inode, MAY_EXEC);
2153 if (err)
2154 return ERR_PTR(err);
2155
72bd866a 2156 return __lookup_hash(&this, base, 0);
057f6c01
JM
2157}
2158
1fa1e7f6
AW
2159int user_path_at_empty(int dfd, const char __user *name, unsigned flags,
2160 struct path *path, int *empty)
1da177e4 2161{
2d8f3038 2162 struct nameidata nd;
91a27b2a 2163 struct filename *tmp = getname_flags(name, flags, empty);
1da177e4 2164 int err = PTR_ERR(tmp);
1da177e4 2165 if (!IS_ERR(tmp)) {
2d8f3038
AV
2166
2167 BUG_ON(flags & LOOKUP_PARENT);
2168
873f1eed 2169 err = filename_lookup(dfd, tmp, flags, &nd);
1da177e4 2170 putname(tmp);
2d8f3038
AV
2171 if (!err)
2172 *path = nd.path;
1da177e4
LT
2173 }
2174 return err;
2175}
2176
1fa1e7f6
AW
2177int user_path_at(int dfd, const char __user *name, unsigned flags,
2178 struct path *path)
2179{
f7493e5d 2180 return user_path_at_empty(dfd, name, flags, path, NULL);
1fa1e7f6
AW
2181}
2182
873f1eed
JL
2183/*
2184 * NB: most callers don't do anything directly with the reference to the
2185 * to struct filename, but the nd->last pointer points into the name string
2186 * allocated by getname. So we must hold the reference to it until all
2187 * path-walking is complete.
2188 */
91a27b2a 2189static struct filename *
9e790bd6
JL
2190user_path_parent(int dfd, const char __user *path, struct nameidata *nd,
2191 unsigned int flags)
2ad94ae6 2192{
91a27b2a 2193 struct filename *s = getname(path);
2ad94ae6
AV
2194 int error;
2195
9e790bd6
JL
2196 /* only LOOKUP_REVAL is allowed in extra flags */
2197 flags &= LOOKUP_REVAL;
2198
2ad94ae6 2199 if (IS_ERR(s))
91a27b2a 2200 return s;
2ad94ae6 2201
9e790bd6 2202 error = filename_lookup(dfd, s, flags | LOOKUP_PARENT, nd);
91a27b2a 2203 if (error) {
2ad94ae6 2204 putname(s);
91a27b2a
JL
2205 return ERR_PTR(error);
2206 }
2ad94ae6 2207
91a27b2a 2208 return s;
2ad94ae6
AV
2209}
2210
8033426e 2211/**
197df04c 2212 * mountpoint_last - look up last component for umount
8033426e
JL
2213 * @nd: pathwalk nameidata - currently pointing at parent directory of "last"
2214 * @path: pointer to container for result
2215 *
2216 * This is a special lookup_last function just for umount. In this case, we
2217 * need to resolve the path without doing any revalidation.
2218 *
2219 * The nameidata should be the result of doing a LOOKUP_PARENT pathwalk. Since
2220 * mountpoints are always pinned in the dcache, their ancestors are too. Thus,
2221 * in almost all cases, this lookup will be served out of the dcache. The only
2222 * cases where it won't are if nd->last refers to a symlink or the path is
2223 * bogus and it doesn't exist.
2224 *
2225 * Returns:
2226 * -error: if there was an error during lookup. This includes -ENOENT if the
2227 * lookup found a negative dentry. The nd->path reference will also be
2228 * put in this case.
2229 *
2230 * 0: if we successfully resolved nd->path and found it to not to be a
2231 * symlink that needs to be followed. "path" will also be populated.
2232 * The nd->path reference will also be put.
2233 *
2234 * 1: if we successfully resolved nd->last and found it to be a symlink
2235 * that needs to be followed. "path" will be populated with the path
2236 * to the link, and nd->path will *not* be put.
2237 */
2238static int
197df04c 2239mountpoint_last(struct nameidata *nd, struct path *path)
8033426e
JL
2240{
2241 int error = 0;
2242 struct dentry *dentry;
2243 struct dentry *dir = nd->path.dentry;
2244
35759521
AV
2245 /* If we're in rcuwalk, drop out of it to handle last component */
2246 if (nd->flags & LOOKUP_RCU) {
2247 if (unlazy_walk(nd, NULL)) {
2248 error = -ECHILD;
2249 goto out;
2250 }
8033426e
JL
2251 }
2252
2253 nd->flags &= ~LOOKUP_PARENT;
2254
2255 if (unlikely(nd->last_type != LAST_NORM)) {
2256 error = handle_dots(nd, nd->last_type);
35759521
AV
2257 if (error)
2258 goto out;
2259 dentry = dget(nd->path.dentry);
2260 goto done;
8033426e
JL
2261 }
2262
2263 mutex_lock(&dir->d_inode->i_mutex);
2264 dentry = d_lookup(dir, &nd->last);
2265 if (!dentry) {
2266 /*
2267 * No cached dentry. Mounted dentries are pinned in the cache,
2268 * so that means that this dentry is probably a symlink or the
2269 * path doesn't actually point to a mounted dentry.
2270 */
2271 dentry = d_alloc(dir, &nd->last);
2272 if (!dentry) {
2273 error = -ENOMEM;
35759521 2274 goto out;
8033426e 2275 }
35759521
AV
2276 dentry = lookup_real(dir->d_inode, dentry, nd->flags);
2277 error = PTR_ERR(dentry);
2278 if (IS_ERR(dentry))
2279 goto out;
8033426e
JL
2280 }
2281 mutex_unlock(&dir->d_inode->i_mutex);
2282
35759521
AV
2283done:
2284 if (!dentry->d_inode) {
2285 error = -ENOENT;
2286 dput(dentry);
2287 goto out;
8033426e 2288 }
35759521
AV
2289 path->dentry = dentry;
2290 path->mnt = mntget(nd->path.mnt);
2291 if (should_follow_link(dentry->d_inode, nd->flags & LOOKUP_FOLLOW))
2292 return 1;
2293 follow_mount(path);
2294 error = 0;
2295out:
8033426e
JL
2296 terminate_walk(nd);
2297 return error;
2298}
2299
2300/**
197df04c 2301 * path_mountpoint - look up a path to be umounted
8033426e
JL
2302 * @dfd: directory file descriptor to start walk from
2303 * @name: full pathname to walk
2304 * @flags: lookup flags
8033426e
JL
2305 *
2306 * Look up the given name, but don't attempt to revalidate the last component.
2307 * Returns 0 and "path" will be valid on success; Retuns error otherwise.
2308 */
2309static int
197df04c 2310path_mountpoint(int dfd, const char *name, struct path *path, unsigned int flags)
8033426e
JL
2311{
2312 struct file *base = NULL;
2313 struct nameidata nd;
2314 int err;
2315
2316 err = path_init(dfd, name, flags | LOOKUP_PARENT, &nd, &base);
2317 if (unlikely(err))
2318 return err;
2319
2320 current->total_link_count = 0;
2321 err = link_path_walk(name, &nd);
2322 if (err)
2323 goto out;
2324
197df04c 2325 err = mountpoint_last(&nd, path);
8033426e
JL
2326 while (err > 0) {
2327 void *cookie;
2328 struct path link = *path;
2329 err = may_follow_link(&link, &nd);
2330 if (unlikely(err))
2331 break;
2332 nd.flags |= LOOKUP_PARENT;
2333 err = follow_link(&link, &nd, &cookie);
2334 if (err)
2335 break;
197df04c 2336 err = mountpoint_last(&nd, path);
8033426e
JL
2337 put_link(&nd, &link, cookie);
2338 }
2339out:
2340 if (base)
2341 fput(base);
2342
2343 if (nd.root.mnt && !(nd.flags & LOOKUP_ROOT))
2344 path_put(&nd.root);
2345
2346 return err;
2347}
2348
2d864651
AV
2349static int
2350filename_mountpoint(int dfd, struct filename *s, struct path *path,
2351 unsigned int flags)
2352{
2353 int error = path_mountpoint(dfd, s->name, path, flags | LOOKUP_RCU);
2354 if (unlikely(error == -ECHILD))
2355 error = path_mountpoint(dfd, s->name, path, flags);
2356 if (unlikely(error == -ESTALE))
2357 error = path_mountpoint(dfd, s->name, path, flags | LOOKUP_REVAL);
2358 if (likely(!error))
2359 audit_inode(s, path->dentry, 0);
2360 return error;
2361}
2362
8033426e 2363/**
197df04c 2364 * user_path_mountpoint_at - lookup a path from userland in order to umount it
8033426e
JL
2365 * @dfd: directory file descriptor
2366 * @name: pathname from userland
2367 * @flags: lookup flags
2368 * @path: pointer to container to hold result
2369 *
2370 * A umount is a special case for path walking. We're not actually interested
2371 * in the inode in this situation, and ESTALE errors can be a problem. We
2372 * simply want track down the dentry and vfsmount attached at the mountpoint
2373 * and avoid revalidating the last component.
2374 *
2375 * Returns 0 and populates "path" on success.
2376 */
2377int
197df04c 2378user_path_mountpoint_at(int dfd, const char __user *name, unsigned int flags,
8033426e
JL
2379 struct path *path)
2380{
2381 struct filename *s = getname(name);
2382 int error;
8033426e
JL
2383 if (IS_ERR(s))
2384 return PTR_ERR(s);
2d864651 2385 error = filename_mountpoint(dfd, s, path, flags);
8033426e
JL
2386 putname(s);
2387 return error;
2388}
2389
2d864651
AV
2390int
2391kern_path_mountpoint(int dfd, const char *name, struct path *path,
2392 unsigned int flags)
2393{
2394 struct filename s = {.name = name};
2395 return filename_mountpoint(dfd, &s, path, flags);
2396}
2397EXPORT_SYMBOL(kern_path_mountpoint);
2398
1da177e4
LT
2399/*
2400 * It's inline, so penalty for filesystems that don't use sticky bit is
2401 * minimal.
2402 */
2403static inline int check_sticky(struct inode *dir, struct inode *inode)
2404{
8e96e3b7 2405 kuid_t fsuid = current_fsuid();
da9592ed 2406
1da177e4
LT
2407 if (!(dir->i_mode & S_ISVTX))
2408 return 0;
8e96e3b7 2409 if (uid_eq(inode->i_uid, fsuid))
1da177e4 2410 return 0;
8e96e3b7 2411 if (uid_eq(dir->i_uid, fsuid))
1da177e4 2412 return 0;
1a48e2ac 2413 return !inode_capable(inode, CAP_FOWNER);
1da177e4
LT
2414}
2415
2416/*
2417 * Check whether we can remove a link victim from directory dir, check
2418 * whether the type of victim is right.
2419 * 1. We can't do it if dir is read-only (done in permission())
2420 * 2. We should have write and exec permissions on dir
2421 * 3. We can't remove anything from append-only dir
2422 * 4. We can't do anything with immutable dir (done in permission())
2423 * 5. If the sticky bit on dir is set we should either
2424 * a. be owner of dir, or
2425 * b. be owner of victim, or
2426 * c. have CAP_FOWNER capability
2427 * 6. If the victim is append-only or immutable we can't do antyhing with
2428 * links pointing to it.
2429 * 7. If we were asked to remove a directory and victim isn't one - ENOTDIR.
2430 * 8. If we were asked to remove a non-directory and victim isn't one - EISDIR.
2431 * 9. We can't remove a root or mountpoint.
2432 * 10. We don't allow removal of NFS sillyrenamed files; it's handled by
2433 * nfs_async_unlink().
2434 */
858119e1 2435static int may_delete(struct inode *dir,struct dentry *victim,int isdir)
1da177e4
LT
2436{
2437 int error;
2438
2439 if (!victim->d_inode)
2440 return -ENOENT;
2441
2442 BUG_ON(victim->d_parent->d_inode != dir);
4fa6b5ec 2443 audit_inode_child(dir, victim, AUDIT_TYPE_CHILD_DELETE);
1da177e4 2444
f419a2e3 2445 error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
1da177e4
LT
2446 if (error)
2447 return error;
2448 if (IS_APPEND(dir))
2449 return -EPERM;
2450 if (check_sticky(dir, victim->d_inode)||IS_APPEND(victim->d_inode)||
f9454548 2451 IS_IMMUTABLE(victim->d_inode) || IS_SWAPFILE(victim->d_inode))
1da177e4
LT
2452 return -EPERM;
2453 if (isdir) {
2454 if (!S_ISDIR(victim->d_inode->i_mode))
2455 return -ENOTDIR;
2456 if (IS_ROOT(victim))
2457 return -EBUSY;
2458 } else if (S_ISDIR(victim->d_inode->i_mode))
2459 return -EISDIR;
2460 if (IS_DEADDIR(dir))
2461 return -ENOENT;
2462 if (victim->d_flags & DCACHE_NFSFS_RENAMED)
2463 return -EBUSY;
2464 return 0;
2465}
2466
2467/* Check whether we can create an object with dentry child in directory
2468 * dir.
2469 * 1. We can't do it if child already exists (open has special treatment for
2470 * this case, but since we are inlined it's OK)
2471 * 2. We can't do it if dir is read-only (done in permission())
2472 * 3. We should have write and exec permissions on dir
2473 * 4. We can't do it if dir is immutable (done in permission())
2474 */
a95164d9 2475static inline int may_create(struct inode *dir, struct dentry *child)
1da177e4
LT
2476{
2477 if (child->d_inode)
2478 return -EEXIST;
2479 if (IS_DEADDIR(dir))
2480 return -ENOENT;
f419a2e3 2481 return inode_permission(dir, MAY_WRITE | MAY_EXEC);
1da177e4
LT
2482}
2483
1da177e4
LT
2484/*
2485 * p1 and p2 should be directories on the same fs.
2486 */
2487struct dentry *lock_rename(struct dentry *p1, struct dentry *p2)
2488{
2489 struct dentry *p;
2490
2491 if (p1 == p2) {
f2eace23 2492 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
1da177e4
LT
2493 return NULL;
2494 }
2495
a11f3a05 2496 mutex_lock(&p1->d_inode->i_sb->s_vfs_rename_mutex);
1da177e4 2497
e2761a11
OH
2498 p = d_ancestor(p2, p1);
2499 if (p) {
2500 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_PARENT);
2501 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_CHILD);
2502 return p;
1da177e4
LT
2503 }
2504
e2761a11
OH
2505 p = d_ancestor(p1, p2);
2506 if (p) {
2507 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
2508 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_CHILD);
2509 return p;
1da177e4
LT
2510 }
2511
f2eace23
IM
2512 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
2513 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_CHILD);
1da177e4
LT
2514 return NULL;
2515}
2516
2517void unlock_rename(struct dentry *p1, struct dentry *p2)
2518{
1b1dcc1b 2519 mutex_unlock(&p1->d_inode->i_mutex);
1da177e4 2520 if (p1 != p2) {
1b1dcc1b 2521 mutex_unlock(&p2->d_inode->i_mutex);
a11f3a05 2522 mutex_unlock(&p1->d_inode->i_sb->s_vfs_rename_mutex);
1da177e4
LT
2523 }
2524}
2525
4acdaf27 2526int vfs_create(struct inode *dir, struct dentry *dentry, umode_t mode,
312b63fb 2527 bool want_excl)
1da177e4 2528{
a95164d9 2529 int error = may_create(dir, dentry);
1da177e4
LT
2530 if (error)
2531 return error;
2532
acfa4380 2533 if (!dir->i_op->create)
1da177e4
LT
2534 return -EACCES; /* shouldn't it be ENOSYS? */
2535 mode &= S_IALLUGO;
2536 mode |= S_IFREG;
2537 error = security_inode_create(dir, dentry, mode);
2538 if (error)
2539 return error;
312b63fb 2540 error = dir->i_op->create(dir, dentry, mode, want_excl);
a74574aa 2541 if (!error)
f38aa942 2542 fsnotify_create(dir, dentry);
1da177e4
LT
2543 return error;
2544}
2545
73d049a4 2546static int may_open(struct path *path, int acc_mode, int flag)
1da177e4 2547{
3fb64190 2548 struct dentry *dentry = path->dentry;
1da177e4
LT
2549 struct inode *inode = dentry->d_inode;
2550 int error;
2551
bcda7652
AV
2552 /* O_PATH? */
2553 if (!acc_mode)
2554 return 0;
2555
1da177e4
LT
2556 if (!inode)
2557 return -ENOENT;
2558
c8fe8f30
CH
2559 switch (inode->i_mode & S_IFMT) {
2560 case S_IFLNK:
1da177e4 2561 return -ELOOP;
c8fe8f30
CH
2562 case S_IFDIR:
2563 if (acc_mode & MAY_WRITE)
2564 return -EISDIR;
2565 break;
2566 case S_IFBLK:
2567 case S_IFCHR:
3fb64190 2568 if (path->mnt->mnt_flags & MNT_NODEV)
1da177e4 2569 return -EACCES;
c8fe8f30
CH
2570 /*FALLTHRU*/
2571 case S_IFIFO:
2572 case S_IFSOCK:
1da177e4 2573 flag &= ~O_TRUNC;
c8fe8f30 2574 break;
4a3fd211 2575 }
b41572e9 2576
3fb64190 2577 error = inode_permission(inode, acc_mode);
b41572e9
DH
2578 if (error)
2579 return error;
6146f0d5 2580
1da177e4
LT
2581 /*
2582 * An append-only file must be opened in append mode for writing.
2583 */
2584 if (IS_APPEND(inode)) {
8737c930 2585 if ((flag & O_ACCMODE) != O_RDONLY && !(flag & O_APPEND))
7715b521 2586 return -EPERM;
1da177e4 2587 if (flag & O_TRUNC)
7715b521 2588 return -EPERM;
1da177e4
LT
2589 }
2590
2591 /* O_NOATIME can only be set by the owner or superuser */
2e149670 2592 if (flag & O_NOATIME && !inode_owner_or_capable(inode))
7715b521 2593 return -EPERM;
1da177e4 2594
f3c7691e 2595 return 0;
7715b521 2596}
1da177e4 2597
e1181ee6 2598static int handle_truncate(struct file *filp)
7715b521 2599{
e1181ee6 2600 struct path *path = &filp->f_path;
7715b521
AV
2601 struct inode *inode = path->dentry->d_inode;
2602 int error = get_write_access(inode);
2603 if (error)
2604 return error;
2605 /*
2606 * Refuse to truncate files with mandatory locks held on them.
2607 */
2608 error = locks_verify_locked(inode);
2609 if (!error)
ea0d3ab2 2610 error = security_path_truncate(path);
7715b521
AV
2611 if (!error) {
2612 error = do_truncate(path->dentry, 0,
2613 ATTR_MTIME|ATTR_CTIME|ATTR_OPEN,
e1181ee6 2614 filp);
7715b521
AV
2615 }
2616 put_write_access(inode);
acd0c935 2617 return error;
1da177e4
LT
2618}
2619
d57999e1
DH
2620static inline int open_to_namei_flags(int flag)
2621{
8a5e929d
AV
2622 if ((flag & O_ACCMODE) == 3)
2623 flag--;
d57999e1
DH
2624 return flag;
2625}
2626
d18e9008
MS
2627static int may_o_create(struct path *dir, struct dentry *dentry, umode_t mode)
2628{
2629 int error = security_path_mknod(dir, dentry, mode, 0);
2630 if (error)
2631 return error;
2632
2633 error = inode_permission(dir->dentry->d_inode, MAY_WRITE | MAY_EXEC);
2634 if (error)
2635 return error;
2636
2637 return security_inode_create(dir->dentry->d_inode, dentry, mode);
2638}
2639
1acf0af9
DH
2640/*
2641 * Attempt to atomically look up, create and open a file from a negative
2642 * dentry.
2643 *
2644 * Returns 0 if successful. The file will have been created and attached to
2645 * @file by the filesystem calling finish_open().
2646 *
2647 * Returns 1 if the file was looked up only or didn't need creating. The
2648 * caller will need to perform the open themselves. @path will have been
2649 * updated to point to the new dentry. This may be negative.
2650 *
2651 * Returns an error code otherwise.
2652 */
2675a4eb
AV
2653static int atomic_open(struct nameidata *nd, struct dentry *dentry,
2654 struct path *path, struct file *file,
2655 const struct open_flags *op,
64894cf8 2656 bool got_write, bool need_lookup,
2675a4eb 2657 int *opened)
d18e9008
MS
2658{
2659 struct inode *dir = nd->path.dentry->d_inode;
2660 unsigned open_flag = open_to_namei_flags(op->open_flag);
2661 umode_t mode;
2662 int error;
2663 int acc_mode;
d18e9008
MS
2664 int create_error = 0;
2665 struct dentry *const DENTRY_NOT_SET = (void *) -1UL;
2666
2667 BUG_ON(dentry->d_inode);
2668
2669 /* Don't create child dentry for a dead directory. */
2670 if (unlikely(IS_DEADDIR(dir))) {
2675a4eb 2671 error = -ENOENT;
d18e9008
MS
2672 goto out;
2673 }
2674
62b259d8 2675 mode = op->mode;
d18e9008
MS
2676 if ((open_flag & O_CREAT) && !IS_POSIXACL(dir))
2677 mode &= ~current_umask();
2678
f8310c59 2679 if ((open_flag & (O_EXCL | O_CREAT)) == (O_EXCL | O_CREAT)) {
d18e9008 2680 open_flag &= ~O_TRUNC;
47237687 2681 *opened |= FILE_CREATED;
d18e9008
MS
2682 }
2683
2684 /*
2685 * Checking write permission is tricky, bacuse we don't know if we are
2686 * going to actually need it: O_CREAT opens should work as long as the
2687 * file exists. But checking existence breaks atomicity. The trick is
2688 * to check access and if not granted clear O_CREAT from the flags.
2689 *
2690 * Another problem is returing the "right" error value (e.g. for an
2691 * O_EXCL open we want to return EEXIST not EROFS).
2692 */
64894cf8
AV
2693 if (((open_flag & (O_CREAT | O_TRUNC)) ||
2694 (open_flag & O_ACCMODE) != O_RDONLY) && unlikely(!got_write)) {
2695 if (!(open_flag & O_CREAT)) {
d18e9008
MS
2696 /*
2697 * No O_CREATE -> atomicity not a requirement -> fall
2698 * back to lookup + open
2699 */
2700 goto no_open;
2701 } else if (open_flag & (O_EXCL | O_TRUNC)) {
2702 /* Fall back and fail with the right error */
64894cf8 2703 create_error = -EROFS;
d18e9008
MS
2704 goto no_open;
2705 } else {
2706 /* No side effects, safe to clear O_CREAT */
64894cf8 2707 create_error = -EROFS;
d18e9008
MS
2708 open_flag &= ~O_CREAT;
2709 }
2710 }
2711
2712 if (open_flag & O_CREAT) {
38227f78 2713 error = may_o_create(&nd->path, dentry, mode);
d18e9008
MS
2714 if (error) {
2715 create_error = error;
2716 if (open_flag & O_EXCL)
2717 goto no_open;
2718 open_flag &= ~O_CREAT;
2719 }
2720 }
2721
2722 if (nd->flags & LOOKUP_DIRECTORY)
2723 open_flag |= O_DIRECTORY;
2724
30d90494
AV
2725 file->f_path.dentry = DENTRY_NOT_SET;
2726 file->f_path.mnt = nd->path.mnt;
2727 error = dir->i_op->atomic_open(dir, dentry, file, open_flag, mode,
47237687 2728 opened);
d9585277 2729 if (error < 0) {
d9585277
AV
2730 if (create_error && error == -ENOENT)
2731 error = create_error;
d18e9008
MS
2732 goto out;
2733 }
2734
2735 acc_mode = op->acc_mode;
47237687 2736 if (*opened & FILE_CREATED) {
d18e9008
MS
2737 fsnotify_create(dir, dentry);
2738 acc_mode = MAY_OPEN;
2739 }
2740
d9585277 2741 if (error) { /* returned 1, that is */
30d90494 2742 if (WARN_ON(file->f_path.dentry == DENTRY_NOT_SET)) {
2675a4eb 2743 error = -EIO;
d18e9008
MS
2744 goto out;
2745 }
30d90494 2746 if (file->f_path.dentry) {
d18e9008 2747 dput(dentry);
30d90494 2748 dentry = file->f_path.dentry;
d18e9008 2749 }
62b2ce96
SW
2750 if (create_error && dentry->d_inode == NULL) {
2751 error = create_error;
2752 goto out;
2753 }
d18e9008
MS
2754 goto looked_up;
2755 }
2756
2757 /*
2758 * We didn't have the inode before the open, so check open permission
2759 * here.
2760 */
2675a4eb
AV
2761 error = may_open(&file->f_path, acc_mode, open_flag);
2762 if (error)
2763 fput(file);
d18e9008
MS
2764
2765out:
2766 dput(dentry);
2675a4eb 2767 return error;
d18e9008 2768
d18e9008
MS
2769no_open:
2770 if (need_lookup) {
72bd866a 2771 dentry = lookup_real(dir, dentry, nd->flags);
d18e9008 2772 if (IS_ERR(dentry))
2675a4eb 2773 return PTR_ERR(dentry);
d18e9008
MS
2774
2775 if (create_error) {
2776 int open_flag = op->open_flag;
2777
2675a4eb 2778 error = create_error;
d18e9008
MS
2779 if ((open_flag & O_EXCL)) {
2780 if (!dentry->d_inode)
2781 goto out;
2782 } else if (!dentry->d_inode) {
2783 goto out;
2784 } else if ((open_flag & O_TRUNC) &&
2785 S_ISREG(dentry->d_inode->i_mode)) {
2786 goto out;
2787 }
2788 /* will fail later, go on to get the right error */
2789 }
2790 }
2791looked_up:
2792 path->dentry = dentry;
2793 path->mnt = nd->path.mnt;
2675a4eb 2794 return 1;
d18e9008
MS
2795}
2796
d58ffd35 2797/*
1acf0af9 2798 * Look up and maybe create and open the last component.
d58ffd35
MS
2799 *
2800 * Must be called with i_mutex held on parent.
2801 *
1acf0af9
DH
2802 * Returns 0 if the file was successfully atomically created (if necessary) and
2803 * opened. In this case the file will be returned attached to @file.
2804 *
2805 * Returns 1 if the file was not completely opened at this time, though lookups
2806 * and creations will have been performed and the dentry returned in @path will
2807 * be positive upon return if O_CREAT was specified. If O_CREAT wasn't
2808 * specified then a negative dentry may be returned.
2809 *
2810 * An error code is returned otherwise.
2811 *
2812 * FILE_CREATE will be set in @*opened if the dentry was created and will be
2813 * cleared otherwise prior to returning.
d58ffd35 2814 */
2675a4eb
AV
2815static int lookup_open(struct nameidata *nd, struct path *path,
2816 struct file *file,
2817 const struct open_flags *op,
64894cf8 2818 bool got_write, int *opened)
d58ffd35
MS
2819{
2820 struct dentry *dir = nd->path.dentry;
54ef4872 2821 struct inode *dir_inode = dir->d_inode;
d58ffd35
MS
2822 struct dentry *dentry;
2823 int error;
54ef4872 2824 bool need_lookup;
d58ffd35 2825
47237687 2826 *opened &= ~FILE_CREATED;
201f956e 2827 dentry = lookup_dcache(&nd->last, dir, nd->flags, &need_lookup);
d58ffd35 2828 if (IS_ERR(dentry))
2675a4eb 2829 return PTR_ERR(dentry);
d58ffd35 2830
d18e9008
MS
2831 /* Cached positive dentry: will open in f_op->open */
2832 if (!need_lookup && dentry->d_inode)
2833 goto out_no_open;
2834
2835 if ((nd->flags & LOOKUP_OPEN) && dir_inode->i_op->atomic_open) {
64894cf8 2836 return atomic_open(nd, dentry, path, file, op, got_write,
47237687 2837 need_lookup, opened);
d18e9008
MS
2838 }
2839
54ef4872
MS
2840 if (need_lookup) {
2841 BUG_ON(dentry->d_inode);
2842
72bd866a 2843 dentry = lookup_real(dir_inode, dentry, nd->flags);
54ef4872 2844 if (IS_ERR(dentry))
2675a4eb 2845 return PTR_ERR(dentry);
54ef4872
MS
2846 }
2847
d58ffd35
MS
2848 /* Negative dentry, just create the file */
2849 if (!dentry->d_inode && (op->open_flag & O_CREAT)) {
2850 umode_t mode = op->mode;
2851 if (!IS_POSIXACL(dir->d_inode))
2852 mode &= ~current_umask();
2853 /*
2854 * This write is needed to ensure that a
2855 * rw->ro transition does not occur between
2856 * the time when the file is created and when
2857 * a permanent write count is taken through
015c3bbc 2858 * the 'struct file' in finish_open().
d58ffd35 2859 */
64894cf8
AV
2860 if (!got_write) {
2861 error = -EROFS;
d58ffd35 2862 goto out_dput;
64894cf8 2863 }
47237687 2864 *opened |= FILE_CREATED;
d58ffd35
MS
2865 error = security_path_mknod(&nd->path, dentry, mode, 0);
2866 if (error)
2867 goto out_dput;
312b63fb
AV
2868 error = vfs_create(dir->d_inode, dentry, mode,
2869 nd->flags & LOOKUP_EXCL);
d58ffd35
MS
2870 if (error)
2871 goto out_dput;
2872 }
d18e9008 2873out_no_open:
d58ffd35
MS
2874 path->dentry = dentry;
2875 path->mnt = nd->path.mnt;
2675a4eb 2876 return 1;
d58ffd35
MS
2877
2878out_dput:
2879 dput(dentry);
2675a4eb 2880 return error;
d58ffd35
MS
2881}
2882
31e6b01f 2883/*
fe2d35ff 2884 * Handle the last step of open()
31e6b01f 2885 */
2675a4eb
AV
2886static int do_last(struct nameidata *nd, struct path *path,
2887 struct file *file, const struct open_flags *op,
669abf4e 2888 int *opened, struct filename *name)
fb1cc555 2889{
a1e28038 2890 struct dentry *dir = nd->path.dentry;
ca344a89 2891 int open_flag = op->open_flag;
77d660a8 2892 bool will_truncate = (open_flag & O_TRUNC) != 0;
64894cf8 2893 bool got_write = false;
bcda7652 2894 int acc_mode = op->acc_mode;
a1eb3315 2895 struct inode *inode;
77d660a8 2896 bool symlink_ok = false;
16b1c1cd
MS
2897 struct path save_parent = { .dentry = NULL, .mnt = NULL };
2898 bool retried = false;
16c2cd71 2899 int error;
1f36f774 2900
c3e380b0
AV
2901 nd->flags &= ~LOOKUP_PARENT;
2902 nd->flags |= op->intent;
2903
bc77daa7 2904 if (nd->last_type != LAST_NORM) {
fe2d35ff
AV
2905 error = handle_dots(nd, nd->last_type);
2906 if (error)
2675a4eb 2907 return error;
e83db167 2908 goto finish_open;
1f36f774 2909 }
67ee3ad2 2910
ca344a89 2911 if (!(open_flag & O_CREAT)) {
fe2d35ff
AV
2912 if (nd->last.name[nd->last.len])
2913 nd->flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
bcda7652 2914 if (open_flag & O_PATH && !(nd->flags & LOOKUP_FOLLOW))
77d660a8 2915 symlink_ok = true;
fe2d35ff 2916 /* we _can_ be in RCU mode here */
e97cdc87 2917 error = lookup_fast(nd, path, &inode);
71574865
MS
2918 if (likely(!error))
2919 goto finish_lookup;
2920
2921 if (error < 0)
2675a4eb 2922 goto out;
71574865
MS
2923
2924 BUG_ON(nd->inode != dir->d_inode);
b6183df7
MS
2925 } else {
2926 /* create side of things */
2927 /*
2928 * This will *only* deal with leaving RCU mode - LOOKUP_JUMPED
2929 * has been cleared when we got to the last component we are
2930 * about to look up
2931 */
2932 error = complete_walk(nd);
2933 if (error)
2675a4eb 2934 return error;
fe2d35ff 2935
33e2208a 2936 audit_inode(name, dir, LOOKUP_PARENT);
b6183df7
MS
2937 error = -EISDIR;
2938 /* trailing slashes? */
2939 if (nd->last.name[nd->last.len])
2675a4eb 2940 goto out;
b6183df7 2941 }
a2c36b45 2942
16b1c1cd 2943retry_lookup:
64894cf8
AV
2944 if (op->open_flag & (O_CREAT | O_TRUNC | O_WRONLY | O_RDWR)) {
2945 error = mnt_want_write(nd->path.mnt);
2946 if (!error)
2947 got_write = true;
2948 /*
2949 * do _not_ fail yet - we might not need that or fail with
2950 * a different error; let lookup_open() decide; we'll be
2951 * dropping this one anyway.
2952 */
2953 }
a1e28038 2954 mutex_lock(&dir->d_inode->i_mutex);
64894cf8 2955 error = lookup_open(nd, path, file, op, got_write, opened);
d58ffd35 2956 mutex_unlock(&dir->d_inode->i_mutex);
a1e28038 2957
2675a4eb
AV
2958 if (error <= 0) {
2959 if (error)
d18e9008
MS
2960 goto out;
2961
47237687 2962 if ((*opened & FILE_CREATED) ||
496ad9aa 2963 !S_ISREG(file_inode(file)->i_mode))
77d660a8 2964 will_truncate = false;
d18e9008 2965
adb5c247 2966 audit_inode(name, file->f_path.dentry, 0);
d18e9008
MS
2967 goto opened;
2968 }
fb1cc555 2969
47237687 2970 if (*opened & FILE_CREATED) {
9b44f1b3 2971 /* Don't check for write permission, don't truncate */
ca344a89 2972 open_flag &= ~O_TRUNC;
77d660a8 2973 will_truncate = false;
bcda7652 2974 acc_mode = MAY_OPEN;
d58ffd35 2975 path_to_nameidata(path, nd);
e83db167 2976 goto finish_open_created;
fb1cc555
AV
2977 }
2978
2979 /*
3134f37e 2980 * create/update audit record if it already exists.
fb1cc555 2981 */
3134f37e 2982 if (path->dentry->d_inode)
adb5c247 2983 audit_inode(name, path->dentry, 0);
fb1cc555 2984
d18e9008
MS
2985 /*
2986 * If atomic_open() acquired write access it is dropped now due to
2987 * possible mount and symlink following (this might be optimized away if
2988 * necessary...)
2989 */
64894cf8 2990 if (got_write) {
d18e9008 2991 mnt_drop_write(nd->path.mnt);
64894cf8 2992 got_write = false;
d18e9008
MS
2993 }
2994
fb1cc555 2995 error = -EEXIST;
f8310c59 2996 if ((open_flag & (O_EXCL | O_CREAT)) == (O_EXCL | O_CREAT))
fb1cc555
AV
2997 goto exit_dput;
2998
9875cf80
DH
2999 error = follow_managed(path, nd->flags);
3000 if (error < 0)
3001 goto exit_dput;
fb1cc555 3002
a3fbbde7
AV
3003 if (error)
3004 nd->flags |= LOOKUP_JUMPED;
3005
decf3400
MS
3006 BUG_ON(nd->flags & LOOKUP_RCU);
3007 inode = path->dentry->d_inode;
5f5daac1
MS
3008finish_lookup:
3009 /* we _can_ be in RCU mode here */
fb1cc555 3010 error = -ENOENT;
54c33e7f
MS
3011 if (!inode) {
3012 path_to_nameidata(path, nd);
2675a4eb 3013 goto out;
54c33e7f 3014 }
9e67f361 3015
d45ea867
MS
3016 if (should_follow_link(inode, !symlink_ok)) {
3017 if (nd->flags & LOOKUP_RCU) {
3018 if (unlikely(unlazy_walk(nd, path->dentry))) {
3019 error = -ECHILD;
2675a4eb 3020 goto out;
d45ea867
MS
3021 }
3022 }
3023 BUG_ON(inode != path->dentry->d_inode);
2675a4eb 3024 return 1;
d45ea867 3025 }
fb1cc555 3026
16b1c1cd
MS
3027 if ((nd->flags & LOOKUP_RCU) || nd->path.mnt != path->mnt) {
3028 path_to_nameidata(path, nd);
3029 } else {
3030 save_parent.dentry = nd->path.dentry;
3031 save_parent.mnt = mntget(path->mnt);
3032 nd->path.dentry = path->dentry;
3033
3034 }
decf3400 3035 nd->inode = inode;
a3fbbde7 3036 /* Why this, you ask? _Now_ we might have grown LOOKUP_JUMPED... */
bc77daa7 3037finish_open:
a3fbbde7 3038 error = complete_walk(nd);
16b1c1cd
MS
3039 if (error) {
3040 path_put(&save_parent);
2675a4eb 3041 return error;
16b1c1cd 3042 }
bc77daa7 3043 audit_inode(name, nd->path.dentry, 0);
fb1cc555 3044 error = -EISDIR;
050ac841 3045 if ((open_flag & O_CREAT) && S_ISDIR(nd->inode->i_mode))
2675a4eb 3046 goto out;
af2f5542 3047 error = -ENOTDIR;
05252901 3048 if ((nd->flags & LOOKUP_DIRECTORY) && !can_lookup(nd->inode))
2675a4eb 3049 goto out;
6c0d46c4 3050 if (!S_ISREG(nd->inode->i_mode))
77d660a8 3051 will_truncate = false;
6c0d46c4 3052
0f9d1a10
AV
3053 if (will_truncate) {
3054 error = mnt_want_write(nd->path.mnt);
3055 if (error)
2675a4eb 3056 goto out;
64894cf8 3057 got_write = true;
0f9d1a10 3058 }
e83db167 3059finish_open_created:
bcda7652 3060 error = may_open(&nd->path, acc_mode, open_flag);
ca344a89 3061 if (error)
2675a4eb 3062 goto out;
30d90494
AV
3063 file->f_path.mnt = nd->path.mnt;
3064 error = finish_open(file, nd->path.dentry, NULL, opened);
3065 if (error) {
30d90494 3066 if (error == -EOPENSTALE)
f60dc3db 3067 goto stale_open;
015c3bbc 3068 goto out;
f60dc3db 3069 }
a8277b9b 3070opened:
2675a4eb 3071 error = open_check_o_direct(file);
015c3bbc
MS
3072 if (error)
3073 goto exit_fput;
2675a4eb 3074 error = ima_file_check(file, op->acc_mode);
aa4caadb
MS
3075 if (error)
3076 goto exit_fput;
3077
3078 if (will_truncate) {
2675a4eb 3079 error = handle_truncate(file);
aa4caadb
MS
3080 if (error)
3081 goto exit_fput;
0f9d1a10 3082 }
ca344a89 3083out:
64894cf8 3084 if (got_write)
0f9d1a10 3085 mnt_drop_write(nd->path.mnt);
16b1c1cd 3086 path_put(&save_parent);
e276ae67 3087 terminate_walk(nd);
2675a4eb 3088 return error;
fb1cc555 3089
fb1cc555
AV
3090exit_dput:
3091 path_put_conditional(path, nd);
ca344a89 3092 goto out;
015c3bbc 3093exit_fput:
2675a4eb
AV
3094 fput(file);
3095 goto out;
015c3bbc 3096
f60dc3db
MS
3097stale_open:
3098 /* If no saved parent or already retried then can't retry */
3099 if (!save_parent.dentry || retried)
3100 goto out;
3101
3102 BUG_ON(save_parent.dentry != dir);
3103 path_put(&nd->path);
3104 nd->path = save_parent;
3105 nd->inode = dir->d_inode;
3106 save_parent.mnt = NULL;
3107 save_parent.dentry = NULL;
64894cf8 3108 if (got_write) {
f60dc3db 3109 mnt_drop_write(nd->path.mnt);
64894cf8 3110 got_write = false;
f60dc3db
MS
3111 }
3112 retried = true;
3113 goto retry_lookup;
fb1cc555
AV
3114}
3115
60545d0d
AV
3116static int do_tmpfile(int dfd, struct filename *pathname,
3117 struct nameidata *nd, int flags,
3118 const struct open_flags *op,
3119 struct file *file, int *opened)
3120{
3121 static const struct qstr name = QSTR_INIT("/", 1);
3122 struct dentry *dentry, *child;
3123 struct inode *dir;
3124 int error = path_lookupat(dfd, pathname->name,
3125 flags | LOOKUP_DIRECTORY, nd);
3126 if (unlikely(error))
3127 return error;
3128 error = mnt_want_write(nd->path.mnt);
3129 if (unlikely(error))
3130 goto out;
3131 /* we want directory to be writable */
3132 error = inode_permission(nd->inode, MAY_WRITE | MAY_EXEC);
3133 if (error)
3134 goto out2;
3135 dentry = nd->path.dentry;
3136 dir = dentry->d_inode;
3137 if (!dir->i_op->tmpfile) {
3138 error = -EOPNOTSUPP;
3139 goto out2;
3140 }
3141 child = d_alloc(dentry, &name);
3142 if (unlikely(!child)) {
3143 error = -ENOMEM;
3144 goto out2;
3145 }
3146 nd->flags &= ~LOOKUP_DIRECTORY;
3147 nd->flags |= op->intent;
3148 dput(nd->path.dentry);
3149 nd->path.dentry = child;
3150 error = dir->i_op->tmpfile(dir, nd->path.dentry, op->mode);
3151 if (error)
3152 goto out2;
3153 audit_inode(pathname, nd->path.dentry, 0);
3154 error = may_open(&nd->path, op->acc_mode, op->open_flag);
3155 if (error)
3156 goto out2;
3157 file->f_path.mnt = nd->path.mnt;
3158 error = finish_open(file, nd->path.dentry, NULL, opened);
3159 if (error)
3160 goto out2;
3161 error = open_check_o_direct(file);
f4e0c30c 3162 if (error) {
60545d0d 3163 fput(file);
f4e0c30c
AV
3164 } else if (!(op->open_flag & O_EXCL)) {
3165 struct inode *inode = file_inode(file);
3166 spin_lock(&inode->i_lock);
3167 inode->i_state |= I_LINKABLE;
3168 spin_unlock(&inode->i_lock);
3169 }
60545d0d
AV
3170out2:
3171 mnt_drop_write(nd->path.mnt);
3172out:
3173 path_put(&nd->path);
3174 return error;
3175}
3176
669abf4e 3177static struct file *path_openat(int dfd, struct filename *pathname,
73d049a4 3178 struct nameidata *nd, const struct open_flags *op, int flags)
1da177e4 3179{
fe2d35ff 3180 struct file *base = NULL;
30d90494 3181 struct file *file;
9850c056 3182 struct path path;
47237687 3183 int opened = 0;
13aab428 3184 int error;
31e6b01f 3185
30d90494 3186 file = get_empty_filp();
1afc99be
AV
3187 if (IS_ERR(file))
3188 return file;
31e6b01f 3189
30d90494 3190 file->f_flags = op->open_flag;
31e6b01f 3191
bb458c64 3192 if (unlikely(file->f_flags & __O_TMPFILE)) {
60545d0d
AV
3193 error = do_tmpfile(dfd, pathname, nd, flags, op, file, &opened);
3194 goto out;
3195 }
3196
669abf4e 3197 error = path_init(dfd, pathname->name, flags | LOOKUP_PARENT, nd, &base);
31e6b01f 3198 if (unlikely(error))
2675a4eb 3199 goto out;
31e6b01f 3200
fe2d35ff 3201 current->total_link_count = 0;
669abf4e 3202 error = link_path_walk(pathname->name, nd);
31e6b01f 3203 if (unlikely(error))
2675a4eb 3204 goto out;
1da177e4 3205
2675a4eb
AV
3206 error = do_last(nd, &path, file, op, &opened, pathname);
3207 while (unlikely(error > 0)) { /* trailing symlink */
7b9337aa 3208 struct path link = path;
def4af30 3209 void *cookie;
574197e0 3210 if (!(nd->flags & LOOKUP_FOLLOW)) {
73d049a4
AV
3211 path_put_conditional(&path, nd);
3212 path_put(&nd->path);
2675a4eb 3213 error = -ELOOP;
40b39136
AV
3214 break;
3215 }
800179c9
KC
3216 error = may_follow_link(&link, nd);
3217 if (unlikely(error))
3218 break;
73d049a4
AV
3219 nd->flags |= LOOKUP_PARENT;
3220 nd->flags &= ~(LOOKUP_OPEN|LOOKUP_CREATE|LOOKUP_EXCL);
574197e0 3221 error = follow_link(&link, nd, &cookie);
c3e380b0 3222 if (unlikely(error))
2675a4eb
AV
3223 break;
3224 error = do_last(nd, &path, file, op, &opened, pathname);
574197e0 3225 put_link(nd, &link, cookie);
806b681c 3226 }
10fa8e62 3227out:
73d049a4
AV
3228 if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT))
3229 path_put(&nd->root);
fe2d35ff
AV
3230 if (base)
3231 fput(base);
2675a4eb
AV
3232 if (!(opened & FILE_OPENED)) {
3233 BUG_ON(!error);
30d90494 3234 put_filp(file);
16b1c1cd 3235 }
2675a4eb
AV
3236 if (unlikely(error)) {
3237 if (error == -EOPENSTALE) {
3238 if (flags & LOOKUP_RCU)
3239 error = -ECHILD;
3240 else
3241 error = -ESTALE;
3242 }
3243 file = ERR_PTR(error);
3244 }
3245 return file;
1da177e4
LT
3246}
3247
669abf4e 3248struct file *do_filp_open(int dfd, struct filename *pathname,
f9652e10 3249 const struct open_flags *op)
13aab428 3250{
73d049a4 3251 struct nameidata nd;
f9652e10 3252 int flags = op->lookup_flags;
13aab428
AV
3253 struct file *filp;
3254
73d049a4 3255 filp = path_openat(dfd, pathname, &nd, op, flags | LOOKUP_RCU);
13aab428 3256 if (unlikely(filp == ERR_PTR(-ECHILD)))
73d049a4 3257 filp = path_openat(dfd, pathname, &nd, op, flags);
13aab428 3258 if (unlikely(filp == ERR_PTR(-ESTALE)))
73d049a4 3259 filp = path_openat(dfd, pathname, &nd, op, flags | LOOKUP_REVAL);
13aab428
AV
3260 return filp;
3261}
3262
73d049a4 3263struct file *do_file_open_root(struct dentry *dentry, struct vfsmount *mnt,
f9652e10 3264 const char *name, const struct open_flags *op)
73d049a4
AV
3265{
3266 struct nameidata nd;
3267 struct file *file;
669abf4e 3268 struct filename filename = { .name = name };
f9652e10 3269 int flags = op->lookup_flags | LOOKUP_ROOT;
73d049a4
AV
3270
3271 nd.root.mnt = mnt;
3272 nd.root.dentry = dentry;
3273
bcda7652 3274 if (dentry->d_inode->i_op->follow_link && op->intent & LOOKUP_OPEN)
73d049a4
AV
3275 return ERR_PTR(-ELOOP);
3276
669abf4e 3277 file = path_openat(-1, &filename, &nd, op, flags | LOOKUP_RCU);
73d049a4 3278 if (unlikely(file == ERR_PTR(-ECHILD)))
669abf4e 3279 file = path_openat(-1, &filename, &nd, op, flags);
73d049a4 3280 if (unlikely(file == ERR_PTR(-ESTALE)))
669abf4e 3281 file = path_openat(-1, &filename, &nd, op, flags | LOOKUP_REVAL);
73d049a4
AV
3282 return file;
3283}
3284
1ac12b4b
JL
3285struct dentry *kern_path_create(int dfd, const char *pathname,
3286 struct path *path, unsigned int lookup_flags)
1da177e4 3287{
c663e5d8 3288 struct dentry *dentry = ERR_PTR(-EEXIST);
ed75e95d 3289 struct nameidata nd;
c30dabfe 3290 int err2;
1ac12b4b
JL
3291 int error;
3292 bool is_dir = (lookup_flags & LOOKUP_DIRECTORY);
3293
3294 /*
3295 * Note that only LOOKUP_REVAL and LOOKUP_DIRECTORY matter here. Any
3296 * other flags passed in are ignored!
3297 */
3298 lookup_flags &= LOOKUP_REVAL;
3299
3300 error = do_path_lookup(dfd, pathname, LOOKUP_PARENT|lookup_flags, &nd);
ed75e95d
AV
3301 if (error)
3302 return ERR_PTR(error);
1da177e4 3303
c663e5d8
CH
3304 /*
3305 * Yucky last component or no last component at all?
3306 * (foo/., foo/.., /////)
3307 */
ed75e95d
AV
3308 if (nd.last_type != LAST_NORM)
3309 goto out;
3310 nd.flags &= ~LOOKUP_PARENT;
3311 nd.flags |= LOOKUP_CREATE | LOOKUP_EXCL;
c663e5d8 3312
c30dabfe
JK
3313 /* don't fail immediately if it's r/o, at least try to report other errors */
3314 err2 = mnt_want_write(nd.path.mnt);
c663e5d8
CH
3315 /*
3316 * Do the final lookup.
3317 */
ed75e95d
AV
3318 mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
3319 dentry = lookup_hash(&nd);
1da177e4 3320 if (IS_ERR(dentry))
a8104a9f 3321 goto unlock;
c663e5d8 3322
a8104a9f 3323 error = -EEXIST;
e9baf6e5 3324 if (dentry->d_inode)
a8104a9f 3325 goto fail;
c663e5d8
CH
3326 /*
3327 * Special case - lookup gave negative, but... we had foo/bar/
3328 * From the vfs_mknod() POV we just have a negative dentry -
3329 * all is fine. Let's be bastards - you had / on the end, you've
3330 * been asking for (non-existent) directory. -ENOENT for you.
3331 */
ed75e95d 3332 if (unlikely(!is_dir && nd.last.name[nd.last.len])) {
a8104a9f 3333 error = -ENOENT;
ed75e95d 3334 goto fail;
e9baf6e5 3335 }
c30dabfe
JK
3336 if (unlikely(err2)) {
3337 error = err2;
a8104a9f 3338 goto fail;
c30dabfe 3339 }
ed75e95d 3340 *path = nd.path;
1da177e4 3341 return dentry;
1da177e4 3342fail:
a8104a9f
AV
3343 dput(dentry);
3344 dentry = ERR_PTR(error);
3345unlock:
ed75e95d 3346 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
c30dabfe
JK
3347 if (!err2)
3348 mnt_drop_write(nd.path.mnt);
ed75e95d
AV
3349out:
3350 path_put(&nd.path);
1da177e4
LT
3351 return dentry;
3352}
dae6ad8f
AV
3353EXPORT_SYMBOL(kern_path_create);
3354
921a1650
AV
3355void done_path_create(struct path *path, struct dentry *dentry)
3356{
3357 dput(dentry);
3358 mutex_unlock(&path->dentry->d_inode->i_mutex);
a8104a9f 3359 mnt_drop_write(path->mnt);
921a1650
AV
3360 path_put(path);
3361}
3362EXPORT_SYMBOL(done_path_create);
3363
1ac12b4b
JL
3364struct dentry *user_path_create(int dfd, const char __user *pathname,
3365 struct path *path, unsigned int lookup_flags)
dae6ad8f 3366{
91a27b2a 3367 struct filename *tmp = getname(pathname);
dae6ad8f
AV
3368 struct dentry *res;
3369 if (IS_ERR(tmp))
3370 return ERR_CAST(tmp);
1ac12b4b 3371 res = kern_path_create(dfd, tmp->name, path, lookup_flags);
dae6ad8f
AV
3372 putname(tmp);
3373 return res;
3374}
3375EXPORT_SYMBOL(user_path_create);
3376
1a67aafb 3377int vfs_mknod(struct inode *dir, struct dentry *dentry, umode_t mode, dev_t dev)
1da177e4 3378{
a95164d9 3379 int error = may_create(dir, dentry);
1da177e4
LT
3380
3381 if (error)
3382 return error;
3383
975d6b39 3384 if ((S_ISCHR(mode) || S_ISBLK(mode)) && !capable(CAP_MKNOD))
1da177e4
LT
3385 return -EPERM;
3386
acfa4380 3387 if (!dir->i_op->mknod)
1da177e4
LT
3388 return -EPERM;
3389
08ce5f16
SH
3390 error = devcgroup_inode_mknod(mode, dev);
3391 if (error)
3392 return error;
3393
1da177e4
LT
3394 error = security_inode_mknod(dir, dentry, mode, dev);
3395 if (error)
3396 return error;
3397
1da177e4 3398 error = dir->i_op->mknod(dir, dentry, mode, dev);
a74574aa 3399 if (!error)
f38aa942 3400 fsnotify_create(dir, dentry);
1da177e4
LT
3401 return error;
3402}
3403
f69aac00 3404static int may_mknod(umode_t mode)
463c3197
DH
3405{
3406 switch (mode & S_IFMT) {
3407 case S_IFREG:
3408 case S_IFCHR:
3409 case S_IFBLK:
3410 case S_IFIFO:
3411 case S_IFSOCK:
3412 case 0: /* zero mode translates to S_IFREG */
3413 return 0;
3414 case S_IFDIR:
3415 return -EPERM;
3416 default:
3417 return -EINVAL;
3418 }
3419}
3420
8208a22b 3421SYSCALL_DEFINE4(mknodat, int, dfd, const char __user *, filename, umode_t, mode,
2e4d0924 3422 unsigned, dev)
1da177e4 3423{
2ad94ae6 3424 struct dentry *dentry;
dae6ad8f
AV
3425 struct path path;
3426 int error;
972567f1 3427 unsigned int lookup_flags = 0;
1da177e4 3428
8e4bfca1
AV
3429 error = may_mknod(mode);
3430 if (error)
3431 return error;
972567f1
JL
3432retry:
3433 dentry = user_path_create(dfd, filename, &path, lookup_flags);
dae6ad8f
AV
3434 if (IS_ERR(dentry))
3435 return PTR_ERR(dentry);
2ad94ae6 3436
dae6ad8f 3437 if (!IS_POSIXACL(path.dentry->d_inode))
ce3b0f8d 3438 mode &= ~current_umask();
dae6ad8f 3439 error = security_path_mknod(&path, dentry, mode, dev);
be6d3e56 3440 if (error)
a8104a9f 3441 goto out;
463c3197 3442 switch (mode & S_IFMT) {
1da177e4 3443 case 0: case S_IFREG:
312b63fb 3444 error = vfs_create(path.dentry->d_inode,dentry,mode,true);
1da177e4
LT
3445 break;
3446 case S_IFCHR: case S_IFBLK:
dae6ad8f 3447 error = vfs_mknod(path.dentry->d_inode,dentry,mode,
1da177e4
LT
3448 new_decode_dev(dev));
3449 break;
3450 case S_IFIFO: case S_IFSOCK:
dae6ad8f 3451 error = vfs_mknod(path.dentry->d_inode,dentry,mode,0);
1da177e4 3452 break;
1da177e4 3453 }
a8104a9f 3454out:
921a1650 3455 done_path_create(&path, dentry);
972567f1
JL
3456 if (retry_estale(error, lookup_flags)) {
3457 lookup_flags |= LOOKUP_REVAL;
3458 goto retry;
3459 }
1da177e4
LT
3460 return error;
3461}
3462
8208a22b 3463SYSCALL_DEFINE3(mknod, const char __user *, filename, umode_t, mode, unsigned, dev)
5590ff0d
UD
3464{
3465 return sys_mknodat(AT_FDCWD, filename, mode, dev);
3466}
3467
18bb1db3 3468int vfs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
1da177e4 3469{
a95164d9 3470 int error = may_create(dir, dentry);
8de52778 3471 unsigned max_links = dir->i_sb->s_max_links;
1da177e4
LT
3472
3473 if (error)
3474 return error;
3475
acfa4380 3476 if (!dir->i_op->mkdir)
1da177e4
LT
3477 return -EPERM;
3478
3479 mode &= (S_IRWXUGO|S_ISVTX);
3480 error = security_inode_mkdir(dir, dentry, mode);
3481 if (error)
3482 return error;
3483
8de52778
AV
3484 if (max_links && dir->i_nlink >= max_links)
3485 return -EMLINK;
3486
1da177e4 3487 error = dir->i_op->mkdir(dir, dentry, mode);
a74574aa 3488 if (!error)
f38aa942 3489 fsnotify_mkdir(dir, dentry);
1da177e4
LT
3490 return error;
3491}
3492
a218d0fd 3493SYSCALL_DEFINE3(mkdirat, int, dfd, const char __user *, pathname, umode_t, mode)
1da177e4 3494{
6902d925 3495 struct dentry *dentry;
dae6ad8f
AV
3496 struct path path;
3497 int error;
b76d8b82 3498 unsigned int lookup_flags = LOOKUP_DIRECTORY;
1da177e4 3499
b76d8b82
JL
3500retry:
3501 dentry = user_path_create(dfd, pathname, &path, lookup_flags);
6902d925 3502 if (IS_ERR(dentry))
dae6ad8f 3503 return PTR_ERR(dentry);
1da177e4 3504
dae6ad8f 3505 if (!IS_POSIXACL(path.dentry->d_inode))
ce3b0f8d 3506 mode &= ~current_umask();
dae6ad8f 3507 error = security_path_mkdir(&path, dentry, mode);
a8104a9f
AV
3508 if (!error)
3509 error = vfs_mkdir(path.dentry->d_inode, dentry, mode);
921a1650 3510 done_path_create(&path, dentry);
b76d8b82
JL
3511 if (retry_estale(error, lookup_flags)) {
3512 lookup_flags |= LOOKUP_REVAL;
3513 goto retry;
3514 }
1da177e4
LT
3515 return error;
3516}
3517
a218d0fd 3518SYSCALL_DEFINE2(mkdir, const char __user *, pathname, umode_t, mode)
5590ff0d
UD
3519{
3520 return sys_mkdirat(AT_FDCWD, pathname, mode);
3521}
3522
1da177e4 3523/*
a71905f0 3524 * The dentry_unhash() helper will try to drop the dentry early: we
c0d02594 3525 * should have a usage count of 1 if we're the only user of this
a71905f0
SW
3526 * dentry, and if that is true (possibly after pruning the dcache),
3527 * then we drop the dentry now.
1da177e4
LT
3528 *
3529 * A low-level filesystem can, if it choses, legally
3530 * do a
3531 *
3532 * if (!d_unhashed(dentry))
3533 * return -EBUSY;
3534 *
3535 * if it cannot handle the case of removing a directory
3536 * that is still in use by something else..
3537 */
3538void dentry_unhash(struct dentry *dentry)
3539{
dc168427 3540 shrink_dcache_parent(dentry);
1da177e4 3541 spin_lock(&dentry->d_lock);
98474236 3542 if (dentry->d_lockref.count == 1)
1da177e4
LT
3543 __d_drop(dentry);
3544 spin_unlock(&dentry->d_lock);
1da177e4
LT
3545}
3546
3547int vfs_rmdir(struct inode *dir, struct dentry *dentry)
3548{
3549 int error = may_delete(dir, dentry, 1);
3550
3551 if (error)
3552 return error;
3553
acfa4380 3554 if (!dir->i_op->rmdir)
1da177e4
LT
3555 return -EPERM;
3556
1d2ef590 3557 dget(dentry);
1b1dcc1b 3558 mutex_lock(&dentry->d_inode->i_mutex);
912dbc15
SW
3559
3560 error = -EBUSY;
1da177e4 3561 if (d_mountpoint(dentry))
912dbc15
SW
3562 goto out;
3563
3564 error = security_inode_rmdir(dir, dentry);
3565 if (error)
3566 goto out;
3567
3cebde24 3568 shrink_dcache_parent(dentry);
912dbc15
SW
3569 error = dir->i_op->rmdir(dir, dentry);
3570 if (error)
3571 goto out;
3572
3573 dentry->d_inode->i_flags |= S_DEAD;
3574 dont_mount(dentry);
3575
3576out:
1b1dcc1b 3577 mutex_unlock(&dentry->d_inode->i_mutex);
1d2ef590 3578 dput(dentry);
912dbc15 3579 if (!error)
1da177e4 3580 d_delete(dentry);
1da177e4
LT
3581 return error;
3582}
3583
5590ff0d 3584static long do_rmdir(int dfd, const char __user *pathname)
1da177e4
LT
3585{
3586 int error = 0;
91a27b2a 3587 struct filename *name;
1da177e4
LT
3588 struct dentry *dentry;
3589 struct nameidata nd;
c6ee9206
JL
3590 unsigned int lookup_flags = 0;
3591retry:
3592 name = user_path_parent(dfd, pathname, &nd, lookup_flags);
91a27b2a
JL
3593 if (IS_ERR(name))
3594 return PTR_ERR(name);
1da177e4
LT
3595
3596 switch(nd.last_type) {
0612d9fb
OH
3597 case LAST_DOTDOT:
3598 error = -ENOTEMPTY;
3599 goto exit1;
3600 case LAST_DOT:
3601 error = -EINVAL;
3602 goto exit1;
3603 case LAST_ROOT:
3604 error = -EBUSY;
3605 goto exit1;
1da177e4 3606 }
0612d9fb
OH
3607
3608 nd.flags &= ~LOOKUP_PARENT;
c30dabfe
JK
3609 error = mnt_want_write(nd.path.mnt);
3610 if (error)
3611 goto exit1;
0612d9fb 3612
4ac91378 3613 mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
49705b77 3614 dentry = lookup_hash(&nd);
1da177e4 3615 error = PTR_ERR(dentry);
6902d925
DH
3616 if (IS_ERR(dentry))
3617 goto exit2;
e6bc45d6
TT
3618 if (!dentry->d_inode) {
3619 error = -ENOENT;
3620 goto exit3;
3621 }
be6d3e56
KT
3622 error = security_path_rmdir(&nd.path, dentry);
3623 if (error)
c30dabfe 3624 goto exit3;
4ac91378 3625 error = vfs_rmdir(nd.path.dentry->d_inode, dentry);
0622753b 3626exit3:
6902d925
DH
3627 dput(dentry);
3628exit2:
4ac91378 3629 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
c30dabfe 3630 mnt_drop_write(nd.path.mnt);
1da177e4 3631exit1:
1d957f9b 3632 path_put(&nd.path);
1da177e4 3633 putname(name);
c6ee9206
JL
3634 if (retry_estale(error, lookup_flags)) {
3635 lookup_flags |= LOOKUP_REVAL;
3636 goto retry;
3637 }
1da177e4
LT
3638 return error;
3639}
3640
3cdad428 3641SYSCALL_DEFINE1(rmdir, const char __user *, pathname)
5590ff0d
UD
3642{
3643 return do_rmdir(AT_FDCWD, pathname);
3644}
3645
1da177e4
LT
3646int vfs_unlink(struct inode *dir, struct dentry *dentry)
3647{
3648 int error = may_delete(dir, dentry, 0);
3649
3650 if (error)
3651 return error;
3652
acfa4380 3653 if (!dir->i_op->unlink)
1da177e4
LT
3654 return -EPERM;
3655
1b1dcc1b 3656 mutex_lock(&dentry->d_inode->i_mutex);
1da177e4
LT
3657 if (d_mountpoint(dentry))
3658 error = -EBUSY;
3659 else {
3660 error = security_inode_unlink(dir, dentry);
bec1052e 3661 if (!error) {
1da177e4 3662 error = dir->i_op->unlink(dir, dentry);
bec1052e 3663 if (!error)
d83c49f3 3664 dont_mount(dentry);
bec1052e 3665 }
1da177e4 3666 }
1b1dcc1b 3667 mutex_unlock(&dentry->d_inode->i_mutex);
1da177e4
LT
3668
3669 /* We don't d_delete() NFS sillyrenamed files--they still exist. */
3670 if (!error && !(dentry->d_flags & DCACHE_NFSFS_RENAMED)) {
ece95912 3671 fsnotify_link_count(dentry->d_inode);
e234f35c 3672 d_delete(dentry);
1da177e4 3673 }
0eeca283 3674
1da177e4
LT
3675 return error;
3676}
3677
3678/*
3679 * Make sure that the actual truncation of the file will occur outside its
1b1dcc1b 3680 * directory's i_mutex. Truncate can take a long time if there is a lot of
1da177e4
LT
3681 * writeout happening, and we don't want to prevent access to the directory
3682 * while waiting on the I/O.
3683 */
5590ff0d 3684static long do_unlinkat(int dfd, const char __user *pathname)
1da177e4 3685{
2ad94ae6 3686 int error;
91a27b2a 3687 struct filename *name;
1da177e4
LT
3688 struct dentry *dentry;
3689 struct nameidata nd;
3690 struct inode *inode = NULL;
5d18f813
JL
3691 unsigned int lookup_flags = 0;
3692retry:
3693 name = user_path_parent(dfd, pathname, &nd, lookup_flags);
91a27b2a
JL
3694 if (IS_ERR(name))
3695 return PTR_ERR(name);
2ad94ae6 3696
1da177e4
LT
3697 error = -EISDIR;
3698 if (nd.last_type != LAST_NORM)
3699 goto exit1;
0612d9fb
OH
3700
3701 nd.flags &= ~LOOKUP_PARENT;
c30dabfe
JK
3702 error = mnt_want_write(nd.path.mnt);
3703 if (error)
3704 goto exit1;
0612d9fb 3705
4ac91378 3706 mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
49705b77 3707 dentry = lookup_hash(&nd);
1da177e4
LT
3708 error = PTR_ERR(dentry);
3709 if (!IS_ERR(dentry)) {
3710 /* Why not before? Because we want correct error value */
50338b88
TE
3711 if (nd.last.name[nd.last.len])
3712 goto slashes;
1da177e4 3713 inode = dentry->d_inode;
50338b88 3714 if (!inode)
e6bc45d6
TT
3715 goto slashes;
3716 ihold(inode);
be6d3e56
KT
3717 error = security_path_unlink(&nd.path, dentry);
3718 if (error)
c30dabfe 3719 goto exit2;
4ac91378 3720 error = vfs_unlink(nd.path.dentry->d_inode, dentry);
c30dabfe 3721exit2:
1da177e4
LT
3722 dput(dentry);
3723 }
4ac91378 3724 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
1da177e4
LT
3725 if (inode)
3726 iput(inode); /* truncate the inode here */
c30dabfe 3727 mnt_drop_write(nd.path.mnt);
1da177e4 3728exit1:
1d957f9b 3729 path_put(&nd.path);
1da177e4 3730 putname(name);
5d18f813
JL
3731 if (retry_estale(error, lookup_flags)) {
3732 lookup_flags |= LOOKUP_REVAL;
3733 inode = NULL;
3734 goto retry;
3735 }
1da177e4
LT
3736 return error;
3737
3738slashes:
3739 error = !dentry->d_inode ? -ENOENT :
3740 S_ISDIR(dentry->d_inode->i_mode) ? -EISDIR : -ENOTDIR;
3741 goto exit2;
3742}
3743
2e4d0924 3744SYSCALL_DEFINE3(unlinkat, int, dfd, const char __user *, pathname, int, flag)
5590ff0d
UD
3745{
3746 if ((flag & ~AT_REMOVEDIR) != 0)
3747 return -EINVAL;
3748
3749 if (flag & AT_REMOVEDIR)
3750 return do_rmdir(dfd, pathname);
3751
3752 return do_unlinkat(dfd, pathname);
3753}
3754
3480b257 3755SYSCALL_DEFINE1(unlink, const char __user *, pathname)
5590ff0d
UD
3756{
3757 return do_unlinkat(AT_FDCWD, pathname);
3758}
3759
db2e747b 3760int vfs_symlink(struct inode *dir, struct dentry *dentry, const char *oldname)
1da177e4 3761{
a95164d9 3762 int error = may_create(dir, dentry);
1da177e4
LT
3763
3764 if (error)
3765 return error;
3766
acfa4380 3767 if (!dir->i_op->symlink)
1da177e4
LT
3768 return -EPERM;
3769
3770 error = security_inode_symlink(dir, dentry, oldname);
3771 if (error)
3772 return error;
3773
1da177e4 3774 error = dir->i_op->symlink(dir, dentry, oldname);
a74574aa 3775 if (!error)
f38aa942 3776 fsnotify_create(dir, dentry);
1da177e4
LT
3777 return error;
3778}
3779
2e4d0924
HC
3780SYSCALL_DEFINE3(symlinkat, const char __user *, oldname,
3781 int, newdfd, const char __user *, newname)
1da177e4 3782{
2ad94ae6 3783 int error;
91a27b2a 3784 struct filename *from;
6902d925 3785 struct dentry *dentry;
dae6ad8f 3786 struct path path;
f46d3567 3787 unsigned int lookup_flags = 0;
1da177e4
LT
3788
3789 from = getname(oldname);
2ad94ae6 3790 if (IS_ERR(from))
1da177e4 3791 return PTR_ERR(from);
f46d3567
JL
3792retry:
3793 dentry = user_path_create(newdfd, newname, &path, lookup_flags);
6902d925
DH
3794 error = PTR_ERR(dentry);
3795 if (IS_ERR(dentry))
dae6ad8f 3796 goto out_putname;
6902d925 3797
91a27b2a 3798 error = security_path_symlink(&path, dentry, from->name);
a8104a9f 3799 if (!error)
91a27b2a 3800 error = vfs_symlink(path.dentry->d_inode, dentry, from->name);
921a1650 3801 done_path_create(&path, dentry);
f46d3567
JL
3802 if (retry_estale(error, lookup_flags)) {
3803 lookup_flags |= LOOKUP_REVAL;
3804 goto retry;
3805 }
6902d925 3806out_putname:
1da177e4
LT
3807 putname(from);
3808 return error;
3809}
3810
3480b257 3811SYSCALL_DEFINE2(symlink, const char __user *, oldname, const char __user *, newname)
5590ff0d
UD
3812{
3813 return sys_symlinkat(oldname, AT_FDCWD, newname);
3814}
3815
1da177e4
LT
3816int vfs_link(struct dentry *old_dentry, struct inode *dir, struct dentry *new_dentry)
3817{
3818 struct inode *inode = old_dentry->d_inode;
8de52778 3819 unsigned max_links = dir->i_sb->s_max_links;
1da177e4
LT
3820 int error;
3821
3822 if (!inode)
3823 return -ENOENT;
3824
a95164d9 3825 error = may_create(dir, new_dentry);
1da177e4
LT
3826 if (error)
3827 return error;
3828
3829 if (dir->i_sb != inode->i_sb)
3830 return -EXDEV;
3831
3832 /*
3833 * A link to an append-only or immutable file cannot be created.
3834 */
3835 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
3836 return -EPERM;
acfa4380 3837 if (!dir->i_op->link)
1da177e4 3838 return -EPERM;
7e79eedb 3839 if (S_ISDIR(inode->i_mode))
1da177e4
LT
3840 return -EPERM;
3841
3842 error = security_inode_link(old_dentry, dir, new_dentry);
3843 if (error)
3844 return error;
3845
7e79eedb 3846 mutex_lock(&inode->i_mutex);
aae8a97d 3847 /* Make sure we don't allow creating hardlink to an unlinked file */
f4e0c30c 3848 if (inode->i_nlink == 0 && !(inode->i_state & I_LINKABLE))
aae8a97d 3849 error = -ENOENT;
8de52778
AV
3850 else if (max_links && inode->i_nlink >= max_links)
3851 error = -EMLINK;
aae8a97d
AK
3852 else
3853 error = dir->i_op->link(old_dentry, dir, new_dentry);
f4e0c30c
AV
3854
3855 if (!error && (inode->i_state & I_LINKABLE)) {
3856 spin_lock(&inode->i_lock);
3857 inode->i_state &= ~I_LINKABLE;
3858 spin_unlock(&inode->i_lock);
3859 }
7e79eedb 3860 mutex_unlock(&inode->i_mutex);
e31e14ec 3861 if (!error)
7e79eedb 3862 fsnotify_link(dir, inode, new_dentry);
1da177e4
LT
3863 return error;
3864}
3865
3866/*
3867 * Hardlinks are often used in delicate situations. We avoid
3868 * security-related surprises by not following symlinks on the
3869 * newname. --KAB
3870 *
3871 * We don't follow them on the oldname either to be compatible
3872 * with linux 2.0, and to avoid hard-linking to directories
3873 * and other special files. --ADM
3874 */
2e4d0924
HC
3875SYSCALL_DEFINE5(linkat, int, olddfd, const char __user *, oldname,
3876 int, newdfd, const char __user *, newname, int, flags)
1da177e4
LT
3877{
3878 struct dentry *new_dentry;
dae6ad8f 3879 struct path old_path, new_path;
11a7b371 3880 int how = 0;
1da177e4 3881 int error;
1da177e4 3882
11a7b371 3883 if ((flags & ~(AT_SYMLINK_FOLLOW | AT_EMPTY_PATH)) != 0)
c04030e1 3884 return -EINVAL;
11a7b371 3885 /*
f0cc6ffb
LT
3886 * To use null names we require CAP_DAC_READ_SEARCH
3887 * This ensures that not everyone will be able to create
3888 * handlink using the passed filedescriptor.
11a7b371 3889 */
f0cc6ffb
LT
3890 if (flags & AT_EMPTY_PATH) {
3891 if (!capable(CAP_DAC_READ_SEARCH))
3892 return -ENOENT;
11a7b371 3893 how = LOOKUP_EMPTY;
f0cc6ffb 3894 }
11a7b371
AK
3895
3896 if (flags & AT_SYMLINK_FOLLOW)
3897 how |= LOOKUP_FOLLOW;
442e31ca 3898retry:
11a7b371 3899 error = user_path_at(olddfd, oldname, how, &old_path);
1da177e4 3900 if (error)
2ad94ae6
AV
3901 return error;
3902
442e31ca
JL
3903 new_dentry = user_path_create(newdfd, newname, &new_path,
3904 (how & LOOKUP_REVAL));
1da177e4 3905 error = PTR_ERR(new_dentry);
6902d925 3906 if (IS_ERR(new_dentry))
dae6ad8f
AV
3907 goto out;
3908
3909 error = -EXDEV;
3910 if (old_path.mnt != new_path.mnt)
3911 goto out_dput;
800179c9
KC
3912 error = may_linkat(&old_path);
3913 if (unlikely(error))
3914 goto out_dput;
dae6ad8f 3915 error = security_path_link(old_path.dentry, &new_path, new_dentry);
be6d3e56 3916 if (error)
a8104a9f 3917 goto out_dput;
dae6ad8f 3918 error = vfs_link(old_path.dentry, new_path.dentry->d_inode, new_dentry);
75c3f29d 3919out_dput:
921a1650 3920 done_path_create(&new_path, new_dentry);
442e31ca
JL
3921 if (retry_estale(error, how)) {
3922 how |= LOOKUP_REVAL;
3923 goto retry;
3924 }
1da177e4 3925out:
2d8f3038 3926 path_put(&old_path);
1da177e4
LT
3927
3928 return error;
3929}
3930
3480b257 3931SYSCALL_DEFINE2(link, const char __user *, oldname, const char __user *, newname)
5590ff0d 3932{
c04030e1 3933 return sys_linkat(AT_FDCWD, oldname, AT_FDCWD, newname, 0);
5590ff0d
UD
3934}
3935
1da177e4
LT
3936/*
3937 * The worst of all namespace operations - renaming directory. "Perverted"
3938 * doesn't even start to describe it. Somebody in UCB had a heck of a trip...
3939 * Problems:
3940 * a) we can get into loop creation. Check is done in is_subdir().
3941 * b) race potential - two innocent renames can create a loop together.
3942 * That's where 4.4 screws up. Current fix: serialization on
a11f3a05 3943 * sb->s_vfs_rename_mutex. We might be more accurate, but that's another
1da177e4
LT
3944 * story.
3945 * c) we have to lock _three_ objects - parents and victim (if it exists).
1b1dcc1b 3946 * And that - after we got ->i_mutex on parents (until then we don't know
1da177e4
LT
3947 * whether the target exists). Solution: try to be smart with locking
3948 * order for inodes. We rely on the fact that tree topology may change
a11f3a05 3949 * only under ->s_vfs_rename_mutex _and_ that parent of the object we
1da177e4
LT
3950 * move will be locked. Thus we can rank directories by the tree
3951 * (ancestors first) and rank all non-directories after them.
3952 * That works since everybody except rename does "lock parent, lookup,
a11f3a05 3953 * lock child" and rename is under ->s_vfs_rename_mutex.
1da177e4
LT
3954 * HOWEVER, it relies on the assumption that any object with ->lookup()
3955 * has no more than 1 dentry. If "hybrid" objects will ever appear,
3956 * we'd better make sure that there's no link(2) for them.
e4eaac06 3957 * d) conversion from fhandle to dentry may come in the wrong moment - when
1b1dcc1b 3958 * we are removing the target. Solution: we will have to grab ->i_mutex
1da177e4 3959 * in the fhandle_to_dentry code. [FIXME - current nfsfh.c relies on
c41b20e7 3960 * ->i_mutex on parents, which works but leads to some truly excessive
1da177e4
LT
3961 * locking].
3962 */
75c96f85
AB
3963static int vfs_rename_dir(struct inode *old_dir, struct dentry *old_dentry,
3964 struct inode *new_dir, struct dentry *new_dentry)
1da177e4
LT
3965{
3966 int error = 0;
9055cba7 3967 struct inode *target = new_dentry->d_inode;
8de52778 3968 unsigned max_links = new_dir->i_sb->s_max_links;
1da177e4
LT
3969
3970 /*
3971 * If we are going to change the parent - check write permissions,
3972 * we'll need to flip '..'.
3973 */
3974 if (new_dir != old_dir) {
f419a2e3 3975 error = inode_permission(old_dentry->d_inode, MAY_WRITE);
1da177e4
LT
3976 if (error)
3977 return error;
3978 }
3979
3980 error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry);
3981 if (error)
3982 return error;
3983
1d2ef590 3984 dget(new_dentry);
d83c49f3 3985 if (target)
1b1dcc1b 3986 mutex_lock(&target->i_mutex);
9055cba7
SW
3987
3988 error = -EBUSY;
3989 if (d_mountpoint(old_dentry) || d_mountpoint(new_dentry))
3990 goto out;
3991
8de52778
AV
3992 error = -EMLINK;
3993 if (max_links && !target && new_dir != old_dir &&
3994 new_dir->i_nlink >= max_links)
3995 goto out;
3996
3cebde24
SW
3997 if (target)
3998 shrink_dcache_parent(new_dentry);
9055cba7
SW
3999 error = old_dir->i_op->rename(old_dir, old_dentry, new_dir, new_dentry);
4000 if (error)
4001 goto out;
4002
1da177e4 4003 if (target) {
9055cba7
SW
4004 target->i_flags |= S_DEAD;
4005 dont_mount(new_dentry);
1da177e4 4006 }
9055cba7
SW
4007out:
4008 if (target)
4009 mutex_unlock(&target->i_mutex);
1d2ef590 4010 dput(new_dentry);
e31e14ec 4011 if (!error)
349457cc
MF
4012 if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE))
4013 d_move(old_dentry,new_dentry);
1da177e4
LT
4014 return error;
4015}
4016
75c96f85
AB
4017static int vfs_rename_other(struct inode *old_dir, struct dentry *old_dentry,
4018 struct inode *new_dir, struct dentry *new_dentry)
1da177e4 4019{
51892bbb 4020 struct inode *target = new_dentry->d_inode;
1da177e4
LT
4021 int error;
4022
4023 error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry);
4024 if (error)
4025 return error;
4026
4027 dget(new_dentry);
1da177e4 4028 if (target)
1b1dcc1b 4029 mutex_lock(&target->i_mutex);
51892bbb
SW
4030
4031 error = -EBUSY;
1da177e4 4032 if (d_mountpoint(old_dentry)||d_mountpoint(new_dentry))
51892bbb
SW
4033 goto out;
4034
4035 error = old_dir->i_op->rename(old_dir, old_dentry, new_dir, new_dentry);
4036 if (error)
4037 goto out;
4038
4039 if (target)
4040 dont_mount(new_dentry);
4041 if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE))
4042 d_move(old_dentry, new_dentry);
4043out:
1da177e4 4044 if (target)
1b1dcc1b 4045 mutex_unlock(&target->i_mutex);
1da177e4
LT
4046 dput(new_dentry);
4047 return error;
4048}
4049
4050int vfs_rename(struct inode *old_dir, struct dentry *old_dentry,
4051 struct inode *new_dir, struct dentry *new_dentry)
4052{
4053 int error;
4054 int is_dir = S_ISDIR(old_dentry->d_inode->i_mode);
59b0df21 4055 const unsigned char *old_name;
1da177e4
LT
4056
4057 if (old_dentry->d_inode == new_dentry->d_inode)
4058 return 0;
4059
4060 error = may_delete(old_dir, old_dentry, is_dir);
4061 if (error)
4062 return error;
4063
4064 if (!new_dentry->d_inode)
a95164d9 4065 error = may_create(new_dir, new_dentry);
1da177e4
LT
4066 else
4067 error = may_delete(new_dir, new_dentry, is_dir);
4068 if (error)
4069 return error;
4070
acfa4380 4071 if (!old_dir->i_op->rename)
1da177e4
LT
4072 return -EPERM;
4073
0eeca283
RL
4074 old_name = fsnotify_oldname_init(old_dentry->d_name.name);
4075
1da177e4
LT
4076 if (is_dir)
4077 error = vfs_rename_dir(old_dir,old_dentry,new_dir,new_dentry);
4078 else
4079 error = vfs_rename_other(old_dir,old_dentry,new_dir,new_dentry);
123df294
AV
4080 if (!error)
4081 fsnotify_move(old_dir, new_dir, old_name, is_dir,
5a190ae6 4082 new_dentry->d_inode, old_dentry);
0eeca283
RL
4083 fsnotify_oldname_free(old_name);
4084
1da177e4
LT
4085 return error;
4086}
4087
2e4d0924
HC
4088SYSCALL_DEFINE4(renameat, int, olddfd, const char __user *, oldname,
4089 int, newdfd, const char __user *, newname)
1da177e4 4090{
2ad94ae6
AV
4091 struct dentry *old_dir, *new_dir;
4092 struct dentry *old_dentry, *new_dentry;
4093 struct dentry *trap;
1da177e4 4094 struct nameidata oldnd, newnd;
91a27b2a
JL
4095 struct filename *from;
4096 struct filename *to;
c6a94284
JL
4097 unsigned int lookup_flags = 0;
4098 bool should_retry = false;
2ad94ae6 4099 int error;
c6a94284
JL
4100retry:
4101 from = user_path_parent(olddfd, oldname, &oldnd, lookup_flags);
91a27b2a
JL
4102 if (IS_ERR(from)) {
4103 error = PTR_ERR(from);
1da177e4 4104 goto exit;
91a27b2a 4105 }
1da177e4 4106
c6a94284 4107 to = user_path_parent(newdfd, newname, &newnd, lookup_flags);
91a27b2a
JL
4108 if (IS_ERR(to)) {
4109 error = PTR_ERR(to);
1da177e4 4110 goto exit1;
91a27b2a 4111 }
1da177e4
LT
4112
4113 error = -EXDEV;
4ac91378 4114 if (oldnd.path.mnt != newnd.path.mnt)
1da177e4
LT
4115 goto exit2;
4116
4ac91378 4117 old_dir = oldnd.path.dentry;
1da177e4
LT
4118 error = -EBUSY;
4119 if (oldnd.last_type != LAST_NORM)
4120 goto exit2;
4121
4ac91378 4122 new_dir = newnd.path.dentry;
1da177e4
LT
4123 if (newnd.last_type != LAST_NORM)
4124 goto exit2;
4125
c30dabfe
JK
4126 error = mnt_want_write(oldnd.path.mnt);
4127 if (error)
4128 goto exit2;
4129
0612d9fb
OH
4130 oldnd.flags &= ~LOOKUP_PARENT;
4131 newnd.flags &= ~LOOKUP_PARENT;
4e9ed2f8 4132 newnd.flags |= LOOKUP_RENAME_TARGET;
0612d9fb 4133
1da177e4
LT
4134 trap = lock_rename(new_dir, old_dir);
4135
49705b77 4136 old_dentry = lookup_hash(&oldnd);
1da177e4
LT
4137 error = PTR_ERR(old_dentry);
4138 if (IS_ERR(old_dentry))
4139 goto exit3;
4140 /* source must exist */
4141 error = -ENOENT;
4142 if (!old_dentry->d_inode)
4143 goto exit4;
4144 /* unless the source is a directory trailing slashes give -ENOTDIR */
4145 if (!S_ISDIR(old_dentry->d_inode->i_mode)) {
4146 error = -ENOTDIR;
4147 if (oldnd.last.name[oldnd.last.len])
4148 goto exit4;
4149 if (newnd.last.name[newnd.last.len])
4150 goto exit4;
4151 }
4152 /* source should not be ancestor of target */
4153 error = -EINVAL;
4154 if (old_dentry == trap)
4155 goto exit4;
49705b77 4156 new_dentry = lookup_hash(&newnd);
1da177e4
LT
4157 error = PTR_ERR(new_dentry);
4158 if (IS_ERR(new_dentry))
4159 goto exit4;
4160 /* target should not be an ancestor of source */
4161 error = -ENOTEMPTY;
4162 if (new_dentry == trap)
4163 goto exit5;
4164
be6d3e56
KT
4165 error = security_path_rename(&oldnd.path, old_dentry,
4166 &newnd.path, new_dentry);
4167 if (error)
c30dabfe 4168 goto exit5;
1da177e4
LT
4169 error = vfs_rename(old_dir->d_inode, old_dentry,
4170 new_dir->d_inode, new_dentry);
4171exit5:
4172 dput(new_dentry);
4173exit4:
4174 dput(old_dentry);
4175exit3:
4176 unlock_rename(new_dir, old_dir);
c30dabfe 4177 mnt_drop_write(oldnd.path.mnt);
1da177e4 4178exit2:
c6a94284
JL
4179 if (retry_estale(error, lookup_flags))
4180 should_retry = true;
1d957f9b 4181 path_put(&newnd.path);
2ad94ae6 4182 putname(to);
1da177e4 4183exit1:
1d957f9b 4184 path_put(&oldnd.path);
1da177e4 4185 putname(from);
c6a94284
JL
4186 if (should_retry) {
4187 should_retry = false;
4188 lookup_flags |= LOOKUP_REVAL;
4189 goto retry;
4190 }
2ad94ae6 4191exit:
1da177e4
LT
4192 return error;
4193}
4194
a26eab24 4195SYSCALL_DEFINE2(rename, const char __user *, oldname, const char __user *, newname)
5590ff0d
UD
4196{
4197 return sys_renameat(AT_FDCWD, oldname, AT_FDCWD, newname);
4198}
4199
1da177e4
LT
4200int vfs_readlink(struct dentry *dentry, char __user *buffer, int buflen, const char *link)
4201{
4202 int len;
4203
4204 len = PTR_ERR(link);
4205 if (IS_ERR(link))
4206 goto out;
4207
4208 len = strlen(link);
4209 if (len > (unsigned) buflen)
4210 len = buflen;
4211 if (copy_to_user(buffer, link, len))
4212 len = -EFAULT;
4213out:
4214 return len;
4215}
4216
4217/*
4218 * A helper for ->readlink(). This should be used *ONLY* for symlinks that
4219 * have ->follow_link() touching nd only in nd_set_link(). Using (or not
4220 * using) it for any given inode is up to filesystem.
4221 */
4222int generic_readlink(struct dentry *dentry, char __user *buffer, int buflen)
4223{
4224 struct nameidata nd;
cc314eef 4225 void *cookie;
694a1764 4226 int res;
cc314eef 4227
1da177e4 4228 nd.depth = 0;
cc314eef 4229 cookie = dentry->d_inode->i_op->follow_link(dentry, &nd);
694a1764
MS
4230 if (IS_ERR(cookie))
4231 return PTR_ERR(cookie);
4232
4233 res = vfs_readlink(dentry, buffer, buflen, nd_get_link(&nd));
4234 if (dentry->d_inode->i_op->put_link)
4235 dentry->d_inode->i_op->put_link(dentry, &nd, cookie);
4236 return res;
1da177e4
LT
4237}
4238
4239int vfs_follow_link(struct nameidata *nd, const char *link)
4240{
4241 return __vfs_follow_link(nd, link);
4242}
4243
4244/* get the link contents into pagecache */
4245static char *page_getlink(struct dentry * dentry, struct page **ppage)
4246{
ebd09abb
DG
4247 char *kaddr;
4248 struct page *page;
1da177e4 4249 struct address_space *mapping = dentry->d_inode->i_mapping;
090d2b18 4250 page = read_mapping_page(mapping, 0, NULL);
1da177e4 4251 if (IS_ERR(page))
6fe6900e 4252 return (char*)page;
1da177e4 4253 *ppage = page;
ebd09abb
DG
4254 kaddr = kmap(page);
4255 nd_terminate_link(kaddr, dentry->d_inode->i_size, PAGE_SIZE - 1);
4256 return kaddr;
1da177e4
LT
4257}
4258
4259int page_readlink(struct dentry *dentry, char __user *buffer, int buflen)
4260{
4261 struct page *page = NULL;
4262 char *s = page_getlink(dentry, &page);
4263 int res = vfs_readlink(dentry,buffer,buflen,s);
4264 if (page) {
4265 kunmap(page);
4266 page_cache_release(page);
4267 }
4268 return res;
4269}
4270
cc314eef 4271void *page_follow_link_light(struct dentry *dentry, struct nameidata *nd)
1da177e4 4272{
cc314eef 4273 struct page *page = NULL;
1da177e4 4274 nd_set_link(nd, page_getlink(dentry, &page));
cc314eef 4275 return page;
1da177e4
LT
4276}
4277
cc314eef 4278void page_put_link(struct dentry *dentry, struct nameidata *nd, void *cookie)
1da177e4 4279{
cc314eef
LT
4280 struct page *page = cookie;
4281
4282 if (page) {
1da177e4
LT
4283 kunmap(page);
4284 page_cache_release(page);
1da177e4
LT
4285 }
4286}
4287
54566b2c
NP
4288/*
4289 * The nofs argument instructs pagecache_write_begin to pass AOP_FLAG_NOFS
4290 */
4291int __page_symlink(struct inode *inode, const char *symname, int len, int nofs)
1da177e4
LT
4292{
4293 struct address_space *mapping = inode->i_mapping;
0adb25d2 4294 struct page *page;
afddba49 4295 void *fsdata;
beb497ab 4296 int err;
1da177e4 4297 char *kaddr;
54566b2c
NP
4298 unsigned int flags = AOP_FLAG_UNINTERRUPTIBLE;
4299 if (nofs)
4300 flags |= AOP_FLAG_NOFS;
1da177e4 4301
7e53cac4 4302retry:
afddba49 4303 err = pagecache_write_begin(NULL, mapping, 0, len-1,
54566b2c 4304 flags, &page, &fsdata);
1da177e4 4305 if (err)
afddba49
NP
4306 goto fail;
4307
e8e3c3d6 4308 kaddr = kmap_atomic(page);
1da177e4 4309 memcpy(kaddr, symname, len-1);
e8e3c3d6 4310 kunmap_atomic(kaddr);
afddba49
NP
4311
4312 err = pagecache_write_end(NULL, mapping, 0, len-1, len-1,
4313 page, fsdata);
1da177e4
LT
4314 if (err < 0)
4315 goto fail;
afddba49
NP
4316 if (err < len-1)
4317 goto retry;
4318
1da177e4
LT
4319 mark_inode_dirty(inode);
4320 return 0;
1da177e4
LT
4321fail:
4322 return err;
4323}
4324
0adb25d2
KK
4325int page_symlink(struct inode *inode, const char *symname, int len)
4326{
4327 return __page_symlink(inode, symname, len,
54566b2c 4328 !(mapping_gfp_mask(inode->i_mapping) & __GFP_FS));
0adb25d2
KK
4329}
4330
92e1d5be 4331const struct inode_operations page_symlink_inode_operations = {
1da177e4
LT
4332 .readlink = generic_readlink,
4333 .follow_link = page_follow_link_light,
4334 .put_link = page_put_link,
4335};
4336
2d8f3038 4337EXPORT_SYMBOL(user_path_at);
cc53ce53 4338EXPORT_SYMBOL(follow_down_one);
1da177e4
LT
4339EXPORT_SYMBOL(follow_down);
4340EXPORT_SYMBOL(follow_up);
f6d2ac5c 4341EXPORT_SYMBOL(get_write_access); /* nfsd */
1da177e4 4342EXPORT_SYMBOL(lock_rename);
1da177e4
LT
4343EXPORT_SYMBOL(lookup_one_len);
4344EXPORT_SYMBOL(page_follow_link_light);
4345EXPORT_SYMBOL(page_put_link);
4346EXPORT_SYMBOL(page_readlink);
0adb25d2 4347EXPORT_SYMBOL(__page_symlink);
1da177e4
LT
4348EXPORT_SYMBOL(page_symlink);
4349EXPORT_SYMBOL(page_symlink_inode_operations);
d1811465 4350EXPORT_SYMBOL(kern_path);
16f18200 4351EXPORT_SYMBOL(vfs_path_lookup);
f419a2e3 4352EXPORT_SYMBOL(inode_permission);
1da177e4
LT
4353EXPORT_SYMBOL(unlock_rename);
4354EXPORT_SYMBOL(vfs_create);
4355EXPORT_SYMBOL(vfs_follow_link);
4356EXPORT_SYMBOL(vfs_link);
4357EXPORT_SYMBOL(vfs_mkdir);
4358EXPORT_SYMBOL(vfs_mknod);
4359EXPORT_SYMBOL(generic_permission);
4360EXPORT_SYMBOL(vfs_readlink);
4361EXPORT_SYMBOL(vfs_rename);
4362EXPORT_SYMBOL(vfs_rmdir);
4363EXPORT_SYMBOL(vfs_symlink);
4364EXPORT_SYMBOL(vfs_unlink);
4365EXPORT_SYMBOL(dentry_unhash);
4366EXPORT_SYMBOL(generic_readlink);