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