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