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