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