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