]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - fs/namei.c
fs/namei.c: Improve dcache hash function
[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
AV
268 /* no ->get_acl() calls in RCU mode... */
269 if (acl == ACL_NOT_CACHED)
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
397d425d 1419static int follow_dotdot(struct nameidata *nd)
1da177e4
LT
1420{
1421 while(1) {
4ac91378 1422 struct dentry *old = nd->path.dentry;
1da177e4 1423
2a737871
AV
1424 if (nd->path.dentry == nd->root.dentry &&
1425 nd->path.mnt == nd->root.mnt) {
1da177e4
LT
1426 break;
1427 }
4ac91378 1428 if (nd->path.dentry != nd->path.mnt->mnt_root) {
3088dd70
AV
1429 /* rare case of legitimate dget_parent()... */
1430 nd->path.dentry = dget_parent(nd->path.dentry);
1da177e4 1431 dput(old);
397d425d
EB
1432 if (unlikely(!path_connected(&nd->path)))
1433 return -ENOENT;
1da177e4
LT
1434 break;
1435 }
3088dd70 1436 if (!follow_up(&nd->path))
1da177e4 1437 break;
1da177e4 1438 }
79ed0226 1439 follow_mount(&nd->path);
31e6b01f 1440 nd->inode = nd->path.dentry->d_inode;
397d425d 1441 return 0;
1da177e4
LT
1442}
1443
baa03890 1444/*
bad61189
MS
1445 * This looks up the name in dcache, possibly revalidates the old dentry and
1446 * allocates a new one if not found or not valid. In the need_lookup argument
1447 * returns whether i_op->lookup is necessary.
baa03890 1448 */
e3c13928
AV
1449static struct dentry *lookup_dcache(const struct qstr *name,
1450 struct dentry *dir,
6c51e513 1451 unsigned int flags)
baa03890 1452{
baa03890 1453 struct dentry *dentry;
bad61189 1454 int error;
baa03890 1455
bad61189
MS
1456 dentry = d_lookup(dir, name);
1457 if (dentry) {
39e3c955 1458 if (dentry->d_flags & DCACHE_OP_REVALIDATE) {
201f956e 1459 error = d_revalidate(dentry, flags);
bad61189 1460 if (unlikely(error <= 0)) {
74ff0ffc 1461 if (!error)
5542aa2f 1462 d_invalidate(dentry);
74ff0ffc
AV
1463 dput(dentry);
1464 return ERR_PTR(error);
bad61189
MS
1465 }
1466 }
1467 }
baa03890
NP
1468 return dentry;
1469}
1470
44396f4b 1471/*
13a2c3be
BF
1472 * Call i_op->lookup on the dentry. The dentry must be negative and
1473 * unhashed.
bad61189
MS
1474 *
1475 * dir->d_inode->i_mutex must be held
44396f4b 1476 */
bad61189 1477static struct dentry *lookup_real(struct inode *dir, struct dentry *dentry,
72bd866a 1478 unsigned int flags)
44396f4b 1479{
44396f4b
JB
1480 struct dentry *old;
1481
1482 /* Don't create child dentry for a dead directory. */
bad61189 1483 if (unlikely(IS_DEADDIR(dir))) {
e188dc02 1484 dput(dentry);
44396f4b 1485 return ERR_PTR(-ENOENT);
e188dc02 1486 }
44396f4b 1487
72bd866a 1488 old = dir->i_op->lookup(dir, dentry, flags);
44396f4b
JB
1489 if (unlikely(old)) {
1490 dput(dentry);
1491 dentry = old;
1492 }
1493 return dentry;
1494}
1495
e3c13928 1496static struct dentry *__lookup_hash(const struct qstr *name,
72bd866a 1497 struct dentry *base, unsigned int flags)
a3255546 1498{
6c51e513 1499 struct dentry *dentry = lookup_dcache(name, base, flags);
a3255546 1500
6c51e513 1501 if (dentry)
bad61189 1502 return dentry;
a3255546 1503
6c51e513
AV
1504 dentry = d_alloc(base, name);
1505 if (unlikely(!dentry))
1506 return ERR_PTR(-ENOMEM);
1507
72bd866a 1508 return lookup_real(base->d_inode, dentry, flags);
a3255546
AV
1509}
1510
e97cdc87 1511static int lookup_fast(struct nameidata *nd,
254cf582
AV
1512 struct path *path, struct inode **inode,
1513 unsigned *seqp)
1da177e4 1514{
4ac91378 1515 struct vfsmount *mnt = nd->path.mnt;
31e6b01f 1516 struct dentry *dentry, *parent = nd->path.dentry;
5a18fff2 1517 int status = 1;
9875cf80
DH
1518 int err;
1519
b04f784e
NP
1520 /*
1521 * Rename seqlock is not required here because in the off chance
5d0f49c1
AV
1522 * of a false negative due to a concurrent rename, the caller is
1523 * going to fall back to non-racy lookup.
b04f784e 1524 */
31e6b01f
NP
1525 if (nd->flags & LOOKUP_RCU) {
1526 unsigned seq;
766c4cbf 1527 bool negative;
da53be12 1528 dentry = __d_lookup_rcu(parent, &nd->last, &seq);
5d0f49c1
AV
1529 if (unlikely(!dentry)) {
1530 if (unlazy_walk(nd, NULL, 0))
1531 return -ECHILD;
e9742b53 1532 return 0;
5d0f49c1 1533 }
5a18fff2 1534
12f8ad4b
LT
1535 /*
1536 * This sequence count validates that the inode matches
1537 * the dentry name information from lookup.
1538 */
63afdfc7 1539 *inode = d_backing_inode(dentry);
766c4cbf 1540 negative = d_is_negative(dentry);
5d0f49c1 1541 if (unlikely(read_seqcount_retry(&dentry->d_seq, seq)))
12f8ad4b
LT
1542 return -ECHILD;
1543
1544 /*
1545 * This sequence count validates that the parent had no
1546 * changes while we did the lookup of the dentry above.
1547 *
1548 * The memory barrier in read_seqcount_begin of child is
1549 * enough, we can use __read_seqcount_retry here.
1550 */
5d0f49c1 1551 if (unlikely(__read_seqcount_retry(&parent->d_seq, nd->seq)))
31e6b01f 1552 return -ECHILD;
5a18fff2 1553
254cf582 1554 *seqp = seq;
5d0f49c1 1555 if (unlikely(dentry->d_flags & DCACHE_OP_REVALIDATE))
4ce16ef3 1556 status = d_revalidate(dentry, nd->flags);
5d0f49c1
AV
1557 if (unlikely(status <= 0)) {
1558 if (unlazy_walk(nd, dentry, seq))
1559 return -ECHILD;
1560 if (status == -ECHILD)
1561 status = d_revalidate(dentry, nd->flags);
1562 } else {
1563 /*
1564 * Note: do negative dentry check after revalidation in
1565 * case that drops it.
1566 */
1567 if (unlikely(negative))
1568 return -ENOENT;
1569 path->mnt = mnt;
1570 path->dentry = dentry;
1571 if (likely(__follow_mount_rcu(nd, path, inode, seqp)))
e9742b53 1572 return 1;
5d0f49c1
AV
1573 if (unlazy_walk(nd, dentry, seq))
1574 return -ECHILD;
24643087 1575 }
5a18fff2 1576 } else {
e97cdc87 1577 dentry = __d_lookup(parent, &nd->last);
5d0f49c1 1578 if (unlikely(!dentry))
e9742b53 1579 return 0;
5d0f49c1
AV
1580 if (unlikely(dentry->d_flags & DCACHE_OP_REVALIDATE))
1581 status = d_revalidate(dentry, nd->flags);
9875cf80 1582 }
5a18fff2 1583 if (unlikely(status <= 0)) {
e9742b53 1584 if (!status)
5d0f49c1 1585 d_invalidate(dentry);
5542aa2f 1586 dput(dentry);
5d0f49c1 1587 return status;
24643087 1588 }
766c4cbf
AV
1589 if (unlikely(d_is_negative(dentry))) {
1590 dput(dentry);
1591 return -ENOENT;
1592 }
5d0f49c1 1593
9875cf80
DH
1594 path->mnt = mnt;
1595 path->dentry = dentry;
756daf26 1596 err = follow_managed(path, nd);
e9742b53 1597 if (likely(err > 0))
63afdfc7 1598 *inode = d_backing_inode(path->dentry);
8402752e 1599 return err;
697f514d
MS
1600}
1601
1602/* Fast lookup failed, do it the slow way */
e3c13928
AV
1603static struct dentry *lookup_slow(const struct qstr *name,
1604 struct dentry *dir,
1605 unsigned int flags)
697f514d 1606{
e3c13928
AV
1607 struct dentry *dentry;
1608 inode_lock(dir->d_inode);
949a852e
AV
1609 dentry = d_lookup(dir, name);
1610 if (unlikely(dentry)) {
1611 if ((dentry->d_flags & DCACHE_OP_REVALIDATE) &&
1612 !(flags & LOOKUP_NO_REVAL)) {
1613 int error = d_revalidate(dentry, flags);
1614 if (unlikely(error <= 0)) {
1615 if (!error)
1616 d_invalidate(dentry);
1617 dput(dentry);
1618 dentry = ERR_PTR(error);
1619 }
1620 }
1621 if (dentry) {
1622 inode_unlock(dir->d_inode);
1623 return dentry;
1624 }
1625 }
1626 dentry = d_alloc(dir, name);
1627 if (unlikely(!dentry)) {
1628 inode_unlock(dir->d_inode);
1629 return ERR_PTR(-ENOMEM);
1630 }
1631 dentry = lookup_real(dir->d_inode, dentry, flags);
e3c13928
AV
1632 inode_unlock(dir->d_inode);
1633 return dentry;
1da177e4
LT
1634}
1635
52094c8a
AV
1636static inline int may_lookup(struct nameidata *nd)
1637{
1638 if (nd->flags & LOOKUP_RCU) {
4ad5abb3 1639 int err = inode_permission(nd->inode, MAY_EXEC|MAY_NOT_BLOCK);
52094c8a
AV
1640 if (err != -ECHILD)
1641 return err;
6e9918b7 1642 if (unlazy_walk(nd, NULL, 0))
52094c8a
AV
1643 return -ECHILD;
1644 }
4ad5abb3 1645 return inode_permission(nd->inode, MAY_EXEC);
52094c8a
AV
1646}
1647
9856fa1b
AV
1648static inline int handle_dots(struct nameidata *nd, int type)
1649{
1650 if (type == LAST_DOTDOT) {
9e6697e2
AV
1651 if (!nd->root.mnt)
1652 set_root(nd);
9856fa1b 1653 if (nd->flags & LOOKUP_RCU) {
70291aec 1654 return follow_dotdot_rcu(nd);
9856fa1b 1655 } else
397d425d 1656 return follow_dotdot(nd);
9856fa1b
AV
1657 }
1658 return 0;
1659}
1660
181548c0
AV
1661static int pick_link(struct nameidata *nd, struct path *link,
1662 struct inode *inode, unsigned seq)
d63ff28f 1663{
626de996 1664 int error;
1cf2665b 1665 struct saved *last;
756daf26 1666 if (unlikely(nd->total_link_count++ >= MAXSYMLINKS)) {
626de996
AV
1667 path_to_nameidata(link, nd);
1668 return -ELOOP;
1669 }
bc40aee0 1670 if (!(nd->flags & LOOKUP_RCU)) {
7973387a
AV
1671 if (link->mnt == nd->path.mnt)
1672 mntget(link->mnt);
d63ff28f 1673 }
626de996
AV
1674 error = nd_alloc_stack(nd);
1675 if (unlikely(error)) {
bc40aee0
AV
1676 if (error == -ECHILD) {
1677 if (unlikely(unlazy_link(nd, link, seq)))
1678 return -ECHILD;
1679 error = nd_alloc_stack(nd);
1680 }
1681 if (error) {
1682 path_put(link);
1683 return error;
1684 }
626de996
AV
1685 }
1686
ab104923 1687 last = nd->stack + nd->depth++;
1cf2665b 1688 last->link = *link;
fceef393
AV
1689 clear_delayed_call(&last->done);
1690 nd->link_inode = inode;
0450b2d1 1691 last->seq = seq;
d63ff28f
AV
1692 return 1;
1693}
1694
3ddcd056
LT
1695/*
1696 * Do we need to follow links? We _really_ want to be able
1697 * to do this check without having to look at inode->i_op,
1698 * so we keep a cache of "no, this doesn't need follow_link"
1699 * for the common case.
1700 */
254cf582 1701static inline int should_follow_link(struct nameidata *nd, struct path *link,
181548c0
AV
1702 int follow,
1703 struct inode *inode, unsigned seq)
3ddcd056 1704{
d63ff28f
AV
1705 if (likely(!d_is_symlink(link->dentry)))
1706 return 0;
1707 if (!follow)
1708 return 0;
a7f77542
AV
1709 /* make sure that d_is_symlink above matches inode */
1710 if (nd->flags & LOOKUP_RCU) {
1711 if (read_seqcount_retry(&link->dentry->d_seq, seq))
1712 return -ECHILD;
1713 }
181548c0 1714 return pick_link(nd, link, inode, seq);
3ddcd056
LT
1715}
1716
4693a547
AV
1717enum {WALK_GET = 1, WALK_PUT = 2};
1718
1719static int walk_component(struct nameidata *nd, int flags)
ce57dfc1 1720{
caa85634 1721 struct path path;
ce57dfc1 1722 struct inode *inode;
254cf582 1723 unsigned seq;
ce57dfc1
AV
1724 int err;
1725 /*
1726 * "." and ".." are special - ".." especially so because it has
1727 * to be able to know about the current root directory and
1728 * parent relationships.
1729 */
4693a547
AV
1730 if (unlikely(nd->last_type != LAST_NORM)) {
1731 err = handle_dots(nd, nd->last_type);
1732 if (flags & WALK_PUT)
1733 put_link(nd);
1734 return err;
1735 }
254cf582 1736 err = lookup_fast(nd, &path, &inode, &seq);
e9742b53 1737 if (unlikely(err <= 0)) {
697f514d 1738 if (err < 0)
f0a9ba70 1739 return err;
e3c13928
AV
1740 path.dentry = lookup_slow(&nd->last, nd->path.dentry,
1741 nd->flags);
1742 if (IS_ERR(path.dentry))
1743 return PTR_ERR(path.dentry);
7500c38a 1744
e3c13928
AV
1745 path.mnt = nd->path.mnt;
1746 err = follow_managed(&path, nd);
1747 if (unlikely(err < 0))
f0a9ba70 1748 return err;
697f514d 1749
7500c38a
AV
1750 if (unlikely(d_is_negative(path.dentry))) {
1751 path_to_nameidata(&path, nd);
1752 return -ENOENT;
1753 }
1754
254cf582 1755 seq = 0; /* we are already out of RCU mode */
d4565649 1756 inode = d_backing_inode(path.dentry);
ce57dfc1 1757 }
697f514d 1758
4693a547
AV
1759 if (flags & WALK_PUT)
1760 put_link(nd);
181548c0 1761 err = should_follow_link(nd, &path, flags & WALK_GET, inode, seq);
d63ff28f
AV
1762 if (unlikely(err))
1763 return err;
caa85634 1764 path_to_nameidata(&path, nd);
ce57dfc1 1765 nd->inode = inode;
254cf582 1766 nd->seq = seq;
ce57dfc1
AV
1767 return 0;
1768}
1769
bfcfaa77
LT
1770/*
1771 * We can do the critical dentry name comparison and hashing
1772 * operations one word at a time, but we are limited to:
1773 *
1774 * - Architectures with fast unaligned word accesses. We could
1775 * do a "get_unaligned()" if this helps and is sufficiently
1776 * fast.
1777 *
bfcfaa77
LT
1778 * - non-CONFIG_DEBUG_PAGEALLOC configurations (so that we
1779 * do not trap on the (extremely unlikely) case of a page
1780 * crossing operation.
1781 *
1782 * - Furthermore, we need an efficient 64-bit compile for the
1783 * 64-bit case in order to generate the "number of bytes in
1784 * the final mask". Again, that could be replaced with a
1785 * efficient population count instruction or similar.
1786 */
1787#ifdef CONFIG_DCACHE_WORD_ACCESS
1788
f68e556e 1789#include <asm/word-at-a-time.h>
bfcfaa77 1790
f68e556e 1791#ifdef CONFIG_64BIT
2a18da7a
GS
1792/*
1793 * Register pressure in the mixing function is an issue, particularly
1794 * on 32-bit x86, but almost any function requires one state value and
1795 * one temporary. Instead, use a function designed for two state values
1796 * and no temporaries.
1797 *
1798 * This function cannot create a collision in only two iterations, so
1799 * we have two iterations to achieve avalanche. In those two iterations,
1800 * we have six layers of mixing, which is enough to spread one bit's
1801 * influence out to 2^6 = 64 state bits.
1802 *
1803 * Rotate constants are scored by considering either 64 one-bit input
1804 * deltas or 64*63/2 = 2016 two-bit input deltas, and finding the
1805 * probability of that delta causing a change to each of the 128 output
1806 * bits, using a sample of random initial states.
1807 *
1808 * The Shannon entropy of the computed probabilities is then summed
1809 * to produce a score. Ideally, any input change has a 50% chance of
1810 * toggling any given output bit.
1811 *
1812 * Mixing scores (in bits) for (12,45):
1813 * Input delta: 1-bit 2-bit
1814 * 1 round: 713.3 42542.6
1815 * 2 rounds: 2753.7 140389.8
1816 * 3 rounds: 5954.1 233458.2
1817 * 4 rounds: 7862.6 256672.2
1818 * Perfect: 8192 258048
1819 * (64*128) (64*63/2 * 128)
1820 */
1821#define HASH_MIX(x, y, a) \
1822 ( x ^= (a), \
1823 y ^= x, x = rol64(x,12),\
1824 x += y, y = rol64(y,45),\
1825 y *= 9 )
bfcfaa77 1826
0fed3ac8 1827/*
2a18da7a
GS
1828 * Fold two longs into one 32-bit hash value. This must be fast, but
1829 * latency isn't quite as critical, as there is a fair bit of additional
1830 * work done before the hash value is used.
0fed3ac8 1831 */
2a18da7a 1832static inline unsigned int fold_hash(unsigned long x, unsigned long y)
0fed3ac8 1833{
2a18da7a
GS
1834 y ^= x * GOLDEN_RATIO_64;
1835 y *= GOLDEN_RATIO_64;
1836 return y >> 32;
0fed3ac8
GS
1837}
1838
bfcfaa77
LT
1839#else /* 32-bit case */
1840
2a18da7a
GS
1841/*
1842 * Mixing scores (in bits) for (7,20):
1843 * Input delta: 1-bit 2-bit
1844 * 1 round: 330.3 9201.6
1845 * 2 rounds: 1246.4 25475.4
1846 * 3 rounds: 1907.1 31295.1
1847 * 4 rounds: 2042.3 31718.6
1848 * Perfect: 2048 31744
1849 * (32*64) (32*31/2 * 64)
1850 */
1851#define HASH_MIX(x, y, a) \
1852 ( x ^= (a), \
1853 y ^= x, x = rol32(x, 7),\
1854 x += y, y = rol32(y,20),\
1855 y *= 9 )
bfcfaa77 1856
2a18da7a 1857static inline unsigned int fold_hash(unsigned long x, unsigned long y)
0fed3ac8 1858{
2a18da7a
GS
1859 /* Use arch-optimized multiply if one exists */
1860 return __hash_32(y ^ __hash_32(x));
0fed3ac8
GS
1861}
1862
bfcfaa77
LT
1863#endif
1864
2a18da7a
GS
1865/*
1866 * Return the hash of a string of known length. This is carfully
1867 * designed to match hash_name(), which is the more critical function.
1868 * In particular, we must end by hashing a final word containing 0..7
1869 * payload bytes, to match the way that hash_name() iterates until it
1870 * finds the delimiter after the name.
1871 */
fcfd2fbf 1872unsigned int full_name_hash(const char *name, unsigned int len)
bfcfaa77 1873{
2a18da7a 1874 unsigned long a, x = 0, y = 0;
bfcfaa77
LT
1875
1876 for (;;) {
fcfd2fbf
GS
1877 if (!len)
1878 goto done;
e419b4cc 1879 a = load_unaligned_zeropad(name);
bfcfaa77
LT
1880 if (len < sizeof(unsigned long))
1881 break;
2a18da7a 1882 HASH_MIX(x, y, a);
bfcfaa77
LT
1883 name += sizeof(unsigned long);
1884 len -= sizeof(unsigned long);
bfcfaa77 1885 }
2a18da7a 1886 x ^= a & bytemask_from_count(len);
bfcfaa77 1887done:
2a18da7a 1888 return fold_hash(x, y);
bfcfaa77
LT
1889}
1890EXPORT_SYMBOL(full_name_hash);
1891
fcfd2fbf
GS
1892/* Return the "hash_len" (hash and length) of a null-terminated string */
1893u64 hashlen_string(const char *name)
1894{
2a18da7a 1895 unsigned long a = 0, x = 0, y = 0, adata, mask, len;
fcfd2fbf
GS
1896 const struct word_at_a_time constants = WORD_AT_A_TIME_CONSTANTS;
1897
fcfd2fbf
GS
1898 len = -sizeof(unsigned long);
1899 do {
2a18da7a 1900 HASH_MIX(x, y, a);
fcfd2fbf
GS
1901 len += sizeof(unsigned long);
1902 a = load_unaligned_zeropad(name+len);
1903 } while (!has_zero(a, &adata, &constants));
1904
1905 adata = prep_zero_mask(a, adata, &constants);
1906 mask = create_zero_mask(adata);
2a18da7a 1907 x ^= a & zero_bytemask(mask);
fcfd2fbf 1908
2a18da7a 1909 return hashlen_create(fold_hash(x, y), len + find_zero(mask));
fcfd2fbf
GS
1910}
1911EXPORT_SYMBOL(hashlen_string);
1912
bfcfaa77
LT
1913/*
1914 * Calculate the length and hash of the path component, and
d6bb3e90 1915 * return the "hash_len" as the result.
bfcfaa77 1916 */
d6bb3e90 1917static inline u64 hash_name(const char *name)
bfcfaa77 1918{
2a18da7a 1919 unsigned long a = 0, b, x = 0, y = 0, adata, bdata, mask, len;
36126f8f 1920 const struct word_at_a_time constants = WORD_AT_A_TIME_CONSTANTS;
bfcfaa77 1921
bfcfaa77
LT
1922 len = -sizeof(unsigned long);
1923 do {
2a18da7a 1924 HASH_MIX(x, y, a);
bfcfaa77 1925 len += sizeof(unsigned long);
e419b4cc 1926 a = load_unaligned_zeropad(name+len);
36126f8f
LT
1927 b = a ^ REPEAT_BYTE('/');
1928 } while (!(has_zero(a, &adata, &constants) | has_zero(b, &bdata, &constants)));
1929
1930 adata = prep_zero_mask(a, adata, &constants);
1931 bdata = prep_zero_mask(b, bdata, &constants);
36126f8f 1932 mask = create_zero_mask(adata | bdata);
2a18da7a 1933 x ^= a & zero_bytemask(mask);
36126f8f 1934
2a18da7a 1935 return hashlen_create(fold_hash(x, y), len + find_zero(mask));
bfcfaa77
LT
1936}
1937
2a18da7a 1938#else /* !CONFIG_DCACHE_WORD_ACCESS: Slow, byte-at-a-time version */
bfcfaa77 1939
fcfd2fbf
GS
1940/* Return the hash of a string of known length */
1941unsigned int full_name_hash(const char *name, unsigned int len)
0145acc2
LT
1942{
1943 unsigned long hash = init_name_hash();
1944 while (len--)
fcfd2fbf 1945 hash = partial_name_hash((unsigned char)*name++, hash);
0145acc2
LT
1946 return end_name_hash(hash);
1947}
ae942ae7 1948EXPORT_SYMBOL(full_name_hash);
0145acc2 1949
fcfd2fbf
GS
1950/* Return the "hash_len" (hash and length) of a null-terminated string */
1951u64 hash_string(const char *name)
1952{
1953 unsigned long hash = init_name_hash();
1954 unsigned long len = 0, c;
1955
1956 c = (unsigned char)*name;
1957 do {
1958 len++;
1959 hash = partial_name_hash(c, hash);
1960 c = (unsigned char)name[len];
1961 } while (c);
1962 return hashlen_create(end_name_hash(hash), len);
1963}
1964EXPORT_SYMBOL(hash_string);
1965
200e9ef7
LT
1966/*
1967 * We know there's a real path component here of at least
1968 * one character.
1969 */
d6bb3e90 1970static inline u64 hash_name(const char *name)
200e9ef7
LT
1971{
1972 unsigned long hash = init_name_hash();
1973 unsigned long len = 0, c;
1974
1975 c = (unsigned char)*name;
1976 do {
1977 len++;
1978 hash = partial_name_hash(c, hash);
1979 c = (unsigned char)name[len];
1980 } while (c && c != '/');
d6bb3e90 1981 return hashlen_create(end_name_hash(hash), len);
200e9ef7
LT
1982}
1983
bfcfaa77
LT
1984#endif
1985
1da177e4
LT
1986/*
1987 * Name resolution.
ea3834d9
PM
1988 * This is the basic name resolution function, turning a pathname into
1989 * the final dentry. We expect 'base' to be positive and a directory.
1da177e4 1990 *
ea3834d9
PM
1991 * Returns 0 and nd will have valid dentry and mnt on success.
1992 * Returns error and drops reference to input namei data on failure.
1da177e4 1993 */
6de88d72 1994static int link_path_walk(const char *name, struct nameidata *nd)
1da177e4 1995{
1da177e4 1996 int err;
32cd7468 1997
1da177e4
LT
1998 while (*name=='/')
1999 name++;
2000 if (!*name)
9e18f10a 2001 return 0;
1da177e4 2002
1da177e4
LT
2003 /* At this point we know we have a real path component. */
2004 for(;;) {
d6bb3e90 2005 u64 hash_len;
fe479a58 2006 int type;
1da177e4 2007
52094c8a 2008 err = may_lookup(nd);
2a18da7a 2009 if (err)
3595e234 2010 return err;
1da177e4 2011
d6bb3e90 2012 hash_len = hash_name(name);
1da177e4 2013
fe479a58 2014 type = LAST_NORM;
d6bb3e90 2015 if (name[0] == '.') switch (hashlen_len(hash_len)) {
fe479a58 2016 case 2:
200e9ef7 2017 if (name[1] == '.') {
fe479a58 2018 type = LAST_DOTDOT;
16c2cd71
AV
2019 nd->flags |= LOOKUP_JUMPED;
2020 }
fe479a58
AV
2021 break;
2022 case 1:
2023 type = LAST_DOT;
2024 }
5a202bcd
AV
2025 if (likely(type == LAST_NORM)) {
2026 struct dentry *parent = nd->path.dentry;
16c2cd71 2027 nd->flags &= ~LOOKUP_JUMPED;
5a202bcd 2028 if (unlikely(parent->d_flags & DCACHE_OP_HASH)) {
a060dc50 2029 struct qstr this = { { .hash_len = hash_len }, .name = name };
da53be12 2030 err = parent->d_op->d_hash(parent, &this);
5a202bcd 2031 if (err < 0)
3595e234 2032 return err;
d6bb3e90
LT
2033 hash_len = this.hash_len;
2034 name = this.name;
5a202bcd
AV
2035 }
2036 }
fe479a58 2037
d6bb3e90
LT
2038 nd->last.hash_len = hash_len;
2039 nd->last.name = name;
5f4a6a69
AV
2040 nd->last_type = type;
2041
d6bb3e90
LT
2042 name += hashlen_len(hash_len);
2043 if (!*name)
bdf6cbf1 2044 goto OK;
200e9ef7
LT
2045 /*
2046 * If it wasn't NUL, we know it was '/'. Skip that
2047 * slash, and continue until no more slashes.
2048 */
2049 do {
d6bb3e90
LT
2050 name++;
2051 } while (unlikely(*name == '/'));
8620c238
AV
2052 if (unlikely(!*name)) {
2053OK:
368ee9ba 2054 /* pathname body, done */
8620c238
AV
2055 if (!nd->depth)
2056 return 0;
2057 name = nd->stack[nd->depth - 1].name;
368ee9ba 2058 /* trailing symlink, done */
8620c238
AV
2059 if (!name)
2060 return 0;
2061 /* last component of nested symlink */
4693a547 2062 err = walk_component(nd, WALK_GET | WALK_PUT);
8620c238 2063 } else {
4693a547 2064 err = walk_component(nd, WALK_GET);
8620c238 2065 }
ce57dfc1 2066 if (err < 0)
3595e234 2067 return err;
1da177e4 2068
ce57dfc1 2069 if (err) {
626de996 2070 const char *s = get_link(nd);
5a460275 2071
a1c83681 2072 if (IS_ERR(s))
3595e234 2073 return PTR_ERR(s);
d40bcc09
AV
2074 err = 0;
2075 if (unlikely(!s)) {
2076 /* jumped */
b9ff4429 2077 put_link(nd);
d40bcc09 2078 } else {
fab51e8a
AV
2079 nd->stack[nd->depth - 1].name = name;
2080 name = s;
2081 continue;
d40bcc09 2082 }
31e6b01f 2083 }
97242f99
AV
2084 if (unlikely(!d_can_lookup(nd->path.dentry))) {
2085 if (nd->flags & LOOKUP_RCU) {
2086 if (unlazy_walk(nd, NULL, 0))
2087 return -ECHILD;
2088 }
3595e234 2089 return -ENOTDIR;
97242f99 2090 }
1da177e4 2091 }
1da177e4
LT
2092}
2093
c8a53ee5 2094static const char *path_init(struct nameidata *nd, unsigned flags)
31e6b01f
NP
2095{
2096 int retval = 0;
c8a53ee5 2097 const char *s = nd->name->name;
31e6b01f
NP
2098
2099 nd->last_type = LAST_ROOT; /* if there are only slashes... */
980f3ea2 2100 nd->flags = flags | LOOKUP_JUMPED | LOOKUP_PARENT;
31e6b01f 2101 nd->depth = 0;
5b6ca027 2102 if (flags & LOOKUP_ROOT) {
b18825a7
DH
2103 struct dentry *root = nd->root.dentry;
2104 struct inode *inode = root->d_inode;
fd2f7cb5 2105 if (*s) {
44b1d530 2106 if (!d_can_lookup(root))
368ee9ba 2107 return ERR_PTR(-ENOTDIR);
73d049a4
AV
2108 retval = inode_permission(inode, MAY_EXEC);
2109 if (retval)
368ee9ba 2110 return ERR_PTR(retval);
73d049a4 2111 }
5b6ca027
AV
2112 nd->path = nd->root;
2113 nd->inode = inode;
2114 if (flags & LOOKUP_RCU) {
8b61e74f 2115 rcu_read_lock();
5b6ca027 2116 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
8f47a016 2117 nd->root_seq = nd->seq;
48a066e7 2118 nd->m_seq = read_seqbegin(&mount_lock);
5b6ca027
AV
2119 } else {
2120 path_get(&nd->path);
2121 }
368ee9ba 2122 return s;
5b6ca027
AV
2123 }
2124
31e6b01f 2125 nd->root.mnt = NULL;
248fb5b9
AV
2126 nd->path.mnt = NULL;
2127 nd->path.dentry = NULL;
31e6b01f 2128
48a066e7 2129 nd->m_seq = read_seqbegin(&mount_lock);
fd2f7cb5 2130 if (*s == '/') {
9e6697e2 2131 if (flags & LOOKUP_RCU)
8b61e74f 2132 rcu_read_lock();
9e6697e2 2133 set_root(nd);
248fb5b9 2134 if (likely(!nd_jump_root(nd)))
ef55d917 2135 return s;
248fb5b9 2136 nd->root.mnt = NULL;
ef55d917
AV
2137 rcu_read_unlock();
2138 return ERR_PTR(-ECHILD);
c8a53ee5 2139 } else if (nd->dfd == AT_FDCWD) {
e41f7d4e
AV
2140 if (flags & LOOKUP_RCU) {
2141 struct fs_struct *fs = current->fs;
2142 unsigned seq;
31e6b01f 2143
8b61e74f 2144 rcu_read_lock();
c28cc364 2145
e41f7d4e
AV
2146 do {
2147 seq = read_seqcount_begin(&fs->seq);
2148 nd->path = fs->pwd;
ef55d917 2149 nd->inode = nd->path.dentry->d_inode;
e41f7d4e
AV
2150 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
2151 } while (read_seqcount_retry(&fs->seq, seq));
2152 } else {
2153 get_fs_pwd(current->fs, &nd->path);
ef55d917 2154 nd->inode = nd->path.dentry->d_inode;
e41f7d4e 2155 }
ef55d917 2156 return s;
31e6b01f 2157 } else {
582aa64a 2158 /* Caller must check execute permissions on the starting path component */
c8a53ee5 2159 struct fd f = fdget_raw(nd->dfd);
31e6b01f
NP
2160 struct dentry *dentry;
2161
2903ff01 2162 if (!f.file)
368ee9ba 2163 return ERR_PTR(-EBADF);
31e6b01f 2164
2903ff01 2165 dentry = f.file->f_path.dentry;
31e6b01f 2166
fd2f7cb5 2167 if (*s) {
44b1d530 2168 if (!d_can_lookup(dentry)) {
2903ff01 2169 fdput(f);
368ee9ba 2170 return ERR_PTR(-ENOTDIR);
2903ff01 2171 }
f52e0c11 2172 }
31e6b01f 2173
2903ff01 2174 nd->path = f.file->f_path;
e41f7d4e 2175 if (flags & LOOKUP_RCU) {
8b61e74f 2176 rcu_read_lock();
34a26b99
AV
2177 nd->inode = nd->path.dentry->d_inode;
2178 nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq);
e41f7d4e 2179 } else {
2903ff01 2180 path_get(&nd->path);
34a26b99 2181 nd->inode = nd->path.dentry->d_inode;
e41f7d4e 2182 }
34a26b99 2183 fdput(f);
368ee9ba 2184 return s;
31e6b01f 2185 }
9b4a9b14
AV
2186}
2187
3bdba28b 2188static const char *trailing_symlink(struct nameidata *nd)
95fa25d9
AV
2189{
2190 const char *s;
fec2fa24 2191 int error = may_follow_link(nd);
deb106c6 2192 if (unlikely(error))
3bdba28b 2193 return ERR_PTR(error);
95fa25d9 2194 nd->flags |= LOOKUP_PARENT;
fab51e8a 2195 nd->stack[0].name = NULL;
3b2e7f75 2196 s = get_link(nd);
deb106c6 2197 return s ? s : "";
95fa25d9
AV
2198}
2199
caa85634 2200static inline int lookup_last(struct nameidata *nd)
bd92d7fe
AV
2201{
2202 if (nd->last_type == LAST_NORM && nd->last.name[nd->last.len])
2203 nd->flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
2204
2205 nd->flags &= ~LOOKUP_PARENT;
deb106c6 2206 return walk_component(nd,
4693a547
AV
2207 nd->flags & LOOKUP_FOLLOW
2208 ? nd->depth
2209 ? WALK_PUT | WALK_GET
2210 : WALK_GET
2211 : 0);
bd92d7fe
AV
2212}
2213
9b4a9b14 2214/* Returns 0 and nd will be valid on success; Retuns error, otherwise. */
c8a53ee5 2215static int path_lookupat(struct nameidata *nd, unsigned flags, struct path *path)
9b4a9b14 2216{
c8a53ee5 2217 const char *s = path_init(nd, flags);
bd92d7fe 2218 int err;
31e6b01f 2219
368ee9ba
AV
2220 if (IS_ERR(s))
2221 return PTR_ERR(s);
3bdba28b
AV
2222 while (!(err = link_path_walk(s, nd))
2223 && ((err = lookup_last(nd)) > 0)) {
2224 s = trailing_symlink(nd);
2225 if (IS_ERR(s)) {
2226 err = PTR_ERR(s);
2227 break;
bd92d7fe
AV
2228 }
2229 }
9f1fafee
AV
2230 if (!err)
2231 err = complete_walk(nd);
bd92d7fe 2232
deb106c6
AV
2233 if (!err && nd->flags & LOOKUP_DIRECTORY)
2234 if (!d_can_lookup(nd->path.dentry))
bd23a539 2235 err = -ENOTDIR;
625b6d10
AV
2236 if (!err) {
2237 *path = nd->path;
2238 nd->path.mnt = NULL;
2239 nd->path.dentry = NULL;
2240 }
2241 terminate_walk(nd);
bd92d7fe 2242 return err;
ee0827cd 2243}
31e6b01f 2244
625b6d10 2245static int filename_lookup(int dfd, struct filename *name, unsigned flags,
9ad1aaa6 2246 struct path *path, struct path *root)
ee0827cd 2247{
894bc8c4 2248 int retval;
9883d185 2249 struct nameidata nd;
abc9f5be
AV
2250 if (IS_ERR(name))
2251 return PTR_ERR(name);
9ad1aaa6
AV
2252 if (unlikely(root)) {
2253 nd.root = *root;
2254 flags |= LOOKUP_ROOT;
2255 }
9883d185 2256 set_nameidata(&nd, dfd, name);
c8a53ee5 2257 retval = path_lookupat(&nd, flags | LOOKUP_RCU, path);
ee0827cd 2258 if (unlikely(retval == -ECHILD))
c8a53ee5 2259 retval = path_lookupat(&nd, flags, path);
ee0827cd 2260 if (unlikely(retval == -ESTALE))
c8a53ee5 2261 retval = path_lookupat(&nd, flags | LOOKUP_REVAL, path);
31e6b01f 2262
f78570dd 2263 if (likely(!retval))
625b6d10 2264 audit_inode(name, path->dentry, flags & LOOKUP_PARENT);
9883d185 2265 restore_nameidata();
e4bd1c1a 2266 putname(name);
170aa3d0 2267 return retval;
1da177e4
LT
2268}
2269
8bcb77fa 2270/* Returns 0 and nd will be valid on success; Retuns error, otherwise. */
c8a53ee5 2271static int path_parentat(struct nameidata *nd, unsigned flags,
391172c4 2272 struct path *parent)
8bcb77fa 2273{
c8a53ee5 2274 const char *s = path_init(nd, flags);
368ee9ba
AV
2275 int err;
2276 if (IS_ERR(s))
2277 return PTR_ERR(s);
2278 err = link_path_walk(s, nd);
8bcb77fa
AV
2279 if (!err)
2280 err = complete_walk(nd);
391172c4
AV
2281 if (!err) {
2282 *parent = nd->path;
2283 nd->path.mnt = NULL;
2284 nd->path.dentry = NULL;
2285 }
2286 terminate_walk(nd);
8bcb77fa
AV
2287 return err;
2288}
2289
5c31b6ce 2290static struct filename *filename_parentat(int dfd, struct filename *name,
391172c4
AV
2291 unsigned int flags, struct path *parent,
2292 struct qstr *last, int *type)
8bcb77fa
AV
2293{
2294 int retval;
9883d185 2295 struct nameidata nd;
8bcb77fa 2296
5c31b6ce
AV
2297 if (IS_ERR(name))
2298 return name;
9883d185 2299 set_nameidata(&nd, dfd, name);
c8a53ee5 2300 retval = path_parentat(&nd, flags | LOOKUP_RCU, parent);
8bcb77fa 2301 if (unlikely(retval == -ECHILD))
c8a53ee5 2302 retval = path_parentat(&nd, flags, parent);
8bcb77fa 2303 if (unlikely(retval == -ESTALE))
c8a53ee5 2304 retval = path_parentat(&nd, flags | LOOKUP_REVAL, parent);
391172c4
AV
2305 if (likely(!retval)) {
2306 *last = nd.last;
2307 *type = nd.last_type;
2308 audit_inode(name, parent->dentry, LOOKUP_PARENT);
5c31b6ce
AV
2309 } else {
2310 putname(name);
2311 name = ERR_PTR(retval);
391172c4 2312 }
9883d185 2313 restore_nameidata();
5c31b6ce 2314 return name;
8bcb77fa
AV
2315}
2316
79714f72
AV
2317/* does lookup, returns the object with parent locked */
2318struct dentry *kern_path_locked(const char *name, struct path *path)
5590ff0d 2319{
5c31b6ce
AV
2320 struct filename *filename;
2321 struct dentry *d;
391172c4
AV
2322 struct qstr last;
2323 int type;
51689104 2324
5c31b6ce
AV
2325 filename = filename_parentat(AT_FDCWD, getname_kernel(name), 0, path,
2326 &last, &type);
51689104
PM
2327 if (IS_ERR(filename))
2328 return ERR_CAST(filename);
5c31b6ce 2329 if (unlikely(type != LAST_NORM)) {
391172c4 2330 path_put(path);
5c31b6ce
AV
2331 putname(filename);
2332 return ERR_PTR(-EINVAL);
79714f72 2333 }
5955102c 2334 inode_lock_nested(path->dentry->d_inode, I_MUTEX_PARENT);
391172c4 2335 d = __lookup_hash(&last, path->dentry, 0);
79714f72 2336 if (IS_ERR(d)) {
5955102c 2337 inode_unlock(path->dentry->d_inode);
391172c4 2338 path_put(path);
79714f72 2339 }
51689104 2340 putname(filename);
79714f72 2341 return d;
5590ff0d
UD
2342}
2343
d1811465
AV
2344int kern_path(const char *name, unsigned int flags, struct path *path)
2345{
abc9f5be
AV
2346 return filename_lookup(AT_FDCWD, getname_kernel(name),
2347 flags, path, NULL);
d1811465 2348}
4d359507 2349EXPORT_SYMBOL(kern_path);
d1811465 2350
16f18200
JJS
2351/**
2352 * vfs_path_lookup - lookup a file path relative to a dentry-vfsmount pair
2353 * @dentry: pointer to dentry of the base directory
2354 * @mnt: pointer to vfs mount of the base directory
2355 * @name: pointer to file name
2356 * @flags: lookup flags
e0a01249 2357 * @path: pointer to struct path to fill
16f18200
JJS
2358 */
2359int vfs_path_lookup(struct dentry *dentry, struct vfsmount *mnt,
2360 const char *name, unsigned int flags,
e0a01249 2361 struct path *path)
16f18200 2362{
9ad1aaa6 2363 struct path root = {.mnt = mnt, .dentry = dentry};
9ad1aaa6 2364 /* the first argument of filename_lookup() is ignored with root */
abc9f5be
AV
2365 return filename_lookup(AT_FDCWD, getname_kernel(name),
2366 flags , path, &root);
16f18200 2367}
4d359507 2368EXPORT_SYMBOL(vfs_path_lookup);
16f18200 2369
3c9fe8cd
MS
2370/**
2371 * lookup_hash - lookup single pathname component on already hashed name
2372 * @name: name and hash to lookup
2373 * @base: base directory to lookup from
2374 *
2375 * The name must have been verified and hashed (see lookup_one_len()). Using
2376 * this after just full_name_hash() is unsafe.
2377 *
2378 * This function also doesn't check for search permission on base directory.
2379 *
2380 * Use lookup_one_len_unlocked() instead, unless you really know what you are
2381 * doing.
2382 *
2383 * Do not hold i_mutex; this helper takes i_mutex if necessary.
2384 */
2385struct dentry *lookup_hash(const struct qstr *name, struct dentry *base)
2386{
2387 struct dentry *ret;
2388
2389 ret = lookup_dcache(name, base, 0);
2390 if (!ret)
2391 ret = lookup_slow(name, base, 0);
2392
2393 return ret;
2394}
2395EXPORT_SYMBOL(lookup_hash);
2396
eead1911 2397/**
a6b91919 2398 * lookup_one_len - filesystem helper to lookup single pathname component
eead1911
CH
2399 * @name: pathname component to lookup
2400 * @base: base directory to lookup from
2401 * @len: maximum length @len should be interpreted to
2402 *
a6b91919 2403 * Note that this routine is purely a helper for filesystem usage and should
9e7543e9 2404 * not be called by generic code.
bbddca8e
N
2405 *
2406 * The caller must hold base->i_mutex.
eead1911 2407 */
057f6c01
JM
2408struct dentry *lookup_one_len(const char *name, struct dentry *base, int len)
2409{
057f6c01 2410 struct qstr this;
6a96ba54 2411 unsigned int c;
cda309de 2412 int err;
057f6c01 2413
5955102c 2414 WARN_ON_ONCE(!inode_is_locked(base->d_inode));
2f9092e1 2415
6a96ba54
AV
2416 this.name = name;
2417 this.len = len;
0145acc2 2418 this.hash = full_name_hash(name, len);
6a96ba54
AV
2419 if (!len)
2420 return ERR_PTR(-EACCES);
2421
21d8a15a
AV
2422 if (unlikely(name[0] == '.')) {
2423 if (len < 2 || (len == 2 && name[1] == '.'))
2424 return ERR_PTR(-EACCES);
2425 }
2426
6a96ba54
AV
2427 while (len--) {
2428 c = *(const unsigned char *)name++;
2429 if (c == '/' || c == '\0')
2430 return ERR_PTR(-EACCES);
6a96ba54 2431 }
5a202bcd
AV
2432 /*
2433 * See if the low-level filesystem might want
2434 * to use its own hash..
2435 */
2436 if (base->d_flags & DCACHE_OP_HASH) {
da53be12 2437 int err = base->d_op->d_hash(base, &this);
5a202bcd
AV
2438 if (err < 0)
2439 return ERR_PTR(err);
2440 }
eead1911 2441
cda309de
MS
2442 err = inode_permission(base->d_inode, MAY_EXEC);
2443 if (err)
2444 return ERR_PTR(err);
2445
72bd866a 2446 return __lookup_hash(&this, base, 0);
057f6c01 2447}
4d359507 2448EXPORT_SYMBOL(lookup_one_len);
057f6c01 2449
bbddca8e
N
2450/**
2451 * lookup_one_len_unlocked - filesystem helper to lookup single pathname component
2452 * @name: pathname component to lookup
2453 * @base: base directory to lookup from
2454 * @len: maximum length @len should be interpreted to
2455 *
2456 * Note that this routine is purely a helper for filesystem usage and should
2457 * not be called by generic code.
2458 *
2459 * Unlike lookup_one_len, it should be called without the parent
2460 * i_mutex held, and will take the i_mutex itself if necessary.
2461 */
2462struct dentry *lookup_one_len_unlocked(const char *name,
2463 struct dentry *base, int len)
2464{
2465 struct qstr this;
2466 unsigned int c;
2467 int err;
bbddca8e
N
2468
2469 this.name = name;
2470 this.len = len;
2471 this.hash = full_name_hash(name, len);
2472 if (!len)
2473 return ERR_PTR(-EACCES);
2474
2475 if (unlikely(name[0] == '.')) {
2476 if (len < 2 || (len == 2 && name[1] == '.'))
2477 return ERR_PTR(-EACCES);
2478 }
2479
2480 while (len--) {
2481 c = *(const unsigned char *)name++;
2482 if (c == '/' || c == '\0')
2483 return ERR_PTR(-EACCES);
2484 }
2485 /*
2486 * See if the low-level filesystem might want
2487 * to use its own hash..
2488 */
2489 if (base->d_flags & DCACHE_OP_HASH) {
2490 int err = base->d_op->d_hash(base, &this);
2491 if (err < 0)
2492 return ERR_PTR(err);
2493 }
2494
2495 err = inode_permission(base->d_inode, MAY_EXEC);
2496 if (err)
2497 return ERR_PTR(err);
2498
3c9fe8cd 2499 return lookup_hash(&this, base);
bbddca8e
N
2500}
2501EXPORT_SYMBOL(lookup_one_len_unlocked);
2502
1fa1e7f6
AW
2503int user_path_at_empty(int dfd, const char __user *name, unsigned flags,
2504 struct path *path, int *empty)
1da177e4 2505{
abc9f5be
AV
2506 return filename_lookup(dfd, getname_flags(name, flags, empty),
2507 flags, path, NULL);
1da177e4 2508}
b853a161 2509EXPORT_SYMBOL(user_path_at_empty);
1fa1e7f6 2510
873f1eed
JL
2511/*
2512 * NB: most callers don't do anything directly with the reference to the
2513 * to struct filename, but the nd->last pointer points into the name string
2514 * allocated by getname. So we must hold the reference to it until all
2515 * path-walking is complete.
2516 */
a2ec4a2d 2517static inline struct filename *
f5beed75
AV
2518user_path_parent(int dfd, const char __user *path,
2519 struct path *parent,
2520 struct qstr *last,
2521 int *type,
9e790bd6 2522 unsigned int flags)
2ad94ae6 2523{
9e790bd6 2524 /* only LOOKUP_REVAL is allowed in extra flags */
5c31b6ce
AV
2525 return filename_parentat(dfd, getname(path), flags & LOOKUP_REVAL,
2526 parent, last, type);
2ad94ae6
AV
2527}
2528
8033426e 2529/**
197df04c 2530 * mountpoint_last - look up last component for umount
8033426e
JL
2531 * @nd: pathwalk nameidata - currently pointing at parent directory of "last"
2532 * @path: pointer to container for result
2533 *
2534 * This is a special lookup_last function just for umount. In this case, we
2535 * need to resolve the path without doing any revalidation.
2536 *
2537 * The nameidata should be the result of doing a LOOKUP_PARENT pathwalk. Since
2538 * mountpoints are always pinned in the dcache, their ancestors are too. Thus,
2539 * in almost all cases, this lookup will be served out of the dcache. The only
2540 * cases where it won't are if nd->last refers to a symlink or the path is
2541 * bogus and it doesn't exist.
2542 *
2543 * Returns:
2544 * -error: if there was an error during lookup. This includes -ENOENT if the
2545 * lookup found a negative dentry. The nd->path reference will also be
2546 * put in this case.
2547 *
2548 * 0: if we successfully resolved nd->path and found it to not to be a
2549 * symlink that needs to be followed. "path" will also be populated.
2550 * The nd->path reference will also be put.
2551 *
2552 * 1: if we successfully resolved nd->last and found it to be a symlink
2553 * that needs to be followed. "path" will be populated with the path
2554 * to the link, and nd->path will *not* be put.
2555 */
2556static int
197df04c 2557mountpoint_last(struct nameidata *nd, struct path *path)
8033426e
JL
2558{
2559 int error = 0;
2560 struct dentry *dentry;
2561 struct dentry *dir = nd->path.dentry;
2562
35759521
AV
2563 /* If we're in rcuwalk, drop out of it to handle last component */
2564 if (nd->flags & LOOKUP_RCU) {
6e9918b7 2565 if (unlazy_walk(nd, NULL, 0))
deb106c6 2566 return -ECHILD;
8033426e
JL
2567 }
2568
2569 nd->flags &= ~LOOKUP_PARENT;
2570
2571 if (unlikely(nd->last_type != LAST_NORM)) {
2572 error = handle_dots(nd, nd->last_type);
35759521 2573 if (error)
deb106c6 2574 return error;
35759521 2575 dentry = dget(nd->path.dentry);
949a852e
AV
2576 } else {
2577 dentry = d_lookup(dir, &nd->last);
8033426e 2578 if (!dentry) {
949a852e
AV
2579 /*
2580 * No cached dentry. Mounted dentries are pinned in the
2581 * cache, so that means that this dentry is probably
2582 * a symlink or the path doesn't actually point
2583 * to a mounted dentry.
2584 */
2585 dentry = lookup_slow(&nd->last, dir,
2586 nd->flags | LOOKUP_NO_REVAL);
2587 if (IS_ERR(dentry))
2588 return PTR_ERR(dentry);
bcceeeba 2589 }
8033426e 2590 }
698934df 2591 if (d_is_negative(dentry)) {
35759521 2592 dput(dentry);
deb106c6 2593 return -ENOENT;
8033426e 2594 }
191d7f73
AV
2595 if (nd->depth)
2596 put_link(nd);
35759521 2597 path->dentry = dentry;
295dc39d 2598 path->mnt = nd->path.mnt;
181548c0
AV
2599 error = should_follow_link(nd, path, nd->flags & LOOKUP_FOLLOW,
2600 d_backing_inode(dentry), 0);
deb106c6 2601 if (unlikely(error))
d63ff28f 2602 return error;
295dc39d 2603 mntget(path->mnt);
35759521 2604 follow_mount(path);
deb106c6 2605 return 0;
8033426e
JL
2606}
2607
2608/**
197df04c 2609 * path_mountpoint - look up a path to be umounted
2a78b857 2610 * @nd: lookup context
8033426e 2611 * @flags: lookup flags
c8a53ee5 2612 * @path: pointer to container for result
8033426e
JL
2613 *
2614 * Look up the given name, but don't attempt to revalidate the last component.
606d6fe3 2615 * Returns 0 and "path" will be valid on success; Returns error otherwise.
8033426e
JL
2616 */
2617static int
c8a53ee5 2618path_mountpoint(struct nameidata *nd, unsigned flags, struct path *path)
8033426e 2619{
c8a53ee5 2620 const char *s = path_init(nd, flags);
368ee9ba
AV
2621 int err;
2622 if (IS_ERR(s))
2623 return PTR_ERR(s);
3bdba28b
AV
2624 while (!(err = link_path_walk(s, nd)) &&
2625 (err = mountpoint_last(nd, path)) > 0) {
2626 s = trailing_symlink(nd);
2627 if (IS_ERR(s)) {
2628 err = PTR_ERR(s);
8033426e 2629 break;
3bdba28b 2630 }
8033426e 2631 }
deb106c6 2632 terminate_walk(nd);
8033426e
JL
2633 return err;
2634}
2635
2d864651 2636static int
668696dc 2637filename_mountpoint(int dfd, struct filename *name, struct path *path,
2d864651
AV
2638 unsigned int flags)
2639{
9883d185 2640 struct nameidata nd;
cbaab2db 2641 int error;
668696dc
AV
2642 if (IS_ERR(name))
2643 return PTR_ERR(name);
9883d185 2644 set_nameidata(&nd, dfd, name);
c8a53ee5 2645 error = path_mountpoint(&nd, flags | LOOKUP_RCU, path);
2d864651 2646 if (unlikely(error == -ECHILD))
c8a53ee5 2647 error = path_mountpoint(&nd, flags, path);
2d864651 2648 if (unlikely(error == -ESTALE))
c8a53ee5 2649 error = path_mountpoint(&nd, flags | LOOKUP_REVAL, path);
2d864651 2650 if (likely(!error))
668696dc 2651 audit_inode(name, path->dentry, 0);
9883d185 2652 restore_nameidata();
668696dc 2653 putname(name);
2d864651
AV
2654 return error;
2655}
2656
8033426e 2657/**
197df04c 2658 * user_path_mountpoint_at - lookup a path from userland in order to umount it
8033426e
JL
2659 * @dfd: directory file descriptor
2660 * @name: pathname from userland
2661 * @flags: lookup flags
2662 * @path: pointer to container to hold result
2663 *
2664 * A umount is a special case for path walking. We're not actually interested
2665 * in the inode in this situation, and ESTALE errors can be a problem. We
2666 * simply want track down the dentry and vfsmount attached at the mountpoint
2667 * and avoid revalidating the last component.
2668 *
2669 * Returns 0 and populates "path" on success.
2670 */
2671int
197df04c 2672user_path_mountpoint_at(int dfd, const char __user *name, unsigned int flags,
8033426e
JL
2673 struct path *path)
2674{
cbaab2db 2675 return filename_mountpoint(dfd, getname(name), path, flags);
8033426e
JL
2676}
2677
2d864651
AV
2678int
2679kern_path_mountpoint(int dfd, const char *name, struct path *path,
2680 unsigned int flags)
2681{
cbaab2db 2682 return filename_mountpoint(dfd, getname_kernel(name), path, flags);
2d864651
AV
2683}
2684EXPORT_SYMBOL(kern_path_mountpoint);
2685
cbdf35bc 2686int __check_sticky(struct inode *dir, struct inode *inode)
1da177e4 2687{
8e96e3b7 2688 kuid_t fsuid = current_fsuid();
da9592ed 2689
8e96e3b7 2690 if (uid_eq(inode->i_uid, fsuid))
1da177e4 2691 return 0;
8e96e3b7 2692 if (uid_eq(dir->i_uid, fsuid))
1da177e4 2693 return 0;
23adbe12 2694 return !capable_wrt_inode_uidgid(inode, CAP_FOWNER);
1da177e4 2695}
cbdf35bc 2696EXPORT_SYMBOL(__check_sticky);
1da177e4
LT
2697
2698/*
2699 * Check whether we can remove a link victim from directory dir, check
2700 * whether the type of victim is right.
2701 * 1. We can't do it if dir is read-only (done in permission())
2702 * 2. We should have write and exec permissions on dir
2703 * 3. We can't remove anything from append-only dir
2704 * 4. We can't do anything with immutable dir (done in permission())
2705 * 5. If the sticky bit on dir is set we should either
2706 * a. be owner of dir, or
2707 * b. be owner of victim, or
2708 * c. have CAP_FOWNER capability
2709 * 6. If the victim is append-only or immutable we can't do antyhing with
2710 * links pointing to it.
2711 * 7. If we were asked to remove a directory and victim isn't one - ENOTDIR.
2712 * 8. If we were asked to remove a non-directory and victim isn't one - EISDIR.
2713 * 9. We can't remove a root or mountpoint.
2714 * 10. We don't allow removal of NFS sillyrenamed files; it's handled by
2715 * nfs_async_unlink().
2716 */
b18825a7 2717static int may_delete(struct inode *dir, struct dentry *victim, bool isdir)
1da177e4 2718{
63afdfc7 2719 struct inode *inode = d_backing_inode(victim);
1da177e4
LT
2720 int error;
2721
b18825a7 2722 if (d_is_negative(victim))
1da177e4 2723 return -ENOENT;
b18825a7 2724 BUG_ON(!inode);
1da177e4
LT
2725
2726 BUG_ON(victim->d_parent->d_inode != dir);
4fa6b5ec 2727 audit_inode_child(dir, victim, AUDIT_TYPE_CHILD_DELETE);
1da177e4 2728
f419a2e3 2729 error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
1da177e4
LT
2730 if (error)
2731 return error;
2732 if (IS_APPEND(dir))
2733 return -EPERM;
b18825a7
DH
2734
2735 if (check_sticky(dir, inode) || IS_APPEND(inode) ||
2736 IS_IMMUTABLE(inode) || IS_SWAPFILE(inode))
1da177e4
LT
2737 return -EPERM;
2738 if (isdir) {
44b1d530 2739 if (!d_is_dir(victim))
1da177e4
LT
2740 return -ENOTDIR;
2741 if (IS_ROOT(victim))
2742 return -EBUSY;
44b1d530 2743 } else if (d_is_dir(victim))
1da177e4
LT
2744 return -EISDIR;
2745 if (IS_DEADDIR(dir))
2746 return -ENOENT;
2747 if (victim->d_flags & DCACHE_NFSFS_RENAMED)
2748 return -EBUSY;
2749 return 0;
2750}
2751
2752/* Check whether we can create an object with dentry child in directory
2753 * dir.
2754 * 1. We can't do it if child already exists (open has special treatment for
2755 * this case, but since we are inlined it's OK)
2756 * 2. We can't do it if dir is read-only (done in permission())
2757 * 3. We should have write and exec permissions on dir
2758 * 4. We can't do it if dir is immutable (done in permission())
2759 */
a95164d9 2760static inline int may_create(struct inode *dir, struct dentry *child)
1da177e4 2761{
14e972b4 2762 audit_inode_child(dir, child, AUDIT_TYPE_CHILD_CREATE);
1da177e4
LT
2763 if (child->d_inode)
2764 return -EEXIST;
2765 if (IS_DEADDIR(dir))
2766 return -ENOENT;
f419a2e3 2767 return inode_permission(dir, MAY_WRITE | MAY_EXEC);
1da177e4
LT
2768}
2769
1da177e4
LT
2770/*
2771 * p1 and p2 should be directories on the same fs.
2772 */
2773struct dentry *lock_rename(struct dentry *p1, struct dentry *p2)
2774{
2775 struct dentry *p;
2776
2777 if (p1 == p2) {
5955102c 2778 inode_lock_nested(p1->d_inode, I_MUTEX_PARENT);
1da177e4
LT
2779 return NULL;
2780 }
2781
a11f3a05 2782 mutex_lock(&p1->d_inode->i_sb->s_vfs_rename_mutex);
1da177e4 2783
e2761a11
OH
2784 p = d_ancestor(p2, p1);
2785 if (p) {
5955102c
AV
2786 inode_lock_nested(p2->d_inode, I_MUTEX_PARENT);
2787 inode_lock_nested(p1->d_inode, I_MUTEX_CHILD);
e2761a11 2788 return p;
1da177e4
LT
2789 }
2790
e2761a11
OH
2791 p = d_ancestor(p1, p2);
2792 if (p) {
5955102c
AV
2793 inode_lock_nested(p1->d_inode, I_MUTEX_PARENT);
2794 inode_lock_nested(p2->d_inode, I_MUTEX_CHILD);
e2761a11 2795 return p;
1da177e4
LT
2796 }
2797
5955102c
AV
2798 inode_lock_nested(p1->d_inode, I_MUTEX_PARENT);
2799 inode_lock_nested(p2->d_inode, I_MUTEX_PARENT2);
1da177e4
LT
2800 return NULL;
2801}
4d359507 2802EXPORT_SYMBOL(lock_rename);
1da177e4
LT
2803
2804void unlock_rename(struct dentry *p1, struct dentry *p2)
2805{
5955102c 2806 inode_unlock(p1->d_inode);
1da177e4 2807 if (p1 != p2) {
5955102c 2808 inode_unlock(p2->d_inode);
a11f3a05 2809 mutex_unlock(&p1->d_inode->i_sb->s_vfs_rename_mutex);
1da177e4
LT
2810 }
2811}
4d359507 2812EXPORT_SYMBOL(unlock_rename);
1da177e4 2813
4acdaf27 2814int vfs_create(struct inode *dir, struct dentry *dentry, umode_t mode,
312b63fb 2815 bool want_excl)
1da177e4 2816{
a95164d9 2817 int error = may_create(dir, dentry);
1da177e4
LT
2818 if (error)
2819 return error;
2820
acfa4380 2821 if (!dir->i_op->create)
1da177e4
LT
2822 return -EACCES; /* shouldn't it be ENOSYS? */
2823 mode &= S_IALLUGO;
2824 mode |= S_IFREG;
2825 error = security_inode_create(dir, dentry, mode);
2826 if (error)
2827 return error;
312b63fb 2828 error = dir->i_op->create(dir, dentry, mode, want_excl);
a74574aa 2829 if (!error)
f38aa942 2830 fsnotify_create(dir, dentry);
1da177e4
LT
2831 return error;
2832}
4d359507 2833EXPORT_SYMBOL(vfs_create);
1da177e4 2834
73d049a4 2835static int may_open(struct path *path, int acc_mode, int flag)
1da177e4 2836{
3fb64190 2837 struct dentry *dentry = path->dentry;
1da177e4
LT
2838 struct inode *inode = dentry->d_inode;
2839 int error;
2840
2841 if (!inode)
2842 return -ENOENT;
2843
c8fe8f30
CH
2844 switch (inode->i_mode & S_IFMT) {
2845 case S_IFLNK:
1da177e4 2846 return -ELOOP;
c8fe8f30
CH
2847 case S_IFDIR:
2848 if (acc_mode & MAY_WRITE)
2849 return -EISDIR;
2850 break;
2851 case S_IFBLK:
2852 case S_IFCHR:
3fb64190 2853 if (path->mnt->mnt_flags & MNT_NODEV)
1da177e4 2854 return -EACCES;
c8fe8f30
CH
2855 /*FALLTHRU*/
2856 case S_IFIFO:
2857 case S_IFSOCK:
1da177e4 2858 flag &= ~O_TRUNC;
c8fe8f30 2859 break;
4a3fd211 2860 }
b41572e9 2861
62fb4a15 2862 error = inode_permission(inode, MAY_OPEN | acc_mode);
b41572e9
DH
2863 if (error)
2864 return error;
6146f0d5 2865
1da177e4
LT
2866 /*
2867 * An append-only file must be opened in append mode for writing.
2868 */
2869 if (IS_APPEND(inode)) {
8737c930 2870 if ((flag & O_ACCMODE) != O_RDONLY && !(flag & O_APPEND))
7715b521 2871 return -EPERM;
1da177e4 2872 if (flag & O_TRUNC)
7715b521 2873 return -EPERM;
1da177e4
LT
2874 }
2875
2876 /* O_NOATIME can only be set by the owner or superuser */
2e149670 2877 if (flag & O_NOATIME && !inode_owner_or_capable(inode))
7715b521 2878 return -EPERM;
1da177e4 2879
f3c7691e 2880 return 0;
7715b521 2881}
1da177e4 2882
e1181ee6 2883static int handle_truncate(struct file *filp)
7715b521 2884{
e1181ee6 2885 struct path *path = &filp->f_path;
7715b521
AV
2886 struct inode *inode = path->dentry->d_inode;
2887 int error = get_write_access(inode);
2888 if (error)
2889 return error;
2890 /*
2891 * Refuse to truncate files with mandatory locks held on them.
2892 */
d7a06983 2893 error = locks_verify_locked(filp);
7715b521 2894 if (!error)
ea0d3ab2 2895 error = security_path_truncate(path);
7715b521
AV
2896 if (!error) {
2897 error = do_truncate(path->dentry, 0,
2898 ATTR_MTIME|ATTR_CTIME|ATTR_OPEN,
e1181ee6 2899 filp);
7715b521
AV
2900 }
2901 put_write_access(inode);
acd0c935 2902 return error;
1da177e4
LT
2903}
2904
d57999e1
DH
2905static inline int open_to_namei_flags(int flag)
2906{
8a5e929d
AV
2907 if ((flag & O_ACCMODE) == 3)
2908 flag--;
d57999e1
DH
2909 return flag;
2910}
2911
d18e9008
MS
2912static int may_o_create(struct path *dir, struct dentry *dentry, umode_t mode)
2913{
2914 int error = security_path_mknod(dir, dentry, mode, 0);
2915 if (error)
2916 return error;
2917
2918 error = inode_permission(dir->dentry->d_inode, MAY_WRITE | MAY_EXEC);
2919 if (error)
2920 return error;
2921
2922 return security_inode_create(dir->dentry->d_inode, dentry, mode);
2923}
2924
1acf0af9
DH
2925/*
2926 * Attempt to atomically look up, create and open a file from a negative
2927 * dentry.
2928 *
2929 * Returns 0 if successful. The file will have been created and attached to
2930 * @file by the filesystem calling finish_open().
2931 *
2932 * Returns 1 if the file was looked up only or didn't need creating. The
2933 * caller will need to perform the open themselves. @path will have been
2934 * updated to point to the new dentry. This may be negative.
2935 *
2936 * Returns an error code otherwise.
2937 */
2675a4eb
AV
2938static int atomic_open(struct nameidata *nd, struct dentry *dentry,
2939 struct path *path, struct file *file,
2940 const struct open_flags *op,
64894cf8 2941 bool got_write, bool need_lookup,
2675a4eb 2942 int *opened)
d18e9008
MS
2943{
2944 struct inode *dir = nd->path.dentry->d_inode;
2945 unsigned open_flag = open_to_namei_flags(op->open_flag);
2946 umode_t mode;
2947 int error;
2948 int acc_mode;
d18e9008
MS
2949 int create_error = 0;
2950 struct dentry *const DENTRY_NOT_SET = (void *) -1UL;
116cc022 2951 bool excl;
d18e9008
MS
2952
2953 BUG_ON(dentry->d_inode);
2954
2955 /* Don't create child dentry for a dead directory. */
2956 if (unlikely(IS_DEADDIR(dir))) {
2675a4eb 2957 error = -ENOENT;
d18e9008
MS
2958 goto out;
2959 }
2960
62b259d8 2961 mode = op->mode;
d18e9008
MS
2962 if ((open_flag & O_CREAT) && !IS_POSIXACL(dir))
2963 mode &= ~current_umask();
2964
116cc022
MS
2965 excl = (open_flag & (O_EXCL | O_CREAT)) == (O_EXCL | O_CREAT);
2966 if (excl)
d18e9008 2967 open_flag &= ~O_TRUNC;
d18e9008
MS
2968
2969 /*
2970 * Checking write permission is tricky, bacuse we don't know if we are
2971 * going to actually need it: O_CREAT opens should work as long as the
2972 * file exists. But checking existence breaks atomicity. The trick is
2973 * to check access and if not granted clear O_CREAT from the flags.
2974 *
2975 * Another problem is returing the "right" error value (e.g. for an
2976 * O_EXCL open we want to return EEXIST not EROFS).
2977 */
64894cf8
AV
2978 if (((open_flag & (O_CREAT | O_TRUNC)) ||
2979 (open_flag & O_ACCMODE) != O_RDONLY) && unlikely(!got_write)) {
2980 if (!(open_flag & O_CREAT)) {
d18e9008
MS
2981 /*
2982 * No O_CREATE -> atomicity not a requirement -> fall
2983 * back to lookup + open
2984 */
2985 goto no_open;
2986 } else if (open_flag & (O_EXCL | O_TRUNC)) {
2987 /* Fall back and fail with the right error */
64894cf8 2988 create_error = -EROFS;
d18e9008
MS
2989 goto no_open;
2990 } else {
2991 /* No side effects, safe to clear O_CREAT */
64894cf8 2992 create_error = -EROFS;
d18e9008
MS
2993 open_flag &= ~O_CREAT;
2994 }
2995 }
2996
2997 if (open_flag & O_CREAT) {
38227f78 2998 error = may_o_create(&nd->path, dentry, mode);
d18e9008
MS
2999 if (error) {
3000 create_error = error;
3001 if (open_flag & O_EXCL)
3002 goto no_open;
3003 open_flag &= ~O_CREAT;
3004 }
3005 }
3006
3007 if (nd->flags & LOOKUP_DIRECTORY)
3008 open_flag |= O_DIRECTORY;
3009
30d90494
AV
3010 file->f_path.dentry = DENTRY_NOT_SET;
3011 file->f_path.mnt = nd->path.mnt;
3012 error = dir->i_op->atomic_open(dir, dentry, file, open_flag, mode,
47237687 3013 opened);
d9585277 3014 if (error < 0) {
d9585277
AV
3015 if (create_error && error == -ENOENT)
3016 error = create_error;
d18e9008
MS
3017 goto out;
3018 }
3019
d9585277 3020 if (error) { /* returned 1, that is */
30d90494 3021 if (WARN_ON(file->f_path.dentry == DENTRY_NOT_SET)) {
2675a4eb 3022 error = -EIO;
d18e9008
MS
3023 goto out;
3024 }
30d90494 3025 if (file->f_path.dentry) {
d18e9008 3026 dput(dentry);
30d90494 3027 dentry = file->f_path.dentry;
d18e9008 3028 }
03da633a
AV
3029 if (*opened & FILE_CREATED)
3030 fsnotify_create(dir, dentry);
3031 if (!dentry->d_inode) {
3032 WARN_ON(*opened & FILE_CREATED);
3033 if (create_error) {
3034 error = create_error;
3035 goto out;
3036 }
3037 } else {
3038 if (excl && !(*opened & FILE_CREATED)) {
3039 error = -EEXIST;
3040 goto out;
3041 }
62b2ce96 3042 }
d18e9008
MS
3043 goto looked_up;
3044 }
3045
3046 /*
3047 * We didn't have the inode before the open, so check open permission
3048 * here.
3049 */
03da633a
AV
3050 acc_mode = op->acc_mode;
3051 if (*opened & FILE_CREATED) {
3052 WARN_ON(!(open_flag & O_CREAT));
3053 fsnotify_create(dir, dentry);
62fb4a15 3054 acc_mode = 0;
03da633a 3055 }
2675a4eb
AV
3056 error = may_open(&file->f_path, acc_mode, open_flag);
3057 if (error)
3058 fput(file);
d18e9008
MS
3059
3060out:
3061 dput(dentry);
2675a4eb 3062 return error;
d18e9008 3063
d18e9008
MS
3064no_open:
3065 if (need_lookup) {
72bd866a 3066 dentry = lookup_real(dir, dentry, nd->flags);
d18e9008 3067 if (IS_ERR(dentry))
2675a4eb 3068 return PTR_ERR(dentry);
10c64cea
AV
3069 }
3070 if (create_error && !dentry->d_inode) {
3071 error = create_error;
3072 goto out;
d18e9008
MS
3073 }
3074looked_up:
3075 path->dentry = dentry;
3076 path->mnt = nd->path.mnt;
2675a4eb 3077 return 1;
d18e9008
MS
3078}
3079
d58ffd35 3080/*
1acf0af9 3081 * Look up and maybe create and open the last component.
d58ffd35
MS
3082 *
3083 * Must be called with i_mutex held on parent.
3084 *
1acf0af9
DH
3085 * Returns 0 if the file was successfully atomically created (if necessary) and
3086 * opened. In this case the file will be returned attached to @file.
3087 *
3088 * Returns 1 if the file was not completely opened at this time, though lookups
3089 * and creations will have been performed and the dentry returned in @path will
3090 * be positive upon return if O_CREAT was specified. If O_CREAT wasn't
3091 * specified then a negative dentry may be returned.
3092 *
3093 * An error code is returned otherwise.
3094 *
3095 * FILE_CREATE will be set in @*opened if the dentry was created and will be
3096 * cleared otherwise prior to returning.
d58ffd35 3097 */
2675a4eb
AV
3098static int lookup_open(struct nameidata *nd, struct path *path,
3099 struct file *file,
3100 const struct open_flags *op,
64894cf8 3101 bool got_write, int *opened)
d58ffd35
MS
3102{
3103 struct dentry *dir = nd->path.dentry;
54ef4872 3104 struct inode *dir_inode = dir->d_inode;
d58ffd35
MS
3105 struct dentry *dentry;
3106 int error;
6c51e513 3107 bool need_lookup = false;
d58ffd35 3108
47237687 3109 *opened &= ~FILE_CREATED;
6c51e513 3110 dentry = lookup_dcache(&nd->last, dir, nd->flags);
d58ffd35 3111 if (IS_ERR(dentry))
2675a4eb 3112 return PTR_ERR(dentry);
d58ffd35 3113
6c51e513
AV
3114 if (!dentry) {
3115 dentry = d_alloc(dir, &nd->last);
3116 if (unlikely(!dentry))
3117 return -ENOMEM;
3118 need_lookup = true;
3119 } else if (dentry->d_inode) {
3120 /* Cached positive dentry: will open in f_op->open */
d18e9008 3121 goto out_no_open;
6c51e513 3122 }
d18e9008
MS
3123
3124 if ((nd->flags & LOOKUP_OPEN) && dir_inode->i_op->atomic_open) {
64894cf8 3125 return atomic_open(nd, dentry, path, file, op, got_write,
47237687 3126 need_lookup, opened);
d18e9008
MS
3127 }
3128
54ef4872
MS
3129 if (need_lookup) {
3130 BUG_ON(dentry->d_inode);
3131
72bd866a 3132 dentry = lookup_real(dir_inode, dentry, nd->flags);
54ef4872 3133 if (IS_ERR(dentry))
2675a4eb 3134 return PTR_ERR(dentry);
54ef4872
MS
3135 }
3136
d58ffd35
MS
3137 /* Negative dentry, just create the file */
3138 if (!dentry->d_inode && (op->open_flag & O_CREAT)) {
3139 umode_t mode = op->mode;
3140 if (!IS_POSIXACL(dir->d_inode))
3141 mode &= ~current_umask();
3142 /*
3143 * This write is needed to ensure that a
3144 * rw->ro transition does not occur between
3145 * the time when the file is created and when
3146 * a permanent write count is taken through
015c3bbc 3147 * the 'struct file' in finish_open().
d58ffd35 3148 */
64894cf8
AV
3149 if (!got_write) {
3150 error = -EROFS;
d58ffd35 3151 goto out_dput;
64894cf8 3152 }
47237687 3153 *opened |= FILE_CREATED;
d58ffd35
MS
3154 error = security_path_mknod(&nd->path, dentry, mode, 0);
3155 if (error)
3156 goto out_dput;
312b63fb
AV
3157 error = vfs_create(dir->d_inode, dentry, mode,
3158 nd->flags & LOOKUP_EXCL);
d58ffd35
MS
3159 if (error)
3160 goto out_dput;
3161 }
d18e9008 3162out_no_open:
d58ffd35
MS
3163 path->dentry = dentry;
3164 path->mnt = nd->path.mnt;
2675a4eb 3165 return 1;
d58ffd35
MS
3166
3167out_dput:
3168 dput(dentry);
2675a4eb 3169 return error;
d58ffd35
MS
3170}
3171
31e6b01f 3172/*
fe2d35ff 3173 * Handle the last step of open()
31e6b01f 3174 */
896475d5 3175static int do_last(struct nameidata *nd,
2675a4eb 3176 struct file *file, const struct open_flags *op,
76ae2a5a 3177 int *opened)
fb1cc555 3178{
a1e28038 3179 struct dentry *dir = nd->path.dentry;
ca344a89 3180 int open_flag = op->open_flag;
77d660a8 3181 bool will_truncate = (open_flag & O_TRUNC) != 0;
64894cf8 3182 bool got_write = false;
bcda7652 3183 int acc_mode = op->acc_mode;
254cf582 3184 unsigned seq;
a1eb3315 3185 struct inode *inode;
16b1c1cd 3186 struct path save_parent = { .dentry = NULL, .mnt = NULL };
896475d5 3187 struct path path;
16b1c1cd 3188 bool retried = false;
16c2cd71 3189 int error;
1f36f774 3190
c3e380b0
AV
3191 nd->flags &= ~LOOKUP_PARENT;
3192 nd->flags |= op->intent;
3193
bc77daa7 3194 if (nd->last_type != LAST_NORM) {
fe2d35ff 3195 error = handle_dots(nd, nd->last_type);
deb106c6 3196 if (unlikely(error))
2675a4eb 3197 return error;
e83db167 3198 goto finish_open;
1f36f774 3199 }
67ee3ad2 3200
ca344a89 3201 if (!(open_flag & O_CREAT)) {
fe2d35ff
AV
3202 if (nd->last.name[nd->last.len])
3203 nd->flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
3204 /* we _can_ be in RCU mode here */
254cf582 3205 error = lookup_fast(nd, &path, &inode, &seq);
e9742b53 3206 if (likely(error > 0))
71574865
MS
3207 goto finish_lookup;
3208
3209 if (error < 0)
deb106c6 3210 return error;
71574865
MS
3211
3212 BUG_ON(nd->inode != dir->d_inode);
6583fe22 3213 BUG_ON(nd->flags & LOOKUP_RCU);
b6183df7
MS
3214 } else {
3215 /* create side of things */
3216 /*
3217 * This will *only* deal with leaving RCU mode - LOOKUP_JUMPED
3218 * has been cleared when we got to the last component we are
3219 * about to look up
3220 */
3221 error = complete_walk(nd);
e8bb73df 3222 if (error)
2675a4eb 3223 return error;
fe2d35ff 3224
76ae2a5a 3225 audit_inode(nd->name, dir, LOOKUP_PARENT);
b6183df7 3226 /* trailing slashes? */
deb106c6
AV
3227 if (unlikely(nd->last.name[nd->last.len]))
3228 return -EISDIR;
b6183df7 3229 }
a2c36b45 3230
16b1c1cd 3231retry_lookup:
64894cf8
AV
3232 if (op->open_flag & (O_CREAT | O_TRUNC | O_WRONLY | O_RDWR)) {
3233 error = mnt_want_write(nd->path.mnt);
3234 if (!error)
3235 got_write = true;
3236 /*
3237 * do _not_ fail yet - we might not need that or fail with
3238 * a different error; let lookup_open() decide; we'll be
3239 * dropping this one anyway.
3240 */
3241 }
5955102c 3242 inode_lock(dir->d_inode);
896475d5 3243 error = lookup_open(nd, &path, file, op, got_write, opened);
5955102c 3244 inode_unlock(dir->d_inode);
a1e28038 3245
2675a4eb
AV
3246 if (error <= 0) {
3247 if (error)
d18e9008
MS
3248 goto out;
3249
47237687 3250 if ((*opened & FILE_CREATED) ||
496ad9aa 3251 !S_ISREG(file_inode(file)->i_mode))
77d660a8 3252 will_truncate = false;
d18e9008 3253
76ae2a5a 3254 audit_inode(nd->name, file->f_path.dentry, 0);
d18e9008
MS
3255 goto opened;
3256 }
fb1cc555 3257
47237687 3258 if (*opened & FILE_CREATED) {
9b44f1b3 3259 /* Don't check for write permission, don't truncate */
ca344a89 3260 open_flag &= ~O_TRUNC;
77d660a8 3261 will_truncate = false;
62fb4a15 3262 acc_mode = 0;
896475d5 3263 path_to_nameidata(&path, nd);
e83db167 3264 goto finish_open_created;
fb1cc555
AV
3265 }
3266
d18e9008
MS
3267 /*
3268 * If atomic_open() acquired write access it is dropped now due to
3269 * possible mount and symlink following (this might be optimized away if
3270 * necessary...)
3271 */
64894cf8 3272 if (got_write) {
d18e9008 3273 mnt_drop_write(nd->path.mnt);
64894cf8 3274 got_write = false;
d18e9008
MS
3275 }
3276
6583fe22
AV
3277 if (unlikely(d_is_negative(path.dentry))) {
3278 path_to_nameidata(&path, nd);
3279 return -ENOENT;
3280 }
3281
3282 /*
3283 * create/update audit record if it already exists.
3284 */
3285 audit_inode(nd->name, path.dentry, 0);
3286
deb106c6
AV
3287 if (unlikely((open_flag & (O_EXCL | O_CREAT)) == (O_EXCL | O_CREAT))) {
3288 path_to_nameidata(&path, nd);
3289 return -EEXIST;
3290 }
fb1cc555 3291
756daf26 3292 error = follow_managed(&path, nd);
deb106c6
AV
3293 if (unlikely(error < 0))
3294 return error;
a3fbbde7 3295
254cf582 3296 seq = 0; /* out of RCU mode, so the value doesn't matter */
d4565649 3297 inode = d_backing_inode(path.dentry);
766c4cbf 3298finish_lookup:
d63ff28f
AV
3299 if (nd->depth)
3300 put_link(nd);
181548c0
AV
3301 error = should_follow_link(nd, &path, nd->flags & LOOKUP_FOLLOW,
3302 inode, seq);
deb106c6 3303 if (unlikely(error))
d63ff28f 3304 return error;
fb1cc555 3305
896475d5
AV
3306 if ((nd->flags & LOOKUP_RCU) || nd->path.mnt != path.mnt) {
3307 path_to_nameidata(&path, nd);
16b1c1cd
MS
3308 } else {
3309 save_parent.dentry = nd->path.dentry;
896475d5
AV
3310 save_parent.mnt = mntget(path.mnt);
3311 nd->path.dentry = path.dentry;
16b1c1cd
MS
3312
3313 }
decf3400 3314 nd->inode = inode;
254cf582 3315 nd->seq = seq;
a3fbbde7 3316 /* Why this, you ask? _Now_ we might have grown LOOKUP_JUMPED... */
bc77daa7 3317finish_open:
a3fbbde7 3318 error = complete_walk(nd);
16b1c1cd
MS
3319 if (error) {
3320 path_put(&save_parent);
2675a4eb 3321 return error;
16b1c1cd 3322 }
76ae2a5a 3323 audit_inode(nd->name, nd->path.dentry, 0);
5129fa48
AV
3324 if (unlikely(d_is_symlink(nd->path.dentry)) && !(open_flag & O_PATH)) {
3325 error = -ELOOP;
3326 goto out;
3327 }
fb1cc555 3328 error = -EISDIR;
44b1d530 3329 if ((open_flag & O_CREAT) && d_is_dir(nd->path.dentry))
2675a4eb 3330 goto out;
af2f5542 3331 error = -ENOTDIR;
44b1d530 3332 if ((nd->flags & LOOKUP_DIRECTORY) && !d_can_lookup(nd->path.dentry))
2675a4eb 3333 goto out;
4bbcbd3b 3334 if (!d_is_reg(nd->path.dentry))
77d660a8 3335 will_truncate = false;
6c0d46c4 3336
0f9d1a10
AV
3337 if (will_truncate) {
3338 error = mnt_want_write(nd->path.mnt);
3339 if (error)
2675a4eb 3340 goto out;
64894cf8 3341 got_write = true;
0f9d1a10 3342 }
e83db167 3343finish_open_created:
62fb4a15
AV
3344 if (likely(!(open_flag & O_PATH))) {
3345 error = may_open(&nd->path, acc_mode, open_flag);
3346 if (error)
3347 goto out;
3348 }
4aa7c634
MS
3349 BUG_ON(*opened & FILE_OPENED); /* once it's opened, it's opened */
3350 error = vfs_open(&nd->path, file, current_cred());
3351 if (!error) {
3352 *opened |= FILE_OPENED;
3353 } else {
30d90494 3354 if (error == -EOPENSTALE)
f60dc3db 3355 goto stale_open;
015c3bbc 3356 goto out;
f60dc3db 3357 }
a8277b9b 3358opened:
2675a4eb 3359 error = open_check_o_direct(file);
015c3bbc
MS
3360 if (error)
3361 goto exit_fput;
3034a146 3362 error = ima_file_check(file, op->acc_mode, *opened);
aa4caadb
MS
3363 if (error)
3364 goto exit_fput;
3365
3366 if (will_truncate) {
2675a4eb 3367 error = handle_truncate(file);
aa4caadb
MS
3368 if (error)
3369 goto exit_fput;
0f9d1a10 3370 }
ca344a89 3371out:
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);
16b1c1cd 3378 path_put(&save_parent);
2675a4eb 3379 return error;
fb1cc555 3380
015c3bbc 3381exit_fput:
2675a4eb
AV
3382 fput(file);
3383 goto out;
015c3bbc 3384
f60dc3db
MS
3385stale_open:
3386 /* If no saved parent or already retried then can't retry */
3387 if (!save_parent.dentry || retried)
3388 goto out;
3389
3390 BUG_ON(save_parent.dentry != dir);
3391 path_put(&nd->path);
3392 nd->path = save_parent;
3393 nd->inode = dir->d_inode;
3394 save_parent.mnt = NULL;
3395 save_parent.dentry = NULL;
64894cf8 3396 if (got_write) {
f60dc3db 3397 mnt_drop_write(nd->path.mnt);
64894cf8 3398 got_write = false;
f60dc3db
MS
3399 }
3400 retried = true;
3401 goto retry_lookup;
fb1cc555
AV
3402}
3403
c8a53ee5 3404static int do_tmpfile(struct nameidata *nd, unsigned flags,
60545d0d
AV
3405 const struct open_flags *op,
3406 struct file *file, int *opened)
3407{
3408 static const struct qstr name = QSTR_INIT("/", 1);
625b6d10 3409 struct dentry *child;
60545d0d 3410 struct inode *dir;
625b6d10 3411 struct path path;
c8a53ee5 3412 int error = path_lookupat(nd, flags | LOOKUP_DIRECTORY, &path);
60545d0d
AV
3413 if (unlikely(error))
3414 return error;
625b6d10 3415 error = mnt_want_write(path.mnt);
60545d0d
AV
3416 if (unlikely(error))
3417 goto out;
625b6d10 3418 dir = path.dentry->d_inode;
60545d0d 3419 /* we want directory to be writable */
625b6d10 3420 error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
60545d0d
AV
3421 if (error)
3422 goto out2;
60545d0d
AV
3423 if (!dir->i_op->tmpfile) {
3424 error = -EOPNOTSUPP;
3425 goto out2;
3426 }
625b6d10 3427 child = d_alloc(path.dentry, &name);
60545d0d
AV
3428 if (unlikely(!child)) {
3429 error = -ENOMEM;
3430 goto out2;
3431 }
625b6d10
AV
3432 dput(path.dentry);
3433 path.dentry = child;
3434 error = dir->i_op->tmpfile(dir, child, op->mode);
60545d0d
AV
3435 if (error)
3436 goto out2;
c8a53ee5 3437 audit_inode(nd->name, child, 0);
69a91c23 3438 /* Don't check for other permissions, the inode was just created */
62fb4a15 3439 error = may_open(&path, 0, op->open_flag);
60545d0d
AV
3440 if (error)
3441 goto out2;
625b6d10
AV
3442 file->f_path.mnt = path.mnt;
3443 error = finish_open(file, child, NULL, opened);
60545d0d
AV
3444 if (error)
3445 goto out2;
3446 error = open_check_o_direct(file);
f4e0c30c 3447 if (error) {
60545d0d 3448 fput(file);
f4e0c30c
AV
3449 } else if (!(op->open_flag & O_EXCL)) {
3450 struct inode *inode = file_inode(file);
3451 spin_lock(&inode->i_lock);
3452 inode->i_state |= I_LINKABLE;
3453 spin_unlock(&inode->i_lock);
3454 }
60545d0d 3455out2:
625b6d10 3456 mnt_drop_write(path.mnt);
60545d0d 3457out:
625b6d10 3458 path_put(&path);
60545d0d
AV
3459 return error;
3460}
3461
c8a53ee5
AV
3462static struct file *path_openat(struct nameidata *nd,
3463 const struct open_flags *op, unsigned flags)
1da177e4 3464{
368ee9ba 3465 const char *s;
30d90494 3466 struct file *file;
47237687 3467 int opened = 0;
13aab428 3468 int error;
31e6b01f 3469
30d90494 3470 file = get_empty_filp();
1afc99be
AV
3471 if (IS_ERR(file))
3472 return file;
31e6b01f 3473
30d90494 3474 file->f_flags = op->open_flag;
31e6b01f 3475
bb458c64 3476 if (unlikely(file->f_flags & __O_TMPFILE)) {
c8a53ee5 3477 error = do_tmpfile(nd, flags, op, file, &opened);
f15133df 3478 goto out2;
60545d0d
AV
3479 }
3480
c8a53ee5 3481 s = path_init(nd, flags);
368ee9ba
AV
3482 if (IS_ERR(s)) {
3483 put_filp(file);
3484 return ERR_CAST(s);
3485 }
3bdba28b 3486 while (!(error = link_path_walk(s, nd)) &&
76ae2a5a 3487 (error = do_last(nd, file, op, &opened)) > 0) {
73d049a4 3488 nd->flags &= ~(LOOKUP_OPEN|LOOKUP_CREATE|LOOKUP_EXCL);
3bdba28b
AV
3489 s = trailing_symlink(nd);
3490 if (IS_ERR(s)) {
3491 error = PTR_ERR(s);
2675a4eb 3492 break;
3bdba28b 3493 }
806b681c 3494 }
deb106c6 3495 terminate_walk(nd);
f15133df 3496out2:
2675a4eb
AV
3497 if (!(opened & FILE_OPENED)) {
3498 BUG_ON(!error);
30d90494 3499 put_filp(file);
16b1c1cd 3500 }
2675a4eb
AV
3501 if (unlikely(error)) {
3502 if (error == -EOPENSTALE) {
3503 if (flags & LOOKUP_RCU)
3504 error = -ECHILD;
3505 else
3506 error = -ESTALE;
3507 }
3508 file = ERR_PTR(error);
3509 }
3510 return file;
1da177e4
LT
3511}
3512
669abf4e 3513struct file *do_filp_open(int dfd, struct filename *pathname,
f9652e10 3514 const struct open_flags *op)
13aab428 3515{
9883d185 3516 struct nameidata nd;
f9652e10 3517 int flags = op->lookup_flags;
13aab428
AV
3518 struct file *filp;
3519
9883d185 3520 set_nameidata(&nd, dfd, pathname);
c8a53ee5 3521 filp = path_openat(&nd, op, flags | LOOKUP_RCU);
13aab428 3522 if (unlikely(filp == ERR_PTR(-ECHILD)))
c8a53ee5 3523 filp = path_openat(&nd, op, flags);
13aab428 3524 if (unlikely(filp == ERR_PTR(-ESTALE)))
c8a53ee5 3525 filp = path_openat(&nd, op, flags | LOOKUP_REVAL);
9883d185 3526 restore_nameidata();
13aab428
AV
3527 return filp;
3528}
3529
73d049a4 3530struct file *do_file_open_root(struct dentry *dentry, struct vfsmount *mnt,
f9652e10 3531 const char *name, const struct open_flags *op)
73d049a4 3532{
9883d185 3533 struct nameidata nd;
73d049a4 3534 struct file *file;
51689104 3535 struct filename *filename;
f9652e10 3536 int flags = op->lookup_flags | LOOKUP_ROOT;
73d049a4
AV
3537
3538 nd.root.mnt = mnt;
3539 nd.root.dentry = dentry;
3540
b18825a7 3541 if (d_is_symlink(dentry) && op->intent & LOOKUP_OPEN)
73d049a4
AV
3542 return ERR_PTR(-ELOOP);
3543
51689104 3544 filename = getname_kernel(name);
a1c83681 3545 if (IS_ERR(filename))
51689104
PM
3546 return ERR_CAST(filename);
3547
9883d185 3548 set_nameidata(&nd, -1, filename);
c8a53ee5 3549 file = path_openat(&nd, op, flags | LOOKUP_RCU);
73d049a4 3550 if (unlikely(file == ERR_PTR(-ECHILD)))
c8a53ee5 3551 file = path_openat(&nd, op, flags);
73d049a4 3552 if (unlikely(file == ERR_PTR(-ESTALE)))
c8a53ee5 3553 file = path_openat(&nd, op, flags | LOOKUP_REVAL);
9883d185 3554 restore_nameidata();
51689104 3555 putname(filename);
73d049a4
AV
3556 return file;
3557}
3558
fa14a0b8 3559static struct dentry *filename_create(int dfd, struct filename *name,
1ac12b4b 3560 struct path *path, unsigned int lookup_flags)
1da177e4 3561{
c663e5d8 3562 struct dentry *dentry = ERR_PTR(-EEXIST);
391172c4
AV
3563 struct qstr last;
3564 int type;
c30dabfe 3565 int err2;
1ac12b4b
JL
3566 int error;
3567 bool is_dir = (lookup_flags & LOOKUP_DIRECTORY);
3568
3569 /*
3570 * Note that only LOOKUP_REVAL and LOOKUP_DIRECTORY matter here. Any
3571 * other flags passed in are ignored!
3572 */
3573 lookup_flags &= LOOKUP_REVAL;
3574
5c31b6ce
AV
3575 name = filename_parentat(dfd, name, lookup_flags, path, &last, &type);
3576 if (IS_ERR(name))
3577 return ERR_CAST(name);
1da177e4 3578
c663e5d8
CH
3579 /*
3580 * Yucky last component or no last component at all?
3581 * (foo/., foo/.., /////)
3582 */
5c31b6ce 3583 if (unlikely(type != LAST_NORM))
ed75e95d 3584 goto out;
c663e5d8 3585
c30dabfe 3586 /* don't fail immediately if it's r/o, at least try to report other errors */
391172c4 3587 err2 = mnt_want_write(path->mnt);
c663e5d8
CH
3588 /*
3589 * Do the final lookup.
3590 */
391172c4 3591 lookup_flags |= LOOKUP_CREATE | LOOKUP_EXCL;
5955102c 3592 inode_lock_nested(path->dentry->d_inode, I_MUTEX_PARENT);
391172c4 3593 dentry = __lookup_hash(&last, path->dentry, lookup_flags);
1da177e4 3594 if (IS_ERR(dentry))
a8104a9f 3595 goto unlock;
c663e5d8 3596
a8104a9f 3597 error = -EEXIST;
b18825a7 3598 if (d_is_positive(dentry))
a8104a9f 3599 goto fail;
b18825a7 3600
c663e5d8
CH
3601 /*
3602 * Special case - lookup gave negative, but... we had foo/bar/
3603 * From the vfs_mknod() POV we just have a negative dentry -
3604 * all is fine. Let's be bastards - you had / on the end, you've
3605 * been asking for (non-existent) directory. -ENOENT for you.
3606 */
391172c4 3607 if (unlikely(!is_dir && last.name[last.len])) {
a8104a9f 3608 error = -ENOENT;
ed75e95d 3609 goto fail;
e9baf6e5 3610 }
c30dabfe
JK
3611 if (unlikely(err2)) {
3612 error = err2;
a8104a9f 3613 goto fail;
c30dabfe 3614 }
181c37b6 3615 putname(name);
1da177e4 3616 return dentry;
1da177e4 3617fail:
a8104a9f
AV
3618 dput(dentry);
3619 dentry = ERR_PTR(error);
3620unlock:
5955102c 3621 inode_unlock(path->dentry->d_inode);
c30dabfe 3622 if (!err2)
391172c4 3623 mnt_drop_write(path->mnt);
ed75e95d 3624out:
391172c4 3625 path_put(path);
181c37b6 3626 putname(name);
1da177e4
LT
3627 return dentry;
3628}
fa14a0b8
AV
3629
3630struct dentry *kern_path_create(int dfd, const char *pathname,
3631 struct path *path, unsigned int lookup_flags)
3632{
181c37b6
AV
3633 return filename_create(dfd, getname_kernel(pathname),
3634 path, lookup_flags);
fa14a0b8 3635}
dae6ad8f
AV
3636EXPORT_SYMBOL(kern_path_create);
3637
921a1650
AV
3638void done_path_create(struct path *path, struct dentry *dentry)
3639{
3640 dput(dentry);
5955102c 3641 inode_unlock(path->dentry->d_inode);
a8104a9f 3642 mnt_drop_write(path->mnt);
921a1650
AV
3643 path_put(path);
3644}
3645EXPORT_SYMBOL(done_path_create);
3646
520ae687 3647inline struct dentry *user_path_create(int dfd, const char __user *pathname,
1ac12b4b 3648 struct path *path, unsigned int lookup_flags)
dae6ad8f 3649{
181c37b6 3650 return filename_create(dfd, getname(pathname), path, lookup_flags);
dae6ad8f
AV
3651}
3652EXPORT_SYMBOL(user_path_create);
3653
1a67aafb 3654int vfs_mknod(struct inode *dir, struct dentry *dentry, umode_t mode, dev_t dev)
1da177e4 3655{
a95164d9 3656 int error = may_create(dir, dentry);
1da177e4
LT
3657
3658 if (error)
3659 return error;
3660
975d6b39 3661 if ((S_ISCHR(mode) || S_ISBLK(mode)) && !capable(CAP_MKNOD))
1da177e4
LT
3662 return -EPERM;
3663
acfa4380 3664 if (!dir->i_op->mknod)
1da177e4
LT
3665 return -EPERM;
3666
08ce5f16
SH
3667 error = devcgroup_inode_mknod(mode, dev);
3668 if (error)
3669 return error;
3670
1da177e4
LT
3671 error = security_inode_mknod(dir, dentry, mode, dev);
3672 if (error)
3673 return error;
3674
1da177e4 3675 error = dir->i_op->mknod(dir, dentry, mode, dev);
a74574aa 3676 if (!error)
f38aa942 3677 fsnotify_create(dir, dentry);
1da177e4
LT
3678 return error;
3679}
4d359507 3680EXPORT_SYMBOL(vfs_mknod);
1da177e4 3681
f69aac00 3682static int may_mknod(umode_t mode)
463c3197
DH
3683{
3684 switch (mode & S_IFMT) {
3685 case S_IFREG:
3686 case S_IFCHR:
3687 case S_IFBLK:
3688 case S_IFIFO:
3689 case S_IFSOCK:
3690 case 0: /* zero mode translates to S_IFREG */
3691 return 0;
3692 case S_IFDIR:
3693 return -EPERM;
3694 default:
3695 return -EINVAL;
3696 }
3697}
3698
8208a22b 3699SYSCALL_DEFINE4(mknodat, int, dfd, const char __user *, filename, umode_t, mode,
2e4d0924 3700 unsigned, dev)
1da177e4 3701{
2ad94ae6 3702 struct dentry *dentry;
dae6ad8f
AV
3703 struct path path;
3704 int error;
972567f1 3705 unsigned int lookup_flags = 0;
1da177e4 3706
8e4bfca1
AV
3707 error = may_mknod(mode);
3708 if (error)
3709 return error;
972567f1
JL
3710retry:
3711 dentry = user_path_create(dfd, filename, &path, lookup_flags);
dae6ad8f
AV
3712 if (IS_ERR(dentry))
3713 return PTR_ERR(dentry);
2ad94ae6 3714
dae6ad8f 3715 if (!IS_POSIXACL(path.dentry->d_inode))
ce3b0f8d 3716 mode &= ~current_umask();
dae6ad8f 3717 error = security_path_mknod(&path, dentry, mode, dev);
be6d3e56 3718 if (error)
a8104a9f 3719 goto out;
463c3197 3720 switch (mode & S_IFMT) {
1da177e4 3721 case 0: case S_IFREG:
312b63fb 3722 error = vfs_create(path.dentry->d_inode,dentry,mode,true);
1da177e4
LT
3723 break;
3724 case S_IFCHR: case S_IFBLK:
dae6ad8f 3725 error = vfs_mknod(path.dentry->d_inode,dentry,mode,
1da177e4
LT
3726 new_decode_dev(dev));
3727 break;
3728 case S_IFIFO: case S_IFSOCK:
dae6ad8f 3729 error = vfs_mknod(path.dentry->d_inode,dentry,mode,0);
1da177e4 3730 break;
1da177e4 3731 }
a8104a9f 3732out:
921a1650 3733 done_path_create(&path, dentry);
972567f1
JL
3734 if (retry_estale(error, lookup_flags)) {
3735 lookup_flags |= LOOKUP_REVAL;
3736 goto retry;
3737 }
1da177e4
LT
3738 return error;
3739}
3740
8208a22b 3741SYSCALL_DEFINE3(mknod, const char __user *, filename, umode_t, mode, unsigned, dev)
5590ff0d
UD
3742{
3743 return sys_mknodat(AT_FDCWD, filename, mode, dev);
3744}
3745
18bb1db3 3746int vfs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
1da177e4 3747{
a95164d9 3748 int error = may_create(dir, dentry);
8de52778 3749 unsigned max_links = dir->i_sb->s_max_links;
1da177e4
LT
3750
3751 if (error)
3752 return error;
3753
acfa4380 3754 if (!dir->i_op->mkdir)
1da177e4
LT
3755 return -EPERM;
3756
3757 mode &= (S_IRWXUGO|S_ISVTX);
3758 error = security_inode_mkdir(dir, dentry, mode);
3759 if (error)
3760 return error;
3761
8de52778
AV
3762 if (max_links && dir->i_nlink >= max_links)
3763 return -EMLINK;
3764
1da177e4 3765 error = dir->i_op->mkdir(dir, dentry, mode);
a74574aa 3766 if (!error)
f38aa942 3767 fsnotify_mkdir(dir, dentry);
1da177e4
LT
3768 return error;
3769}
4d359507 3770EXPORT_SYMBOL(vfs_mkdir);
1da177e4 3771
a218d0fd 3772SYSCALL_DEFINE3(mkdirat, int, dfd, const char __user *, pathname, umode_t, mode)
1da177e4 3773{
6902d925 3774 struct dentry *dentry;
dae6ad8f
AV
3775 struct path path;
3776 int error;
b76d8b82 3777 unsigned int lookup_flags = LOOKUP_DIRECTORY;
1da177e4 3778
b76d8b82
JL
3779retry:
3780 dentry = user_path_create(dfd, pathname, &path, lookup_flags);
6902d925 3781 if (IS_ERR(dentry))
dae6ad8f 3782 return PTR_ERR(dentry);
1da177e4 3783
dae6ad8f 3784 if (!IS_POSIXACL(path.dentry->d_inode))
ce3b0f8d 3785 mode &= ~current_umask();
dae6ad8f 3786 error = security_path_mkdir(&path, dentry, mode);
a8104a9f
AV
3787 if (!error)
3788 error = vfs_mkdir(path.dentry->d_inode, dentry, mode);
921a1650 3789 done_path_create(&path, dentry);
b76d8b82
JL
3790 if (retry_estale(error, lookup_flags)) {
3791 lookup_flags |= LOOKUP_REVAL;
3792 goto retry;
3793 }
1da177e4
LT
3794 return error;
3795}
3796
a218d0fd 3797SYSCALL_DEFINE2(mkdir, const char __user *, pathname, umode_t, mode)
5590ff0d
UD
3798{
3799 return sys_mkdirat(AT_FDCWD, pathname, mode);
3800}
3801
1da177e4
LT
3802int vfs_rmdir(struct inode *dir, struct dentry *dentry)
3803{
3804 int error = may_delete(dir, dentry, 1);
3805
3806 if (error)
3807 return error;
3808
acfa4380 3809 if (!dir->i_op->rmdir)
1da177e4
LT
3810 return -EPERM;
3811
1d2ef590 3812 dget(dentry);
5955102c 3813 inode_lock(dentry->d_inode);
912dbc15
SW
3814
3815 error = -EBUSY;
7af1364f 3816 if (is_local_mountpoint(dentry))
912dbc15
SW
3817 goto out;
3818
3819 error = security_inode_rmdir(dir, dentry);
3820 if (error)
3821 goto out;
3822
3cebde24 3823 shrink_dcache_parent(dentry);
912dbc15
SW
3824 error = dir->i_op->rmdir(dir, dentry);
3825 if (error)
3826 goto out;
3827
3828 dentry->d_inode->i_flags |= S_DEAD;
3829 dont_mount(dentry);
8ed936b5 3830 detach_mounts(dentry);
912dbc15
SW
3831
3832out:
5955102c 3833 inode_unlock(dentry->d_inode);
1d2ef590 3834 dput(dentry);
912dbc15 3835 if (!error)
1da177e4 3836 d_delete(dentry);
1da177e4
LT
3837 return error;
3838}
4d359507 3839EXPORT_SYMBOL(vfs_rmdir);
1da177e4 3840
5590ff0d 3841static long do_rmdir(int dfd, const char __user *pathname)
1da177e4
LT
3842{
3843 int error = 0;
91a27b2a 3844 struct filename *name;
1da177e4 3845 struct dentry *dentry;
f5beed75
AV
3846 struct path path;
3847 struct qstr last;
3848 int type;
c6ee9206
JL
3849 unsigned int lookup_flags = 0;
3850retry:
f5beed75
AV
3851 name = user_path_parent(dfd, pathname,
3852 &path, &last, &type, lookup_flags);
91a27b2a
JL
3853 if (IS_ERR(name))
3854 return PTR_ERR(name);
1da177e4 3855
f5beed75 3856 switch (type) {
0612d9fb
OH
3857 case LAST_DOTDOT:
3858 error = -ENOTEMPTY;
3859 goto exit1;
3860 case LAST_DOT:
3861 error = -EINVAL;
3862 goto exit1;
3863 case LAST_ROOT:
3864 error = -EBUSY;
3865 goto exit1;
1da177e4 3866 }
0612d9fb 3867
f5beed75 3868 error = mnt_want_write(path.mnt);
c30dabfe
JK
3869 if (error)
3870 goto exit1;
0612d9fb 3871
5955102c 3872 inode_lock_nested(path.dentry->d_inode, I_MUTEX_PARENT);
f5beed75 3873 dentry = __lookup_hash(&last, path.dentry, lookup_flags);
1da177e4 3874 error = PTR_ERR(dentry);
6902d925
DH
3875 if (IS_ERR(dentry))
3876 goto exit2;
e6bc45d6
TT
3877 if (!dentry->d_inode) {
3878 error = -ENOENT;
3879 goto exit3;
3880 }
f5beed75 3881 error = security_path_rmdir(&path, dentry);
be6d3e56 3882 if (error)
c30dabfe 3883 goto exit3;
f5beed75 3884 error = vfs_rmdir(path.dentry->d_inode, dentry);
0622753b 3885exit3:
6902d925
DH
3886 dput(dentry);
3887exit2:
5955102c 3888 inode_unlock(path.dentry->d_inode);
f5beed75 3889 mnt_drop_write(path.mnt);
1da177e4 3890exit1:
f5beed75 3891 path_put(&path);
1da177e4 3892 putname(name);
c6ee9206
JL
3893 if (retry_estale(error, lookup_flags)) {
3894 lookup_flags |= LOOKUP_REVAL;
3895 goto retry;
3896 }
1da177e4
LT
3897 return error;
3898}
3899
3cdad428 3900SYSCALL_DEFINE1(rmdir, const char __user *, pathname)
5590ff0d
UD
3901{
3902 return do_rmdir(AT_FDCWD, pathname);
3903}
3904
b21996e3
BF
3905/**
3906 * vfs_unlink - unlink a filesystem object
3907 * @dir: parent directory
3908 * @dentry: victim
3909 * @delegated_inode: returns victim inode, if the inode is delegated.
3910 *
3911 * The caller must hold dir->i_mutex.
3912 *
3913 * If vfs_unlink discovers a delegation, it will return -EWOULDBLOCK and
3914 * return a reference to the inode in delegated_inode. The caller
3915 * should then break the delegation on that inode and retry. Because
3916 * breaking a delegation may take a long time, the caller should drop
3917 * dir->i_mutex before doing so.
3918 *
3919 * Alternatively, a caller may pass NULL for delegated_inode. This may
3920 * be appropriate for callers that expect the underlying filesystem not
3921 * to be NFS exported.
3922 */
3923int vfs_unlink(struct inode *dir, struct dentry *dentry, struct inode **delegated_inode)
1da177e4 3924{
9accbb97 3925 struct inode *target = dentry->d_inode;
1da177e4
LT
3926 int error = may_delete(dir, dentry, 0);
3927
3928 if (error)
3929 return error;
3930
acfa4380 3931 if (!dir->i_op->unlink)
1da177e4
LT
3932 return -EPERM;
3933
5955102c 3934 inode_lock(target);
8ed936b5 3935 if (is_local_mountpoint(dentry))
1da177e4
LT
3936 error = -EBUSY;
3937 else {
3938 error = security_inode_unlink(dir, dentry);
bec1052e 3939 if (!error) {
5a14696c
BF
3940 error = try_break_deleg(target, delegated_inode);
3941 if (error)
b21996e3 3942 goto out;
1da177e4 3943 error = dir->i_op->unlink(dir, dentry);
8ed936b5 3944 if (!error) {
d83c49f3 3945 dont_mount(dentry);
8ed936b5
EB
3946 detach_mounts(dentry);
3947 }
bec1052e 3948 }
1da177e4 3949 }
b21996e3 3950out:
5955102c 3951 inode_unlock(target);
1da177e4
LT
3952
3953 /* We don't d_delete() NFS sillyrenamed files--they still exist. */
3954 if (!error && !(dentry->d_flags & DCACHE_NFSFS_RENAMED)) {
9accbb97 3955 fsnotify_link_count(target);
e234f35c 3956 d_delete(dentry);
1da177e4 3957 }
0eeca283 3958
1da177e4
LT
3959 return error;
3960}
4d359507 3961EXPORT_SYMBOL(vfs_unlink);
1da177e4
LT
3962
3963/*
3964 * Make sure that the actual truncation of the file will occur outside its
1b1dcc1b 3965 * directory's i_mutex. Truncate can take a long time if there is a lot of
1da177e4
LT
3966 * writeout happening, and we don't want to prevent access to the directory
3967 * while waiting on the I/O.
3968 */
5590ff0d 3969static long do_unlinkat(int dfd, const char __user *pathname)
1da177e4 3970{
2ad94ae6 3971 int error;
91a27b2a 3972 struct filename *name;
1da177e4 3973 struct dentry *dentry;
f5beed75
AV
3974 struct path path;
3975 struct qstr last;
3976 int type;
1da177e4 3977 struct inode *inode = NULL;
b21996e3 3978 struct inode *delegated_inode = NULL;
5d18f813
JL
3979 unsigned int lookup_flags = 0;
3980retry:
f5beed75
AV
3981 name = user_path_parent(dfd, pathname,
3982 &path, &last, &type, lookup_flags);
91a27b2a
JL
3983 if (IS_ERR(name))
3984 return PTR_ERR(name);
2ad94ae6 3985
1da177e4 3986 error = -EISDIR;
f5beed75 3987 if (type != LAST_NORM)
1da177e4 3988 goto exit1;
0612d9fb 3989
f5beed75 3990 error = mnt_want_write(path.mnt);
c30dabfe
JK
3991 if (error)
3992 goto exit1;
b21996e3 3993retry_deleg:
5955102c 3994 inode_lock_nested(path.dentry->d_inode, I_MUTEX_PARENT);
f5beed75 3995 dentry = __lookup_hash(&last, path.dentry, lookup_flags);
1da177e4
LT
3996 error = PTR_ERR(dentry);
3997 if (!IS_ERR(dentry)) {
3998 /* Why not before? Because we want correct error value */
f5beed75 3999 if (last.name[last.len])
50338b88 4000 goto slashes;
1da177e4 4001 inode = dentry->d_inode;
b18825a7 4002 if (d_is_negative(dentry))
e6bc45d6
TT
4003 goto slashes;
4004 ihold(inode);
f5beed75 4005 error = security_path_unlink(&path, dentry);
be6d3e56 4006 if (error)
c30dabfe 4007 goto exit2;
f5beed75 4008 error = vfs_unlink(path.dentry->d_inode, dentry, &delegated_inode);
c30dabfe 4009exit2:
1da177e4
LT
4010 dput(dentry);
4011 }
5955102c 4012 inode_unlock(path.dentry->d_inode);
1da177e4
LT
4013 if (inode)
4014 iput(inode); /* truncate the inode here */
b21996e3
BF
4015 inode = NULL;
4016 if (delegated_inode) {
5a14696c 4017 error = break_deleg_wait(&delegated_inode);
b21996e3
BF
4018 if (!error)
4019 goto retry_deleg;
4020 }
f5beed75 4021 mnt_drop_write(path.mnt);
1da177e4 4022exit1:
f5beed75 4023 path_put(&path);
1da177e4 4024 putname(name);
5d18f813
JL
4025 if (retry_estale(error, lookup_flags)) {
4026 lookup_flags |= LOOKUP_REVAL;
4027 inode = NULL;
4028 goto retry;
4029 }
1da177e4
LT
4030 return error;
4031
4032slashes:
b18825a7
DH
4033 if (d_is_negative(dentry))
4034 error = -ENOENT;
44b1d530 4035 else if (d_is_dir(dentry))
b18825a7
DH
4036 error = -EISDIR;
4037 else
4038 error = -ENOTDIR;
1da177e4
LT
4039 goto exit2;
4040}
4041
2e4d0924 4042SYSCALL_DEFINE3(unlinkat, int, dfd, const char __user *, pathname, int, flag)
5590ff0d
UD
4043{
4044 if ((flag & ~AT_REMOVEDIR) != 0)
4045 return -EINVAL;
4046
4047 if (flag & AT_REMOVEDIR)
4048 return do_rmdir(dfd, pathname);
4049
4050 return do_unlinkat(dfd, pathname);
4051}
4052
3480b257 4053SYSCALL_DEFINE1(unlink, const char __user *, pathname)
5590ff0d
UD
4054{
4055 return do_unlinkat(AT_FDCWD, pathname);
4056}
4057
db2e747b 4058int vfs_symlink(struct inode *dir, struct dentry *dentry, const char *oldname)
1da177e4 4059{
a95164d9 4060 int error = may_create(dir, dentry);
1da177e4
LT
4061
4062 if (error)
4063 return error;
4064
acfa4380 4065 if (!dir->i_op->symlink)
1da177e4
LT
4066 return -EPERM;
4067
4068 error = security_inode_symlink(dir, dentry, oldname);
4069 if (error)
4070 return error;
4071
1da177e4 4072 error = dir->i_op->symlink(dir, dentry, oldname);
a74574aa 4073 if (!error)
f38aa942 4074 fsnotify_create(dir, dentry);
1da177e4
LT
4075 return error;
4076}
4d359507 4077EXPORT_SYMBOL(vfs_symlink);
1da177e4 4078
2e4d0924
HC
4079SYSCALL_DEFINE3(symlinkat, const char __user *, oldname,
4080 int, newdfd, const char __user *, newname)
1da177e4 4081{
2ad94ae6 4082 int error;
91a27b2a 4083 struct filename *from;
6902d925 4084 struct dentry *dentry;
dae6ad8f 4085 struct path path;
f46d3567 4086 unsigned int lookup_flags = 0;
1da177e4
LT
4087
4088 from = getname(oldname);
2ad94ae6 4089 if (IS_ERR(from))
1da177e4 4090 return PTR_ERR(from);
f46d3567
JL
4091retry:
4092 dentry = user_path_create(newdfd, newname, &path, lookup_flags);
6902d925
DH
4093 error = PTR_ERR(dentry);
4094 if (IS_ERR(dentry))
dae6ad8f 4095 goto out_putname;
6902d925 4096
91a27b2a 4097 error = security_path_symlink(&path, dentry, from->name);
a8104a9f 4098 if (!error)
91a27b2a 4099 error = vfs_symlink(path.dentry->d_inode, dentry, from->name);
921a1650 4100 done_path_create(&path, dentry);
f46d3567
JL
4101 if (retry_estale(error, lookup_flags)) {
4102 lookup_flags |= LOOKUP_REVAL;
4103 goto retry;
4104 }
6902d925 4105out_putname:
1da177e4
LT
4106 putname(from);
4107 return error;
4108}
4109
3480b257 4110SYSCALL_DEFINE2(symlink, const char __user *, oldname, const char __user *, newname)
5590ff0d
UD
4111{
4112 return sys_symlinkat(oldname, AT_FDCWD, newname);
4113}
4114
146a8595
BF
4115/**
4116 * vfs_link - create a new link
4117 * @old_dentry: object to be linked
4118 * @dir: new parent
4119 * @new_dentry: where to create the new link
4120 * @delegated_inode: returns inode needing a delegation break
4121 *
4122 * The caller must hold dir->i_mutex
4123 *
4124 * If vfs_link discovers a delegation on the to-be-linked file in need
4125 * of breaking, it will return -EWOULDBLOCK and return a reference to the
4126 * inode in delegated_inode. The caller should then break the delegation
4127 * and retry. Because breaking a delegation may take a long time, the
4128 * caller should drop the i_mutex before doing so.
4129 *
4130 * Alternatively, a caller may pass NULL for delegated_inode. This may
4131 * be appropriate for callers that expect the underlying filesystem not
4132 * to be NFS exported.
4133 */
4134int vfs_link(struct dentry *old_dentry, struct inode *dir, struct dentry *new_dentry, struct inode **delegated_inode)
1da177e4
LT
4135{
4136 struct inode *inode = old_dentry->d_inode;
8de52778 4137 unsigned max_links = dir->i_sb->s_max_links;
1da177e4
LT
4138 int error;
4139
4140 if (!inode)
4141 return -ENOENT;
4142
a95164d9 4143 error = may_create(dir, new_dentry);
1da177e4
LT
4144 if (error)
4145 return error;
4146
4147 if (dir->i_sb != inode->i_sb)
4148 return -EXDEV;
4149
4150 /*
4151 * A link to an append-only or immutable file cannot be created.
4152 */
4153 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
4154 return -EPERM;
acfa4380 4155 if (!dir->i_op->link)
1da177e4 4156 return -EPERM;
7e79eedb 4157 if (S_ISDIR(inode->i_mode))
1da177e4
LT
4158 return -EPERM;
4159
4160 error = security_inode_link(old_dentry, dir, new_dentry);
4161 if (error)
4162 return error;
4163
5955102c 4164 inode_lock(inode);
aae8a97d 4165 /* Make sure we don't allow creating hardlink to an unlinked file */
f4e0c30c 4166 if (inode->i_nlink == 0 && !(inode->i_state & I_LINKABLE))
aae8a97d 4167 error = -ENOENT;
8de52778
AV
4168 else if (max_links && inode->i_nlink >= max_links)
4169 error = -EMLINK;
146a8595
BF
4170 else {
4171 error = try_break_deleg(inode, delegated_inode);
4172 if (!error)
4173 error = dir->i_op->link(old_dentry, dir, new_dentry);
4174 }
f4e0c30c
AV
4175
4176 if (!error && (inode->i_state & I_LINKABLE)) {
4177 spin_lock(&inode->i_lock);
4178 inode->i_state &= ~I_LINKABLE;
4179 spin_unlock(&inode->i_lock);
4180 }
5955102c 4181 inode_unlock(inode);
e31e14ec 4182 if (!error)
7e79eedb 4183 fsnotify_link(dir, inode, new_dentry);
1da177e4
LT
4184 return error;
4185}
4d359507 4186EXPORT_SYMBOL(vfs_link);
1da177e4
LT
4187
4188/*
4189 * Hardlinks are often used in delicate situations. We avoid
4190 * security-related surprises by not following symlinks on the
4191 * newname. --KAB
4192 *
4193 * We don't follow them on the oldname either to be compatible
4194 * with linux 2.0, and to avoid hard-linking to directories
4195 * and other special files. --ADM
4196 */
2e4d0924
HC
4197SYSCALL_DEFINE5(linkat, int, olddfd, const char __user *, oldname,
4198 int, newdfd, const char __user *, newname, int, flags)
1da177e4
LT
4199{
4200 struct dentry *new_dentry;
dae6ad8f 4201 struct path old_path, new_path;
146a8595 4202 struct inode *delegated_inode = NULL;
11a7b371 4203 int how = 0;
1da177e4 4204 int error;
1da177e4 4205
11a7b371 4206 if ((flags & ~(AT_SYMLINK_FOLLOW | AT_EMPTY_PATH)) != 0)
c04030e1 4207 return -EINVAL;
11a7b371 4208 /*
f0cc6ffb
LT
4209 * To use null names we require CAP_DAC_READ_SEARCH
4210 * This ensures that not everyone will be able to create
4211 * handlink using the passed filedescriptor.
11a7b371 4212 */
f0cc6ffb
LT
4213 if (flags & AT_EMPTY_PATH) {
4214 if (!capable(CAP_DAC_READ_SEARCH))
4215 return -ENOENT;
11a7b371 4216 how = LOOKUP_EMPTY;
f0cc6ffb 4217 }
11a7b371
AK
4218
4219 if (flags & AT_SYMLINK_FOLLOW)
4220 how |= LOOKUP_FOLLOW;
442e31ca 4221retry:
11a7b371 4222 error = user_path_at(olddfd, oldname, how, &old_path);
1da177e4 4223 if (error)
2ad94ae6
AV
4224 return error;
4225
442e31ca
JL
4226 new_dentry = user_path_create(newdfd, newname, &new_path,
4227 (how & LOOKUP_REVAL));
1da177e4 4228 error = PTR_ERR(new_dentry);
6902d925 4229 if (IS_ERR(new_dentry))
dae6ad8f
AV
4230 goto out;
4231
4232 error = -EXDEV;
4233 if (old_path.mnt != new_path.mnt)
4234 goto out_dput;
800179c9
KC
4235 error = may_linkat(&old_path);
4236 if (unlikely(error))
4237 goto out_dput;
dae6ad8f 4238 error = security_path_link(old_path.dentry, &new_path, new_dentry);
be6d3e56 4239 if (error)
a8104a9f 4240 goto out_dput;
146a8595 4241 error = vfs_link(old_path.dentry, new_path.dentry->d_inode, new_dentry, &delegated_inode);
75c3f29d 4242out_dput:
921a1650 4243 done_path_create(&new_path, new_dentry);
146a8595
BF
4244 if (delegated_inode) {
4245 error = break_deleg_wait(&delegated_inode);
d22e6338
OD
4246 if (!error) {
4247 path_put(&old_path);
146a8595 4248 goto retry;
d22e6338 4249 }
146a8595 4250 }
442e31ca 4251 if (retry_estale(error, how)) {
d22e6338 4252 path_put(&old_path);
442e31ca
JL
4253 how |= LOOKUP_REVAL;
4254 goto retry;
4255 }
1da177e4 4256out:
2d8f3038 4257 path_put(&old_path);
1da177e4
LT
4258
4259 return error;
4260}
4261
3480b257 4262SYSCALL_DEFINE2(link, const char __user *, oldname, const char __user *, newname)
5590ff0d 4263{
c04030e1 4264 return sys_linkat(AT_FDCWD, oldname, AT_FDCWD, newname, 0);
5590ff0d
UD
4265}
4266
bc27027a
MS
4267/**
4268 * vfs_rename - rename a filesystem object
4269 * @old_dir: parent of source
4270 * @old_dentry: source
4271 * @new_dir: parent of destination
4272 * @new_dentry: destination
4273 * @delegated_inode: returns an inode needing a delegation break
520c8b16 4274 * @flags: rename flags
bc27027a
MS
4275 *
4276 * The caller must hold multiple mutexes--see lock_rename()).
4277 *
4278 * If vfs_rename discovers a delegation in need of breaking at either
4279 * the source or destination, it will return -EWOULDBLOCK and return a
4280 * reference to the inode in delegated_inode. The caller should then
4281 * break the delegation and retry. Because breaking a delegation may
4282 * take a long time, the caller should drop all locks before doing
4283 * so.
4284 *
4285 * Alternatively, a caller may pass NULL for delegated_inode. This may
4286 * be appropriate for callers that expect the underlying filesystem not
4287 * to be NFS exported.
4288 *
1da177e4
LT
4289 * The worst of all namespace operations - renaming directory. "Perverted"
4290 * doesn't even start to describe it. Somebody in UCB had a heck of a trip...
4291 * Problems:
d03b29a2 4292 * a) we can get into loop creation.
1da177e4
LT
4293 * b) race potential - two innocent renames can create a loop together.
4294 * That's where 4.4 screws up. Current fix: serialization on
a11f3a05 4295 * sb->s_vfs_rename_mutex. We might be more accurate, but that's another
1da177e4 4296 * story.
6cedba89
BF
4297 * c) we have to lock _four_ objects - parents and victim (if it exists),
4298 * and source (if it is not a directory).
1b1dcc1b 4299 * And that - after we got ->i_mutex on parents (until then we don't know
1da177e4
LT
4300 * whether the target exists). Solution: try to be smart with locking
4301 * order for inodes. We rely on the fact that tree topology may change
a11f3a05 4302 * only under ->s_vfs_rename_mutex _and_ that parent of the object we
1da177e4
LT
4303 * move will be locked. Thus we can rank directories by the tree
4304 * (ancestors first) and rank all non-directories after them.
4305 * That works since everybody except rename does "lock parent, lookup,
a11f3a05 4306 * lock child" and rename is under ->s_vfs_rename_mutex.
1da177e4
LT
4307 * HOWEVER, it relies on the assumption that any object with ->lookup()
4308 * has no more than 1 dentry. If "hybrid" objects will ever appear,
4309 * we'd better make sure that there's no link(2) for them.
e4eaac06 4310 * d) conversion from fhandle to dentry may come in the wrong moment - when
1b1dcc1b 4311 * we are removing the target. Solution: we will have to grab ->i_mutex
1da177e4 4312 * in the fhandle_to_dentry code. [FIXME - current nfsfh.c relies on
c41b20e7 4313 * ->i_mutex on parents, which works but leads to some truly excessive
1da177e4
LT
4314 * locking].
4315 */
bc27027a
MS
4316int vfs_rename(struct inode *old_dir, struct dentry *old_dentry,
4317 struct inode *new_dir, struct dentry *new_dentry,
520c8b16 4318 struct inode **delegated_inode, unsigned int flags)
1da177e4 4319{
bc27027a
MS
4320 int error;
4321 bool is_dir = d_is_dir(old_dentry);
4322 const unsigned char *old_name;
4323 struct inode *source = old_dentry->d_inode;
9055cba7 4324 struct inode *target = new_dentry->d_inode;
da1ce067
MS
4325 bool new_is_dir = false;
4326 unsigned max_links = new_dir->i_sb->s_max_links;
bc27027a 4327
9409e22a
MS
4328 /*
4329 * Check source == target.
4330 * On overlayfs need to look at underlying inodes.
4331 */
4332 if (vfs_select_inode(old_dentry, 0) == vfs_select_inode(new_dentry, 0))
bc27027a
MS
4333 return 0;
4334
4335 error = may_delete(old_dir, old_dentry, is_dir);
4336 if (error)
4337 return error;
4338
da1ce067 4339 if (!target) {
bc27027a 4340 error = may_create(new_dir, new_dentry);
da1ce067
MS
4341 } else {
4342 new_is_dir = d_is_dir(new_dentry);
4343
4344 if (!(flags & RENAME_EXCHANGE))
4345 error = may_delete(new_dir, new_dentry, is_dir);
4346 else
4347 error = may_delete(new_dir, new_dentry, new_is_dir);
4348 }
bc27027a
MS
4349 if (error)
4350 return error;
4351
7177a9c4 4352 if (!old_dir->i_op->rename && !old_dir->i_op->rename2)
bc27027a 4353 return -EPERM;
1da177e4 4354
520c8b16
MS
4355 if (flags && !old_dir->i_op->rename2)
4356 return -EINVAL;
4357
1da177e4
LT
4358 /*
4359 * If we are going to change the parent - check write permissions,
4360 * we'll need to flip '..'.
4361 */
da1ce067
MS
4362 if (new_dir != old_dir) {
4363 if (is_dir) {
4364 error = inode_permission(source, MAY_WRITE);
4365 if (error)
4366 return error;
4367 }
4368 if ((flags & RENAME_EXCHANGE) && new_is_dir) {
4369 error = inode_permission(target, MAY_WRITE);
4370 if (error)
4371 return error;
4372 }
1da177e4
LT
4373 }
4374
0b3974eb
MS
4375 error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry,
4376 flags);
1da177e4
LT
4377 if (error)
4378 return error;
4379
bc27027a 4380 old_name = fsnotify_oldname_init(old_dentry->d_name.name);
1d2ef590 4381 dget(new_dentry);
da1ce067 4382 if (!is_dir || (flags & RENAME_EXCHANGE))
bc27027a
MS
4383 lock_two_nondirectories(source, target);
4384 else if (target)
5955102c 4385 inode_lock(target);
9055cba7
SW
4386
4387 error = -EBUSY;
7af1364f 4388 if (is_local_mountpoint(old_dentry) || is_local_mountpoint(new_dentry))
9055cba7
SW
4389 goto out;
4390
da1ce067 4391 if (max_links && new_dir != old_dir) {
bc27027a 4392 error = -EMLINK;
da1ce067 4393 if (is_dir && !new_is_dir && new_dir->i_nlink >= max_links)
bc27027a 4394 goto out;
da1ce067
MS
4395 if ((flags & RENAME_EXCHANGE) && !is_dir && new_is_dir &&
4396 old_dir->i_nlink >= max_links)
4397 goto out;
4398 }
4399 if (is_dir && !(flags & RENAME_EXCHANGE) && target)
4400 shrink_dcache_parent(new_dentry);
4401 if (!is_dir) {
bc27027a 4402 error = try_break_deleg(source, delegated_inode);
8e6d782c
BF
4403 if (error)
4404 goto out;
da1ce067
MS
4405 }
4406 if (target && !new_is_dir) {
4407 error = try_break_deleg(target, delegated_inode);
4408 if (error)
4409 goto out;
8e6d782c 4410 }
7177a9c4 4411 if (!old_dir->i_op->rename2) {
520c8b16
MS
4412 error = old_dir->i_op->rename(old_dir, old_dentry,
4413 new_dir, new_dentry);
4414 } else {
7177a9c4 4415 WARN_ON(old_dir->i_op->rename != NULL);
520c8b16
MS
4416 error = old_dir->i_op->rename2(old_dir, old_dentry,
4417 new_dir, new_dentry, flags);
4418 }
51892bbb
SW
4419 if (error)
4420 goto out;
4421
da1ce067 4422 if (!(flags & RENAME_EXCHANGE) && target) {
bc27027a
MS
4423 if (is_dir)
4424 target->i_flags |= S_DEAD;
51892bbb 4425 dont_mount(new_dentry);
8ed936b5 4426 detach_mounts(new_dentry);
bc27027a 4427 }
da1ce067
MS
4428 if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE)) {
4429 if (!(flags & RENAME_EXCHANGE))
4430 d_move(old_dentry, new_dentry);
4431 else
4432 d_exchange(old_dentry, new_dentry);
4433 }
51892bbb 4434out:
da1ce067 4435 if (!is_dir || (flags & RENAME_EXCHANGE))
bc27027a
MS
4436 unlock_two_nondirectories(source, target);
4437 else if (target)
5955102c 4438 inode_unlock(target);
1da177e4 4439 dput(new_dentry);
da1ce067 4440 if (!error) {
123df294 4441 fsnotify_move(old_dir, new_dir, old_name, is_dir,
da1ce067
MS
4442 !(flags & RENAME_EXCHANGE) ? target : NULL, old_dentry);
4443 if (flags & RENAME_EXCHANGE) {
4444 fsnotify_move(new_dir, old_dir, old_dentry->d_name.name,
4445 new_is_dir, NULL, new_dentry);
4446 }
4447 }
0eeca283
RL
4448 fsnotify_oldname_free(old_name);
4449
1da177e4
LT
4450 return error;
4451}
4d359507 4452EXPORT_SYMBOL(vfs_rename);
1da177e4 4453
520c8b16
MS
4454SYSCALL_DEFINE5(renameat2, int, olddfd, const char __user *, oldname,
4455 int, newdfd, const char __user *, newname, unsigned int, flags)
1da177e4 4456{
2ad94ae6
AV
4457 struct dentry *old_dentry, *new_dentry;
4458 struct dentry *trap;
f5beed75
AV
4459 struct path old_path, new_path;
4460 struct qstr old_last, new_last;
4461 int old_type, new_type;
8e6d782c 4462 struct inode *delegated_inode = NULL;
91a27b2a
JL
4463 struct filename *from;
4464 struct filename *to;
f5beed75 4465 unsigned int lookup_flags = 0, target_flags = LOOKUP_RENAME_TARGET;
c6a94284 4466 bool should_retry = false;
2ad94ae6 4467 int error;
520c8b16 4468
0d7a8555 4469 if (flags & ~(RENAME_NOREPLACE | RENAME_EXCHANGE | RENAME_WHITEOUT))
da1ce067
MS
4470 return -EINVAL;
4471
0d7a8555
MS
4472 if ((flags & (RENAME_NOREPLACE | RENAME_WHITEOUT)) &&
4473 (flags & RENAME_EXCHANGE))
520c8b16
MS
4474 return -EINVAL;
4475
0d7a8555
MS
4476 if ((flags & RENAME_WHITEOUT) && !capable(CAP_MKNOD))
4477 return -EPERM;
4478
f5beed75
AV
4479 if (flags & RENAME_EXCHANGE)
4480 target_flags = 0;
4481
c6a94284 4482retry:
f5beed75
AV
4483 from = user_path_parent(olddfd, oldname,
4484 &old_path, &old_last, &old_type, lookup_flags);
91a27b2a
JL
4485 if (IS_ERR(from)) {
4486 error = PTR_ERR(from);
1da177e4 4487 goto exit;
91a27b2a 4488 }
1da177e4 4489
f5beed75
AV
4490 to = user_path_parent(newdfd, newname,
4491 &new_path, &new_last, &new_type, lookup_flags);
91a27b2a
JL
4492 if (IS_ERR(to)) {
4493 error = PTR_ERR(to);
1da177e4 4494 goto exit1;
91a27b2a 4495 }
1da177e4
LT
4496
4497 error = -EXDEV;
f5beed75 4498 if (old_path.mnt != new_path.mnt)
1da177e4
LT
4499 goto exit2;
4500
1da177e4 4501 error = -EBUSY;
f5beed75 4502 if (old_type != LAST_NORM)
1da177e4
LT
4503 goto exit2;
4504
0a7c3937
MS
4505 if (flags & RENAME_NOREPLACE)
4506 error = -EEXIST;
f5beed75 4507 if (new_type != LAST_NORM)
1da177e4
LT
4508 goto exit2;
4509
f5beed75 4510 error = mnt_want_write(old_path.mnt);
c30dabfe
JK
4511 if (error)
4512 goto exit2;
4513
8e6d782c 4514retry_deleg:
f5beed75 4515 trap = lock_rename(new_path.dentry, old_path.dentry);
1da177e4 4516
f5beed75 4517 old_dentry = __lookup_hash(&old_last, old_path.dentry, lookup_flags);
1da177e4
LT
4518 error = PTR_ERR(old_dentry);
4519 if (IS_ERR(old_dentry))
4520 goto exit3;
4521 /* source must exist */
4522 error = -ENOENT;
b18825a7 4523 if (d_is_negative(old_dentry))
1da177e4 4524 goto exit4;
f5beed75 4525 new_dentry = __lookup_hash(&new_last, new_path.dentry, lookup_flags | target_flags);
0a7c3937
MS
4526 error = PTR_ERR(new_dentry);
4527 if (IS_ERR(new_dentry))
4528 goto exit4;
4529 error = -EEXIST;
4530 if ((flags & RENAME_NOREPLACE) && d_is_positive(new_dentry))
4531 goto exit5;
da1ce067
MS
4532 if (flags & RENAME_EXCHANGE) {
4533 error = -ENOENT;
4534 if (d_is_negative(new_dentry))
4535 goto exit5;
4536
4537 if (!d_is_dir(new_dentry)) {
4538 error = -ENOTDIR;
f5beed75 4539 if (new_last.name[new_last.len])
da1ce067
MS
4540 goto exit5;
4541 }
4542 }
1da177e4 4543 /* unless the source is a directory trailing slashes give -ENOTDIR */
44b1d530 4544 if (!d_is_dir(old_dentry)) {
1da177e4 4545 error = -ENOTDIR;
f5beed75 4546 if (old_last.name[old_last.len])
0a7c3937 4547 goto exit5;
f5beed75 4548 if (!(flags & RENAME_EXCHANGE) && new_last.name[new_last.len])
0a7c3937 4549 goto exit5;
1da177e4
LT
4550 }
4551 /* source should not be ancestor of target */
4552 error = -EINVAL;
4553 if (old_dentry == trap)
0a7c3937 4554 goto exit5;
1da177e4 4555 /* target should not be an ancestor of source */
da1ce067
MS
4556 if (!(flags & RENAME_EXCHANGE))
4557 error = -ENOTEMPTY;
1da177e4
LT
4558 if (new_dentry == trap)
4559 goto exit5;
4560
f5beed75
AV
4561 error = security_path_rename(&old_path, old_dentry,
4562 &new_path, new_dentry, flags);
be6d3e56 4563 if (error)
c30dabfe 4564 goto exit5;
f5beed75
AV
4565 error = vfs_rename(old_path.dentry->d_inode, old_dentry,
4566 new_path.dentry->d_inode, new_dentry,
520c8b16 4567 &delegated_inode, flags);
1da177e4
LT
4568exit5:
4569 dput(new_dentry);
4570exit4:
4571 dput(old_dentry);
4572exit3:
f5beed75 4573 unlock_rename(new_path.dentry, old_path.dentry);
8e6d782c
BF
4574 if (delegated_inode) {
4575 error = break_deleg_wait(&delegated_inode);
4576 if (!error)
4577 goto retry_deleg;
4578 }
f5beed75 4579 mnt_drop_write(old_path.mnt);
1da177e4 4580exit2:
c6a94284
JL
4581 if (retry_estale(error, lookup_flags))
4582 should_retry = true;
f5beed75 4583 path_put(&new_path);
2ad94ae6 4584 putname(to);
1da177e4 4585exit1:
f5beed75 4586 path_put(&old_path);
1da177e4 4587 putname(from);
c6a94284
JL
4588 if (should_retry) {
4589 should_retry = false;
4590 lookup_flags |= LOOKUP_REVAL;
4591 goto retry;
4592 }
2ad94ae6 4593exit:
1da177e4
LT
4594 return error;
4595}
4596
520c8b16
MS
4597SYSCALL_DEFINE4(renameat, int, olddfd, const char __user *, oldname,
4598 int, newdfd, const char __user *, newname)
4599{
4600 return sys_renameat2(olddfd, oldname, newdfd, newname, 0);
4601}
4602
a26eab24 4603SYSCALL_DEFINE2(rename, const char __user *, oldname, const char __user *, newname)
5590ff0d 4604{
520c8b16 4605 return sys_renameat2(AT_FDCWD, oldname, AT_FDCWD, newname, 0);
5590ff0d
UD
4606}
4607
787fb6bc
MS
4608int vfs_whiteout(struct inode *dir, struct dentry *dentry)
4609{
4610 int error = may_create(dir, dentry);
4611 if (error)
4612 return error;
4613
4614 if (!dir->i_op->mknod)
4615 return -EPERM;
4616
4617 return dir->i_op->mknod(dir, dentry,
4618 S_IFCHR | WHITEOUT_MODE, WHITEOUT_DEV);
4619}
4620EXPORT_SYMBOL(vfs_whiteout);
4621
5d826c84 4622int readlink_copy(char __user *buffer, int buflen, const char *link)
1da177e4 4623{
5d826c84 4624 int len = PTR_ERR(link);
1da177e4
LT
4625 if (IS_ERR(link))
4626 goto out;
4627
4628 len = strlen(link);
4629 if (len > (unsigned) buflen)
4630 len = buflen;
4631 if (copy_to_user(buffer, link, len))
4632 len = -EFAULT;
4633out:
4634 return len;
4635}
5d826c84 4636EXPORT_SYMBOL(readlink_copy);
1da177e4
LT
4637
4638/*
4639 * A helper for ->readlink(). This should be used *ONLY* for symlinks that
6b255391
AV
4640 * have ->get_link() not calling nd_jump_link(). Using (or not using) it
4641 * for any given inode is up to filesystem.
1da177e4
LT
4642 */
4643int generic_readlink(struct dentry *dentry, char __user *buffer, int buflen)
4644{
fceef393 4645 DEFINE_DELAYED_CALL(done);
5f2c4179
AV
4646 struct inode *inode = d_inode(dentry);
4647 const char *link = inode->i_link;
694a1764 4648 int res;
cc314eef 4649
d4dee48b 4650 if (!link) {
fceef393 4651 link = inode->i_op->get_link(dentry, inode, &done);
d4dee48b
AV
4652 if (IS_ERR(link))
4653 return PTR_ERR(link);
4654 }
680baacb 4655 res = readlink_copy(buffer, buflen, link);
fceef393 4656 do_delayed_call(&done);
694a1764 4657 return res;
1da177e4 4658}
4d359507 4659EXPORT_SYMBOL(generic_readlink);
1da177e4 4660
1da177e4 4661/* get the link contents into pagecache */
6b255391 4662const char *page_get_link(struct dentry *dentry, struct inode *inode,
fceef393 4663 struct delayed_call *callback)
1da177e4 4664{
ebd09abb
DG
4665 char *kaddr;
4666 struct page *page;
6b255391
AV
4667 struct address_space *mapping = inode->i_mapping;
4668
d3883d4f
AV
4669 if (!dentry) {
4670 page = find_get_page(mapping, 0);
4671 if (!page)
4672 return ERR_PTR(-ECHILD);
4673 if (!PageUptodate(page)) {
4674 put_page(page);
4675 return ERR_PTR(-ECHILD);
4676 }
4677 } else {
4678 page = read_mapping_page(mapping, 0, NULL);
4679 if (IS_ERR(page))
4680 return (char*)page;
4681 }
fceef393 4682 set_delayed_call(callback, page_put_link, page);
21fc61c7
AV
4683 BUG_ON(mapping_gfp_mask(mapping) & __GFP_HIGHMEM);
4684 kaddr = page_address(page);
6b255391 4685 nd_terminate_link(kaddr, inode->i_size, PAGE_SIZE - 1);
ebd09abb 4686 return kaddr;
1da177e4
LT
4687}
4688
6b255391 4689EXPORT_SYMBOL(page_get_link);
1da177e4 4690
fceef393 4691void page_put_link(void *arg)
1da177e4 4692{
fceef393 4693 put_page(arg);
1da177e4 4694}
4d359507 4695EXPORT_SYMBOL(page_put_link);
1da177e4 4696
aa80deab
AV
4697int page_readlink(struct dentry *dentry, char __user *buffer, int buflen)
4698{
fceef393 4699 DEFINE_DELAYED_CALL(done);
6b255391
AV
4700 int res = readlink_copy(buffer, buflen,
4701 page_get_link(dentry, d_inode(dentry),
fceef393
AV
4702 &done));
4703 do_delayed_call(&done);
aa80deab
AV
4704 return res;
4705}
4706EXPORT_SYMBOL(page_readlink);
4707
54566b2c
NP
4708/*
4709 * The nofs argument instructs pagecache_write_begin to pass AOP_FLAG_NOFS
4710 */
4711int __page_symlink(struct inode *inode, const char *symname, int len, int nofs)
1da177e4
LT
4712{
4713 struct address_space *mapping = inode->i_mapping;
0adb25d2 4714 struct page *page;
afddba49 4715 void *fsdata;
beb497ab 4716 int err;
54566b2c
NP
4717 unsigned int flags = AOP_FLAG_UNINTERRUPTIBLE;
4718 if (nofs)
4719 flags |= AOP_FLAG_NOFS;
1da177e4 4720
7e53cac4 4721retry:
afddba49 4722 err = pagecache_write_begin(NULL, mapping, 0, len-1,
54566b2c 4723 flags, &page, &fsdata);
1da177e4 4724 if (err)
afddba49
NP
4725 goto fail;
4726
21fc61c7 4727 memcpy(page_address(page), symname, len-1);
afddba49
NP
4728
4729 err = pagecache_write_end(NULL, mapping, 0, len-1, len-1,
4730 page, fsdata);
1da177e4
LT
4731 if (err < 0)
4732 goto fail;
afddba49
NP
4733 if (err < len-1)
4734 goto retry;
4735
1da177e4
LT
4736 mark_inode_dirty(inode);
4737 return 0;
1da177e4
LT
4738fail:
4739 return err;
4740}
4d359507 4741EXPORT_SYMBOL(__page_symlink);
1da177e4 4742
0adb25d2
KK
4743int page_symlink(struct inode *inode, const char *symname, int len)
4744{
4745 return __page_symlink(inode, symname, len,
c62d2555 4746 !mapping_gfp_constraint(inode->i_mapping, __GFP_FS));
0adb25d2 4747}
4d359507 4748EXPORT_SYMBOL(page_symlink);
0adb25d2 4749
92e1d5be 4750const struct inode_operations page_symlink_inode_operations = {
1da177e4 4751 .readlink = generic_readlink,
6b255391 4752 .get_link = page_get_link,
1da177e4 4753};
1da177e4 4754EXPORT_SYMBOL(page_symlink_inode_operations);