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