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