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