vfs: make sure we don't have a stale root path if unlazy_walk() fails
[deliverable/linux.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
JL
2211/**
2212 * umount_lookup_last - look up last component for umount
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
2239umount_lookup_last(struct nameidata *nd, struct path *path)
2240{
2241 int error = 0;
2242 struct dentry *dentry;
2243 struct dentry *dir = nd->path.dentry;
2244
2245 if (unlikely(nd->flags & LOOKUP_RCU)) {
2246 WARN_ON_ONCE(1);
2247 error = -ECHILD;
2248 goto error_check;
2249 }
2250
2251 nd->flags &= ~LOOKUP_PARENT;
2252
2253 if (unlikely(nd->last_type != LAST_NORM)) {
2254 error = handle_dots(nd, nd->last_type);
2255 if (!error)
2256 dentry = dget(nd->path.dentry);
2257 goto error_check;
2258 }
2259
2260 mutex_lock(&dir->d_inode->i_mutex);
2261 dentry = d_lookup(dir, &nd->last);
2262 if (!dentry) {
2263 /*
2264 * No cached dentry. Mounted dentries are pinned in the cache,
2265 * so that means that this dentry is probably a symlink or the
2266 * path doesn't actually point to a mounted dentry.
2267 */
2268 dentry = d_alloc(dir, &nd->last);
2269 if (!dentry) {
2270 error = -ENOMEM;
2271 } else {
2272 dentry = lookup_real(dir->d_inode, dentry, nd->flags);
2273 if (IS_ERR(dentry))
2274 error = PTR_ERR(dentry);
2275 }
2276 }
2277 mutex_unlock(&dir->d_inode->i_mutex);
2278
2279error_check:
2280 if (!error) {
2281 if (!dentry->d_inode) {
2282 error = -ENOENT;
2283 dput(dentry);
2284 } else {
2285 path->dentry = dentry;
2286 path->mnt = mntget(nd->path.mnt);
2287 if (should_follow_link(dentry->d_inode,
2288 nd->flags & LOOKUP_FOLLOW))
2289 return 1;
2290 follow_mount(path);
2291 }
2292 }
2293 terminate_walk(nd);
2294 return error;
2295}
2296
2297/**
2298 * path_umountat - look up a path to be umounted
2299 * @dfd: directory file descriptor to start walk from
2300 * @name: full pathname to walk
2301 * @flags: lookup flags
2302 * @nd: pathwalk nameidata
2303 *
2304 * Look up the given name, but don't attempt to revalidate the last component.
2305 * Returns 0 and "path" will be valid on success; Retuns error otherwise.
2306 */
2307static int
2308path_umountat(int dfd, const char *name, struct path *path, unsigned int flags)
2309{
2310 struct file *base = NULL;
2311 struct nameidata nd;
2312 int err;
2313
2314 err = path_init(dfd, name, flags | LOOKUP_PARENT, &nd, &base);
2315 if (unlikely(err))
2316 return err;
2317
2318 current->total_link_count = 0;
2319 err = link_path_walk(name, &nd);
2320 if (err)
2321 goto out;
2322
2323 /* If we're in rcuwalk, drop out of it to handle last component */
2324 if (nd.flags & LOOKUP_RCU) {
2325 err = unlazy_walk(&nd, NULL);
2326 if (err) {
2327 terminate_walk(&nd);
2328 goto out;
2329 }
2330 }
2331
2332 err = umount_lookup_last(&nd, path);
2333 while (err > 0) {
2334 void *cookie;
2335 struct path link = *path;
2336 err = may_follow_link(&link, &nd);
2337 if (unlikely(err))
2338 break;
2339 nd.flags |= LOOKUP_PARENT;
2340 err = follow_link(&link, &nd, &cookie);
2341 if (err)
2342 break;
2343 err = umount_lookup_last(&nd, path);
2344 put_link(&nd, &link, cookie);
2345 }
2346out:
2347 if (base)
2348 fput(base);
2349
2350 if (nd.root.mnt && !(nd.flags & LOOKUP_ROOT))
2351 path_put(&nd.root);
2352
2353 return err;
2354}
2355
2356/**
2357 * user_path_umountat - lookup a path from userland in order to umount it
2358 * @dfd: directory file descriptor
2359 * @name: pathname from userland
2360 * @flags: lookup flags
2361 * @path: pointer to container to hold result
2362 *
2363 * A umount is a special case for path walking. We're not actually interested
2364 * in the inode in this situation, and ESTALE errors can be a problem. We
2365 * simply want track down the dentry and vfsmount attached at the mountpoint
2366 * and avoid revalidating the last component.
2367 *
2368 * Returns 0 and populates "path" on success.
2369 */
2370int
2371user_path_umountat(int dfd, const char __user *name, unsigned int flags,
2372 struct path *path)
2373{
2374 struct filename *s = getname(name);
2375 int error;
2376
2377 if (IS_ERR(s))
2378 return PTR_ERR(s);
2379
2380 error = path_umountat(dfd, s->name, path, flags | LOOKUP_RCU);
2381 if (unlikely(error == -ECHILD))
2382 error = path_umountat(dfd, s->name, path, flags);
2383 if (unlikely(error == -ESTALE))
2384 error = path_umountat(dfd, s->name, path, flags | LOOKUP_REVAL);
2385
2386 if (likely(!error))
2387 audit_inode(s, path->dentry, 0);
2388
2389 putname(s);
2390 return error;
2391}
2392
1da177e4
LT
2393/*
2394 * It's inline, so penalty for filesystems that don't use sticky bit is
2395 * minimal.
2396 */
2397static inline int check_sticky(struct inode *dir, struct inode *inode)
2398{
8e96e3b7 2399 kuid_t fsuid = current_fsuid();
da9592ed 2400
1da177e4
LT
2401 if (!(dir->i_mode & S_ISVTX))
2402 return 0;
8e96e3b7 2403 if (uid_eq(inode->i_uid, fsuid))
1da177e4 2404 return 0;
8e96e3b7 2405 if (uid_eq(dir->i_uid, fsuid))
1da177e4 2406 return 0;
1a48e2ac 2407 return !inode_capable(inode, CAP_FOWNER);
1da177e4
LT
2408}
2409
2410/*
2411 * Check whether we can remove a link victim from directory dir, check
2412 * whether the type of victim is right.
2413 * 1. We can't do it if dir is read-only (done in permission())
2414 * 2. We should have write and exec permissions on dir
2415 * 3. We can't remove anything from append-only dir
2416 * 4. We can't do anything with immutable dir (done in permission())
2417 * 5. If the sticky bit on dir is set we should either
2418 * a. be owner of dir, or
2419 * b. be owner of victim, or
2420 * c. have CAP_FOWNER capability
2421 * 6. If the victim is append-only or immutable we can't do antyhing with
2422 * links pointing to it.
2423 * 7. If we were asked to remove a directory and victim isn't one - ENOTDIR.
2424 * 8. If we were asked to remove a non-directory and victim isn't one - EISDIR.
2425 * 9. We can't remove a root or mountpoint.
2426 * 10. We don't allow removal of NFS sillyrenamed files; it's handled by
2427 * nfs_async_unlink().
2428 */
858119e1 2429static int may_delete(struct inode *dir,struct dentry *victim,int isdir)
1da177e4
LT
2430{
2431 int error;
2432
2433 if (!victim->d_inode)
2434 return -ENOENT;
2435
2436 BUG_ON(victim->d_parent->d_inode != dir);
4fa6b5ec 2437 audit_inode_child(dir, victim, AUDIT_TYPE_CHILD_DELETE);
1da177e4 2438
f419a2e3 2439 error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
1da177e4
LT
2440 if (error)
2441 return error;
2442 if (IS_APPEND(dir))
2443 return -EPERM;
2444 if (check_sticky(dir, victim->d_inode)||IS_APPEND(victim->d_inode)||
f9454548 2445 IS_IMMUTABLE(victim->d_inode) || IS_SWAPFILE(victim->d_inode))
1da177e4
LT
2446 return -EPERM;
2447 if (isdir) {
2448 if (!S_ISDIR(victim->d_inode->i_mode))
2449 return -ENOTDIR;
2450 if (IS_ROOT(victim))
2451 return -EBUSY;
2452 } else if (S_ISDIR(victim->d_inode->i_mode))
2453 return -EISDIR;
2454 if (IS_DEADDIR(dir))
2455 return -ENOENT;
2456 if (victim->d_flags & DCACHE_NFSFS_RENAMED)
2457 return -EBUSY;
2458 return 0;
2459}
2460
2461/* Check whether we can create an object with dentry child in directory
2462 * dir.
2463 * 1. We can't do it if child already exists (open has special treatment for
2464 * this case, but since we are inlined it's OK)
2465 * 2. We can't do it if dir is read-only (done in permission())
2466 * 3. We should have write and exec permissions on dir
2467 * 4. We can't do it if dir is immutable (done in permission())
2468 */
a95164d9 2469static inline int may_create(struct inode *dir, struct dentry *child)
1da177e4
LT
2470{
2471 if (child->d_inode)
2472 return -EEXIST;
2473 if (IS_DEADDIR(dir))
2474 return -ENOENT;
f419a2e3 2475 return inode_permission(dir, MAY_WRITE | MAY_EXEC);
1da177e4
LT
2476}
2477
1da177e4
LT
2478/*
2479 * p1 and p2 should be directories on the same fs.
2480 */
2481struct dentry *lock_rename(struct dentry *p1, struct dentry *p2)
2482{
2483 struct dentry *p;
2484
2485 if (p1 == p2) {
f2eace23 2486 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
1da177e4
LT
2487 return NULL;
2488 }
2489
a11f3a05 2490 mutex_lock(&p1->d_inode->i_sb->s_vfs_rename_mutex);
1da177e4 2491
e2761a11
OH
2492 p = d_ancestor(p2, p1);
2493 if (p) {
2494 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_PARENT);
2495 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_CHILD);
2496 return p;
1da177e4
LT
2497 }
2498
e2761a11
OH
2499 p = d_ancestor(p1, p2);
2500 if (p) {
2501 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
2502 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_CHILD);
2503 return p;
1da177e4
LT
2504 }
2505
f2eace23
IM
2506 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
2507 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_CHILD);
1da177e4
LT
2508 return NULL;
2509}
2510
2511void unlock_rename(struct dentry *p1, struct dentry *p2)
2512{
1b1dcc1b 2513 mutex_unlock(&p1->d_inode->i_mutex);
1da177e4 2514 if (p1 != p2) {
1b1dcc1b 2515 mutex_unlock(&p2->d_inode->i_mutex);
a11f3a05 2516 mutex_unlock(&p1->d_inode->i_sb->s_vfs_rename_mutex);
1da177e4
LT
2517 }
2518}
2519
4acdaf27 2520int vfs_create(struct inode *dir, struct dentry *dentry, umode_t mode,
312b63fb 2521 bool want_excl)
1da177e4 2522{
a95164d9 2523 int error = may_create(dir, dentry);
1da177e4
LT
2524 if (error)
2525 return error;
2526
acfa4380 2527 if (!dir->i_op->create)
1da177e4
LT
2528 return -EACCES; /* shouldn't it be ENOSYS? */
2529 mode &= S_IALLUGO;
2530 mode |= S_IFREG;
2531 error = security_inode_create(dir, dentry, mode);
2532 if (error)
2533 return error;
312b63fb 2534 error = dir->i_op->create(dir, dentry, mode, want_excl);
a74574aa 2535 if (!error)
f38aa942 2536 fsnotify_create(dir, dentry);
1da177e4
LT
2537 return error;
2538}
2539
73d049a4 2540static int may_open(struct path *path, int acc_mode, int flag)
1da177e4 2541{
3fb64190 2542 struct dentry *dentry = path->dentry;
1da177e4
LT
2543 struct inode *inode = dentry->d_inode;
2544 int error;
2545
bcda7652
AV
2546 /* O_PATH? */
2547 if (!acc_mode)
2548 return 0;
2549
1da177e4
LT
2550 if (!inode)
2551 return -ENOENT;
2552
c8fe8f30
CH
2553 switch (inode->i_mode & S_IFMT) {
2554 case S_IFLNK:
1da177e4 2555 return -ELOOP;
c8fe8f30
CH
2556 case S_IFDIR:
2557 if (acc_mode & MAY_WRITE)
2558 return -EISDIR;
2559 break;
2560 case S_IFBLK:
2561 case S_IFCHR:
3fb64190 2562 if (path->mnt->mnt_flags & MNT_NODEV)
1da177e4 2563 return -EACCES;
c8fe8f30
CH
2564 /*FALLTHRU*/
2565 case S_IFIFO:
2566 case S_IFSOCK:
1da177e4 2567 flag &= ~O_TRUNC;
c8fe8f30 2568 break;
4a3fd211 2569 }
b41572e9 2570
3fb64190 2571 error = inode_permission(inode, acc_mode);
b41572e9
DH
2572 if (error)
2573 return error;
6146f0d5 2574
1da177e4
LT
2575 /*
2576 * An append-only file must be opened in append mode for writing.
2577 */
2578 if (IS_APPEND(inode)) {
8737c930 2579 if ((flag & O_ACCMODE) != O_RDONLY && !(flag & O_APPEND))
7715b521 2580 return -EPERM;
1da177e4 2581 if (flag & O_TRUNC)
7715b521 2582 return -EPERM;
1da177e4
LT
2583 }
2584
2585 /* O_NOATIME can only be set by the owner or superuser */
2e149670 2586 if (flag & O_NOATIME && !inode_owner_or_capable(inode))
7715b521 2587 return -EPERM;
1da177e4 2588
f3c7691e 2589 return 0;
7715b521 2590}
1da177e4 2591
e1181ee6 2592static int handle_truncate(struct file *filp)
7715b521 2593{
e1181ee6 2594 struct path *path = &filp->f_path;
7715b521
AV
2595 struct inode *inode = path->dentry->d_inode;
2596 int error = get_write_access(inode);
2597 if (error)
2598 return error;
2599 /*
2600 * Refuse to truncate files with mandatory locks held on them.
2601 */
2602 error = locks_verify_locked(inode);
2603 if (!error)
ea0d3ab2 2604 error = security_path_truncate(path);
7715b521
AV
2605 if (!error) {
2606 error = do_truncate(path->dentry, 0,
2607 ATTR_MTIME|ATTR_CTIME|ATTR_OPEN,
e1181ee6 2608 filp);
7715b521
AV
2609 }
2610 put_write_access(inode);
acd0c935 2611 return error;
1da177e4
LT
2612}
2613
d57999e1
DH
2614static inline int open_to_namei_flags(int flag)
2615{
8a5e929d
AV
2616 if ((flag & O_ACCMODE) == 3)
2617 flag--;
d57999e1
DH
2618 return flag;
2619}
2620
d18e9008
MS
2621static int may_o_create(struct path *dir, struct dentry *dentry, umode_t mode)
2622{
2623 int error = security_path_mknod(dir, dentry, mode, 0);
2624 if (error)
2625 return error;
2626
2627 error = inode_permission(dir->dentry->d_inode, MAY_WRITE | MAY_EXEC);
2628 if (error)
2629 return error;
2630
2631 return security_inode_create(dir->dentry->d_inode, dentry, mode);
2632}
2633
1acf0af9
DH
2634/*
2635 * Attempt to atomically look up, create and open a file from a negative
2636 * dentry.
2637 *
2638 * Returns 0 if successful. The file will have been created and attached to
2639 * @file by the filesystem calling finish_open().
2640 *
2641 * Returns 1 if the file was looked up only or didn't need creating. The
2642 * caller will need to perform the open themselves. @path will have been
2643 * updated to point to the new dentry. This may be negative.
2644 *
2645 * Returns an error code otherwise.
2646 */
2675a4eb
AV
2647static int atomic_open(struct nameidata *nd, struct dentry *dentry,
2648 struct path *path, struct file *file,
2649 const struct open_flags *op,
64894cf8 2650 bool got_write, bool need_lookup,
2675a4eb 2651 int *opened)
d18e9008
MS
2652{
2653 struct inode *dir = nd->path.dentry->d_inode;
2654 unsigned open_flag = open_to_namei_flags(op->open_flag);
2655 umode_t mode;
2656 int error;
2657 int acc_mode;
d18e9008
MS
2658 int create_error = 0;
2659 struct dentry *const DENTRY_NOT_SET = (void *) -1UL;
2660
2661 BUG_ON(dentry->d_inode);
2662
2663 /* Don't create child dentry for a dead directory. */
2664 if (unlikely(IS_DEADDIR(dir))) {
2675a4eb 2665 error = -ENOENT;
d18e9008
MS
2666 goto out;
2667 }
2668
62b259d8 2669 mode = op->mode;
d18e9008
MS
2670 if ((open_flag & O_CREAT) && !IS_POSIXACL(dir))
2671 mode &= ~current_umask();
2672
f8310c59 2673 if ((open_flag & (O_EXCL | O_CREAT)) == (O_EXCL | O_CREAT)) {
d18e9008 2674 open_flag &= ~O_TRUNC;
47237687 2675 *opened |= FILE_CREATED;
d18e9008
MS
2676 }
2677
2678 /*
2679 * Checking write permission is tricky, bacuse we don't know if we are
2680 * going to actually need it: O_CREAT opens should work as long as the
2681 * file exists. But checking existence breaks atomicity. The trick is
2682 * to check access and if not granted clear O_CREAT from the flags.
2683 *
2684 * Another problem is returing the "right" error value (e.g. for an
2685 * O_EXCL open we want to return EEXIST not EROFS).
2686 */
64894cf8
AV
2687 if (((open_flag & (O_CREAT | O_TRUNC)) ||
2688 (open_flag & O_ACCMODE) != O_RDONLY) && unlikely(!got_write)) {
2689 if (!(open_flag & O_CREAT)) {
d18e9008
MS
2690 /*
2691 * No O_CREATE -> atomicity not a requirement -> fall
2692 * back to lookup + open
2693 */
2694 goto no_open;
2695 } else if (open_flag & (O_EXCL | O_TRUNC)) {
2696 /* Fall back and fail with the right error */
64894cf8 2697 create_error = -EROFS;
d18e9008
MS
2698 goto no_open;
2699 } else {
2700 /* No side effects, safe to clear O_CREAT */
64894cf8 2701 create_error = -EROFS;
d18e9008
MS
2702 open_flag &= ~O_CREAT;
2703 }
2704 }
2705
2706 if (open_flag & O_CREAT) {
38227f78 2707 error = may_o_create(&nd->path, dentry, mode);
d18e9008
MS
2708 if (error) {
2709 create_error = error;
2710 if (open_flag & O_EXCL)
2711 goto no_open;
2712 open_flag &= ~O_CREAT;
2713 }
2714 }
2715
2716 if (nd->flags & LOOKUP_DIRECTORY)
2717 open_flag |= O_DIRECTORY;
2718
30d90494
AV
2719 file->f_path.dentry = DENTRY_NOT_SET;
2720 file->f_path.mnt = nd->path.mnt;
2721 error = dir->i_op->atomic_open(dir, dentry, file, open_flag, mode,
47237687 2722 opened);
d9585277 2723 if (error < 0) {
d9585277
AV
2724 if (create_error && error == -ENOENT)
2725 error = create_error;
d18e9008
MS
2726 goto out;
2727 }
2728
2729 acc_mode = op->acc_mode;
47237687 2730 if (*opened & FILE_CREATED) {
d18e9008
MS
2731 fsnotify_create(dir, dentry);
2732 acc_mode = MAY_OPEN;
2733 }
2734
d9585277 2735 if (error) { /* returned 1, that is */
30d90494 2736 if (WARN_ON(file->f_path.dentry == DENTRY_NOT_SET)) {
2675a4eb 2737 error = -EIO;
d18e9008
MS
2738 goto out;
2739 }
30d90494 2740 if (file->f_path.dentry) {
d18e9008 2741 dput(dentry);
30d90494 2742 dentry = file->f_path.dentry;
d18e9008 2743 }
62b2ce96
SW
2744 if (create_error && dentry->d_inode == NULL) {
2745 error = create_error;
2746 goto out;
2747 }
d18e9008
MS
2748 goto looked_up;
2749 }
2750
2751 /*
2752 * We didn't have the inode before the open, so check open permission
2753 * here.
2754 */
2675a4eb
AV
2755 error = may_open(&file->f_path, acc_mode, open_flag);
2756 if (error)
2757 fput(file);
d18e9008
MS
2758
2759out:
2760 dput(dentry);
2675a4eb 2761 return error;
d18e9008 2762
d18e9008
MS
2763no_open:
2764 if (need_lookup) {
72bd866a 2765 dentry = lookup_real(dir, dentry, nd->flags);
d18e9008 2766 if (IS_ERR(dentry))
2675a4eb 2767 return PTR_ERR(dentry);
d18e9008
MS
2768
2769 if (create_error) {
2770 int open_flag = op->open_flag;
2771
2675a4eb 2772 error = create_error;
d18e9008
MS
2773 if ((open_flag & O_EXCL)) {
2774 if (!dentry->d_inode)
2775 goto out;
2776 } else if (!dentry->d_inode) {
2777 goto out;
2778 } else if ((open_flag & O_TRUNC) &&
2779 S_ISREG(dentry->d_inode->i_mode)) {
2780 goto out;
2781 }
2782 /* will fail later, go on to get the right error */
2783 }
2784 }
2785looked_up:
2786 path->dentry = dentry;
2787 path->mnt = nd->path.mnt;
2675a4eb 2788 return 1;
d18e9008
MS
2789}
2790
d58ffd35 2791/*
1acf0af9 2792 * Look up and maybe create and open the last component.
d58ffd35
MS
2793 *
2794 * Must be called with i_mutex held on parent.
2795 *
1acf0af9
DH
2796 * Returns 0 if the file was successfully atomically created (if necessary) and
2797 * opened. In this case the file will be returned attached to @file.
2798 *
2799 * Returns 1 if the file was not completely opened at this time, though lookups
2800 * and creations will have been performed and the dentry returned in @path will
2801 * be positive upon return if O_CREAT was specified. If O_CREAT wasn't
2802 * specified then a negative dentry may be returned.
2803 *
2804 * An error code is returned otherwise.
2805 *
2806 * FILE_CREATE will be set in @*opened if the dentry was created and will be
2807 * cleared otherwise prior to returning.
d58ffd35 2808 */
2675a4eb
AV
2809static int lookup_open(struct nameidata *nd, struct path *path,
2810 struct file *file,
2811 const struct open_flags *op,
64894cf8 2812 bool got_write, int *opened)
d58ffd35
MS
2813{
2814 struct dentry *dir = nd->path.dentry;
54ef4872 2815 struct inode *dir_inode = dir->d_inode;
d58ffd35
MS
2816 struct dentry *dentry;
2817 int error;
54ef4872 2818 bool need_lookup;
d58ffd35 2819
47237687 2820 *opened &= ~FILE_CREATED;
201f956e 2821 dentry = lookup_dcache(&nd->last, dir, nd->flags, &need_lookup);
d58ffd35 2822 if (IS_ERR(dentry))
2675a4eb 2823 return PTR_ERR(dentry);
d58ffd35 2824
d18e9008
MS
2825 /* Cached positive dentry: will open in f_op->open */
2826 if (!need_lookup && dentry->d_inode)
2827 goto out_no_open;
2828
2829 if ((nd->flags & LOOKUP_OPEN) && dir_inode->i_op->atomic_open) {
64894cf8 2830 return atomic_open(nd, dentry, path, file, op, got_write,
47237687 2831 need_lookup, opened);
d18e9008
MS
2832 }
2833
54ef4872
MS
2834 if (need_lookup) {
2835 BUG_ON(dentry->d_inode);
2836
72bd866a 2837 dentry = lookup_real(dir_inode, dentry, nd->flags);
54ef4872 2838 if (IS_ERR(dentry))
2675a4eb 2839 return PTR_ERR(dentry);
54ef4872
MS
2840 }
2841
d58ffd35
MS
2842 /* Negative dentry, just create the file */
2843 if (!dentry->d_inode && (op->open_flag & O_CREAT)) {
2844 umode_t mode = op->mode;
2845 if (!IS_POSIXACL(dir->d_inode))
2846 mode &= ~current_umask();
2847 /*
2848 * This write is needed to ensure that a
2849 * rw->ro transition does not occur between
2850 * the time when the file is created and when
2851 * a permanent write count is taken through
015c3bbc 2852 * the 'struct file' in finish_open().
d58ffd35 2853 */
64894cf8
AV
2854 if (!got_write) {
2855 error = -EROFS;
d58ffd35 2856 goto out_dput;
64894cf8 2857 }
47237687 2858 *opened |= FILE_CREATED;
d58ffd35
MS
2859 error = security_path_mknod(&nd->path, dentry, mode, 0);
2860 if (error)
2861 goto out_dput;
312b63fb
AV
2862 error = vfs_create(dir->d_inode, dentry, mode,
2863 nd->flags & LOOKUP_EXCL);
d58ffd35
MS
2864 if (error)
2865 goto out_dput;
2866 }
d18e9008 2867out_no_open:
d58ffd35
MS
2868 path->dentry = dentry;
2869 path->mnt = nd->path.mnt;
2675a4eb 2870 return 1;
d58ffd35
MS
2871
2872out_dput:
2873 dput(dentry);
2675a4eb 2874 return error;
d58ffd35
MS
2875}
2876
31e6b01f 2877/*
fe2d35ff 2878 * Handle the last step of open()
31e6b01f 2879 */
2675a4eb
AV
2880static int do_last(struct nameidata *nd, struct path *path,
2881 struct file *file, const struct open_flags *op,
669abf4e 2882 int *opened, struct filename *name)
fb1cc555 2883{
a1e28038 2884 struct dentry *dir = nd->path.dentry;
ca344a89 2885 int open_flag = op->open_flag;
77d660a8 2886 bool will_truncate = (open_flag & O_TRUNC) != 0;
64894cf8 2887 bool got_write = false;
bcda7652 2888 int acc_mode = op->acc_mode;
a1eb3315 2889 struct inode *inode;
77d660a8 2890 bool symlink_ok = false;
16b1c1cd
MS
2891 struct path save_parent = { .dentry = NULL, .mnt = NULL };
2892 bool retried = false;
16c2cd71 2893 int error;
1f36f774 2894
c3e380b0
AV
2895 nd->flags &= ~LOOKUP_PARENT;
2896 nd->flags |= op->intent;
2897
bc77daa7 2898 if (nd->last_type != LAST_NORM) {
fe2d35ff
AV
2899 error = handle_dots(nd, nd->last_type);
2900 if (error)
2675a4eb 2901 return error;
e83db167 2902 goto finish_open;
1f36f774 2903 }
67ee3ad2 2904
ca344a89 2905 if (!(open_flag & O_CREAT)) {
fe2d35ff
AV
2906 if (nd->last.name[nd->last.len])
2907 nd->flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
bcda7652 2908 if (open_flag & O_PATH && !(nd->flags & LOOKUP_FOLLOW))
77d660a8 2909 symlink_ok = true;
fe2d35ff 2910 /* we _can_ be in RCU mode here */
e97cdc87 2911 error = lookup_fast(nd, path, &inode);
71574865
MS
2912 if (likely(!error))
2913 goto finish_lookup;
2914
2915 if (error < 0)
2675a4eb 2916 goto out;
71574865
MS
2917
2918 BUG_ON(nd->inode != dir->d_inode);
b6183df7
MS
2919 } else {
2920 /* create side of things */
2921 /*
2922 * This will *only* deal with leaving RCU mode - LOOKUP_JUMPED
2923 * has been cleared when we got to the last component we are
2924 * about to look up
2925 */
2926 error = complete_walk(nd);
2927 if (error)
2675a4eb 2928 return error;
fe2d35ff 2929
33e2208a 2930 audit_inode(name, dir, LOOKUP_PARENT);
b6183df7
MS
2931 error = -EISDIR;
2932 /* trailing slashes? */
2933 if (nd->last.name[nd->last.len])
2675a4eb 2934 goto out;
b6183df7 2935 }
a2c36b45 2936
16b1c1cd 2937retry_lookup:
64894cf8
AV
2938 if (op->open_flag & (O_CREAT | O_TRUNC | O_WRONLY | O_RDWR)) {
2939 error = mnt_want_write(nd->path.mnt);
2940 if (!error)
2941 got_write = true;
2942 /*
2943 * do _not_ fail yet - we might not need that or fail with
2944 * a different error; let lookup_open() decide; we'll be
2945 * dropping this one anyway.
2946 */
2947 }
a1e28038 2948 mutex_lock(&dir->d_inode->i_mutex);
64894cf8 2949 error = lookup_open(nd, path, file, op, got_write, opened);
d58ffd35 2950 mutex_unlock(&dir->d_inode->i_mutex);
a1e28038 2951
2675a4eb
AV
2952 if (error <= 0) {
2953 if (error)
d18e9008
MS
2954 goto out;
2955
47237687 2956 if ((*opened & FILE_CREATED) ||
496ad9aa 2957 !S_ISREG(file_inode(file)->i_mode))
77d660a8 2958 will_truncate = false;
d18e9008 2959
adb5c247 2960 audit_inode(name, file->f_path.dentry, 0);
d18e9008
MS
2961 goto opened;
2962 }
fb1cc555 2963
47237687 2964 if (*opened & FILE_CREATED) {
9b44f1b3 2965 /* Don't check for write permission, don't truncate */
ca344a89 2966 open_flag &= ~O_TRUNC;
77d660a8 2967 will_truncate = false;
bcda7652 2968 acc_mode = MAY_OPEN;
d58ffd35 2969 path_to_nameidata(path, nd);
e83db167 2970 goto finish_open_created;
fb1cc555
AV
2971 }
2972
2973 /*
3134f37e 2974 * create/update audit record if it already exists.
fb1cc555 2975 */
3134f37e 2976 if (path->dentry->d_inode)
adb5c247 2977 audit_inode(name, path->dentry, 0);
fb1cc555 2978
d18e9008
MS
2979 /*
2980 * If atomic_open() acquired write access it is dropped now due to
2981 * possible mount and symlink following (this might be optimized away if
2982 * necessary...)
2983 */
64894cf8 2984 if (got_write) {
d18e9008 2985 mnt_drop_write(nd->path.mnt);
64894cf8 2986 got_write = false;
d18e9008
MS
2987 }
2988
fb1cc555 2989 error = -EEXIST;
f8310c59 2990 if ((open_flag & (O_EXCL | O_CREAT)) == (O_EXCL | O_CREAT))
fb1cc555
AV
2991 goto exit_dput;
2992
9875cf80
DH
2993 error = follow_managed(path, nd->flags);
2994 if (error < 0)
2995 goto exit_dput;
fb1cc555 2996
a3fbbde7
AV
2997 if (error)
2998 nd->flags |= LOOKUP_JUMPED;
2999
decf3400
MS
3000 BUG_ON(nd->flags & LOOKUP_RCU);
3001 inode = path->dentry->d_inode;
5f5daac1
MS
3002finish_lookup:
3003 /* we _can_ be in RCU mode here */
fb1cc555 3004 error = -ENOENT;
54c33e7f
MS
3005 if (!inode) {
3006 path_to_nameidata(path, nd);
2675a4eb 3007 goto out;
54c33e7f 3008 }
9e67f361 3009
d45ea867
MS
3010 if (should_follow_link(inode, !symlink_ok)) {
3011 if (nd->flags & LOOKUP_RCU) {
3012 if (unlikely(unlazy_walk(nd, path->dentry))) {
3013 error = -ECHILD;
2675a4eb 3014 goto out;
d45ea867
MS
3015 }
3016 }
3017 BUG_ON(inode != path->dentry->d_inode);
2675a4eb 3018 return 1;
d45ea867 3019 }
fb1cc555 3020
16b1c1cd
MS
3021 if ((nd->flags & LOOKUP_RCU) || nd->path.mnt != path->mnt) {
3022 path_to_nameidata(path, nd);
3023 } else {
3024 save_parent.dentry = nd->path.dentry;
3025 save_parent.mnt = mntget(path->mnt);
3026 nd->path.dentry = path->dentry;
3027
3028 }
decf3400 3029 nd->inode = inode;
a3fbbde7 3030 /* Why this, you ask? _Now_ we might have grown LOOKUP_JUMPED... */
bc77daa7 3031finish_open:
a3fbbde7 3032 error = complete_walk(nd);
16b1c1cd
MS
3033 if (error) {
3034 path_put(&save_parent);
2675a4eb 3035 return error;
16b1c1cd 3036 }
bc77daa7 3037 audit_inode(name, nd->path.dentry, 0);
fb1cc555 3038 error = -EISDIR;
050ac841 3039 if ((open_flag & O_CREAT) && S_ISDIR(nd->inode->i_mode))
2675a4eb 3040 goto out;
af2f5542 3041 error = -ENOTDIR;
05252901 3042 if ((nd->flags & LOOKUP_DIRECTORY) && !can_lookup(nd->inode))
2675a4eb 3043 goto out;
6c0d46c4 3044 if (!S_ISREG(nd->inode->i_mode))
77d660a8 3045 will_truncate = false;
6c0d46c4 3046
0f9d1a10
AV
3047 if (will_truncate) {
3048 error = mnt_want_write(nd->path.mnt);
3049 if (error)
2675a4eb 3050 goto out;
64894cf8 3051 got_write = true;
0f9d1a10 3052 }
e83db167 3053finish_open_created:
bcda7652 3054 error = may_open(&nd->path, acc_mode, open_flag);
ca344a89 3055 if (error)
2675a4eb 3056 goto out;
30d90494
AV
3057 file->f_path.mnt = nd->path.mnt;
3058 error = finish_open(file, nd->path.dentry, NULL, opened);
3059 if (error) {
30d90494 3060 if (error == -EOPENSTALE)
f60dc3db 3061 goto stale_open;
015c3bbc 3062 goto out;
f60dc3db 3063 }
a8277b9b 3064opened:
2675a4eb 3065 error = open_check_o_direct(file);
015c3bbc
MS
3066 if (error)
3067 goto exit_fput;
2675a4eb 3068 error = ima_file_check(file, op->acc_mode);
aa4caadb
MS
3069 if (error)
3070 goto exit_fput;
3071
3072 if (will_truncate) {
2675a4eb 3073 error = handle_truncate(file);
aa4caadb
MS
3074 if (error)
3075 goto exit_fput;
0f9d1a10 3076 }
ca344a89 3077out:
64894cf8 3078 if (got_write)
0f9d1a10 3079 mnt_drop_write(nd->path.mnt);
16b1c1cd 3080 path_put(&save_parent);
e276ae67 3081 terminate_walk(nd);
2675a4eb 3082 return error;
fb1cc555 3083
fb1cc555
AV
3084exit_dput:
3085 path_put_conditional(path, nd);
ca344a89 3086 goto out;
015c3bbc 3087exit_fput:
2675a4eb
AV
3088 fput(file);
3089 goto out;
015c3bbc 3090
f60dc3db
MS
3091stale_open:
3092 /* If no saved parent or already retried then can't retry */
3093 if (!save_parent.dentry || retried)
3094 goto out;
3095
3096 BUG_ON(save_parent.dentry != dir);
3097 path_put(&nd->path);
3098 nd->path = save_parent;
3099 nd->inode = dir->d_inode;
3100 save_parent.mnt = NULL;
3101 save_parent.dentry = NULL;
64894cf8 3102 if (got_write) {
f60dc3db 3103 mnt_drop_write(nd->path.mnt);
64894cf8 3104 got_write = false;
f60dc3db
MS
3105 }
3106 retried = true;
3107 goto retry_lookup;
fb1cc555
AV
3108}
3109
60545d0d
AV
3110static int do_tmpfile(int dfd, struct filename *pathname,
3111 struct nameidata *nd, int flags,
3112 const struct open_flags *op,
3113 struct file *file, int *opened)
3114{
3115 static const struct qstr name = QSTR_INIT("/", 1);
3116 struct dentry *dentry, *child;
3117 struct inode *dir;
3118 int error = path_lookupat(dfd, pathname->name,
3119 flags | LOOKUP_DIRECTORY, nd);
3120 if (unlikely(error))
3121 return error;
3122 error = mnt_want_write(nd->path.mnt);
3123 if (unlikely(error))
3124 goto out;
3125 /* we want directory to be writable */
3126 error = inode_permission(nd->inode, MAY_WRITE | MAY_EXEC);
3127 if (error)
3128 goto out2;
3129 dentry = nd->path.dentry;
3130 dir = dentry->d_inode;
3131 if (!dir->i_op->tmpfile) {
3132 error = -EOPNOTSUPP;
3133 goto out2;
3134 }
3135 child = d_alloc(dentry, &name);
3136 if (unlikely(!child)) {
3137 error = -ENOMEM;
3138 goto out2;
3139 }
3140 nd->flags &= ~LOOKUP_DIRECTORY;
3141 nd->flags |= op->intent;
3142 dput(nd->path.dentry);
3143 nd->path.dentry = child;
3144 error = dir->i_op->tmpfile(dir, nd->path.dentry, op->mode);
3145 if (error)
3146 goto out2;
3147 audit_inode(pathname, nd->path.dentry, 0);
3148 error = may_open(&nd->path, op->acc_mode, op->open_flag);
3149 if (error)
3150 goto out2;
3151 file->f_path.mnt = nd->path.mnt;
3152 error = finish_open(file, nd->path.dentry, NULL, opened);
3153 if (error)
3154 goto out2;
3155 error = open_check_o_direct(file);
f4e0c30c 3156 if (error) {
60545d0d 3157 fput(file);
f4e0c30c
AV
3158 } else if (!(op->open_flag & O_EXCL)) {
3159 struct inode *inode = file_inode(file);
3160 spin_lock(&inode->i_lock);
3161 inode->i_state |= I_LINKABLE;
3162 spin_unlock(&inode->i_lock);
3163 }
60545d0d
AV
3164out2:
3165 mnt_drop_write(nd->path.mnt);
3166out:
3167 path_put(&nd->path);
3168 return error;
3169}
3170
669abf4e 3171static struct file *path_openat(int dfd, struct filename *pathname,
73d049a4 3172 struct nameidata *nd, const struct open_flags *op, int flags)
1da177e4 3173{
fe2d35ff 3174 struct file *base = NULL;
30d90494 3175 struct file *file;
9850c056 3176 struct path path;
47237687 3177 int opened = 0;
13aab428 3178 int error;
31e6b01f 3179
30d90494 3180 file = get_empty_filp();
1afc99be
AV
3181 if (IS_ERR(file))
3182 return file;
31e6b01f 3183
30d90494 3184 file->f_flags = op->open_flag;
31e6b01f 3185
bb458c64 3186 if (unlikely(file->f_flags & __O_TMPFILE)) {
60545d0d
AV
3187 error = do_tmpfile(dfd, pathname, nd, flags, op, file, &opened);
3188 goto out;
3189 }
3190
669abf4e 3191 error = path_init(dfd, pathname->name, flags | LOOKUP_PARENT, nd, &base);
31e6b01f 3192 if (unlikely(error))
2675a4eb 3193 goto out;
31e6b01f 3194
fe2d35ff 3195 current->total_link_count = 0;
669abf4e 3196 error = link_path_walk(pathname->name, nd);
31e6b01f 3197 if (unlikely(error))
2675a4eb 3198 goto out;
1da177e4 3199
2675a4eb
AV
3200 error = do_last(nd, &path, file, op, &opened, pathname);
3201 while (unlikely(error > 0)) { /* trailing symlink */
7b9337aa 3202 struct path link = path;
def4af30 3203 void *cookie;
574197e0 3204 if (!(nd->flags & LOOKUP_FOLLOW)) {
73d049a4
AV
3205 path_put_conditional(&path, nd);
3206 path_put(&nd->path);
2675a4eb 3207 error = -ELOOP;
40b39136
AV
3208 break;
3209 }
800179c9
KC
3210 error = may_follow_link(&link, nd);
3211 if (unlikely(error))
3212 break;
73d049a4
AV
3213 nd->flags |= LOOKUP_PARENT;
3214 nd->flags &= ~(LOOKUP_OPEN|LOOKUP_CREATE|LOOKUP_EXCL);
574197e0 3215 error = follow_link(&link, nd, &cookie);
c3e380b0 3216 if (unlikely(error))
2675a4eb
AV
3217 break;
3218 error = do_last(nd, &path, file, op, &opened, pathname);
574197e0 3219 put_link(nd, &link, cookie);
806b681c 3220 }
10fa8e62 3221out:
73d049a4
AV
3222 if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT))
3223 path_put(&nd->root);
fe2d35ff
AV
3224 if (base)
3225 fput(base);
2675a4eb
AV
3226 if (!(opened & FILE_OPENED)) {
3227 BUG_ON(!error);
30d90494 3228 put_filp(file);
16b1c1cd 3229 }
2675a4eb
AV
3230 if (unlikely(error)) {
3231 if (error == -EOPENSTALE) {
3232 if (flags & LOOKUP_RCU)
3233 error = -ECHILD;
3234 else
3235 error = -ESTALE;
3236 }
3237 file = ERR_PTR(error);
3238 }
3239 return file;
1da177e4
LT
3240}
3241
669abf4e 3242struct file *do_filp_open(int dfd, struct filename *pathname,
f9652e10 3243 const struct open_flags *op)
13aab428 3244{
73d049a4 3245 struct nameidata nd;
f9652e10 3246 int flags = op->lookup_flags;
13aab428
AV
3247 struct file *filp;
3248
73d049a4 3249 filp = path_openat(dfd, pathname, &nd, op, flags | LOOKUP_RCU);
13aab428 3250 if (unlikely(filp == ERR_PTR(-ECHILD)))
73d049a4 3251 filp = path_openat(dfd, pathname, &nd, op, flags);
13aab428 3252 if (unlikely(filp == ERR_PTR(-ESTALE)))
73d049a4 3253 filp = path_openat(dfd, pathname, &nd, op, flags | LOOKUP_REVAL);
13aab428
AV
3254 return filp;
3255}
3256
73d049a4 3257struct file *do_file_open_root(struct dentry *dentry, struct vfsmount *mnt,
f9652e10 3258 const char *name, const struct open_flags *op)
73d049a4
AV
3259{
3260 struct nameidata nd;
3261 struct file *file;
669abf4e 3262 struct filename filename = { .name = name };
f9652e10 3263 int flags = op->lookup_flags | LOOKUP_ROOT;
73d049a4
AV
3264
3265 nd.root.mnt = mnt;
3266 nd.root.dentry = dentry;
3267
bcda7652 3268 if (dentry->d_inode->i_op->follow_link && op->intent & LOOKUP_OPEN)
73d049a4
AV
3269 return ERR_PTR(-ELOOP);
3270
669abf4e 3271 file = path_openat(-1, &filename, &nd, op, flags | LOOKUP_RCU);
73d049a4 3272 if (unlikely(file == ERR_PTR(-ECHILD)))
669abf4e 3273 file = path_openat(-1, &filename, &nd, op, flags);
73d049a4 3274 if (unlikely(file == ERR_PTR(-ESTALE)))
669abf4e 3275 file = path_openat(-1, &filename, &nd, op, flags | LOOKUP_REVAL);
73d049a4
AV
3276 return file;
3277}
3278
1ac12b4b
JL
3279struct dentry *kern_path_create(int dfd, const char *pathname,
3280 struct path *path, unsigned int lookup_flags)
1da177e4 3281{
c663e5d8 3282 struct dentry *dentry = ERR_PTR(-EEXIST);
ed75e95d 3283 struct nameidata nd;
c30dabfe 3284 int err2;
1ac12b4b
JL
3285 int error;
3286 bool is_dir = (lookup_flags & LOOKUP_DIRECTORY);
3287
3288 /*
3289 * Note that only LOOKUP_REVAL and LOOKUP_DIRECTORY matter here. Any
3290 * other flags passed in are ignored!
3291 */
3292 lookup_flags &= LOOKUP_REVAL;
3293
3294 error = do_path_lookup(dfd, pathname, LOOKUP_PARENT|lookup_flags, &nd);
ed75e95d
AV
3295 if (error)
3296 return ERR_PTR(error);
1da177e4 3297
c663e5d8
CH
3298 /*
3299 * Yucky last component or no last component at all?
3300 * (foo/., foo/.., /////)
3301 */
ed75e95d
AV
3302 if (nd.last_type != LAST_NORM)
3303 goto out;
3304 nd.flags &= ~LOOKUP_PARENT;
3305 nd.flags |= LOOKUP_CREATE | LOOKUP_EXCL;
c663e5d8 3306
c30dabfe
JK
3307 /* don't fail immediately if it's r/o, at least try to report other errors */
3308 err2 = mnt_want_write(nd.path.mnt);
c663e5d8
CH
3309 /*
3310 * Do the final lookup.
3311 */
ed75e95d
AV
3312 mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
3313 dentry = lookup_hash(&nd);
1da177e4 3314 if (IS_ERR(dentry))
a8104a9f 3315 goto unlock;
c663e5d8 3316
a8104a9f 3317 error = -EEXIST;
e9baf6e5 3318 if (dentry->d_inode)
a8104a9f 3319 goto fail;
c663e5d8
CH
3320 /*
3321 * Special case - lookup gave negative, but... we had foo/bar/
3322 * From the vfs_mknod() POV we just have a negative dentry -
3323 * all is fine. Let's be bastards - you had / on the end, you've
3324 * been asking for (non-existent) directory. -ENOENT for you.
3325 */
ed75e95d 3326 if (unlikely(!is_dir && nd.last.name[nd.last.len])) {
a8104a9f 3327 error = -ENOENT;
ed75e95d 3328 goto fail;
e9baf6e5 3329 }
c30dabfe
JK
3330 if (unlikely(err2)) {
3331 error = err2;
a8104a9f 3332 goto fail;
c30dabfe 3333 }
ed75e95d 3334 *path = nd.path;
1da177e4 3335 return dentry;
1da177e4 3336fail:
a8104a9f
AV
3337 dput(dentry);
3338 dentry = ERR_PTR(error);
3339unlock:
ed75e95d 3340 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
c30dabfe
JK
3341 if (!err2)
3342 mnt_drop_write(nd.path.mnt);
ed75e95d
AV
3343out:
3344 path_put(&nd.path);
1da177e4
LT
3345 return dentry;
3346}
dae6ad8f
AV
3347EXPORT_SYMBOL(kern_path_create);
3348
921a1650
AV
3349void done_path_create(struct path *path, struct dentry *dentry)
3350{
3351 dput(dentry);
3352 mutex_unlock(&path->dentry->d_inode->i_mutex);
a8104a9f 3353 mnt_drop_write(path->mnt);
921a1650
AV
3354 path_put(path);
3355}
3356EXPORT_SYMBOL(done_path_create);
3357
1ac12b4b
JL
3358struct dentry *user_path_create(int dfd, const char __user *pathname,
3359 struct path *path, unsigned int lookup_flags)
dae6ad8f 3360{
91a27b2a 3361 struct filename *tmp = getname(pathname);
dae6ad8f
AV
3362 struct dentry *res;
3363 if (IS_ERR(tmp))
3364 return ERR_CAST(tmp);
1ac12b4b 3365 res = kern_path_create(dfd, tmp->name, path, lookup_flags);
dae6ad8f
AV
3366 putname(tmp);
3367 return res;
3368}
3369EXPORT_SYMBOL(user_path_create);
3370
1a67aafb 3371int vfs_mknod(struct inode *dir, struct dentry *dentry, umode_t mode, dev_t dev)
1da177e4 3372{
a95164d9 3373 int error = may_create(dir, dentry);
1da177e4
LT
3374
3375 if (error)
3376 return error;
3377
975d6b39 3378 if ((S_ISCHR(mode) || S_ISBLK(mode)) && !capable(CAP_MKNOD))
1da177e4
LT
3379 return -EPERM;
3380
acfa4380 3381 if (!dir->i_op->mknod)
1da177e4
LT
3382 return -EPERM;
3383
08ce5f16
SH
3384 error = devcgroup_inode_mknod(mode, dev);
3385 if (error)
3386 return error;
3387
1da177e4
LT
3388 error = security_inode_mknod(dir, dentry, mode, dev);
3389 if (error)
3390 return error;
3391
1da177e4 3392 error = dir->i_op->mknod(dir, dentry, mode, dev);
a74574aa 3393 if (!error)
f38aa942 3394 fsnotify_create(dir, dentry);
1da177e4
LT
3395 return error;
3396}
3397
f69aac00 3398static int may_mknod(umode_t mode)
463c3197
DH
3399{
3400 switch (mode & S_IFMT) {
3401 case S_IFREG:
3402 case S_IFCHR:
3403 case S_IFBLK:
3404 case S_IFIFO:
3405 case S_IFSOCK:
3406 case 0: /* zero mode translates to S_IFREG */
3407 return 0;
3408 case S_IFDIR:
3409 return -EPERM;
3410 default:
3411 return -EINVAL;
3412 }
3413}
3414
8208a22b 3415SYSCALL_DEFINE4(mknodat, int, dfd, const char __user *, filename, umode_t, mode,
2e4d0924 3416 unsigned, dev)
1da177e4 3417{
2ad94ae6 3418 struct dentry *dentry;
dae6ad8f
AV
3419 struct path path;
3420 int error;
972567f1 3421 unsigned int lookup_flags = 0;
1da177e4 3422
8e4bfca1
AV
3423 error = may_mknod(mode);
3424 if (error)
3425 return error;
972567f1
JL
3426retry:
3427 dentry = user_path_create(dfd, filename, &path, lookup_flags);
dae6ad8f
AV
3428 if (IS_ERR(dentry))
3429 return PTR_ERR(dentry);
2ad94ae6 3430
dae6ad8f 3431 if (!IS_POSIXACL(path.dentry->d_inode))
ce3b0f8d 3432 mode &= ~current_umask();
dae6ad8f 3433 error = security_path_mknod(&path, dentry, mode, dev);
be6d3e56 3434 if (error)
a8104a9f 3435 goto out;
463c3197 3436 switch (mode & S_IFMT) {
1da177e4 3437 case 0: case S_IFREG:
312b63fb 3438 error = vfs_create(path.dentry->d_inode,dentry,mode,true);
1da177e4
LT
3439 break;
3440 case S_IFCHR: case S_IFBLK:
dae6ad8f 3441 error = vfs_mknod(path.dentry->d_inode,dentry,mode,
1da177e4
LT
3442 new_decode_dev(dev));
3443 break;
3444 case S_IFIFO: case S_IFSOCK:
dae6ad8f 3445 error = vfs_mknod(path.dentry->d_inode,dentry,mode,0);
1da177e4 3446 break;
1da177e4 3447 }
a8104a9f 3448out:
921a1650 3449 done_path_create(&path, dentry);
972567f1
JL
3450 if (retry_estale(error, lookup_flags)) {
3451 lookup_flags |= LOOKUP_REVAL;
3452 goto retry;
3453 }
1da177e4
LT
3454 return error;
3455}
3456
8208a22b 3457SYSCALL_DEFINE3(mknod, const char __user *, filename, umode_t, mode, unsigned, dev)
5590ff0d
UD
3458{
3459 return sys_mknodat(AT_FDCWD, filename, mode, dev);
3460}
3461
18bb1db3 3462int vfs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
1da177e4 3463{
a95164d9 3464 int error = may_create(dir, dentry);
8de52778 3465 unsigned max_links = dir->i_sb->s_max_links;
1da177e4
LT
3466
3467 if (error)
3468 return error;
3469
acfa4380 3470 if (!dir->i_op->mkdir)
1da177e4
LT
3471 return -EPERM;
3472
3473 mode &= (S_IRWXUGO|S_ISVTX);
3474 error = security_inode_mkdir(dir, dentry, mode);
3475 if (error)
3476 return error;
3477
8de52778
AV
3478 if (max_links && dir->i_nlink >= max_links)
3479 return -EMLINK;
3480
1da177e4 3481 error = dir->i_op->mkdir(dir, dentry, mode);
a74574aa 3482 if (!error)
f38aa942 3483 fsnotify_mkdir(dir, dentry);
1da177e4
LT
3484 return error;
3485}
3486
a218d0fd 3487SYSCALL_DEFINE3(mkdirat, int, dfd, const char __user *, pathname, umode_t, mode)
1da177e4 3488{
6902d925 3489 struct dentry *dentry;
dae6ad8f
AV
3490 struct path path;
3491 int error;
b76d8b82 3492 unsigned int lookup_flags = LOOKUP_DIRECTORY;
1da177e4 3493
b76d8b82
JL
3494retry:
3495 dentry = user_path_create(dfd, pathname, &path, lookup_flags);
6902d925 3496 if (IS_ERR(dentry))
dae6ad8f 3497 return PTR_ERR(dentry);
1da177e4 3498
dae6ad8f 3499 if (!IS_POSIXACL(path.dentry->d_inode))
ce3b0f8d 3500 mode &= ~current_umask();
dae6ad8f 3501 error = security_path_mkdir(&path, dentry, mode);
a8104a9f
AV
3502 if (!error)
3503 error = vfs_mkdir(path.dentry->d_inode, dentry, mode);
921a1650 3504 done_path_create(&path, dentry);
b76d8b82
JL
3505 if (retry_estale(error, lookup_flags)) {
3506 lookup_flags |= LOOKUP_REVAL;
3507 goto retry;
3508 }
1da177e4
LT
3509 return error;
3510}
3511
a218d0fd 3512SYSCALL_DEFINE2(mkdir, const char __user *, pathname, umode_t, mode)
5590ff0d
UD
3513{
3514 return sys_mkdirat(AT_FDCWD, pathname, mode);
3515}
3516
1da177e4 3517/*
a71905f0 3518 * The dentry_unhash() helper will try to drop the dentry early: we
c0d02594 3519 * should have a usage count of 1 if we're the only user of this
a71905f0
SW
3520 * dentry, and if that is true (possibly after pruning the dcache),
3521 * then we drop the dentry now.
1da177e4
LT
3522 *
3523 * A low-level filesystem can, if it choses, legally
3524 * do a
3525 *
3526 * if (!d_unhashed(dentry))
3527 * return -EBUSY;
3528 *
3529 * if it cannot handle the case of removing a directory
3530 * that is still in use by something else..
3531 */
3532void dentry_unhash(struct dentry *dentry)
3533{
dc168427 3534 shrink_dcache_parent(dentry);
1da177e4 3535 spin_lock(&dentry->d_lock);
98474236 3536 if (dentry->d_lockref.count == 1)
1da177e4
LT
3537 __d_drop(dentry);
3538 spin_unlock(&dentry->d_lock);
1da177e4
LT
3539}
3540
3541int vfs_rmdir(struct inode *dir, struct dentry *dentry)
3542{
3543 int error = may_delete(dir, dentry, 1);
3544
3545 if (error)
3546 return error;
3547
acfa4380 3548 if (!dir->i_op->rmdir)
1da177e4
LT
3549 return -EPERM;
3550
1d2ef590 3551 dget(dentry);
1b1dcc1b 3552 mutex_lock(&dentry->d_inode->i_mutex);
912dbc15
SW
3553
3554 error = -EBUSY;
1da177e4 3555 if (d_mountpoint(dentry))
912dbc15
SW
3556 goto out;
3557
3558 error = security_inode_rmdir(dir, dentry);
3559 if (error)
3560 goto out;
3561
3cebde24 3562 shrink_dcache_parent(dentry);
912dbc15
SW
3563 error = dir->i_op->rmdir(dir, dentry);
3564 if (error)
3565 goto out;
3566
3567 dentry->d_inode->i_flags |= S_DEAD;
3568 dont_mount(dentry);
3569
3570out:
1b1dcc1b 3571 mutex_unlock(&dentry->d_inode->i_mutex);
1d2ef590 3572 dput(dentry);
912dbc15 3573 if (!error)
1da177e4 3574 d_delete(dentry);
1da177e4
LT
3575 return error;
3576}
3577
5590ff0d 3578static long do_rmdir(int dfd, const char __user *pathname)
1da177e4
LT
3579{
3580 int error = 0;
91a27b2a 3581 struct filename *name;
1da177e4
LT
3582 struct dentry *dentry;
3583 struct nameidata nd;
c6ee9206
JL
3584 unsigned int lookup_flags = 0;
3585retry:
3586 name = user_path_parent(dfd, pathname, &nd, lookup_flags);
91a27b2a
JL
3587 if (IS_ERR(name))
3588 return PTR_ERR(name);
1da177e4
LT
3589
3590 switch(nd.last_type) {
0612d9fb
OH
3591 case LAST_DOTDOT:
3592 error = -ENOTEMPTY;
3593 goto exit1;
3594 case LAST_DOT:
3595 error = -EINVAL;
3596 goto exit1;
3597 case LAST_ROOT:
3598 error = -EBUSY;
3599 goto exit1;
1da177e4 3600 }
0612d9fb
OH
3601
3602 nd.flags &= ~LOOKUP_PARENT;
c30dabfe
JK
3603 error = mnt_want_write(nd.path.mnt);
3604 if (error)
3605 goto exit1;
0612d9fb 3606
4ac91378 3607 mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
49705b77 3608 dentry = lookup_hash(&nd);
1da177e4 3609 error = PTR_ERR(dentry);
6902d925
DH
3610 if (IS_ERR(dentry))
3611 goto exit2;
e6bc45d6
TT
3612 if (!dentry->d_inode) {
3613 error = -ENOENT;
3614 goto exit3;
3615 }
be6d3e56
KT
3616 error = security_path_rmdir(&nd.path, dentry);
3617 if (error)
c30dabfe 3618 goto exit3;
4ac91378 3619 error = vfs_rmdir(nd.path.dentry->d_inode, dentry);
0622753b 3620exit3:
6902d925
DH
3621 dput(dentry);
3622exit2:
4ac91378 3623 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
c30dabfe 3624 mnt_drop_write(nd.path.mnt);
1da177e4 3625exit1:
1d957f9b 3626 path_put(&nd.path);
1da177e4 3627 putname(name);
c6ee9206
JL
3628 if (retry_estale(error, lookup_flags)) {
3629 lookup_flags |= LOOKUP_REVAL;
3630 goto retry;
3631 }
1da177e4
LT
3632 return error;
3633}
3634
3cdad428 3635SYSCALL_DEFINE1(rmdir, const char __user *, pathname)
5590ff0d
UD
3636{
3637 return do_rmdir(AT_FDCWD, pathname);
3638}
3639
1da177e4
LT
3640int vfs_unlink(struct inode *dir, struct dentry *dentry)
3641{
3642 int error = may_delete(dir, dentry, 0);
3643
3644 if (error)
3645 return error;
3646
acfa4380 3647 if (!dir->i_op->unlink)
1da177e4
LT
3648 return -EPERM;
3649
1b1dcc1b 3650 mutex_lock(&dentry->d_inode->i_mutex);
1da177e4
LT
3651 if (d_mountpoint(dentry))
3652 error = -EBUSY;
3653 else {
3654 error = security_inode_unlink(dir, dentry);
bec1052e 3655 if (!error) {
1da177e4 3656 error = dir->i_op->unlink(dir, dentry);
bec1052e 3657 if (!error)
d83c49f3 3658 dont_mount(dentry);
bec1052e 3659 }
1da177e4 3660 }
1b1dcc1b 3661 mutex_unlock(&dentry->d_inode->i_mutex);
1da177e4
LT
3662
3663 /* We don't d_delete() NFS sillyrenamed files--they still exist. */
3664 if (!error && !(dentry->d_flags & DCACHE_NFSFS_RENAMED)) {
ece95912 3665 fsnotify_link_count(dentry->d_inode);
e234f35c 3666 d_delete(dentry);
1da177e4 3667 }
0eeca283 3668
1da177e4
LT
3669 return error;
3670}
3671
3672/*
3673 * Make sure that the actual truncation of the file will occur outside its
1b1dcc1b 3674 * directory's i_mutex. Truncate can take a long time if there is a lot of
1da177e4
LT
3675 * writeout happening, and we don't want to prevent access to the directory
3676 * while waiting on the I/O.
3677 */
5590ff0d 3678static long do_unlinkat(int dfd, const char __user *pathname)
1da177e4 3679{
2ad94ae6 3680 int error;
91a27b2a 3681 struct filename *name;
1da177e4
LT
3682 struct dentry *dentry;
3683 struct nameidata nd;
3684 struct inode *inode = NULL;
5d18f813
JL
3685 unsigned int lookup_flags = 0;
3686retry:
3687 name = user_path_parent(dfd, pathname, &nd, lookup_flags);
91a27b2a
JL
3688 if (IS_ERR(name))
3689 return PTR_ERR(name);
2ad94ae6 3690
1da177e4
LT
3691 error = -EISDIR;
3692 if (nd.last_type != LAST_NORM)
3693 goto exit1;
0612d9fb
OH
3694
3695 nd.flags &= ~LOOKUP_PARENT;
c30dabfe
JK
3696 error = mnt_want_write(nd.path.mnt);
3697 if (error)
3698 goto exit1;
0612d9fb 3699
4ac91378 3700 mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
49705b77 3701 dentry = lookup_hash(&nd);
1da177e4
LT
3702 error = PTR_ERR(dentry);
3703 if (!IS_ERR(dentry)) {
3704 /* Why not before? Because we want correct error value */
50338b88
TE
3705 if (nd.last.name[nd.last.len])
3706 goto slashes;
1da177e4 3707 inode = dentry->d_inode;
50338b88 3708 if (!inode)
e6bc45d6
TT
3709 goto slashes;
3710 ihold(inode);
be6d3e56
KT
3711 error = security_path_unlink(&nd.path, dentry);
3712 if (error)
c30dabfe 3713 goto exit2;
4ac91378 3714 error = vfs_unlink(nd.path.dentry->d_inode, dentry);
c30dabfe 3715exit2:
1da177e4
LT
3716 dput(dentry);
3717 }
4ac91378 3718 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
1da177e4
LT
3719 if (inode)
3720 iput(inode); /* truncate the inode here */
c30dabfe 3721 mnt_drop_write(nd.path.mnt);
1da177e4 3722exit1:
1d957f9b 3723 path_put(&nd.path);
1da177e4 3724 putname(name);
5d18f813
JL
3725 if (retry_estale(error, lookup_flags)) {
3726 lookup_flags |= LOOKUP_REVAL;
3727 inode = NULL;
3728 goto retry;
3729 }
1da177e4
LT
3730 return error;
3731
3732slashes:
3733 error = !dentry->d_inode ? -ENOENT :
3734 S_ISDIR(dentry->d_inode->i_mode) ? -EISDIR : -ENOTDIR;
3735 goto exit2;
3736}
3737
2e4d0924 3738SYSCALL_DEFINE3(unlinkat, int, dfd, const char __user *, pathname, int, flag)
5590ff0d
UD
3739{
3740 if ((flag & ~AT_REMOVEDIR) != 0)
3741 return -EINVAL;
3742
3743 if (flag & AT_REMOVEDIR)
3744 return do_rmdir(dfd, pathname);
3745
3746 return do_unlinkat(dfd, pathname);
3747}
3748
3480b257 3749SYSCALL_DEFINE1(unlink, const char __user *, pathname)
5590ff0d
UD
3750{
3751 return do_unlinkat(AT_FDCWD, pathname);
3752}
3753
db2e747b 3754int vfs_symlink(struct inode *dir, struct dentry *dentry, const char *oldname)
1da177e4 3755{
a95164d9 3756 int error = may_create(dir, dentry);
1da177e4
LT
3757
3758 if (error)
3759 return error;
3760
acfa4380 3761 if (!dir->i_op->symlink)
1da177e4
LT
3762 return -EPERM;
3763
3764 error = security_inode_symlink(dir, dentry, oldname);
3765 if (error)
3766 return error;
3767
1da177e4 3768 error = dir->i_op->symlink(dir, dentry, oldname);
a74574aa 3769 if (!error)
f38aa942 3770 fsnotify_create(dir, dentry);
1da177e4
LT
3771 return error;
3772}
3773
2e4d0924
HC
3774SYSCALL_DEFINE3(symlinkat, const char __user *, oldname,
3775 int, newdfd, const char __user *, newname)
1da177e4 3776{
2ad94ae6 3777 int error;
91a27b2a 3778 struct filename *from;
6902d925 3779 struct dentry *dentry;
dae6ad8f 3780 struct path path;
f46d3567 3781 unsigned int lookup_flags = 0;
1da177e4
LT
3782
3783 from = getname(oldname);
2ad94ae6 3784 if (IS_ERR(from))
1da177e4 3785 return PTR_ERR(from);
f46d3567
JL
3786retry:
3787 dentry = user_path_create(newdfd, newname, &path, lookup_flags);
6902d925
DH
3788 error = PTR_ERR(dentry);
3789 if (IS_ERR(dentry))
dae6ad8f 3790 goto out_putname;
6902d925 3791
91a27b2a 3792 error = security_path_symlink(&path, dentry, from->name);
a8104a9f 3793 if (!error)
91a27b2a 3794 error = vfs_symlink(path.dentry->d_inode, dentry, from->name);
921a1650 3795 done_path_create(&path, dentry);
f46d3567
JL
3796 if (retry_estale(error, lookup_flags)) {
3797 lookup_flags |= LOOKUP_REVAL;
3798 goto retry;
3799 }
6902d925 3800out_putname:
1da177e4
LT
3801 putname(from);
3802 return error;
3803}
3804
3480b257 3805SYSCALL_DEFINE2(symlink, const char __user *, oldname, const char __user *, newname)
5590ff0d
UD
3806{
3807 return sys_symlinkat(oldname, AT_FDCWD, newname);
3808}
3809
1da177e4
LT
3810int vfs_link(struct dentry *old_dentry, struct inode *dir, struct dentry *new_dentry)
3811{
3812 struct inode *inode = old_dentry->d_inode;
8de52778 3813 unsigned max_links = dir->i_sb->s_max_links;
1da177e4
LT
3814 int error;
3815
3816 if (!inode)
3817 return -ENOENT;
3818
a95164d9 3819 error = may_create(dir, new_dentry);
1da177e4
LT
3820 if (error)
3821 return error;
3822
3823 if (dir->i_sb != inode->i_sb)
3824 return -EXDEV;
3825
3826 /*
3827 * A link to an append-only or immutable file cannot be created.
3828 */
3829 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
3830 return -EPERM;
acfa4380 3831 if (!dir->i_op->link)
1da177e4 3832 return -EPERM;
7e79eedb 3833 if (S_ISDIR(inode->i_mode))
1da177e4
LT
3834 return -EPERM;
3835
3836 error = security_inode_link(old_dentry, dir, new_dentry);
3837 if (error)
3838 return error;
3839
7e79eedb 3840 mutex_lock(&inode->i_mutex);
aae8a97d 3841 /* Make sure we don't allow creating hardlink to an unlinked file */
f4e0c30c 3842 if (inode->i_nlink == 0 && !(inode->i_state & I_LINKABLE))
aae8a97d 3843 error = -ENOENT;
8de52778
AV
3844 else if (max_links && inode->i_nlink >= max_links)
3845 error = -EMLINK;
aae8a97d
AK
3846 else
3847 error = dir->i_op->link(old_dentry, dir, new_dentry);
f4e0c30c
AV
3848
3849 if (!error && (inode->i_state & I_LINKABLE)) {
3850 spin_lock(&inode->i_lock);
3851 inode->i_state &= ~I_LINKABLE;
3852 spin_unlock(&inode->i_lock);
3853 }
7e79eedb 3854 mutex_unlock(&inode->i_mutex);
e31e14ec 3855 if (!error)
7e79eedb 3856 fsnotify_link(dir, inode, new_dentry);
1da177e4
LT
3857 return error;
3858}
3859
3860/*
3861 * Hardlinks are often used in delicate situations. We avoid
3862 * security-related surprises by not following symlinks on the
3863 * newname. --KAB
3864 *
3865 * We don't follow them on the oldname either to be compatible
3866 * with linux 2.0, and to avoid hard-linking to directories
3867 * and other special files. --ADM
3868 */
2e4d0924
HC
3869SYSCALL_DEFINE5(linkat, int, olddfd, const char __user *, oldname,
3870 int, newdfd, const char __user *, newname, int, flags)
1da177e4
LT
3871{
3872 struct dentry *new_dentry;
dae6ad8f 3873 struct path old_path, new_path;
11a7b371 3874 int how = 0;
1da177e4 3875 int error;
1da177e4 3876
11a7b371 3877 if ((flags & ~(AT_SYMLINK_FOLLOW | AT_EMPTY_PATH)) != 0)
c04030e1 3878 return -EINVAL;
11a7b371 3879 /*
f0cc6ffb
LT
3880 * To use null names we require CAP_DAC_READ_SEARCH
3881 * This ensures that not everyone will be able to create
3882 * handlink using the passed filedescriptor.
11a7b371 3883 */
f0cc6ffb
LT
3884 if (flags & AT_EMPTY_PATH) {
3885 if (!capable(CAP_DAC_READ_SEARCH))
3886 return -ENOENT;
11a7b371 3887 how = LOOKUP_EMPTY;
f0cc6ffb 3888 }
11a7b371
AK
3889
3890 if (flags & AT_SYMLINK_FOLLOW)
3891 how |= LOOKUP_FOLLOW;
442e31ca 3892retry:
11a7b371 3893 error = user_path_at(olddfd, oldname, how, &old_path);
1da177e4 3894 if (error)
2ad94ae6
AV
3895 return error;
3896
442e31ca
JL
3897 new_dentry = user_path_create(newdfd, newname, &new_path,
3898 (how & LOOKUP_REVAL));
1da177e4 3899 error = PTR_ERR(new_dentry);
6902d925 3900 if (IS_ERR(new_dentry))
dae6ad8f
AV
3901 goto out;
3902
3903 error = -EXDEV;
3904 if (old_path.mnt != new_path.mnt)
3905 goto out_dput;
800179c9
KC
3906 error = may_linkat(&old_path);
3907 if (unlikely(error))
3908 goto out_dput;
dae6ad8f 3909 error = security_path_link(old_path.dentry, &new_path, new_dentry);
be6d3e56 3910 if (error)
a8104a9f 3911 goto out_dput;
dae6ad8f 3912 error = vfs_link(old_path.dentry, new_path.dentry->d_inode, new_dentry);
75c3f29d 3913out_dput:
921a1650 3914 done_path_create(&new_path, new_dentry);
442e31ca
JL
3915 if (retry_estale(error, how)) {
3916 how |= LOOKUP_REVAL;
3917 goto retry;
3918 }
1da177e4 3919out:
2d8f3038 3920 path_put(&old_path);
1da177e4
LT
3921
3922 return error;
3923}
3924
3480b257 3925SYSCALL_DEFINE2(link, const char __user *, oldname, const char __user *, newname)
5590ff0d 3926{
c04030e1 3927 return sys_linkat(AT_FDCWD, oldname, AT_FDCWD, newname, 0);
5590ff0d
UD
3928}
3929
1da177e4
LT
3930/*
3931 * The worst of all namespace operations - renaming directory. "Perverted"
3932 * doesn't even start to describe it. Somebody in UCB had a heck of a trip...
3933 * Problems:
3934 * a) we can get into loop creation. Check is done in is_subdir().
3935 * b) race potential - two innocent renames can create a loop together.
3936 * That's where 4.4 screws up. Current fix: serialization on
a11f3a05 3937 * sb->s_vfs_rename_mutex. We might be more accurate, but that's another
1da177e4
LT
3938 * story.
3939 * c) we have to lock _three_ objects - parents and victim (if it exists).
1b1dcc1b 3940 * And that - after we got ->i_mutex on parents (until then we don't know
1da177e4
LT
3941 * whether the target exists). Solution: try to be smart with locking
3942 * order for inodes. We rely on the fact that tree topology may change
a11f3a05 3943 * only under ->s_vfs_rename_mutex _and_ that parent of the object we
1da177e4
LT
3944 * move will be locked. Thus we can rank directories by the tree
3945 * (ancestors first) and rank all non-directories after them.
3946 * That works since everybody except rename does "lock parent, lookup,
a11f3a05 3947 * lock child" and rename is under ->s_vfs_rename_mutex.
1da177e4
LT
3948 * HOWEVER, it relies on the assumption that any object with ->lookup()
3949 * has no more than 1 dentry. If "hybrid" objects will ever appear,
3950 * we'd better make sure that there's no link(2) for them.
e4eaac06 3951 * d) conversion from fhandle to dentry may come in the wrong moment - when
1b1dcc1b 3952 * we are removing the target. Solution: we will have to grab ->i_mutex
1da177e4 3953 * in the fhandle_to_dentry code. [FIXME - current nfsfh.c relies on
c41b20e7 3954 * ->i_mutex on parents, which works but leads to some truly excessive
1da177e4
LT
3955 * locking].
3956 */
75c96f85
AB
3957static int vfs_rename_dir(struct inode *old_dir, struct dentry *old_dentry,
3958 struct inode *new_dir, struct dentry *new_dentry)
1da177e4
LT
3959{
3960 int error = 0;
9055cba7 3961 struct inode *target = new_dentry->d_inode;
8de52778 3962 unsigned max_links = new_dir->i_sb->s_max_links;
1da177e4
LT
3963
3964 /*
3965 * If we are going to change the parent - check write permissions,
3966 * we'll need to flip '..'.
3967 */
3968 if (new_dir != old_dir) {
f419a2e3 3969 error = inode_permission(old_dentry->d_inode, MAY_WRITE);
1da177e4
LT
3970 if (error)
3971 return error;
3972 }
3973
3974 error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry);
3975 if (error)
3976 return error;
3977
1d2ef590 3978 dget(new_dentry);
d83c49f3 3979 if (target)
1b1dcc1b 3980 mutex_lock(&target->i_mutex);
9055cba7
SW
3981
3982 error = -EBUSY;
3983 if (d_mountpoint(old_dentry) || d_mountpoint(new_dentry))
3984 goto out;
3985
8de52778
AV
3986 error = -EMLINK;
3987 if (max_links && !target && new_dir != old_dir &&
3988 new_dir->i_nlink >= max_links)
3989 goto out;
3990
3cebde24
SW
3991 if (target)
3992 shrink_dcache_parent(new_dentry);
9055cba7
SW
3993 error = old_dir->i_op->rename(old_dir, old_dentry, new_dir, new_dentry);
3994 if (error)
3995 goto out;
3996
1da177e4 3997 if (target) {
9055cba7
SW
3998 target->i_flags |= S_DEAD;
3999 dont_mount(new_dentry);
1da177e4 4000 }
9055cba7
SW
4001out:
4002 if (target)
4003 mutex_unlock(&target->i_mutex);
1d2ef590 4004 dput(new_dentry);
e31e14ec 4005 if (!error)
349457cc
MF
4006 if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE))
4007 d_move(old_dentry,new_dentry);
1da177e4
LT
4008 return error;
4009}
4010
75c96f85
AB
4011static int vfs_rename_other(struct inode *old_dir, struct dentry *old_dentry,
4012 struct inode *new_dir, struct dentry *new_dentry)
1da177e4 4013{
51892bbb 4014 struct inode *target = new_dentry->d_inode;
1da177e4
LT
4015 int error;
4016
4017 error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry);
4018 if (error)
4019 return error;
4020
4021 dget(new_dentry);
1da177e4 4022 if (target)
1b1dcc1b 4023 mutex_lock(&target->i_mutex);
51892bbb
SW
4024
4025 error = -EBUSY;
1da177e4 4026 if (d_mountpoint(old_dentry)||d_mountpoint(new_dentry))
51892bbb
SW
4027 goto out;
4028
4029 error = old_dir->i_op->rename(old_dir, old_dentry, new_dir, new_dentry);
4030 if (error)
4031 goto out;
4032
4033 if (target)
4034 dont_mount(new_dentry);
4035 if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE))
4036 d_move(old_dentry, new_dentry);
4037out:
1da177e4 4038 if (target)
1b1dcc1b 4039 mutex_unlock(&target->i_mutex);
1da177e4
LT
4040 dput(new_dentry);
4041 return error;
4042}
4043
4044int vfs_rename(struct inode *old_dir, struct dentry *old_dentry,
4045 struct inode *new_dir, struct dentry *new_dentry)
4046{
4047 int error;
4048 int is_dir = S_ISDIR(old_dentry->d_inode->i_mode);
59b0df21 4049 const unsigned char *old_name;
1da177e4
LT
4050
4051 if (old_dentry->d_inode == new_dentry->d_inode)
4052 return 0;
4053
4054 error = may_delete(old_dir, old_dentry, is_dir);
4055 if (error)
4056 return error;
4057
4058 if (!new_dentry->d_inode)
a95164d9 4059 error = may_create(new_dir, new_dentry);
1da177e4
LT
4060 else
4061 error = may_delete(new_dir, new_dentry, is_dir);
4062 if (error)
4063 return error;
4064
acfa4380 4065 if (!old_dir->i_op->rename)
1da177e4
LT
4066 return -EPERM;
4067
0eeca283
RL
4068 old_name = fsnotify_oldname_init(old_dentry->d_name.name);
4069
1da177e4
LT
4070 if (is_dir)
4071 error = vfs_rename_dir(old_dir,old_dentry,new_dir,new_dentry);
4072 else
4073 error = vfs_rename_other(old_dir,old_dentry,new_dir,new_dentry);
123df294
AV
4074 if (!error)
4075 fsnotify_move(old_dir, new_dir, old_name, is_dir,
5a190ae6 4076 new_dentry->d_inode, old_dentry);
0eeca283
RL
4077 fsnotify_oldname_free(old_name);
4078
1da177e4
LT
4079 return error;
4080}
4081
2e4d0924
HC
4082SYSCALL_DEFINE4(renameat, int, olddfd, const char __user *, oldname,
4083 int, newdfd, const char __user *, newname)
1da177e4 4084{
2ad94ae6
AV
4085 struct dentry *old_dir, *new_dir;
4086 struct dentry *old_dentry, *new_dentry;
4087 struct dentry *trap;
1da177e4 4088 struct nameidata oldnd, newnd;
91a27b2a
JL
4089 struct filename *from;
4090 struct filename *to;
c6a94284
JL
4091 unsigned int lookup_flags = 0;
4092 bool should_retry = false;
2ad94ae6 4093 int error;
c6a94284
JL
4094retry:
4095 from = user_path_parent(olddfd, oldname, &oldnd, lookup_flags);
91a27b2a
JL
4096 if (IS_ERR(from)) {
4097 error = PTR_ERR(from);
1da177e4 4098 goto exit;
91a27b2a 4099 }
1da177e4 4100
c6a94284 4101 to = user_path_parent(newdfd, newname, &newnd, lookup_flags);
91a27b2a
JL
4102 if (IS_ERR(to)) {
4103 error = PTR_ERR(to);
1da177e4 4104 goto exit1;
91a27b2a 4105 }
1da177e4
LT
4106
4107 error = -EXDEV;
4ac91378 4108 if (oldnd.path.mnt != newnd.path.mnt)
1da177e4
LT
4109 goto exit2;
4110
4ac91378 4111 old_dir = oldnd.path.dentry;
1da177e4
LT
4112 error = -EBUSY;
4113 if (oldnd.last_type != LAST_NORM)
4114 goto exit2;
4115
4ac91378 4116 new_dir = newnd.path.dentry;
1da177e4
LT
4117 if (newnd.last_type != LAST_NORM)
4118 goto exit2;
4119
c30dabfe
JK
4120 error = mnt_want_write(oldnd.path.mnt);
4121 if (error)
4122 goto exit2;
4123
0612d9fb
OH
4124 oldnd.flags &= ~LOOKUP_PARENT;
4125 newnd.flags &= ~LOOKUP_PARENT;
4e9ed2f8 4126 newnd.flags |= LOOKUP_RENAME_TARGET;
0612d9fb 4127
1da177e4
LT
4128 trap = lock_rename(new_dir, old_dir);
4129
49705b77 4130 old_dentry = lookup_hash(&oldnd);
1da177e4
LT
4131 error = PTR_ERR(old_dentry);
4132 if (IS_ERR(old_dentry))
4133 goto exit3;
4134 /* source must exist */
4135 error = -ENOENT;
4136 if (!old_dentry->d_inode)
4137 goto exit4;
4138 /* unless the source is a directory trailing slashes give -ENOTDIR */
4139 if (!S_ISDIR(old_dentry->d_inode->i_mode)) {
4140 error = -ENOTDIR;
4141 if (oldnd.last.name[oldnd.last.len])
4142 goto exit4;
4143 if (newnd.last.name[newnd.last.len])
4144 goto exit4;
4145 }
4146 /* source should not be ancestor of target */
4147 error = -EINVAL;
4148 if (old_dentry == trap)
4149 goto exit4;
49705b77 4150 new_dentry = lookup_hash(&newnd);
1da177e4
LT
4151 error = PTR_ERR(new_dentry);
4152 if (IS_ERR(new_dentry))
4153 goto exit4;
4154 /* target should not be an ancestor of source */
4155 error = -ENOTEMPTY;
4156 if (new_dentry == trap)
4157 goto exit5;
4158
be6d3e56
KT
4159 error = security_path_rename(&oldnd.path, old_dentry,
4160 &newnd.path, new_dentry);
4161 if (error)
c30dabfe 4162 goto exit5;
1da177e4
LT
4163 error = vfs_rename(old_dir->d_inode, old_dentry,
4164 new_dir->d_inode, new_dentry);
4165exit5:
4166 dput(new_dentry);
4167exit4:
4168 dput(old_dentry);
4169exit3:
4170 unlock_rename(new_dir, old_dir);
c30dabfe 4171 mnt_drop_write(oldnd.path.mnt);
1da177e4 4172exit2:
c6a94284
JL
4173 if (retry_estale(error, lookup_flags))
4174 should_retry = true;
1d957f9b 4175 path_put(&newnd.path);
2ad94ae6 4176 putname(to);
1da177e4 4177exit1:
1d957f9b 4178 path_put(&oldnd.path);
1da177e4 4179 putname(from);
c6a94284
JL
4180 if (should_retry) {
4181 should_retry = false;
4182 lookup_flags |= LOOKUP_REVAL;
4183 goto retry;
4184 }
2ad94ae6 4185exit:
1da177e4
LT
4186 return error;
4187}
4188
a26eab24 4189SYSCALL_DEFINE2(rename, const char __user *, oldname, const char __user *, newname)
5590ff0d
UD
4190{
4191 return sys_renameat(AT_FDCWD, oldname, AT_FDCWD, newname);
4192}
4193
1da177e4
LT
4194int vfs_readlink(struct dentry *dentry, char __user *buffer, int buflen, const char *link)
4195{
4196 int len;
4197
4198 len = PTR_ERR(link);
4199 if (IS_ERR(link))
4200 goto out;
4201
4202 len = strlen(link);
4203 if (len > (unsigned) buflen)
4204 len = buflen;
4205 if (copy_to_user(buffer, link, len))
4206 len = -EFAULT;
4207out:
4208 return len;
4209}
4210
4211/*
4212 * A helper for ->readlink(). This should be used *ONLY* for symlinks that
4213 * have ->follow_link() touching nd only in nd_set_link(). Using (or not
4214 * using) it for any given inode is up to filesystem.
4215 */
4216int generic_readlink(struct dentry *dentry, char __user *buffer, int buflen)
4217{
4218 struct nameidata nd;
cc314eef 4219 void *cookie;
694a1764 4220 int res;
cc314eef 4221
1da177e4 4222 nd.depth = 0;
cc314eef 4223 cookie = dentry->d_inode->i_op->follow_link(dentry, &nd);
694a1764
MS
4224 if (IS_ERR(cookie))
4225 return PTR_ERR(cookie);
4226
4227 res = vfs_readlink(dentry, buffer, buflen, nd_get_link(&nd));
4228 if (dentry->d_inode->i_op->put_link)
4229 dentry->d_inode->i_op->put_link(dentry, &nd, cookie);
4230 return res;
1da177e4
LT
4231}
4232
4233int vfs_follow_link(struct nameidata *nd, const char *link)
4234{
4235 return __vfs_follow_link(nd, link);
4236}
4237
4238/* get the link contents into pagecache */
4239static char *page_getlink(struct dentry * dentry, struct page **ppage)
4240{
ebd09abb
DG
4241 char *kaddr;
4242 struct page *page;
1da177e4 4243 struct address_space *mapping = dentry->d_inode->i_mapping;
090d2b18 4244 page = read_mapping_page(mapping, 0, NULL);
1da177e4 4245 if (IS_ERR(page))
6fe6900e 4246 return (char*)page;
1da177e4 4247 *ppage = page;
ebd09abb
DG
4248 kaddr = kmap(page);
4249 nd_terminate_link(kaddr, dentry->d_inode->i_size, PAGE_SIZE - 1);
4250 return kaddr;
1da177e4
LT
4251}
4252
4253int page_readlink(struct dentry *dentry, char __user *buffer, int buflen)
4254{
4255 struct page *page = NULL;
4256 char *s = page_getlink(dentry, &page);
4257 int res = vfs_readlink(dentry,buffer,buflen,s);
4258 if (page) {
4259 kunmap(page);
4260 page_cache_release(page);
4261 }
4262 return res;
4263}
4264
cc314eef 4265void *page_follow_link_light(struct dentry *dentry, struct nameidata *nd)
1da177e4 4266{
cc314eef 4267 struct page *page = NULL;
1da177e4 4268 nd_set_link(nd, page_getlink(dentry, &page));
cc314eef 4269 return page;
1da177e4
LT
4270}
4271
cc314eef 4272void page_put_link(struct dentry *dentry, struct nameidata *nd, void *cookie)
1da177e4 4273{
cc314eef
LT
4274 struct page *page = cookie;
4275
4276 if (page) {
1da177e4
LT
4277 kunmap(page);
4278 page_cache_release(page);
1da177e4
LT
4279 }
4280}
4281
54566b2c
NP
4282/*
4283 * The nofs argument instructs pagecache_write_begin to pass AOP_FLAG_NOFS
4284 */
4285int __page_symlink(struct inode *inode, const char *symname, int len, int nofs)
1da177e4
LT
4286{
4287 struct address_space *mapping = inode->i_mapping;
0adb25d2 4288 struct page *page;
afddba49 4289 void *fsdata;
beb497ab 4290 int err;
1da177e4 4291 char *kaddr;
54566b2c
NP
4292 unsigned int flags = AOP_FLAG_UNINTERRUPTIBLE;
4293 if (nofs)
4294 flags |= AOP_FLAG_NOFS;
1da177e4 4295
7e53cac4 4296retry:
afddba49 4297 err = pagecache_write_begin(NULL, mapping, 0, len-1,
54566b2c 4298 flags, &page, &fsdata);
1da177e4 4299 if (err)
afddba49
NP
4300 goto fail;
4301
e8e3c3d6 4302 kaddr = kmap_atomic(page);
1da177e4 4303 memcpy(kaddr, symname, len-1);
e8e3c3d6 4304 kunmap_atomic(kaddr);
afddba49
NP
4305
4306 err = pagecache_write_end(NULL, mapping, 0, len-1, len-1,
4307 page, fsdata);
1da177e4
LT
4308 if (err < 0)
4309 goto fail;
afddba49
NP
4310 if (err < len-1)
4311 goto retry;
4312
1da177e4
LT
4313 mark_inode_dirty(inode);
4314 return 0;
1da177e4
LT
4315fail:
4316 return err;
4317}
4318
0adb25d2
KK
4319int page_symlink(struct inode *inode, const char *symname, int len)
4320{
4321 return __page_symlink(inode, symname, len,
54566b2c 4322 !(mapping_gfp_mask(inode->i_mapping) & __GFP_FS));
0adb25d2
KK
4323}
4324
92e1d5be 4325const struct inode_operations page_symlink_inode_operations = {
1da177e4
LT
4326 .readlink = generic_readlink,
4327 .follow_link = page_follow_link_light,
4328 .put_link = page_put_link,
4329};
4330
2d8f3038 4331EXPORT_SYMBOL(user_path_at);
cc53ce53 4332EXPORT_SYMBOL(follow_down_one);
1da177e4
LT
4333EXPORT_SYMBOL(follow_down);
4334EXPORT_SYMBOL(follow_up);
f6d2ac5c 4335EXPORT_SYMBOL(get_write_access); /* nfsd */
1da177e4 4336EXPORT_SYMBOL(lock_rename);
1da177e4
LT
4337EXPORT_SYMBOL(lookup_one_len);
4338EXPORT_SYMBOL(page_follow_link_light);
4339EXPORT_SYMBOL(page_put_link);
4340EXPORT_SYMBOL(page_readlink);
0adb25d2 4341EXPORT_SYMBOL(__page_symlink);
1da177e4
LT
4342EXPORT_SYMBOL(page_symlink);
4343EXPORT_SYMBOL(page_symlink_inode_operations);
d1811465 4344EXPORT_SYMBOL(kern_path);
16f18200 4345EXPORT_SYMBOL(vfs_path_lookup);
f419a2e3 4346EXPORT_SYMBOL(inode_permission);
1da177e4
LT
4347EXPORT_SYMBOL(unlock_rename);
4348EXPORT_SYMBOL(vfs_create);
4349EXPORT_SYMBOL(vfs_follow_link);
4350EXPORT_SYMBOL(vfs_link);
4351EXPORT_SYMBOL(vfs_mkdir);
4352EXPORT_SYMBOL(vfs_mknod);
4353EXPORT_SYMBOL(generic_permission);
4354EXPORT_SYMBOL(vfs_readlink);
4355EXPORT_SYMBOL(vfs_rename);
4356EXPORT_SYMBOL(vfs_rmdir);
4357EXPORT_SYMBOL(vfs_symlink);
4358EXPORT_SYMBOL(vfs_unlink);
4359EXPORT_SYMBOL(dentry_unhash);
4360EXPORT_SYMBOL(generic_readlink);
This page took 1.346882 seconds and 5 git commands to generate.