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