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