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