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