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