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