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